diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b6113fb7d..9235645af3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ### Parsing -Updated JavaScript and TypeScript parser. +Updated JavaScript, TypeScript and QML parsers. ## 0.55 (released 1st February 2024) diff --git a/vendored_parsers/tree-sitter-qmljs/examples/Makefile b/vendored_parsers/tree-sitter-qmljs/examples/Makefile index 944d2e4649..e7b8ea9a1c 100644 --- a/vendored_parsers/tree-sitter-qmljs/examples/Makefile +++ b/vendored_parsers/tree-sitter-qmljs/examples/Makefile @@ -1,4 +1,6 @@ GIT = git +GIT_LOG_FLAGS = -p --reverse +QTDECLARATIVE_GIT_ID = 49ec094b7fb1eb6675fdc1db8348409cd3ff8184 .PHONY: all all: qtdeclarative @@ -7,4 +9,11 @@ all: qtdeclarative qtdeclarative: [ -d $@ ] || $(GIT) clone git://code.qt.io/qt/qtdeclarative.git $@ $(GIT) -C $@ fetch - $(GIT) -C $@ reset --hard 6ac764a4d9e3bd723e955e8e9d5efd8ef6900214 + $(GIT) -C $@ reset --hard $(QTDECLARATIVE_GIT_ID) + +.PHONY: review-qtdeclarative +review-qtdeclarative: + $(GIT) -C qtdeclarative log $(GIT_LOG_FLAGS) \ + $(QTDECLARATIVE_GIT_ID)..origin/dev \ + src/qml/compiler/qqmlirbuilder.cpp \ + src/qml/parser diff --git a/vendored_parsers/tree-sitter-qmljs/examples/known-failures.txt b/vendored_parsers/tree-sitter-qmljs/examples/known-failures.txt index 26e543e9a2..4ec744976f 100644 --- a/vendored_parsers/tree-sitter-qmljs/examples/known-failures.txt +++ b/vendored_parsers/tree-sitter-qmljs/examples/known-failures.txt @@ -2,7 +2,6 @@ qtdeclarative/src/quick/doc/snippets/qml/image-ext.qml qtdeclarative/tests/auto/qml/debugger/qqmlpreview/data/broken.qml qtdeclarative/tests/auto/qml/qmlformat/data/settings/Example1.formatted_mac_cr.qml qtdeclarative/tests/auto/qml/qmllint/data/failure1.qml -qtdeclarative/tests/auto/qml/qqmlecmascript/data/compatibilitySemicolon.qml qtdeclarative/tests/auto/qml/qqmlecmascript/data/numberParsing_error.1.qml qtdeclarative/tests/auto/qml/qqmlecmascript/data/numberParsing_error.2.qml qtdeclarative/tests/auto/qml/qqmlecmascript/data/stringParsing_error.5.qml @@ -24,5 +23,9 @@ qtdeclarative/tests/auto/qml/qqmllanguage/data/signal.2.qml qtdeclarative/tests/auto/qml/qqmllanguage/data/signal.3.qml qtdeclarative/tests/auto/qml/qqmllanguage/data/signal.5.qml qtdeclarative/tests/auto/qml/qquickfolderlistmodel/data/dummy.qml +qtdeclarative/tests/auto/qmlls/utils/data/completions/missingRHS.parserfail.qml +qtdeclarative/tests/auto/qmlls/utils/data/completions/missingRHS.qml +qtdeclarative/tests/auto/qmlls/utils/data/emptyFile.qml qtdeclarative/tests/auto/quick/qquickloader/data/InvalidSourceComponent.qml qtdeclarative/tests/auto/quickcontrols/controls/data/tst_scrollbar.qml +qtdeclarative/tests/manual/qmllsformatter/test.qml diff --git a/vendored_parsers/tree-sitter-qmljs/grammar.js b/vendored_parsers/tree-sitter-qmljs/grammar.js index 8d7d66d5f2..6623fecca6 100644 --- a/vendored_parsers/tree-sitter-qmljs/grammar.js +++ b/vendored_parsers/tree-sitter-qmljs/grammar.js @@ -2,7 +2,7 @@ // https://code.qt.io/cgit/qt/qtdeclarative.git/tree/src/qml/ // compiler/qqmlirbuilder.cpp // parser/{qqmljs.g,qqmljsast_p.h,qqmljslexer.cpp} -// 6ac764a4d9e3bd723e955e8e9d5efd8ef6900214 +// 49ec094b7fb1eb6675fdc1db8348409cd3ff8184 module.exports = grammar(require('tree-sitter-typescript/typescript/grammar'), { name: 'qmljs', @@ -21,6 +21,8 @@ module.exports = grammar(require('tree-sitter-typescript/typescript/grammar'), { $._ui_script_statement, $._ui_qualified_id, $._ui_identifier, + $._ui_simple_qualified_id, + $._ui_reserved_identifier, ]), conflicts: ($, original) => original.concat([ @@ -45,7 +47,8 @@ module.exports = grammar(require('tree-sitter-typescript/typescript/grammar'), { field('name', $.identifier), // PragmaId optional(seq( ':', - field('value', $.identifier), + // TODO: or insert 'values': (ui_pragma_value_list ..)? + sep1(field('value', choice($.identifier, $.string)), ','), )), $._semicolon, ), @@ -54,9 +57,8 @@ module.exports = grammar(require('tree-sitter-typescript/typescript/grammar'), { 'import', field('source', choice( $.string, - $.identifier, - $.nested_identifier, - )), // ImportId + $._ui_qualified_id, + )), // ImportId: MemberExpression optional(field('version', $.ui_version_specifier)), optional(seq( 'as', @@ -94,10 +96,7 @@ module.exports = grammar(require('tree-sitter-typescript/typescript/grammar'), { ui_annotation: $ => seq( '@', - field('type_name', choice( - $.identifier, - $.nested_identifier, - )), // UiSimpleQualifiedId + field('type_name', $._ui_simple_qualified_id), field('initializer', $.ui_object_initializer), ), @@ -286,7 +285,7 @@ module.exports = grammar(require('tree-sitter-typescript/typescript/grammar'), { _ui_identifier: $ => choice( $.identifier, - alias($._reserved_identifier, $.identifier), + alias($._ui_reserved_identifier, $.identifier), ), ui_nested_identifier: $ => seq( @@ -295,6 +294,17 @@ module.exports = grammar(require('tree-sitter-typescript/typescript/grammar'), { $.identifier, ), + _ui_simple_qualified_id: $ => choice( + $.identifier, + alias($.ui_simple_nested_identifier, $.nested_identifier), + ), + + ui_simple_nested_identifier: $ => seq( + $._ui_simple_qualified_id, + '.', + $.identifier, + ), + // teach JavaScript/TypeScript grammar about QML keywords. _reserved_identifier: ($, original) => choice( original, @@ -308,6 +318,51 @@ module.exports = grammar(require('tree-sitter-typescript/typescript/grammar'), { 'from', 'of', ), + + _ui_reserved_identifier: $ => choice( + // JavaScript: + 'get', + 'set', + 'async', + 'static', + 'export', + 'let', + + // TypeScript: + 'declare', + 'namespace', + 'type', + 'public', + 'private', + 'protected', + 'override', + 'readonly', + 'module', + 'any', + 'number', + 'boolean', + 'string', + 'symbol', + 'export', + 'object', + // 'new', ('new {}' would conflict at property value position) + 'readonly', + + // QML (see QmlIdentifier): + 'property', + 'signal', + 'readonly', + 'on', + 'from', + 'of', + 'required', + 'component', + ), + + // Patch up JavaScript string rules to support multi-line string literal. + // (See also the change b16c69a70be9 in tree-sitter-javascript.) + unescaped_double_string_fragment: _ => token.immediate(prec(1, /[^"\\]+/)), + unescaped_single_string_fragment: _ => token.immediate(prec(1, /[^'\\]+/)), }, }); diff --git a/vendored_parsers/tree-sitter-qmljs/package.json b/vendored_parsers/tree-sitter-qmljs/package.json index b3579c313b..648ce1bcdc 100644 --- a/vendored_parsers/tree-sitter-qmljs/package.json +++ b/vendored_parsers/tree-sitter-qmljs/package.json @@ -26,8 +26,8 @@ }, "devDependencies": { "tree-sitter-cli": "^0.20.1", - "tree-sitter-javascript": "github:tree-sitter/tree-sitter-javascript#7a29d06274b7cf87d643212a433d970b73969016", - "tree-sitter-typescript": "github:tree-sitter/tree-sitter-typescript#faad9094f4061a43d4e9005439e9e85c6541ebe7" + "tree-sitter-javascript": "0.20.3", + "tree-sitter-typescript": "0.20.5" }, "tree-sitter": [ { diff --git a/vendored_parsers/tree-sitter-qmljs/src/grammar.json b/vendored_parsers/tree-sitter-qmljs/src/grammar.json index 61424c0a68..fb433458fc 100644 --- a/vendored_parsers/tree-sitter-qmljs/src/grammar.json +++ b/vendored_parsers/tree-sitter-qmljs/src/grammar.json @@ -556,6 +556,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "import_attribute" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_semicolon" @@ -578,7 +590,7 @@ "members": [ { "type": "SYMBOL", - "name": "identifier" + "name": "_import_identifier" }, { "type": "CHOICE", @@ -738,7 +750,7 @@ "name": "name", "content": { "type": "SYMBOL", - "name": "identifier" + "name": "_import_identifier" } }, { @@ -748,8 +760,22 @@ "type": "FIELD", "name": "name", "content": { - "type": "SYMBOL", - "name": "_module_export_name" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_module_export_name" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "type" + }, + "named": true, + "value": "identifier" + } + ] } }, { @@ -761,7 +787,7 @@ "name": "alias", "content": { "type": "SYMBOL", - "name": "identifier" + "name": "_import_identifier" } } ] @@ -770,6 +796,19 @@ } ] }, + "import_attribute": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "with" + }, + { + "type": "SYMBOL", + "name": "object" + } + ] + }, "statement": { "type": "CHOICE", "members": [ @@ -1468,10 +1507,6 @@ "type": "SYMBOL", "name": "parenthesized_expression" } - }, - { - "type": "SYMBOL", - "name": "_semicolon" } ] }, @@ -1963,6 +1998,10 @@ "type": "SYMBOL", "name": "satisfies_expression" }, + { + "type": "SYMBOL", + "name": "instantiation_expression" + }, { "type": "SYMBOL", "name": "internal_module" @@ -2084,10 +2123,6 @@ "type": "SYMBOL", "name": "null" }, - { - "type": "SYMBOL", - "name": "import" - }, { "type": "SYMBOL", "name": "object" @@ -2098,7 +2133,7 @@ }, { "type": "SYMBOL", - "name": "function" + "name": "function_expression" }, { "type": "SYMBOL", @@ -2781,41 +2816,22 @@ } ] }, - "jsx_fragment": { - "type": "SEQ", + "jsx_text": { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_jsx_child" - } - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "/" + "type": "PATTERN", + "value": "[^{}<>\\n& ]([^{}<>\\n&]*[^{}<>\\n& ])?" }, { - "type": "STRING", - "value": ">" + "type": "PATTERN", + "value": "\\/\\/[^\\n]*" } ] }, - "jsx_text": { + "html_character_reference": { "type": "PATTERN", - "value": "[^{}<>]+" + "value": "&(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30});" }, "jsx_expression": { "type": "SEQ", @@ -2864,11 +2880,11 @@ }, { "type": "SYMBOL", - "name": "_jsx_element" + "name": "html_character_reference" }, { "type": "SYMBOL", - "name": "jsx_fragment" + "name": "_jsx_element" }, { "type": "SYMBOL", @@ -2922,25 +2938,43 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "nested_identifier" - } - ] + "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": "SYMBOL", - "name": "identifier" + "type": "FIELD", + "name": "property", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" + } } ] } @@ -2970,8 +3004,13 @@ "name": "_jsx_identifier" }, { - "type": "SYMBOL", - "name": "nested_identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "nested_identifier" + }, + "named": true, + "value": "member_expression" }, { "type": "SYMBOL", @@ -2984,19 +3023,23 @@ "members": [ { "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "/" + "value": "" + "value": "/>" } ] } @@ -3086,12 +3125,112 @@ } ] }, + "_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": "[^\"&]+" + } + } + }, + "unescaped_single_jsx_string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^'&]+" + } + } + }, "_jsx_attribute_value": { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "string" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_jsx_string" + }, + "named": true, + "value": "string" }, { "type": "SYMBOL", @@ -3100,10 +3239,6 @@ { "type": "SYMBOL", "name": "_jsx_element" - }, - { - "type": "SYMBOL", - "name": "jsx_fragment" } ] }, @@ -3293,7 +3428,7 @@ } ] }, - "function": { + "function_expression": { "type": "PREC", "value": "literal", "content": { @@ -3632,7 +3767,7 @@ }, { "type": "SYMBOL", - "name": "asserts" + "name": "asserts_annotation" }, { "type": "SYMBOL", @@ -3678,8 +3813,17 @@ "type": "FIELD", "name": "function", "content": { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "import" + } + ] } }, { @@ -3854,6 +3998,10 @@ { "type": "SYMBOL", "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "import" } ] } @@ -4003,6 +4151,18 @@ "content": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "using" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "left", @@ -5062,8 +5222,17 @@ "type": "FIELD", "name": "left", "content": { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "private_property_identifier" + } + ] } }, { @@ -5211,38 +5380,33 @@ } }, "sequence_expression": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { + "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" + } + ] + } } - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "sequence_expression" - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - } - } - ] + ] + } }, "string": { "type": "CHOICE", @@ -5370,6 +5534,10 @@ { "type": "PATTERN", "value": "u{[0-9a-fA-F]+}" + }, + { + "type": "PATTERN", + "value": "[\\r?][\\n\\u2028\\u2029]" } ] } @@ -5377,42 +5545,47 @@ } }, "comment": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "//" - }, - { - "type": "PATTERN", - "value": ".*" - } - ] - }, - { - "type": "SEQ", + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "/*" - }, - { - "type": "PATTERN", - "value": "[^*]*\\*+([^/*][^*]*\\*+)*" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "//" + }, + { + "type": "PATTERN", + "value": ".*" + } + ] }, { - "type": "STRING", - "value": "/" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "/*" + }, + { + "type": "PATTERN", + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" + }, + { + "type": "STRING", + "value": "/" + } + ] } ] } - ] - } + } + ] }, "template_string": { "type": "SEQ", @@ -5427,8 +5600,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_template_chars" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_template_chars" + }, + "named": true, + "value": "string_fragment" }, { "type": "SYMBOL", @@ -6381,13 +6559,20 @@ "content": { "type": "CHOICE", "members": [ - { - "type": "SYMBOL", - "name": "decorator" - }, { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + } + }, { "type": "SYMBOL", "name": "method_definition" @@ -6470,6 +6655,10 @@ ] } ] + }, + { + "type": "STRING", + "value": ";" } ] } @@ -6949,6 +7138,18 @@ "type": "STRING", "value": "export" }, + { + "type": "STRING", + "value": "object" + }, + { + "type": "STRING", + "value": "new" + }, + { + "type": "STRING", + "value": "readonly" + }, { "type": "CHOICE", "members": [ @@ -6971,6 +7172,10 @@ { "type": "STRING", "value": "export" + }, + { + "type": "STRING", + "value": "let" } ] } @@ -7027,23 +7232,65 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "declare" - }, - { - "type": "BLANK" + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "decorator", + "content": { + "type": "SYMBOL", + "name": "decorator" } - ] + } }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "accessibility_modifier" + "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" @@ -7223,73 +7470,109 @@ { "type": "CHOICE", "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_jsx_identifier" - }, - { - "type": "SYMBOL", - "name": "jsx_namespace_name" - } - ] - } - }, { "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "nested_identifier" + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_jsx_identifier" + }, + { + "type": "SYMBOL", + "name": "jsx_namespace_name" + } + ] } - ] - } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "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": "FIELD", - "name": "type_arguments", + "type": "REPEAT", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_arguments" - }, - { - "type": "BLANK" - } - ] + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "_jsx_attribute" + } } } ] + }, + { + "type": "BLANK" } ] + } + ] + }, + "_import_identifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" }, { - "type": "REPEAT", + "type": "ALIAS", "content": { - "type": "FIELD", - "name": "attribute", - "content": { - "type": "SYMBOL", - "name": "_jsx_attribute" - } - } + "type": "STRING", + "value": "type" + }, + "named": true, + "value": "identifier" } ] }, @@ -7443,6 +7726,18 @@ "type": "STRING", "value": "abstract" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "override_modifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -7572,8 +7867,17 @@ "value": "as" }, { - "type": "SYMBOL", - "name": "_type" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "const" + }, + { + "type": "SYMBOL", + "name": "_type" + } + ] } ] } @@ -7599,6 +7903,27 @@ ] } }, + "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": [ @@ -7643,33 +7968,8 @@ "type": "SEQ", "members": [ { - "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" - } - ] - } - } - ] + "type": "SYMBOL", + "name": "_extends_clause_single" }, { "type": "REPEAT", @@ -7681,33 +7981,8 @@ "value": "," }, { - "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" - } - ] - } - } - ] + "type": "SYMBOL", + "name": "_extends_clause_single" } ] } @@ -7716,6 +7991,39 @@ } ] }, + "_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": [ @@ -8078,8 +8386,13 @@ "type": "FIELD", "name": "body", "content": { - "type": "SYMBOL", - "name": "object_type" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "object_type" + }, + "named": true, + "value": "interface_body" } } ] @@ -8525,12 +8838,12 @@ } ] }, - "opting_type_annotation": { + "adding_type_annotation": { "type": "SEQ", "members": [ { "type": "STRING", - "value": "?:" + "value": "+?:" }, { "type": "SYMBOL", @@ -8538,12 +8851,12 @@ } ] }, - "type_annotation": { + "opting_type_annotation": { "type": "SEQ", "members": [ { "type": "STRING", - "value": ":" + "value": "?:" }, { "type": "SYMBOL", @@ -8551,37 +8864,184 @@ } ] }, - "asserts": { + "type_annotation": { "type": "SEQ", "members": [ { "type": "STRING", "value": ":" }, - { - "type": "STRING", - "value": "asserts" - }, { "type": "CHOICE", "members": [ { "type": "SYMBOL", - "name": "type_predicate" + "name": "_type" }, { - "type": "SYMBOL", - "name": "identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_member_expression_in_type_annotation" + }, + "named": true, + "value": "member_expression" }, { - "type": "SYMBOL", - "name": "this" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_call_expression_in_type_annotation" + }, + "named": true, + "value": "call_expression" } ] } ] }, - "_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": [ { @@ -8866,6 +9326,10 @@ { "type": "SYMBOL", "name": "union_type" + }, + { + "type": "STRING", + "value": "const" } ] }, @@ -8925,20 +9389,45 @@ ] }, "infer_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "infer" - }, - { - "type": "SYMBOL", - "name": "_type_identifier" - } - ] + "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_LEFT", + "type": "PREC_RIGHT", "value": 0, "content": { "type": "SEQ", @@ -9299,6 +9788,54 @@ } ] }, + "_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, @@ -9339,6 +9876,15 @@ "named": true, "value": "call_expression" }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_type_query_instantiation_expression" + }, + "named": true, + "value": "instantiation_expression" + }, { "type": "SYMBOL", "name": "identifier" @@ -9565,6 +10111,24 @@ "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" @@ -9598,11 +10162,34 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "REPEAT", + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type" + }, + { + "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": "REPEAT", "content": { "type": "SEQ", "members": [ @@ -9611,8 +10198,31 @@ "value": "," }, { - "type": "SYMBOL", - "name": "_type" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type" + }, + { + "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" + } + ] } ] } @@ -9953,6 +10563,18 @@ "type_parameter": { "type": "SEQ", "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "const" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "name", @@ -10107,8 +10729,17 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "-" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "+" + } + ] }, { "type": "BLANK" @@ -10197,6 +10828,10 @@ "type": "SYMBOL", "name": "omitting_type_annotation" }, + { + "type": "SYMBOL", + "name": "adding_type_annotation" + }, { "type": "SYMBOL", "name": "opting_type_annotation" @@ -10396,6 +11031,10 @@ "type": "SYMBOL", "name": "_type" }, + { + "type": "SYMBOL", + "name": "asserts" + }, { "type": "SYMBOL", "name": "type_predicate" @@ -10441,12 +11080,55 @@ "value": ":" }, { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "identifier" - } + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "string" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "string" + } + ] + } + } + ] + } + } + ] } ] }, @@ -10480,11 +11162,7 @@ }, { "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "nested_identifier" + "name": "_ui_qualified_id" } ] } @@ -10658,17 +11336,8 @@ "type": "FIELD", "name": "type_name", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "nested_identifier" - } - ] + "type": "SYMBOL", + "name": "_ui_simple_qualified_id" } }, { @@ -11469,7 +12138,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_reserved_identifier" + "name": "_ui_reserved_identifier" }, "named": true, "value": "identifier" @@ -11492,6 +12161,170 @@ "name": "identifier" } ] + }, + "_ui_simple_qualified_id": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ui_simple_nested_identifier" + }, + "named": true, + "value": "nested_identifier" + } + ] + }, + "ui_simple_nested_identifier": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_ui_simple_qualified_id" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + "_ui_reserved_identifier": { + "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" + }, + { + "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": "readonly" + }, + { + "type": "STRING", + "value": "property" + }, + { + "type": "STRING", + "value": "signal" + }, + { + "type": "STRING", + "value": "readonly" + }, + { + "type": "STRING", + "value": "on" + }, + { + "type": "STRING", + "value": "from" + }, + { + "type": "STRING", + "value": "of" + }, + { + "type": "STRING", + "value": "required" + }, + { + "type": "STRING", + "value": "component" + } + ] } }, "extras": [ @@ -11499,9 +12332,13 @@ "type": "SYMBOL", "name": "comment" }, + { + "type": "SYMBOL", + "name": "html_comment" + }, { "type": "PATTERN", - "value": "[\\s\\p{Zs}\\uFEFF\\u2060\\u200B]" + "value": "[\\s\\p{Zs}\\uFEFF\\u2028\\u2029\\u2060\\u200B]" } ], "conflicts": [ @@ -11564,25 +12401,24 @@ ], [ "call_expression", + "instantiation_expression", "binary_expression" ], [ "call_expression", + "instantiation_expression", "binary_expression", "unary_expression" ], [ "call_expression", + "instantiation_expression", "binary_expression", "update_expression" ], [ "call_expression", - "binary_expression", - "type_assertion" - ], - [ - "call_expression", + "instantiation_expression", "binary_expression", "await_expression" ], @@ -11598,19 +12434,6 @@ "nested_identifier", "nested_type_identifier" ], - [ - "nested_identifier", - "member_expression" - ], - [ - "primary_expression", - "array_type" - ], - [ - "primary_expression", - "array_type", - "tuple_type" - ], [ "_call_signature", "function_type" @@ -11627,15 +12450,6 @@ "jsx_opening_element", "type_parameter" ], - [ - "jsx_opening_element", - "type_parameter", - "_primary_type" - ], - [ - "jsx_opening_element", - "generic_type" - ], [ "jsx_namespace_name", "_primary_type" @@ -11644,31 +12458,15 @@ "primary_expression", "_parameter_name" ], - [ - "primary_expression", - "_parameter_name", - "predefined_type" - ], [ "primary_expression", "_parameter_name", "_primary_type" ], - [ - "primary_expression", - "_parameter_name", - "array_type", - "tuple_type" - ], [ "primary_expression", "literal_type" ], - [ - "primary_expression", - "literal_type", - "pattern" - ], [ "primary_expression", "literal_type", @@ -11696,61 +12494,27 @@ "pattern", "_primary_type" ], - [ - "primary_expression", - "pattern", - "predefined_type" - ], - [ - "_parameter_name", - "predefined_type" - ], [ "_parameter_name", "_primary_type" ], - [ - "_parameter_name", - "assignment_expression" - ], - [ - "_parameter_name", - "pattern" - ], [ "pattern", "_primary_type" ], - [ - "pattern", - "predefined_type" - ], [ "optional_tuple_parameter", "_primary_type" ], - [ - "optional_tuple_parameter", - "_primary_type", - "primary_expression" - ], [ "rest_pattern", "_primary_type", "primary_expression" ], - [ - "rest_pattern", - "_primary_type" - ], [ "object", "object_type" ], - [ - "object", - "_property_name" - ], [ "object", "object_pattern", @@ -11769,10 +12533,6 @@ "object_pattern", "object_type" ], - [ - "object_pattern", - "_property_name" - ], [ "array", "tuple_type" @@ -11950,11 +12710,25 @@ "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" @@ -11972,6 +12746,16 @@ "name": "arrow_function" } ], + [ + { + "type": "STRING", + "value": "extends" + }, + { + "type": "STRING", + "value": "instantiation" + } + ], [ { "type": "SYMBOL", @@ -12194,6 +12978,16 @@ "name": "member_expression" } ], + [ + { + "type": "SYMBOL", + "name": "member_expression" + }, + { + "type": "SYMBOL", + "name": "_type_query_member_expression_in_type_annotation" + } + ], [ { "type": "SYMBOL", @@ -12234,6 +13028,16 @@ "name": "primary_expression" } ], + [ + { + "type": "SYMBOL", + "name": "_type_query_instantiation_expression" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ], [ { "type": "SYMBOL", @@ -12283,6 +13087,56 @@ "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": [ @@ -12298,10 +13152,18 @@ "type": "SYMBOL", "name": "_ternary_qmark" }, + { + "type": "SYMBOL", + "name": "html_comment" + }, { "type": "STRING", "value": "||" }, + { + "type": "SYMBOL", + "name": "escape_sequence" + }, { "type": "SYMBOL", "name": "_function_signature_automatic_semicolon" @@ -12322,7 +13184,6 @@ "_jsx_identifier", "_lhs_expression", "_type_identifier", - "ReferenceError", "_jsx_start_opening_element", "_ui_root_member", "_ui_object_member", @@ -12331,7 +13192,9 @@ "_ui_property_value", "_ui_script_statement", "_ui_qualified_id", - "_ui_identifier" + "_ui_identifier", + "_ui_simple_qualified_id", + "_ui_reserved_identifier" ], "supertypes": [ "statement", diff --git a/vendored_parsers/tree-sitter-qmljs/src/node-types.json b/vendored_parsers/tree-sitter-qmljs/src/node-types.json index 69d8c3edd0..713450592f 100644 --- a/vendored_parsers/tree-sitter-qmljs/src/node-types.json +++ b/vendored_parsers/tree-sitter-qmljs/src/node-types.json @@ -11,6 +11,10 @@ "type": "conditional_type", "named": true }, + { + "type": "const", + "named": false + }, { "type": "existential_type", "named": true @@ -255,6 +259,10 @@ "type": "glimmer_template", "named": true }, + { + "type": "instantiation_expression", + "named": true + }, { "type": "internal_module", "named": true @@ -356,7 +364,7 @@ "named": true }, { - "type": "function", + "type": "function_expression", "named": true }, { @@ -367,10 +375,6 @@ "type": "identifier", "named": true }, - { - "type": "import", - "named": true - }, { "type": "member_expression", "named": true @@ -620,7 +624,7 @@ "required": false, "types": [ { - "type": "asserts", + "type": "asserts_annotation", "named": true }, { @@ -645,12 +649,16 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ { "type": "accessibility_modifier", "named": true + }, + { + "type": "override_modifier", + "named": true } ] } @@ -660,6 +668,37 @@ "named": true, "fields": {} }, + { + "type": "adding_type_annotation", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_primary_type", + "named": true + }, + { + "type": "constructor_type", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "infer_type", + "named": true + }, + { + "type": "readonly_type", + "named": true + } + ] + } + }, { "type": "ambient_declaration", "named": true, @@ -818,7 +857,7 @@ "required": false, "types": [ { - "type": "asserts", + "type": "asserts_annotation", "named": true }, { @@ -901,6 +940,21 @@ ] } }, + { + "type": "asserts_annotation", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "asserts", + "named": true + } + ] + } + }, { "type": "assignment_expression", "named": true, @@ -1115,6 +1169,10 @@ { "type": "expression", "named": true + }, + { + "type": "private_property_identifier", + "named": true } ] }, @@ -1277,6 +1335,10 @@ { "type": "expression", "named": true + }, + { + "type": "import", + "named": true } ] }, @@ -1311,7 +1373,7 @@ "required": false, "types": [ { - "type": "asserts", + "type": "asserts_annotation", "named": true }, { @@ -1439,7 +1501,18 @@ { "type": "class_body", "named": true, - "fields": {}, + "fields": { + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + } + }, "children": { "multiple": true, "required": false, @@ -1452,10 +1525,6 @@ "type": "class_static_block", "named": true }, - { - "type": "decorator", - "named": true - }, { "type": "index_signature", "named": true @@ -1566,6 +1635,11 @@ } } }, + { + "type": "comment", + "named": true, + "fields": {} + }, { "type": "computed_property_name", "named": true, @@ -2471,7 +2545,7 @@ } }, { - "type": "function", + "type": "function_declaration", "named": true, "fields": { "body": { @@ -2486,7 +2560,7 @@ }, "name": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "identifier", @@ -2509,7 +2583,7 @@ "required": false, "types": [ { - "type": "asserts", + "type": "asserts_annotation", "named": true }, { @@ -2535,7 +2609,7 @@ } }, { - "type": "function_declaration", + "type": "function_expression", "named": true, "fields": { "body": { @@ -2550,7 +2624,7 @@ }, "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -2573,7 +2647,7 @@ "required": false, "types": [ { - "type": "asserts", + "type": "asserts_annotation", "named": true }, { @@ -2627,7 +2701,7 @@ "required": false, "types": [ { - "type": "asserts", + "type": "asserts_annotation", "named": true }, { @@ -2674,6 +2748,10 @@ "type": "_primary_type", "named": true }, + { + "type": "asserts", + "named": true + }, { "type": "constructor_type", "named": true @@ -2747,7 +2825,7 @@ "required": false, "types": [ { - "type": "asserts", + "type": "asserts_annotation", "named": true }, { @@ -2811,7 +2889,7 @@ "required": false, "types": [ { - "type": "asserts", + "type": "asserts_annotation", "named": true }, { @@ -2998,6 +3076,21 @@ ] } }, + { + "type": "import_attribute", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "object", + "named": true + } + ] + } + }, { "type": "import_clause", "named": true, @@ -3093,9 +3186,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "import_attribute", + "named": true + }, { "type": "import_clause", "named": true @@ -3151,6 +3248,10 @@ "multiple": false, "required": false, "types": [ + { + "type": "+", + "named": false + }, { "type": "-", "named": false @@ -3161,6 +3262,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "adding_type_annotation", + "named": true + }, { "type": "omitting_type_annotation", "named": true @@ -3207,11 +3312,110 @@ "named": true, "fields": {}, "children": { - "multiple": false, + "multiple": true, "required": true, "types": [ { - "type": "type_identifier", + "type": "_primary_type", + "named": true + }, + { + "type": "constructor_type", + "named": true + }, + { + "type": "function_type", + "named": true + }, + { + "type": "infer_type", + "named": true + }, + { + "type": "readonly_type", + "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 } ] @@ -3226,7 +3430,7 @@ "required": true, "types": [ { - "type": "object_type", + "type": "interface_body", "named": true } ] @@ -3344,10 +3548,6 @@ "type": "jsx_expression", "named": true }, - { - "type": "jsx_fragment", - "named": true - }, { "type": "jsx_namespace_name", "named": true @@ -3373,7 +3573,7 @@ "fields": { "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -3384,7 +3584,7 @@ "named": true }, { - "type": "nested_identifier", + "type": "member_expression", "named": true } ] @@ -3421,15 +3621,15 @@ "required": false, "types": [ { - "type": "jsx_element", + "type": "html_character_reference", "named": true }, { - "type": "jsx_expression", + "type": "jsx_element", "named": true }, { - "type": "jsx_fragment", + "type": "jsx_expression", "named": true }, { @@ -3466,37 +3666,6 @@ ] } }, - { - "type": "jsx_fragment", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "jsx_element", - "named": true - }, - { - "type": "jsx_expression", - "named": true - }, - { - "type": "jsx_fragment", - "named": true - }, - { - "type": "jsx_self_closing_element", - "named": true - }, - { - "type": "jsx_text", - "named": true - } - ] - } - }, { "type": "jsx_namespace_name", "named": true, @@ -3532,7 +3701,7 @@ }, "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -3543,7 +3712,7 @@ "named": true }, { - "type": "nested_identifier", + "type": "member_expression", "named": true } ] @@ -3580,7 +3749,7 @@ }, "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -3591,7 +3760,7 @@ "named": true }, { - "type": "nested_identifier", + "type": "member_expression", "named": true } ] @@ -3608,6 +3777,11 @@ } } }, + { + "type": "jsx_text", + "named": true, + "fields": {} + }, { "type": "labeled_statement", "named": true, @@ -3813,6 +3987,10 @@ { "type": "expression", "named": true + }, + { + "type": "import", + "named": true } ] }, @@ -3902,7 +4080,7 @@ "required": false, "types": [ { - "type": "asserts", + "type": "asserts_annotation", "named": true }, { @@ -3986,7 +4164,7 @@ "required": false, "types": [ { - "type": "asserts", + "type": "asserts_annotation", "named": true }, { @@ -4111,10 +4289,35 @@ { "type": "nested_identifier", "named": true, - "fields": {}, + "fields": { + "object": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + }, + "property": { + "multiple": false, + "required": false, + "types": [ + { + "type": "property_identifier", + "named": true + } + ] + } + }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -4760,6 +4963,16 @@ "type": "public_field_definition", "named": true, "fields": { + "decorator": { + "multiple": true, + "required": false, + "types": [ + { + "type": "decorator", + "named": true + } + ] + }, "name": { "multiple": false, "required": true, @@ -5084,31 +5297,16 @@ { "type": "sequence_expression", "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "expression", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "expression", - "named": true - }, - { - "type": "sequence_expression", - "named": true - } - ] - } + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] } }, { @@ -5153,6 +5351,10 @@ "type": "escape_sequence", "named": true }, + { + "type": "html_character_reference", + "named": true + }, { "type": "string_fragment", "named": true @@ -5330,6 +5532,10 @@ "type": "escape_sequence", "named": true }, + { + "type": "string_fragment", + "named": true + }, { "type": "template_substitution", "named": true @@ -5577,6 +5783,10 @@ "type": "_primary_type", "named": true }, + { + "type": "call_expression", + "named": true + }, { "type": "constructor_type", "named": true @@ -5589,6 +5799,10 @@ "type": "infer_type", "named": true }, + { + "type": "member_expression", + "named": true + }, { "type": "readonly_type", "named": true @@ -5608,6 +5822,10 @@ "type": "_primary_type", "named": true }, + { + "type": "call_expression", + "named": true + }, { "type": "constructor_type", "named": true @@ -5620,6 +5838,10 @@ "type": "infer_type", "named": true }, + { + "type": "member_expression", + "named": true + }, { "type": "readonly_type", "named": true @@ -5774,6 +5996,10 @@ "type": "identifier", "named": true }, + { + "type": "instantiation_expression", + "named": true + }, { "type": "member_expression", "named": true @@ -6117,12 +6343,16 @@ ] }, "value": { - "multiple": false, + "multiple": true, "required": false, "types": [ { "type": "identifier", "named": true + }, + { + "type": "string", + "named": true } ] } @@ -6637,6 +6867,10 @@ "type": "+=", "named": false }, + { + "type": "+?:", + "named": false + }, { "type": ",", "named": false @@ -6673,6 +6907,10 @@ "type": "/=", "named": false }, + { + "type": "/>", + "named": false + }, { "type": ":", "named": false @@ -6685,6 +6923,10 @@ "type": "<", "named": false }, + { + "type": "", "named": false @@ -6833,10 +7075,6 @@ "type": "class", "named": false }, - { - "type": "comment", - "named": true - }, { "type": "component", "named": false @@ -6921,6 +7159,14 @@ "type": "hash_bang_line", "named": true }, + { + "type": "html_character_reference", + "named": true + }, + { + "type": "html_comment", + "named": true + }, { "type": "if", "named": false @@ -6953,10 +7199,6 @@ "type": "is", "named": false }, - { - "type": "jsx_text", - "named": true - }, { "type": "keyof", "named": false @@ -6987,11 +7229,11 @@ }, { "type": "number", - "named": true + "named": false }, { "type": "number", - "named": false + "named": true }, { "type": "object", @@ -7149,10 +7391,18 @@ "type": "undefined", "named": true }, + { + "type": "unique symbol", + "named": false + }, { "type": "unknown", "named": false }, + { + "type": "using", + "named": false + }, { "type": "var", "named": false diff --git a/vendored_parsers/tree-sitter-qmljs/src/parser.c b/vendored_parsers/tree-sitter-qmljs/src/parser.c index 9fa2615379..827c59aa9e 100644 --- a/vendored_parsers/tree-sitter-qmljs/src/parser.c +++ b/vendored_parsers/tree-sitter-qmljs/src/parser.c @@ -5,16 +5,24 @@ #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 5023 -#define LARGE_STATE_COUNT 1106 -#define SYMBOL_COUNT 401 -#define ALIAS_COUNT 5 -#define TOKEN_COUNT 168 -#define EXTERNAL_TOKEN_COUNT 5 +#define STATE_COUNT 8744 +#define LARGE_STATE_COUNT 2210 +#define SYMBOL_COUNT 419 +#define ALIAS_COUNT 6 +#define TOKEN_COUNT 172 +#define EXTERNAL_TOKEN_COUNT 7 #define FIELD_COUNT 51 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 327 +#define PRODUCTION_ID_COUNT 398 enum { sym_identifier = 1, @@ -32,23 +40,23 @@ enum { anon_sym_typeof = 13, anon_sym_import = 14, anon_sym_from = 15, - anon_sym_var = 16, - anon_sym_let = 17, - anon_sym_const = 18, - anon_sym_BANG = 19, - anon_sym_else = 20, - anon_sym_if = 21, - anon_sym_switch = 22, - anon_sym_for = 23, - anon_sym_LPAREN = 24, - anon_sym_RPAREN = 25, - anon_sym_await = 26, - anon_sym_in = 27, - anon_sym_of = 28, - anon_sym_while = 29, - anon_sym_do = 30, - anon_sym_try = 31, - anon_sym_with = 32, + anon_sym_with = 16, + anon_sym_var = 17, + anon_sym_let = 18, + anon_sym_const = 19, + anon_sym_BANG = 20, + anon_sym_else = 21, + anon_sym_if = 22, + anon_sym_switch = 23, + anon_sym_for = 24, + anon_sym_LPAREN = 25, + anon_sym_RPAREN = 26, + anon_sym_await = 27, + anon_sym_in = 28, + anon_sym_of = 29, + anon_sym_while = 30, + anon_sym_do = 31, + anon_sym_try = 32, anon_sym_break = 33, anon_sym_continue = 34, anon_sym_debugger = 35, @@ -65,363 +73,382 @@ enum { sym__glimmer_template_content = 46, anon_sym_LTtemplate_GT = 47, anon_sym_LT_SLASHtemplate_GT = 48, - anon_sym_LT = 49, - anon_sym_GT = 50, - anon_sym_SLASH = 51, - anon_sym_DOT = 52, + anon_sym_GT = 49, + anon_sym_DOT = 50, + anon_sym_DQUOTE = 51, + anon_sym_SQUOTE = 52, anon_sym_class = 53, anon_sym_async = 54, anon_sym_function = 55, anon_sym_EQ_GT = 56, anon_sym_QMARK_DOT = 57, anon_sym_new = 58, - anon_sym_PLUS_EQ = 59, - anon_sym_DASH_EQ = 60, - anon_sym_STAR_EQ = 61, - anon_sym_SLASH_EQ = 62, - anon_sym_PERCENT_EQ = 63, - anon_sym_CARET_EQ = 64, - anon_sym_AMP_EQ = 65, - anon_sym_PIPE_EQ = 66, - anon_sym_GT_GT_EQ = 67, - anon_sym_GT_GT_GT_EQ = 68, - anon_sym_LT_LT_EQ = 69, - anon_sym_STAR_STAR_EQ = 70, - anon_sym_AMP_AMP_EQ = 71, - anon_sym_PIPE_PIPE_EQ = 72, - anon_sym_QMARK_QMARK_EQ = 73, - anon_sym_DOT_DOT_DOT = 74, - anon_sym_AMP_AMP = 75, - anon_sym_PIPE_PIPE = 76, - anon_sym_GT_GT = 77, - anon_sym_GT_GT_GT = 78, - anon_sym_LT_LT = 79, - anon_sym_AMP = 80, - anon_sym_CARET = 81, - anon_sym_PIPE = 82, - anon_sym_PLUS = 83, - anon_sym_DASH = 84, - anon_sym_PERCENT = 85, - anon_sym_STAR_STAR = 86, - anon_sym_LT_EQ = 87, - anon_sym_EQ_EQ = 88, - anon_sym_EQ_EQ_EQ = 89, - anon_sym_BANG_EQ = 90, - anon_sym_BANG_EQ_EQ = 91, - anon_sym_GT_EQ = 92, - anon_sym_QMARK_QMARK = 93, - anon_sym_instanceof = 94, - anon_sym_TILDE = 95, - anon_sym_void = 96, - anon_sym_delete = 97, - anon_sym_PLUS_PLUS = 98, - anon_sym_DASH_DASH = 99, - anon_sym_DQUOTE = 100, - anon_sym_SQUOTE = 101, - sym_unescaped_double_string_fragment = 102, - sym_unescaped_single_string_fragment = 103, - sym_escape_sequence = 104, - sym_comment = 105, - anon_sym_BQUOTE = 106, - anon_sym_DOLLAR_LBRACE = 107, - anon_sym_SLASH2 = 108, - sym_regex_pattern = 109, - sym_regex_flags = 110, - sym_number = 111, - sym_private_property_identifier = 112, - anon_sym_target = 113, - sym_this = 114, - sym_super = 115, - sym_true = 116, - sym_false = 117, - sym_null = 118, - sym_undefined = 119, - anon_sym_AT = 120, - anon_sym_static = 121, - anon_sym_readonly = 122, - anon_sym_get = 123, - anon_sym_set = 124, - anon_sym_QMARK = 125, - anon_sym_declare = 126, - anon_sym_public = 127, - anon_sym_private = 128, - anon_sym_protected = 129, - anon_sym_override = 130, - anon_sym_module = 131, - anon_sym_any = 132, - anon_sym_number = 133, - anon_sym_boolean = 134, - anon_sym_string = 135, - anon_sym_symbol = 136, - anon_sym_property = 137, - anon_sym_signal = 138, - anon_sym_on = 139, - anon_sym_required = 140, - anon_sym_component = 141, - anon_sym_abstract = 142, - anon_sym_satisfies = 143, - anon_sym_require = 144, - anon_sym_extends = 145, - anon_sym_implements = 146, - anon_sym_global = 147, - anon_sym_interface = 148, - anon_sym_enum = 149, - anon_sym_DASH_QMARK_COLON = 150, - anon_sym_QMARK_COLON = 151, - anon_sym_asserts = 152, - anon_sym_infer = 153, - anon_sym_is = 154, - anon_sym_keyof = 155, - anon_sym_unknown = 156, - anon_sym_never = 157, - anon_sym_object = 158, - anon_sym_LBRACE_PIPE = 159, - anon_sym_PIPE_RBRACE = 160, - anon_sym_pragma = 161, - aux_sym_ui_version_specifier_token1 = 162, - anon_sym_list = 163, - sym__automatic_semicolon = 164, - sym__template_chars = 165, - sym__ternary_qmark = 166, - sym__function_signature_automatic_semicolon = 167, - sym_program = 168, - sym_export_statement = 169, - sym_namespace_export = 170, - sym_export_clause = 171, - sym_export_specifier = 172, - sym__module_export_name = 173, - sym_declaration = 174, - sym_import = 175, - sym_import_statement = 176, - sym_import_clause = 177, - sym__from_clause = 178, - sym_namespace_import = 179, - sym_named_imports = 180, - sym_import_specifier = 181, - sym_expression_statement = 182, - sym_variable_declaration = 183, - sym_lexical_declaration = 184, - sym_variable_declarator = 185, - sym_statement_block = 186, - sym_else_clause = 187, - sym_if_statement = 188, - sym_switch_statement = 189, - sym_for_statement = 190, - sym_for_in_statement = 191, - sym__for_header = 192, - sym_while_statement = 193, - sym_do_statement = 194, - sym_try_statement = 195, - sym_with_statement = 196, - sym_break_statement = 197, - sym_continue_statement = 198, - sym_debugger_statement = 199, - sym_return_statement = 200, - sym_throw_statement = 201, - sym_empty_statement = 202, - sym_labeled_statement = 203, - sym_switch_body = 204, - sym_switch_case = 205, - sym_switch_default = 206, - sym_catch_clause = 207, - sym_finally_clause = 208, - sym_parenthesized_expression = 209, - sym_expression = 210, - sym_primary_expression = 211, - sym_yield_expression = 212, - sym_object = 213, - sym_object_pattern = 214, - sym_assignment_pattern = 215, - sym_object_assignment_pattern = 216, - sym_array = 217, - sym_array_pattern = 218, - sym_glimmer_template = 219, - sym_glimmer_opening_tag = 220, - sym_glimmer_closing_tag = 221, - sym_nested_identifier = 222, - sym_class = 223, - sym_class_declaration = 224, - sym_class_heritage = 225, - sym_function = 226, - sym_function_declaration = 227, - sym_generator_function = 228, - sym_generator_function_declaration = 229, - sym_arrow_function = 230, - sym__call_signature = 231, - sym__formal_parameter = 232, - sym_optional_chain = 233, - sym_call_expression = 234, - sym_new_expression = 235, - sym_await_expression = 236, - sym_member_expression = 237, - sym_subscript_expression = 238, - sym_assignment_expression = 239, - sym__augmented_assignment_lhs = 240, - sym_augmented_assignment_expression = 241, - sym__initializer = 242, - sym__destructuring_pattern = 243, - sym_spread_element = 244, - sym_ternary_expression = 245, - sym_binary_expression = 246, - sym_unary_expression = 247, - sym_update_expression = 248, - sym_sequence_expression = 249, - sym_string = 250, - sym_template_string = 251, - sym_template_substitution = 252, - sym_regex = 253, - sym_meta_property = 254, - sym_arguments = 255, - sym_decorator = 256, - sym_decorator_member_expression = 257, - sym_decorator_call_expression = 258, - sym_class_body = 259, - sym_formal_parameters = 260, - sym_class_static_block = 261, - sym_pattern = 262, - sym_rest_pattern = 263, - sym_method_definition = 264, - sym_pair = 265, - sym_pair_pattern = 266, - sym__property_name = 267, - sym_computed_property_name = 268, - sym_public_field_definition = 269, - sym_non_null_expression = 270, - sym_method_signature = 271, - sym_abstract_method_signature = 272, - sym_function_signature = 273, - sym_type_assertion = 274, - sym_as_expression = 275, - sym_satisfies_expression = 276, - sym_import_require_clause = 277, - sym_extends_clause = 278, - sym_implements_clause = 279, - sym_ambient_declaration = 280, - sym_abstract_class_declaration = 281, - sym_module = 282, - sym_internal_module = 283, - sym__module = 284, - sym_import_alias = 285, - sym_nested_type_identifier = 286, - sym_interface_declaration = 287, - sym_extends_type_clause = 288, - sym_enum_declaration = 289, - sym_enum_body = 290, - sym_enum_assignment = 291, - sym_type_alias_declaration = 292, - sym_accessibility_modifier = 293, - sym_override_modifier = 294, - sym_required_parameter = 295, - sym_optional_parameter = 296, - sym__parameter_name = 297, - sym_omitting_type_annotation = 298, - sym_opting_type_annotation = 299, - sym_type_annotation = 300, - sym_asserts = 301, - sym__type = 302, - sym_tuple_parameter = 303, - sym_optional_tuple_parameter = 304, - sym_optional_type = 305, - sym_rest_type = 306, - sym__tuple_type_member = 307, - sym_constructor_type = 308, - sym__primary_type = 309, - sym_template_type = 310, - sym_template_literal_type = 311, - sym_infer_type = 312, - sym_conditional_type = 313, - sym_generic_type = 314, - sym_type_predicate = 315, - sym_type_predicate_annotation = 316, - sym__type_query_member_expression = 317, - sym__type_query_subscript_expression = 318, - sym__type_query_call_expression = 319, - sym_type_query = 320, - sym_index_type_query = 321, - sym_lookup_type = 322, - sym_mapped_type_clause = 323, - sym_literal_type = 324, - sym__number = 325, - sym_existential_type = 326, - sym_flow_maybe_type = 327, - sym_parenthesized_type = 328, - sym_predefined_type = 329, - sym_type_arguments = 330, - sym_object_type = 331, - sym_call_signature = 332, - sym_property_signature = 333, - sym_type_parameters = 334, - sym_type_parameter = 335, - sym_default_type = 336, - sym_constraint = 337, - sym_construct_signature = 338, - sym_index_signature = 339, - sym_array_type = 340, - sym_tuple_type = 341, - sym_readonly_type = 342, - sym_union_type = 343, - sym_intersection_type = 344, - sym_function_type = 345, - sym_ui_pragma = 346, - sym_ui_import = 347, - sym_ui_version_specifier = 348, - sym_ui_object_definition = 349, - sym_ui_annotated_object = 350, - sym_ui_annotation = 351, - sym_ui_object_initializer = 352, - sym_ui_annotated_object_member = 353, - sym_ui_object_definition_binding = 354, - sym_ui_binding = 355, - sym_ui_property = 356, - sym_ui_list_property_type = 357, - sym_ui_property_modifier = 358, - sym_ui_object_array = 359, - sym_ui_required = 360, - sym_ui_signal = 361, - sym_ui_signal_parameters = 362, - sym_ui_signal_parameter = 363, - sym_ui_inline_component = 364, - sym__qml_enum_declaration = 365, - sym__qml_enum_body = 366, - sym__qml_enum_assignment = 367, - sym__qml_enum_negative_number = 368, - sym_ui_nested_identifier = 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_statement_block_repeat1 = 375, - aux_sym_switch_body_repeat1 = 376, - aux_sym_object_repeat1 = 377, - aux_sym_object_pattern_repeat1 = 378, - aux_sym_array_repeat1 = 379, - aux_sym_array_pattern_repeat1 = 380, - aux_sym_glimmer_template_repeat1 = 381, - aux_sym_string_repeat1 = 382, - aux_sym_string_repeat2 = 383, - aux_sym_template_string_repeat1 = 384, - aux_sym_class_body_repeat1 = 385, - aux_sym_formal_parameters_repeat1 = 386, - aux_sym_extends_clause_repeat1 = 387, - aux_sym_implements_clause_repeat1 = 388, - aux_sym_extends_type_clause_repeat1 = 389, - aux_sym_enum_body_repeat1 = 390, - aux_sym_template_literal_type_repeat1 = 391, - aux_sym_object_type_repeat1 = 392, - aux_sym_type_parameters_repeat1 = 393, - aux_sym_tuple_type_repeat1 = 394, - aux_sym_ui_annotated_object_repeat1 = 395, - aux_sym_ui_object_initializer_repeat1 = 396, - aux_sym_ui_property_repeat1 = 397, - aux_sym_ui_object_array_repeat1 = 398, - aux_sym_ui_signal_parameters_repeat1 = 399, - aux_sym__qml_enum_body_repeat1 = 400, - alias_sym_property_identifier = 401, - alias_sym_shorthand_property_identifier = 402, - alias_sym_shorthand_property_identifier_pattern = 403, - alias_sym_statement_identifier = 404, - alias_sym_this_type = 405, + anon_sym_using = 59, + anon_sym_PLUS_EQ = 60, + anon_sym_DASH_EQ = 61, + anon_sym_STAR_EQ = 62, + anon_sym_SLASH_EQ = 63, + anon_sym_PERCENT_EQ = 64, + anon_sym_CARET_EQ = 65, + anon_sym_AMP_EQ = 66, + anon_sym_PIPE_EQ = 67, + anon_sym_GT_GT_EQ = 68, + anon_sym_GT_GT_GT_EQ = 69, + anon_sym_LT_LT_EQ = 70, + anon_sym_STAR_STAR_EQ = 71, + anon_sym_AMP_AMP_EQ = 72, + anon_sym_PIPE_PIPE_EQ = 73, + anon_sym_QMARK_QMARK_EQ = 74, + anon_sym_DOT_DOT_DOT = 75, + anon_sym_AMP_AMP = 76, + anon_sym_PIPE_PIPE = 77, + anon_sym_GT_GT = 78, + anon_sym_GT_GT_GT = 79, + anon_sym_LT_LT = 80, + anon_sym_AMP = 81, + anon_sym_CARET = 82, + anon_sym_PIPE = 83, + anon_sym_PLUS = 84, + anon_sym_DASH = 85, + anon_sym_SLASH = 86, + anon_sym_PERCENT = 87, + anon_sym_STAR_STAR = 88, + anon_sym_LT = 89, + anon_sym_LT_EQ = 90, + anon_sym_EQ_EQ = 91, + anon_sym_EQ_EQ_EQ = 92, + anon_sym_BANG_EQ = 93, + anon_sym_BANG_EQ_EQ = 94, + anon_sym_GT_EQ = 95, + anon_sym_QMARK_QMARK = 96, + anon_sym_instanceof = 97, + anon_sym_TILDE = 98, + anon_sym_void = 99, + anon_sym_delete = 100, + anon_sym_PLUS_PLUS = 101, + anon_sym_DASH_DASH = 102, + sym_unescaped_double_string_fragment = 103, + sym_unescaped_single_string_fragment = 104, + sym_escape_sequence = 105, + aux_sym_comment_token1 = 106, + anon_sym_BQUOTE = 107, + anon_sym_DOLLAR_LBRACE = 108, + anon_sym_SLASH2 = 109, + sym_regex_pattern = 110, + sym_regex_flags = 111, + sym_number = 112, + sym_private_property_identifier = 113, + anon_sym_target = 114, + sym_this = 115, + sym_super = 116, + sym_true = 117, + sym_false = 118, + sym_null = 119, + sym_undefined = 120, + anon_sym_AT = 121, + anon_sym_static = 122, + anon_sym_readonly = 123, + anon_sym_get = 124, + anon_sym_set = 125, + anon_sym_QMARK = 126, + anon_sym_declare = 127, + anon_sym_public = 128, + anon_sym_private = 129, + anon_sym_protected = 130, + anon_sym_override = 131, + anon_sym_module = 132, + anon_sym_any = 133, + anon_sym_number = 134, + anon_sym_boolean = 135, + anon_sym_string = 136, + anon_sym_symbol = 137, + anon_sym_object = 138, + anon_sym_property = 139, + anon_sym_signal = 140, + anon_sym_on = 141, + anon_sym_required = 142, + anon_sym_component = 143, + anon_sym_abstract = 144, + anon_sym_satisfies = 145, + anon_sym_require = 146, + anon_sym_extends = 147, + anon_sym_implements = 148, + anon_sym_global = 149, + anon_sym_interface = 150, + anon_sym_enum = 151, + anon_sym_DASH_QMARK_COLON = 152, + anon_sym_PLUS_QMARK_COLON = 153, + anon_sym_QMARK_COLON = 154, + anon_sym_asserts = 155, + anon_sym_infer = 156, + anon_sym_is = 157, + anon_sym_keyof = 158, + anon_sym_unique = 159, + anon_sym_unknown = 160, + anon_sym_never = 161, + anon_sym_LBRACE_PIPE = 162, + anon_sym_PIPE_RBRACE = 163, + anon_sym_pragma = 164, + aux_sym_ui_version_specifier_token1 = 165, + anon_sym_list = 166, + sym__automatic_semicolon = 167, + sym__template_chars = 168, + sym__ternary_qmark = 169, + sym_html_comment = 170, + sym__function_signature_automatic_semicolon = 171, + sym_program = 172, + sym_export_statement = 173, + sym_namespace_export = 174, + sym_export_clause = 175, + sym_export_specifier = 176, + sym__module_export_name = 177, + sym_declaration = 178, + sym_import = 179, + sym_import_statement = 180, + sym_import_clause = 181, + sym__from_clause = 182, + sym_namespace_import = 183, + sym_named_imports = 184, + sym_import_specifier = 185, + sym_import_attribute = 186, + sym_expression_statement = 187, + sym_variable_declaration = 188, + sym_lexical_declaration = 189, + sym_variable_declarator = 190, + sym_statement_block = 191, + sym_else_clause = 192, + sym_if_statement = 193, + sym_switch_statement = 194, + sym_for_statement = 195, + sym_for_in_statement = 196, + sym__for_header = 197, + sym_while_statement = 198, + sym_do_statement = 199, + sym_try_statement = 200, + sym_with_statement = 201, + sym_break_statement = 202, + sym_continue_statement = 203, + sym_debugger_statement = 204, + sym_return_statement = 205, + sym_throw_statement = 206, + sym_empty_statement = 207, + sym_labeled_statement = 208, + sym_switch_body = 209, + sym_switch_case = 210, + sym_switch_default = 211, + sym_catch_clause = 212, + sym_finally_clause = 213, + sym_parenthesized_expression = 214, + sym_expression = 215, + sym_primary_expression = 216, + sym_yield_expression = 217, + sym_object = 218, + sym_object_pattern = 219, + sym_assignment_pattern = 220, + sym_object_assignment_pattern = 221, + sym_array = 222, + sym_array_pattern = 223, + sym_glimmer_template = 224, + sym_glimmer_opening_tag = 225, + sym_glimmer_closing_tag = 226, + sym_nested_identifier = 227, + sym_class = 228, + sym_class_declaration = 229, + sym_class_heritage = 230, + sym_function_expression = 231, + sym_function_declaration = 232, + sym_generator_function = 233, + sym_generator_function_declaration = 234, + sym_arrow_function = 235, + sym__call_signature = 236, + sym__formal_parameter = 237, + sym_optional_chain = 238, + sym_call_expression = 239, + sym_new_expression = 240, + sym_await_expression = 241, + sym_member_expression = 242, + sym_subscript_expression = 243, + sym_assignment_expression = 244, + sym__augmented_assignment_lhs = 245, + sym_augmented_assignment_expression = 246, + sym__initializer = 247, + sym__destructuring_pattern = 248, + sym_spread_element = 249, + sym_ternary_expression = 250, + sym_binary_expression = 251, + sym_unary_expression = 252, + sym_update_expression = 253, + sym_sequence_expression = 254, + sym_string = 255, + sym_comment = 256, + sym_template_string = 257, + sym_template_substitution = 258, + sym_regex = 259, + sym_meta_property = 260, + sym_arguments = 261, + sym_decorator = 262, + sym_decorator_member_expression = 263, + sym_decorator_call_expression = 264, + sym_class_body = 265, + sym_formal_parameters = 266, + sym_class_static_block = 267, + sym_pattern = 268, + sym_rest_pattern = 269, + sym_method_definition = 270, + sym_pair = 271, + sym_pair_pattern = 272, + sym__property_name = 273, + sym_computed_property_name = 274, + sym_public_field_definition = 275, + sym__import_identifier = 276, + sym_non_null_expression = 277, + sym_method_signature = 278, + sym_abstract_method_signature = 279, + sym_function_signature = 280, + sym_type_assertion = 281, + sym_as_expression = 282, + sym_satisfies_expression = 283, + sym_instantiation_expression = 284, + sym_import_require_clause = 285, + sym_extends_clause = 286, + sym__extends_clause_single = 287, + sym_implements_clause = 288, + sym_ambient_declaration = 289, + sym_abstract_class_declaration = 290, + sym_module = 291, + sym_internal_module = 292, + sym__module = 293, + sym_import_alias = 294, + sym_nested_type_identifier = 295, + sym_interface_declaration = 296, + sym_extends_type_clause = 297, + sym_enum_declaration = 298, + sym_enum_body = 299, + sym_enum_assignment = 300, + sym_type_alias_declaration = 301, + sym_accessibility_modifier = 302, + sym_override_modifier = 303, + sym_required_parameter = 304, + sym_optional_parameter = 305, + sym__parameter_name = 306, + sym_omitting_type_annotation = 307, + sym_adding_type_annotation = 308, + sym_opting_type_annotation = 309, + sym_type_annotation = 310, + sym__type_query_member_expression_in_type_annotation = 311, + sym__type_query_call_expression_in_type_annotation = 312, + sym_asserts = 313, + sym_asserts_annotation = 314, + sym__type = 315, + sym_tuple_parameter = 316, + sym_optional_tuple_parameter = 317, + sym_optional_type = 318, + sym_rest_type = 319, + sym__tuple_type_member = 320, + sym_constructor_type = 321, + sym__primary_type = 322, + sym_template_type = 323, + sym_template_literal_type = 324, + sym_infer_type = 325, + sym_conditional_type = 326, + sym_generic_type = 327, + sym_type_predicate = 328, + sym_type_predicate_annotation = 329, + sym__type_query_member_expression = 330, + sym__type_query_subscript_expression = 331, + sym__type_query_call_expression = 332, + sym__type_query_instantiation_expression = 333, + sym_type_query = 334, + sym_index_type_query = 335, + sym_lookup_type = 336, + sym_mapped_type_clause = 337, + sym_literal_type = 338, + sym__number = 339, + sym_existential_type = 340, + sym_flow_maybe_type = 341, + sym_parenthesized_type = 342, + sym_predefined_type = 343, + sym_type_arguments = 344, + sym_object_type = 345, + sym_call_signature = 346, + sym_property_signature = 347, + sym_type_parameters = 348, + sym_type_parameter = 349, + sym_default_type = 350, + sym_constraint = 351, + sym_construct_signature = 352, + sym_index_signature = 353, + sym_array_type = 354, + sym_tuple_type = 355, + sym_readonly_type = 356, + sym_union_type = 357, + sym_intersection_type = 358, + sym_function_type = 359, + sym_ui_pragma = 360, + sym_ui_import = 361, + sym_ui_version_specifier = 362, + sym_ui_object_definition = 363, + sym_ui_annotated_object = 364, + sym_ui_annotation = 365, + sym_ui_object_initializer = 366, + sym_ui_annotated_object_member = 367, + sym_ui_object_definition_binding = 368, + sym_ui_binding = 369, + sym_ui_property = 370, + sym_ui_list_property_type = 371, + sym_ui_property_modifier = 372, + sym_ui_object_array = 373, + sym_ui_required = 374, + sym_ui_signal = 375, + sym_ui_signal_parameters = 376, + sym_ui_signal_parameter = 377, + sym_ui_inline_component = 378, + sym__qml_enum_declaration = 379, + sym__qml_enum_body = 380, + sym__qml_enum_assignment = 381, + sym__qml_enum_negative_number = 382, + sym_ui_nested_identifier = 383, + sym_ui_simple_nested_identifier = 384, + aux_sym_program_repeat1 = 385, + aux_sym_export_statement_repeat1 = 386, + aux_sym_export_clause_repeat1 = 387, + aux_sym_named_imports_repeat1 = 388, + aux_sym_variable_declaration_repeat1 = 389, + aux_sym_statement_block_repeat1 = 390, + aux_sym_switch_body_repeat1 = 391, + aux_sym_object_repeat1 = 392, + aux_sym_object_pattern_repeat1 = 393, + aux_sym_array_repeat1 = 394, + aux_sym_array_pattern_repeat1 = 395, + aux_sym_glimmer_template_repeat1 = 396, + aux_sym_sequence_expression_repeat1 = 397, + aux_sym_string_repeat1 = 398, + aux_sym_string_repeat2 = 399, + aux_sym_template_string_repeat1 = 400, + aux_sym_class_body_repeat1 = 401, + aux_sym_formal_parameters_repeat1 = 402, + aux_sym_extends_clause_repeat1 = 403, + aux_sym_implements_clause_repeat1 = 404, + aux_sym_extends_type_clause_repeat1 = 405, + aux_sym_enum_body_repeat1 = 406, + aux_sym_template_literal_type_repeat1 = 407, + aux_sym_type_arguments_repeat1 = 408, + aux_sym_object_type_repeat1 = 409, + aux_sym_type_parameters_repeat1 = 410, + aux_sym_tuple_type_repeat1 = 411, + aux_sym_ui_pragma_repeat1 = 412, + aux_sym_ui_annotated_object_repeat1 = 413, + aux_sym_ui_object_initializer_repeat1 = 414, + aux_sym_ui_property_repeat1 = 415, + aux_sym_ui_object_array_repeat1 = 416, + aux_sym_ui_signal_parameters_repeat1 = 417, + aux_sym__qml_enum_body_repeat1 = 418, + alias_sym_interface_body = 419, + alias_sym_property_identifier = 420, + alias_sym_shorthand_property_identifier = 421, + alias_sym_shorthand_property_identifier_pattern = 422, + alias_sym_statement_identifier = 423, + alias_sym_this_type = 424, }; static const char * const ts_symbol_names[] = { @@ -441,6 +468,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_typeof] = "typeof", [anon_sym_import] = "import", [anon_sym_from] = "from", + [anon_sym_with] = "with", [anon_sym_var] = "var", [anon_sym_let] = "let", [anon_sym_const] = "const", @@ -457,7 +485,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_while] = "while", [anon_sym_do] = "do", [anon_sym_try] = "try", - [anon_sym_with] = "with", [anon_sym_break] = "break", [anon_sym_continue] = "continue", [anon_sym_debugger] = "debugger", @@ -474,16 +501,17 @@ static const char * const ts_symbol_names[] = { [sym__glimmer_template_content] = "_glimmer_template_content", [anon_sym_LTtemplate_GT] = "", - [anon_sym_LT] = "<", [anon_sym_GT] = ">", - [anon_sym_SLASH] = "/", [anon_sym_DOT] = ".", + [anon_sym_DQUOTE] = "\"", + [anon_sym_SQUOTE] = "'", [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] = "*=", @@ -510,8 +538,10 @@ static const char * const ts_symbol_names[] = { [anon_sym_PIPE] = "|", [anon_sym_PLUS] = "+", [anon_sym_DASH] = "-", + [anon_sym_SLASH] = "/", [anon_sym_PERCENT] = "%", [anon_sym_STAR_STAR] = "**", + [anon_sym_LT] = "<", [anon_sym_LT_EQ] = "<=", [anon_sym_EQ_EQ] = "==", [anon_sym_EQ_EQ_EQ] = "===", @@ -525,12 +555,10 @@ static const char * const ts_symbol_names[] = { [anon_sym_delete] = "delete", [anon_sym_PLUS_PLUS] = "++", [anon_sym_DASH_DASH] = "--", - [anon_sym_DQUOTE] = "\"", - [anon_sym_SQUOTE] = "'", [sym_unescaped_double_string_fragment] = "string_fragment", [sym_unescaped_single_string_fragment] = "string_fragment", [sym_escape_sequence] = "escape_sequence", - [sym_comment] = "comment", + [aux_sym_comment_token1] = "comment_token1", [anon_sym_BQUOTE] = "`", [anon_sym_DOLLAR_LBRACE] = "${", [anon_sym_SLASH2] = "/", @@ -562,6 +590,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_boolean] = "boolean", [anon_sym_string] = "string", [anon_sym_symbol] = "symbol", + [anon_sym_object] = "object", [anon_sym_property] = "property", [anon_sym_signal] = "signal", [anon_sym_on] = "on", @@ -576,14 +605,15 @@ static const char * const ts_symbol_names[] = { [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_object] = "object", [anon_sym_LBRACE_PIPE] = "{|", [anon_sym_PIPE_RBRACE] = "|}", [anon_sym_pragma] = "pragma", @@ -592,6 +622,7 @@ static const char * const ts_symbol_names[] = { [sym__automatic_semicolon] = "_automatic_semicolon", [sym__template_chars] = "_template_chars", [sym__ternary_qmark] = "\?", + [sym_html_comment] = "html_comment", [sym__function_signature_automatic_semicolon] = "_function_signature_automatic_semicolon", [sym_program] = "program", [sym_export_statement] = "export_statement", @@ -607,6 +638,7 @@ static const char * const ts_symbol_names[] = { [sym_namespace_import] = "namespace_import", [sym_named_imports] = "named_imports", [sym_import_specifier] = "import_specifier", + [sym_import_attribute] = "import_attribute", [sym_expression_statement] = "expression_statement", [sym_variable_declaration] = "variable_declaration", [sym_lexical_declaration] = "lexical_declaration", @@ -651,7 +683,7 @@ static const char * const ts_symbol_names[] = { [sym_class] = "class", [sym_class_declaration] = "class_declaration", [sym_class_heritage] = "class_heritage", - [sym_function] = "function", + [sym_function_expression] = "function_expression", [sym_function_declaration] = "function_declaration", [sym_generator_function] = "generator_function", [sym_generator_function_declaration] = "generator_function_declaration", @@ -676,6 +708,7 @@ static const char * const ts_symbol_names[] = { [sym_update_expression] = "update_expression", [sym_sequence_expression] = "sequence_expression", [sym_string] = "string", + [sym_comment] = "comment", [sym_template_string] = "template_string", [sym_template_substitution] = "template_substitution", [sym_regex] = "regex", @@ -695,6 +728,7 @@ static const char * const ts_symbol_names[] = { [sym__property_name] = "_property_name", [sym_computed_property_name] = "computed_property_name", [sym_public_field_definition] = "public_field_definition", + [sym__import_identifier] = "_import_identifier", [sym_non_null_expression] = "non_null_expression", [sym_method_signature] = "method_signature", [sym_abstract_method_signature] = "abstract_method_signature", @@ -702,8 +736,10 @@ static const char * const ts_symbol_names[] = { [sym_type_assertion] = "type_assertion", [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", @@ -724,9 +760,13 @@ static const char * const ts_symbol_names[] = { [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", @@ -745,6 +785,7 @@ static const char * const ts_symbol_names[] = { [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", @@ -795,6 +836,7 @@ static const char * const ts_symbol_names[] = { [sym__qml_enum_assignment] = "enum_assignment", [sym__qml_enum_negative_number] = "unary_expression", [sym_ui_nested_identifier] = "nested_identifier", + [sym_ui_simple_nested_identifier] = "nested_identifier", [aux_sym_program_repeat1] = "program_repeat1", [aux_sym_export_statement_repeat1] = "export_statement_repeat1", [aux_sym_export_clause_repeat1] = "export_clause_repeat1", @@ -807,6 +849,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_array_repeat1] = "array_repeat1", [aux_sym_array_pattern_repeat1] = "array_pattern_repeat1", [aux_sym_glimmer_template_repeat1] = "glimmer_template_repeat1", + [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", @@ -817,15 +860,18 @@ static const char * const ts_symbol_names[] = { [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_type_arguments_repeat1] = "type_arguments_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", + [aux_sym_ui_pragma_repeat1] = "ui_pragma_repeat1", [aux_sym_ui_annotated_object_repeat1] = "ui_annotated_object_repeat1", [aux_sym_ui_object_initializer_repeat1] = "ui_object_initializer_repeat1", [aux_sym_ui_property_repeat1] = "ui_property_repeat1", [aux_sym_ui_object_array_repeat1] = "ui_object_array_repeat1", [aux_sym_ui_signal_parameters_repeat1] = "ui_signal_parameters_repeat1", [aux_sym__qml_enum_body_repeat1] = "_qml_enum_body_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", @@ -850,6 +896,7 @@ static const TSSymbol ts_symbol_map[] = { [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_var] = anon_sym_var, [anon_sym_let] = anon_sym_let, [anon_sym_const] = anon_sym_const, @@ -866,7 +913,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_while] = anon_sym_while, [anon_sym_do] = anon_sym_do, [anon_sym_try] = anon_sym_try, - [anon_sym_with] = anon_sym_with, [anon_sym_break] = anon_sym_break, [anon_sym_continue] = anon_sym_continue, [anon_sym_debugger] = anon_sym_debugger, @@ -883,16 +929,17 @@ static const TSSymbol ts_symbol_map[] = { [sym__glimmer_template_content] = sym__glimmer_template_content, [anon_sym_LTtemplate_GT] = anon_sym_LTtemplate_GT, [anon_sym_LT_SLASHtemplate_GT] = anon_sym_LT_SLASHtemplate_GT, - [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, - [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, [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, @@ -919,8 +966,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_PERCENT] = anon_sym_PERCENT, [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [anon_sym_LT] = anon_sym_LT, [anon_sym_LT_EQ] = anon_sym_LT_EQ, [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, [anon_sym_EQ_EQ_EQ] = anon_sym_EQ_EQ_EQ, @@ -934,12 +983,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_delete] = anon_sym_delete, [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [anon_sym_SQUOTE] = anon_sym_SQUOTE, [sym_unescaped_double_string_fragment] = sym_unescaped_double_string_fragment, [sym_unescaped_single_string_fragment] = sym_unescaped_double_string_fragment, [sym_escape_sequence] = sym_escape_sequence, - [sym_comment] = sym_comment, + [aux_sym_comment_token1] = aux_sym_comment_token1, [anon_sym_BQUOTE] = anon_sym_BQUOTE, [anon_sym_DOLLAR_LBRACE] = anon_sym_DOLLAR_LBRACE, [anon_sym_SLASH2] = anon_sym_SLASH, @@ -971,6 +1018,7 @@ static const TSSymbol ts_symbol_map[] = { [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_property] = anon_sym_property, [anon_sym_signal] = anon_sym_signal, [anon_sym_on] = anon_sym_on, @@ -985,14 +1033,15 @@ static const TSSymbol ts_symbol_map[] = { [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_object] = anon_sym_object, [anon_sym_LBRACE_PIPE] = anon_sym_LBRACE_PIPE, [anon_sym_PIPE_RBRACE] = anon_sym_PIPE_RBRACE, [anon_sym_pragma] = anon_sym_pragma, @@ -1001,6 +1050,7 @@ static const TSSymbol ts_symbol_map[] = { [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_program] = sym_program, [sym_export_statement] = sym_export_statement, @@ -1016,6 +1066,7 @@ static const TSSymbol ts_symbol_map[] = { [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_expression_statement] = sym_expression_statement, [sym_variable_declaration] = sym_variable_declaration, [sym_lexical_declaration] = sym_lexical_declaration, @@ -1060,7 +1111,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_class] = sym_class, [sym_class_declaration] = sym_class_declaration, [sym_class_heritage] = sym_class_heritage, - [sym_function] = sym_function, + [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, @@ -1085,6 +1136,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_update_expression] = sym_update_expression, [sym_sequence_expression] = sym_sequence_expression, [sym_string] = sym_string, + [sym_comment] = sym_comment, [sym_template_string] = sym_template_string, [sym_template_substitution] = sym_template_substitution, [sym_regex] = sym_regex, @@ -1104,6 +1156,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__property_name] = sym__property_name, [sym_computed_property_name] = sym_computed_property_name, [sym_public_field_definition] = sym_public_field_definition, + [sym__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, @@ -1111,8 +1164,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_type_assertion] = sym_type_assertion, [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, @@ -1133,9 +1188,13 @@ static const TSSymbol ts_symbol_map[] = { [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, @@ -1154,6 +1213,7 @@ static const TSSymbol ts_symbol_map[] = { [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, @@ -1204,6 +1264,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__qml_enum_assignment] = sym_enum_assignment, [sym__qml_enum_negative_number] = sym_unary_expression, [sym_ui_nested_identifier] = sym_nested_identifier, + [sym_ui_simple_nested_identifier] = sym_nested_identifier, [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, @@ -1216,6 +1277,7 @@ static const TSSymbol ts_symbol_map[] = { [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_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, @@ -1226,15 +1288,18 @@ static const TSSymbol ts_symbol_map[] = { [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_type_arguments_repeat1] = aux_sym_type_arguments_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, + [aux_sym_ui_pragma_repeat1] = aux_sym_ui_pragma_repeat1, [aux_sym_ui_annotated_object_repeat1] = aux_sym_ui_annotated_object_repeat1, [aux_sym_ui_object_initializer_repeat1] = aux_sym_ui_object_initializer_repeat1, [aux_sym_ui_property_repeat1] = aux_sym_ui_property_repeat1, [aux_sym_ui_object_array_repeat1] = aux_sym_ui_object_array_repeat1, [aux_sym_ui_signal_parameters_repeat1] = aux_sym_ui_signal_parameters_repeat1, [aux_sym__qml_enum_body_repeat1] = aux_sym__qml_enum_body_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, @@ -1307,6 +1372,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_with] = { + .visible = true, + .named = false, + }, [anon_sym_var] = { .visible = true, .named = false, @@ -1371,10 +1440,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_with] = { - .visible = true, - .named = false, - }, [anon_sym_break] = { .visible = true, .named = false, @@ -1439,19 +1504,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LT] = { + [anon_sym_GT] = { .visible = true, .named = false, }, - [anon_sym_GT] = { + [anon_sym_DOT] = { .visible = true, .named = false, }, - [anon_sym_SLASH] = { + [anon_sym_DQUOTE] = { .visible = true, .named = false, }, - [anon_sym_DOT] = { + [anon_sym_SQUOTE] = { .visible = true, .named = false, }, @@ -1479,6 +1544,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_using] = { + .visible = true, + .named = false, + }, [anon_sym_PLUS_EQ] = { .visible = true, .named = false, @@ -1583,6 +1652,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, [anon_sym_PERCENT] = { .visible = true, .named = false, @@ -1591,6 +1664,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, [anon_sym_LT_EQ] = { .visible = true, .named = false, @@ -1643,14 +1720,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_SQUOTE] = { - .visible = true, - .named = false, - }, [sym_unescaped_double_string_fragment] = { .visible = true, .named = true, @@ -1663,9 +1732,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_comment] = { - .visible = true, - .named = true, + [aux_sym_comment_token1] = { + .visible = false, + .named = false, }, [anon_sym_BQUOTE] = { .visible = true, @@ -1791,6 +1860,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_object] = { + .visible = true, + .named = false, + }, [anon_sym_property] = { .visible = true, .named = false, @@ -1847,6 +1920,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_PLUS_QMARK_COLON] = { + .visible = true, + .named = false, + }, [anon_sym_QMARK_COLON] = { .visible = true, .named = false, @@ -1867,15 +1944,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_unknown] = { + [anon_sym_unique] = { .visible = true, .named = false, }, - [anon_sym_never] = { + [anon_sym_unknown] = { .visible = true, .named = false, }, - [anon_sym_object] = { + [anon_sym_never] = { .visible = true, .named = false, }, @@ -1911,6 +1988,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [sym_html_comment] = { + .visible = true, + .named = true, + }, [sym__function_signature_automatic_semicolon] = { .visible = false, .named = true, @@ -1972,6 +2053,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_import_attribute] = { + .visible = true, + .named = true, + }, [sym_expression_statement] = { .visible = true, .named = true, @@ -2150,7 +2235,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_function] = { + [sym_function_expression] = { .visible = true, .named = true, }, @@ -2250,6 +2335,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_comment] = { + .visible = true, + .named = true, + }, [sym_template_string] = { .visible = true, .named = true, @@ -2327,6 +2416,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__import_identifier] = { + .visible = false, + .named = true, + }, [sym_non_null_expression] = { .visible = true, .named = true, @@ -2355,6 +2448,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_instantiation_expression] = { + .visible = true, + .named = true, + }, [sym_import_require_clause] = { .visible = true, .named = true, @@ -2363,6 +2460,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__extends_clause_single] = { + .visible = false, + .named = true, + }, [sym_implements_clause] = { .visible = true, .named = true, @@ -2443,6 +2544,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_adding_type_annotation] = { + .visible = true, + .named = true, + }, [sym_opting_type_annotation] = { .visible = true, .named = true, @@ -2451,10 +2556,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .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, @@ -2528,6 +2645,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__type_query_instantiation_expression] = { + .visible = true, + .named = true, + }, [sym_type_query] = { .visible = true, .named = true, @@ -2728,6 +2849,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_ui_simple_nested_identifier] = { + .visible = true, + .named = true, + }, [aux_sym_program_repeat1] = { .visible = false, .named = false, @@ -2776,6 +2901,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_sequence_expression_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_string_repeat1] = { .visible = false, .named = false, @@ -2816,6 +2945,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_type_arguments_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_object_type_repeat1] = { .visible = false, .named = false, @@ -2828,6 +2961,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_ui_pragma_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_ui_annotated_object_repeat1] = { .visible = false, .named = false, @@ -2852,6 +2989,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [alias_sym_interface_body] = { + .visible = true, + .named = true, + }, [alias_sym_property_identifier] = { .visible = true, .named = true, @@ -2995,311 +3136,380 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [9] = {.index = 10, .length = 2}, [11] = {.index = 12, .length = 1}, [12] = {.index = 13, .length = 1}, - [13] = {.index = 14, .length = 2}, - [14] = {.index = 16, .length = 1}, - [15] = {.index = 17, .length = 1}, - [16] = {.index = 18, .length = 4}, - [17] = {.index = 22, .length = 2}, - [18] = {.index = 24, .length = 2}, - [19] = {.index = 26, .length = 1}, - [20] = {.index = 27, .length = 1}, - [22] = {.index = 28, .length = 2}, - [23] = {.index = 30, .length = 2}, - [24] = {.index = 24, .length = 2}, - [25] = {.index = 16, .length = 1}, - [26] = {.index = 32, .length = 3}, - [27] = {.index = 35, .length = 2}, - [28] = {.index = 37, .length = 2}, - [29] = {.index = 39, .length = 2}, - [30] = {.index = 41, .length = 2}, - [31] = {.index = 43, .length = 2}, - [32] = {.index = 45, .length = 1}, - [33] = {.index = 46, .length = 2}, - [34] = {.index = 48, .length = 1}, - [36] = {.index = 17, .length = 1}, - [38] = {.index = 49, .length = 2}, - [39] = {.index = 51, .length = 1}, - [40] = {.index = 52, .length = 2}, - [41] = {.index = 54, .length = 2}, - [42] = {.index = 56, .length = 2}, - [43] = {.index = 58, .length = 2}, - [44] = {.index = 60, .length = 2}, - [45] = {.index = 62, .length = 2}, - [46] = {.index = 64, .length = 3}, - [47] = {.index = 64, .length = 3}, - [50] = {.index = 67, .length = 1}, - [51] = {.index = 68, .length = 2}, - [52] = {.index = 70, .length = 3}, - [53] = {.index = 73, .length = 5}, - [54] = {.index = 64, .length = 3}, - [55] = {.index = 64, .length = 3}, - [56] = {.index = 78, .length = 2}, - [57] = {.index = 80, .length = 2}, - [58] = {.index = 78, .length = 2}, - [59] = {.index = 78, .length = 2}, - [60] = {.index = 78, .length = 2}, - [61] = {.index = 82, .length = 2}, - [62] = {.index = 84, .length = 2}, - [63] = {.index = 86, .length = 3}, - [64] = {.index = 89, .length = 2}, - [65] = {.index = 91, .length = 2}, - [66] = {.index = 93, .length = 2}, - [68] = {.index = 95, .length = 1}, - [69] = {.index = 96, .length = 2}, - [70] = {.index = 98, .length = 2}, - [71] = {.index = 100, .length = 1}, - [72] = {.index = 101, .length = 3}, - [73] = {.index = 104, .length = 3}, - [74] = {.index = 107, .length = 2}, - [75] = {.index = 109, .length = 2}, - [76] = {.index = 111, .length = 2}, - [77] = {.index = 113, .length = 2}, - [78] = {.index = 115, .length = 3}, - [79] = {.index = 118, .length = 2}, - [80] = {.index = 120, .length = 2}, - [81] = {.index = 122, .length = 2}, - [82] = {.index = 124, .length = 2}, - [83] = {.index = 126, .length = 2}, - [84] = {.index = 128, .length = 2}, - [86] = {.index = 124, .length = 2}, - [87] = {.index = 130, .length = 2}, - [88] = {.index = 132, .length = 1}, - [89] = {.index = 133, .length = 2}, - [90] = {.index = 135, .length = 4}, - [91] = {.index = 139, .length = 2}, - [92] = {.index = 141, .length = 2}, - [93] = {.index = 89, .length = 2}, - [94] = {.index = 91, .length = 2}, - [95] = {.index = 143, .length = 3}, - [96] = {.index = 146, .length = 2}, - [97] = {.index = 146, .length = 2}, - [98] = {.index = 148, .length = 3}, - [99] = {.index = 148, .length = 3}, - [100] = {.index = 151, .length = 3}, - [101] = {.index = 154, .length = 2}, - [102] = {.index = 156, .length = 3}, - [103] = {.index = 159, .length = 4}, - [104] = {.index = 163, .length = 3}, - [105] = {.index = 166, .length = 2}, - [106] = {.index = 89, .length = 2}, - [107] = {.index = 168, .length = 2}, - [108] = {.index = 170, .length = 5}, - [109] = {.index = 175, .length = 3}, - [110] = {.index = 175, .length = 3}, - [112] = {.index = 175, .length = 3}, - [113] = {.index = 175, .length = 3}, - [114] = {.index = 178, .length = 2}, - [115] = {.index = 178, .length = 2}, - [116] = {.index = 180, .length = 2}, - [117] = {.index = 182, .length = 2}, - [118] = {.index = 182, .length = 2}, - [119] = {.index = 182, .length = 2}, - [120] = {.index = 182, .length = 2}, - [121] = {.index = 184, .length = 1}, - [122] = {.index = 185, .length = 2}, - [123] = {.index = 187, .length = 1}, - [124] = {.index = 188, .length = 6}, - [125] = {.index = 194, .length = 2}, - [126] = {.index = 196, .length = 1}, - [127] = {.index = 130, .length = 2}, - [128] = {.index = 197, .length = 5}, - [129] = {.index = 202, .length = 2}, - [130] = {.index = 204, .length = 3}, - [131] = {.index = 207, .length = 1}, - [132] = {.index = 208, .length = 1}, - [133] = {.index = 209, .length = 3}, - [134] = {.index = 212, .length = 3}, - [135] = {.index = 215, .length = 4}, - [136] = {.index = 219, .length = 2}, - [137] = {.index = 221, .length = 3}, - [138] = {.index = 224, .length = 1}, - [139] = {.index = 225, .length = 4}, - [140] = {.index = 229, .length = 4}, - [141] = {.index = 233, .length = 4}, - [142] = {.index = 237, .length = 3}, - [143] = {.index = 240, .length = 2}, - [144] = {.index = 242, .length = 2}, - [145] = {.index = 244, .length = 2}, - [146] = {.index = 246, .length = 3}, - [147] = {.index = 249, .length = 2}, - [148] = {.index = 251, .length = 3}, - [149] = {.index = 254, .length = 2}, - [150] = {.index = 256, .length = 2}, - [151] = {.index = 258, .length = 4}, - [152] = {.index = 256, .length = 2}, - [153] = {.index = 262, .length = 4}, - [154] = {.index = 266, .length = 3}, - [155] = {.index = 269, .length = 2}, - [156] = {.index = 271, .length = 3}, - [157] = {.index = 274, .length = 3}, - [158] = {.index = 277, .length = 2}, - [159] = {.index = 279, .length = 3}, - [160] = {.index = 282, .length = 5}, - [161] = {.index = 287, .length = 4}, - [162] = {.index = 287, .length = 4}, - [163] = {.index = 287, .length = 4}, - [164] = {.index = 287, .length = 4}, - [165] = {.index = 68, .length = 2}, - [166] = {.index = 291, .length = 4}, - [167] = {.index = 295, .length = 2}, - [168] = {.index = 297, .length = 2}, - [169] = {.index = 299, .length = 3}, - [170] = {.index = 302, .length = 3}, - [171] = {.index = 302, .length = 3}, - [172] = {.index = 302, .length = 3}, - [173] = {.index = 302, .length = 3}, - [174] = {.index = 305, .length = 1}, - [175] = {.index = 306, .length = 1}, - [176] = {.index = 307, .length = 1}, - [177] = {.index = 308, .length = 2}, - [178] = {.index = 310, .length = 6}, - [179] = {.index = 316, .length = 4}, - [180] = {.index = 308, .length = 2}, - [181] = {.index = 320, .length = 1}, - [182] = {.index = 320, .length = 1}, - [183] = {.index = 321, .length = 5}, - [184] = {.index = 326, .length = 2}, - [185] = {.index = 328, .length = 1}, - [186] = {.index = 329, .length = 4}, - [187] = {.index = 333, .length = 2}, - [188] = {.index = 335, .length = 2}, - [189] = {.index = 337, .length = 2}, - [190] = {.index = 339, .length = 1}, - [191] = {.index = 340, .length = 2}, - [192] = {.index = 342, .length = 1}, - [193] = {.index = 343, .length = 4}, - [194] = {.index = 347, .length = 4}, - [195] = {.index = 347, .length = 4}, - [196] = {.index = 351, .length = 4}, - [197] = {.index = 351, .length = 4}, - [198] = {.index = 355, .length = 4}, - [199] = {.index = 355, .length = 4}, - [200] = {.index = 359, .length = 2}, - [201] = {.index = 361, .length = 3}, - [202] = {.index = 364, .length = 2}, - [203] = {.index = 366, .length = 2}, - [204] = {.index = 368, .length = 3}, - [205] = {.index = 371, .length = 4}, - [206] = {.index = 375, .length = 4}, - [207] = {.index = 379, .length = 4}, - [208] = {.index = 383, .length = 3}, - [209] = {.index = 386, .length = 3}, - [210] = {.index = 68, .length = 2}, - [211] = {.index = 389, .length = 3}, - [212] = {.index = 392, .length = 4}, - [213] = {.index = 396, .length = 3}, - [214] = {.index = 399, .length = 4}, - [215] = {.index = 399, .length = 4}, - [216] = {.index = 399, .length = 4}, - [217] = {.index = 399, .length = 4}, - [218] = {.index = 403, .length = 1}, - [219] = {.index = 404, .length = 2}, - [220] = {.index = 406, .length = 5}, - [221] = {.index = 39, .length = 2}, - [222] = {.index = 411, .length = 2}, - [223] = {.index = 413, .length = 4}, - [224] = {.index = 417, .length = 2}, - [225] = {.index = 419, .length = 3}, - [226] = {.index = 422, .length = 2}, - [227] = {.index = 422, .length = 2}, - [228] = {.index = 424, .length = 2}, - [229] = {.index = 426, .length = 3}, - [230] = {.index = 429, .length = 2}, - [231] = {.index = 431, .length = 4}, - [232] = {.index = 68, .length = 2}, - [233] = {.index = 435, .length = 1}, - [234] = {.index = 436, .length = 3}, - [235] = {.index = 439, .length = 2}, - [236] = {.index = 441, .length = 2}, - [237] = {.index = 443, .length = 1}, - [238] = {.index = 444, .length = 2}, - [239] = {.index = 446, .length = 2}, - [240] = {.index = 448, .length = 4}, - [241] = {.index = 452, .length = 4}, - [242] = {.index = 456, .length = 4}, - [243] = {.index = 460, .length = 3}, - [244] = {.index = 463, .length = 2}, - [245] = {.index = 465, .length = 2}, - [246] = {.index = 467, .length = 2}, - [247] = {.index = 469, .length = 3}, - [248] = {.index = 472, .length = 3}, - [249] = {.index = 475, .length = 4}, - [250] = {.index = 479, .length = 2}, - [251] = {.index = 481, .length = 3}, - [252] = {.index = 484, .length = 3}, - [253] = {.index = 484, .length = 3}, - [254] = {.index = 487, .length = 3}, - [255] = {.index = 490, .length = 5}, - [256] = {.index = 495, .length = 3}, - [257] = {.index = 498, .length = 2}, - [258] = {.index = 500, .length = 1}, - [259] = {.index = 501, .length = 3}, - [260] = {.index = 504, .length = 4}, - [261] = {.index = 508, .length = 2}, - [262] = {.index = 510, .length = 2}, - [263] = {.index = 512, .length = 4}, - [264] = {.index = 516, .length = 4}, - [265] = {.index = 520, .length = 2}, - [266] = {.index = 522, .length = 2}, - [267] = {.index = 524, .length = 1}, - [268] = {.index = 525, .length = 3}, - [269] = {.index = 528, .length = 1}, - [270] = {.index = 529, .length = 2}, - [271] = {.index = 531, .length = 4}, - [272] = {.index = 535, .length = 4}, - [273] = {.index = 539, .length = 4}, - [274] = {.index = 543, .length = 3}, - [275] = {.index = 546, .length = 2}, - [276] = {.index = 548, .length = 3}, - [277] = {.index = 551, .length = 3}, - [278] = {.index = 554, .length = 2}, - [279] = {.index = 556, .length = 1}, - [280] = {.index = 557, .length = 4}, - [281] = {.index = 561, .length = 4}, - [282] = {.index = 565, .length = 5}, - [283] = {.index = 570, .length = 5}, - [285] = {.index = 575, .length = 4}, - [286] = {.index = 579, .length = 3}, - [287] = {.index = 582, .length = 3}, - [288] = {.index = 585, .length = 3}, - [289] = {.index = 582, .length = 3}, - [290] = {.index = 588, .length = 2}, - [291] = {.index = 590, .length = 4}, - [292] = {.index = 594, .length = 4}, - [293] = {.index = 598, .length = 2}, - [294] = {.index = 600, .length = 2}, - [295] = {.index = 602, .length = 4}, - [296] = {.index = 606, .length = 3}, - [297] = {.index = 609, .length = 2}, - [298] = {.index = 611, .length = 3}, - [299] = {.index = 614, .length = 2}, - [300] = {.index = 616, .length = 1}, - [301] = {.index = 617, .length = 5}, - [302] = {.index = 622, .length = 5}, - [303] = {.index = 627, .length = 5}, - [304] = {.index = 632, .length = 4}, - [305] = {.index = 636, .length = 4}, - [306] = {.index = 640, .length = 3}, - [307] = {.index = 640, .length = 3}, - [308] = {.index = 643, .length = 2}, - [309] = {.index = 645, .length = 3}, - [310] = {.index = 648, .length = 2}, - [311] = {.index = 650, .length = 3}, - [312] = {.index = 653, .length = 2}, - [313] = {.index = 655, .length = 2}, - [314] = {.index = 657, .length = 5}, - [315] = {.index = 662, .length = 5}, - [316] = {.index = 667, .length = 4}, - [317] = {.index = 667, .length = 4}, - [318] = {.index = 671, .length = 4}, - [319] = {.index = 675, .length = 4}, - [320] = {.index = 679, .length = 3}, - [321] = {.index = 682, .length = 2}, - [322] = {.index = 684, .length = 2}, - [323] = {.index = 686, .length = 3}, - [324] = {.index = 689, .length = 5}, - [325] = {.index = 694, .length = 4}, - [326] = {.index = 698, .length = 3}, + [13] = {.index = 12, .length = 1}, + [14] = {.index = 14, .length = 2}, + [15] = {.index = 16, .length = 1}, + [16] = {.index = 17, .length = 1}, + [17] = {.index = 18, .length = 4}, + [18] = {.index = 22, .length = 2}, + [19] = {.index = 22, .length = 2}, + [20] = {.index = 24, .length = 2}, + [21] = {.index = 26, .length = 1}, + [22] = {.index = 27, .length = 1}, + [24] = {.index = 28, .length = 2}, + [25] = {.index = 30, .length = 2}, + [26] = {.index = 24, .length = 2}, + [27] = {.index = 16, .length = 1}, + [28] = {.index = 32, .length = 3}, + [29] = {.index = 35, .length = 2}, + [30] = {.index = 37, .length = 2}, + [31] = {.index = 35, .length = 2}, + [32] = {.index = 39, .length = 2}, + [33] = {.index = 41, .length = 2}, + [34] = {.index = 43, .length = 2}, + [35] = {.index = 45, .length = 1}, + [36] = {.index = 46, .length = 2}, + [37] = {.index = 48, .length = 1}, + [38] = {.index = 49, .length = 1}, + [40] = {.index = 17, .length = 1}, + [42] = {.index = 50, .length = 2}, + [44] = {.index = 52, .length = 2}, + [45] = {.index = 54, .length = 2}, + [46] = {.index = 56, .length = 1}, + [47] = {.index = 57, .length = 2}, + [48] = {.index = 59, .length = 2}, + [49] = {.index = 61, .length = 2}, + [50] = {.index = 63, .length = 2}, + [51] = {.index = 65, .length = 3}, + [52] = {.index = 65, .length = 3}, + [55] = {.index = 68, .length = 1}, + [56] = {.index = 69, .length = 2}, + [57] = {.index = 71, .length = 2}, + [58] = {.index = 73, .length = 2}, + [59] = {.index = 75, .length = 3}, + [60] = {.index = 78, .length = 5}, + [61] = {.index = 65, .length = 3}, + [62] = {.index = 65, .length = 3}, + [63] = {.index = 83, .length = 2}, + [64] = {.index = 85, .length = 2}, + [65] = {.index = 87, .length = 2}, + [66] = {.index = 83, .length = 2}, + [67] = {.index = 85, .length = 2}, + [68] = {.index = 83, .length = 2}, + [69] = {.index = 83, .length = 2}, + [70] = {.index = 89, .length = 2}, + [71] = {.index = 91, .length = 2}, + [72] = {.index = 93, .length = 3}, + [73] = {.index = 93, .length = 3}, + [74] = {.index = 96, .length = 3}, + [75] = {.index = 99, .length = 2}, + [76] = {.index = 101, .length = 2}, + [77] = {.index = 103, .length = 2}, + [78] = {.index = 105, .length = 2}, + [80] = {.index = 107, .length = 1}, + [81] = {.index = 108, .length = 2}, + [82] = {.index = 110, .length = 2}, + [83] = {.index = 112, .length = 2}, + [84] = {.index = 114, .length = 1}, + [85] = {.index = 115, .length = 3}, + [86] = {.index = 118, .length = 3}, + [87] = {.index = 121, .length = 2}, + [88] = {.index = 123, .length = 2}, + [89] = {.index = 125, .length = 2}, + [90] = {.index = 127, .length = 2}, + [91] = {.index = 129, .length = 1}, + [92] = {.index = 130, .length = 2}, + [93] = {.index = 132, .length = 1}, + [94] = {.index = 133, .length = 2}, + [95] = {.index = 135, .length = 4}, + [96] = {.index = 139, .length = 2}, + [97] = {.index = 141, .length = 2}, + [98] = {.index = 143, .length = 3}, + [99] = {.index = 146, .length = 2}, + [100] = {.index = 148, .length = 2}, + [101] = {.index = 16, .length = 1}, + [102] = {.index = 150, .length = 2}, + [103] = {.index = 152, .length = 2}, + [104] = {.index = 154, .length = 2}, + [107] = {.index = 150, .length = 2}, + [108] = {.index = 156, .length = 4}, + [109] = {.index = 101, .length = 2}, + [110] = {.index = 103, .length = 2}, + [111] = {.index = 160, .length = 3}, + [112] = {.index = 85, .length = 2}, + [113] = {.index = 163, .length = 3}, + [114] = {.index = 163, .length = 3}, + [115] = {.index = 166, .length = 3}, + [116] = {.index = 169, .length = 2}, + [117] = {.index = 171, .length = 3}, + [118] = {.index = 174, .length = 4}, + [119] = {.index = 178, .length = 3}, + [120] = {.index = 181, .length = 2}, + [121] = {.index = 101, .length = 2}, + [122] = {.index = 183, .length = 2}, + [123] = {.index = 185, .length = 5}, + [124] = {.index = 190, .length = 3}, + [125] = {.index = 190, .length = 3}, + [127] = {.index = 190, .length = 3}, + [128] = {.index = 190, .length = 3}, + [129] = {.index = 193, .length = 2}, + [130] = {.index = 193, .length = 2}, + [131] = {.index = 195, .length = 2}, + [132] = {.index = 197, .length = 2}, + [133] = {.index = 197, .length = 2}, + [134] = {.index = 197, .length = 2}, + [135] = {.index = 197, .length = 2}, + [136] = {.index = 199, .length = 1}, + [137] = {.index = 200, .length = 2}, + [138] = {.index = 202, .length = 1}, + [139] = {.index = 203, .length = 6}, + [140] = {.index = 209, .length = 2}, + [141] = {.index = 211, .length = 1}, + [142] = {.index = 127, .length = 2}, + [143] = {.index = 127, .length = 2}, + [144] = {.index = 212, .length = 5}, + [145] = {.index = 217, .length = 2}, + [146] = {.index = 219, .length = 3}, + [147] = {.index = 222, .length = 1}, + [148] = {.index = 223, .length = 1}, + [149] = {.index = 224, .length = 3}, + [150] = {.index = 227, .length = 3}, + [151] = {.index = 230, .length = 4}, + [152] = {.index = 234, .length = 2}, + [153] = {.index = 236, .length = 3}, + [154] = {.index = 239, .length = 4}, + [155] = {.index = 243, .length = 1}, + [156] = {.index = 244, .length = 2}, + [157] = {.index = 246, .length = 1}, + [158] = {.index = 247, .length = 2}, + [159] = {.index = 249, .length = 3}, + [160] = {.index = 252, .length = 2}, + [161] = {.index = 254, .length = 4}, + [162] = {.index = 258, .length = 2}, + [163] = {.index = 260, .length = 2}, + [164] = {.index = 262, .length = 4}, + [165] = {.index = 260, .length = 2}, + [166] = {.index = 266, .length = 4}, + [167] = {.index = 270, .length = 3}, + [168] = {.index = 273, .length = 2}, + [169] = {.index = 273, .length = 2}, + [170] = {.index = 275, .length = 2}, + [171] = {.index = 277, .length = 1}, + [172] = {.index = 278, .length = 2}, + [173] = {.index = 280, .length = 4}, + [174] = {.index = 284, .length = 4}, + [175] = {.index = 288, .length = 4}, + [176] = {.index = 292, .length = 2}, + [177] = {.index = 294, .length = 2}, + [178] = {.index = 296, .length = 3}, + [179] = {.index = 299, .length = 2}, + [180] = {.index = 301, .length = 4}, + [181] = {.index = 301, .length = 4}, + [182] = {.index = 305, .length = 4}, + [183] = {.index = 305, .length = 4}, + [184] = {.index = 309, .length = 2}, + [185] = {.index = 311, .length = 3}, + [186] = {.index = 314, .length = 3}, + [187] = {.index = 317, .length = 2}, + [188] = {.index = 319, .length = 3}, + [189] = {.index = 322, .length = 5}, + [190] = {.index = 327, .length = 4}, + [191] = {.index = 327, .length = 4}, + [192] = {.index = 327, .length = 4}, + [193] = {.index = 327, .length = 4}, + [194] = {.index = 69, .length = 2}, + [195] = {.index = 331, .length = 4}, + [196] = {.index = 335, .length = 2}, + [197] = {.index = 337, .length = 2}, + [198] = {.index = 339, .length = 3}, + [199] = {.index = 342, .length = 3}, + [200] = {.index = 342, .length = 3}, + [201] = {.index = 342, .length = 3}, + [202] = {.index = 342, .length = 3}, + [203] = {.index = 345, .length = 1}, + [204] = {.index = 346, .length = 1}, + [205] = {.index = 347, .length = 1}, + [206] = {.index = 348, .length = 2}, + [207] = {.index = 350, .length = 6}, + [208] = {.index = 356, .length = 2}, + [209] = {.index = 358, .length = 4}, + [210] = {.index = 348, .length = 2}, + [211] = {.index = 362, .length = 1}, + [212] = {.index = 362, .length = 1}, + [213] = {.index = 247, .length = 2}, + [214] = {.index = 249, .length = 3}, + [215] = {.index = 363, .length = 5}, + [216] = {.index = 368, .length = 2}, + [217] = {.index = 370, .length = 1}, + [218] = {.index = 371, .length = 4}, + [219] = {.index = 375, .length = 2}, + [220] = {.index = 377, .length = 1}, + [221] = {.index = 378, .length = 2}, + [222] = {.index = 380, .length = 2}, + [223] = {.index = 382, .length = 2}, + [224] = {.index = 384, .length = 4}, + [225] = {.index = 388, .length = 2}, + [226] = {.index = 390, .length = 3}, + [227] = {.index = 393, .length = 3}, + [228] = {.index = 396, .length = 3}, + [229] = {.index = 399, .length = 4}, + [230] = {.index = 403, .length = 4}, + [231] = {.index = 407, .length = 2}, + [232] = {.index = 409, .length = 2}, + [233] = {.index = 411, .length = 1}, + [234] = {.index = 412, .length = 4}, + [235] = {.index = 412, .length = 4}, + [236] = {.index = 416, .length = 3}, + [237] = {.index = 419, .length = 2}, + [238] = {.index = 421, .length = 3}, + [239] = {.index = 424, .length = 3}, + [240] = {.index = 427, .length = 3}, + [241] = {.index = 69, .length = 2}, + [242] = {.index = 430, .length = 3}, + [243] = {.index = 433, .length = 4}, + [244] = {.index = 437, .length = 3}, + [245] = {.index = 440, .length = 4}, + [246] = {.index = 440, .length = 4}, + [247] = {.index = 440, .length = 4}, + [248] = {.index = 440, .length = 4}, + [249] = {.index = 444, .length = 1}, + [250] = {.index = 445, .length = 2}, + [251] = {.index = 447, .length = 5}, + [252] = {.index = 39, .length = 2}, + [253] = {.index = 445, .length = 2}, + [254] = {.index = 452, .length = 4}, + [255] = {.index = 456, .length = 2}, + [256] = {.index = 458, .length = 3}, + [257] = {.index = 461, .length = 2}, + [258] = {.index = 461, .length = 2}, + [259] = {.index = 396, .length = 3}, + [260] = {.index = 463, .length = 2}, + [261] = {.index = 465, .length = 3}, + [262] = {.index = 468, .length = 2}, + [263] = {.index = 470, .length = 4}, + [264] = {.index = 69, .length = 2}, + [265] = {.index = 474, .length = 1}, + [266] = {.index = 475, .length = 2}, + [267] = {.index = 477, .length = 2}, + [268] = {.index = 479, .length = 2}, + [269] = {.index = 481, .length = 2}, + [270] = {.index = 483, .length = 3}, + [271] = {.index = 486, .length = 1}, + [272] = {.index = 487, .length = 3}, + [273] = {.index = 490, .length = 2}, + [274] = {.index = 492, .length = 3}, + [275] = {.index = 495, .length = 3}, + [276] = {.index = 498, .length = 3}, + [277] = {.index = 501, .length = 3}, + [278] = {.index = 504, .length = 4}, + [279] = {.index = 508, .length = 3}, + [280] = {.index = 511, .length = 2}, + [281] = {.index = 513, .length = 2}, + [282] = {.index = 515, .length = 4}, + [283] = {.index = 519, .length = 4}, + [284] = {.index = 523, .length = 4}, + [285] = {.index = 527, .length = 3}, + [286] = {.index = 530, .length = 2}, + [287] = {.index = 532, .length = 4}, + [288] = {.index = 536, .length = 2}, + [289] = {.index = 538, .length = 3}, + [290] = {.index = 536, .length = 2}, + [291] = {.index = 541, .length = 3}, + [292] = {.index = 541, .length = 3}, + [293] = {.index = 544, .length = 3}, + [294] = {.index = 547, .length = 5}, + [295] = {.index = 552, .length = 3}, + [296] = {.index = 555, .length = 2}, + [297] = {.index = 557, .length = 1}, + [298] = {.index = 558, .length = 3}, + [299] = {.index = 561, .length = 4}, + [300] = {.index = 565, .length = 2}, + [301] = {.index = 567, .length = 2}, + [302] = {.index = 569, .length = 4}, + [303] = {.index = 573, .length = 4}, + [304] = {.index = 577, .length = 2}, + [305] = {.index = 579, .length = 2}, + [306] = {.index = 581, .length = 3}, + [307] = {.index = 584, .length = 3}, + [308] = {.index = 587, .length = 2}, + [309] = {.index = 589, .length = 2}, + [310] = {.index = 591, .length = 1}, + [311] = {.index = 592, .length = 1}, + [312] = {.index = 593, .length = 3}, + [313] = {.index = 596, .length = 3}, + [314] = {.index = 599, .length = 3}, + [315] = {.index = 602, .length = 3}, + [316] = {.index = 605, .length = 4}, + [317] = {.index = 609, .length = 2}, + [318] = {.index = 611, .length = 4}, + [319] = {.index = 615, .length = 3}, + [320] = {.index = 618, .length = 2}, + [321] = {.index = 620, .length = 4}, + [322] = {.index = 624, .length = 4}, + [323] = {.index = 628, .length = 4}, + [324] = {.index = 632, .length = 3}, + [325] = {.index = 635, .length = 1}, + [326] = {.index = 636, .length = 4}, + [327] = {.index = 640, .length = 4}, + [328] = {.index = 644, .length = 5}, + [329] = {.index = 649, .length = 5}, + [331] = {.index = 654, .length = 4}, + [332] = {.index = 658, .length = 3}, + [333] = {.index = 661, .length = 3}, + [334] = {.index = 664, .length = 3}, + [335] = {.index = 661, .length = 3}, + [336] = {.index = 667, .length = 2}, + [337] = {.index = 669, .length = 4}, + [338] = {.index = 673, .length = 4}, + [339] = {.index = 677, .length = 3}, + [340] = {.index = 680, .length = 2}, + [341] = {.index = 682, .length = 2}, + [342] = {.index = 684, .length = 3}, + [343] = {.index = 687, .length = 2}, + [344] = {.index = 689, .length = 2}, + [345] = {.index = 691, .length = 1}, + [346] = {.index = 692, .length = 3}, + [347] = {.index = 695, .length = 3}, + [348] = {.index = 698, .length = 4}, + [349] = {.index = 702, .length = 4}, + [350] = {.index = 706, .length = 3}, + [351] = {.index = 709, .length = 3}, + [352] = {.index = 712, .length = 2}, + [353] = {.index = 714, .length = 4}, + [354] = {.index = 718, .length = 5}, + [355] = {.index = 723, .length = 5}, + [356] = {.index = 728, .length = 5}, + [357] = {.index = 733, .length = 4}, + [358] = {.index = 737, .length = 4}, + [359] = {.index = 741, .length = 3}, + [360] = {.index = 744, .length = 3}, + [361] = {.index = 744, .length = 3}, + [362] = {.index = 747, .length = 2}, + [363] = {.index = 749, .length = 2}, + [364] = {.index = 751, .length = 3}, + [365] = {.index = 754, .length = 2}, + [366] = {.index = 756, .length = 2}, + [367] = {.index = 758, .length = 4}, + [368] = {.index = 762, .length = 3}, + [369] = {.index = 765, .length = 3}, + [370] = {.index = 768, .length = 4}, + [371] = {.index = 772, .length = 3}, + [372] = {.index = 775, .length = 3}, + [373] = {.index = 778, .length = 2}, + [374] = {.index = 780, .length = 5}, + [375] = {.index = 785, .length = 5}, + [376] = {.index = 790, .length = 4}, + [377] = {.index = 790, .length = 4}, + [378] = {.index = 794, .length = 4}, + [379] = {.index = 798, .length = 3}, + [380] = {.index = 801, .length = 2}, + [381] = {.index = 803, .length = 2}, + [382] = {.index = 805, .length = 3}, + [383] = {.index = 808, .length = 4}, + [384] = {.index = 812, .length = 4}, + [385] = {.index = 816, .length = 3}, + [386] = {.index = 819, .length = 3}, + [387] = {.index = 822, .length = 4}, + [388] = {.index = 826, .length = 3}, + [389] = {.index = 829, .length = 3}, + [390] = {.index = 832, .length = 5}, + [391] = {.index = 837, .length = 3}, + [392] = {.index = 840, .length = 4}, + [393] = {.index = 844, .length = 4}, + [394] = {.index = 848, .length = 3}, + [395] = {.index = 851, .length = 3}, + [396] = {.index = 854, .length = 4}, + [397] = {.index = 858, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3382,127 +3592,128 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [48] = {field_body, 1}, [49] = + {field_constructor, 1}, + [50] = {field_argument, 0, .inherited = true}, {field_operator, 0, .inherited = true}, - [51] = - {field_constructor, 1}, [52] = - {field_argument, 0}, - {field_operator, 1}, - [54] = {field_arguments, 1}, {field_function, 0}, + [54] = + {field_argument, 0}, + {field_operator, 1}, [56] = + {field_type_arguments, 1}, + [57] = {field_close_tag, 1}, {field_open_tag, 0}, - [58] = + [59] = {field_parameters, 0}, {field_return_type, 1}, - [60] = + [61] = {field_parameters, 1}, {field_type_parameters, 0}, - [62] = + [63] = {field_decorator, 0, .inherited = true}, {field_decorator, 1, .inherited = true}, - [64] = + [65] = {field_initializer, 3}, {field_name, 2}, {field_type_name, 0}, - [67] = - {field_value, 1}, [68] = + {field_value, 1}, + [69] = {field_name, 0}, {field_type, 2}, - [70] = + [71] = + {field_object, 1, .inherited = true}, + {field_property, 1, .inherited = true}, + [73] = + {field_arguments, 1, .inherited = true}, + {field_function, 1, .inherited = true}, + [75] = {field_name, 0}, {field_type, 1}, {field_value, 2, .inherited = true}, - [73] = + [78] = {field_body, 3}, {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [78] = + [83] = {field_name, 2}, {field_type, 1}, - [80] = + [85] = + {field_object, 0}, + {field_property, 2}, + [87] = {field_module, 0}, {field_name, 2}, - [82] = + [89] = {field_name, 1}, {field_parameters, 2}, - [84] = + [91] = {field_component, 3}, {field_name, 1}, - [86] = + [93] = {field_alias, 4}, {field_source, 1}, {field_version, 2}, - [89] = + [96] = + {field_name, 1}, + {field_value, 3}, + {field_value, 4, .inherited = true}, + [99] = + {field_value, 0, .inherited = true}, + {field_value, 1, .inherited = true}, + [101] = {field_left, 0}, {field_right, 2}, - [91] = + [103] = {field_body, 2}, {field_parameter, 0}, - [93] = + [105] = {field_body, 1}, {field_name, 0}, - [95] = + [107] = {field_declaration, 1}, - [96] = + [108] = + {field_body, 2}, + {field_object, 1}, + [110] = {field_condition, 1}, {field_consequence, 2}, - [98] = + [112] = {field_body, 2}, {field_value, 1}, - [100] = + [114] = {field_pattern, 1}, - [101] = + [115] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [104] = + [118] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 1}, - [107] = + [121] = {field_decorator, 0, .inherited = true}, {field_pattern, 1}, - [109] = + [123] = {field_body, 1}, {field_handler, 2}, - [111] = + [125] = {field_body, 1}, {field_finalizer, 2}, - [113] = - {field_body, 2}, - {field_object, 1}, - [115] = - {field_parameters, 0, .inherited = true}, - {field_return_type, 0, .inherited = true}, - {field_type_parameters, 0, .inherited = true}, - [118] = - {field_object, 1, .inherited = true}, - {field_property, 1, .inherited = true}, - [120] = - {field_index, 1, .inherited = true}, - {field_object, 1, .inherited = true}, - [122] = - {field_arguments, 1, .inherited = true}, - {field_function, 1, .inherited = true}, - [124] = - {field_name, 0}, - {field_type_arguments, 1}, - [126] = - {field_name, 0}, - {field_value, 1}, - [128] = - {field_constraint, 1}, - {field_name, 0}, - [130] = + [127] = {field_body, 2}, {field_name, 1}, + [129] = + {field_value, 0}, + [130] = + {field_type_arguments, 1, .inherited = true}, + {field_value, 1, .inherited = true}, [132] = {field_body, 2}, [133] = @@ -3520,758 +3731,974 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_constructor, 1}, {field_type_arguments, 2}, [143] = + {field_parameters, 0, .inherited = true}, + {field_return_type, 0, .inherited = true}, + {field_type_parameters, 0, .inherited = true}, + [146] = + {field_index, 1, .inherited = true}, + {field_object, 1, .inherited = true}, + [148] = + {field_function, 1, .inherited = true}, + {field_type_arguments, 1, .inherited = true}, + [150] = + {field_name, 0}, + {field_type_arguments, 1}, + [152] = + {field_name, 0}, + {field_value, 1}, + [154] = + {field_constraint, 1}, + {field_name, 0}, + [156] = + {field_arguments, 1}, + {field_function, 0}, + {field_object, 0, .inherited = true}, + {field_property, 0, .inherited = true}, + [160] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [146] = - {field_object, 0}, - {field_property, 2}, - [148] = + [163] = {field_object, 0}, {field_optional_chain, 1}, {field_property, 2}, - [151] = + [166] = {field_arguments, 2}, {field_function, 0}, {field_type_arguments, 1}, - [154] = + [169] = {field_arguments, 2}, {field_function, 0}, - [156] = + [171] = {field_close_tag, 2}, {field_content, 1}, {field_open_tag, 0}, - [159] = + [174] = {field_body, 2}, {field_parameters, 0, .inherited = true}, {field_return_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [163] = + [178] = {field_parameters, 1}, {field_return_type, 2}, {field_type_parameters, 0}, - [166] = + [181] = {field_body, 2}, {field_decorator, 0, .inherited = true}, - [168] = + [183] = {field_key, 0}, {field_value, 2}, - [170] = + [185] = {field_body, 4}, {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [175] = + [190] = {field_name, 2}, {field_type, 1}, {field_value, 4}, - [178] = + [193] = {field_name, 1}, {field_type, 0}, - [180] = + [195] = {field_name, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [182] = + [197] = {field_name, 3}, {field_type, 2}, - [184] = + [199] = {field_declaration, 2}, - [185] = + [200] = {field_body, 2}, {field_label, 0}, - [187] = + [202] = {field_kind, 0}, - [188] = + [203] = {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}, - [194] = + [209] = {field_body, 2}, {field_condition, 1}, - [196] = + [211] = {field_label, 1}, - [197] = + [212] = {field_body, 2}, {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [202] = + [217] = {field_declaration, 2}, {field_decorator, 0, .inherited = true}, - [204] = + [219] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [207] = + [222] = {field_type, 2}, - [208] = + [223] = {field_pattern, 2}, - [209] = + [224] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_value, 2, .inherited = true}, - [212] = + [227] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 2}, - [215] = + [230] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 1}, {field_value, 2, .inherited = true}, - [219] = + [234] = {field_decorator, 0, .inherited = true}, {field_pattern, 2}, - [221] = + [236] = {field_body, 1}, {field_finalizer, 3}, {field_handler, 2}, - [224] = - {field_parameters, 1}, - [225] = + [239] = {field_name, 0}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [229] = - {field_arguments, 1}, - {field_function, 0}, - {field_object, 0, .inherited = true}, - {field_property, 0, .inherited = true}, - [233] = - {field_arguments, 1}, - {field_function, 0}, - {field_index, 0, .inherited = true}, - {field_object, 0, .inherited = true}, - [237] = - {field_constraint, 1}, - {field_name, 0}, - {field_value, 2}, - [240] = - {field_parameters, 0}, - {field_return_type, 2}, - [242] = - {field_flags, 3}, - {field_pattern, 1}, + [243] = + {field_decorator, 0, .inherited = true}, [244] = - {field_body, 3}, + {field_decorator, 0, .inherited = true}, {field_name, 1}, [246] = + {field_decorator, 1, .inherited = true}, + [247] = {field_body, 3}, {field_name, 1}, - {field_type_parameters, 2}, [249] = - {field_type_arguments, 2}, - {field_value, 1}, - [251] = + {field_body, 3}, + {field_name, 1}, + {field_type_parameters, 2}, + [252] = + {field_type_arguments, 1}, + {field_value, 0}, + [254] = + {field_type_arguments, 1, .inherited = true}, {field_type_arguments, 2, .inherited = true}, - {field_value, 1}, + {field_value, 1, .inherited = true}, {field_value, 2, .inherited = true}, - [254] = + [258] = {field_body, 3}, {field_type_parameters, 1}, - [256] = + [260] = {field_body, 3}, {field_parameter, 1}, - [258] = + [262] = {field_body, 3}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [262] = + [266] = {field_body, 3}, {field_parameters, 1, .inherited = true}, {field_return_type, 1, .inherited = true}, {field_type_parameters, 1, .inherited = true}, - [266] = + [270] = {field_arguments, 3}, {field_constructor, 1}, {field_type_arguments, 2}, - [269] = + [273] = + {field_left, 1}, + {field_right, 3}, + [275] = + {field_flags, 3}, + {field_pattern, 1}, + [277] = + {field_parameters, 1}, + [278] = + {field_function, 0}, + {field_type_arguments, 1}, + [280] = + {field_function, 0}, + {field_object, 0, .inherited = true}, + {field_property, 0, .inherited = true}, + {field_type_arguments, 1}, + [284] = + {field_arguments, 1}, + {field_function, 0}, + {field_index, 0, .inherited = true}, + {field_object, 0, .inherited = true}, + [288] = + {field_function, 0}, + {field_index, 0, .inherited = true}, + {field_object, 0, .inherited = true}, + {field_type_arguments, 1}, + [292] = + {field_name, 1}, + {field_value, 2}, + [294] = + {field_constraint, 2}, + {field_name, 1}, + [296] = + {field_constraint, 1}, + {field_name, 0}, + {field_value, 2}, + [299] = + {field_parameters, 0}, + {field_return_type, 2}, + [301] = + {field_object, 0}, + {field_object, 0, .inherited = true}, + {field_property, 0, .inherited = true}, + {field_property, 2}, + [305] = + {field_arguments, 0, .inherited = true}, + {field_function, 0, .inherited = true}, + {field_object, 0}, + {field_property, 2}, + [309] = {field_index, 2}, {field_object, 0}, - [271] = + [311] = {field_arguments, 3}, {field_function, 0}, {field_type_arguments, 2}, - [274] = + [314] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [277] = + [317] = {field_body, 3}, {field_decorator, 0, .inherited = true}, - [279] = + [319] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [282] = + [322] = {field_body, 5}, {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [287] = + [327] = {field_name, 2}, {field_type, 1}, {field_value, 4}, {field_value, 5}, - [291] = + [331] = {field_argument, 2, .inherited = true}, {field_name, 0}, {field_operator, 2, .inherited = true}, {field_value, 2}, - [295] = + [335] = {field_name, 1}, {field_name, 2, .inherited = true}, - [297] = + [337] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [299] = + [339] = {field_name, 1, .inherited = true}, {field_name, 2, .inherited = true}, {field_value, 1, .inherited = true}, - [302] = + [342] = {field_name, 3}, {field_type, 2}, {field_value, 5}, - [305] = + [345] = {field_source, 2, .inherited = true}, - [306] = + [346] = {field_value, 2}, - [307] = + [347] = {field_source, 2}, - [308] = + [348] = {field_body, 3}, {field_name, 2}, - [310] = + [350] = {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}, - [316] = + [356] = + {field_body, 1}, + {field_condition, 3}, + [358] = {field_name, 1}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [320] = + [362] = {field_type, 1}, - [321] = + [363] = {field_body, 3}, {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [326] = + [368] = {field_declaration, 3}, {field_decorator, 0, .inherited = true}, - [328] = + [370] = {field_pattern, 3}, - [329] = + [371] = {field_decorator, 0, .inherited = true}, {field_pattern, 0, .inherited = true}, {field_type, 2}, {field_value, 3, .inherited = true}, - [333] = + [375] = {field_decorator, 0, .inherited = true}, {field_pattern, 3}, - [335] = - {field_parameters, 1}, - {field_type, 2}, - [337] = - {field_parameters, 2}, - {field_type_parameters, 1}, - [339] = + [377] = {field_name, 2}, - [340] = + [378] = + {field_name, 1}, + {field_value, 2, .inherited = true}, + [380] = {field_name, 1}, {field_type, 2}, - [342] = - {field_parameters, 2}, - [343] = + [382] = + {field_name, 0}, + {field_value, 2, .inherited = true}, + [384] = {field_name, 0}, {field_parameters, 2, .inherited = true}, {field_return_type, 2, .inherited = true}, {field_type_parameters, 2, .inherited = true}, - [347] = - {field_object, 0}, - {field_object, 0, .inherited = true}, - {field_property, 0, .inherited = true}, - {field_property, 2}, - [351] = - {field_index, 0, .inherited = true}, - {field_object, 0}, - {field_object, 0, .inherited = true}, - {field_property, 2}, - [355] = - {field_arguments, 0, .inherited = true}, - {field_function, 0, .inherited = true}, - {field_object, 0}, - {field_property, 2}, - [359] = - {field_parameters, 1}, - {field_type, 3}, - [361] = - {field_parameters, 1}, - {field_return_type, 3}, - {field_type_parameters, 0}, - [364] = + [388] = + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + [390] = + {field_decorator, 0, .inherited = true}, {field_name, 1}, {field_value, 2, .inherited = true}, - [366] = - {field_name, 0}, - {field_value, 2, .inherited = true}, - [368] = + [393] = + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_type, 2}, + [396] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [371] = - {field_type_arguments, 2}, - {field_type_arguments, 3, .inherited = true}, - {field_value, 1}, - {field_value, 3, .inherited = true}, - [375] = + [399] = {field_type_arguments, 0, .inherited = true}, {field_type_arguments, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [379] = + [403] = {field_body, 4}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [383] = + [407] = + {field_parameters, 1}, + {field_type, 2}, + [409] = + {field_parameters, 2}, + {field_type_parameters, 1}, + [411] = + {field_parameters, 2}, + [412] = + {field_index, 0, .inherited = true}, + {field_object, 0}, + {field_object, 0, .inherited = true}, + {field_property, 2}, + [416] = + {field_constraint, 2}, + {field_name, 1}, + {field_value, 3}, + [419] = + {field_parameters, 1}, + {field_type, 3}, + [421] = + {field_parameters, 1}, + {field_return_type, 3}, + {field_type_parameters, 0}, + [424] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [386] = + [427] = {field_index, 3}, {field_object, 0}, {field_optional_chain, 1}, - [389] = + [430] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [392] = + [433] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [396] = + [437] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_type_parameters, 2}, - [399] = + [440] = {field_name, 3}, {field_type, 2}, {field_value, 5}, {field_value, 6}, - [403] = + [444] = {field_source, 3, .inherited = true}, - [404] = + [445] = {field_alias, 2}, {field_name, 0}, - [406] = + [447] = {field_body, 4}, {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [411] = - {field_body, 1}, - {field_condition, 3}, - [413] = + [452] = {field_name, 2}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [417] = + [456] = {field_body, 4}, {field_name, 2}, - [419] = + [458] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [422] = + [461] = {field_type, 1}, {field_type, 2, .inherited = true}, - [424] = + [463] = {field_decorator, 0, .inherited = true}, {field_value, 3}, - [426] = + [465] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [429] = + [468] = {field_decorator, 0, .inherited = true}, {field_pattern, 4}, - [431] = + [470] = {field_name, 1}, {field_parameters, 3, .inherited = true}, {field_return_type, 3, .inherited = true}, {field_type_parameters, 3, .inherited = true}, - [435] = + [474] = {field_type, 3}, - [436] = - {field_parameters, 2}, - {field_type, 3}, - {field_type_parameters, 1}, - [439] = + [475] = + {field_name, 2}, + {field_value, 3, .inherited = true}, + [477] = {field_name, 2}, {field_type, 3}, - [441] = + [479] = + {field_name, 1}, + {field_value, 3, .inherited = true}, + [481] = {field_name, 1}, {field_type, 3}, - [443] = + [483] = + {field_name, 1}, + {field_type, 2}, + {field_value, 3, .inherited = true}, + [486] = {field_name, 3}, - [444] = + [487] = + {field_name, 0}, + {field_type, 2}, + {field_value, 3, .inherited = true}, + [490] = + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + [492] = + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_value, 3, .inherited = true}, + [495] = + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_type, 3}, + [498] = + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_value, 3, .inherited = true}, + [501] = + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_type, 3}, + [504] = + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_type, 2}, + {field_value, 3, .inherited = true}, + [508] = + {field_parameters, 2}, + {field_type, 3}, + {field_type_parameters, 1}, + [511] = {field_parameters, 2}, {field_type, 3}, - [446] = + [513] = {field_parameters, 3}, {field_type_parameters, 2}, - [448] = + [515] = {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [452] = + [519] = {field_index, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, {field_object, 0, .inherited = true}, - [456] = + [523] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 2}, {field_object, 0}, - [460] = + [527] = {field_parameters, 2}, {field_type, 4}, {field_type_parameters, 1}, - [463] = + [530] = {field_parameters, 2}, {field_type, 4}, - [465] = - {field_name, 2}, - {field_value, 3, .inherited = true}, - [467] = - {field_name, 1}, - {field_value, 3, .inherited = true}, - [469] = - {field_name, 1}, - {field_type, 2}, - {field_value, 3, .inherited = true}, - [472] = - {field_name, 0}, - {field_type, 2}, - {field_value, 3, .inherited = true}, - [475] = + [532] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_type_parameters, 3}, - [479] = + [536] = {field_alias, 3}, {field_name, 1}, - [481] = + [538] = {field_name, 1}, {field_type_parameters, 2}, {field_value, 4}, - [484] = + [541] = {field_left, 1}, {field_operator, 2}, {field_right, 3}, - [487] = + [544] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [490] = + [547] = {field_body, 5}, {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [495] = + [552] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [498] = + [555] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [500] = + [557] = {field_name, 2, .inherited = true}, - [501] = + [558] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, - [504] = + [561] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [508] = + [565] = {field_body, 3}, {field_value, 1}, - [510] = + [567] = {field_body, 4}, {field_parameter, 2}, - [512] = + [569] = {field_name, 2}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [516] = + [573] = {field_name, 3}, {field_parameters, 4, .inherited = true}, {field_return_type, 4, .inherited = true}, {field_type_parameters, 4, .inherited = true}, - [520] = + [577] = + {field_name, 2}, + {field_value, 4, .inherited = true}, + [579] = {field_name, 2}, {field_type, 4}, - [522] = + [581] = + {field_name, 2}, + {field_type, 3}, + {field_value, 4, .inherited = true}, + [584] = + {field_name, 1}, + {field_type, 3}, + {field_value, 4, .inherited = true}, + [587] = + {field_name, 3}, + {field_value, 4, .inherited = true}, + [589] = {field_name, 3}, {field_type, 4}, - [524] = + [591] = {field_type, 4}, - [525] = + [592] = + {field_name, 4}, + [593] = + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_value, 4, .inherited = true}, + [596] = + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_type, 4}, + [599] = + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_value, 4, .inherited = true}, + [602] = + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_type, 4}, + [605] = + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_type, 3}, + {field_value, 4, .inherited = true}, + [609] = + {field_decorator, 0, .inherited = true}, + {field_name, 4}, + [611] = + {field_decorator, 0, .inherited = true}, + {field_name, 1}, + {field_type, 3}, + {field_value, 4, .inherited = true}, + [615] = {field_parameters, 3}, {field_type, 4}, {field_type_parameters, 2}, - [528] = - {field_name, 4}, - [529] = + [618] = {field_index, 3}, {field_object, 0}, - [531] = + [620] = {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, {field_property, 0, .inherited = true}, - [535] = + [624] = {field_index, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, {field_object, 0, .inherited = true}, - [539] = + [628] = {field_arguments, 0, .inherited = true}, {field_function, 0, .inherited = true}, {field_index, 3}, {field_object, 0}, - [543] = + [632] = {field_parameters, 3}, {field_type, 5}, {field_type_parameters, 2}, - [546] = - {field_name, 2}, - {field_value, 4, .inherited = true}, - [548] = - {field_name, 2}, - {field_type, 3}, - {field_value, 4, .inherited = true}, - [551] = - {field_name, 1}, - {field_type, 3}, - {field_value, 4, .inherited = true}, - [554] = - {field_name, 3}, - {field_value, 4, .inherited = true}, - [556] = + [635] = {field_source, 4}, - [557] = + [636] = {field_kind, 1}, {field_left, 2}, {field_operator, 3}, {field_right, 4}, - [561] = + [640] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [565] = + [644] = {field_body, 6}, {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [570] = + [649] = {field_body, 6}, {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [575] = + [654] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type_parameters, 4}, - [579] = + [658] = {field_body, 5}, {field_parameter, 2}, {field_type, 3}, - [582] = + [661] = {field_index_type, 3}, {field_name, 1}, {field_type, 5}, - [585] = + [664] = {field_alias, 4}, {field_name, 0}, {field_type, 2}, - [588] = + [667] = {field_sign, 0}, {field_type, 5}, - [590] = + [669] = {field_name, 3}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [594] = + [673] = {field_name, 4}, {field_parameters, 5, .inherited = true}, {field_return_type, 5, .inherited = true}, {field_type_parameters, 5, .inherited = true}, - [598] = + [677] = + {field_name, 2}, + {field_type, 4}, + {field_value, 5, .inherited = true}, + [680] = + {field_name, 3}, + {field_value, 5, .inherited = true}, + [682] = {field_name, 3}, {field_type, 5}, - [600] = - {field_name, 4}, - {field_type, 5}, - [602] = - {field_alternative, 6}, - {field_consequence, 4}, - {field_left, 0}, - {field_right, 2}, - [606] = - {field_name, 2}, + [684] = + {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [609] = + [687] = + {field_name, 4}, + {field_value, 5, .inherited = true}, + [689] = + {field_name, 4}, + {field_type, 5}, + [691] = + {field_name, 5}, + [692] = + {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_value, 5, .inherited = true}, - [611] = + [695] = + {field_decorator, 0, .inherited = true}, + {field_name, 3}, + {field_type, 5}, + [698] = + {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 4}, {field_value, 5, .inherited = true}, - [614] = + [702] = + {field_decorator, 0, .inherited = true}, + {field_name, 2}, + {field_type, 4}, + {field_value, 5, .inherited = true}, + [706] = + {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_value, 5, .inherited = true}, - [616] = + [709] = + {field_decorator, 0, .inherited = true}, + {field_name, 4}, + {field_type, 5}, + [712] = + {field_decorator, 0, .inherited = true}, {field_name, 5}, - [617] = + [714] = + {field_alternative, 6}, + {field_consequence, 4}, + {field_left, 0}, + {field_right, 2}, + [718] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, {field_value, 3, .inherited = true}, - [622] = + [723] = {field_body, 7}, {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [627] = + [728] = {field_body, 7}, {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [632] = + [733] = {field_name, 4}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [636] = + [737] = {field_name, 5}, {field_parameters, 6, .inherited = true}, {field_return_type, 6, .inherited = true}, {field_type_parameters, 6, .inherited = true}, - [640] = + [741] = + {field_name, 3}, + {field_type, 5}, + {field_value, 6, .inherited = true}, + [744] = {field_index_type, 4}, {field_name, 2}, {field_type, 6}, - [643] = + [747] = + {field_name, 4}, + {field_value, 6, .inherited = true}, + [749] = + {field_name, 4}, + {field_type, 6}, + [751] = {field_name, 4}, + {field_type, 5}, + {field_value, 6, .inherited = true}, + [754] = + {field_name, 5}, + {field_value, 6, .inherited = true}, + [756] = + {field_name, 5}, {field_type, 6}, - [645] = + [758] = + {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_type, 5}, {field_value, 6, .inherited = true}, - [648] = + [762] = + {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_value, 6, .inherited = true}, - [650] = + [765] = + {field_decorator, 0, .inherited = true}, + {field_name, 4}, + {field_type, 6}, + [768] = + {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 5}, {field_value, 6, .inherited = true}, - [653] = + [772] = + {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_value, 6, .inherited = true}, - [655] = + [775] = + {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 6}, - [657] = + [778] = + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + [780] = {field_body, 8}, {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [662] = + [785] = {field_body, 8}, {field_name, 6}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [667] = + [790] = {field_index_type, 5}, {field_name, 3}, {field_sign, 0}, {field_type, 7}, - [671] = + [794] = {field_name, 5}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [675] = + [798] = + {field_name, 4}, + {field_type, 6}, + {field_value, 7, .inherited = true}, + [801] = + {field_name, 5}, + {field_value, 7, .inherited = true}, + [803] = + {field_name, 5}, + {field_type, 7}, + [805] = + {field_name, 5}, + {field_type, 6}, + {field_value, 7, .inherited = true}, + [808] = {field_name, 6}, {field_parameters, 7, .inherited = true}, {field_return_type, 7, .inherited = true}, {field_type_parameters, 7, .inherited = true}, - [679] = + [812] = + {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_type, 6}, {field_value, 7, .inherited = true}, - [682] = + [816] = + {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_value, 7, .inherited = true}, - [684] = + [819] = + {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 7}, - [686] = + [822] = + {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 6}, {field_value, 7, .inherited = true}, - [689] = + [826] = + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + {field_value, 7, .inherited = true}, + [829] = + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + {field_type, 7}, + [832] = {field_body, 9}, {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [694] = + [837] = + {field_name, 5}, + {field_type, 7}, + {field_value, 8, .inherited = true}, + [840] = {field_name, 6}, {field_parameters, 8, .inherited = true}, {field_return_type, 8, .inherited = true}, {field_type_parameters, 8, .inherited = true}, - [698] = + [844] = + {field_decorator, 0, .inherited = true}, {field_name, 5}, {field_type, 7}, {field_value, 8, .inherited = true}, + [848] = + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + {field_value, 8, .inherited = true}, + [851] = + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + {field_type, 8}, + [854] = + {field_decorator, 0, .inherited = true}, + {field_name, 6}, + {field_type, 7}, + {field_value, 8, .inherited = true}, + [858] = + {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] = { @@ -4282,253 +4709,318 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [10] = { [0] = sym_identifier, }, + [11] = { + [1] = sym_identifier, + }, [18] = { + [1] = sym_identifier, + }, + [20] = { [0] = sym_identifier, }, - [21] = { + [23] = { [0] = alias_sym_property_identifier, }, - [25] = { + [27] = { [1] = sym_identifier, }, - [35] = { + [29] = { + [1] = sym_identifier, + }, + [39] = { [0] = anon_sym_list, }, - [36] = { + [40] = { [0] = anon_sym_list, }, - [37] = { + [41] = { [0] = alias_sym_this_type, }, - [46] = { + [43] = { + [0] = sym_unescaped_double_string_fragment, + }, + [51] = { [0] = sym_identifier, [2] = sym_identifier, }, - [47] = { + [52] = { [0] = sym_identifier, }, - [48] = { + [53] = { [1] = alias_sym_shorthand_property_identifier_pattern, }, - [49] = { + [54] = { [1] = sym_identifier, }, - [54] = { + [61] = { [2] = sym_identifier, }, - [56] = { + [63] = { [1] = anon_sym_list, [2] = sym_identifier, }, - [57] = { + [64] = { + [2] = alias_sym_property_identifier, + }, + [65] = { [2] = anon_sym_list, }, - [58] = { + [66] = { [1] = anon_sym_list, }, - [59] = { + [67] = { + [0] = sym_member_expression, + [2] = alias_sym_property_identifier, + }, + [68] = { [2] = sym_identifier, }, - [64] = { + [72] = { + [1] = sym_identifier, + }, + [76] = { [0] = sym_identifier, }, - [65] = { + [77] = { [0] = sym_identifier, }, - [67] = { + [79] = { [1] = alias_sym_shorthand_property_identifier, }, - [82] = { - [0] = anon_sym_list, + [90] = { + [1] = anon_sym_list, }, - [83] = { + [101] = { + [1] = anon_sym_list, + }, + [102] = { [0] = anon_sym_list, }, - [84] = { + [103] = { [0] = anon_sym_list, }, - [85] = { - [1] = anon_sym_list, + [104] = { + [0] = anon_sym_list, }, - [87] = { + [105] = { [1] = anon_sym_list, }, - [96] = { - [2] = alias_sym_property_identifier, + [106] = { + [1] = anon_sym_unique, }, - [98] = { + [113] = { [2] = alias_sym_property_identifier, }, - [106] = { + [121] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, - [109] = { + [124] = { [1] = anon_sym_list, [2] = sym_identifier, }, - [110] = { + [125] = { [1] = anon_sym_list, }, - [111] = { + [126] = { [2] = anon_sym_list, }, - [112] = { + [127] = { [2] = sym_identifier, }, - [114] = { + [129] = { [0] = anon_sym_list, }, - [117] = { + [132] = { [2] = anon_sym_list, [3] = sym_identifier, }, - [118] = { + [133] = { [2] = anon_sym_list, }, - [119] = { + [134] = { [3] = sym_identifier, }, - [122] = { + [137] = { [0] = alias_sym_statement_identifier, }, - [126] = { + [141] = { [1] = alias_sym_statement_identifier, }, [142] = { - [0] = anon_sym_list, + [1] = anon_sym_list, + [2] = alias_sym_interface_body, }, - [145] = { + [158] = { [1] = anon_sym_list, }, - [146] = { + [159] = { [1] = anon_sym_list, }, - [150] = { + [163] = { [1] = sym_identifier, }, - [157] = { + [168] = { + [1] = sym_identifier, + }, + [176] = { + [1] = anon_sym_list, + }, + [177] = { + [1] = anon_sym_list, + }, + [178] = { + [0] = anon_sym_list, + }, + [180] = { + [2] = alias_sym_property_identifier, + }, + [182] = { + [2] = alias_sym_property_identifier, + }, + [186] = { [2] = anon_sym_list, }, - [161] = { + [190] = { [1] = anon_sym_list, [2] = sym_identifier, }, - [162] = { + [191] = { [1] = anon_sym_list, }, - [163] = { + [192] = { [2] = sym_identifier, }, - [165] = { + [194] = { [2] = anon_sym_list, }, - [170] = { + [199] = { [2] = anon_sym_list, [3] = sym_identifier, }, - [171] = { + [200] = { [2] = anon_sym_list, }, - [172] = { + [201] = { [3] = sym_identifier, }, - [180] = { + [210] = { [2] = anon_sym_list, }, - [181] = { + [211] = { [1] = anon_sym_list, }, - [194] = { - [2] = alias_sym_property_identifier, + [213] = { + [1] = anon_sym_list, + [3] = alias_sym_interface_body, }, - [196] = { - [2] = alias_sym_property_identifier, + [214] = { + [1] = anon_sym_list, + [3] = alias_sym_interface_body, }, - [198] = { + [228] = { + [1] = anon_sym_list, + }, + [234] = { [2] = alias_sym_property_identifier, }, - [204] = { + [236] = { [1] = anon_sym_list, }, - [210] = { + [241] = { [0] = sym_identifier, }, - [211] = { + [242] = { [2] = anon_sym_list, }, - [212] = { + [243] = { [2] = anon_sym_list, }, - [214] = { + [245] = { [2] = anon_sym_list, [3] = sym_identifier, }, - [215] = { + [246] = { [2] = anon_sym_list, }, - [216] = { + [247] = { [3] = sym_identifier, }, - [221] = { + [252] = { [1] = anon_sym_list, }, - [224] = { + [253] = { + [0] = sym_identifier, + }, + [255] = { [2] = anon_sym_list, }, - [225] = { + [256] = { [2] = anon_sym_list, }, - [226] = { + [257] = { [1] = anon_sym_list, }, - [229] = { + [259] = { + [1] = anon_sym_list, + [4] = alias_sym_interface_body, + }, + [261] = { [3] = anon_sym_list, }, - [232] = { + [264] = { [0] = anon_sym_list, }, - [249] = { + [287] = { [2] = anon_sym_list, }, - [251] = { + [289] = { [1] = anon_sym_list, }, - [252] = { + [290] = { [1] = sym_identifier, }, - [256] = { + [291] = { + [1] = sym_identifier, + }, + [295] = { [2] = anon_sym_list, }, - [259] = { + [298] = { [3] = anon_sym_list, }, - [260] = { + [299] = { [3] = anon_sym_list, }, - [284] = { + [330] = { [3] = alias_sym_property_identifier, }, - [285] = { + [331] = { [3] = anon_sym_list, }, - [287] = { + [333] = { [1] = sym_identifier, }, - [288] = { + [334] = { [0] = anon_sym_list, }, - [306] = { + [360] = { [2] = sym_identifier, }, - [316] = { + [376] = { [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, }; @@ -4544,1814 +5036,1814 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8] = 4, [9] = 4, [10] = 4, - [11] = 11, - [12] = 12, - [13] = 13, - [14] = 14, + [11] = 4, + [12] = 4, + [13] = 4, + [14] = 4, [15] = 15, [16] = 16, [17] = 17, - [18] = 16, - [19] = 17, - [20] = 16, - [21] = 17, - [22] = 16, - [23] = 17, - [24] = 17, - [25] = 16, - [26] = 17, - [27] = 16, - [28] = 16, - [29] = 16, - [30] = 17, - [31] = 17, - [32] = 32, - [33] = 33, - [34] = 34, - [35] = 35, - [36] = 33, - [37] = 32, - [38] = 38, - [39] = 39, - [40] = 40, - [41] = 38, - [42] = 39, - [43] = 34, - [44] = 38, - [45] = 45, - [46] = 46, - [47] = 47, - [48] = 34, - [49] = 35, - [50] = 40, - [51] = 32, - [52] = 45, - [53] = 47, - [54] = 46, - [55] = 46, - [56] = 33, - [57] = 39, - [58] = 45, - [59] = 35, - [60] = 47, - [61] = 61, - [62] = 62, - [63] = 63, - [64] = 63, - [65] = 63, - [66] = 66, - [67] = 63, - [68] = 68, - [69] = 63, - [70] = 70, - [71] = 63, - [72] = 63, - [73] = 70, - [74] = 74, - [75] = 63, - [76] = 63, - [77] = 77, - [78] = 63, - [79] = 79, - [80] = 79, - [81] = 79, - [82] = 82, - [83] = 82, - [84] = 82, - [85] = 82, - [86] = 82, - [87] = 87, - [88] = 88, - [89] = 89, - [90] = 89, - [91] = 91, - [92] = 89, - [93] = 89, + [18] = 18, + [19] = 19, + [20] = 20, + [21] = 21, + [22] = 20, + [23] = 20, + [24] = 21, + [25] = 21, + [26] = 20, + [27] = 21, + [28] = 20, + [29] = 21, + [30] = 20, + [31] = 20, + [32] = 21, + [33] = 20, + [34] = 21, + [35] = 21, + [36] = 20, + [37] = 20, + [38] = 20, + [39] = 21, + [40] = 21, + [41] = 20, + [42] = 21, + [43] = 20, + [44] = 20, + [45] = 21, + [46] = 21, + [47] = 20, + [48] = 21, + [49] = 20, + [50] = 21, + [51] = 20, + [52] = 21, + [53] = 20, + [54] = 20, + [55] = 21, + [56] = 20, + [57] = 21, + [58] = 20, + [59] = 21, + [60] = 21, + [61] = 20, + [62] = 21, + [63] = 21, + [64] = 20, + [65] = 20, + [66] = 20, + [67] = 21, + [68] = 21, + [69] = 20, + [70] = 21, + [71] = 21, + [72] = 20, + [73] = 20, + [74] = 21, + [75] = 20, + [76] = 21, + [77] = 21, + [78] = 20, + [79] = 21, + [80] = 20, + [81] = 21, + [82] = 21, + [83] = 21, + [84] = 20, + [85] = 20, + [86] = 21, + [87] = 15, + [88] = 21, + [89] = 20, + [90] = 20, + [91] = 21, + [92] = 20, + [93] = 93, [94] = 94, - [95] = 89, - [96] = 89, - [97] = 89, - [98] = 89, - [99] = 89, + [95] = 94, + [96] = 96, + [97] = 94, + [98] = 98, + [99] = 93, [100] = 100, - [101] = 100, - [102] = 100, - [103] = 100, - [104] = 100, - [105] = 100, + [101] = 101, + [102] = 102, + [103] = 93, + [104] = 101, + [105] = 96, [106] = 100, - [107] = 100, - [108] = 100, - [109] = 109, - [110] = 110, - [111] = 110, - [112] = 109, - [113] = 109, - [114] = 109, - [115] = 110, - [116] = 110, - [117] = 117, - [118] = 118, - [119] = 119, - [120] = 120, - [121] = 121, - [122] = 122, - [123] = 123, - [124] = 124, - [125] = 125, - [126] = 126, - [127] = 127, - [128] = 128, - [129] = 129, - [130] = 127, - [131] = 129, - [132] = 132, - [133] = 133, - [134] = 134, - [135] = 132, - [136] = 132, - [137] = 134, - [138] = 128, - [139] = 133, - [140] = 128, - [141] = 134, - [142] = 133, - [143] = 143, - [144] = 143, - [145] = 143, - [146] = 146, - [147] = 147, - [148] = 143, - [149] = 149, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, - [154] = 154, - [155] = 150, - [156] = 156, - [157] = 143, - [158] = 143, - [159] = 143, - [160] = 150, - [161] = 161, - [162] = 162, + [107] = 98, + [108] = 98, + [109] = 100, + [110] = 96, + [111] = 94, + [112] = 100, + [113] = 113, + [114] = 114, + [115] = 115, + [116] = 115, + [117] = 114, + [118] = 96, + [119] = 113, + [120] = 93, + [121] = 113, + [122] = 94, + [123] = 114, + [124] = 101, + [125] = 113, + [126] = 96, + [127] = 114, + [128] = 115, + [129] = 100, + [130] = 98, + [131] = 101, + [132] = 93, + [133] = 101, + [134] = 115, + [135] = 101, + [136] = 94, + [137] = 93, + [138] = 102, + [139] = 101, + [140] = 96, + [141] = 102, + [142] = 102, + [143] = 115, + [144] = 115, + [145] = 102, + [146] = 98, + [147] = 98, + [148] = 94, + [149] = 102, + [150] = 100, + [151] = 93, + [152] = 114, + [153] = 113, + [154] = 115, + [155] = 114, + [156] = 113, + [157] = 100, + [158] = 102, + [159] = 96, + [160] = 98, + [161] = 113, + [162] = 114, [163] = 163, [164] = 164, - [165] = 165, - [166] = 166, - [167] = 128, - [168] = 168, - [169] = 169, - [170] = 170, - [171] = 171, - [172] = 146, - [173] = 173, - [174] = 174, - [175] = 175, - [176] = 176, - [177] = 156, + [165] = 164, + [166] = 164, + [167] = 164, + [168] = 163, + [169] = 163, + [170] = 164, + [171] = 164, + [172] = 164, + [173] = 164, + [174] = 164, + [175] = 164, + [176] = 163, + [177] = 177, [178] = 178, - [179] = 128, + [179] = 179, [180] = 180, - [181] = 181, + [181] = 180, [182] = 182, [183] = 183, [184] = 184, [185] = 185, [186] = 186, - [187] = 146, + [187] = 185, [188] = 188, - [189] = 189, + [189] = 188, [190] = 190, [191] = 191, - [192] = 128, - [193] = 193, - [194] = 156, - [195] = 128, - [196] = 193, - [197] = 197, - [198] = 128, - [199] = 149, - [200] = 200, - [201] = 191, - [202] = 128, - [203] = 203, - [204] = 204, - [205] = 205, - [206] = 156, - [207] = 156, - [208] = 204, - [209] = 209, - [210] = 204, - [211] = 204, - [212] = 204, - [213] = 156, + [192] = 192, + [193] = 191, + [194] = 188, + [195] = 195, + [196] = 195, + [197] = 195, + [198] = 195, + [199] = 191, + [200] = 190, + [201] = 201, + [202] = 202, + [203] = 195, + [204] = 202, + [205] = 195, + [206] = 202, + [207] = 191, + [208] = 192, + [209] = 195, + [210] = 202, + [211] = 202, + [212] = 212, + [213] = 186, [214] = 214, - [215] = 215, - [216] = 156, - [217] = 205, - [218] = 214, - [219] = 204, - [220] = 204, - [221] = 156, - [222] = 156, - [223] = 156, - [224] = 224, - [225] = 224, - [226] = 226, - [227] = 227, - [228] = 224, - [229] = 229, - [230] = 230, - [231] = 231, - [232] = 231, - [233] = 231, - [234] = 234, - [235] = 231, - [236] = 231, - [237] = 231, - [238] = 234, - [239] = 239, - [240] = 240, - [241] = 231, - [242] = 242, - [243] = 231, - [244] = 231, - [245] = 245, - [246] = 231, - [247] = 231, - [248] = 248, - [249] = 231, - [250] = 231, - [251] = 231, - [252] = 252, + [215] = 191, + [216] = 191, + [217] = 217, + [218] = 190, + [219] = 191, + [220] = 220, + [221] = 221, + [222] = 191, + [223] = 192, + [224] = 190, + [225] = 191, + [226] = 190, + [227] = 185, + [228] = 191, + [229] = 190, + [230] = 217, + [231] = 191, + [232] = 190, + [233] = 201, + [234] = 191, + [235] = 191, + [236] = 191, + [237] = 237, + [238] = 237, + [239] = 237, + [240] = 237, + [241] = 214, + [242] = 191, + [243] = 190, + [244] = 237, + [245] = 191, + [246] = 191, + [247] = 237, + [248] = 237, + [249] = 237, + [250] = 190, + [251] = 251, + [252] = 237, [253] = 253, - [254] = 252, + [254] = 253, [255] = 253, [256] = 253, - [257] = 257, - [258] = 258, - [259] = 259, - [260] = 260, - [261] = 261, + [257] = 253, + [258] = 253, + [259] = 253, + [260] = 253, + [261] = 253, [262] = 262, [263] = 263, [264] = 264, [265] = 265, [266] = 265, - [267] = 260, - [268] = 268, - [269] = 260, - [270] = 259, - [271] = 259, - [272] = 272, - [273] = 273, + [267] = 265, + [268] = 265, + [269] = 265, + [270] = 265, + [271] = 265, + [272] = 265, + [273] = 265, [274] = 274, - [275] = 275, - [276] = 261, - [277] = 261, - [278] = 257, - [279] = 279, - [280] = 261, - [281] = 261, - [282] = 274, - [283] = 265, - [284] = 260, - [285] = 259, - [286] = 273, - [287] = 287, - [288] = 261, - [289] = 274, + [275] = 274, + [276] = 276, + [277] = 274, + [278] = 276, + [279] = 276, + [280] = 274, + [281] = 274, + [282] = 276, + [283] = 274, + [284] = 276, + [285] = 276, + [286] = 276, + [287] = 274, + [288] = 274, + [289] = 276, [290] = 290, - [291] = 279, - [292] = 274, - [293] = 257, - [294] = 257, - [295] = 273, - [296] = 274, - [297] = 279, - [298] = 279, - [299] = 259, - [300] = 275, - [301] = 260, - [302] = 261, - [303] = 265, - [304] = 274, - [305] = 265, - [306] = 261, - [307] = 274, - [308] = 260, - [309] = 259, - [310] = 279, - [311] = 311, - [312] = 279, - [313] = 273, - [314] = 261, - [315] = 257, - [316] = 274, - [317] = 274, - [318] = 257, - [319] = 319, - [320] = 274, - [321] = 265, - [322] = 265, - [323] = 260, - [324] = 259, - [325] = 273, - [326] = 326, - [327] = 327, - [328] = 258, - [329] = 279, - [330] = 265, - [331] = 257, - [332] = 260, - [333] = 259, - [334] = 257, - [335] = 273, - [336] = 261, - [337] = 337, - [338] = 268, + [291] = 291, + [292] = 292, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 298, + [299] = 299, + [300] = 300, + [301] = 301, + [302] = 300, + [303] = 301, + [304] = 304, + [305] = 305, + [306] = 305, + [307] = 307, + [308] = 307, + [309] = 307, + [310] = 304, + [311] = 305, + [312] = 304, + [313] = 313, + [314] = 313, + [315] = 313, + [316] = 313, + [317] = 317, + [318] = 313, + [319] = 313, + [320] = 313, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 323, + [325] = 325, + [326] = 323, + [327] = 322, + [328] = 323, + [329] = 329, + [330] = 323, + [331] = 323, + [332] = 323, + [333] = 333, + [334] = 334, + [335] = 335, + [336] = 322, + [337] = 335, + [338] = 338, [339] = 339, - [340] = 265, - [341] = 260, - [342] = 279, - [343] = 290, - [344] = 257, - [345] = 279, - [346] = 259, - [347] = 273, + [340] = 334, + [341] = 341, + [342] = 342, + [343] = 325, + [344] = 344, + [345] = 325, + [346] = 346, + [347] = 347, [348] = 348, - [349] = 273, - [350] = 273, - [351] = 327, + [349] = 349, + [350] = 350, + [351] = 351, [352] = 352, [353] = 353, [354] = 354, [355] = 355, - [356] = 354, - [357] = 355, + [356] = 356, + [357] = 357, [358] = 358, - [359] = 354, + [359] = 359, [360] = 360, - [361] = 360, + [361] = 361, [362] = 362, - [363] = 355, + [363] = 363, [364] = 364, - [365] = 362, + [365] = 365, [366] = 366, - [367] = 360, - [368] = 362, - [369] = 364, - [370] = 366, + [367] = 367, + [368] = 333, + [369] = 369, + [370] = 370, [371] = 371, [372] = 372, - [373] = 373, - [374] = 374, - [375] = 375, + [373] = 341, + [374] = 342, + [375] = 344, [376] = 376, - [377] = 364, - [378] = 366, - [379] = 371, - [380] = 371, - [381] = 372, - [382] = 382, - [383] = 372, - [384] = 373, - [385] = 373, - [386] = 386, - [387] = 374, - [388] = 374, - [389] = 375, - [390] = 375, - [391] = 376, - [392] = 392, - [393] = 386, - [394] = 382, - [395] = 395, - [396] = 376, - [397] = 397, - [398] = 386, - [399] = 399, - [400] = 397, + [377] = 377, + [378] = 354, + [379] = 366, + [380] = 361, + [381] = 367, + [382] = 358, + [383] = 322, + [384] = 322, + [385] = 322, + [386] = 356, + [387] = 355, + [388] = 369, + [389] = 389, + [390] = 389, + [391] = 370, + [392] = 344, + [393] = 350, + [394] = 389, + [395] = 364, + [396] = 346, + [397] = 360, + [398] = 347, + [399] = 363, + [400] = 389, [401] = 401, - [402] = 352, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 352, - [407] = 403, - [408] = 382, - [409] = 382, + [402] = 376, + [403] = 362, + [404] = 371, + [405] = 377, + [406] = 348, + [407] = 389, + [408] = 342, + [409] = 341, [410] = 410, - [411] = 411, - [412] = 358, - [413] = 358, - [414] = 386, - [415] = 376, - [416] = 386, - [417] = 392, - [418] = 382, - [419] = 419, - [420] = 375, - [421] = 376, - [422] = 401, - [423] = 358, - [424] = 354, - [425] = 425, - [426] = 375, - [427] = 374, - [428] = 382, - [429] = 374, - [430] = 373, - [431] = 372, - [432] = 399, - [433] = 397, - [434] = 352, - [435] = 371, - [436] = 373, - [437] = 437, - [438] = 366, - [439] = 364, - [440] = 362, - [441] = 441, - [442] = 392, - [443] = 401, - [444] = 372, - [445] = 371, - [446] = 355, - [447] = 352, - [448] = 354, - [449] = 366, - [450] = 450, - [451] = 355, - [452] = 360, - [453] = 453, - [454] = 364, - [455] = 362, - [456] = 360, - [457] = 362, - [458] = 364, - [459] = 366, - [460] = 371, - [461] = 399, - [462] = 372, - [463] = 360, - [464] = 373, - [465] = 465, - [466] = 382, - [467] = 374, - [468] = 375, - [469] = 376, - [470] = 358, - [471] = 360, - [472] = 382, - [473] = 473, - [474] = 474, - [475] = 386, - [476] = 362, - [477] = 364, - [478] = 355, - [479] = 366, - [480] = 371, - [481] = 441, - [482] = 354, - [483] = 355, - [484] = 403, - [485] = 441, - [486] = 372, - [487] = 354, - [488] = 401, - [489] = 392, - [490] = 382, - [491] = 373, + [411] = 333, + [412] = 322, + [413] = 325, + [414] = 367, + [415] = 322, + [416] = 349, + [417] = 351, + [418] = 359, + [419] = 389, + [420] = 353, + [421] = 389, + [422] = 325, + [423] = 322, + [424] = 357, + [425] = 322, + [426] = 352, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 428, + [431] = 428, + [432] = 428, + [433] = 354, + [434] = 434, + [435] = 429, + [436] = 428, + [437] = 365, + [438] = 363, + [439] = 439, + [440] = 434, + [441] = 358, + [442] = 428, + [443] = 443, + [444] = 356, + [445] = 362, + [446] = 428, + [447] = 325, + [448] = 448, + [449] = 428, + [450] = 428, + [451] = 333, + [452] = 371, + [453] = 434, + [454] = 355, + [455] = 434, + [456] = 325, + [457] = 457, + [458] = 350, + [459] = 428, + [460] = 325, + [461] = 357, + [462] = 351, + [463] = 359, + [464] = 349, + [465] = 434, + [466] = 428, + [467] = 348, + [468] = 428, + [469] = 377, + [470] = 353, + [471] = 366, + [472] = 376, + [473] = 434, + [474] = 346, + [475] = 443, + [476] = 369, + [477] = 347, + [478] = 370, + [479] = 428, + [480] = 352, + [481] = 360, + [482] = 341, + [483] = 361, + [484] = 434, + [485] = 364, + [486] = 428, + [487] = 342, + [488] = 344, + [489] = 371, + [490] = 357, + [491] = 352, [492] = 492, - [493] = 374, - [494] = 494, - [495] = 382, - [496] = 403, - [497] = 401, - [498] = 382, - [499] = 382, - [500] = 403, - [501] = 397, - [502] = 419, - [503] = 352, - [504] = 403, - [505] = 465, - [506] = 465, - [507] = 399, - [508] = 375, - [509] = 441, - [510] = 441, - [511] = 399, - [512] = 512, - [513] = 419, - [514] = 382, - [515] = 358, - [516] = 376, - [517] = 403, - [518] = 392, - [519] = 465, - [520] = 465, - [521] = 397, - [522] = 352, - [523] = 386, - [524] = 353, - [525] = 465, - [526] = 376, - [527] = 358, - [528] = 401, - [529] = 375, - [530] = 358, - [531] = 386, - [532] = 401, - [533] = 397, - [534] = 465, - [535] = 382, - [536] = 392, - [537] = 358, - [538] = 374, - [539] = 373, - [540] = 352, - [541] = 419, - [542] = 441, - [543] = 399, - [544] = 397, - [545] = 441, - [546] = 392, - [547] = 372, - [548] = 548, - [549] = 401, - [550] = 354, - [551] = 355, - [552] = 403, - [553] = 371, - [554] = 465, - [555] = 360, - [556] = 441, - [557] = 399, - [558] = 362, - [559] = 364, - [560] = 441, - [561] = 366, - [562] = 562, - [563] = 403, - [564] = 465, - [565] = 492, - [566] = 364, - [567] = 362, - [568] = 360, - [569] = 366, - [570] = 352, - [571] = 355, - [572] = 371, - [573] = 372, - [574] = 399, - [575] = 397, - [576] = 373, - [577] = 374, - [578] = 375, - [579] = 354, - [580] = 392, - [581] = 401, - [582] = 386, - [583] = 392, - [584] = 397, - [585] = 376, - [586] = 399, - [587] = 587, - [588] = 587, - [589] = 587, - [590] = 587, - [591] = 591, - [592] = 591, - [593] = 591, - [594] = 591, - [595] = 595, - [596] = 595, - [597] = 595, - [598] = 595, + [493] = 493, + [494] = 362, + [495] = 364, + [496] = 377, + [497] = 497, + [498] = 360, + [499] = 348, + [500] = 492, + [501] = 363, + [502] = 349, + [503] = 351, + [504] = 504, + [505] = 350, + [506] = 325, + [507] = 361, + [508] = 353, + [509] = 492, + [510] = 347, + [511] = 346, + [512] = 492, + [513] = 492, + [514] = 354, + [515] = 376, + [516] = 355, + [517] = 517, + [518] = 492, + [519] = 370, + [520] = 492, + [521] = 358, + [522] = 366, + [523] = 359, + [524] = 356, + [525] = 369, + [526] = 526, + [527] = 527, + [528] = 527, + [529] = 527, + [530] = 527, + [531] = 526, + [532] = 527, + [533] = 533, + [534] = 527, + [535] = 527, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 537, + [540] = 540, + [541] = 536, + [542] = 540, + [543] = 543, + [544] = 544, + [545] = 545, + [546] = 546, + [547] = 547, + [548] = 546, + [549] = 543, + [550] = 547, + [551] = 546, + [552] = 547, + [553] = 553, + [554] = 540, + [555] = 545, + [556] = 538, + [557] = 536, + [558] = 538, + [559] = 540, + [560] = 547, + [561] = 543, + [562] = 545, + [563] = 545, + [564] = 564, + [565] = 565, + [566] = 537, + [567] = 543, + [568] = 547, + [569] = 546, + [570] = 570, + [571] = 553, + [572] = 547, + [573] = 538, + [574] = 546, + [575] = 538, + [576] = 536, + [577] = 545, + [578] = 537, + [579] = 536, + [580] = 546, + [581] = 543, + [582] = 540, + [583] = 540, + [584] = 584, + [585] = 543, + [586] = 540, + [587] = 540, + [588] = 537, + [589] = 537, + [590] = 590, + [591] = 547, + [592] = 543, + [593] = 546, + [594] = 538, + [595] = 545, + [596] = 540, + [597] = 536, + [598] = 598, [599] = 599, - [600] = 600, - [601] = 599, - [602] = 600, - [603] = 600, - [604] = 599, - [605] = 600, - [606] = 599, + [600] = 545, + [601] = 536, + [602] = 545, + [603] = 538, + [604] = 536, + [605] = 538, + [606] = 606, [607] = 607, - [608] = 607, - [609] = 607, - [610] = 607, - [611] = 611, - [612] = 612, - [613] = 613, + [608] = 608, + [609] = 537, + [610] = 610, + [611] = 543, + [612] = 543, + [613] = 537, [614] = 614, [615] = 615, - [616] = 611, - [617] = 617, - [618] = 611, - [619] = 619, - [620] = 620, - [621] = 619, - [622] = 620, - [623] = 620, - [624] = 620, - [625] = 619, - [626] = 619, - [627] = 627, - [628] = 627, + [616] = 545, + [617] = 536, + [618] = 538, + [619] = 537, + [620] = 590, + [621] = 621, + [622] = 622, + [623] = 623, + [624] = 624, + [625] = 625, + [626] = 626, + [627] = 621, + [628] = 628, [629] = 629, [630] = 630, - [631] = 627, - [632] = 629, + [631] = 631, + [632] = 632, [633] = 633, [634] = 634, - [635] = 633, - [636] = 634, + [635] = 635, + [636] = 636, [637] = 637, - [638] = 638, - [639] = 637, - [640] = 637, + [638] = 631, + [639] = 639, + [640] = 640, [641] = 641, - [642] = 634, - [643] = 641, - [644] = 634, - [645] = 637, - [646] = 630, - [647] = 641, + [642] = 642, + [643] = 643, + [644] = 644, + [645] = 643, + [646] = 646, + [647] = 647, [648] = 648, - [649] = 634, - [650] = 650, - [651] = 634, - [652] = 634, - [653] = 634, - [654] = 634, + [649] = 630, + [650] = 641, + [651] = 636, + [652] = 621, + [653] = 653, + [654] = 629, [655] = 655, - [656] = 655, - [657] = 657, - [658] = 658, - [659] = 659, - [660] = 655, - [661] = 629, - [662] = 655, - [663] = 634, - [664] = 634, - [665] = 634, - [666] = 634, - [667] = 162, - [668] = 178, - [669] = 171, - [670] = 634, - [671] = 164, - [672] = 634, - [673] = 634, - [674] = 674, - [675] = 634, - [676] = 185, - [677] = 184, - [678] = 151, - [679] = 648, - [680] = 163, - [681] = 681, - [682] = 682, + [656] = 633, + [657] = 635, + [658] = 642, + [659] = 632, + [660] = 637, + [661] = 644, + [662] = 662, + [663] = 662, + [664] = 664, + [665] = 626, + [666] = 623, + [667] = 667, + [668] = 622, + [669] = 667, + [670] = 622, + [671] = 664, + [672] = 662, + [673] = 644, + [674] = 637, + [675] = 635, + [676] = 633, + [677] = 655, + [678] = 629, + [679] = 636, + [680] = 641, + [681] = 630, + [682] = 621, [683] = 683, - [684] = 684, + [684] = 639, [685] = 685, - [686] = 164, - [687] = 185, - [688] = 688, - [689] = 689, - [690] = 690, - [691] = 691, - [692] = 692, - [693] = 693, - [694] = 694, - [695] = 695, - [696] = 696, - [697] = 697, - [698] = 698, - [699] = 699, - [700] = 700, - [701] = 153, - [702] = 178, - [703] = 184, - [704] = 704, - [705] = 705, - [706] = 176, - [707] = 188, - [708] = 708, - [709] = 709, - [710] = 710, - [711] = 711, - [712] = 712, - [713] = 713, - [714] = 714, - [715] = 715, + [686] = 623, + [687] = 626, + [688] = 628, + [689] = 655, + [690] = 647, + [691] = 643, + [692] = 643, + [693] = 667, + [694] = 622, + [695] = 664, + [696] = 662, + [697] = 653, + [698] = 646, + [699] = 632, + [700] = 631, + [701] = 642, + [702] = 644, + [703] = 653, + [704] = 683, + [705] = 637, + [706] = 635, + [707] = 647, + [708] = 633, + [709] = 643, + [710] = 646, + [711] = 626, + [712] = 643, + [713] = 646, + [714] = 685, + [715] = 639, [716] = 716, - [717] = 717, - [718] = 718, + [717] = 621, + [718] = 628, [719] = 719, - [720] = 720, - [721] = 721, - [722] = 722, - [723] = 723, - [724] = 724, - [725] = 725, - [726] = 726, - [727] = 727, - [728] = 728, - [729] = 729, - [730] = 730, - [731] = 731, - [732] = 732, - [733] = 733, - [734] = 734, - [735] = 735, - [736] = 736, - [737] = 737, - [738] = 738, - [739] = 739, - [740] = 740, - [741] = 741, - [742] = 742, - [743] = 743, - [744] = 744, - [745] = 745, - [746] = 746, - [747] = 747, - [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] = 762, - [763] = 763, - [764] = 764, - [765] = 765, - [766] = 766, - [767] = 767, - [768] = 768, - [769] = 769, - [770] = 770, - [771] = 771, + [720] = 643, + [721] = 625, + [722] = 630, + [723] = 719, + [724] = 632, + [725] = 642, + [726] = 641, + [727] = 639, + [728] = 628, + [729] = 629, + [730] = 625, + [731] = 631, + [732] = 630, + [733] = 636, + [734] = 625, + [735] = 636, + [736] = 641, + [737] = 664, + [738] = 639, + [739] = 625, + [740] = 622, + [741] = 621, + [742] = 630, + [743] = 629, + [744] = 667, + [745] = 655, + [746] = 633, + [747] = 635, + [748] = 623, + [749] = 637, + [750] = 636, + [751] = 626, + [752] = 685, + [753] = 628, + [754] = 630, + [755] = 643, + [756] = 644, + [757] = 621, + [758] = 662, + [759] = 629, + [760] = 683, + [761] = 664, + [762] = 631, + [763] = 639, + [764] = 685, + [765] = 622, + [766] = 641, + [767] = 625, + [768] = 646, + [769] = 643, + [770] = 647, + [771] = 667, [772] = 772, - [773] = 773, - [774] = 774, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 780, - [781] = 781, - [782] = 782, - [783] = 783, - [784] = 784, - [785] = 785, - [786] = 786, - [787] = 787, - [788] = 788, - [789] = 789, - [790] = 790, - [791] = 791, - [792] = 792, - [793] = 793, - [794] = 794, - [795] = 162, - [796] = 796, - [797] = 797, - [798] = 798, - [799] = 171, - [800] = 800, - [801] = 801, - [802] = 802, - [803] = 803, - [804] = 804, - [805] = 180, - [806] = 174, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 810, + [773] = 655, + [774] = 633, + [775] = 635, + [776] = 637, + [777] = 623, + [778] = 644, + [779] = 653, + [780] = 662, + [781] = 664, + [782] = 636, + [783] = 628, + [784] = 667, + [785] = 623, + [786] = 626, + [787] = 628, + [788] = 626, + [789] = 632, + [790] = 642, + [791] = 625, + [792] = 653, + [793] = 632, + [794] = 629, + [795] = 642, + [796] = 647, + [797] = 646, + [798] = 631, + [799] = 653, + [800] = 625, + [801] = 685, + [802] = 655, + [803] = 641, + [804] = 633, + [805] = 642, + [806] = 635, + [807] = 637, + [808] = 643, + [809] = 632, + [810] = 628, [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, + [812] = 644, + [813] = 625, + [814] = 662, + [815] = 664, + [816] = 630, + [817] = 626, + [818] = 623, + [819] = 667, + [820] = 622, + [821] = 664, + [822] = 662, + [823] = 644, + [824] = 637, + [825] = 635, + [826] = 643, + [827] = 621, + [828] = 633, + [829] = 639, + [830] = 655, [831] = 831, - [832] = 832, + [832] = 647, [833] = 833, - [834] = 834, - [835] = 835, - [836] = 836, - [837] = 837, - [838] = 838, + [834] = 629, + [835] = 646, + [836] = 685, + [837] = 685, + [838] = 639, [839] = 839, - [840] = 840, - [841] = 841, - [842] = 842, - [843] = 843, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 847, + [840] = 636, + [841] = 641, + [842] = 630, + [843] = 621, + [844] = 622, + [845] = 639, + [846] = 647, + [847] = 646, [848] = 848, [849] = 849, - [850] = 850, - [851] = 851, - [852] = 852, - [853] = 853, + [850] = 685, + [851] = 667, + [852] = 643, + [853] = 623, [854] = 854, - [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 153, - [866] = 151, - [867] = 154, - [868] = 180, - [869] = 163, - [870] = 174, - [871] = 161, - [872] = 182, - [873] = 184, - [874] = 185, - [875] = 175, - [876] = 178, - [877] = 169, - [878] = 162, - [879] = 879, - [880] = 171, - [881] = 165, - [882] = 186, - [883] = 183, - [884] = 879, - [885] = 164, - [886] = 176, - [887] = 189, - [888] = 168, - [889] = 879, - [890] = 170, - [891] = 173, - [892] = 190, - [893] = 879, - [894] = 188, - [895] = 879, - [896] = 166, + [855] = 653, + [856] = 643, + [857] = 653, + [858] = 653, + [859] = 631, + [860] = 655, + [861] = 647, + [862] = 685, + [863] = 683, + [864] = 643, + [865] = 642, + [866] = 623, + [867] = 667, + [868] = 632, + [869] = 622, + [870] = 664, + [871] = 662, + [872] = 644, + [873] = 637, + [874] = 874, + [875] = 635, + [876] = 633, + [877] = 655, + [878] = 624, + [879] = 629, + [880] = 628, + [881] = 632, + [882] = 641, + [883] = 647, + [884] = 642, + [885] = 646, + [886] = 626, + [887] = 636, + [888] = 888, + [889] = 888, + [890] = 888, + [891] = 888, + [892] = 892, + [893] = 892, + [894] = 892, + [895] = 892, + [896] = 896, [897] = 897, - [898] = 898, - [899] = 899, - [900] = 899, - [901] = 899, - [902] = 899, - [903] = 903, - [904] = 897, - [905] = 897, - [906] = 903, - [907] = 903, - [908] = 903, - [909] = 899, - [910] = 899, - [911] = 899, - [912] = 899, - [913] = 897, - [914] = 914, - [915] = 915, - [916] = 897, - [917] = 899, - [918] = 899, - [919] = 899, - [920] = 899, - [921] = 899, - [922] = 903, - [923] = 923, + [898] = 896, + [899] = 897, + [900] = 896, + [901] = 897, + [902] = 896, + [903] = 897, + [904] = 904, + [905] = 904, + [906] = 904, + [907] = 904, + [908] = 908, + [909] = 909, + [910] = 908, + [911] = 909, + [912] = 908, + [913] = 909, + [914] = 909, + [915] = 908, + [916] = 916, + [917] = 916, + [918] = 916, + [919] = 916, + [920] = 920, + [921] = 920, + [922] = 920, + [923] = 920, [924] = 924, - [925] = 924, + [925] = 920, [926] = 926, - [927] = 926, - [928] = 928, - [929] = 928, - [930] = 928, - [931] = 926, - [932] = 926, - [933] = 928, + [927] = 924, + [928] = 920, + [929] = 920, + [930] = 930, + [931] = 931, + [932] = 930, + [933] = 931, [934] = 934, [935] = 934, - [936] = 934, - [937] = 937, - [938] = 937, - [939] = 939, - [940] = 940, - [941] = 937, - [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 945, - [947] = 940, - [948] = 937, - [949] = 940, - [950] = 943, - [951] = 940, - [952] = 940, - [953] = 939, - [954] = 937, - [955] = 955, - [956] = 944, - [957] = 945, - [958] = 940, - [959] = 943, - [960] = 945, - [961] = 939, - [962] = 937, - [963] = 943, - [964] = 943, - [965] = 945, - [966] = 939, - [967] = 945, - [968] = 939, - [969] = 939, - [970] = 970, - [971] = 971, - [972] = 972, + [936] = 936, + [937] = 934, + [938] = 934, + [939] = 934, + [940] = 931, + [941] = 926, + [942] = 934, + [943] = 931, + [944] = 934, + [945] = 931, + [946] = 946, + [947] = 946, + [948] = 946, + [949] = 946, + [950] = 946, + [951] = 946, + [952] = 931, + [953] = 946, + [954] = 954, + [955] = 931, + [956] = 931, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 960, + [961] = 960, + [962] = 931, + [963] = 931, + [964] = 960, + [965] = 960, + [966] = 966, + [967] = 960, + [968] = 960, + [969] = 960, + [970] = 924, + [971] = 960, + [972] = 959, [973] = 973, - [974] = 974, - [975] = 975, - [976] = 976, - [977] = 977, - [978] = 978, - [979] = 979, - [980] = 980, - [981] = 981, - [982] = 982, - [983] = 983, - [984] = 976, - [985] = 977, - [986] = 980, + [974] = 931, + [975] = 973, + [976] = 931, + [977] = 931, + [978] = 973, + [979] = 973, + [980] = 973, + [981] = 359, + [982] = 931, + [983] = 353, + [984] = 973, + [985] = 973, + [986] = 973, [987] = 987, - [988] = 975, - [989] = 973, - [990] = 990, - [991] = 991, - [992] = 992, + [988] = 359, + [989] = 931, + [990] = 987, + [991] = 341, + [992] = 931, [993] = 987, - [994] = 992, - [995] = 981, - [996] = 979, - [997] = 982, - [998] = 976, - [999] = 990, - [1000] = 981, - [1001] = 991, - [1002] = 990, - [1003] = 1003, - [1004] = 1004, - [1005] = 991, - [1006] = 1006, - [1007] = 977, - [1008] = 1008, - [1009] = 1009, - [1010] = 982, - [1011] = 981, - [1012] = 1012, + [994] = 342, + [995] = 931, + [996] = 996, + [997] = 987, + [998] = 987, + [999] = 954, + [1000] = 359, + [1001] = 353, + [1002] = 353, + [1003] = 987, + [1004] = 350, + [1005] = 352, + [1006] = 959, + [1007] = 987, + [1008] = 987, + [1009] = 987, + [1010] = 350, + [1011] = 1011, + [1012] = 353, [1013] = 1013, - [1014] = 1004, - [1015] = 1015, - [1016] = 980, - [1017] = 977, - [1018] = 976, - [1019] = 980, - [1020] = 1020, - [1021] = 1021, - [1022] = 971, - [1023] = 973, - [1024] = 1003, - [1025] = 975, - [1026] = 974, - [1027] = 1020, - [1028] = 980, - [1029] = 992, + [1014] = 353, + [1015] = 350, + [1016] = 352, + [1017] = 959, + [1018] = 359, + [1019] = 359, + [1020] = 363, + [1021] = 346, + [1022] = 1022, + [1023] = 352, + [1024] = 1024, + [1025] = 996, + [1026] = 356, + [1027] = 1027, + [1028] = 350, + [1029] = 353, [1030] = 1030, - [1031] = 981, - [1032] = 975, - [1033] = 977, - [1034] = 982, - [1035] = 982, - [1036] = 1003, - [1037] = 987, - [1038] = 1020, - [1039] = 1004, - [1040] = 978, - [1041] = 971, - [1042] = 1020, - [1043] = 1043, + [1031] = 352, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 344, + [1037] = 1013, + [1038] = 359, + [1039] = 1039, + [1040] = 358, + [1041] = 1041, + [1042] = 342, + [1043] = 341, [1044] = 1044, - [1045] = 1045, - [1046] = 1020, - [1047] = 981, - [1048] = 973, - [1049] = 972, - [1050] = 978, + [1045] = 359, + [1046] = 1046, + [1047] = 1047, + [1048] = 353, + [1049] = 1049, + [1050] = 350, [1051] = 1051, - [1052] = 987, - [1053] = 1004, - [1054] = 1003, - [1055] = 1006, - [1056] = 1021, - [1057] = 974, - [1058] = 979, - [1059] = 980, - [1060] = 992, - [1061] = 975, - [1062] = 982, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 1056, + [1057] = 1057, + [1058] = 1058, + [1059] = 1059, + [1060] = 1060, + [1061] = 1061, + [1062] = 1062, [1063] = 1063, [1064] = 1064, - [1065] = 977, + [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 1004, - [1069] = 1003, - [1070] = 976, - [1071] = 1051, - [1072] = 973, - [1073] = 975, + [1068] = 1068, + [1069] = 1069, + [1070] = 1070, + [1071] = 1071, + [1072] = 1072, + [1073] = 1073, [1074] = 1074, - [1075] = 976, + [1075] = 1075, [1076] = 1076, - [1077] = 1020, - [1078] = 1074, - [1079] = 1051, + [1077] = 1077, + [1078] = 1078, + [1079] = 1079, [1080] = 1080, - [1081] = 979, - [1082] = 1006, - [1083] = 978, - [1084] = 990, - [1085] = 979, - [1086] = 991, - [1087] = 1006, - [1088] = 1006, - [1089] = 1006, - [1090] = 979, - [1091] = 987, - [1092] = 992, - [1093] = 978, - [1094] = 991, - [1095] = 1004, - [1096] = 1015, - [1097] = 991, - [1098] = 990, - [1099] = 990, - [1100] = 1009, - [1101] = 973, - [1102] = 987, - [1103] = 978, - [1104] = 992, - [1105] = 1003, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, + [1084] = 1084, + [1085] = 1085, + [1086] = 1086, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, + [1102] = 1102, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, [1106] = 1106, - [1107] = 1074, - [1108] = 1074, - [1109] = 1074, - [1110] = 1110, + [1107] = 1107, + [1108] = 1108, + [1109] = 1109, + [1110] = 359, [1111] = 1111, [1112] = 1112, - [1113] = 1106, - [1114] = 1112, - [1115] = 1112, - [1116] = 1074, - [1117] = 955, - [1118] = 1106, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 341, + [1118] = 1118, [1119] = 1119, [1120] = 1120, - [1121] = 1121, - [1122] = 1119, - [1123] = 1074, - [1124] = 1119, - [1125] = 1119, - [1126] = 1074, - [1127] = 1127, + [1121] = 1011, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 350, + [1126] = 1126, + [1127] = 352, [1128] = 1128, [1129] = 1129, - [1130] = 1130, + [1130] = 352, [1131] = 1131, - [1132] = 1132, - [1133] = 1133, + [1132] = 350, + [1133] = 353, [1134] = 1134, - [1135] = 1135, + [1135] = 353, [1136] = 1136, - [1137] = 1134, + [1137] = 1137, [1138] = 1138, - [1139] = 1139, - [1140] = 1140, - [1141] = 1141, - [1142] = 1142, - [1143] = 1074, - [1144] = 944, - [1145] = 1145, - [1146] = 1074, - [1147] = 1132, - [1148] = 1148, - [1149] = 1132, - [1150] = 1150, - [1151] = 1074, - [1152] = 1132, - [1153] = 1074, - [1154] = 1154, - [1155] = 1134, - [1156] = 1156, - [1157] = 1148, - [1158] = 1148, - [1159] = 1134, - [1160] = 1160, - [1161] = 1148, + [1139] = 352, + [1140] = 1022, + [1141] = 1049, + [1142] = 1046, + [1143] = 353, + [1144] = 344, + [1145] = 996, + [1146] = 1146, + [1147] = 363, + [1148] = 346, + [1149] = 353, + [1150] = 359, + [1151] = 342, + [1152] = 1152, + [1153] = 359, + [1154] = 1030, + [1155] = 359, + [1156] = 346, + [1157] = 1034, + [1158] = 1035, + [1159] = 354, + [1160] = 355, + [1161] = 363, [1162] = 1162, - [1163] = 1074, - [1164] = 861, - [1165] = 1074, - [1166] = 863, - [1167] = 1074, + [1163] = 1163, + [1164] = 1039, + [1165] = 1165, + [1166] = 358, + [1167] = 1167, [1168] = 1168, - [1169] = 1111, - [1170] = 1074, - [1171] = 1171, - [1172] = 1172, - [1173] = 1074, - [1174] = 1074, - [1175] = 1172, - [1176] = 1176, - [1177] = 1171, + [1169] = 1169, + [1170] = 1041, + [1171] = 1027, + [1172] = 1032, + [1173] = 1033, + [1174] = 1044, + [1175] = 1047, + [1176] = 361, + [1177] = 1177, [1178] = 1178, [1179] = 1179, - [1180] = 1180, - [1181] = 1178, - [1182] = 1179, + [1180] = 356, + [1181] = 1181, + [1182] = 1182, [1183] = 1183, - [1184] = 1172, + [1184] = 1184, [1185] = 1185, - [1186] = 1178, - [1187] = 1176, - [1188] = 1178, - [1189] = 1183, - [1190] = 1178, - [1191] = 1074, - [1192] = 1172, - [1193] = 1171, + [1186] = 1186, + [1187] = 1187, + [1188] = 1188, + [1189] = 1189, + [1190] = 1190, + [1191] = 352, + [1192] = 1192, + [1193] = 1193, [1194] = 1194, - [1195] = 1178, + [1195] = 1195, [1196] = 1196, - [1197] = 1172, - [1198] = 1178, - [1199] = 1176, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, [1200] = 1200, [1201] = 1201, [1202] = 1202, [1203] = 1203, [1204] = 1204, [1205] = 1205, - [1206] = 1200, - [1207] = 1176, + [1206] = 1206, + [1207] = 1207, [1208] = 1208, - [1209] = 1172, + [1209] = 1209, [1210] = 1210, - [1211] = 1172, - [1212] = 1185, - [1213] = 1185, - [1214] = 1194, - [1215] = 1172, - [1216] = 1210, - [1217] = 1194, - [1218] = 1202, - [1219] = 1203, - [1220] = 1208, - [1221] = 1176, - [1222] = 1204, - [1223] = 1200, - [1224] = 1201, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, + [1216] = 1216, + [1217] = 1217, + [1218] = 1218, + [1219] = 1219, + [1220] = 1024, + [1221] = 1221, + [1222] = 1222, + [1223] = 1223, + [1224] = 350, [1225] = 1225, - [1226] = 1203, - [1227] = 1172, - [1228] = 1225, - [1229] = 1176, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, [1230] = 1230, [1231] = 1231, - [1232] = 1172, - [1233] = 1185, - [1234] = 1138, + [1232] = 362, + [1233] = 1233, + [1234] = 1234, [1235] = 1235, - [1236] = 1235, - [1237] = 1230, + [1236] = 1236, + [1237] = 1237, [1238] = 1238, - [1239] = 1180, - [1240] = 1176, + [1239] = 1239, + [1240] = 1240, [1241] = 1241, - [1242] = 1230, + [1242] = 1242, [1243] = 1243, - [1244] = 1225, + [1244] = 1244, [1245] = 1245, - [1246] = 1172, + [1246] = 1246, [1247] = 1247, - [1248] = 1194, - [1249] = 1231, - [1250] = 1231, - [1251] = 1225, - [1252] = 1176, - [1253] = 1231, - [1254] = 1243, - [1255] = 1241, - [1256] = 1225, - [1257] = 863, - [1258] = 1241, - [1259] = 1230, - [1260] = 1176, - [1261] = 1243, - [1262] = 1231, - [1263] = 1135, - [1264] = 861, - [1265] = 1131, - [1266] = 1210, - [1267] = 1172, - [1268] = 1231, - [1269] = 1185, - [1270] = 1203, - [1271] = 1225, - [1272] = 1225, - [1273] = 1129, - [1274] = 1140, - [1275] = 1145, - [1276] = 1168, - [1277] = 1168, - [1278] = 1210, - [1279] = 1203, - [1280] = 1142, - [1281] = 1230, - [1282] = 1231, - [1283] = 1230, - [1284] = 1210, - [1285] = 1285, - [1286] = 1203, - [1287] = 1210, - [1288] = 1230, - [1289] = 1185, - [1290] = 1172, - [1291] = 1185, - [1292] = 1168, - [1293] = 1293, - [1294] = 1172, - [1295] = 1295, - [1296] = 1295, - [1297] = 1210, - [1298] = 1298, - [1299] = 1299, - [1300] = 1210, - [1301] = 1196, - [1302] = 1205, - [1303] = 1168, - [1304] = 1203, - [1305] = 1185, - [1306] = 1185, - [1307] = 1176, - [1308] = 1295, - [1309] = 1203, - [1310] = 1203, + [1248] = 1248, + [1249] = 1249, + [1250] = 1250, + [1251] = 1251, + [1252] = 1252, + [1253] = 359, + [1254] = 1246, + [1255] = 1066, + [1256] = 1067, + [1257] = 1068, + [1258] = 1080, + [1259] = 1074, + [1260] = 1059, + [1261] = 1060, + [1262] = 352, + [1263] = 1061, + [1264] = 1099, + [1265] = 1090, + [1266] = 363, + [1267] = 1039, + [1268] = 1062, + [1269] = 1034, + [1270] = 350, + [1271] = 1075, + [1272] = 1076, + [1273] = 362, + [1274] = 1077, + [1275] = 1079, + [1276] = 1057, + [1277] = 1063, + [1278] = 1064, + [1279] = 1222, + [1280] = 1041, + [1281] = 1054, + [1282] = 1082, + [1283] = 1152, + [1284] = 1083, + [1285] = 1087, + [1286] = 344, + [1287] = 1103, + [1288] = 354, + [1289] = 1052, + [1290] = 1102, + [1291] = 358, + [1292] = 353, + [1293] = 352, + [1294] = 1108, + [1295] = 355, + [1296] = 1122, + [1297] = 1093, + [1298] = 359, + [1299] = 1094, + [1300] = 1128, + [1301] = 1109, + [1302] = 1134, + [1303] = 1112, + [1304] = 1187, + [1305] = 352, + [1306] = 1095, + [1307] = 1096, + [1308] = 1113, + [1309] = 1100, + [1310] = 1227, [1311] = 1311, - [1312] = 1312, - [1313] = 1185, - [1314] = 1311, - [1315] = 1315, - [1316] = 1316, - [1317] = 1317, - [1318] = 1210, - [1319] = 1311, - [1320] = 1311, - [1321] = 1203, - [1322] = 1322, - [1323] = 1168, - [1324] = 1311, - [1325] = 1183, - [1326] = 1311, - [1327] = 1179, - [1328] = 1311, - [1329] = 1210, - [1330] = 1203, - [1331] = 1285, - [1332] = 1210, - [1333] = 1210, - [1334] = 1210, - [1335] = 1168, - [1336] = 1247, - [1337] = 1203, - [1338] = 1210, - [1339] = 1201, - [1340] = 1210, - [1341] = 1203, - [1342] = 1203, - [1343] = 1203, - [1344] = 1203, - [1345] = 1210, - [1346] = 1168, - [1347] = 1347, - [1348] = 1347, - [1349] = 1347, - [1350] = 1347, - [1351] = 1210, - [1352] = 1168, - [1353] = 1293, - [1354] = 1347, - [1355] = 1203, - [1356] = 1347, - [1357] = 1347, - [1358] = 1168, - [1359] = 1359, - [1360] = 1360, - [1361] = 1361, - [1362] = 1360, - [1363] = 1359, - [1364] = 1364, - [1365] = 1365, - [1366] = 1365, - [1367] = 1367, - [1368] = 1368, - [1369] = 1365, - [1370] = 1368, - [1371] = 1371, - [1372] = 1368, - [1373] = 1368, - [1374] = 1368, - [1375] = 1368, - [1376] = 1365, - [1377] = 1367, - [1378] = 1367, - [1379] = 1371, - [1380] = 1365, - [1381] = 1367, - [1382] = 1368, - [1383] = 1367, - [1384] = 1384, - [1385] = 1367, - [1386] = 1367, - [1387] = 1368, - [1388] = 1365, - [1389] = 1367, - [1390] = 1390, - [1391] = 1390, - [1392] = 1390, - [1393] = 1390, - [1394] = 1390, - [1395] = 1390, - [1396] = 1396, - [1397] = 1397, - [1398] = 1398, - [1399] = 180, - [1400] = 1396, - [1401] = 1401, - [1402] = 174, - [1403] = 1403, - [1404] = 1396, - [1405] = 1396, - [1406] = 1396, - [1407] = 1401, - [1408] = 1396, - [1409] = 1401, - [1410] = 1401, - [1411] = 1401, - [1412] = 1412, - [1413] = 1401, - [1414] = 1414, - [1415] = 178, - [1416] = 1416, - [1417] = 1417, - [1418] = 1416, - [1419] = 184, - [1420] = 1416, - [1421] = 1416, - [1422] = 185, - [1423] = 164, - [1424] = 1416, - [1425] = 178, - [1426] = 164, - [1427] = 1427, - [1428] = 1428, - [1429] = 1416, - [1430] = 1430, - [1431] = 1431, - [1432] = 1432, - [1433] = 174, - [1434] = 1434, - [1435] = 1435, - [1436] = 180, - [1437] = 1430, - [1438] = 1438, - [1439] = 1439, - [1440] = 1440, - [1441] = 1441, - [1442] = 1442, - [1443] = 1438, - [1444] = 1430, - [1445] = 1445, - [1446] = 1430, - [1447] = 1447, - [1448] = 1448, - [1449] = 1430, - [1450] = 1450, - [1451] = 154, - [1452] = 1430, - [1453] = 153, - [1454] = 1454, - [1455] = 1455, - [1456] = 151, - [1457] = 1457, - [1458] = 1430, - [1459] = 184, - [1460] = 1460, - [1461] = 185, - [1462] = 1462, - [1463] = 1463, - [1464] = 615, - [1465] = 1465, - [1466] = 1466, - [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 1470, - [1471] = 1471, - [1472] = 1465, - [1473] = 1465, - [1474] = 1465, - [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 1469, - [1479] = 1479, - [1480] = 898, - [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1488, - [1489] = 1484, - [1490] = 614, - [1491] = 1485, - [1492] = 1492, - [1493] = 1493, - [1494] = 1494, - [1495] = 1469, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 1500, - [1501] = 914, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1507, - [1508] = 1508, - [1509] = 1509, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 1513, - [1514] = 163, - [1515] = 1515, - [1516] = 1516, - [1517] = 1517, - [1518] = 1518, - [1519] = 1519, - [1520] = 1520, - [1521] = 1521, - [1522] = 1522, - [1523] = 1141, - [1524] = 1524, - [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 915, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, - [1532] = 1532, - [1533] = 613, - [1534] = 1534, - [1535] = 1535, - [1536] = 153, - [1537] = 151, - [1538] = 1538, - [1539] = 1539, - [1540] = 1540, - [1541] = 1541, - [1542] = 1542, - [1543] = 1543, - [1544] = 1544, - [1545] = 1484, - [1546] = 1546, - [1547] = 1484, - [1548] = 1548, - [1549] = 1549, - [1550] = 1550, - [1551] = 1485, - [1552] = 1552, - [1553] = 1553, - [1554] = 1554, - [1555] = 1555, - [1556] = 1556, - [1557] = 1557, - [1558] = 1558, - [1559] = 1559, - [1560] = 1560, - [1561] = 1561, - [1562] = 1562, - [1563] = 1469, - [1564] = 1469, - [1565] = 1565, - [1566] = 1485, - [1567] = 1567, - [1568] = 1568, - [1569] = 1469, - [1570] = 1570, - [1571] = 1571, - [1572] = 1465, - [1573] = 1465, - [1574] = 1574, - [1575] = 1575, - [1576] = 1576, - [1577] = 617, - [1578] = 1578, - [1579] = 1579, - [1580] = 1580, - [1581] = 1485, - [1582] = 1582, - [1583] = 1484, - [1584] = 1584, - [1585] = 1585, - [1586] = 1586, - [1587] = 1587, - [1588] = 1588, - [1589] = 1465, - [1590] = 1590, - [1591] = 1591, - [1592] = 1592, - [1593] = 1593, - [1594] = 1594, - [1595] = 1595, - [1596] = 1596, - [1597] = 1597, - [1598] = 1598, - [1599] = 1578, - [1600] = 1600, - [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] = 1615, - [1616] = 1616, - [1617] = 1617, - [1618] = 1618, - [1619] = 1619, - [1620] = 1620, - [1621] = 1621, - [1622] = 1622, - [1623] = 1484, - [1624] = 1624, - [1625] = 1625, - [1626] = 1485, - [1627] = 1471, - [1628] = 164, - [1629] = 178, - [1630] = 612, - [1631] = 1631, - [1632] = 1632, - [1633] = 1633, - [1634] = 1469, - [1635] = 1635, - [1636] = 1636, - [1637] = 1130, - [1638] = 1638, - [1639] = 1549, - [1640] = 1154, - [1641] = 1641, - [1642] = 1579, - [1643] = 1643, - [1644] = 1644, - [1645] = 1645, - [1646] = 1590, - [1647] = 1612, - [1648] = 1648, - [1649] = 1649, - [1650] = 1610, - [1651] = 1609, - [1652] = 1652, - [1653] = 184, - [1654] = 1608, - [1655] = 1585, - [1656] = 1656, - [1657] = 185, - [1658] = 1607, - [1659] = 1616, - [1660] = 1606, - [1661] = 1661, - [1662] = 1652, - [1663] = 176, - [1664] = 1586, - [1665] = 176, - [1666] = 1666, - [1667] = 1667, - [1668] = 1668, - [1669] = 1669, - [1670] = 1670, - [1671] = 185, - [1672] = 1672, - [1673] = 1605, - [1674] = 171, - [1675] = 1618, - [1676] = 1600, - [1677] = 1677, - [1678] = 1619, - [1679] = 1620, - [1680] = 184, - [1681] = 1681, - [1682] = 1617, - [1683] = 1614, - [1684] = 163, - [1685] = 1685, - [1686] = 1686, - [1687] = 1595, - [1688] = 1593, - [1689] = 1689, - [1690] = 1690, - [1691] = 1691, - [1692] = 1692, - [1693] = 1511, - [1694] = 1621, - [1695] = 162, - [1696] = 1696, - [1697] = 1697, - [1698] = 1698, - [1699] = 1699, - [1700] = 1700, - [1701] = 1701, - [1702] = 1702, - [1703] = 1703, - [1704] = 1517, - [1705] = 1705, - [1706] = 1706, - [1707] = 1707, - [1708] = 1592, - [1709] = 1709, - [1710] = 1710, - [1711] = 1711, - [1712] = 1590, - [1713] = 1713, - [1714] = 1714, - [1715] = 1715, - [1716] = 1648, - [1717] = 1717, - [1718] = 1718, - [1719] = 1621, - [1720] = 1720, - [1721] = 1721, - [1722] = 1527, - [1723] = 1723, - [1724] = 1724, - [1725] = 1613, - [1726] = 1726, - [1727] = 188, - [1728] = 188, - [1729] = 1729, - [1730] = 1730, - [1731] = 1718, - [1732] = 171, - [1733] = 1733, - [1734] = 1734, - [1735] = 1735, - [1736] = 1736, - [1737] = 1670, - [1738] = 1738, - [1739] = 162, - [1740] = 1740, - [1741] = 1741, - [1742] = 1742, - [1743] = 1743, - [1744] = 1744, - [1745] = 1745, - [1746] = 1746, - [1747] = 1747, - [1748] = 1748, - [1749] = 1749, - [1750] = 1721, - [1751] = 1751, - [1752] = 1752, - [1753] = 1753, - [1754] = 1754, - [1755] = 1723, - [1756] = 1620, - [1757] = 1619, - [1758] = 1670, - [1759] = 1759, - [1760] = 1670, - [1761] = 1618, - [1762] = 1649, - [1763] = 1763, - [1764] = 1764, - [1765] = 1765, - [1766] = 1670, - [1767] = 1767, - [1768] = 1768, - [1769] = 1769, - [1770] = 1770, - [1771] = 1670, - [1772] = 1645, - [1773] = 1588, - [1774] = 1774, - [1775] = 1775, - [1776] = 1776, - [1777] = 1721, - [1778] = 1724, - [1779] = 1779, - [1780] = 1428, - [1781] = 1582, - [1782] = 1782, - [1783] = 1580, - [1784] = 1784, - [1785] = 1670, - [1786] = 1582, - [1787] = 1580, - [1788] = 1788, - [1789] = 1789, - [1790] = 1585, - [1791] = 1586, - [1792] = 1511, - [1793] = 1793, - [1794] = 1517, - [1795] = 1721, - [1796] = 1527, - [1797] = 164, - [1798] = 1427, - [1799] = 178, - [1800] = 1800, - [1801] = 1617, - [1802] = 1616, - [1803] = 1614, - [1804] = 1588, - [1805] = 1613, - [1806] = 1612, - [1807] = 1610, - [1808] = 1609, - [1809] = 1608, - [1810] = 1607, - [1811] = 1606, - [1812] = 1605, - [1813] = 1600, - [1814] = 1814, - [1815] = 1815, - [1816] = 1595, - [1817] = 1593, - [1818] = 1592, + [1312] = 1114, + [1313] = 1115, + [1314] = 1105, + [1315] = 1053, + [1316] = 1116, + [1317] = 1111, + [1318] = 1044, + [1319] = 1055, + [1320] = 1229, + [1321] = 1120, + [1322] = 1011, + [1323] = 1188, + [1324] = 1136, + [1325] = 1137, + [1326] = 1138, + [1327] = 1022, + [1328] = 1049, + [1329] = 1046, + [1330] = 1030, + [1331] = 1047, + [1332] = 1162, + [1333] = 1163, + [1334] = 1165, + [1335] = 1167, + [1336] = 1168, + [1337] = 1169, + [1338] = 1027, + [1339] = 1032, + [1340] = 1033, + [1341] = 350, + [1342] = 363, + [1343] = 346, + [1344] = 1178, + [1345] = 1179, + [1346] = 353, + [1347] = 1194, + [1348] = 1195, + [1349] = 1196, + [1350] = 1197, + [1351] = 1198, + [1352] = 1199, + [1353] = 1200, + [1354] = 1201, + [1355] = 1202, + [1356] = 1203, + [1357] = 1204, + [1358] = 361, + [1359] = 1106, + [1360] = 359, + [1361] = 1013, + [1362] = 1205, + [1363] = 1206, + [1364] = 1207, + [1365] = 1208, + [1366] = 1209, + [1367] = 1210, + [1368] = 1211, + [1369] = 1212, + [1370] = 1213, + [1371] = 1177, + [1372] = 1214, + [1373] = 1215, + [1374] = 1216, + [1375] = 996, + [1376] = 350, + [1377] = 1056, + [1378] = 1181, + [1379] = 1217, + [1380] = 1218, + [1381] = 1219, + [1382] = 1182, + [1383] = 1183, + [1384] = 1118, + [1385] = 1184, + [1386] = 1024, + [1387] = 1185, + [1388] = 1186, + [1389] = 1146, + [1390] = 1123, + [1391] = 1107, + [1392] = 352, + [1393] = 1124, + [1394] = 1084, + [1395] = 1221, + [1396] = 1223, + [1397] = 1131, + [1398] = 1225, + [1399] = 1226, + [1400] = 1129, + [1401] = 350, + [1402] = 1104, + [1403] = 1101, + [1404] = 1228, + [1405] = 1230, + [1406] = 1231, + [1407] = 1189, + [1408] = 1233, + [1409] = 1190, + [1410] = 1192, + [1411] = 1193, + [1412] = 1234, + [1413] = 1235, + [1414] = 1236, + [1415] = 1237, + [1416] = 1058, + [1417] = 1051, + [1418] = 1126, + [1419] = 356, + [1420] = 1238, + [1421] = 1239, + [1422] = 1240, + [1423] = 1252, + [1424] = 346, + [1425] = 1069, + [1426] = 1070, + [1427] = 1251, + [1428] = 1071, + [1429] = 1072, + [1430] = 1250, + [1431] = 1249, + [1432] = 341, + [1433] = 342, + [1434] = 1248, + [1435] = 1073, + [1436] = 1013, + [1437] = 1078, + [1438] = 1081, + [1439] = 1085, + [1440] = 1065, + [1441] = 1086, + [1442] = 353, + [1443] = 1241, + [1444] = 1089, + [1445] = 1091, + [1446] = 1088, + [1447] = 1242, + [1448] = 1098, + [1449] = 1243, + [1450] = 1244, + [1451] = 1245, + [1452] = 1035, + [1453] = 1247, + [1454] = 1119, + [1455] = 1092, + [1456] = 1097, + [1457] = 1162, + [1458] = 1079, + [1459] = 359, + [1460] = 1097, + [1461] = 1092, + [1462] = 1088, + [1463] = 363, + [1464] = 350, + [1465] = 362, + [1466] = 354, + [1467] = 1047, + [1468] = 1082, + [1469] = 346, + [1470] = 1044, + [1471] = 1041, + [1472] = 1039, + [1473] = 1083, + [1474] = 1075, + [1475] = 1027, + [1476] = 1066, + [1477] = 1065, + [1478] = 1032, + [1479] = 1064, + [1480] = 1033, + [1481] = 355, + [1482] = 1063, + [1483] = 358, + [1484] = 1035, + [1485] = 356, + [1486] = 1062, + [1487] = 1061, + [1488] = 1060, + [1489] = 1129, + [1490] = 1034, + [1491] = 1074, + [1492] = 1024, + [1493] = 1095, + [1494] = 1096, + [1495] = 363, + [1496] = 359, + [1497] = 1030, + [1498] = 1090, + [1499] = 1222, + [1500] = 1229, + [1501] = 1111, + [1502] = 1069, + [1503] = 1105, + [1504] = 1188, + [1505] = 1187, + [1506] = 1100, + [1507] = 1058, + [1508] = 1108, + [1509] = 1070, + [1510] = 1071, + [1511] = 1072, + [1512] = 1073, + [1513] = 1078, + [1514] = 1120, + [1515] = 1107, + [1516] = 350, + [1517] = 1081, + [1518] = 1085, + [1519] = 1086, + [1520] = 352, + [1521] = 1089, + [1522] = 1091, + [1523] = 1119, + [1524] = 346, + [1525] = 1177, + [1526] = 352, + [1527] = 352, + [1528] = 1099, + [1529] = 1181, + [1530] = 350, + [1531] = 1136, + [1532] = 1137, + [1533] = 1138, + [1534] = 1101, + [1535] = 1182, + [1536] = 1104, + [1537] = 1183, + [1538] = 1106, + [1539] = 1094, + [1540] = 1109, + [1541] = 1113, + [1542] = 1114, + [1543] = 1115, + [1544] = 1116, + [1545] = 1093, + [1546] = 1080, + [1547] = 1118, + [1548] = 1146, + [1549] = 1123, + [1550] = 1124, + [1551] = 361, + [1552] = 1126, + [1553] = 1203, + [1554] = 344, + [1555] = 1059, + [1556] = 1165, + [1557] = 1167, + [1558] = 1168, + [1559] = 1169, + [1560] = 1131, + [1561] = 1227, + [1562] = 1184, + [1563] = 1178, + [1564] = 1179, + [1565] = 1056, + [1566] = 1112, + [1567] = 1134, + [1568] = 1128, + [1569] = 1122, + [1570] = 353, + [1571] = 1102, + [1572] = 1103, + [1573] = 1152, + [1574] = 1185, + [1575] = 1054, + [1576] = 1011, + [1577] = 1194, + [1578] = 1195, + [1579] = 1196, + [1580] = 1197, + [1581] = 1198, + [1582] = 1199, + [1583] = 1200, + [1584] = 1201, + [1585] = 1202, + [1586] = 353, + [1587] = 1204, + [1588] = 1205, + [1589] = 1206, + [1590] = 1207, + [1591] = 1208, + [1592] = 1209, + [1593] = 1210, + [1594] = 1211, + [1595] = 1212, + [1596] = 1213, + [1597] = 1214, + [1598] = 1057, + [1599] = 1052, + [1600] = 1215, + [1601] = 1216, + [1602] = 1217, + [1603] = 1218, + [1604] = 1219, + [1605] = 1067, + [1606] = 1068, + [1607] = 1098, + [1608] = 1084, + [1609] = 1186, + [1610] = 1046, + [1611] = 1221, + [1612] = 1223, + [1613] = 1053, + [1614] = 1225, + [1615] = 1226, + [1616] = 1049, + [1617] = 1076, + [1618] = 1077, + [1619] = 1163, + [1620] = 1228, + [1621] = 1230, + [1622] = 1231, + [1623] = 1233, + [1624] = 1234, + [1625] = 1235, + [1626] = 1236, + [1627] = 1237, + [1628] = 1238, + [1629] = 1239, + [1630] = 1240, + [1631] = 1241, + [1632] = 1242, + [1633] = 1243, + [1634] = 1244, + [1635] = 1245, + [1636] = 1246, + [1637] = 1247, + [1638] = 1248, + [1639] = 1249, + [1640] = 1250, + [1641] = 1251, + [1642] = 1252, + [1643] = 1051, + [1644] = 1193, + [1645] = 1055, + [1646] = 1192, + [1647] = 1190, + [1648] = 1189, + [1649] = 1087, + [1650] = 1022, + [1651] = 1197, + [1652] = 1058, + [1653] = 1242, + [1654] = 1243, + [1655] = 1090, + [1656] = 1245, + [1657] = 1085, + [1658] = 1119, + [1659] = 1074, + [1660] = 346, + [1661] = 363, + [1662] = 1080, + [1663] = 1098, + [1664] = 1086, + [1665] = 1240, + [1666] = 1084, + [1667] = 1092, + [1668] = 1239, + [1669] = 1238, + [1670] = 1237, + [1671] = 1088, + [1672] = 1236, + [1673] = 1096, + [1674] = 1198, + [1675] = 355, + [1676] = 1089, + [1677] = 1246, + [1678] = 354, + [1679] = 1247, + [1680] = 1081, + [1681] = 1137, + [1682] = 1138, + [1683] = 1101, + [1684] = 1097, + [1685] = 1083, + [1686] = 1248, + [1687] = 1249, + [1688] = 1099, + [1689] = 1091, + [1690] = 1076, + [1691] = 1136, + [1692] = 1120, + [1693] = 1078, + [1694] = 1073, + [1695] = 1072, + [1696] = 1071, + [1697] = 1070, + [1698] = 1111, + [1699] = 1228, + [1700] = 1075, + [1701] = 1069, + [1702] = 1229, + [1703] = 1188, + [1704] = 1187, + [1705] = 1241, + [1706] = 1250, + [1707] = 1230, + [1708] = 1231, + [1709] = 1189, + [1710] = 1100, + [1711] = 1234, + [1712] = 1311, + [1713] = 1105, + [1714] = 1222, + [1715] = 1251, + [1716] = 1066, + [1717] = 1082, + [1718] = 1252, + [1719] = 1131, + [1720] = 1065, + [1721] = 1169, + [1722] = 1168, + [1723] = 1112, + [1724] = 1167, + [1725] = 1165, + [1726] = 1134, + [1727] = 1128, + [1728] = 1051, + [1729] = 361, + [1730] = 1122, + [1731] = 1193, + [1732] = 1244, + [1733] = 1102, + [1734] = 1103, + [1735] = 1129, + [1736] = 1152, + [1737] = 1163, + [1738] = 1162, + [1739] = 1054, + [1740] = 1064, + [1741] = 1194, + [1742] = 1195, + [1743] = 1196, + [1744] = 1217, + [1745] = 1199, + [1746] = 1200, + [1747] = 352, + [1748] = 1063, + [1749] = 1184, + [1750] = 1062, + [1751] = 1185, + [1752] = 1201, + [1753] = 1055, + [1754] = 1061, + [1755] = 1186, + [1756] = 362, + [1757] = 1202, + [1758] = 1203, + [1759] = 1126, + [1760] = 1079, + [1761] = 1124, + [1762] = 1204, + [1763] = 1060, + [1764] = 1059, + [1765] = 1123, + [1766] = 1146, + [1767] = 1118, + [1768] = 1233, + [1769] = 1218, + [1770] = 1087, + [1771] = 350, + [1772] = 1219, + [1773] = 1226, + [1774] = 1225, + [1775] = 1216, + [1776] = 1116, + [1777] = 1223, + [1778] = 1115, + [1779] = 1221, + [1780] = 1215, + [1781] = 1068, + [1782] = 1067, + [1783] = 1114, + [1784] = 1077, + [1785] = 1113, + [1786] = 1192, + [1787] = 1179, + [1788] = 1178, + [1789] = 1109, + [1790] = 1227, + [1791] = 1053, + [1792] = 1108, + [1793] = 1107, + [1794] = 1052, + [1795] = 1106, + [1796] = 1057, + [1797] = 1235, + [1798] = 1214, + [1799] = 1104, + [1800] = 1213, + [1801] = 1205, + [1802] = 1206, + [1803] = 1207, + [1804] = 1208, + [1805] = 1209, + [1806] = 1210, + [1807] = 1212, + [1808] = 1211, + [1809] = 1093, + [1810] = 1094, + [1811] = 1095, + [1812] = 1177, + [1813] = 1181, + [1814] = 1190, + [1815] = 1182, + [1816] = 1183, + [1817] = 1056, + [1818] = 1818, [1819] = 1819, [1820] = 1820, [1821] = 1821, @@ -6360,900 +6852,900 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1824] = 1824, [1825] = 1825, [1826] = 1826, - [1827] = 1586, - [1828] = 1585, - [1829] = 1829, - [1830] = 1580, - [1831] = 1788, - [1832] = 1832, - [1833] = 1833, - [1834] = 1520, - [1835] = 1582, - [1836] = 1588, - [1837] = 1511, - [1838] = 1590, - [1839] = 1517, - [1840] = 1819, - [1841] = 1527, - [1842] = 1592, - [1843] = 1450, - [1844] = 1448, - [1845] = 1447, - [1846] = 1593, - [1847] = 1595, - [1848] = 1833, - [1849] = 1575, - [1850] = 1439, - [1851] = 1457, - [1852] = 1852, - [1853] = 1558, - [1854] = 1822, - [1855] = 1652, - [1856] = 1600, - [1857] = 1857, - [1858] = 1574, - [1859] = 1605, - [1860] = 1445, - [1861] = 1861, - [1862] = 1649, - [1863] = 1606, - [1864] = 1607, - [1865] = 1865, - [1866] = 1866, - [1867] = 1608, - [1868] = 1609, - [1869] = 1610, - [1870] = 1612, - [1871] = 1871, - [1872] = 1613, - [1873] = 1873, - [1874] = 1874, - [1875] = 1833, - [1876] = 1614, - [1877] = 1877, - [1878] = 1441, - [1879] = 1616, - [1880] = 1617, - [1881] = 1618, - [1882] = 1619, - [1883] = 1620, - [1884] = 1852, - [1885] = 1440, - [1886] = 1820, - [1887] = 1558, + [1827] = 1827, + [1828] = 1828, + [1829] = 342, + [1830] = 344, + [1831] = 341, + [1832] = 356, + [1833] = 342, + [1834] = 333, + [1835] = 341, + [1836] = 354, + [1837] = 355, + [1838] = 344, + [1839] = 358, + [1840] = 350, + [1841] = 1841, + [1842] = 370, + [1843] = 364, + [1844] = 1841, + [1845] = 358, + [1846] = 1846, + [1847] = 1841, + [1848] = 1841, + [1849] = 360, + [1850] = 346, + [1851] = 352, + [1852] = 356, + [1853] = 1846, + [1854] = 347, + [1855] = 376, + [1856] = 366, + [1857] = 362, + [1858] = 377, + [1859] = 369, + [1860] = 348, + [1861] = 1841, + [1862] = 1846, + [1863] = 1841, + [1864] = 1841, + [1865] = 1841, + [1866] = 1846, + [1867] = 363, + [1868] = 361, + [1869] = 1841, + [1870] = 1841, + [1871] = 355, + [1872] = 333, + [1873] = 354, + [1874] = 1846, + [1875] = 371, + [1876] = 1841, + [1877] = 353, + [1878] = 1841, + [1879] = 1841, + [1880] = 359, + [1881] = 349, + [1882] = 351, + [1883] = 357, + [1884] = 1884, + [1885] = 347, + [1886] = 369, + [1887] = 1884, [1888] = 1888, - [1889] = 1648, - [1890] = 1833, - [1891] = 1873, - [1892] = 1833, - [1893] = 1788, - [1894] = 1575, - [1895] = 1895, - [1896] = 1896, - [1897] = 1621, - [1898] = 1833, - [1899] = 1833, - [1900] = 1874, - [1901] = 1901, - [1902] = 1574, - [1903] = 1588, - [1904] = 1904, - [1905] = 154, - [1906] = 1590, - [1907] = 1592, - [1908] = 1593, - [1909] = 1909, - [1910] = 1557, - [1911] = 1556, - [1912] = 1595, - [1913] = 1913, - [1914] = 1527, - [1915] = 1600, - [1916] = 1605, - [1917] = 1552, - [1918] = 1606, - [1919] = 1607, - [1920] = 1544, - [1921] = 1517, - [1922] = 1485, - [1923] = 1511, - [1924] = 1608, - [1925] = 1609, - [1926] = 1610, - [1927] = 1582, - [1928] = 1928, - [1929] = 1485, - [1930] = 1612, - [1931] = 1613, - [1932] = 1614, - [1933] = 1933, - [1934] = 1616, - [1935] = 1617, - [1936] = 1539, - [1937] = 1538, + [1889] = 362, + [1890] = 361, + [1891] = 1884, + [1892] = 1888, + [1893] = 371, + [1894] = 370, + [1895] = 363, + [1896] = 1888, + [1897] = 1888, + [1898] = 359, + [1899] = 364, + [1900] = 360, + [1901] = 1884, + [1902] = 346, + [1903] = 376, + [1904] = 366, + [1905] = 377, + [1906] = 348, + [1907] = 357, + [1908] = 349, + [1909] = 351, + [1910] = 352, + [1911] = 350, + [1912] = 1888, + [1913] = 353, + [1914] = 1884, + [1915] = 1915, + [1916] = 1916, + [1917] = 1916, + [1918] = 1916, + [1919] = 1919, + [1920] = 1920, + [1921] = 1919, + [1922] = 1922, + [1923] = 1923, + [1924] = 1922, + [1925] = 1920, + [1926] = 1926, + [1927] = 1927, + [1928] = 1926, + [1929] = 1920, + [1930] = 1926, + [1931] = 1927, + [1932] = 1927, + [1933] = 1926, + [1934] = 1920, + [1935] = 1927, + [1936] = 1919, + [1937] = 1922, [1938] = 1938, - [1939] = 1485, - [1940] = 1484, - [1941] = 1535, - [1942] = 1928, - [1943] = 1484, - [1944] = 1485, - [1945] = 1485, - [1946] = 915, - [1947] = 1815, - [1948] = 1948, - [1949] = 1567, - [1950] = 1618, - [1951] = 1661, - [1952] = 1677, - [1953] = 1558, - [1954] = 613, - [1955] = 1532, - [1956] = 1530, - [1957] = 1463, - [1958] = 1555, - [1959] = 1928, - [1960] = 1529, - [1961] = 1909, - [1962] = 1525, - [1963] = 1963, - [1964] = 1522, - [1965] = 1554, - [1966] = 1484, - [1967] = 1560, - [1968] = 1562, - [1969] = 1521, - [1970] = 1519, - [1971] = 1518, - [1972] = 1972, - [1973] = 1516, - [1974] = 1575, - [1975] = 1515, - [1976] = 1586, - [1977] = 1619, - [1978] = 1585, - [1979] = 1484, - [1980] = 1620, - [1981] = 1485, - [1982] = 1982, - [1983] = 1576, - [1984] = 1580, - [1985] = 1901, - [1986] = 1598, - [1987] = 1987, - [1988] = 914, - [1989] = 1611, - [1990] = 612, - [1991] = 1991, - [1992] = 1992, - [1993] = 1636, - [1994] = 1909, - [1995] = 1661, - [1996] = 1498, - [1997] = 1510, - [1998] = 1546, - [1999] = 1506, - [2000] = 1505, + [1939] = 1923, + [1940] = 1919, + [1941] = 1923, + [1942] = 1923, + [1943] = 1943, + [1944] = 1927, + [1945] = 1923, + [1946] = 1922, + [1947] = 1919, + [1948] = 1926, + [1949] = 1923, + [1950] = 1920, + [1951] = 1922, + [1952] = 1923, + [1953] = 1919, + [1954] = 1922, + [1955] = 1919, + [1956] = 1922, + [1957] = 1926, + [1958] = 1920, + [1959] = 1927, + [1960] = 1927, + [1961] = 1920, + [1962] = 1926, + [1963] = 1938, + [1964] = 1964, + [1965] = 1965, + [1966] = 1964, + [1967] = 1967, + [1968] = 1967, + [1969] = 1967, + [1970] = 1967, + [1971] = 1967, + [1972] = 1967, + [1973] = 1973, + [1974] = 1974, + [1975] = 1973, + [1976] = 1974, + [1977] = 1973, + [1978] = 1974, + [1979] = 1974, + [1980] = 1973, + [1981] = 1973, + [1982] = 1974, + [1983] = 1983, + [1984] = 1984, + [1985] = 1985, + [1986] = 1983, + [1987] = 1985, + [1988] = 1984, + [1989] = 1989, + [1990] = 1984, + [1991] = 1984, + [1992] = 1985, + [1993] = 1989, + [1994] = 1989, + [1995] = 1983, + [1996] = 1989, + [1997] = 1983, + [1998] = 1989, + [1999] = 1985, + [2000] = 2000, [2001] = 2001, - [2002] = 1470, - [2003] = 1462, - [2004] = 1502, - [2005] = 1561, - [2006] = 1500, - [2007] = 1496, - [2008] = 1494, - [2009] = 1484, - [2010] = 1493, - [2011] = 1492, - [2012] = 1561, + [2002] = 2002, + [2003] = 2003, + [2004] = 2002, + [2005] = 2005, + [2006] = 2006, + [2007] = 2007, + [2008] = 2008, + [2009] = 2009, + [2010] = 2010, + [2011] = 2011, + [2012] = 2001, [2013] = 2013, - [2014] = 1540, - [2015] = 1558, - [2016] = 1575, - [2017] = 1621, - [2018] = 617, - [2019] = 1512, - [2020] = 2020, - [2021] = 1901, + [2014] = 2014, + [2015] = 2011, + [2016] = 2016, + [2017] = 2013, + [2018] = 2013, + [2019] = 2006, + [2020] = 2011, + [2021] = 2009, [2022] = 2022, - [2023] = 1888, - [2024] = 1829, - [2025] = 614, - [2026] = 1584, - [2027] = 1488, - [2028] = 1487, - [2029] = 1486, - [2030] = 1483, - [2031] = 1482, - [2032] = 1481, - [2033] = 1479, - [2034] = 1477, - [2035] = 1476, - [2036] = 1633, - [2037] = 1468, - [2038] = 1467, - [2039] = 1466, - [2040] = 615, - [2041] = 1553, - [2042] = 1504, + [2023] = 2011, + [2024] = 2024, + [2025] = 2007, + [2026] = 2016, + [2027] = 2027, + [2028] = 2028, + [2029] = 2024, + [2030] = 2030, + [2031] = 2031, + [2032] = 2008, + [2033] = 2005, + [2034] = 2034, + [2035] = 2035, + [2036] = 2036, + [2037] = 2000, + [2038] = 2038, + [2039] = 2039, + [2040] = 2022, + [2041] = 2016, + [2042] = 2042, [2043] = 2043, - [2044] = 1154, - [2045] = 1507, - [2046] = 898, - [2047] = 1509, - [2048] = 1677, - [2049] = 1526, - [2050] = 1531, - [2051] = 1534, - [2052] = 1542, - [2053] = 1543, - [2054] = 2054, - [2055] = 1497, - [2056] = 2056, - [2057] = 1141, - [2058] = 1648, - [2059] = 2059, - [2060] = 1548, - [2061] = 1587, - [2062] = 1933, - [2063] = 1565, - [2064] = 1568, - [2065] = 2065, - [2066] = 154, - [2067] = 1913, - [2068] = 1829, - [2069] = 1649, - [2070] = 2070, - [2071] = 1815, - [2072] = 1888, - [2073] = 2073, - [2074] = 1591, - [2075] = 1982, - [2076] = 1130, - [2077] = 1594, - [2078] = 1652, - [2079] = 1596, - [2080] = 1484, - [2081] = 1485, - [2082] = 1484, - [2083] = 1597, - [2084] = 1602, - [2085] = 1498, - [2086] = 1559, - [2087] = 1603, - [2088] = 1558, - [2089] = 1575, - [2090] = 1615, - [2091] = 1622, - [2092] = 2092, - [2093] = 1558, - [2094] = 1625, - [2095] = 1575, - [2096] = 1631, - [2097] = 1696, - [2098] = 1612, - [2099] = 1580, - [2100] = 1759, - [2101] = 190, - [2102] = 165, - [2103] = 2103, - [2104] = 1585, - [2105] = 1661, - [2106] = 1677, - [2107] = 1740, - [2108] = 190, - [2109] = 1586, - [2110] = 1763, - [2111] = 2111, - [2112] = 2112, - [2113] = 165, - [2114] = 1703, - [2115] = 1730, - [2116] = 1711, - [2117] = 1595, - [2118] = 1733, - [2119] = 175, - [2120] = 1666, - [2121] = 169, - [2122] = 1621, - [2123] = 1705, - [2124] = 1706, - [2125] = 161, - [2126] = 1707, - [2127] = 1710, - [2128] = 186, - [2129] = 182, - [2130] = 1620, - [2131] = 2131, - [2132] = 1575, - [2133] = 1888, - [2134] = 1498, - [2135] = 1661, + [2044] = 2044, + [2045] = 2045, + [2046] = 2046, + [2047] = 2003, + [2048] = 2048, + [2049] = 2049, + [2050] = 2050, + [2051] = 2022, + [2052] = 2038, + [2053] = 2048, + [2054] = 2042, + [2055] = 2011, + [2056] = 2028, + [2057] = 2002, + [2058] = 2027, + [2059] = 2003, + [2060] = 2060, + [2061] = 2027, + [2062] = 2062, + [2063] = 2028, + [2064] = 2038, + [2065] = 2024, + [2066] = 2066, + [2067] = 2027, + [2068] = 2002, + [2069] = 2038, + [2070] = 2028, + [2071] = 2000, + [2072] = 2006, + [2073] = 2008, + [2074] = 2022, + [2075] = 2022, + [2076] = 2010, + [2077] = 2001, + [2078] = 2006, + [2079] = 2024, + [2080] = 2005, + [2081] = 2081, + [2082] = 2003, + [2083] = 2002, + [2084] = 2022, + [2085] = 2028, + [2086] = 2027, + [2087] = 2000, + [2088] = 2005, + [2089] = 2034, + [2090] = 2007, + [2091] = 2009, + [2092] = 2027, + [2093] = 2028, + [2094] = 2048, + [2095] = 2042, + [2096] = 2010, + [2097] = 2013, + [2098] = 2098, + [2099] = 2022, + [2100] = 2008, + [2101] = 2016, + [2102] = 2042, + [2103] = 2048, + [2104] = 2010, + [2105] = 2003, + [2106] = 2001, + [2107] = 2038, + [2108] = 2042, + [2109] = 2048, + [2110] = 2007, + [2111] = 2009, + [2112] = 2007, + [2113] = 2113, + [2114] = 2009, + [2115] = 2115, + [2116] = 2116, + [2117] = 2006, + [2118] = 2024, + [2119] = 2031, + [2120] = 2005, + [2121] = 2027, + [2122] = 2028, + [2123] = 2022, + [2124] = 2008, + [2125] = 2010, + [2126] = 2000, + [2127] = 2001, + [2128] = 2016, + [2129] = 2013, + [2130] = 2027, + [2131] = 2028, + [2132] = 2132, + [2133] = 1100, + [2134] = 2134, + [2135] = 1111, [2136] = 2136, - [2137] = 175, - [2138] = 169, - [2139] = 161, - [2140] = 186, - [2141] = 182, - [2142] = 1677, - [2143] = 1619, - [2144] = 2144, - [2145] = 1713, - [2146] = 1600, - [2147] = 1605, - [2148] = 1558, - [2149] = 2111, - [2150] = 1717, - [2151] = 1764, - [2152] = 1595, - [2153] = 1593, - [2154] = 1588, - [2155] = 1765, - [2156] = 1618, - [2157] = 1592, - [2158] = 1767, - [2159] = 1888, - [2160] = 1590, - [2161] = 1617, - [2162] = 1588, - [2163] = 1768, - [2164] = 1769, - [2165] = 1616, - [2166] = 1652, - [2167] = 2111, - [2168] = 1649, - [2169] = 1661, - [2170] = 1590, - [2171] = 1586, - [2172] = 1592, - [2173] = 1585, - [2174] = 2174, - [2175] = 2175, - [2176] = 1614, - [2177] = 1580, - [2178] = 189, - [2179] = 1815, - [2180] = 2111, - [2181] = 168, - [2182] = 170, - [2183] = 173, + [2137] = 2136, + [2138] = 2138, + [2139] = 2138, + [2140] = 2140, + [2141] = 1052, + [2142] = 2142, + [2143] = 1055, + [2144] = 1058, + [2145] = 1069, + [2146] = 2146, + [2147] = 2147, + [2148] = 2148, + [2149] = 2149, + [2150] = 2150, + [2151] = 2149, + [2152] = 2152, + [2153] = 2153, + [2154] = 2154, + [2155] = 2138, + [2156] = 2156, + [2157] = 2152, + [2158] = 2134, + [2159] = 2159, + [2160] = 2160, + [2161] = 2161, + [2162] = 2156, + [2163] = 2156, + [2164] = 2156, + [2165] = 2152, + [2166] = 2154, + [2167] = 2167, + [2168] = 2138, + [2169] = 2152, + [2170] = 2156, + [2171] = 2154, + [2172] = 2138, + [2173] = 2154, + [2174] = 2156, + [2175] = 2154, + [2176] = 2154, + [2177] = 2177, + [2178] = 2178, + [2179] = 2152, + [2180] = 2138, + [2181] = 2154, + [2182] = 2182, + [2183] = 2152, [2184] = 2184, - [2185] = 1561, - [2186] = 1593, - [2187] = 1595, - [2188] = 1600, - [2189] = 1605, - [2190] = 1606, - [2191] = 1607, - [2192] = 1775, - [2193] = 1648, - [2194] = 2194, - [2195] = 1613, - [2196] = 1774, - [2197] = 1608, - [2198] = 1609, - [2199] = 1610, - [2200] = 1612, - [2201] = 1613, - [2202] = 1614, - [2203] = 1616, - [2204] = 1511, - [2205] = 1610, - [2206] = 189, - [2207] = 1667, - [2208] = 2111, - [2209] = 2111, - [2210] = 1702, + [2185] = 2185, + [2186] = 2152, + [2187] = 2187, + [2188] = 2188, + [2189] = 2189, + [2190] = 2156, + [2191] = 2191, + [2192] = 2192, + [2193] = 2192, + [2194] = 2138, + [2195] = 2192, + [2196] = 2138, + [2197] = 2197, + [2198] = 2192, + [2199] = 2192, + [2200] = 2200, + [2201] = 2192, + [2202] = 2192, + [2203] = 2192, + [2204] = 2197, + [2205] = 2192, + [2206] = 2197, + [2207] = 2197, + [2208] = 2192, + [2209] = 2192, + [2210] = 2210, [2211] = 2211, - [2212] = 168, - [2213] = 1609, - [2214] = 1608, - [2215] = 1606, - [2216] = 1607, - [2217] = 1606, - [2218] = 1605, - [2219] = 1600, - [2220] = 1701, - [2221] = 1709, - [2222] = 2222, - [2223] = 1829, - [2224] = 170, - [2225] = 166, - [2226] = 173, - [2227] = 1617, - [2228] = 1607, - [2229] = 1677, - [2230] = 1608, - [2231] = 1609, + [2212] = 2212, + [2213] = 2213, + [2214] = 2211, + [2215] = 2211, + [2216] = 2216, + [2217] = 2217, + [2218] = 2211, + [2219] = 2136, + [2220] = 2220, + [2221] = 2217, + [2222] = 2217, + [2223] = 2211, + [2224] = 2217, + [2225] = 2138, + [2226] = 2213, + [2227] = 2138, + [2228] = 2211, + [2229] = 2138, + [2230] = 2217, + [2231] = 2138, [2232] = 2232, - [2233] = 1610, - [2234] = 1593, - [2235] = 1612, - [2236] = 1613, - [2237] = 1614, - [2238] = 2111, - [2239] = 1582, - [2240] = 1592, - [2241] = 1511, - [2242] = 1715, - [2243] = 1517, - [2244] = 1527, - [2245] = 1590, - [2246] = 2246, - [2247] = 2111, - [2248] = 1616, - [2249] = 1588, - [2250] = 1618, - [2251] = 1586, - [2252] = 1585, - [2253] = 1617, - [2254] = 1580, - [2255] = 2255, - [2256] = 2256, - [2257] = 166, - [2258] = 1558, + [2233] = 2210, + [2234] = 2234, + [2235] = 2211, + [2236] = 2217, + [2237] = 2220, + [2238] = 2138, + [2239] = 2138, + [2240] = 2138, + [2241] = 2241, + [2242] = 2242, + [2243] = 2211, + [2244] = 2217, + [2245] = 2210, + [2246] = 2213, + [2247] = 2217, + [2248] = 2138, + [2249] = 2210, + [2250] = 2250, + [2251] = 2251, + [2252] = 2252, + [2253] = 2213, + [2254] = 2254, + [2255] = 1053, + [2256] = 2138, + [2257] = 2257, + [2258] = 2257, [2259] = 2259, - [2260] = 1582, - [2261] = 1700, - [2262] = 1575, - [2263] = 1690, - [2264] = 1714, - [2265] = 2043, - [2266] = 1672, - [2267] = 1734, - [2268] = 1736, - [2269] = 1741, - [2270] = 1699, - [2271] = 1742, - [2272] = 1692, - [2273] = 1729, - [2274] = 1619, - [2275] = 1743, - [2276] = 1744, - [2277] = 1527, - [2278] = 1745, - [2279] = 1621, - [2280] = 1746, - [2281] = 1527, - [2282] = 2043, - [2283] = 1747, - [2284] = 2284, - [2285] = 2256, - [2286] = 1698, - [2287] = 1620, - [2288] = 1619, - [2289] = 2284, - [2290] = 1697, - [2291] = 1618, - [2292] = 1582, - [2293] = 2293, - [2294] = 1751, - [2295] = 1691, - [2296] = 2136, - [2297] = 183, - [2298] = 2111, - [2299] = 1511, - [2300] = 1752, - [2301] = 1748, - [2302] = 1689, - [2303] = 1753, - [2304] = 1788, - [2305] = 1621, - [2306] = 183, - [2307] = 1620, - [2308] = 1561, - [2309] = 1517, - [2310] = 1517, - [2311] = 1749, - [2312] = 1613, - [2313] = 1617, - [2314] = 1815, - [2315] = 1895, - [2316] = 1585, - [2317] = 1586, - [2318] = 1517, - [2319] = 1661, - [2320] = 1888, - [2321] = 1527, + [2260] = 2260, + [2261] = 2261, + [2262] = 2260, + [2263] = 2260, + [2264] = 2259, + [2265] = 2220, + [2266] = 2260, + [2267] = 2259, + [2268] = 2260, + [2269] = 2269, + [2270] = 2257, + [2271] = 1056, + [2272] = 2138, + [2273] = 2259, + [2274] = 2274, + [2275] = 2220, + [2276] = 2259, + [2277] = 2257, + [2278] = 2177, + [2279] = 2259, + [2280] = 2138, + [2281] = 2257, + [2282] = 2259, + [2283] = 2259, + [2284] = 2257, + [2285] = 2260, + [2286] = 2138, + [2287] = 2220, + [2288] = 2260, + [2289] = 2259, + [2290] = 2257, + [2291] = 2257, + [2292] = 2259, + [2293] = 2260, + [2294] = 2260, + [2295] = 2257, + [2296] = 2257, + [2297] = 2138, + [2298] = 2259, + [2299] = 2260, + [2300] = 2138, + [2301] = 2257, + [2302] = 2260, + [2303] = 2303, + [2304] = 2304, + [2305] = 2305, + [2306] = 2305, + [2307] = 2305, + [2308] = 2261, + [2309] = 2261, + [2310] = 2254, + [2311] = 2305, + [2312] = 2138, + [2313] = 2313, + [2314] = 2314, + [2315] = 2305, + [2316] = 2220, + [2317] = 2317, + [2318] = 2220, + [2319] = 2319, + [2320] = 2220, + [2321] = 2321, [2322] = 2322, - [2323] = 1588, - [2324] = 1815, - [2325] = 1652, - [2326] = 1824, - [2327] = 1677, - [2328] = 1649, - [2329] = 2329, - [2330] = 1498, - [2331] = 1621, - [2332] = 1618, - [2333] = 1619, - [2334] = 1121, - [2335] = 1620, - [2336] = 1590, - [2337] = 1648, - [2338] = 1592, - [2339] = 1593, - [2340] = 1595, - [2341] = 1600, - [2342] = 1605, - [2343] = 1606, - [2344] = 1607, - [2345] = 1608, - [2346] = 1609, - [2347] = 1610, - [2348] = 1612, - [2349] = 1614, - [2350] = 1558, - [2351] = 1888, - [2352] = 1575, - [2353] = 1511, - [2354] = 1888, - [2355] = 1823, - [2356] = 1616, - [2357] = 2329, - [2358] = 2043, - [2359] = 1582, - [2360] = 1888, - [2361] = 1580, - [2362] = 1561, - [2363] = 1652, - [2364] = 1819, - [2365] = 1133, - [2366] = 2366, - [2367] = 2367, - [2368] = 2368, - [2369] = 2369, - [2370] = 1677, - [2371] = 2371, - [2372] = 2372, - [2373] = 2373, + [2323] = 2305, + [2324] = 2324, + [2325] = 2305, + [2326] = 2305, + [2327] = 2304, + [2328] = 2317, + [2329] = 2254, + [2330] = 2305, + [2331] = 2324, + [2332] = 2261, + [2333] = 2333, + [2334] = 2334, + [2335] = 2335, + [2336] = 2336, + [2337] = 2336, + [2338] = 2334, + [2339] = 2319, + [2340] = 2335, + [2341] = 2334, + [2342] = 2333, + [2343] = 2334, + [2344] = 2344, + [2345] = 2345, + [2346] = 2334, + [2347] = 2220, + [2348] = 2220, + [2349] = 2333, + [2350] = 2334, + [2351] = 2333, + [2352] = 2352, + [2353] = 2353, + [2354] = 2354, + [2355] = 2334, + [2356] = 2333, + [2357] = 2334, + [2358] = 2334, + [2359] = 2359, + [2360] = 2352, + [2361] = 2324, + [2362] = 2333, + [2363] = 2261, + [2364] = 2220, + [2365] = 2319, + [2366] = 2359, + [2367] = 2334, + [2368] = 2333, + [2369] = 2353, + [2370] = 2334, + [2371] = 2220, + [2372] = 2344, + [2373] = 2261, [2374] = 2374, [2375] = 2375, - [2376] = 2376, - [2377] = 2377, - [2378] = 2378, - [2379] = 1561, - [2380] = 2380, - [2381] = 2381, - [2382] = 2382, - [2383] = 2383, - [2384] = 2384, - [2385] = 2385, - [2386] = 2386, - [2387] = 2387, - [2388] = 2388, - [2389] = 2389, - [2390] = 2390, - [2391] = 2391, - [2392] = 2392, - [2393] = 2393, - [2394] = 2394, - [2395] = 1470, - [2396] = 2396, - [2397] = 2397, - [2398] = 2398, + [2376] = 2375, + [2377] = 2319, + [2378] = 2269, + [2379] = 2321, + [2380] = 2375, + [2381] = 2322, + [2382] = 2261, + [2383] = 2335, + [2384] = 2374, + [2385] = 2261, + [2386] = 2374, + [2387] = 2375, + [2388] = 2319, + [2389] = 2374, + [2390] = 2353, + [2391] = 2220, + [2392] = 2374, + [2393] = 2335, + [2394] = 2353, + [2395] = 2335, + [2396] = 2324, + [2397] = 2212, + [2398] = 2375, [2399] = 2399, - [2400] = 1815, - [2401] = 1815, - [2402] = 2402, - [2403] = 2403, - [2404] = 2404, - [2405] = 2405, - [2406] = 659, - [2407] = 2396, - [2408] = 2408, + [2400] = 2400, + [2401] = 2401, + [2402] = 2261, + [2403] = 1056, + [2404] = 2220, + [2405] = 2335, + [2406] = 2401, + [2407] = 2216, + [2408] = 1053, [2409] = 2409, [2410] = 2410, - [2411] = 2396, - [2412] = 2412, - [2413] = 2413, - [2414] = 2414, - [2415] = 1888, - [2416] = 2416, - [2417] = 1661, - [2418] = 1645, - [2419] = 2419, - [2420] = 1561, - [2421] = 1723, - [2422] = 1776, - [2423] = 1561, - [2424] = 2232, - [2425] = 2425, + [2411] = 2375, + [2412] = 2374, + [2413] = 2242, + [2414] = 2250, + [2415] = 2251, + [2416] = 2252, + [2417] = 2375, + [2418] = 2374, + [2419] = 2313, + [2420] = 2322, + [2421] = 2321, + [2422] = 2269, + [2423] = 2353, + [2424] = 2234, + [2425] = 2353, [2426] = 2426, - [2427] = 1754, + [2427] = 2426, [2428] = 2428, - [2429] = 2428, - [2430] = 2430, + [2429] = 2429, + [2430] = 2428, [2431] = 2431, - [2432] = 1724, - [2433] = 1720, - [2434] = 1770, - [2435] = 1718, - [2436] = 1724, - [2437] = 2043, - [2438] = 2438, - [2439] = 1652, - [2440] = 1649, - [2441] = 1648, - [2442] = 1561, - [2443] = 2443, - [2444] = 2444, - [2445] = 1718, - [2446] = 2446, - [2447] = 1723, - [2448] = 2448, - [2449] = 1645, - [2450] = 2450, - [2451] = 1130, - [2452] = 2452, - [2453] = 2453, - [2454] = 2454, - [2455] = 1141, - [2456] = 2456, - [2457] = 2457, - [2458] = 2458, - [2459] = 2459, - [2460] = 2460, - [2461] = 1156, - [2462] = 674, - [2463] = 151, - [2464] = 2464, - [2465] = 2459, - [2466] = 2466, - [2467] = 1154, - [2468] = 2450, - [2469] = 163, - [2470] = 2466, - [2471] = 2450, - [2472] = 2456, - [2473] = 2459, - [2474] = 2456, - [2475] = 1150, - [2476] = 2460, - [2477] = 2466, - [2478] = 2460, - [2479] = 153, - [2480] = 2480, - [2481] = 681, - [2482] = 2482, - [2483] = 1681, - [2484] = 695, - [2485] = 688, - [2486] = 2486, + [2432] = 2431, + [2433] = 2426, + [2434] = 2426, + [2435] = 2426, + [2436] = 2353, + [2437] = 2426, + [2438] = 2428, + [2439] = 2269, + [2440] = 2314, + [2441] = 2354, + [2442] = 2426, + [2443] = 2431, + [2444] = 2426, + [2445] = 2431, + [2446] = 2428, + [2447] = 2431, + [2448] = 2426, + [2449] = 2426, + [2450] = 2428, + [2451] = 2431, + [2452] = 2426, + [2453] = 2428, + [2454] = 2426, + [2455] = 2428, + [2456] = 2428, + [2457] = 2426, + [2458] = 2428, + [2459] = 2353, + [2460] = 2426, + [2461] = 2428, + [2462] = 2429, + [2463] = 2428, + [2464] = 2431, + [2465] = 2426, + [2466] = 2335, + [2467] = 2428, + [2468] = 2468, + [2469] = 2319, + [2470] = 2429, + [2471] = 2428, + [2472] = 2426, + [2473] = 2428, + [2474] = 2428, + [2475] = 2261, + [2476] = 2426, + [2477] = 2428, + [2478] = 2429, + [2479] = 2319, + [2480] = 2319, + [2481] = 2428, + [2482] = 2428, + [2483] = 2429, + [2484] = 2426, + [2485] = 2426, + [2486] = 2428, [2487] = 2487, - [2488] = 2488, - [2489] = 2489, - [2490] = 2490, - [2491] = 2491, - [2492] = 2492, - [2493] = 2493, - [2494] = 2494, - [2495] = 2495, - [2496] = 2496, - [2497] = 693, - [2498] = 689, - [2499] = 2499, - [2500] = 2500, - [2501] = 698, - [2502] = 2502, - [2503] = 2503, - [2504] = 2504, - [2505] = 2505, - [2506] = 684, - [2507] = 2507, - [2508] = 772, - [2509] = 755, + [2488] = 2429, + [2489] = 2426, + [2490] = 2428, + [2491] = 2428, + [2492] = 2319, + [2493] = 2269, + [2494] = 2321, + [2495] = 2322, + [2496] = 2426, + [2497] = 2429, + [2498] = 2498, + [2499] = 2426, + [2500] = 2431, + [2501] = 2501, + [2502] = 2335, + [2503] = 2428, + [2504] = 2269, + [2505] = 2335, + [2506] = 2506, + [2507] = 2335, + [2508] = 2353, + [2509] = 2509, [2510] = 2510, - [2511] = 809, - [2512] = 2512, - [2513] = 2513, - [2514] = 2514, - [2515] = 2515, - [2516] = 2514, - [2517] = 2517, - [2518] = 842, - [2519] = 2519, + [2511] = 2511, + [2512] = 2304, + [2513] = 2321, + [2514] = 2322, + [2515] = 2317, + [2516] = 2353, + [2517] = 2319, + [2518] = 2353, + [2519] = 2335, [2520] = 2520, - [2521] = 2521, - [2522] = 685, - [2523] = 2523, - [2524] = 162, - [2525] = 2525, - [2526] = 2526, - [2527] = 2515, - [2528] = 760, - [2529] = 850, - [2530] = 700, - [2531] = 682, - [2532] = 683, - [2533] = 2533, - [2534] = 2534, - [2535] = 761, - [2536] = 696, - [2537] = 851, - [2538] = 813, - [2539] = 2512, - [2540] = 791, - [2541] = 697, - [2542] = 699, - [2543] = 2543, - [2544] = 2544, - [2545] = 694, - [2546] = 171, - [2547] = 2507, - [2548] = 2548, - [2549] = 759, - [2550] = 2550, - [2551] = 2551, - [2552] = 174, - [2553] = 2551, - [2554] = 180, - [2555] = 2555, - [2556] = 2556, - [2557] = 2557, - [2558] = 690, - [2559] = 2559, - [2560] = 816, - [2561] = 815, - [2562] = 2562, - [2563] = 749, - [2564] = 2564, - [2565] = 811, - [2566] = 691, - [2567] = 2525, - [2568] = 692, - [2569] = 711, - [2570] = 827, - [2571] = 766, - [2572] = 764, - [2573] = 763, - [2574] = 758, - [2575] = 751, - [2576] = 750, - [2577] = 748, - [2578] = 162, - [2579] = 733, - [2580] = 746, - [2581] = 742, - [2582] = 734, - [2583] = 848, - [2584] = 730, - [2585] = 729, - [2586] = 728, - [2587] = 727, - [2588] = 716, - [2589] = 715, - [2590] = 704, - [2591] = 714, - [2592] = 773, - [2593] = 710, - [2594] = 709, - [2595] = 708, - [2596] = 770, - [2597] = 768, - [2598] = 769, - [2599] = 771, - [2600] = 775, - [2601] = 776, - [2602] = 778, - [2603] = 779, - [2604] = 781, - [2605] = 171, - [2606] = 782, - [2607] = 783, - [2608] = 787, - [2609] = 790, - [2610] = 793, - [2611] = 794, - [2612] = 796, - [2613] = 785, - [2614] = 797, - [2615] = 798, - [2616] = 803, - [2617] = 188, - [2618] = 745, - [2619] = 743, - [2620] = 741, - [2621] = 740, - [2622] = 739, - [2623] = 176, - [2624] = 617, - [2625] = 738, - [2626] = 804, - [2627] = 810, - [2628] = 812, - [2629] = 814, - [2630] = 818, - [2631] = 829, - [2632] = 819, - [2633] = 822, - [2634] = 821, - [2635] = 823, - [2636] = 825, - [2637] = 826, - [2638] = 767, - [2639] = 828, - [2640] = 830, - [2641] = 831, - [2642] = 820, - [2643] = 808, - [2644] = 832, - [2645] = 833, - [2646] = 834, - [2647] = 835, - [2648] = 836, - [2649] = 837, - [2650] = 838, - [2651] = 839, + [2521] = 2353, + [2522] = 2353, + [2523] = 2335, + [2524] = 2336, + [2525] = 2335, + [2526] = 2335, + [2527] = 2335, + [2528] = 2409, + [2529] = 2353, + [2530] = 2269, + [2531] = 2410, + [2532] = 2335, + [2533] = 2353, + [2534] = 2353, + [2535] = 2269, + [2536] = 2536, + [2537] = 2537, + [2538] = 2537, + [2539] = 2536, + [2540] = 2536, + [2541] = 2541, + [2542] = 2536, + [2543] = 2537, + [2544] = 2335, + [2545] = 2545, + [2546] = 2269, + [2547] = 2536, + [2548] = 2537, + [2549] = 2536, + [2550] = 2536, + [2551] = 2545, + [2552] = 2552, + [2553] = 2537, + [2554] = 2468, + [2555] = 2353, + [2556] = 2269, + [2557] = 2545, + [2558] = 2552, + [2559] = 2552, + [2560] = 2536, + [2561] = 2552, + [2562] = 2536, + [2563] = 2537, + [2564] = 2537, + [2565] = 2537, + [2566] = 2545, + [2567] = 2537, + [2568] = 2568, + [2569] = 2569, + [2570] = 2568, + [2571] = 2568, + [2572] = 2569, + [2573] = 2568, + [2574] = 2569, + [2575] = 2568, + [2576] = 2569, + [2577] = 2568, + [2578] = 2568, + [2579] = 2568, + [2580] = 2569, + [2581] = 2568, + [2582] = 2569, + [2583] = 2583, + [2584] = 2584, + [2585] = 2584, + [2586] = 2586, + [2587] = 2584, + [2588] = 2586, + [2589] = 2584, + [2590] = 2584, + [2591] = 2586, + [2592] = 2586, + [2593] = 2586, + [2594] = 2586, + [2595] = 2584, + [2596] = 2596, + [2597] = 2597, + [2598] = 2596, + [2599] = 2597, + [2600] = 2596, + [2601] = 2601, + [2602] = 2597, + [2603] = 2603, + [2604] = 2596, + [2605] = 2596, + [2606] = 2597, + [2607] = 2607, + [2608] = 2597, + [2609] = 2609, + [2610] = 2597, + [2611] = 2596, + [2612] = 2612, + [2613] = 2613, + [2614] = 2614, + [2615] = 2615, + [2616] = 2616, + [2617] = 2617, + [2618] = 2618, + [2619] = 2619, + [2620] = 2614, + [2621] = 2621, + [2622] = 2614, + [2623] = 2623, + [2624] = 2624, + [2625] = 2625, + [2626] = 2626, + [2627] = 2627, + [2628] = 2614, + [2629] = 2629, + [2630] = 2614, + [2631] = 2614, + [2632] = 2614, + [2633] = 2618, + [2634] = 2634, + [2635] = 2635, + [2636] = 2636, + [2637] = 2637, + [2638] = 354, + [2639] = 355, + [2640] = 2640, + [2641] = 2635, + [2642] = 2642, + [2643] = 2643, + [2644] = 2635, + [2645] = 2645, + [2646] = 2637, + [2647] = 2647, + [2648] = 2635, + [2649] = 2649, + [2650] = 2650, + [2651] = 2651, [2652] = 2652, - [2653] = 807, - [2654] = 840, - [2655] = 841, - [2656] = 843, - [2657] = 844, - [2658] = 846, - [2659] = 847, - [2660] = 800, - [2661] = 792, - [2662] = 737, - [2663] = 789, - [2664] = 736, - [2665] = 747, - [2666] = 731, - [2667] = 735, - [2668] = 756, - [2669] = 845, - [2670] = 774, - [2671] = 615, - [2672] = 614, - [2673] = 726, - [2674] = 725, - [2675] = 724, - [2676] = 613, - [2677] = 723, - [2678] = 722, - [2679] = 721, - [2680] = 720, - [2681] = 719, - [2682] = 718, - [2683] = 788, - [2684] = 705, - [2685] = 717, - [2686] = 777, - [2687] = 713, - [2688] = 712, - [2689] = 612, - [2690] = 732, - [2691] = 786, - [2692] = 765, - [2693] = 744, - [2694] = 849, - [2695] = 824, - [2696] = 817, - [2697] = 780, - [2698] = 752, - [2699] = 784, - [2700] = 802, - [2701] = 801, - [2702] = 753, - [2703] = 754, - [2704] = 757, - [2705] = 762, + [2653] = 2636, + [2654] = 2637, + [2655] = 2655, + [2656] = 2656, + [2657] = 2636, + [2658] = 2637, + [2659] = 2659, + [2660] = 2660, + [2661] = 2661, + [2662] = 2662, + [2663] = 2651, + [2664] = 2664, + [2665] = 2665, + [2666] = 2666, + [2667] = 2667, + [2668] = 2650, + [2669] = 2669, + [2670] = 2670, + [2671] = 2671, + [2672] = 2637, + [2673] = 2673, + [2674] = 2637, + [2675] = 2666, + [2676] = 2635, + [2677] = 2635, + [2678] = 2636, + [2679] = 2679, + [2680] = 2650, + [2681] = 2681, + [2682] = 2682, + [2683] = 2683, + [2684] = 2684, + [2685] = 2635, + [2686] = 2686, + [2687] = 2687, + [2688] = 2688, + [2689] = 2650, + [2690] = 2636, + [2691] = 2650, + [2692] = 2640, + [2693] = 2693, + [2694] = 2694, + [2695] = 2637, + [2696] = 2636, + [2697] = 2697, + [2698] = 2698, + [2699] = 2699, + [2700] = 2699, + [2701] = 2701, + [2702] = 2650, + [2703] = 2703, + [2704] = 2704, + [2705] = 2705, [2706] = 2706, [2707] = 2707, - [2708] = 2708, + [2708] = 2704, [2709] = 2709, [2710] = 2710, - [2711] = 2711, + [2711] = 2710, [2712] = 2712, - [2713] = 2713, + [2713] = 2710, [2714] = 2714, [2715] = 2715, - [2716] = 2716, + [2716] = 2710, [2717] = 2717, [2718] = 2718, [2719] = 2719, - [2720] = 2720, + [2720] = 2710, [2721] = 2721, [2722] = 2722, [2723] = 2723, @@ -7265,36 +7757,36 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2729] = 2729, [2730] = 2730, [2731] = 2731, - [2732] = 2728, - [2733] = 2733, + [2732] = 2732, + [2733] = 2729, [2734] = 2734, [2735] = 2735, - [2736] = 2736, - [2737] = 2737, - [2738] = 2731, + [2736] = 2732, + [2737] = 2719, + [2738] = 2738, [2739] = 2739, - [2740] = 2740, - [2741] = 2741, + [2740] = 2710, + [2741] = 2710, [2742] = 2742, - [2743] = 2743, + [2743] = 355, [2744] = 2744, - [2745] = 2745, - [2746] = 2746, - [2747] = 2747, + [2745] = 341, + [2746] = 342, + [2747] = 344, [2748] = 2748, - [2749] = 2728, - [2750] = 2731, + [2749] = 354, + [2750] = 2750, [2751] = 2751, [2752] = 2752, [2753] = 2753, [2754] = 2754, [2755] = 2755, [2756] = 2756, - [2757] = 2728, - [2758] = 2758, + [2757] = 2757, + [2758] = 2142, [2759] = 2759, [2760] = 2760, - [2761] = 2731, + [2761] = 2761, [2762] = 2762, [2763] = 2763, [2764] = 2764, @@ -7304,2258 +7796,5979 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2768] = 2768, [2769] = 2769, [2770] = 2770, - [2771] = 2771, + [2771] = 333, [2772] = 2772, [2773] = 2773, [2774] = 2774, - [2775] = 2775, + [2775] = 2147, [2776] = 2776, - [2777] = 2777, + [2777] = 2150, [2778] = 2778, [2779] = 2779, [2780] = 2780, [2781] = 2781, [2782] = 2782, - [2783] = 2783, + [2783] = 2780, [2784] = 2784, [2785] = 2785, [2786] = 2786, [2787] = 2787, [2788] = 2788, [2789] = 2789, - [2790] = 2790, - [2791] = 180, - [2792] = 174, - [2793] = 1447, - [2794] = 1448, - [2795] = 1450, - [2796] = 1516, - [2797] = 1525, - [2798] = 1482, - [2799] = 1510, - [2800] = 1636, - [2801] = 1548, - [2802] = 1515, - [2803] = 1543, - [2804] = 1633, - [2805] = 1518, - [2806] = 1427, - [2807] = 1481, - [2808] = 174, - [2809] = 1477, - [2810] = 1488, - [2811] = 1542, - [2812] = 1519, - [2813] = 1534, - [2814] = 1522, - [2815] = 1505, - [2816] = 1479, - [2817] = 180, - [2818] = 1529, - [2819] = 1483, - [2820] = 1531, - [2821] = 1526, - [2822] = 1509, - [2823] = 1487, - [2824] = 1507, - [2825] = 1486, - [2826] = 1504, - [2827] = 1553, - [2828] = 1506, - [2829] = 1530, - [2830] = 1476, - [2831] = 1532, - [2832] = 1521, - [2833] = 1584, - [2834] = 1576, - [2835] = 1141, - [2836] = 1611, - [2837] = 1130, - [2838] = 1154, - [2839] = 1598, - [2840] = 1445, - [2841] = 1441, - [2842] = 1440, + [2790] = 353, + [2791] = 2791, + [2792] = 2792, + [2793] = 2793, + [2794] = 2794, + [2795] = 2795, + [2796] = 359, + [2797] = 2797, + [2798] = 2798, + [2799] = 2799, + [2800] = 2636, + [2801] = 2650, + [2802] = 2802, + [2803] = 2803, + [2804] = 2804, + [2805] = 2805, + [2806] = 2153, + [2807] = 2188, + [2808] = 2189, + [2809] = 2184, + [2810] = 2185, + [2811] = 2811, + [2812] = 2812, + [2813] = 2813, + [2814] = 2814, + [2815] = 2815, + [2816] = 2780, + [2817] = 2817, + [2818] = 2818, + [2819] = 2819, + [2820] = 2820, + [2821] = 2821, + [2822] = 1084, + [2823] = 2823, + [2824] = 2824, + [2825] = 2825, + [2826] = 2780, + [2827] = 2827, + [2828] = 2828, + [2829] = 2829, + [2830] = 2830, + [2831] = 2831, + [2832] = 2832, + [2833] = 2833, + [2834] = 2834, + [2835] = 2835, + [2836] = 2836, + [2837] = 2837, + [2838] = 2838, + [2839] = 2839, + [2840] = 2840, + [2841] = 2841, + [2842] = 2780, [2843] = 2843, - [2844] = 1468, - [2845] = 2843, - [2846] = 1427, - [2847] = 2843, - [2848] = 1467, - [2849] = 1466, - [2850] = 1463, - [2851] = 2843, - [2852] = 1567, - [2853] = 1546, - [2854] = 2843, - [2855] = 1596, - [2856] = 1562, - [2857] = 1587, - [2858] = 1560, - [2859] = 2843, - [2860] = 1555, - [2861] = 1535, - [2862] = 1448, - [2863] = 1450, - [2864] = 1557, - [2865] = 1556, - [2866] = 1439, - [2867] = 1494, - [2868] = 1539, - [2869] = 2843, - [2870] = 1447, - [2871] = 1591, - [2872] = 2843, - [2873] = 1500, - [2874] = 1631, - [2875] = 1625, - [2876] = 1457, - [2877] = 1540, - [2878] = 1622, - [2879] = 1615, - [2880] = 1462, - [2881] = 2843, - [2882] = 1502, - [2883] = 1565, - [2884] = 1597, - [2885] = 1602, - [2886] = 1552, - [2887] = 1525, - [2888] = 1515, + [2844] = 2844, + [2845] = 2845, + [2846] = 2846, + [2847] = 2847, + [2848] = 2848, + [2849] = 2636, + [2850] = 1080, + [2851] = 2650, + [2852] = 2852, + [2853] = 2853, + [2854] = 2854, + [2855] = 2855, + [2856] = 2856, + [2857] = 2857, + [2858] = 2858, + [2859] = 2859, + [2860] = 2860, + [2861] = 2861, + [2862] = 2862, + [2863] = 2650, + [2864] = 2636, + [2865] = 2865, + [2866] = 2866, + [2867] = 2867, + [2868] = 1074, + [2869] = 2869, + [2870] = 2780, + [2871] = 2187, + [2872] = 2872, + [2873] = 2873, + [2874] = 2182, + [2875] = 2167, + [2876] = 2876, + [2877] = 2780, + [2878] = 2878, + [2879] = 2780, + [2880] = 2880, + [2881] = 2881, + [2882] = 2882, + [2883] = 2883, + [2884] = 2884, + [2885] = 2885, + [2886] = 2886, + [2887] = 2887, + [2888] = 2888, [2889] = 2889, [2890] = 2890, - [2891] = 1493, - [2892] = 1492, - [2893] = 1531, - [2894] = 2894, + [2891] = 2891, + [2892] = 2892, + [2893] = 2893, + [2894] = 1088, [2895] = 2895, - [2896] = 1603, - [2897] = 2894, - [2898] = 2889, - [2899] = 1544, - [2900] = 1594, - [2901] = 2895, - [2902] = 2894, - [2903] = 1532, - [2904] = 1530, - [2905] = 1529, - [2906] = 1522, - [2907] = 2890, - [2908] = 1521, + [2896] = 2896, + [2897] = 2897, + [2898] = 2898, + [2899] = 2757, + [2900] = 2900, + [2901] = 2901, + [2902] = 2902, + [2903] = 2903, + [2904] = 2904, + [2905] = 2905, + [2906] = 2906, + [2907] = 2907, + [2908] = 2908, [2909] = 2909, - [2910] = 1538, + [2910] = 2650, [2911] = 2911, - [2912] = 1496, - [2913] = 2894, + [2912] = 2912, + [2913] = 2913, [2914] = 2914, - [2915] = 1519, - [2916] = 2890, + [2915] = 2915, + [2916] = 2916, [2917] = 2917, - [2918] = 2889, - [2919] = 1518, - [2920] = 1516, - [2921] = 1526, - [2922] = 1568, - [2923] = 2895, - [2924] = 2890, - [2925] = 1636, - [2926] = 1488, - [2927] = 1510, - [2928] = 2894, - [2929] = 1487, - [2930] = 1486, - [2931] = 1483, - [2932] = 2890, - [2933] = 1482, - [2934] = 1481, - [2935] = 1479, - [2936] = 2895, - [2937] = 1477, + [2918] = 2918, + [2919] = 2919, + [2920] = 356, + [2921] = 358, + [2922] = 2922, + [2923] = 2923, + [2924] = 2924, + [2925] = 2925, + [2926] = 2926, + [2927] = 2927, + [2928] = 2928, + [2929] = 2929, + [2930] = 2930, + [2931] = 2931, + [2932] = 2161, + [2933] = 2933, + [2934] = 2160, + [2935] = 2935, + [2936] = 2936, + [2937] = 1090, [2938] = 2938, - [2939] = 1476, - [2940] = 2940, - [2941] = 1633, - [2942] = 1506, - [2943] = 2889, - [2944] = 1505, - [2945] = 2889, - [2946] = 1553, - [2947] = 1504, - [2948] = 1507, - [2949] = 1548, - [2950] = 1543, - [2951] = 2951, - [2952] = 1542, - [2953] = 1534, - [2954] = 2895, - [2955] = 1509, - [2956] = 1445, - [2957] = 1576, + [2939] = 2650, + [2940] = 2636, + [2941] = 2650, + [2942] = 2636, + [2943] = 2636, + [2944] = 2944, + [2945] = 2945, + [2946] = 2946, + [2947] = 2947, + [2948] = 2948, + [2949] = 2159, + [2950] = 341, + [2951] = 342, + [2952] = 344, + [2953] = 2953, + [2954] = 2954, + [2955] = 2955, + [2956] = 2780, + [2957] = 2957, [2958] = 2958, [2959] = 2959, - [2960] = 1141, + [2960] = 2960, [2961] = 2961, [2962] = 2962, - [2963] = 2962, - [2964] = 1441, - [2965] = 1598, - [2966] = 1574, + [2963] = 2963, + [2964] = 2964, + [2965] = 2965, + [2966] = 2650, [2967] = 2967, - [2968] = 1584, - [2969] = 1447, - [2970] = 1611, - [2971] = 2971, - [2972] = 1448, - [2973] = 2962, + [2968] = 2968, + [2969] = 2636, + [2970] = 2970, + [2971] = 362, + [2972] = 362, + [2973] = 2973, [2974] = 2974, - [2975] = 1450, - [2976] = 2976, - [2977] = 1154, - [2978] = 1130, - [2979] = 2979, - [2980] = 2980, - [2981] = 2981, - [2982] = 2982, - [2983] = 1427, - [2984] = 2984, - [2985] = 1525, - [2986] = 1515, - [2987] = 2987, + [2975] = 2915, + [2976] = 2912, + [2977] = 2909, + [2978] = 2908, + [2979] = 2905, + [2980] = 2907, + [2981] = 2893, + [2982] = 2887, + [2983] = 2884, + [2984] = 2881, + [2985] = 2880, + [2986] = 2902, + [2987] = 2867, [2988] = 2988, - [2989] = 1488, + [2989] = 2989, [2990] = 2990, - [2991] = 1487, + [2991] = 2866, [2992] = 2992, - [2993] = 1486, - [2994] = 1483, - [2995] = 1482, - [2996] = 1481, - [2997] = 1479, - [2998] = 2998, - [2999] = 2999, - [3000] = 2992, - [3001] = 1510, + [2993] = 2853, + [2994] = 2994, + [2995] = 2847, + [2996] = 2891, + [2997] = 2997, + [2998] = 2843, + [2999] = 2839, + [3000] = 3000, + [3001] = 3001, [3002] = 3002, - [3003] = 1516, - [3004] = 1477, - [3005] = 1476, - [3006] = 1633, - [3007] = 1553, - [3008] = 1636, - [3009] = 1532, - [3010] = 1530, - [3011] = 3011, - [3012] = 1529, - [3013] = 3013, - [3014] = 1504, - [3015] = 1506, - [3016] = 1507, - [3017] = 1509, + [3003] = 3003, + [3004] = 3004, + [3005] = 2784, + [3006] = 359, + [3007] = 2788, + [3008] = 3008, + [3009] = 2789, + [3010] = 3010, + [3011] = 2812, + [3012] = 2924, + [3013] = 2925, + [3014] = 2927, + [3015] = 2945, + [3016] = 3016, + [3017] = 2832, [3018] = 3018, - [3019] = 1526, - [3020] = 1522, - [3021] = 1531, - [3022] = 1505, - [3023] = 1519, + [3019] = 3019, + [3020] = 3020, + [3021] = 3021, + [3022] = 3022, + [3023] = 3023, [3024] = 3024, - [3025] = 1534, - [3026] = 1542, - [3027] = 1543, - [3028] = 1548, + [3025] = 2994, + [3026] = 2891, + [3027] = 3027, + [3028] = 3028, [3029] = 3029, - [3030] = 1439, - [3031] = 3031, - [3032] = 3032, + [3030] = 3030, + [3031] = 3010, + [3032] = 3008, [3033] = 3033, - [3034] = 1445, - [3035] = 1457, + [3034] = 3034, + [3035] = 363, [3036] = 3036, - [3037] = 3037, - [3038] = 2992, - [3039] = 1440, - [3040] = 2992, - [3041] = 2992, - [3042] = 1518, - [3043] = 2992, - [3044] = 3044, - [3045] = 1521, - [3046] = 1535, - [3047] = 1591, - [3048] = 1502, - [3049] = 1462, - [3050] = 613, - [3051] = 1496, - [3052] = 1494, - [3053] = 1130, - [3054] = 1493, - [3055] = 1492, - [3056] = 1538, - [3057] = 614, - [3058] = 1468, - [3059] = 1154, - [3060] = 898, - [3061] = 1467, - [3062] = 1466, - [3063] = 1500, - [3064] = 1539, - [3065] = 1441, - [3066] = 1540, - [3067] = 615, - [3068] = 1565, - [3069] = 914, - [3070] = 1544, - [3071] = 1574, - [3072] = 1552, - [3073] = 1574, - [3074] = 1556, - [3075] = 1557, - [3076] = 612, - [3077] = 3077, - [3078] = 1631, - [3079] = 1576, - [3080] = 1625, - [3081] = 1584, - [3082] = 1622, - [3083] = 1615, - [3084] = 1603, - [3085] = 1602, - [3086] = 1597, - [3087] = 1596, - [3088] = 1594, - [3089] = 1598, - [3090] = 1587, - [3091] = 1611, - [3092] = 617, - [3093] = 1546, - [3094] = 1568, - [3095] = 1463, + [3037] = 2994, + [3038] = 2839, + [3039] = 2812, + [3040] = 363, + [3041] = 2843, + [3042] = 2847, + [3043] = 3043, + [3044] = 3010, + [3045] = 3045, + [3046] = 2844, + [3047] = 2924, + [3048] = 3008, + [3049] = 346, + [3050] = 3050, + [3051] = 3051, + [3052] = 361, + [3053] = 3053, + [3054] = 3054, + [3055] = 353, + [3056] = 3056, + [3057] = 3057, + [3058] = 3058, + [3059] = 3059, + [3060] = 2925, + [3061] = 2853, + [3062] = 2927, + [3063] = 2844, + [3064] = 2945, + [3065] = 2832, + [3066] = 2784, + [3067] = 2706, + [3068] = 3068, + [3069] = 2988, + [3070] = 3070, + [3071] = 2866, + [3072] = 3072, + [3073] = 3073, + [3074] = 2867, + [3075] = 2880, + [3076] = 2881, + [3077] = 2884, + [3078] = 2887, + [3079] = 2994, + [3080] = 2893, + [3081] = 2905, + [3082] = 3054, + [3083] = 352, + [3084] = 3084, + [3085] = 3008, + [3086] = 3010, + [3087] = 3087, + [3088] = 2908, + [3089] = 3089, + [3090] = 2909, + [3091] = 352, + [3092] = 3008, + [3093] = 350, + [3094] = 2789, + [3095] = 2788, [3096] = 3096, - [3097] = 1555, - [3098] = 1560, - [3099] = 915, - [3100] = 1141, - [3101] = 1567, - [3102] = 1562, - [3103] = 3103, - [3104] = 3104, - [3105] = 3105, - [3106] = 1439, - [3107] = 1457, + [3097] = 361, + [3098] = 346, + [3099] = 3010, + [3100] = 3100, + [3101] = 3101, + [3102] = 3102, + [3103] = 2994, + [3104] = 2994, + [3105] = 2912, + [3106] = 3106, + [3107] = 3107, [3108] = 3108, - [3109] = 3109, - [3110] = 3110, - [3111] = 3111, + [3109] = 3073, + [3110] = 2915, + [3111] = 2717, [3112] = 3112, - [3113] = 3113, + [3113] = 2994, [3114] = 3114, - [3115] = 3108, - [3116] = 3111, + [3115] = 350, + [3116] = 356, [3117] = 3117, - [3118] = 3112, - [3119] = 3110, - [3120] = 3120, - [3121] = 3108, - [3122] = 3112, - [3123] = 3117, - [3124] = 3124, - [3125] = 3125, - [3126] = 3108, - [3127] = 1427, + [3118] = 358, + [3119] = 3119, + [3120] = 3008, + [3121] = 3121, + [3122] = 3010, + [3123] = 3123, + [3124] = 3010, + [3125] = 3008, + [3126] = 3126, + [3127] = 3127, [3128] = 3128, - [3129] = 1440, - [3130] = 3112, - [3131] = 615, - [3132] = 3132, - [3133] = 1538, - [3134] = 1535, - [3135] = 3125, - [3136] = 3136, - [3137] = 3137, - [3138] = 3136, - [3139] = 613, - [3140] = 2992, + [3129] = 2913, + [3130] = 2907, + [3131] = 2902, + [3132] = 2913, + [3133] = 3133, + [3134] = 2994, + [3135] = 2721, + [3136] = 2722, + [3137] = 2726, + [3138] = 3138, + [3139] = 3139, + [3140] = 3140, [3141] = 3141, - [3142] = 3142, - [3143] = 1445, - [3144] = 612, + [3142] = 2843, + [3143] = 2839, + [3144] = 2773, [3145] = 3145, - [3146] = 3146, + [3146] = 359, [3147] = 3147, - [3148] = 898, + [3148] = 2784, [3149] = 3149, [3150] = 3150, - [3151] = 1462, - [3152] = 1502, + [3151] = 3145, + [3152] = 3152, [3153] = 3153, - [3154] = 1631, - [3155] = 915, - [3156] = 1500, - [3157] = 1496, - [3158] = 1494, - [3159] = 1493, - [3160] = 1492, - [3161] = 614, - [3162] = 3162, + [3154] = 2767, + [3155] = 3054, + [3156] = 2766, + [3157] = 2788, + [3158] = 2789, + [3159] = 2776, + [3160] = 3073, + [3161] = 3147, + [3162] = 2812, [3163] = 3163, - [3164] = 1625, - [3165] = 1546, - [3166] = 1622, - [3167] = 163, - [3168] = 3136, - [3169] = 1539, - [3170] = 1468, - [3171] = 1467, - [3172] = 1466, - [3173] = 1615, - [3174] = 2992, - [3175] = 1603, - [3176] = 3162, - [3177] = 3177, - [3178] = 1463, + [3164] = 353, + [3165] = 3165, + [3166] = 3145, + [3167] = 2772, + [3168] = 3168, + [3169] = 2769, + [3170] = 3170, + [3171] = 3171, + [3172] = 2988, + [3173] = 3173, + [3174] = 3174, + [3175] = 3147, + [3176] = 3176, + [3177] = 3150, + [3178] = 2754, [3179] = 3179, - [3180] = 1555, - [3181] = 3104, + [3180] = 2791, + [3181] = 3181, [3182] = 3182, - [3183] = 3177, - [3184] = 1602, - [3185] = 1565, - [3186] = 3186, - [3187] = 1568, - [3188] = 914, - [3189] = 3189, - [3190] = 1587, - [3191] = 2992, - [3192] = 3192, - [3193] = 1597, - [3194] = 2992, - [3195] = 3189, - [3196] = 2992, - [3197] = 1540, - [3198] = 3132, - [3199] = 2992, - [3200] = 3189, - [3201] = 1560, - [3202] = 1596, - [3203] = 1562, - [3204] = 1567, - [3205] = 1594, - [3206] = 898, - [3207] = 1591, - [3208] = 3146, - [3209] = 3209, - [3210] = 3162, - [3211] = 3141, - [3212] = 3136, - [3213] = 3141, - [3214] = 3189, - [3215] = 1557, + [3183] = 3183, + [3184] = 2787, + [3185] = 2847, + [3186] = 2853, + [3187] = 2866, + [3188] = 2867, + [3189] = 2880, + [3190] = 3190, + [3191] = 3191, + [3192] = 2881, + [3193] = 3193, + [3194] = 3194, + [3195] = 3195, + [3196] = 2884, + [3197] = 3197, + [3198] = 2887, + [3199] = 3199, + [3200] = 3200, + [3201] = 3201, + [3202] = 3202, + [3203] = 2893, + [3204] = 2905, + [3205] = 3205, + [3206] = 3206, + [3207] = 2908, + [3208] = 2909, + [3209] = 2912, + [3210] = 3210, + [3211] = 2915, + [3212] = 3147, + [3213] = 2756, + [3214] = 3214, + [3215] = 3215, [3216] = 3216, - [3217] = 3217, - [3218] = 914, - [3219] = 2992, + [3217] = 3140, + [3218] = 3218, + [3219] = 359, [3220] = 3220, - [3221] = 1544, - [3222] = 915, - [3223] = 1556, - [3224] = 3224, + [3221] = 2924, + [3222] = 353, + [3223] = 3223, + [3224] = 2925, [3225] = 3225, - [3226] = 180, - [3227] = 174, - [3228] = 3132, - [3229] = 3182, - [3230] = 617, + [3226] = 2150, + [3227] = 3227, + [3228] = 3228, + [3229] = 3229, + [3230] = 2927, [3231] = 3231, - [3232] = 1552, - [3233] = 3114, - [3234] = 3182, - [3235] = 3235, - [3236] = 3236, - [3237] = 3237, - [3238] = 3125, - [3239] = 3239, - [3240] = 3236, - [3241] = 3236, - [3242] = 3242, - [3243] = 3243, - [3244] = 3236, - [3245] = 3236, + [3232] = 2945, + [3233] = 2832, + [3234] = 3234, + [3235] = 3153, + [3236] = 2779, + [3237] = 2760, + [3238] = 3238, + [3239] = 2891, + [3240] = 2902, + [3241] = 3241, + [3242] = 3150, + [3243] = 2907, + [3244] = 2147, + [3245] = 2913, [3246] = 3246, - [3247] = 3246, - [3248] = 3236, - [3249] = 3236, - [3250] = 3246, - [3251] = 3251, - [3252] = 3236, - [3253] = 1441, - [3254] = 151, - [3255] = 3255, + [3247] = 3247, + [3248] = 3145, + [3249] = 352, + [3250] = 3150, + [3251] = 350, + [3252] = 2844, + [3253] = 3150, + [3254] = 3254, + [3255] = 2142, [3256] = 3256, - [3257] = 3220, + [3257] = 3257, [3258] = 3258, - [3259] = 3259, - [3260] = 3260, - [3261] = 3261, + [3259] = 3140, + [3260] = 3150, + [3261] = 3147, [3262] = 3262, [3263] = 3263, - [3264] = 3264, - [3265] = 3265, + [3264] = 2774, + [3265] = 3147, [3266] = 3266, - [3267] = 3267, + [3267] = 3150, [3268] = 3268, - [3269] = 1121, + [3269] = 2787, [3270] = 3270, [3271] = 3271, [3272] = 3272, [3273] = 3273, - [3274] = 3274, - [3275] = 3217, - [3276] = 153, - [3277] = 3261, - [3278] = 3260, + [3274] = 3145, + [3275] = 3275, + [3276] = 3273, + [3277] = 3277, + [3278] = 3145, [3279] = 3279, [3280] = 3280, - [3281] = 3259, + [3281] = 3281, [3282] = 3282, - [3283] = 3261, - [3284] = 3284, - [3285] = 3285, - [3286] = 3268, - [3287] = 3266, - [3288] = 3288, + [3283] = 3283, + [3284] = 3145, + [3285] = 3147, + [3286] = 3286, + [3287] = 3287, + [3288] = 2791, [3289] = 3289, [3290] = 3290, - [3291] = 3291, - [3292] = 3280, + [3291] = 3225, + [3292] = 3165, [3293] = 3293, [3294] = 3294, - [3295] = 3289, - [3296] = 3268, - [3297] = 3263, + [3295] = 2787, + [3296] = 3296, + [3297] = 2929, [3298] = 3298, - [3299] = 3293, - [3300] = 3300, - [3301] = 3291, - [3302] = 3077, - [3303] = 3303, - [3304] = 3279, - [3305] = 3263, - [3306] = 3306, - [3307] = 3307, - [3308] = 3280, - [3309] = 3309, - [3310] = 3310, - [3311] = 3311, - [3312] = 3216, - [3313] = 3313, - [3314] = 3274, - [3315] = 3274, - [3316] = 3316, - [3317] = 3289, - [3318] = 3318, - [3319] = 3293, - [3320] = 3147, - [3321] = 3321, - [3322] = 3322, - [3323] = 3260, - [3324] = 3324, - [3325] = 3325, - [3326] = 3300, - [3327] = 3327, - [3328] = 3328, - [3329] = 3329, - [3330] = 3105, - [3331] = 3270, - [3332] = 3293, - [3333] = 3333, - [3334] = 3334, - [3335] = 3335, - [3336] = 3336, - [3337] = 3337, - [3338] = 3338, - [3339] = 3137, - [3340] = 3324, - [3341] = 3341, - [3342] = 3342, - [3343] = 3300, - [3344] = 3285, - [3345] = 3345, - [3346] = 3264, - [3347] = 3347, - [3348] = 3348, - [3349] = 3349, - [3350] = 3328, - [3351] = 3351, - [3352] = 3279, - [3353] = 3259, - [3354] = 3354, - [3355] = 3271, - [3356] = 3356, - [3357] = 3357, - [3358] = 1439, + [3299] = 3283, + [3300] = 2929, + [3301] = 2812, + [3302] = 2789, + [3303] = 2788, + [3304] = 2830, + [3305] = 2896, + [3306] = 2931, + [3307] = 2649, + [3308] = 3308, + [3309] = 2891, + [3310] = 2902, + [3311] = 2907, + [3312] = 3312, + [3313] = 2830, + [3314] = 3024, + [3315] = 3315, + [3316] = 2913, + [3317] = 3317, + [3318] = 333, + [3319] = 2841, + [3320] = 2968, + [3321] = 2967, + [3322] = 2965, + [3323] = 3323, + [3324] = 2964, + [3325] = 2962, + [3326] = 2961, + [3327] = 2960, + [3328] = 3117, + [3329] = 2959, + [3330] = 2844, + [3331] = 2958, + [3332] = 2948, + [3333] = 2947, + [3334] = 1090, + [3335] = 2936, + [3336] = 2933, + [3337] = 2930, + [3338] = 2919, + [3339] = 2914, + [3340] = 2911, + [3341] = 3323, + [3342] = 2906, + [3343] = 2904, + [3344] = 2903, + [3345] = 2901, + [3346] = 2900, + [3347] = 2898, + [3348] = 2897, + [3349] = 1088, + [3350] = 3073, + [3351] = 2892, + [3352] = 2890, + [3353] = 2889, + [3354] = 2888, + [3355] = 2883, + [3356] = 2167, + [3357] = 3323, + [3358] = 2182, [3359] = 3359, - [3360] = 3261, - [3361] = 1457, - [3362] = 3266, - [3363] = 3363, - [3364] = 3364, - [3365] = 3365, - [3366] = 3255, - [3367] = 3367, - [3368] = 3368, - [3369] = 3369, - [3370] = 3300, - [3371] = 3259, - [3372] = 3372, - [3373] = 3373, - [3374] = 3274, - [3375] = 3375, - [3376] = 3376, - [3377] = 3316, - [3378] = 3378, - [3379] = 3379, - [3380] = 3380, - [3381] = 3381, - [3382] = 3382, - [3383] = 3383, - [3384] = 3384, - [3385] = 3385, - [3386] = 3386, - [3387] = 3357, - [3388] = 3388, - [3389] = 3389, - [3390] = 3390, - [3391] = 3384, - [3392] = 3363, - [3393] = 3393, - [3394] = 3394, - [3395] = 3395, - [3396] = 3096, - [3397] = 3349, - [3398] = 3381, - [3399] = 3399, - [3400] = 3400, - [3401] = 3365, - [3402] = 3402, - [3403] = 3380, - [3404] = 3310, - [3405] = 3381, - [3406] = 1603, - [3407] = 1594, - [3408] = 3384, - [3409] = 3409, - [3410] = 3334, + [3360] = 3360, + [3361] = 2187, + [3362] = 2865, + [3363] = 2861, + [3364] = 2860, + [3365] = 2859, + [3366] = 2856, + [3367] = 2855, + [3368] = 2852, + [3369] = 2922, + [3370] = 2837, + [3371] = 2778, + [3372] = 2835, + [3373] = 2834, + [3374] = 3374, + [3375] = 2833, + [3376] = 2831, + [3377] = 2829, + [3378] = 2828, + [3379] = 2823, + [3380] = 1084, + [3381] = 2878, + [3382] = 3360, + [3383] = 2876, + [3384] = 2820, + [3385] = 3360, + [3386] = 2824, + [3387] = 2946, + [3388] = 2832, + [3389] = 2815, + [3390] = 2814, + [3391] = 2945, + [3392] = 2811, + [3393] = 2927, + [3394] = 2185, + [3395] = 2925, + [3396] = 2184, + [3397] = 3117, + [3398] = 2189, + [3399] = 2924, + [3400] = 2188, + [3401] = 2153, + [3402] = 2804, + [3403] = 2803, + [3404] = 2840, + [3405] = 2799, + [3406] = 2794, + [3407] = 2792, + [3408] = 3360, + [3409] = 2791, + [3410] = 2787, [3411] = 3411, - [3412] = 3412, - [3413] = 3413, - [3414] = 1568, - [3415] = 3388, - [3416] = 3416, - [3417] = 3417, - [3418] = 3417, - [3419] = 3419, - [3420] = 3419, - [3421] = 3336, - [3422] = 3412, - [3423] = 3423, - [3424] = 3424, + [3412] = 2786, + [3413] = 2785, + [3414] = 2782, + [3415] = 2781, + [3416] = 2836, + [3417] = 3360, + [3418] = 2838, + [3419] = 1080, + [3420] = 3206, + [3421] = 2862, + [3422] = 2679, + [3423] = 2787, + [3424] = 2791, [3425] = 3425, [3426] = 3426, - [3427] = 3375, - [3428] = 3428, + [3427] = 2784, + [3428] = 350, [3429] = 3429, - [3430] = 3430, + [3430] = 352, [3431] = 3431, - [3432] = 3432, - [3433] = 3359, - [3434] = 3373, - [3435] = 3435, - [3436] = 3436, + [3432] = 3003, + [3433] = 3323, + [3434] = 2840, + [3435] = 3298, + [3436] = 3283, [3437] = 3437, - [3438] = 3114, - [3439] = 3439, - [3440] = 3424, - [3441] = 3441, - [3442] = 3442, - [3443] = 3443, - [3444] = 3444, - [3445] = 3445, - [3446] = 3419, - [3447] = 3447, - [3448] = 3448, - [3449] = 3449, - [3450] = 3437, - [3451] = 1492, - [3452] = 1493, - [3453] = 3400, - [3454] = 3428, - [3455] = 1496, - [3456] = 3273, - [3457] = 3423, - [3458] = 3354, - [3459] = 3423, - [3460] = 3460, - [3461] = 3461, - [3462] = 3351, - [3463] = 3432, - [3464] = 3428, - [3465] = 3465, - [3466] = 3389, - [3467] = 3467, - [3468] = 3432, - [3469] = 3325, - [3470] = 3272, - [3471] = 3386, - [3472] = 615, - [3473] = 3381, - [3474] = 614, - [3475] = 3413, - [3476] = 613, - [3477] = 3384, - [3478] = 3104, - [3479] = 3388, - [3480] = 3282, - [3481] = 3388, - [3482] = 3432, - [3483] = 1127, - [3484] = 612, - [3485] = 3288, - [3486] = 3486, - [3487] = 3487, - [3488] = 3488, - [3489] = 3372, - [3490] = 3441, - [3491] = 617, - [3492] = 3492, - [3493] = 3493, - [3494] = 3424, - [3495] = 3448, - [3496] = 3496, - [3497] = 3303, - [3498] = 3307, - [3499] = 3416, - [3500] = 3309, - [3501] = 3423, + [3438] = 2161, + [3439] = 2160, + [3440] = 3440, + [3441] = 2159, + [3442] = 2955, + [3443] = 2858, + [3444] = 2873, + [3445] = 2793, + [3446] = 2787, + [3447] = 2795, + [3448] = 2797, + [3449] = 2798, + [3450] = 2802, + [3451] = 3360, + [3452] = 2805, + [3453] = 2817, + [3454] = 2818, + [3455] = 2840, + [3456] = 3054, + [3457] = 2926, + [3458] = 2923, + [3459] = 3024, + [3460] = 1074, + [3461] = 2839, + [3462] = 2843, + [3463] = 2791, + [3464] = 3323, + [3465] = 2847, + [3466] = 2853, + [3467] = 2866, + [3468] = 2867, + [3469] = 2880, + [3470] = 3470, + [3471] = 3323, + [3472] = 2988, + [3473] = 2881, + [3474] = 2963, + [3475] = 2957, + [3476] = 2954, + [3477] = 2953, + [3478] = 2938, + [3479] = 2935, + [3480] = 3360, + [3481] = 2918, + [3482] = 2884, + [3483] = 3323, + [3484] = 3484, + [3485] = 333, + [3486] = 3206, + [3487] = 2671, + [3488] = 3003, + [3489] = 3360, + [3490] = 2887, + [3491] = 2893, + [3492] = 3323, + [3493] = 2791, + [3494] = 2905, + [3495] = 2908, + [3496] = 2909, + [3497] = 2912, + [3498] = 3498, + [3499] = 2915, + [3500] = 2642, + [3501] = 3501, [3502] = 3502, - [3503] = 3256, - [3504] = 3386, - [3505] = 3505, - [3506] = 3417, - [3507] = 3381, - [3508] = 3508, - [3509] = 3384, - [3510] = 3439, - [3511] = 3424, - [3512] = 3512, - [3513] = 3417, - [3514] = 3419, - [3515] = 3298, - [3516] = 3516, - [3517] = 3423, - [3518] = 3518, - [3519] = 3432, - [3520] = 3426, - [3521] = 3521, - [3522] = 3441, - [3523] = 3441, - [3524] = 3441, - [3525] = 3424, - [3526] = 3424, - [3527] = 3423, - [3528] = 3441, - [3529] = 3529, - [3530] = 1133, - [3531] = 3386, - [3532] = 3532, - [3533] = 3348, - [3534] = 3534, - [3535] = 1538, - [3536] = 1544, - [3537] = 3327, - [3538] = 3329, - [3539] = 3529, - [3540] = 3432, - [3541] = 3541, - [3542] = 3423, - [3543] = 3543, - [3544] = 3432, - [3545] = 3545, - [3546] = 3488, - [3547] = 3384, - [3548] = 3505, - [3549] = 3441, - [3550] = 3424, - [3551] = 3551, - [3552] = 3552, - [3553] = 699, - [3554] = 3554, - [3555] = 3555, - [3556] = 3556, - [3557] = 151, - [3558] = 3558, - [3559] = 3559, - [3560] = 3560, - [3561] = 3561, - [3562] = 3562, + [3503] = 371, + [3504] = 3234, + [3505] = 2924, + [3506] = 2925, + [3507] = 2973, + [3508] = 3003, + [3509] = 3509, + [3510] = 3206, + [3511] = 3511, + [3512] = 2734, + [3513] = 3051, + [3514] = 369, + [3515] = 2927, + [3516] = 2729, + [3517] = 370, + [3518] = 3028, + [3519] = 3021, + [3520] = 2945, + [3521] = 2704, + [3522] = 364, + [3523] = 2832, + [3524] = 360, + [3525] = 2709, + [3526] = 2719, + [3527] = 2844, + [3528] = 2732, + [3529] = 3426, + [3530] = 3084, + [3531] = 347, + [3532] = 376, + [3533] = 3533, + [3534] = 370, + [3535] = 3535, + [3536] = 2929, + [3537] = 366, + [3538] = 3538, + [3539] = 3087, + [3540] = 3072, + [3541] = 369, + [3542] = 3140, + [3543] = 2844, + [3544] = 2832, + [3545] = 2945, + [3546] = 2724, + [3547] = 2927, + [3548] = 2925, + [3549] = 3549, + [3550] = 3004, + [3551] = 3426, + [3552] = 2738, + [3553] = 377, + [3554] = 3108, + [3555] = 2970, + [3556] = 2929, + [3557] = 348, + [3558] = 3056, + [3559] = 2787, + [3560] = 349, + [3561] = 351, + [3562] = 2791, [3563] = 3563, - [3564] = 3564, - [3565] = 3565, - [3566] = 3566, - [3567] = 3567, - [3568] = 3568, - [3569] = 3564, - [3570] = 3566, - [3571] = 3571, - [3572] = 3572, - [3573] = 3573, + [3564] = 3045, + [3565] = 2924, + [3566] = 2915, + [3567] = 3089, + [3568] = 3106, + [3569] = 2912, + [3570] = 2909, + [3571] = 2908, + [3572] = 2905, + [3573] = 2893, [3574] = 3574, - [3575] = 3575, - [3576] = 3576, - [3577] = 3577, + [3575] = 3501, + [3576] = 2731, + [3577] = 2887, [3578] = 3578, - [3579] = 3579, + [3579] = 2884, [3580] = 3580, [3581] = 3581, - [3582] = 3582, - [3583] = 3583, - [3584] = 3584, - [3585] = 3585, - [3586] = 3586, - [3587] = 3587, - [3588] = 3588, - [3589] = 681, - [3590] = 3590, - [3591] = 695, - [3592] = 3592, - [3593] = 3593, - [3594] = 3594, - [3595] = 3595, - [3596] = 3596, - [3597] = 3597, - [3598] = 3598, - [3599] = 688, - [3600] = 3600, - [3601] = 3601, - [3602] = 3602, - [3603] = 3603, - [3604] = 3604, - [3605] = 3605, + [3582] = 3036, + [3583] = 3016, + [3584] = 364, + [3585] = 2731, + [3586] = 2881, + [3587] = 3133, + [3588] = 2880, + [3589] = 3589, + [3590] = 3138, + [3591] = 2715, + [3592] = 2915, + [3593] = 2867, + [3594] = 2732, + [3595] = 360, + [3596] = 2866, + [3597] = 2853, + [3598] = 2867, + [3599] = 2891, + [3600] = 3107, + [3601] = 357, + [3602] = 2847, + [3603] = 2902, + [3604] = 2843, + [3605] = 3501, [3606] = 3606, - [3607] = 3607, - [3608] = 3608, - [3609] = 3609, - [3610] = 3610, - [3611] = 3611, - [3612] = 3612, - [3613] = 3613, - [3614] = 3614, - [3615] = 3615, - [3616] = 3612, - [3617] = 3617, - [3618] = 3604, - [3619] = 3619, - [3620] = 3620, - [3621] = 3621, - [3622] = 3556, - [3623] = 745, - [3624] = 791, - [3625] = 741, - [3626] = 3575, - [3627] = 3627, - [3628] = 3628, - [3629] = 740, - [3630] = 739, - [3631] = 3631, - [3632] = 3632, - [3633] = 3571, - [3634] = 726, - [3635] = 3552, - [3636] = 785, - [3637] = 3637, - [3638] = 725, - [3639] = 3556, - [3640] = 722, - [3641] = 3641, - [3642] = 3642, - [3643] = 721, - [3644] = 720, - [3645] = 3645, - [3646] = 719, - [3647] = 718, - [3648] = 3648, - [3649] = 3608, - [3650] = 3650, - [3651] = 712, - [3652] = 3652, - [3653] = 697, - [3654] = 3579, - [3655] = 3617, - [3656] = 3656, - [3657] = 3657, - [3658] = 694, - [3659] = 744, - [3660] = 3660, - [3661] = 3661, - [3662] = 753, - [3663] = 754, - [3664] = 3664, - [3665] = 3562, - [3666] = 3666, - [3667] = 3667, - [3668] = 757, - [3669] = 762, - [3670] = 3670, - [3671] = 770, - [3672] = 3559, - [3673] = 3597, - [3674] = 3674, - [3675] = 3596, - [3676] = 3676, - [3677] = 3677, - [3678] = 3558, + [3607] = 3117, + [3608] = 2839, + [3609] = 2912, + [3610] = 2907, + [3611] = 2784, + [3612] = 2989, + [3613] = 2738, + [3614] = 3018, + [3615] = 3538, + [3616] = 2715, + [3617] = 2788, + [3618] = 3070, + [3619] = 3139, + [3620] = 3068, + [3621] = 3501, + [3622] = 2789, + [3623] = 2913, + [3624] = 2913, + [3625] = 2907, + [3626] = 2902, + [3627] = 347, + [3628] = 2891, + [3629] = 3206, + [3630] = 3501, + [3631] = 3019, + [3632] = 3501, + [3633] = 3501, + [3634] = 376, + [3635] = 2724, + [3636] = 3501, + [3637] = 351, + [3638] = 349, + [3639] = 348, + [3640] = 3640, + [3641] = 3034, + [3642] = 3033, + [3643] = 377, + [3644] = 2908, + [3645] = 3003, + [3646] = 366, + [3647] = 3501, + [3648] = 3030, + [3649] = 3024, + [3650] = 3029, + [3651] = 2036, + [3652] = 2812, + [3653] = 3606, + [3654] = 3654, + [3655] = 3054, + [3656] = 2812, + [3657] = 3112, + [3658] = 2789, + [3659] = 3100, + [3660] = 3027, + [3661] = 3509, + [3662] = 3073, + [3663] = 2704, + [3664] = 3023, + [3665] = 2988, + [3666] = 357, + [3667] = 2788, + [3668] = 2729, + [3669] = 2844, + [3670] = 2832, + [3671] = 371, + [3672] = 2945, + [3673] = 2927, + [3674] = 2925, + [3675] = 2924, + [3676] = 2915, + [3677] = 2912, + [3678] = 2909, [3679] = 3679, [3680] = 3680, - [3681] = 3603, - [3682] = 773, - [3683] = 774, - [3684] = 3602, - [3685] = 777, - [3686] = 780, - [3687] = 3687, - [3688] = 3687, - [3689] = 784, - [3690] = 3690, - [3691] = 3571, - [3692] = 3692, - [3693] = 684, - [3694] = 3694, - [3695] = 792, - [3696] = 3696, - [3697] = 3611, - [3698] = 3698, - [3699] = 808, - [3700] = 3559, - [3701] = 700, - [3702] = 682, - [3703] = 3703, - [3704] = 3641, - [3705] = 3612, - [3706] = 683, - [3707] = 3580, - [3708] = 3708, - [3709] = 3597, - [3710] = 3710, - [3711] = 696, - [3712] = 3712, - [3713] = 3713, - [3714] = 3714, - [3715] = 820, - [3716] = 822, - [3717] = 3579, - [3718] = 3718, - [3719] = 176, - [3720] = 3385, - [3721] = 3580, - [3722] = 3722, - [3723] = 3723, + [3681] = 3535, + [3682] = 2908, + [3683] = 3683, + [3684] = 3000, + [3685] = 2719, + [3686] = 2905, + [3687] = 2893, + [3688] = 3688, + [3689] = 3024, + [3690] = 2830, + [3691] = 2887, + [3692] = 3022, + [3693] = 3024, + [3694] = 3234, + [3695] = 2884, + [3696] = 2881, + [3697] = 2880, + [3698] = 2867, + [3699] = 2866, + [3700] = 2891, + [3701] = 2853, + [3702] = 2847, + [3703] = 2723, + [3704] = 3511, + [3705] = 2902, + [3706] = 2907, + [3707] = 2843, + [3708] = 2905, + [3709] = 2893, + [3710] = 2839, + [3711] = 2887, + [3712] = 3050, + [3713] = 2913, + [3714] = 3127, + [3715] = 2727, + [3716] = 2784, + [3717] = 3020, + [3718] = 3059, + [3719] = 2787, + [3720] = 3058, + [3721] = 3057, + [3722] = 3101, + [3723] = 2791, [3724] = 3724, [3725] = 3725, - [3726] = 3581, - [3727] = 3583, - [3728] = 3583, - [3729] = 829, - [3730] = 3596, - [3731] = 3731, - [3732] = 3732, - [3733] = 3294, - [3734] = 3734, - [3735] = 3581, - [3736] = 3597, - [3737] = 3737, - [3738] = 809, - [3739] = 733, - [3740] = 3740, + [3726] = 2884, + [3727] = 2788, + [3728] = 3003, + [3729] = 2881, + [3730] = 3283, + [3731] = 3128, + [3732] = 2880, + [3733] = 2789, + [3734] = 3053, + [3735] = 3126, + [3736] = 3002, + [3737] = 3001, + [3738] = 2909, + [3739] = 2784, + [3740] = 3121, [3741] = 3741, - [3742] = 3742, + [3742] = 2839, [3743] = 3743, - [3744] = 3744, - [3745] = 3582, - [3746] = 842, - [3747] = 803, - [3748] = 801, - [3749] = 3562, - [3750] = 798, - [3751] = 3751, - [3752] = 3752, - [3753] = 3608, - [3754] = 3580, - [3755] = 3755, - [3756] = 3579, - [3757] = 802, - [3758] = 3758, - [3759] = 797, - [3760] = 3690, - [3761] = 796, - [3762] = 3652, - [3763] = 794, - [3764] = 793, + [3744] = 2992, + [3745] = 2735, + [3746] = 2843, + [3747] = 2866, + [3748] = 2853, + [3749] = 3096, + [3750] = 2847, + [3751] = 2812, + [3752] = 3102, + [3753] = 2867, + [3754] = 3754, + [3755] = 2915, + [3756] = 2912, + [3757] = 2909, + [3758] = 2840, + [3759] = 3759, + [3760] = 2789, + [3761] = 2925, + [3762] = 3759, + [3763] = 3024, + [3764] = 3764, [3765] = 3765, - [3766] = 3603, - [3767] = 3767, - [3768] = 786, - [3769] = 732, - [3770] = 845, - [3771] = 790, - [3772] = 787, - [3773] = 734, + [3766] = 2788, + [3767] = 2913, + [3768] = 3768, + [3769] = 2908, + [3770] = 3234, + [3771] = 3759, + [3772] = 3765, + [3773] = 3765, [3774] = 3774, - [3775] = 3775, - [3776] = 716, - [3777] = 715, - [3778] = 704, - [3779] = 714, - [3780] = 3652, - [3781] = 691, - [3782] = 3608, + [3775] = 2844, + [3776] = 3776, + [3777] = 3117, + [3778] = 3768, + [3779] = 3779, + [3780] = 3780, + [3781] = 3764, + [3782] = 3759, [3783] = 3783, [3784] = 3784, - [3785] = 3333, - [3786] = 711, - [3787] = 3322, - [3788] = 3755, - [3789] = 710, - [3790] = 3790, - [3791] = 3758, - [3792] = 709, - [3793] = 708, - [3794] = 815, - [3795] = 816, - [3796] = 3534, - [3797] = 3582, - [3798] = 3798, - [3799] = 3799, - [3800] = 3617, - [3801] = 3801, - [3802] = 3562, - [3803] = 3803, - [3804] = 3612, - [3805] = 3805, - [3806] = 3606, - [3807] = 3807, - [3808] = 3604, - [3809] = 3809, - [3810] = 3810, - [3811] = 3694, - [3812] = 3812, - [3813] = 804, - [3814] = 810, - [3815] = 3815, - [3816] = 812, - [3817] = 3817, - [3818] = 3556, - [3819] = 814, - [3820] = 3568, - [3821] = 3821, - [3822] = 3562, - [3823] = 3823, - [3824] = 3596, - [3825] = 3825, - [3826] = 188, - [3827] = 3827, - [3828] = 3568, - [3829] = 3559, - [3830] = 737, - [3831] = 3831, - [3832] = 3575, - [3833] = 3833, - [3834] = 735, - [3835] = 3810, - [3836] = 3836, - [3837] = 3837, - [3838] = 3606, - [3839] = 3839, - [3840] = 3840, - [3841] = 3581, - [3842] = 3842, - [3843] = 3843, - [3844] = 3611, - [3845] = 3583, - [3846] = 749, - [3847] = 3318, - [3848] = 3575, - [3849] = 3692, - [3850] = 3850, - [3851] = 3850, - [3852] = 3627, - [3853] = 3556, - [3854] = 3854, - [3855] = 3604, - [3856] = 3443, - [3857] = 3857, - [3858] = 3444, + [3785] = 3785, + [3786] = 3786, + [3787] = 3054, + [3788] = 2787, + [3789] = 3426, + [3790] = 2791, + [3791] = 3220, + [3792] = 3792, + [3793] = 2924, + [3794] = 3759, + [3795] = 2927, + [3796] = 959, + [3797] = 2988, + [3798] = 2784, + [3799] = 3206, + [3800] = 3785, + [3801] = 3785, + [3802] = 3785, + [3803] = 3764, + [3804] = 3768, + [3805] = 2812, + [3806] = 3765, + [3807] = 3759, + [3808] = 3808, + [3809] = 3073, + [3810] = 2830, + [3811] = 2907, + [3812] = 3117, + [3813] = 2945, + [3814] = 2839, + [3815] = 2905, + [3816] = 2843, + [3817] = 3054, + [3818] = 3206, + [3819] = 3759, + [3820] = 2847, + [3821] = 3759, + [3822] = 3765, + [3823] = 3764, + [3824] = 2902, + [3825] = 3768, + [3826] = 3826, + [3827] = 2014, + [3828] = 3785, + [3829] = 3764, + [3830] = 3765, + [3831] = 3765, + [3832] = 3768, + [3833] = 3826, + [3834] = 3206, + [3835] = 3768, + [3836] = 2832, + [3837] = 3768, + [3838] = 2891, + [3839] = 3785, + [3840] = 2853, + [3841] = 3764, + [3842] = 3003, + [3843] = 3765, + [3844] = 3768, + [3845] = 3764, + [3846] = 2893, + [3847] = 2887, + [3848] = 3785, + [3849] = 2132, + [3850] = 2884, + [3851] = 3764, + [3852] = 2881, + [3853] = 3206, + [3854] = 2866, + [3855] = 2880, + [3856] = 3785, + [3857] = 2929, + [3858] = 3858, [3859] = 3859, [3860] = 3860, [3861] = 3861, [3862] = 3862, - [3863] = 3862, + [3863] = 359, [3864] = 3864, [3865] = 3865, [3866] = 3866, [3867] = 3867, - [3868] = 3862, + [3868] = 3206, [3869] = 3869, [3870] = 3870, [3871] = 3871, - [3872] = 3872, + [3872] = 3273, [3873] = 3873, [3874] = 3874, - [3875] = 3875, - [3876] = 3876, - [3877] = 3866, - [3878] = 3860, - [3879] = 3860, + [3875] = 3117, + [3876] = 353, + [3877] = 3003, + [3878] = 3024, + [3879] = 3879, [3880] = 3880, [3881] = 3881, [3882] = 3882, - [3883] = 3870, + [3883] = 2929, [3884] = 3884, - [3885] = 3881, - [3886] = 3886, - [3887] = 3875, - [3888] = 3860, - [3889] = 3876, + [3885] = 3885, + [3886] = 3117, + [3887] = 3234, + [3888] = 3888, + [3889] = 3889, [3890] = 3890, - [3891] = 3891, - [3892] = 3861, - [3893] = 3861, - [3894] = 3874, - [3895] = 3860, - [3896] = 3896, - [3897] = 3875, - [3898] = 3874, - [3899] = 3873, - [3900] = 3871, + [3891] = 342, + [3892] = 2840, + [3893] = 3893, + [3894] = 3894, + [3895] = 341, + [3896] = 959, + [3897] = 2725, + [3898] = 3898, + [3899] = 3899, + [3900] = 3900, [3901] = 3901, [3902] = 3902, - [3903] = 3860, - [3904] = 3904, - [3905] = 3876, - [3906] = 3866, - [3907] = 3891, + [3903] = 3533, + [3904] = 996, + [3905] = 3905, + [3906] = 356, + [3907] = 3907, [3908] = 3908, - [3909] = 3909, - [3910] = 3910, + [3909] = 2147, + [3910] = 3901, [3911] = 3911, [3912] = 3912, [3913] = 3913, [3914] = 3914, - [3915] = 3867, + [3915] = 3915, [3916] = 3916, - [3917] = 3866, - [3918] = 3866, - [3919] = 3867, - [3920] = 3920, - [3921] = 3896, + [3917] = 359, + [3918] = 358, + [3919] = 3054, + [3920] = 359, + [3921] = 3921, [3922] = 3922, - [3923] = 3871, - [3924] = 3867, - [3925] = 3873, - [3926] = 3904, - [3927] = 3862, + [3923] = 3923, + [3924] = 3924, + [3925] = 2142, + [3926] = 3902, + [3927] = 3927, [3928] = 3928, - [3929] = 3882, - [3930] = 3862, - [3931] = 3875, - [3932] = 3874, - [3933] = 3874, - [3934] = 3873, - [3935] = 3871, - [3936] = 3881, + [3929] = 3929, + [3930] = 3905, + [3931] = 3931, + [3932] = 3932, + [3933] = 3933, + [3934] = 3911, + [3935] = 3935, + [3936] = 2148, [3937] = 3937, - [3938] = 3938, - [3939] = 3875, - [3940] = 3867, - [3941] = 3861, + [3938] = 2140, + [3939] = 352, + [3940] = 3940, + [3941] = 3941, [3942] = 3942, - [3943] = 3943, - [3944] = 3871, - [3945] = 3890, - [3946] = 3946, - [3947] = 3880, - [3948] = 3948, - [3949] = 3873, - [3950] = 3950, - [3951] = 3904, - [3952] = 3952, + [3943] = 350, + [3944] = 2929, + [3945] = 3945, + [3946] = 341, + [3947] = 3935, + [3948] = 344, + [3949] = 3949, + [3950] = 2146, + [3951] = 3951, + [3952] = 3923, [3953] = 3953, - [3954] = 3954, - [3955] = 3955, - [3956] = 3896, - [3957] = 3871, - [3958] = 3904, - [3959] = 3871, + [3954] = 342, + [3955] = 3927, + [3956] = 3913, + [3957] = 3900, + [3958] = 3958, + [3959] = 3959, [3960] = 3960, - [3961] = 3873, - [3962] = 3874, - [3963] = 3875, - [3964] = 3873, - [3965] = 3965, - [3966] = 3966, - [3967] = 3967, - [3968] = 3874, - [3969] = 3875, - [3970] = 3861, - [3971] = 3971, - [3972] = 3880, - [3973] = 3973, + [3961] = 3961, + [3962] = 3959, + [3963] = 2929, + [3964] = 3964, + [3965] = 3073, + [3966] = 3915, + [3967] = 2774, + [3968] = 3968, + [3969] = 3969, + [3970] = 2929, + [3971] = 2988, + [3972] = 3972, + [3973] = 2150, [3974] = 3974, - [3975] = 3882, - [3976] = 153, - [3977] = 3904, - [3978] = 3871, - [3979] = 3873, - [3980] = 3874, - [3981] = 3875, - [3982] = 3861, - [3983] = 3983, - [3984] = 3984, - [3985] = 3870, - [3986] = 3872, - [3987] = 3871, - [3988] = 3873, - [3989] = 3989, - [3990] = 3874, - [3991] = 3991, - [3992] = 3875, - [3993] = 3904, - [3994] = 3994, - [3995] = 3955, - [3996] = 3867, - [3997] = 3997, - [3998] = 3998, - [3999] = 3999, - [4000] = 4000, - [4001] = 3974, - [4002] = 4002, - [4003] = 4003, - [4004] = 4004, - [4005] = 4005, - [4006] = 4006, - [4007] = 4007, - [4008] = 4008, - [4009] = 4009, - [4010] = 4010, - [4011] = 4011, - [4012] = 3349, - [4013] = 4013, - [4014] = 4014, - [4015] = 4015, - [4016] = 4016, - [4017] = 4017, - [4018] = 4018, - [4019] = 4019, - [4020] = 4020, - [4021] = 4021, - [4022] = 4022, - [4023] = 4023, - [4024] = 4024, - [4025] = 4025, - [4026] = 4026, - [4027] = 4027, - [4028] = 4028, - [4029] = 4029, - [4030] = 4014, - [4031] = 4031, - [4032] = 4032, - [4033] = 4033, - [4034] = 4034, - [4035] = 4035, - [4036] = 4018, - [4037] = 4037, - [4038] = 4038, - [4039] = 4039, - [4040] = 4040, - [4041] = 4041, - [4042] = 4042, - [4043] = 4043, - [4044] = 4044, - [4045] = 4045, - [4046] = 4046, - [4047] = 4047, - [4048] = 4048, - [4049] = 4049, - [4050] = 4013, - [4051] = 4051, - [4052] = 4052, - [4053] = 4053, - [4054] = 4009, - [4055] = 4055, - [4056] = 4056, - [4057] = 4057, - [4058] = 4058, - [4059] = 4059, - [4060] = 4060, - [4061] = 4061, - [4062] = 4046, - [4063] = 4063, - [4064] = 4043, - [4065] = 4065, - [4066] = 4066, - [4067] = 4067, - [4068] = 4068, - [4069] = 4069, - [4070] = 4070, - [4071] = 4071, - [4072] = 4072, - [4073] = 4073, - [4074] = 4074, - [4075] = 4075, - [4076] = 4076, - [4077] = 4077, - [4078] = 4078, - [4079] = 4079, - [4080] = 4080, - [4081] = 3799, - [4082] = 3271, - [4083] = 4083, - [4084] = 3273, - [4085] = 4031, - [4086] = 4039, - [4087] = 4087, - [4088] = 1631, - [4089] = 4089, - [4090] = 1602, - [4091] = 4091, - [4092] = 4092, - [4093] = 4093, - [4094] = 4094, - [4095] = 4044, - [4096] = 4077, - [4097] = 4097, - [4098] = 4098, - [4099] = 4004, - [4100] = 4100, - [4101] = 4101, - [4102] = 4057, - [4103] = 4103, - [4104] = 685, - [4105] = 4105, - [4106] = 4106, - [4107] = 4107, - [4108] = 4108, - [4109] = 4011, - [4110] = 4008, - [4111] = 4005, - [4112] = 4112, - [4113] = 4010, - [4114] = 4114, - [4115] = 4105, - [4116] = 4116, - [4117] = 4087, - [4118] = 4118, - [4119] = 4053, - [4120] = 4077, - [4121] = 4121, - [4122] = 4122, - [4123] = 4123, - [4124] = 4124, - [4125] = 4125, - [4126] = 4126, - [4127] = 4127, - [4128] = 4125, - [4129] = 4019, - [4130] = 4067, - [4131] = 4131, - [4132] = 3372, - [4133] = 3354, - [4134] = 4013, - [4135] = 4014, - [4136] = 4056, - [4137] = 4137, - [4138] = 4014, - [4139] = 4092, - [4140] = 4140, - [4141] = 4101, - [4142] = 4122, - [4143] = 4140, - [4144] = 4144, - [4145] = 4013, - [4146] = 4107, - [4147] = 4147, - [4148] = 4125, - [4149] = 3351, - [4150] = 4019, - [4151] = 4151, - [4152] = 4152, - [4153] = 4153, - [4154] = 4154, - [4155] = 4155, - [4156] = 4126, - [4157] = 4157, - [4158] = 4158, - [4159] = 4126, - [4160] = 4019, - [4161] = 4105, - [4162] = 4019, - [4163] = 4087, - [4164] = 4164, - [4165] = 4165, - [4166] = 4166, - [4167] = 4167, - [4168] = 4168, - [4169] = 4155, - [4170] = 4170, - [4171] = 4171, - [4172] = 4125, - [4173] = 4067, - [4174] = 4126, + [3975] = 353, + [3976] = 353, + [3977] = 3426, + [3978] = 3978, + [3979] = 3979, + [3980] = 3942, + [3981] = 3981, + [3982] = 353, + [3983] = 1049, + [3984] = 363, + [3985] = 1035, + [3986] = 1034, + [3987] = 1027, + [3988] = 996, + [3989] = 346, + [3990] = 344, + [3991] = 1032, + [3992] = 1033, + [3993] = 3993, + [3994] = 1013, + [3995] = 352, + [3996] = 350, + [3997] = 3993, + [3998] = 352, + [3999] = 3993, + [4000] = 3993, + [4001] = 359, + [4002] = 3993, + [4003] = 359, + [4004] = 1047, + [4005] = 3993, + [4006] = 1011, + [4007] = 356, + [4008] = 353, + [4009] = 358, + [4010] = 1044, + [4011] = 1030, + [4012] = 1039, + [4013] = 350, + [4014] = 352, + [4015] = 3993, + [4016] = 353, + [4017] = 1022, + [4018] = 355, + [4019] = 1013, + [4020] = 3993, + [4021] = 359, + [4022] = 350, + [4023] = 1024, + [4024] = 1041, + [4025] = 3993, + [4026] = 354, + [4027] = 1046, + [4028] = 1030, + [4029] = 1058, + [4030] = 1163, + [4031] = 1088, + [4032] = 1054, + [4033] = 1046, + [4034] = 1049, + [4035] = 1022, + [4036] = 1194, + [4037] = 1195, + [4038] = 1196, + [4039] = 1197, + [4040] = 1198, + [4041] = 1199, + [4042] = 1200, + [4043] = 1201, + [4044] = 1202, + [4045] = 1203, + [4046] = 1204, + [4047] = 1205, + [4048] = 1206, + [4049] = 1207, + [4050] = 1208, + [4051] = 1209, + [4052] = 1210, + [4053] = 1211, + [4054] = 1162, + [4055] = 352, + [4056] = 1126, + [4057] = 362, + [4058] = 1124, + [4059] = 1123, + [4060] = 1146, + [4061] = 350, + [4062] = 1118, + [4063] = 1116, + [4064] = 1212, + [4065] = 1011, + [4066] = 1213, + [4067] = 1214, + [4068] = 1057, + [4069] = 1052, + [4070] = 1215, + [4071] = 1216, + [4072] = 1217, + [4073] = 1115, + [4074] = 1218, + [4075] = 1219, + [4076] = 1059, + [4077] = 1111, + [4078] = 1114, + [4079] = 1069, + [4080] = 1060, + [4081] = 1061, + [4082] = 1062, + [4083] = 1113, + [4084] = 1105, + [4085] = 1063, + [4086] = 1109, + [4087] = 1064, + [4088] = 1108, + [4089] = 1065, + [4090] = 1074, + [4091] = 1066, + [4092] = 1067, + [4093] = 1106, + [4094] = 1068, + [4095] = 1104, + [4096] = 359, + [4097] = 1168, + [4098] = 1101, + [4099] = 1047, + [4100] = 1138, + [4101] = 1167, + [4102] = 1137, + [4103] = 1090, + [4104] = 1100, + [4105] = 1136, + [4106] = 1039, + [4107] = 1099, + [4108] = 1098, + [4109] = 1129, + [4110] = 1097, + [4111] = 1092, + [4112] = 1119, + [4113] = 1091, + [4114] = 1044, + [4115] = 1221, + [4116] = 1223, + [4117] = 1089, + [4118] = 1165, + [4119] = 1086, + [4120] = 1085, + [4121] = 1081, + [4122] = 1225, + [4123] = 1053, + [4124] = 354, + [4125] = 1226, + [4126] = 355, + [4127] = 1107, + [4128] = 353, + [4129] = 350, + [4130] = 1152, + [4131] = 1096, + [4132] = 1095, + [4133] = 352, + [4134] = 1177, + [4135] = 1181, + [4136] = 1182, + [4137] = 1183, + [4138] = 1094, + [4139] = 1093, + [4140] = 1103, + [4141] = 1184, + [4142] = 1075, + [4143] = 1185, + [4144] = 1076, + [4145] = 1077, + [4146] = 1120, + [4147] = 1186, + [4148] = 361, + [4149] = 1079, + [4150] = 1102, + [4151] = 1228, + [4152] = 1230, + [4153] = 1231, + [4154] = 1233, + [4155] = 1078, + [4156] = 1234, + [4157] = 1235, + [4158] = 1236, + [4159] = 1237, + [4160] = 1238, + [4161] = 1239, + [4162] = 1240, + [4163] = 1073, + [4164] = 1072, + [4165] = 1024, + [4166] = 1071, + [4167] = 1070, + [4168] = 1241, + [4169] = 1122, + [4170] = 350, + [4171] = 1242, + [4172] = 1243, + [4173] = 1244, + [4174] = 1245, [4175] = 4175, - [4176] = 4176, - [4177] = 4177, - [4178] = 4178, - [4179] = 4179, - [4180] = 4116, - [4181] = 4144, - [4182] = 4118, - [4183] = 4103, - [4184] = 4184, - [4185] = 4185, - [4186] = 4186, - [4187] = 4144, - [4188] = 4188, - [4189] = 4189, - [4190] = 4175, - [4191] = 4004, - [4192] = 4177, - [4193] = 4186, - [4194] = 4194, - [4195] = 4118, - [4196] = 4049, - [4197] = 4107, - [4198] = 4013, - [4199] = 4059, - [4200] = 4014, - [4201] = 4201, - [4202] = 4202, - [4203] = 4019, - [4204] = 4204, - [4205] = 3610, - [4206] = 4039, - [4207] = 4076, - [4208] = 4208, - [4209] = 4155, - [4210] = 4210, - [4211] = 4014, - [4212] = 4176, - [4213] = 4213, - [4214] = 3703, - [4215] = 4215, - [4216] = 4216, - [4217] = 4013, - [4218] = 4218, - [4219] = 4219, - [4220] = 4220, - [4221] = 4221, - [4222] = 4222, - [4223] = 4155, + [4176] = 1246, + [4177] = 1056, + [4178] = 1247, + [4179] = 1248, + [4180] = 1041, + [4181] = 1249, + [4182] = 1034, + [4183] = 1128, + [4184] = 1134, + [4185] = 1112, + [4186] = 1222, + [4187] = 1250, + [4188] = 1084, + [4189] = 1179, + [4190] = 353, + [4191] = 1178, + [4192] = 346, + [4193] = 363, + [4194] = 1227, + [4195] = 1080, + [4196] = 359, + [4197] = 352, + [4198] = 1229, + [4199] = 1188, + [4200] = 1187, + [4201] = 363, + [4202] = 346, + [4203] = 1035, + [4204] = 1251, + [4205] = 1027, + [4206] = 1032, + [4207] = 1033, + [4208] = 1131, + [4209] = 1087, + [4210] = 1169, + [4211] = 1083, + [4212] = 1189, + [4213] = 1082, + [4214] = 1190, + [4215] = 1192, + [4216] = 1055, + [4217] = 1193, + [4218] = 1051, + [4219] = 1252, + [4220] = 1067, + [4221] = 1118, + [4222] = 1079, + [4223] = 1096, [4224] = 4224, - [4225] = 4063, - [4226] = 4186, - [4227] = 4032, - [4228] = 4228, - [4229] = 4229, - [4230] = 4230, - [4231] = 4231, - [4232] = 4125, - [4233] = 4233, - [4234] = 4234, - [4235] = 4235, - [4236] = 4019, - [4237] = 4122, - [4238] = 4126, - [4239] = 4011, - [4240] = 4155, + [4225] = 4225, + [4226] = 1077, + [4227] = 1095, + [4228] = 1076, + [4229] = 1177, + [4230] = 1181, + [4231] = 1182, + [4232] = 1183, + [4233] = 1184, + [4234] = 1075, + [4235] = 1185, + [4236] = 1223, + [4237] = 1244, + [4238] = 1245, + [4239] = 4239, + [4240] = 1069, [4241] = 4241, - [4242] = 4242, - [4243] = 4243, + [4242] = 1094, + [4243] = 1246, [4244] = 4244, - [4245] = 4204, - [4246] = 4037, + [4245] = 1093, + [4246] = 352, [4247] = 4247, [4248] = 4248, - [4249] = 4249, + [4249] = 1178, [4250] = 4250, - [4251] = 4251, - [4252] = 4252, - [4253] = 4253, - [4254] = 4254, + [4251] = 1179, + [4252] = 1074, + [4253] = 1105, + [4254] = 1247, [4255] = 4255, - [4256] = 4250, - [4257] = 4250, - [4258] = 4049, - [4259] = 4252, - [4260] = 4253, - [4261] = 4261, - [4262] = 4254, - [4263] = 4059, - [4264] = 4122, - [4265] = 4252, + [4256] = 1248, + [4257] = 4257, + [4258] = 4258, + [4259] = 1186, + [4260] = 4260, + [4261] = 1080, + [4262] = 4262, + [4263] = 4263, + [4264] = 4264, + [4265] = 1066, [4266] = 4266, - [4267] = 4267, - [4268] = 4007, - [4269] = 4122, - [4270] = 4253, - [4271] = 4194, - [4272] = 4126, - [4273] = 4178, - [4274] = 4125, - [4275] = 4275, - [4276] = 4276, - [4277] = 4106, - [4278] = 4278, - [4279] = 4013, - [4280] = 4014, - [4281] = 4254, - [4282] = 4282, + [4267] = 1065, + [4268] = 4268, + [4269] = 4269, + [4270] = 4270, + [4271] = 4271, + [4272] = 4272, + [4273] = 4273, + [4274] = 1064, + [4275] = 1228, + [4276] = 1230, + [4277] = 1053, + [4278] = 1231, + [4279] = 4279, + [4280] = 4280, + [4281] = 1233, + [4282] = 1063, [4283] = 4283, - [4284] = 4284, - [4285] = 4285, - [4286] = 4286, - [4287] = 4287, - [4288] = 4288, + [4284] = 1234, + [4285] = 1235, + [4286] = 361, + [4287] = 1062, + [4288] = 1236, [4289] = 4289, - [4290] = 4290, + [4290] = 1061, [4291] = 4291, [4292] = 4292, [4293] = 4293, [4294] = 4294, - [4295] = 4295, - [4296] = 4296, - [4297] = 2372, + [4295] = 1060, + [4296] = 1059, + [4297] = 4297, [4298] = 4298, - [4299] = 2366, - [4300] = 4300, + [4299] = 4299, + [4300] = 1219, [4301] = 4301, - [4302] = 4292, - [4303] = 4303, - [4304] = 4304, - [4305] = 4305, - [4306] = 4294, - [4307] = 4294, - [4308] = 4308, - [4309] = 2410, - [4310] = 4310, - [4311] = 2403, - [4312] = 4312, - [4313] = 4313, + [4302] = 4302, + [4303] = 1218, + [4304] = 1249, + [4305] = 1225, + [4306] = 1237, + [4307] = 1226, + [4308] = 1238, + [4309] = 4309, + [4310] = 1239, + [4311] = 4311, + [4312] = 350, + [4313] = 1056, [4314] = 4314, - [4315] = 4315, - [4316] = 4316, - [4317] = 2386, - [4318] = 4318, - [4319] = 2384, - [4320] = 4320, - [4321] = 4321, - [4322] = 2378, - [4323] = 4323, - [4324] = 4324, - [4325] = 4325, - [4326] = 2377, - [4327] = 2374, - [4328] = 2492, - [4329] = 2500, - [4330] = 2504, - [4331] = 2486, - [4332] = 4332, + [4315] = 1070, + [4316] = 1071, + [4317] = 1072, + [4318] = 1073, + [4319] = 1078, + [4320] = 1120, + [4321] = 1250, + [4322] = 1090, + [4323] = 1081, + [4324] = 1085, + [4325] = 1086, + [4326] = 1251, + [4327] = 1089, + [4328] = 1091, + [4329] = 1119, + [4330] = 1092, + [4331] = 1097, + [4332] = 1098, [4333] = 4333, - [4334] = 4334, - [4335] = 2390, - [4336] = 4336, - [4337] = 4337, - [4338] = 4338, + [4334] = 1099, + [4335] = 1087, + [4336] = 1136, + [4337] = 1137, + [4338] = 1138, [4339] = 4339, - [4340] = 4340, - [4341] = 2398, - [4342] = 4342, - [4343] = 4343, - [4344] = 4344, + [4340] = 1101, + [4341] = 4341, + [4342] = 1217, + [4343] = 1104, + [4344] = 1106, [4345] = 4345, - [4346] = 4346, - [4347] = 4347, - [4348] = 4348, - [4349] = 4315, - [4350] = 4334, - [4351] = 2756, - [4352] = 4352, - [4353] = 4353, - [4354] = 4354, + [4346] = 1107, + [4347] = 1108, + [4348] = 1109, + [4349] = 1113, + [4350] = 1114, + [4351] = 4351, + [4352] = 1115, + [4353] = 1116, + [4354] = 1210, [4355] = 4355, - [4356] = 4356, - [4357] = 4357, - [4358] = 2709, - [4359] = 4359, - [4360] = 4360, - [4361] = 2389, - [4362] = 2399, - [4363] = 2381, - [4364] = 4364, - [4365] = 4365, + [4356] = 1216, + [4357] = 363, + [4358] = 1084, + [4359] = 1215, + [4360] = 1146, + [4361] = 1111, + [4362] = 1052, + [4363] = 1123, + [4364] = 1124, + [4365] = 1057, [4366] = 4366, - [4367] = 2414, - [4368] = 2387, - [4369] = 4369, + [4367] = 1214, + [4368] = 346, + [4369] = 1126, [4370] = 4370, - [4371] = 4295, - [4372] = 4293, - [4373] = 4291, - [4374] = 4289, - [4375] = 4375, + [4371] = 4371, + [4372] = 1213, + [4373] = 1227, + [4374] = 1212, + [4375] = 1058, [4376] = 4376, - [4377] = 2412, + [4377] = 4377, [4378] = 4378, - [4379] = 4379, + [4379] = 1211, [4380] = 4380, - [4381] = 2409, - [4382] = 4382, - [4383] = 4383, + [4381] = 1252, + [4382] = 1162, + [4383] = 1209, [4384] = 4384, - [4385] = 4292, + [4385] = 4385, [4386] = 4386, - [4387] = 4387, - [4388] = 3385, - [4389] = 4389, - [4390] = 4288, - [4391] = 4391, - [4392] = 4392, - [4393] = 4393, - [4394] = 4394, - [4395] = 4395, - [4396] = 4396, - [4397] = 4364, - [4398] = 2392, - [4399] = 4399, - [4400] = 4294, - [4401] = 4365, - [4402] = 4402, - [4403] = 4403, - [4404] = 4404, - [4405] = 4392, - [4406] = 4406, - [4407] = 4366, - [4408] = 4408, - [4409] = 4409, - [4410] = 4410, - [4411] = 2413, - [4412] = 4412, - [4413] = 4413, - [4414] = 2408, - [4415] = 4415, - [4416] = 4416, - [4417] = 4417, - [4418] = 4418, - [4419] = 4304, - [4420] = 4287, - [4421] = 4421, + [4387] = 1163, + [4388] = 1129, + [4389] = 1165, + [4390] = 1167, + [4391] = 1168, + [4392] = 1169, + [4393] = 1131, + [4394] = 1187, + [4395] = 1188, + [4396] = 1229, + [4397] = 4397, + [4398] = 4398, + [4399] = 1208, + [4400] = 1207, + [4401] = 1240, + [4402] = 1083, + [4403] = 1189, + [4404] = 1082, + [4405] = 1206, + [4406] = 1205, + [4407] = 1222, + [4408] = 1112, + [4409] = 1241, + [4410] = 1134, + [4411] = 1128, + [4412] = 1122, + [4413] = 1190, + [4414] = 1102, + [4415] = 1103, + [4416] = 1152, + [4417] = 1054, + [4418] = 1194, + [4419] = 4419, + [4420] = 1195, + [4421] = 1192, [4422] = 4422, - [4423] = 4423, - [4424] = 4424, - [4425] = 4425, - [4426] = 4426, - [4427] = 4427, + [4423] = 1242, + [4424] = 362, + [4425] = 1100, + [4426] = 1068, + [4427] = 1243, [4428] = 4428, [4429] = 4429, - [4430] = 4430, - [4431] = 4314, - [4432] = 4315, - [4433] = 4332, - [4434] = 4334, - [4435] = 4435, - [4436] = 4342, - [4437] = 4343, - [4438] = 4438, - [4439] = 4439, - [4440] = 4379, - [4441] = 4441, - [4442] = 4442, - [4443] = 4396, + [4430] = 1088, + [4431] = 1055, + [4432] = 1196, + [4433] = 1221, + [4434] = 1193, + [4435] = 1051, + [4436] = 1197, + [4437] = 1198, + [4438] = 1199, + [4439] = 1200, + [4440] = 1201, + [4441] = 1202, + [4442] = 1203, + [4443] = 1204, [4444] = 4444, [4445] = 4445, [4446] = 4446, [4447] = 4447, [4448] = 4448, - [4449] = 4402, - [4450] = 3534, - [4451] = 861, - [4452] = 4452, - [4453] = 4453, - [4454] = 4454, - [4455] = 4455, - [4456] = 4456, - [4457] = 4364, - [4458] = 4399, - [4459] = 4365, - [4460] = 4366, - [4461] = 863, - [4462] = 4410, - [4463] = 4463, - [4464] = 4379, - [4465] = 4422, + [4449] = 4449, + [4450] = 4449, + [4451] = 4449, + [4452] = 4449, + [4453] = 4449, + [4454] = 4449, + [4455] = 4448, + [4456] = 4448, + [4457] = 4457, + [4458] = 4448, + [4459] = 4449, + [4460] = 4448, + [4461] = 4448, + [4462] = 4449, + [4463] = 4448, + [4464] = 4448, + [4465] = 4465, [4466] = 4466, - [4467] = 4423, - [4468] = 4468, - [4469] = 4379, + [4467] = 4467, + [4468] = 4175, + [4469] = 4469, [4470] = 4470, [4471] = 4471, [4472] = 4472, - [4473] = 4288, - [4474] = 4295, + [4473] = 4473, + [4474] = 4474, [4475] = 4475, - [4476] = 4293, - [4477] = 4295, - [4478] = 4291, - [4479] = 4402, - [4480] = 4289, - [4481] = 4375, + [4476] = 4476, + [4477] = 4477, + [4478] = 4478, + [4479] = 4479, + [4480] = 4480, + [4481] = 4481, [4482] = 4482, - [4483] = 4284, - [4484] = 4484, - [4485] = 4396, - [4486] = 4486, - [4487] = 4293, + [4483] = 4447, + [4484] = 2946, + [4485] = 4255, + [4486] = 4445, + [4487] = 4262, [4488] = 4488, - [4489] = 4291, - [4490] = 4289, - [4491] = 4444, - [4492] = 4402, - [4493] = 4402, + [4489] = 2824, + [4490] = 4490, + [4491] = 4491, + [4492] = 4492, + [4493] = 4493, [4494] = 4494, - [4495] = 4445, + [4495] = 4495, [4496] = 4496, - [4497] = 4288, - [4498] = 4498, - [4499] = 4499, - [4500] = 4447, - [4501] = 4501, - [4502] = 4408, - [4503] = 4392, - [4504] = 4353, - [4505] = 4384, - [4506] = 4506, - [4507] = 4507, - [4508] = 4323, - [4509] = 4396, - [4510] = 4376, - [4511] = 4511, - [4512] = 4512, - [4513] = 4513, - [4514] = 2394, - [4515] = 4515, - [4516] = 4444, - [4517] = 4494, - [4518] = 4513, - [4519] = 4396, - [4520] = 4447, - [4521] = 4521, - [4522] = 4522, - [4523] = 4523, - [4524] = 4522, - [4525] = 4525, - [4526] = 4523, - [4527] = 4527, - [4528] = 4528, - [4529] = 4523, - [4530] = 4375, - [4531] = 4527, - [4532] = 4532, - [4533] = 4533, - [4534] = 4534, - [4535] = 4482, - [4536] = 4536, - [4537] = 4537, - [4538] = 4538, - [4539] = 4539, - [4540] = 4540, - [4541] = 4541, + [4497] = 2147, + [4498] = 2150, + [4499] = 2726, + [4500] = 2722, + [4501] = 2721, + [4502] = 2142, + [4503] = 354, + [4504] = 355, + [4505] = 2919, + [4506] = 2828, + [4507] = 2898, + [4508] = 2831, + [4509] = 2961, + [4510] = 2833, + [4511] = 2959, + [4512] = 354, + [4513] = 2962, + [4514] = 2964, + [4515] = 2829, + [4516] = 2965, + [4517] = 2906, + [4518] = 2967, + [4519] = 2834, + [4520] = 355, + [4521] = 2960, + [4522] = 2958, + [4523] = 2897, + [4524] = 2948, + [4525] = 2947, + [4526] = 2835, + [4527] = 2778, + [4528] = 2837, + [4529] = 2922, + [4530] = 2852, + [4531] = 2855, + [4532] = 2856, + [4533] = 2859, + [4534] = 2717, + [4535] = 2823, + [4536] = 2903, + [4537] = 2904, + [4538] = 2900, + [4539] = 2914, + [4540] = 2911, + [4541] = 2901, [4542] = 4542, - [4543] = 4543, - [4544] = 4544, - [4545] = 4283, + [4543] = 4542, + [4544] = 4542, + [4545] = 4542, [4546] = 4542, - [4547] = 3950, - [4548] = 4548, - [4549] = 4488, - [4550] = 4475, - [4551] = 4551, - [4552] = 4552, - [4553] = 4421, - [4554] = 4379, - [4555] = 3443, - [4556] = 3444, - [4557] = 4557, - [4558] = 4305, - [4559] = 4304, - [4560] = 4421, - [4561] = 4287, - [4562] = 4379, - [4563] = 4466, - [4564] = 4284, - [4565] = 4441, - [4566] = 4396, - [4567] = 4484, - [4568] = 4292, - [4569] = 4323, - [4570] = 4353, - [4571] = 4378, - [4572] = 4380, - [4573] = 4316, - [4574] = 4314, - [4575] = 4402, - [4576] = 4315, - [4577] = 4332, - [4578] = 4334, - [4579] = 4384, - [4580] = 4342, - [4581] = 4343, - [4582] = 4386, - [4583] = 4347, - [4584] = 4348, - [4585] = 4389, - [4586] = 4586, - [4587] = 4393, - [4588] = 4394, - [4589] = 4408, - [4590] = 4540, - [4591] = 4416, - [4592] = 4288, - [4593] = 4486, + [4547] = 2776, + [4548] = 4542, + [4549] = 4542, + [4550] = 2184, + [4551] = 1080, + [4552] = 2185, + [4553] = 2182, + [4554] = 1084, + [4555] = 2781, + [4556] = 2167, + [4557] = 1090, + [4558] = 2785, + [4559] = 2153, + [4560] = 2161, + [4561] = 2838, + [4562] = 1088, + [4563] = 1074, + [4564] = 2923, + [4565] = 2187, + [4566] = 2160, + [4567] = 2159, + [4568] = 2726, + [4569] = 2189, + [4570] = 2188, + [4571] = 2722, + [4572] = 2721, + [4573] = 2824, + [4574] = 2946, + [4575] = 2772, + [4576] = 2760, + [4577] = 2754, + [4578] = 2756, + [4579] = 2769, + [4580] = 2773, + [4581] = 2919, + [4582] = 2858, + [4583] = 2803, + [4584] = 2804, + [4585] = 2856, + [4586] = 2786, + [4587] = 4587, + [4588] = 4588, + [4589] = 2936, + [4590] = 4588, + [4591] = 4587, + [4592] = 2836, + [4593] = 4593, [4594] = 4594, [4595] = 4595, - [4596] = 4534, - [4597] = 4537, - [4598] = 4539, - [4599] = 4541, - [4600] = 4543, - [4601] = 4601, - [4602] = 4551, - [4603] = 4364, - [4604] = 4399, - [4605] = 4532, - [4606] = 4365, - [4607] = 4366, - [4608] = 4527, - [4609] = 4409, - [4610] = 4413, - [4611] = 4410, - [4612] = 4422, - [4613] = 4423, - [4614] = 4442, - [4615] = 4615, - [4616] = 4448, - [4617] = 4521, - [4618] = 4536, - [4619] = 4536, - [4620] = 4452, - [4621] = 4621, - [4622] = 4499, - [4623] = 4435, - [4624] = 4454, - [4625] = 4625, - [4626] = 4486, - [4627] = 4627, - [4628] = 4628, - [4629] = 4629, - [4630] = 4630, - [4631] = 4295, - [4632] = 4484, - [4633] = 4293, - [4634] = 4291, - [4635] = 4289, - [4636] = 4636, - [4637] = 4375, - [4638] = 4392, - [4639] = 4455, - [4640] = 4482, - [4641] = 4538, - [4642] = 4544, - [4643] = 4533, - [4644] = 4644, - [4645] = 4645, - [4646] = 4646, - [4647] = 4647, - [4648] = 4648, - [4649] = 4649, - [4650] = 4650, - [4651] = 4651, - [4652] = 4652, - [4653] = 4653, - [4654] = 4654, - [4655] = 4644, - [4656] = 4656, - [4657] = 4657, - [4658] = 4658, - [4659] = 4659, - [4660] = 4660, - [4661] = 4661, - [4662] = 4662, - [4663] = 4663, - [4664] = 4664, - [4665] = 4665, - [4666] = 4666, - [4667] = 4667, - [4668] = 4668, - [4669] = 4669, - [4670] = 4670, - [4671] = 4671, - [4672] = 4672, - [4673] = 4673, - [4674] = 4651, - [4675] = 4675, - [4676] = 4676, - [4677] = 4677, - [4678] = 4678, - [4679] = 4679, - [4680] = 4680, - [4681] = 4660, - [4682] = 4661, - [4683] = 4683, - [4684] = 4684, - [4685] = 4685, - [4686] = 4686, - [4687] = 4687, - [4688] = 4688, - [4689] = 4689, - [4690] = 4690, - [4691] = 4691, + [4596] = 4587, + [4597] = 2926, + [4598] = 2782, + [4599] = 4595, + [4600] = 2818, + [4601] = 4588, + [4602] = 4588, + [4603] = 2792, + [4604] = 4593, + [4605] = 2794, + [4606] = 2957, + [4607] = 2811, + [4608] = 2814, + [4609] = 2889, + [4610] = 2815, + [4611] = 2817, + [4612] = 4594, + [4613] = 2859, + [4614] = 2855, + [4615] = 2852, + [4616] = 2922, + [4617] = 2837, + [4618] = 2778, + [4619] = 2721, + [4620] = 2805, + [4621] = 2722, + [4622] = 2726, + [4623] = 2897, + [4624] = 2898, + [4625] = 2900, + [4626] = 2901, + [4627] = 2835, + [4628] = 2903, + [4629] = 2834, + [4630] = 2833, + [4631] = 2802, + [4632] = 2831, + [4633] = 2820, + [4634] = 2860, + [4635] = 2798, + [4636] = 2829, + [4637] = 2828, + [4638] = 2861, + [4639] = 2797, + [4640] = 2795, + [4641] = 2793, + [4642] = 2873, + [4643] = 2799, + [4644] = 2904, + [4645] = 2823, + [4646] = 2955, + [4647] = 2906, + [4648] = 4595, + [4649] = 2865, + [4650] = 4595, + [4651] = 2911, + [4652] = 2914, + [4653] = 2953, + [4654] = 4595, + [4655] = 4594, + [4656] = 2933, + [4657] = 2954, + [4658] = 2841, + [4659] = 2967, + [4660] = 2965, + [4661] = 2964, + [4662] = 2883, + [4663] = 2888, + [4664] = 2962, + [4665] = 2961, + [4666] = 2918, + [4667] = 2960, + [4668] = 2959, + [4669] = 2958, + [4670] = 2930, + [4671] = 2890, + [4672] = 4593, + [4673] = 2948, + [4674] = 2947, + [4675] = 4595, + [4676] = 2968, + [4677] = 4588, + [4678] = 4587, + [4679] = 4593, + [4680] = 4594, + [4681] = 2892, + [4682] = 2938, + [4683] = 4587, + [4684] = 2963, + [4685] = 4595, + [4686] = 4595, + [4687] = 2717, + [4688] = 4594, + [4689] = 4595, + [4690] = 2935, + [4691] = 4593, [4692] = 4692, [4693] = 4693, [4694] = 4694, - [4695] = 4680, + [4695] = 4693, [4696] = 4696, [4697] = 4697, [4698] = 4698, - [4699] = 4699, - [4700] = 4683, - [4701] = 4701, - [4702] = 4701, - [4703] = 4703, + [4699] = 2776, + [4700] = 4700, + [4701] = 4693, + [4702] = 4702, + [4703] = 4696, [4704] = 4704, - [4705] = 4647, - [4706] = 4646, + [4705] = 4705, + [4706] = 4696, [4707] = 4707, - [4708] = 4708, + [4708] = 4696, [4709] = 4709, - [4710] = 4710, - [4711] = 4653, - [4712] = 4652, - [4713] = 4713, + [4710] = 4693, + [4711] = 4711, + [4712] = 4712, + [4713] = 4698, [4714] = 4714, - [4715] = 4657, + [4715] = 4715, [4716] = 4716, [4717] = 4717, [4718] = 4718, [4719] = 4719, - [4720] = 4707, - [4721] = 4658, - [4722] = 4685, - [4723] = 4692, - [4724] = 4724, - [4725] = 4725, + [4720] = 4693, + [4721] = 4721, + [4722] = 4696, + [4723] = 4696, + [4724] = 4698, + [4725] = 4693, [4726] = 4726, - [4727] = 4701, - [4728] = 4683, + [4727] = 4727, + [4728] = 4698, [4729] = 4729, [4730] = 4730, - [4731] = 4731, + [4731] = 4696, [4732] = 4732, - [4733] = 4648, - [4734] = 4649, - [4735] = 4718, - [4736] = 4651, - [4737] = 4664, - [4738] = 4649, - [4739] = 4664, - [4740] = 4648, - [4741] = 4685, - [4742] = 4649, - [4743] = 4743, - [4744] = 4648, - [4745] = 4718, - [4746] = 4714, - [4747] = 4666, - [4748] = 4730, - [4749] = 4713, - [4750] = 4710, - [4751] = 4646, - [4752] = 4707, - [4753] = 4753, - [4754] = 4694, - [4755] = 4716, - [4756] = 4648, - [4757] = 4757, - [4758] = 4649, - [4759] = 4710, - [4760] = 4646, - [4761] = 4647, - [4762] = 4676, - [4763] = 4763, - [4764] = 4690, - [4765] = 4666, - [4766] = 4671, - [4767] = 4767, - [4768] = 4675, - [4769] = 4676, - [4770] = 4716, - [4771] = 4714, - [4772] = 4772, - [4773] = 4667, - [4774] = 4667, - [4775] = 4666, - [4776] = 4713, - [4777] = 4664, - [4778] = 4658, - [4779] = 4779, - [4780] = 4714, - [4781] = 4710, - [4782] = 4652, - [4783] = 4646, - [4784] = 4653, - [4785] = 4652, - [4786] = 4647, - [4787] = 4653, - [4788] = 4667, - [4789] = 4661, - [4790] = 4660, - [4791] = 4703, - [4792] = 4656, - [4793] = 4793, - [4794] = 4663, - [4795] = 4665, - [4796] = 4668, - [4797] = 4654, - [4798] = 4669, - [4799] = 4675, - [4800] = 4676, + [4733] = 4733, + [4734] = 4698, + [4735] = 2922, + [4736] = 4736, + [4737] = 2837, + [4738] = 2852, + [4739] = 2855, + [4740] = 2856, + [4741] = 2859, + [4742] = 2785, + [4743] = 2187, + [4744] = 2182, + [4745] = 2167, + [4746] = 2150, + [4747] = 2185, + [4748] = 2184, + [4749] = 2189, + [4750] = 2188, + [4751] = 2147, + [4752] = 2153, + [4753] = 2835, + [4754] = 2834, + [4755] = 2833, + [4756] = 4756, + [4757] = 2831, + [4758] = 2829, + [4759] = 2828, + [4760] = 2823, + [4761] = 2824, + [4762] = 4709, + [4763] = 2161, + [4764] = 2160, + [4765] = 4765, + [4766] = 2781, + [4767] = 2923, + [4768] = 2778, + [4769] = 2772, + [4770] = 2946, + [4771] = 2159, + [4772] = 2838, + [4773] = 2947, + [4774] = 2948, + [4775] = 4775, + [4776] = 2897, + [4777] = 2898, + [4778] = 2900, + [4779] = 2901, + [4780] = 2903, + [4781] = 2904, + [4782] = 2906, + [4783] = 2911, + [4784] = 2914, + [4785] = 2919, + [4786] = 2958, + [4787] = 2959, + [4788] = 2960, + [4789] = 2961, + [4790] = 4790, + [4791] = 4791, + [4792] = 4792, + [4793] = 2962, + [4794] = 2964, + [4795] = 2965, + [4796] = 4796, + [4797] = 2967, + [4798] = 4798, + [4799] = 2717, + [4800] = 4800, [4801] = 4801, - [4802] = 4644, - [4803] = 4670, - [4804] = 4676, - [4805] = 4673, - [4806] = 4677, - [4807] = 4675, - [4808] = 4647, - [4809] = 4679, - [4810] = 4810, - [4811] = 4680, - [4812] = 4812, - [4813] = 4686, - [4814] = 4688, + [4802] = 2142, + [4803] = 4803, + [4804] = 4804, + [4805] = 4805, + [4806] = 2754, + [4807] = 2756, + [4808] = 4808, + [4809] = 4809, + [4810] = 2769, + [4811] = 4811, + [4812] = 4803, + [4813] = 4813, + [4814] = 2773, [4815] = 4815, - [4816] = 4689, - [4817] = 4691, - [4818] = 4696, - [4819] = 4697, + [4816] = 4816, + [4817] = 4817, + [4818] = 4818, + [4819] = 4819, [4820] = 4820, - [4821] = 4675, - [4822] = 4698, - [4823] = 4699, - [4824] = 4704, - [4825] = 4708, - [4826] = 4709, + [4821] = 4819, + [4822] = 4822, + [4823] = 4803, + [4824] = 4824, + [4825] = 4825, + [4826] = 4803, [4827] = 4827, - [4828] = 4692, + [4828] = 4828, [4829] = 4829, [4830] = 4830, [4831] = 4831, - [4832] = 4671, - [4833] = 4710, - [4834] = 4669, - [4835] = 4835, - [4836] = 4836, - [4837] = 4837, - [4838] = 4648, - [4839] = 4730, - [4840] = 4649, - [4841] = 4672, - [4842] = 4648, - [4843] = 4649, - [4844] = 4659, - [4845] = 4651, - [4846] = 4694, - [4847] = 4767, - [4848] = 4848, - [4849] = 4710, - [4850] = 4646, - [4851] = 4647, - [4852] = 4678, + [4832] = 4803, + [4833] = 4833, + [4834] = 4819, + [4835] = 4803, + [4836] = 4819, + [4837] = 4803, + [4838] = 4838, + [4839] = 4839, + [4840] = 4840, + [4841] = 4841, + [4842] = 4842, + [4843] = 4819, + [4844] = 4844, + [4845] = 4819, + [4846] = 2760, + [4847] = 4847, + [4848] = 2776, + [4849] = 4849, + [4850] = 4850, + [4851] = 4851, + [4852] = 4852, [4853] = 4853, - [4854] = 4718, + [4854] = 4854, [4855] = 4855, - [4856] = 4716, - [4857] = 4714, - [4858] = 4858, - [4859] = 4859, - [4860] = 4713, - [4861] = 4861, - [4862] = 4848, - [4863] = 4763, - [4864] = 4710, - [4865] = 4646, - [4866] = 4647, - [4867] = 1740, - [4868] = 4671, - [4869] = 4693, - [4870] = 4730, - [4871] = 4717, - [4872] = 4859, - [4873] = 4685, - [4874] = 4666, - [4875] = 4664, - [4876] = 4855, - [4877] = 4877, - [4878] = 4878, - [4879] = 4652, - [4880] = 4675, - [4881] = 4881, - [4882] = 4653, - [4883] = 4656, - [4884] = 4663, - [4885] = 4830, - [4886] = 4665, - [4887] = 4668, + [4856] = 4856, + [4857] = 1084, + [4858] = 2936, + [4859] = 2963, + [4860] = 2923, + [4861] = 2147, + [4862] = 4862, + [4863] = 2918, + [4864] = 2935, + [4865] = 2841, + [4866] = 2799, + [4867] = 2955, + [4868] = 2883, + [4869] = 2888, + [4870] = 2858, + [4871] = 2820, + [4872] = 2772, + [4873] = 2873, + [4874] = 4874, + [4875] = 2142, + [4876] = 4876, + [4877] = 2968, + [4878] = 2815, + [4879] = 2814, + [4880] = 2811, + [4881] = 2838, + [4882] = 2861, + [4883] = 2946, + [4884] = 2824, + [4885] = 1090, + [4886] = 2804, + [4887] = 2793, [4888] = 4888, - [4889] = 4668, - [4890] = 4656, - [4891] = 4891, - [4892] = 4664, - [4893] = 4663, - [4894] = 4665, - [4895] = 4670, - [4896] = 4669, - [4897] = 4730, - [4898] = 4898, - [4899] = 4670, - [4900] = 4673, - [4901] = 4677, - [4902] = 4679, - [4903] = 4673, - [4904] = 4677, - [4905] = 4680, - [4906] = 4678, - [4907] = 4679, - [4908] = 4678, - [4909] = 4680, - [4910] = 4910, - [4911] = 4651, - [4912] = 4688, - [4913] = 4689, - [4914] = 4691, - [4915] = 4730, - [4916] = 4696, - [4917] = 4697, - [4918] = 4918, - [4919] = 4698, - [4920] = 4920, - [4921] = 4699, + [4889] = 2889, + [4890] = 2795, + [4891] = 2865, + [4892] = 2957, + [4893] = 1088, + [4894] = 2781, + [4895] = 2150, + [4896] = 2892, + [4897] = 2785, + [4898] = 2803, + [4899] = 2797, + [4900] = 2890, + [4901] = 2798, + [4902] = 2794, + [4903] = 2792, + [4904] = 2802, + [4905] = 2954, + [4906] = 2930, + [4907] = 2805, + [4908] = 2933, + [4909] = 2817, + [4910] = 2818, + [4911] = 1074, + [4912] = 2786, + [4913] = 2782, + [4914] = 2836, + [4915] = 2860, + [4916] = 1080, + [4917] = 2953, + [4918] = 2938, + [4919] = 4919, + [4920] = 2926, + [4921] = 4921, [4922] = 4922, [4923] = 4923, - [4924] = 4686, - [4925] = 4704, + [4924] = 4924, + [4925] = 4925, [4926] = 4926, - [4927] = 4708, - [4928] = 4709, - [4929] = 4667, - [4930] = 4709, - [4931] = 4708, - [4932] = 4704, - [4933] = 4699, - [4934] = 4698, - [4935] = 4697, - [4936] = 4696, - [4937] = 4691, - [4938] = 4689, - [4939] = 4688, - [4940] = 4680, - [4941] = 4679, - [4942] = 4648, - [4943] = 4678, - [4944] = 4649, - [4945] = 4710, - [4946] = 4646, - [4947] = 4647, - [4948] = 4677, - [4949] = 4673, - [4950] = 4670, - [4951] = 4951, - [4952] = 4669, - [4953] = 4953, - [4954] = 4668, - [4955] = 4665, - [4956] = 4663, - [4957] = 4656, - [4958] = 4648, - [4959] = 4959, - [4960] = 4960, - [4961] = 4961, - [4962] = 4962, - [4963] = 4649, - [4964] = 4659, - [4965] = 4767, - [4966] = 4853, - [4967] = 4651, - [4968] = 4697, - [4969] = 4969, + [4927] = 4923, + [4928] = 2754, + [4929] = 2760, + [4930] = 4923, + [4931] = 4931, + [4932] = 4932, + [4933] = 4933, + [4934] = 4934, + [4935] = 4926, + [4936] = 4931, + [4937] = 4937, + [4938] = 4709, + [4939] = 4939, + [4940] = 2756, + [4941] = 4941, + [4942] = 2769, + [4943] = 4923, + [4944] = 4944, + [4945] = 4945, + [4946] = 4926, + [4947] = 4926, + [4948] = 4926, + [4949] = 4923, + [4950] = 4926, + [4951] = 4923, + [4952] = 4952, + [4953] = 4926, + [4954] = 4926, + [4955] = 4923, + [4956] = 4956, + [4957] = 4956, + [4958] = 4923, + [4959] = 2773, + [4960] = 2167, + [4961] = 2836, + [4962] = 2795, + [4963] = 4963, + [4964] = 2888, + [4965] = 4965, + [4966] = 2793, + [4967] = 4819, + [4968] = 4819, + [4969] = 2873, [4970] = 4970, [4971] = 4971, - [4972] = 4653, - [4973] = 4848, - [4974] = 4763, - [4975] = 4652, + [4972] = 2858, + [4973] = 4973, + [4974] = 4974, + [4975] = 4975, [4976] = 4976, - [4977] = 4693, - [4978] = 4978, - [4979] = 4717, - [4980] = 4690, + [4977] = 4977, + [4978] = 2930, + [4979] = 2892, + [4980] = 2890, [4981] = 4981, - [4982] = 4855, - [4983] = 4718, - [4984] = 4716, - [4985] = 4714, - [4986] = 4986, - [4987] = 4713, - [4988] = 4988, - [4989] = 4688, - [4990] = 4767, - [4991] = 4710, - [4992] = 4992, - [4993] = 4993, - [4994] = 4994, - [4995] = 4646, - [4996] = 4647, - [4997] = 4689, - [4998] = 4767, - [4999] = 4691, - [5000] = 4830, - [5001] = 4672, - [5002] = 4730, - [5003] = 4767, - [5004] = 4696, - [5005] = 4981, - [5006] = 4978, - [5007] = 5007, - [5008] = 4687, - [5009] = 4743, - [5010] = 4666, + [4982] = 2955, + [4983] = 4983, + [4984] = 2185, + [4985] = 2889, + [4986] = 2184, + [4987] = 2883, + [4988] = 2865, + [4989] = 4989, + [4990] = 4976, + [4991] = 4991, + [4992] = 2861, + [4993] = 2860, + [4994] = 1090, + [4995] = 4995, + [4996] = 1088, + [4997] = 4997, + [4998] = 1084, + [4999] = 2189, + [5000] = 1080, + [5001] = 2188, + [5002] = 2187, + [5003] = 2182, + [5004] = 2153, + [5005] = 2797, + [5006] = 355, + [5007] = 354, + [5008] = 1074, + [5009] = 5009, + [5010] = 4976, [5011] = 5011, - [5012] = 4709, + [5012] = 5012, [5013] = 5013, - [5014] = 4981, - [5015] = 4978, - [5016] = 4853, - [5017] = 4708, - [5018] = 4743, - [5019] = 4978, - [5020] = 4704, - [5021] = 4699, - [5022] = 4698, + [5014] = 5014, + [5015] = 4976, + [5016] = 5016, + [5017] = 5017, + [5018] = 5017, + [5019] = 4965, + [5020] = 5020, + [5021] = 4819, + [5022] = 5022, + [5023] = 5023, + [5024] = 2933, + [5025] = 2936, + [5026] = 5026, + [5027] = 5027, + [5028] = 4941, + [5029] = 5029, + [5030] = 5030, + [5031] = 4974, + [5032] = 5017, + [5033] = 4970, + [5034] = 5034, + [5035] = 5035, + [5036] = 5036, + [5037] = 5037, + [5038] = 5012, + [5039] = 4965, + [5040] = 5016, + [5041] = 4976, + [5042] = 4974, + [5043] = 4970, + [5044] = 5023, + [5045] = 5017, + [5046] = 5023, + [5047] = 5047, + [5048] = 2820, + [5049] = 4965, + [5050] = 4965, + [5051] = 5017, + [5052] = 4819, + [5053] = 5023, + [5054] = 5054, + [5055] = 2815, + [5056] = 2814, + [5057] = 2811, + [5058] = 2804, + [5059] = 2803, + [5060] = 5060, + [5061] = 2799, + [5062] = 5017, + [5063] = 5063, + [5064] = 5064, + [5065] = 2794, + [5066] = 2792, + [5067] = 5067, + [5068] = 2786, + [5069] = 5023, + [5070] = 2782, + [5071] = 5071, + [5072] = 5072, + [5073] = 5073, + [5074] = 5074, + [5075] = 5016, + [5076] = 4963, + [5077] = 2918, + [5078] = 5078, + [5079] = 5079, + [5080] = 4963, + [5081] = 4963, + [5082] = 5082, + [5083] = 5063, + [5084] = 5016, + [5085] = 5085, + [5086] = 5086, + [5087] = 5087, + [5088] = 5088, + [5089] = 4937, + [5090] = 5090, + [5091] = 2935, + [5092] = 2161, + [5093] = 2160, + [5094] = 2159, + [5095] = 4922, + [5096] = 5096, + [5097] = 5097, + [5098] = 5016, + [5099] = 2798, + [5100] = 2938, + [5101] = 5087, + [5102] = 5086, + [5103] = 5103, + [5104] = 5016, + [5105] = 5105, + [5106] = 5106, + [5107] = 2802, + [5108] = 4963, + [5109] = 5074, + [5110] = 4970, + [5111] = 2953, + [5112] = 2817, + [5113] = 2805, + [5114] = 2954, + [5115] = 4963, + [5116] = 4819, + [5117] = 5079, + [5118] = 5078, + [5119] = 5023, + [5120] = 5120, + [5121] = 5121, + [5122] = 4963, + [5123] = 5017, + [5124] = 4974, + [5125] = 2968, + [5126] = 5060, + [5127] = 5054, + [5128] = 5128, + [5129] = 5016, + [5130] = 5130, + [5131] = 5131, + [5132] = 2957, + [5133] = 4974, + [5134] = 5134, + [5135] = 5135, + [5136] = 5136, + [5137] = 5137, + [5138] = 5138, + [5139] = 2963, + [5140] = 5140, + [5141] = 4819, + [5142] = 2818, + [5143] = 5023, + [5144] = 2841, + [5145] = 5145, + [5146] = 5023, + [5147] = 5147, + [5148] = 5148, + [5149] = 4965, + [5150] = 4965, + [5151] = 5017, + [5152] = 4963, + [5153] = 4970, + [5154] = 2926, + [5155] = 4819, + [5156] = 5016, + [5157] = 5157, + [5158] = 4945, + [5159] = 4965, + [5160] = 4974, + [5161] = 4976, + [5162] = 5162, + [5163] = 4976, + [5164] = 5164, + [5165] = 5165, + [5166] = 4976, + [5167] = 5167, + [5168] = 5168, + [5169] = 5169, + [5170] = 5170, + [5171] = 5171, + [5172] = 5172, + [5173] = 5173, + [5174] = 5174, + [5175] = 5175, + [5176] = 5176, + [5177] = 5177, + [5178] = 5178, + [5179] = 5179, + [5180] = 5169, + [5181] = 5181, + [5182] = 5169, + [5183] = 5183, + [5184] = 5184, + [5185] = 4937, + [5186] = 4922, + [5187] = 5169, + [5188] = 5181, + [5189] = 5181, + [5190] = 5190, + [5191] = 5169, + [5192] = 5181, + [5193] = 5181, + [5194] = 5181, + [5195] = 5195, + [5196] = 5181, + [5197] = 5169, + [5198] = 5181, + [5199] = 5199, + [5200] = 342, + [5201] = 5178, + [5202] = 5176, + [5203] = 5169, + [5204] = 5169, + [5205] = 341, + [5206] = 5206, + [5207] = 356, + [5208] = 5208, + [5209] = 5209, + [5210] = 5210, + [5211] = 5211, + [5212] = 5212, + [5213] = 5213, + [5214] = 5214, + [5215] = 5215, + [5216] = 5216, + [5217] = 5217, + [5218] = 5218, + [5219] = 5219, + [5220] = 5220, + [5221] = 5221, + [5222] = 5054, + [5223] = 5223, + [5224] = 5224, + [5225] = 5225, + [5226] = 5060, + [5227] = 5078, + [5228] = 5071, + [5229] = 5229, + [5230] = 5230, + [5231] = 5231, + [5232] = 359, + [5233] = 5233, + [5234] = 5234, + [5235] = 5235, + [5236] = 5236, + [5237] = 5237, + [5238] = 5238, + [5239] = 5239, + [5240] = 5240, + [5241] = 5241, + [5242] = 5242, + [5243] = 5079, + [5244] = 5244, + [5245] = 5245, + [5246] = 5246, + [5247] = 5234, + [5248] = 5235, + [5249] = 5249, + [5250] = 5250, + [5251] = 5087, + [5252] = 5252, + [5253] = 5253, + [5254] = 5253, + [5255] = 5255, + [5256] = 5256, + [5257] = 5237, + [5258] = 5258, + [5259] = 5259, + [5260] = 5235, + [5261] = 5261, + [5262] = 5262, + [5263] = 5263, + [5264] = 5264, + [5265] = 5265, + [5266] = 5266, + [5267] = 5267, + [5268] = 5268, + [5269] = 5269, + [5270] = 5270, + [5271] = 5265, + [5272] = 5272, + [5273] = 5265, + [5274] = 5274, + [5275] = 5275, + [5276] = 5208, + [5277] = 5277, + [5278] = 5258, + [5279] = 5279, + [5280] = 5280, + [5281] = 5281, + [5282] = 5282, + [5283] = 5283, + [5284] = 5218, + [5285] = 5285, + [5286] = 5286, + [5287] = 5287, + [5288] = 5224, + [5289] = 5289, + [5290] = 5224, + [5291] = 5265, + [5292] = 5270, + [5293] = 5287, + [5294] = 5234, + [5295] = 5206, + [5296] = 5265, + [5297] = 5258, + [5298] = 5282, + [5299] = 5299, + [5300] = 5300, + [5301] = 5258, + [5302] = 5302, + [5303] = 5303, + [5304] = 5275, + [5305] = 5305, + [5306] = 5208, + [5307] = 5253, + [5308] = 5224, + [5309] = 5218, + [5310] = 5258, + [5311] = 5287, + [5312] = 5287, + [5313] = 5313, + [5314] = 5282, + [5315] = 5237, + [5316] = 5316, + [5317] = 5275, + [5318] = 5318, + [5319] = 5319, + [5320] = 5258, + [5321] = 5321, + [5322] = 5270, + [5323] = 5265, + [5324] = 5324, + [5325] = 5325, + [5326] = 5326, + [5327] = 5327, + [5328] = 5328, + [5329] = 5329, + [5330] = 5330, + [5331] = 5331, + [5332] = 5282, + [5333] = 5333, + [5334] = 5334, + [5335] = 5335, + [5336] = 5336, + [5337] = 5218, + [5338] = 5338, + [5339] = 5339, + [5340] = 5340, + [5341] = 5265, + [5342] = 5342, + [5343] = 5270, + [5344] = 4876, + [5345] = 5345, + [5346] = 5237, + [5347] = 5287, + [5348] = 5348, + [5349] = 353, + [5350] = 5350, + [5351] = 5351, + [5352] = 350, + [5353] = 352, + [5354] = 5354, + [5355] = 359, + [5356] = 5356, + [5357] = 5218, + [5358] = 5287, + [5359] = 4933, + [5360] = 5270, + [5361] = 5224, + [5362] = 5362, + [5363] = 5282, + [5364] = 5364, + [5365] = 5345, + [5366] = 5239, + [5367] = 5237, + [5368] = 5235, + [5369] = 5369, + [5370] = 5370, + [5371] = 5253, + [5372] = 5372, + [5373] = 5086, + [5374] = 353, + [5375] = 5195, + [5376] = 5235, + [5377] = 5377, + [5378] = 5378, + [5379] = 5379, + [5380] = 5380, + [5381] = 5381, + [5382] = 5218, + [5383] = 5383, + [5384] = 5384, + [5385] = 5208, + [5386] = 5386, + [5387] = 5387, + [5388] = 5258, + [5389] = 5389, + [5390] = 5390, + [5391] = 5391, + [5392] = 5392, + [5393] = 5270, + [5394] = 5394, + [5395] = 5287, + [5396] = 5396, + [5397] = 5397, + [5398] = 5234, + [5399] = 5224, + [5400] = 5400, + [5401] = 5401, + [5402] = 5402, + [5403] = 5403, + [5404] = 5105, + [5405] = 5275, + [5406] = 5406, + [5407] = 5407, + [5408] = 5235, + [5409] = 5208, + [5410] = 5235, + [5411] = 5237, + [5412] = 5412, + [5413] = 5413, + [5414] = 5224, + [5415] = 5415, + [5416] = 5416, + [5417] = 5417, + [5418] = 5235, + [5419] = 5237, + [5420] = 5420, + [5421] = 5421, + [5422] = 5400, + [5423] = 5423, + [5424] = 5424, + [5425] = 5425, + [5426] = 5426, + [5427] = 5427, + [5428] = 5234, + [5429] = 5429, + [5430] = 5430, + [5431] = 5234, + [5432] = 5268, + [5433] = 5433, + [5434] = 5234, + [5435] = 5435, + [5436] = 5436, + [5437] = 5437, + [5438] = 346, + [5439] = 5439, + [5440] = 5440, + [5441] = 5441, + [5442] = 5253, + [5443] = 5426, + [5444] = 5444, + [5445] = 363, + [5446] = 5446, + [5447] = 5447, + [5448] = 5448, + [5449] = 2036, + [5450] = 5450, + [5451] = 4981, + [5452] = 5287, + [5453] = 5208, + [5454] = 5454, + [5455] = 5455, + [5456] = 5456, + [5457] = 4874, + [5458] = 4989, + [5459] = 5459, + [5460] = 5460, + [5461] = 5424, + [5462] = 5218, + [5463] = 5253, + [5464] = 5275, + [5465] = 5224, + [5466] = 358, + [5467] = 5282, + [5468] = 5208, + [5469] = 5469, + [5470] = 5470, + [5471] = 4991, + [5472] = 5472, + [5473] = 5096, + [5474] = 5208, + [5475] = 5475, + [5476] = 5253, + [5477] = 5472, + [5478] = 5478, + [5479] = 5479, + [5480] = 5282, + [5481] = 5481, + [5482] = 5482, + [5483] = 5483, + [5484] = 5282, + [5485] = 5270, + [5486] = 5486, + [5487] = 5487, + [5488] = 5218, + [5489] = 5258, + [5490] = 5237, + [5491] = 5265, + [5492] = 5253, + [5493] = 5270, + [5494] = 5234, + [5495] = 5495, + [5496] = 5496, + [5497] = 5497, + [5498] = 5498, + [5499] = 5499, + [5500] = 344, + [5501] = 5501, + [5502] = 5502, + [5503] = 4888, + [5504] = 5504, + [5505] = 5505, + [5506] = 5502, + [5507] = 5507, + [5508] = 5508, + [5509] = 5504, + [5510] = 5510, + [5511] = 5511, + [5512] = 5512, + [5513] = 5513, + [5514] = 5475, + [5515] = 5515, + [5516] = 5516, + [5517] = 5517, + [5518] = 5327, + [5519] = 5242, + [5520] = 5520, + [5521] = 5521, + [5522] = 5522, + [5523] = 5523, + [5524] = 5524, + [5525] = 5525, + [5526] = 5512, + [5527] = 5460, + [5528] = 5528, + [5529] = 5529, + [5530] = 5512, + [5531] = 5531, + [5532] = 350, + [5533] = 5533, + [5534] = 5534, + [5535] = 5176, + [5536] = 5523, + [5537] = 5478, + [5538] = 5505, + [5539] = 5481, + [5540] = 5524, + [5541] = 5541, + [5542] = 5522, + [5543] = 5543, + [5544] = 5502, + [5545] = 5545, + [5546] = 5546, + [5547] = 5522, + [5548] = 5510, + [5549] = 5508, + [5550] = 5550, + [5551] = 5504, + [5552] = 5516, + [5553] = 5505, + [5554] = 5521, + [5555] = 5502, + [5556] = 5482, + [5557] = 5522, + [5558] = 5524, + [5559] = 5512, + [5560] = 5560, + [5561] = 5504, + [5562] = 5520, + [5563] = 5563, + [5564] = 5513, + [5565] = 5523, + [5566] = 5505, + [5567] = 5512, + [5568] = 5441, + [5569] = 5521, + [5570] = 5520, + [5571] = 5571, + [5572] = 5516, + [5573] = 5573, + [5574] = 5512, + [5575] = 5524, + [5576] = 5560, + [5577] = 5524, + [5578] = 5578, + [5579] = 5579, + [5580] = 5580, + [5581] = 5534, + [5582] = 5513, + [5583] = 5578, + [5584] = 5584, + [5585] = 5585, + [5586] = 5510, + [5587] = 5560, + [5588] = 5560, + [5589] = 5412, + [5590] = 5521, + [5591] = 5560, + [5592] = 5524, + [5593] = 5524, + [5594] = 5523, + [5595] = 5510, + [5596] = 5510, + [5597] = 5250, + [5598] = 959, + [5599] = 5599, + [5600] = 5600, + [5601] = 5513, + [5602] = 5602, + [5603] = 5560, + [5604] = 5604, + [5605] = 5520, + [5606] = 5516, + [5607] = 5600, + [5608] = 5512, + [5609] = 5609, + [5610] = 5610, + [5611] = 5415, + [5612] = 5523, + [5613] = 5499, + [5614] = 5498, + [5615] = 5534, + [5616] = 5502, + [5617] = 5502, + [5618] = 5236, + [5619] = 5513, + [5620] = 5620, + [5621] = 5437, + [5622] = 5560, + [5623] = 5560, + [5624] = 5624, + [5625] = 5534, + [5626] = 5505, + [5627] = 5524, + [5628] = 5524, + [5629] = 5502, + [5630] = 5510, + [5631] = 5631, + [5632] = 5632, + [5633] = 5510, + [5634] = 5634, + [5635] = 5635, + [5636] = 5636, + [5637] = 5436, + [5638] = 5520, + [5639] = 5505, + [5640] = 5504, + [5641] = 5335, + [5642] = 5642, + [5643] = 352, + [5644] = 5644, + [5645] = 5510, + [5646] = 5212, + [5647] = 5647, + [5648] = 2132, + [5649] = 5649, + [5650] = 5497, + [5651] = 5504, + [5652] = 5516, + [5653] = 5653, + [5654] = 5653, + [5655] = 5502, + [5656] = 5495, + [5657] = 5534, + [5658] = 5521, + [5659] = 5521, + [5660] = 5516, + [5661] = 5520, + [5662] = 5195, + [5663] = 5571, + [5664] = 5510, + [5665] = 5665, + [5666] = 5523, + [5667] = 5510, + [5668] = 5178, + [5669] = 5513, + [5670] = 5534, + [5671] = 5620, + [5672] = 5672, + [5673] = 5673, + [5674] = 5511, + [5675] = 5524, + [5676] = 5240, + [5677] = 5560, + [5678] = 5644, + [5679] = 5516, + [5680] = 5521, + [5681] = 5681, + [5682] = 5580, + [5683] = 5523, + [5684] = 5524, + [5685] = 5510, + [5686] = 5686, + [5687] = 5328, + [5688] = 5513, + [5689] = 5534, + [5690] = 5690, + [5691] = 5529, + [5692] = 5238, + [5693] = 5563, + [5694] = 5560, + [5695] = 5531, + [5696] = 5531, + [5697] = 5520, + [5698] = 5522, + [5699] = 5504, + [5700] = 5396, + [5701] = 5634, + [5702] = 5505, + [5703] = 5531, + [5704] = 5513, + [5705] = 5705, + [5706] = 5403, + [5707] = 4941, + [5708] = 4945, + [5709] = 5531, + [5710] = 5522, + [5711] = 5505, + [5712] = 5712, + [5713] = 2014, + [5714] = 5512, + [5715] = 5531, + [5716] = 5439, + [5717] = 5531, + [5718] = 5522, + [5719] = 5512, + [5720] = 5599, + [5721] = 5573, + [5722] = 5541, + [5723] = 5512, + [5724] = 5724, + [5725] = 5560, + [5726] = 5512, + [5727] = 5531, + [5728] = 5523, + [5729] = 5690, + [5730] = 5730, + [5731] = 5731, + [5732] = 5732, + [5733] = 5733, + [5734] = 5734, + [5735] = 5735, + [5736] = 5736, + [5737] = 5737, + [5738] = 5738, + [5739] = 5739, + [5740] = 5740, + [5741] = 5741, + [5742] = 5742, + [5743] = 5743, + [5744] = 5730, + [5745] = 5745, + [5746] = 5746, + [5747] = 5745, + [5748] = 5748, + [5749] = 5749, + [5750] = 5750, + [5751] = 5348, + [5752] = 5372, + [5753] = 5753, + [5754] = 5754, + [5755] = 5755, + [5756] = 5756, + [5757] = 5757, + [5758] = 5758, + [5759] = 5759, + [5760] = 5760, + [5761] = 5761, + [5762] = 5762, + [5763] = 5763, + [5764] = 5764, + [5765] = 5765, + [5766] = 5758, + [5767] = 5767, + [5768] = 5768, + [5769] = 5769, + [5770] = 5770, + [5771] = 5252, + [5772] = 5772, + [5773] = 5773, + [5774] = 5774, + [5775] = 5772, + [5776] = 5776, + [5777] = 5777, + [5778] = 5778, + [5779] = 5779, + [5780] = 5780, + [5781] = 5781, + [5782] = 5758, + [5783] = 5783, + [5784] = 5784, + [5785] = 5785, + [5786] = 5786, + [5787] = 5787, + [5788] = 5788, + [5789] = 5789, + [5790] = 5790, + [5791] = 5791, + [5792] = 5730, + [5793] = 5743, + [5794] = 5794, + [5795] = 5795, + [5796] = 5796, + [5797] = 5739, + [5798] = 5738, + [5799] = 5799, + [5800] = 5737, + [5801] = 5801, + [5802] = 5802, + [5803] = 5745, + [5804] = 5735, + [5805] = 5732, + [5806] = 5740, + [5807] = 5807, + [5808] = 5808, + [5809] = 5809, + [5810] = 5810, + [5811] = 5758, + [5812] = 5745, + [5813] = 5740, + [5814] = 5732, + [5815] = 5815, + [5816] = 5816, + [5817] = 5817, + [5818] = 5735, + [5819] = 5819, + [5820] = 5737, + [5821] = 5821, + [5822] = 5738, + [5823] = 5739, + [5824] = 5824, + [5825] = 5730, + [5826] = 5826, + [5827] = 5743, + [5828] = 5828, + [5829] = 5829, + [5830] = 5830, + [5831] = 5831, + [5832] = 5739, + [5833] = 5833, + [5834] = 5738, + [5835] = 5737, + [5836] = 5758, + [5837] = 5735, + [5838] = 5743, + [5839] = 5839, + [5840] = 5840, + [5841] = 5730, + [5842] = 5732, + [5843] = 5843, + [5844] = 5740, + [5845] = 5745, + [5846] = 5846, + [5847] = 5847, + [5848] = 5810, + [5849] = 5849, + [5850] = 5850, + [5851] = 5851, + [5852] = 5852, + [5853] = 5853, + [5854] = 5854, + [5855] = 5855, + [5856] = 5856, + [5857] = 5758, + [5858] = 5858, + [5859] = 5859, + [5860] = 5860, + [5861] = 5861, + [5862] = 5840, + [5863] = 5863, + [5864] = 5864, + [5865] = 5865, + [5866] = 5866, + [5867] = 5772, + [5868] = 5868, + [5869] = 5869, + [5870] = 5870, + [5871] = 5871, + [5872] = 5872, + [5873] = 5873, + [5874] = 5874, + [5875] = 5875, + [5876] = 5765, + [5877] = 5877, + [5878] = 5878, + [5879] = 5879, + [5880] = 5880, + [5881] = 5810, + [5882] = 5882, + [5883] = 5883, + [5884] = 5884, + [5885] = 5885, + [5886] = 5886, + [5887] = 5887, + [5888] = 5888, + [5889] = 5889, + [5890] = 5890, + [5891] = 5891, + [5892] = 5892, + [5893] = 5893, + [5894] = 5894, + [5895] = 5745, + [5896] = 5896, + [5897] = 361, + [5898] = 5898, + [5899] = 5899, + [5900] = 5900, + [5901] = 5901, + [5902] = 5902, + [5903] = 5903, + [5904] = 5904, + [5905] = 5905, + [5906] = 5906, + [5907] = 5907, + [5908] = 5740, + [5909] = 5909, + [5910] = 5758, + [5911] = 5732, + [5912] = 362, + [5913] = 5913, + [5914] = 5914, + [5915] = 5624, + [5916] = 5916, + [5917] = 5917, + [5918] = 5918, + [5919] = 5840, + [5920] = 5920, + [5921] = 5921, + [5922] = 5922, + [5923] = 5923, + [5924] = 5735, + [5925] = 5925, + [5926] = 5737, + [5927] = 5927, + [5928] = 5738, + [5929] = 5739, + [5930] = 5930, + [5931] = 5931, + [5932] = 5932, + [5933] = 5933, + [5934] = 5934, + [5935] = 5525, + [5936] = 5936, + [5937] = 5528, + [5938] = 5533, + [5939] = 5846, + [5940] = 5940, + [5941] = 5941, + [5942] = 5942, + [5943] = 5743, + [5944] = 5944, + [5945] = 5945, + [5946] = 5730, + [5947] = 5947, + [5948] = 5921, + [5949] = 5949, + [5950] = 5730, + [5951] = 5401, + [5952] = 5952, + [5953] = 5743, + [5954] = 5954, + [5955] = 5955, + [5956] = 5956, + [5957] = 5957, + [5958] = 5958, + [5959] = 5959, + [5960] = 5960, + [5961] = 5945, + [5962] = 5962, + [5963] = 5810, + [5964] = 5964, + [5965] = 5965, + [5966] = 5966, + [5967] = 5967, + [5968] = 5952, + [5969] = 5965, + [5970] = 5970, + [5971] = 5971, + [5972] = 5952, + [5973] = 5973, + [5974] = 5871, + [5975] = 5869, + [5976] = 5976, + [5977] = 5921, + [5978] = 5978, + [5979] = 5979, + [5980] = 5980, + [5981] = 5840, + [5982] = 5945, + [5983] = 5956, + [5984] = 5984, + [5985] = 5985, + [5986] = 5986, + [5987] = 5987, + [5988] = 5954, + [5989] = 5959, + [5990] = 5990, + [5991] = 5991, + [5992] = 5958, + [5993] = 5993, + [5994] = 5994, + [5995] = 5772, + [5996] = 5957, + [5997] = 5958, + [5998] = 5957, + [5999] = 5959, + [6000] = 6000, + [6001] = 6001, + [6002] = 5954, + [6003] = 5740, + [6004] = 5959, + [6005] = 6005, + [6006] = 5945, + [6007] = 5732, + [6008] = 5958, + [6009] = 5965, + [6010] = 6010, + [6011] = 6011, + [6012] = 6012, + [6013] = 6013, + [6014] = 5739, + [6015] = 6015, + [6016] = 6016, + [6017] = 5738, + [6018] = 5971, + [6019] = 5952, + [6020] = 6020, + [6021] = 6021, + [6022] = 6022, + [6023] = 6023, + [6024] = 342, + [6025] = 5743, + [6026] = 6026, + [6027] = 6027, + [6028] = 5737, + [6029] = 6029, + [6030] = 6030, + [6031] = 6031, + [6032] = 5742, + [6033] = 5735, + [6034] = 6034, + [6035] = 5921, + [6036] = 6036, + [6037] = 6037, + [6038] = 5954, + [6039] = 6039, + [6040] = 6040, + [6041] = 5957, + [6042] = 6042, + [6043] = 5958, + [6044] = 5959, + [6045] = 1096, + [6046] = 5945, + [6047] = 5840, + [6048] = 6048, + [6049] = 5965, + [6050] = 6037, + [6051] = 6051, + [6052] = 1095, + [6053] = 5952, + [6054] = 6054, + [6055] = 6055, + [6056] = 6055, + [6057] = 341, + [6058] = 6058, + [6059] = 1083, + [6060] = 6060, + [6061] = 5732, + [6062] = 1082, + [6063] = 6063, + [6064] = 5740, + [6065] = 6065, + [6066] = 6066, + [6067] = 5921, + [6068] = 6068, + [6069] = 6069, + [6070] = 1075, + [6071] = 6071, + [6072] = 6072, + [6073] = 6073, + [6074] = 6074, + [6075] = 2946, + [6076] = 1066, + [6077] = 1065, + [6078] = 1063, + [6079] = 2824, + [6080] = 6080, + [6081] = 5907, + [6082] = 6082, + [6083] = 6083, + [6084] = 1024, + [6085] = 1062, + [6086] = 6086, + [6087] = 1061, + [6088] = 1060, + [6089] = 6089, + [6090] = 1059, + [6091] = 5954, + [6092] = 6092, + [6093] = 6093, + [6094] = 6094, + [6095] = 5957, + [6096] = 5958, + [6097] = 5959, + [6098] = 6098, + [6099] = 5745, + [6100] = 6100, + [6101] = 6101, + [6102] = 6102, + [6103] = 5945, + [6104] = 5767, + [6105] = 5840, + [6106] = 6106, + [6107] = 1064, + [6108] = 6069, + [6109] = 1222, + [6110] = 5965, + [6111] = 1229, + [6112] = 6112, + [6113] = 1188, + [6114] = 6114, + [6115] = 5851, + [6116] = 6116, + [6117] = 1187, + [6118] = 6118, + [6119] = 6119, + [6120] = 5763, + [6121] = 1033, + [6122] = 5993, + [6123] = 1032, + [6124] = 5758, + [6125] = 1027, + [6126] = 6126, + [6127] = 6127, + [6128] = 1108, + [6129] = 1107, + [6130] = 5745, + [6131] = 5952, + [6132] = 6132, + [6133] = 6133, + [6134] = 6112, + [6135] = 6135, + [6136] = 6051, + [6137] = 6137, + [6138] = 6138, + [6139] = 6139, + [6140] = 6140, + [6141] = 6141, + [6142] = 6142, + [6143] = 6143, + [6144] = 6144, + [6145] = 6145, + [6146] = 1052, + [6147] = 6147, + [6148] = 1046, + [6149] = 1049, + [6150] = 1022, + [6151] = 6151, + [6152] = 6152, + [6153] = 6153, + [6154] = 5740, + [6155] = 5732, + [6156] = 6156, + [6157] = 6157, + [6158] = 6158, + [6159] = 6159, + [6160] = 5921, + [6161] = 5990, + [6162] = 6162, + [6163] = 6163, + [6164] = 6164, + [6165] = 6039, + [6166] = 5991, + [6167] = 6167, + [6168] = 6168, + [6169] = 6169, + [6170] = 5921, + [6171] = 6171, + [6172] = 6172, + [6173] = 6173, + [6174] = 5735, + [6175] = 6175, + [6176] = 6176, + [6177] = 6177, + [6178] = 1105, + [6179] = 5952, + [6180] = 5737, + [6181] = 1055, + [6182] = 6182, + [6183] = 1058, + [6184] = 6184, + [6185] = 5738, + [6186] = 6186, + [6187] = 5739, + [6188] = 1011, + [6189] = 6189, + [6190] = 5965, + [6191] = 6191, + [6192] = 6192, + [6193] = 6193, + [6194] = 5840, + [6195] = 5945, + [6196] = 1094, + [6197] = 6197, + [6198] = 1093, + [6199] = 6199, + [6200] = 1069, + [6201] = 1087, + [6202] = 1070, + [6203] = 1072, + [6204] = 6204, + [6205] = 1030, + [6206] = 1073, + [6207] = 1034, + [6208] = 1035, + [6209] = 1078, + [6210] = 1041, + [6211] = 5959, + [6212] = 1081, + [6213] = 1085, + [6214] = 1091, + [6215] = 1119, + [6216] = 1092, + [6217] = 1097, + [6218] = 5958, + [6219] = 1098, + [6220] = 6220, + [6221] = 6221, + [6222] = 1101, + [6223] = 1104, + [6224] = 5735, + [6225] = 1109, + [6226] = 5957, + [6227] = 1113, + [6228] = 6228, + [6229] = 5743, + [6230] = 1114, + [6231] = 5737, + [6232] = 5730, + [6233] = 5954, + [6234] = 1115, + [6235] = 5954, + [6236] = 6236, + [6237] = 1116, + [6238] = 6238, + [6239] = 6239, + [6240] = 5954, + [6241] = 1118, + [6242] = 6242, + [6243] = 1146, + [6244] = 1123, + [6245] = 6245, + [6246] = 1129, + [6247] = 5957, + [6248] = 5958, + [6249] = 5959, + [6250] = 6250, + [6251] = 6001, + [6252] = 6252, + [6253] = 6253, + [6254] = 1079, + [6255] = 5945, + [6256] = 5840, + [6257] = 1077, + [6258] = 6258, + [6259] = 1131, + [6260] = 6260, + [6261] = 6261, + [6262] = 6262, + [6263] = 5810, + [6264] = 5965, + [6265] = 6265, + [6266] = 1076, + [6267] = 6267, + [6268] = 6268, + [6269] = 5965, + [6270] = 1227, + [6271] = 6271, + [6272] = 1068, + [6273] = 1112, + [6274] = 1134, + [6275] = 6275, + [6276] = 1067, + [6277] = 6277, + [6278] = 1128, + [6279] = 1122, + [6280] = 6280, + [6281] = 1102, + [6282] = 6282, + [6283] = 6283, + [6284] = 1103, + [6285] = 1152, + [6286] = 5772, + [6287] = 6287, + [6288] = 1057, + [6289] = 5739, + [6290] = 6290, + [6291] = 5952, + [6292] = 6292, + [6293] = 6293, + [6294] = 5738, + [6295] = 6295, + [6296] = 6296, + [6297] = 5921, + [6298] = 6298, + [6299] = 6299, + [6300] = 5957, + [6301] = 6301, + [6302] = 6302, + [6303] = 6303, + [6304] = 6304, + [6305] = 6305, + [6306] = 6306, + [6307] = 6307, + [6308] = 6306, + [6309] = 6309, + [6310] = 6310, + [6311] = 6302, + [6312] = 6312, + [6313] = 6313, + [6314] = 6314, + [6315] = 6307, + [6316] = 6316, + [6317] = 6317, + [6318] = 6318, + [6319] = 6301, + [6320] = 6320, + [6321] = 6321, + [6322] = 6321, + [6323] = 6318, + [6324] = 6324, + [6325] = 6309, + [6326] = 6326, + [6327] = 6327, + [6328] = 6328, + [6329] = 6329, + [6330] = 6330, + [6331] = 6331, + [6332] = 6318, + [6333] = 6304, + [6334] = 6330, + [6335] = 6329, + [6336] = 6328, + [6337] = 6326, + [6338] = 6338, + [6339] = 6339, + [6340] = 6340, + [6341] = 6318, + [6342] = 6326, + [6343] = 6328, + [6344] = 6344, + [6345] = 6345, + [6346] = 6329, + [6347] = 6330, + [6348] = 6318, + [6349] = 6349, + [6350] = 2148, + [6351] = 6351, + [6352] = 6309, + [6353] = 6353, + [6354] = 6354, + [6355] = 6321, + [6356] = 6320, + [6357] = 6303, + [6358] = 6358, + [6359] = 6301, + [6360] = 6316, + [6361] = 6307, + [6362] = 6362, + [6363] = 6321, + [6364] = 6364, + [6365] = 5749, + [6366] = 6317, + [6367] = 6314, + [6368] = 6313, + [6369] = 6312, + [6370] = 6302, + [6371] = 6330, + [6372] = 6320, + [6373] = 6301, + [6374] = 6329, + [6375] = 6316, + [6376] = 6304, + [6377] = 6377, + [6378] = 6307, + [6379] = 6328, + [6380] = 6316, + [6381] = 6381, + [6382] = 6301, + [6383] = 6320, + [6384] = 6321, + [6385] = 6385, + [6386] = 6309, + [6387] = 6385, + [6388] = 6353, + [6389] = 6326, + [6390] = 6330, + [6391] = 6326, + [6392] = 6377, + [6393] = 6309, + [6394] = 6317, + [6395] = 6364, + [6396] = 6329, + [6397] = 6304, + [6398] = 6314, + [6399] = 6313, + [6400] = 6312, + [6401] = 6330, + [6402] = 6317, + [6403] = 6302, + [6404] = 6302, + [6405] = 6405, + [6406] = 5642, + [6407] = 6362, + [6408] = 6408, + [6409] = 6321, + [6410] = 6320, + [6411] = 2140, + [6412] = 6301, + [6413] = 6353, + [6414] = 6307, + [6415] = 6316, + [6416] = 6307, + [6417] = 6417, + [6418] = 6302, + [6419] = 6312, + [6420] = 6313, + [6421] = 6314, + [6422] = 6317, + [6423] = 6423, + [6424] = 6424, + [6425] = 6307, + [6426] = 6316, + [6427] = 6301, + [6428] = 6320, + [6429] = 6321, + [6430] = 6309, + [6431] = 6338, + [6432] = 5517, + [6433] = 6330, + [6434] = 6434, + [6435] = 6385, + [6436] = 6364, + [6437] = 6302, + [6438] = 6303, + [6439] = 6405, + [6440] = 6316, + [6441] = 6441, + [6442] = 6307, + [6443] = 6316, + [6444] = 6405, + [6445] = 6301, + [6446] = 6320, + [6447] = 6353, + [6448] = 6448, + [6449] = 6330, + [6450] = 6304, + [6451] = 6329, + [6452] = 6328, + [6453] = 6326, + [6454] = 6328, + [6455] = 6307, + [6456] = 6316, + [6457] = 6301, + [6458] = 6320, + [6459] = 6318, + [6460] = 6303, + [6461] = 6306, + [6462] = 6307, + [6463] = 6316, + [6464] = 6320, + [6465] = 6364, + [6466] = 6466, + [6467] = 6467, + [6468] = 6320, + [6469] = 6307, + [6470] = 6316, + [6471] = 6301, + [6472] = 6320, + [6473] = 6307, + [6474] = 6474, + [6475] = 6316, + [6476] = 6301, + [6477] = 6320, + [6478] = 6309, + [6479] = 6307, + [6480] = 6316, + [6481] = 6301, + [6482] = 6320, + [6483] = 6353, + [6484] = 6321, + [6485] = 6320, + [6486] = 6301, + [6487] = 6316, + [6488] = 6307, + [6489] = 6307, + [6490] = 6316, + [6491] = 6301, + [6492] = 6320, + [6493] = 6307, + [6494] = 6316, + [6495] = 6495, + [6496] = 6301, + [6497] = 6320, + [6498] = 6498, + [6499] = 6408, + [6500] = 6377, + [6501] = 6501, + [6502] = 6502, + [6503] = 6503, + [6504] = 6301, + [6505] = 6505, + [6506] = 6506, + [6507] = 6507, + [6508] = 6306, + [6509] = 6317, + [6510] = 996, + [6511] = 6511, + [6512] = 6304, + [6513] = 6513, + [6514] = 6377, + [6515] = 6339, + [6516] = 6405, + [6517] = 6317, + [6518] = 6518, + [6519] = 6314, + [6520] = 2146, + [6521] = 6313, + [6522] = 6312, + [6523] = 6306, + [6524] = 6302, + [6525] = 6302, + [6526] = 6312, + [6527] = 6313, + [6528] = 6314, + [6529] = 6317, + [6530] = 6530, + [6531] = 6314, + [6532] = 6326, + [6533] = 6507, + [6534] = 6534, + [6535] = 6313, + [6536] = 6364, + [6537] = 6537, + [6538] = 6538, + [6539] = 6539, + [6540] = 6540, + [6541] = 6541, + [6542] = 6303, + [6543] = 6543, + [6544] = 6544, + [6545] = 6309, + [6546] = 6385, + [6547] = 6330, + [6548] = 6329, + [6549] = 6328, + [6550] = 6550, + [6551] = 6326, + [6552] = 6552, + [6553] = 6553, + [6554] = 6385, + [6555] = 6312, + [6556] = 6556, + [6557] = 6324, + [6558] = 6558, + [6559] = 6377, + [6560] = 6318, + [6561] = 5748, + [6562] = 6405, + [6563] = 6441, + [6564] = 6564, + [6565] = 6304, + [6566] = 344, + [6567] = 358, + [6568] = 6309, + [6569] = 6321, + [6570] = 6320, + [6571] = 6301, + [6572] = 6316, + [6573] = 6573, + [6574] = 6307, + [6575] = 6575, + [6576] = 6576, + [6577] = 6577, + [6578] = 356, + [6579] = 6579, + [6580] = 6580, + [6581] = 6581, + [6582] = 6582, + [6583] = 6583, + [6584] = 6584, + [6585] = 6585, + [6586] = 6586, + [6587] = 6587, + [6588] = 6588, + [6589] = 6589, + [6590] = 6590, + [6591] = 6591, + [6592] = 6592, + [6593] = 6593, + [6594] = 6594, + [6595] = 6595, + [6596] = 6596, + [6597] = 6597, + [6598] = 6598, + [6599] = 6599, + [6600] = 6600, + [6601] = 6601, + [6602] = 6602, + [6603] = 6603, + [6604] = 6604, + [6605] = 6605, + [6606] = 6606, + [6607] = 6607, + [6608] = 6608, + [6609] = 6609, + [6610] = 6610, + [6611] = 5403, + [6612] = 6612, + [6613] = 6613, + [6614] = 6614, + [6615] = 6615, + [6616] = 6616, + [6617] = 6617, + [6618] = 6618, + [6619] = 6619, + [6620] = 6620, + [6621] = 6621, + [6622] = 6622, + [6623] = 6623, + [6624] = 6624, + [6625] = 6625, + [6626] = 6626, + [6627] = 6627, + [6628] = 6628, + [6629] = 6629, + [6630] = 6630, + [6631] = 6631, + [6632] = 6632, + [6633] = 6633, + [6634] = 6634, + [6635] = 6635, + [6636] = 6636, + [6637] = 6637, + [6638] = 6606, + [6639] = 6639, + [6640] = 1053, + [6641] = 6641, + [6642] = 6642, + [6643] = 6643, + [6644] = 6644, + [6645] = 6607, + [6646] = 6646, + [6647] = 6647, + [6648] = 6648, + [6649] = 6615, + [6650] = 6650, + [6651] = 6651, + [6652] = 6610, + [6653] = 6653, + [6654] = 6654, + [6655] = 6655, + [6656] = 6656, + [6657] = 6657, + [6658] = 1056, + [6659] = 6659, + [6660] = 6660, + [6661] = 6661, + [6662] = 6662, + [6663] = 6663, + [6664] = 6664, + [6665] = 6615, + [6666] = 6666, + [6667] = 6667, + [6668] = 6668, + [6669] = 6669, + [6670] = 6670, + [6671] = 6671, + [6672] = 6672, + [6673] = 6673, + [6674] = 6607, + [6675] = 6610, + [6676] = 6610, + [6677] = 6677, + [6678] = 6678, + [6679] = 6615, + [6680] = 6680, + [6681] = 6610, + [6682] = 6682, + [6683] = 6683, + [6684] = 6684, + [6685] = 6685, + [6686] = 6686, + [6687] = 6687, + [6688] = 6688, + [6689] = 6689, + [6690] = 6690, + [6691] = 6691, + [6692] = 6692, + [6693] = 6693, + [6694] = 6694, + [6695] = 1047, + [6696] = 6696, + [6697] = 6697, + [6698] = 6606, + [6699] = 6699, + [6700] = 6607, + [6701] = 6701, + [6702] = 1044, + [6703] = 6703, + [6704] = 6704, + [6705] = 6705, + [6706] = 6706, + [6707] = 6707, + [6708] = 6606, + [6709] = 6709, + [6710] = 6710, + [6711] = 6711, + [6712] = 6712, + [6713] = 6713, + [6714] = 6714, + [6715] = 6715, + [6716] = 6716, + [6717] = 6717, + [6718] = 6718, + [6719] = 6719, + [6720] = 6720, + [6721] = 6721, + [6722] = 6722, + [6723] = 6723, + [6724] = 6724, + [6725] = 6725, + [6726] = 6726, + [6727] = 6727, + [6728] = 6607, + [6729] = 6729, + [6730] = 6730, + [6731] = 6731, + [6732] = 6732, + [6733] = 6733, + [6734] = 6734, + [6735] = 6607, + [6736] = 6606, + [6737] = 6737, + [6738] = 1041, + [6739] = 6739, + [6740] = 6597, + [6741] = 6630, + [6742] = 6742, + [6743] = 6598, + [6744] = 6744, + [6745] = 6745, + [6746] = 2167, + [6747] = 6747, + [6748] = 6748, + [6749] = 6749, + [6750] = 6750, + [6751] = 6710, + [6752] = 6752, + [6753] = 6753, + [6754] = 6754, + [6755] = 6755, + [6756] = 6756, + [6757] = 6757, + [6758] = 1039, + [6759] = 6630, + [6760] = 6760, + [6761] = 6761, + [6762] = 6762, + [6763] = 2182, + [6764] = 6764, + [6765] = 6765, + [6766] = 4262, + [6767] = 6767, + [6768] = 6768, + [6769] = 6769, + [6770] = 6770, + [6771] = 6771, + [6772] = 6772, + [6773] = 1035, + [6774] = 1034, + [6775] = 6775, + [6776] = 2187, + [6777] = 6777, + [6778] = 6778, + [6779] = 6779, + [6780] = 6663, + [6781] = 6781, + [6782] = 6782, + [6783] = 6783, + [6784] = 6784, + [6785] = 6606, + [6786] = 6786, + [6787] = 6654, + [6788] = 6788, + [6789] = 6789, + [6790] = 6790, + [6791] = 6791, + [6792] = 6792, + [6793] = 6793, + [6794] = 6794, + [6795] = 6795, + [6796] = 6796, + [6797] = 6797, + [6798] = 6798, + [6799] = 6587, + [6800] = 6634, + [6801] = 6633, + [6802] = 6802, + [6803] = 6803, + [6804] = 6804, + [6805] = 6805, + [6806] = 6806, + [6807] = 6745, + [6808] = 6808, + [6809] = 6627, + [6810] = 6810, + [6811] = 6624, + [6812] = 6812, + [6813] = 6813, + [6814] = 6814, + [6815] = 6703, + [6816] = 6696, + [6817] = 1013, + [6818] = 6818, + [6819] = 6705, + [6820] = 6820, + [6821] = 6821, + [6822] = 6822, + [6823] = 6694, + [6824] = 6824, + [6825] = 6825, + [6826] = 6826, + [6827] = 6827, + [6828] = 6828, + [6829] = 6829, + [6830] = 6830, + [6831] = 6831, + [6832] = 6832, + [6833] = 6587, + [6834] = 6834, + [6835] = 6622, + [6836] = 6836, + [6837] = 6623, + [6838] = 6838, + [6839] = 1030, + [6840] = 6597, + [6841] = 6841, + [6842] = 6598, + [6843] = 6843, + [6844] = 6844, + [6845] = 6845, + [6846] = 6846, + [6847] = 6847, + [6848] = 6848, + [6849] = 6849, + [6850] = 6850, + [6851] = 6851, + [6852] = 6852, + [6853] = 6853, + [6854] = 6854, + [6855] = 6732, + [6856] = 6856, + [6857] = 6731, + [6858] = 6693, + [6859] = 6859, + [6860] = 6860, + [6861] = 6861, + [6862] = 6862, + [6863] = 6863, + [6864] = 6864, + [6865] = 6865, + [6866] = 6866, + [6867] = 6867, + [6868] = 6868, + [6869] = 6869, + [6870] = 6870, + [6871] = 6871, + [6872] = 6872, + [6873] = 6873, + [6874] = 5250, + [6875] = 6875, + [6876] = 6727, + [6877] = 6877, + [6878] = 6878, + [6879] = 6879, + [6880] = 6880, + [6881] = 6725, + [6882] = 6882, + [6883] = 6883, + [6884] = 6884, + [6885] = 6885, + [6886] = 6598, + [6887] = 6887, + [6888] = 6597, + [6889] = 6889, + [6890] = 6890, + [6891] = 6723, + [6892] = 6892, + [6893] = 1011, + [6894] = 2185, + [6895] = 6895, + [6896] = 6896, + [6897] = 2184, + [6898] = 2189, + [6899] = 6899, + [6900] = 2188, + [6901] = 6901, + [6902] = 6902, + [6903] = 6903, + [6904] = 6904, + [6905] = 6587, + [6906] = 6906, + [6907] = 6721, + [6908] = 2153, + [6909] = 6909, + [6910] = 6910, + [6911] = 5415, + [6912] = 6912, + [6913] = 6913, + [6914] = 6914, + [6915] = 6915, + [6916] = 6916, + [6917] = 5239, + [6918] = 6918, + [6919] = 6587, + [6920] = 6622, + [6921] = 6623, + [6922] = 6922, + [6923] = 6923, + [6924] = 6587, + [6925] = 6718, + [6926] = 6926, + [6927] = 6927, + [6928] = 6928, + [6929] = 6929, + [6930] = 6930, + [6931] = 6931, + [6932] = 6932, + [6933] = 6615, + [6934] = 6663, + [6935] = 6935, + [6936] = 1022, + [6937] = 1049, + [6938] = 1046, + [6939] = 6939, + [6940] = 6940, + [6941] = 6941, + [6942] = 6624, + [6943] = 6943, + [6944] = 6944, + [6945] = 6627, + [6946] = 6946, + [6947] = 6947, + [6948] = 6948, + [6949] = 6949, + [6950] = 6950, + [6951] = 6034, + [6952] = 6952, + [6953] = 6953, + [6954] = 6954, + [6955] = 6955, + [6956] = 4298, + [6957] = 6957, + [6958] = 6958, + [6959] = 6959, + [6960] = 6960, + [6961] = 6961, + [6962] = 6606, + [6963] = 6607, + [6964] = 6964, + [6965] = 6965, + [6966] = 6966, + [6967] = 6967, + [6968] = 6968, + [6969] = 6969, + [6970] = 6633, + [6971] = 6634, + [6972] = 2161, + [6973] = 6973, + [6974] = 2160, + [6975] = 6975, + [6976] = 6777, + [6977] = 6786, + [6978] = 6710, + [6979] = 6705, + [6980] = 6909, + [6981] = 6981, + [6982] = 2159, + [6983] = 6983, + [6984] = 1027, + [6985] = 1032, + [6986] = 6986, + [6987] = 1033, + [6988] = 6988, + [6989] = 6989, + [6990] = 6990, + [6991] = 6845, + [6992] = 6705, + [6993] = 6993, + [6994] = 6994, + [6995] = 6995, + [6996] = 6654, + [6997] = 6997, + [6998] = 6998, + [6999] = 6999, + [7000] = 7000, + [7001] = 7001, + [7002] = 7002, + [7003] = 5242, + [7004] = 6718, + [7005] = 7005, + [7006] = 7006, + [7007] = 6721, + [7008] = 7008, + [7009] = 6723, + [7010] = 6663, + [7011] = 6725, + [7012] = 7012, + [7013] = 6727, + [7014] = 6654, + [7015] = 7015, + [7016] = 7016, + [7017] = 6731, + [7018] = 6732, + [7019] = 7019, + [7020] = 7020, + [7021] = 2797, + [7022] = 2955, + [7023] = 6610, + [7024] = 7024, + [7025] = 7025, + [7026] = 7026, + [7027] = 7027, + [7028] = 7028, + [7029] = 7029, + [7030] = 6598, + [7031] = 7031, + [7032] = 7032, + [7033] = 7026, + [7034] = 6624, + [7035] = 6597, + [7036] = 7036, + [7037] = 7037, + [7038] = 6627, + [7039] = 7039, + [7040] = 7040, + [7041] = 7041, + [7042] = 7042, + [7043] = 6845, + [7044] = 6731, + [7045] = 6630, + [7046] = 7046, + [7047] = 7047, + [7048] = 7048, + [7049] = 6624, + [7050] = 4299, + [7051] = 6627, + [7052] = 7052, + [7053] = 7053, + [7054] = 6633, + [7055] = 6703, + [7056] = 6634, + [7057] = 6696, + [7058] = 6710, + [7059] = 6694, + [7060] = 7060, + [7061] = 6693, + [7062] = 6845, + [7063] = 6865, + [7064] = 7064, + [7065] = 6630, + [7066] = 7066, + [7067] = 7067, + [7068] = 7068, + [7069] = 7069, + [7070] = 6663, + [7071] = 7071, + [7072] = 6727, + [7073] = 7073, + [7074] = 6630, + [7075] = 7075, + [7076] = 6615, + [7077] = 6654, + [7078] = 7078, + [7079] = 6725, + [7080] = 6723, + [7081] = 6615, + [7082] = 7082, + [7083] = 6191, + [7084] = 7084, + [7085] = 7085, + [7086] = 6814, + [7087] = 7087, + [7088] = 7088, + [7089] = 7089, + [7090] = 6634, + [7091] = 6633, + [7092] = 7092, + [7093] = 7093, + [7094] = 7094, + [7095] = 7095, + [7096] = 7096, + [7097] = 7097, + [7098] = 7098, + [7099] = 6627, + [7100] = 6742, + [7101] = 6624, + [7102] = 7102, + [7103] = 7103, + [7104] = 7104, + [7105] = 7105, + [7106] = 7106, + [7107] = 7107, + [7108] = 7108, + [7109] = 6610, + [7110] = 7110, + [7111] = 7111, + [7112] = 7112, + [7113] = 7113, + [7114] = 7114, + [7115] = 7115, + [7116] = 7116, + [7117] = 7117, + [7118] = 1024, + [7119] = 7119, + [7120] = 7120, + [7121] = 6721, + [7122] = 6732, + [7123] = 6731, + [7124] = 7124, + [7125] = 6622, + [7126] = 7126, + [7127] = 7127, + [7128] = 7128, + [7129] = 7129, + [7130] = 6597, + [7131] = 7131, + [7132] = 6598, + [7133] = 6598, + [7134] = 7134, + [7135] = 7135, + [7136] = 6597, + [7137] = 7137, + [7138] = 6710, + [7139] = 6779, + [7140] = 7140, + [7141] = 6845, + [7142] = 7142, + [7143] = 7143, + [7144] = 7144, + [7145] = 7145, + [7146] = 7146, + [7147] = 6624, + [7148] = 6727, + [7149] = 7149, + [7150] = 6627, + [7151] = 6718, + [7152] = 7152, + [7153] = 7037, + [7154] = 6633, + [7155] = 6634, + [7156] = 7156, + [7157] = 6732, + [7158] = 6623, + [7159] = 6923, + [7160] = 7160, + [7161] = 6725, + [7162] = 6975, + [7163] = 6654, + [7164] = 7164, + [7165] = 7165, + [7166] = 7166, + [7167] = 7167, + [7168] = 7168, + [7169] = 7169, + [7170] = 6954, + [7171] = 7171, + [7172] = 6630, + [7173] = 7173, + [7174] = 7075, + [7175] = 6723, + [7176] = 4255, + [7177] = 7177, + [7178] = 6721, + [7179] = 7179, + [7180] = 7180, + [7181] = 7181, + [7182] = 6718, + [7183] = 7183, + [7184] = 7184, + [7185] = 6732, + [7186] = 6731, + [7187] = 7187, + [7188] = 6660, + [7189] = 7189, + [7190] = 7190, + [7191] = 7191, + [7192] = 6633, + [7193] = 6634, + [7194] = 6727, + [7195] = 7195, + [7196] = 6725, + [7197] = 7197, + [7198] = 6723, + [7199] = 7199, + [7200] = 7200, + [7201] = 7201, + [7202] = 7202, + [7203] = 7203, + [7204] = 7204, + [7205] = 7205, + [7206] = 7206, + [7207] = 6705, + [7208] = 6705, + [7209] = 7209, + [7210] = 6622, + [7211] = 6623, + [7212] = 7212, + [7213] = 6909, + [7214] = 7214, + [7215] = 7215, + [7216] = 7216, + [7217] = 7217, + [7218] = 7218, + [7219] = 7219, + [7220] = 5831, + [7221] = 7221, + [7222] = 7222, + [7223] = 7223, + [7224] = 7224, + [7225] = 7225, + [7226] = 7026, + [7227] = 7227, + [7228] = 6710, + [7229] = 7229, + [7230] = 7230, + [7231] = 6846, + [7232] = 7232, + [7233] = 6853, + [7234] = 7234, + [7235] = 7235, + [7236] = 7236, + [7237] = 7237, + [7238] = 7238, + [7239] = 7239, + [7240] = 7240, + [7241] = 6845, + [7242] = 7242, + [7243] = 7243, + [7244] = 7244, + [7245] = 7245, + [7246] = 7246, + [7247] = 7247, + [7248] = 6814, + [7249] = 7215, + [7250] = 7250, + [7251] = 7251, + [7252] = 7252, + [7253] = 6885, + [7254] = 7254, + [7255] = 7255, + [7256] = 7256, + [7257] = 7257, + [7258] = 7258, + [7259] = 7259, + [7260] = 7260, + [7261] = 7261, + [7262] = 7262, + [7263] = 7263, + [7264] = 7264, + [7265] = 6710, + [7266] = 6678, + [7267] = 6845, + [7268] = 7268, + [7269] = 7269, + [7270] = 7270, + [7271] = 6710, + [7272] = 6599, + [7273] = 6623, + [7274] = 6705, + [7275] = 6622, + [7276] = 7276, + [7277] = 6659, + [7278] = 6742, + [7279] = 7279, + [7280] = 7280, + [7281] = 7281, + [7282] = 6959, + [7283] = 7283, + [7284] = 6723, + [7285] = 7285, + [7286] = 6725, + [7287] = 7287, + [7288] = 6727, + [7289] = 7289, + [7290] = 6731, + [7291] = 6732, + [7292] = 6958, + [7293] = 7293, + [7294] = 7294, + [7295] = 7094, + [7296] = 7230, + [7297] = 6689, + [7298] = 7298, + [7299] = 7299, + [7300] = 7300, + [7301] = 7301, + [7302] = 7230, + [7303] = 7303, + [7304] = 6587, + [7305] = 7305, + [7306] = 7306, + [7307] = 7307, + [7308] = 7308, + [7309] = 7309, + [7310] = 7310, + [7311] = 7311, + [7312] = 7312, + [7313] = 7313, + [7314] = 7314, + [7315] = 6630, + [7316] = 6885, + [7317] = 7317, + [7318] = 6598, + [7319] = 7319, + [7320] = 7320, + [7321] = 7321, + [7322] = 7322, + [7323] = 7323, + [7324] = 7324, + [7325] = 7325, + [7326] = 7326, + [7327] = 6597, + [7328] = 6654, + [7329] = 7329, + [7330] = 7037, + [7331] = 7331, + [7332] = 7332, + [7333] = 7333, + [7334] = 6623, + [7335] = 6606, + [7336] = 6634, + [7337] = 6633, + [7338] = 7338, + [7339] = 6622, + [7340] = 6853, + [7341] = 6627, + [7342] = 7152, + [7343] = 6624, + [7344] = 7344, + [7345] = 6846, + [7346] = 7346, + [7347] = 7347, + [7348] = 7348, + [7349] = 6607, + [7350] = 7350, + [7351] = 7351, + [7352] = 7352, + [7353] = 7353, + [7354] = 7354, + [7355] = 7355, + [7356] = 7356, + [7357] = 7350, + [7358] = 7358, + [7359] = 7359, + [7360] = 7360, + [7361] = 7361, + [7362] = 7362, + [7363] = 7363, + [7364] = 7364, + [7365] = 7365, + [7366] = 7366, + [7367] = 7367, + [7368] = 7368, + [7369] = 7369, + [7370] = 7370, + [7371] = 7371, + [7372] = 7372, + [7373] = 7373, + [7374] = 7368, + [7375] = 7375, + [7376] = 7351, + [7377] = 7377, + [7378] = 7378, + [7379] = 7379, + [7380] = 7380, + [7381] = 7381, + [7382] = 7382, + [7383] = 7383, + [7384] = 7384, + [7385] = 7385, + [7386] = 7386, + [7387] = 7387, + [7388] = 7388, + [7389] = 7389, + [7390] = 7390, + [7391] = 7391, + [7392] = 3218, + [7393] = 7393, + [7394] = 7394, + [7395] = 1105, + [7396] = 7396, + [7397] = 7390, + [7398] = 7398, + [7399] = 7399, + [7400] = 7394, + [7401] = 1252, + [7402] = 3215, + [7403] = 7403, + [7404] = 7404, + [7405] = 7405, + [7406] = 7406, + [7407] = 7407, + [7408] = 7408, + [7409] = 7409, + [7410] = 7410, + [7411] = 3179, + [7412] = 7412, + [7413] = 7413, + [7414] = 1096, + [7415] = 1095, + [7416] = 1177, + [7417] = 7412, + [7418] = 7418, + [7419] = 7419, + [7420] = 1181, + [7421] = 1182, + [7422] = 1183, + [7423] = 1094, + [7424] = 1093, + [7425] = 7425, + [7426] = 4269, + [7427] = 7406, + [7428] = 7405, + [7429] = 7429, + [7430] = 7404, + [7431] = 7410, + [7432] = 7403, + [7433] = 7378, + [7434] = 7379, + [7435] = 7361, + [7436] = 7394, + [7437] = 7399, + [7438] = 7438, + [7439] = 7390, + [7440] = 7440, + [7441] = 7389, + [7442] = 7396, + [7443] = 7419, + [7444] = 1189, + [7445] = 7389, + [7446] = 7410, + [7447] = 7447, + [7448] = 1082, + [7449] = 7419, + [7450] = 1190, + [7451] = 7387, + [7452] = 7387, + [7453] = 7453, + [7454] = 7386, + [7455] = 1192, + [7456] = 1055, + [7457] = 1193, + [7458] = 1051, + [7459] = 7384, + [7460] = 7383, + [7461] = 7386, + [7462] = 1251, + [7463] = 1250, + [7464] = 1249, + [7465] = 1248, + [7466] = 7382, + [7467] = 7381, + [7468] = 1247, + [7469] = 1246, + [7470] = 1245, + [7471] = 7380, + [7472] = 7377, + [7473] = 1244, + [7474] = 7351, + [7475] = 7375, + [7476] = 7373, + [7477] = 1243, + [7478] = 1242, + [7479] = 1241, + [7480] = 1240, + [7481] = 1239, + [7482] = 1238, + [7483] = 1237, + [7484] = 1236, + [7485] = 1235, + [7486] = 1234, + [7487] = 1233, + [7488] = 1231, + [7489] = 7438, + [7490] = 7453, + [7491] = 1230, + [7492] = 7366, + [7493] = 7365, + [7494] = 7494, + [7495] = 1228, + [7496] = 1079, + [7497] = 1077, + [7498] = 1076, + [7499] = 7499, + [7500] = 7355, + [7501] = 7358, + [7502] = 1075, + [7503] = 7379, + [7504] = 7356, + [7505] = 7360, + [7506] = 7378, + [7507] = 7353, + [7508] = 7354, + [7509] = 7509, + [7510] = 4428, + [7511] = 1083, + [7512] = 7368, + [7513] = 7513, + [7514] = 7352, + [7515] = 7410, + [7516] = 7516, + [7517] = 7412, + [7518] = 7419, + [7519] = 7350, + [7520] = 7520, + [7521] = 7359, + [7522] = 7522, + [7523] = 1216, + [7524] = 7362, + [7525] = 7363, + [7526] = 7364, + [7527] = 7527, + [7528] = 7528, + [7529] = 7372, + [7530] = 7370, + [7531] = 7369, + [7532] = 7370, + [7533] = 7533, + [7534] = 7372, + [7535] = 7369, + [7536] = 7368, + [7537] = 1066, + [7538] = 1065, + [7539] = 7364, + [7540] = 7378, + [7541] = 7379, + [7542] = 7363, + [7543] = 1064, + [7544] = 7362, + [7545] = 1063, + [7546] = 7359, + [7547] = 7350, + [7548] = 7548, + [7549] = 7389, + [7550] = 7550, + [7551] = 7410, + [7552] = 7552, + [7553] = 7553, + [7554] = 7406, + [7555] = 7405, + [7556] = 7419, + [7557] = 7404, + [7558] = 7403, + [7559] = 7412, + [7560] = 346, + [7561] = 7361, + [7562] = 7399, + [7563] = 7563, + [7564] = 7410, + [7565] = 7565, + [7566] = 1062, + [7567] = 1061, + [7568] = 1060, + [7569] = 7361, + [7570] = 1059, + [7571] = 7399, + [7572] = 7352, + [7573] = 7573, + [7574] = 1219, + [7575] = 1218, + [7576] = 7354, + [7577] = 7353, + [7578] = 7360, + [7579] = 5525, + [7580] = 1217, + [7581] = 7384, + [7582] = 7383, + [7583] = 7425, + [7584] = 7356, + [7585] = 7358, + [7586] = 7355, + [7587] = 5624, + [7588] = 7382, + [7589] = 7381, + [7590] = 7494, + [7591] = 7351, + [7592] = 7373, + [7593] = 7365, + [7594] = 7366, + [7595] = 7595, + [7596] = 7596, + [7597] = 1052, + [7598] = 7396, + [7599] = 5528, + [7600] = 1057, + [7601] = 1214, + [7602] = 1213, + [7603] = 7366, + [7604] = 7365, + [7605] = 7494, + [7606] = 1212, + [7607] = 1211, + [7608] = 1210, + [7609] = 7609, + [7610] = 7610, + [7611] = 7611, + [7612] = 7360, + [7613] = 7613, + [7614] = 7353, + [7615] = 7354, + [7616] = 1209, + [7617] = 1208, + [7618] = 1207, + [7619] = 1206, + [7620] = 1205, + [7621] = 7352, + [7622] = 7622, + [7623] = 1204, + [7624] = 1203, + [7625] = 1202, + [7626] = 7350, + [7627] = 7373, + [7628] = 7359, + [7629] = 7375, + [7630] = 1201, + [7631] = 7363, + [7632] = 7364, + [7633] = 7351, + [7634] = 7377, + [7635] = 7380, + [7636] = 7381, + [7637] = 7369, + [7638] = 7370, + [7639] = 7382, + [7640] = 1200, + [7641] = 7368, + [7642] = 1199, + [7643] = 1198, + [7644] = 1197, + [7645] = 7378, + [7646] = 1196, + [7647] = 7383, + [7648] = 7384, + [7649] = 1195, + [7650] = 1194, + [7651] = 1054, + [7652] = 1152, + [7653] = 7419, + [7654] = 7654, + [7655] = 7655, + [7656] = 7656, + [7657] = 1103, + [7658] = 1102, + [7659] = 7659, + [7660] = 7660, + [7661] = 7595, + [7662] = 7552, + [7663] = 7663, + [7664] = 1122, + [7665] = 7659, + [7666] = 1128, + [7667] = 7667, + [7668] = 1134, + [7669] = 1112, + [7670] = 1222, + [7671] = 1215, + [7672] = 1229, + [7673] = 7396, + [7674] = 7656, + [7675] = 1188, + [7676] = 1187, + [7677] = 7399, + [7678] = 7361, + [7679] = 7403, + [7680] = 7384, + [7681] = 1131, + [7682] = 7404, + [7683] = 1169, + [7684] = 3181, + [7685] = 7522, + [7686] = 7527, + [7687] = 7687, + [7688] = 3182, + [7689] = 7418, + [7690] = 7405, + [7691] = 7406, + [7692] = 1168, + [7693] = 1167, + [7694] = 1165, + [7695] = 1129, + [7696] = 7696, + [7697] = 1163, + [7698] = 1162, + [7699] = 7494, + [7700] = 7700, + [7701] = 7412, + [7702] = 1126, + [7703] = 1124, + [7704] = 1123, + [7705] = 1146, + [7706] = 1118, + [7707] = 7548, + [7708] = 7708, + [7709] = 1116, + [7710] = 7710, + [7711] = 7390, + [7712] = 1115, + [7713] = 1114, + [7714] = 1113, + [7715] = 3282, + [7716] = 7410, + [7717] = 7717, + [7718] = 7718, + [7719] = 1108, + [7720] = 1107, + [7721] = 1106, + [7722] = 7722, + [7723] = 7723, + [7724] = 1104, + [7725] = 7725, + [7726] = 7726, + [7727] = 3163, + [7728] = 1101, + [7729] = 1138, + [7730] = 7730, + [7731] = 363, + [7732] = 7419, + [7733] = 1137, + [7734] = 1136, + [7735] = 7383, + [7736] = 7573, + [7737] = 7655, + [7738] = 7394, + [7739] = 1099, + [7740] = 1098, + [7741] = 7390, + [7742] = 7384, + [7743] = 7383, + [7744] = 1097, + [7745] = 7389, + [7746] = 7410, + [7747] = 7382, + [7748] = 7748, + [7749] = 1092, + [7750] = 7381, + [7751] = 1119, + [7752] = 7752, + [7753] = 7387, + [7754] = 1091, + [7755] = 7386, + [7756] = 7380, + [7757] = 7377, + [7758] = 1089, + [7759] = 1086, + [7760] = 1109, + [7761] = 1081, + [7762] = 3277, + [7763] = 7763, + [7764] = 3257, + [7765] = 1120, + [7766] = 7766, + [7767] = 7358, + [7768] = 1078, + [7769] = 1073, + [7770] = 1072, + [7771] = 1071, + [7772] = 1070, + [7773] = 7773, + [7774] = 3176, + [7775] = 3174, + [7776] = 7356, + [7777] = 3214, + [7778] = 3210, + [7779] = 4299, + [7780] = 4298, + [7781] = 1111, + [7782] = 7394, + [7783] = 1069, + [7784] = 1100, + [7785] = 7379, + [7786] = 7378, + [7787] = 7654, + [7788] = 7788, + [7789] = 7368, + [7790] = 7375, + [7791] = 7373, + [7792] = 7382, + [7793] = 7381, + [7794] = 7794, + [7795] = 7752, + [7796] = 7796, + [7797] = 5533, + [7798] = 7798, + [7799] = 7799, + [7800] = 7800, + [7801] = 7801, + [7802] = 7802, + [7803] = 7803, + [7804] = 7613, + [7805] = 7372, + [7806] = 1085, + [7807] = 7370, + [7808] = 7369, + [7809] = 1058, + [7810] = 7810, + [7811] = 7364, + [7812] = 7363, + [7813] = 7550, + [7814] = 7362, + [7815] = 3084, + [7816] = 7359, + [7817] = 7350, + [7818] = 7611, + [7819] = 7819, + [7820] = 7820, + [7821] = 7610, + [7822] = 7609, + [7823] = 7823, + [7824] = 7398, + [7825] = 7825, + [7826] = 7826, + [7827] = 7773, + [7828] = 7828, + [7829] = 7829, + [7830] = 7380, + [7831] = 7831, + [7832] = 7351, + [7833] = 7796, + [7834] = 7373, + [7835] = 7596, + [7836] = 1185, + [7837] = 7352, + [7838] = 1186, + [7839] = 7839, + [7840] = 7354, + [7841] = 7353, + [7842] = 7360, + [7843] = 1223, + [7844] = 7550, + [7845] = 7845, + [7846] = 7358, + [7847] = 7801, + [7848] = 7848, + [7849] = 7355, + [7850] = 7850, + [7851] = 7494, + [7852] = 7365, + [7853] = 7366, + [7854] = 7854, + [7855] = 7596, + [7856] = 7856, + [7857] = 7372, + [7858] = 7366, + [7859] = 7859, + [7860] = 7369, + [7861] = 1087, + [7862] = 7609, + [7863] = 7863, + [7864] = 7610, + [7865] = 7408, + [7866] = 7611, + [7867] = 7613, + [7868] = 7868, + [7869] = 3112, + [7870] = 7870, + [7871] = 1184, + [7872] = 7370, + [7873] = 1226, + [7874] = 1225, + [7875] = 7365, + [7876] = 7876, + [7877] = 7373, + [7878] = 7494, + [7879] = 7375, + [7880] = 1221, + [7881] = 7351, + [7882] = 7377, + [7883] = 7883, + [7884] = 7380, + [7885] = 7381, + [7886] = 7382, + [7887] = 7364, + [7888] = 7383, + [7889] = 7384, + [7890] = 1068, + [7891] = 7803, + [7892] = 7803, + [7893] = 1067, + [7894] = 7894, + [7895] = 3045, + [7896] = 7859, + [7897] = 7897, + [7898] = 7528, + [7899] = 7355, + [7900] = 1179, + [7901] = 1178, + [7902] = 1227, + [7903] = 7358, + [7904] = 7356, + [7905] = 7360, + [7906] = 7906, + [7907] = 7353, + [7908] = 7908, + [7909] = 7909, + [7910] = 7396, + [7911] = 7354, + [7912] = 7399, + [7913] = 7361, + [7914] = 4262, + [7915] = 4255, + [7916] = 7403, + [7917] = 7404, + [7918] = 3229, + [7919] = 7405, + [7920] = 7447, + [7921] = 7516, + [7922] = 7406, + [7923] = 7923, + [7924] = 7924, + [7925] = 7925, + [7926] = 7412, + [7927] = 7794, + [7928] = 7928, + [7929] = 3254, + [7930] = 7352, + [7931] = 7828, + [7932] = 7801, + [7933] = 7933, + [7934] = 7934, + [7935] = 7412, + [7936] = 7796, + [7937] = 7937, + [7938] = 7938, + [7939] = 7801, + [7940] = 7940, + [7941] = 2824, + [7942] = 2946, + [7943] = 7943, + [7944] = 7859, + [7945] = 7945, + [7946] = 3195, + [7947] = 7947, + [7948] = 7803, + [7949] = 7796, + [7950] = 7950, + [7951] = 7951, + [7952] = 7952, + [7953] = 7953, + [7954] = 7954, + [7955] = 7362, + [7956] = 3231, + [7957] = 7359, + [7958] = 7363, + [7959] = 7350, + [7960] = 7359, + [7961] = 7550, + [7962] = 7962, + [7963] = 7362, + [7964] = 7394, + [7965] = 7965, + [7966] = 7966, + [7967] = 7967, + [7968] = 7350, + [7969] = 7954, + [7970] = 7924, + [7971] = 7971, + [7972] = 7828, + [7973] = 7370, + [7974] = 7773, + [7975] = 7363, + [7976] = 7390, + [7977] = 7909, + [7978] = 3197, + [7979] = 7979, + [7980] = 7389, + [7981] = 7364, + [7982] = 361, + [7983] = 7369, + [7984] = 7387, + [7985] = 7370, + [7986] = 7387, + [7987] = 7386, + [7988] = 7377, + [7989] = 7989, + [7990] = 7990, + [7991] = 7991, + [7992] = 7992, + [7993] = 7993, + [7994] = 7368, + [7995] = 362, + [7996] = 7796, + [7997] = 7947, + [7998] = 7393, + [7999] = 7409, + [8000] = 8000, + [8001] = 7378, + [8002] = 7801, + [8003] = 7379, + [8004] = 8004, + [8005] = 7940, + [8006] = 7933, + [8007] = 7950, + [8008] = 7516, + [8009] = 8009, + [8010] = 8010, + [8011] = 7419, + [8012] = 7440, + [8013] = 7803, + [8014] = 7379, + [8015] = 7389, + [8016] = 8016, + [8017] = 7378, + [8018] = 7375, + [8019] = 3256, + [8020] = 7368, + [8021] = 8010, + [8022] = 7687, + [8023] = 3190, + [8024] = 8009, + [8025] = 3191, + [8026] = 7372, + [8027] = 7831, + [8028] = 7528, + [8029] = 7859, + [8030] = 7799, + [8031] = 8031, + [8032] = 7803, + [8033] = 7800, + [8034] = 7802, + [8035] = 8035, + [8036] = 7613, + [8037] = 7611, + [8038] = 8038, + [8039] = 7396, + [8040] = 7408, + [8041] = 7610, + [8042] = 7609, + [8043] = 8043, + [8044] = 8044, + [8045] = 7945, + [8046] = 7372, + [8047] = 7365, + [8048] = 7369, + [8049] = 7364, + [8050] = 7363, + [8051] = 8051, + [8052] = 7550, + [8053] = 8053, + [8054] = 7828, + [8055] = 7773, + [8056] = 8056, + [8057] = 7362, + [8058] = 7359, + [8059] = 7386, + [8060] = 8060, + [8061] = 8061, + [8062] = 8062, + [8063] = 7773, + [8064] = 7828, + [8065] = 7828, + [8066] = 7773, + [8067] = 7947, + [8068] = 7404, + [8069] = 8069, + [8070] = 7796, + [8071] = 7596, + [8072] = 7550, + [8073] = 7848, + [8074] = 7565, + [8075] = 7854, + [8076] = 7399, + [8077] = 8077, + [8078] = 7386, + [8079] = 7387, + [8080] = 7352, + [8081] = 7408, + [8082] = 8082, + [8083] = 7389, + [8084] = 7354, + [8085] = 7353, + [8086] = 7360, + [8087] = 8087, + [8088] = 7796, + [8089] = 7803, + [8090] = 8090, + [8091] = 7356, + [8092] = 7859, + [8093] = 7947, + [8094] = 7528, + [8095] = 7358, + [8096] = 7355, + [8097] = 8097, + [8098] = 7494, + [8099] = 8099, + [8100] = 7527, + [8101] = 7440, + [8102] = 7366, + [8103] = 7361, + [8104] = 8104, + [8105] = 7596, + [8106] = 7516, + [8107] = 7801, + [8108] = 8108, + [8109] = 8109, + [8110] = 7516, + [8111] = 7390, + [8112] = 8112, + [8113] = 7801, + [8114] = 8114, + [8115] = 7352, + [8116] = 7609, + [8117] = 7610, + [8118] = 7611, + [8119] = 8119, + [8120] = 7947, + [8121] = 7796, + [8122] = 7613, + [8123] = 7354, + [8124] = 7394, + [8125] = 7353, + [8126] = 7373, + [8127] = 7375, + [8128] = 7859, + [8129] = 7351, + [8130] = 7377, + [8131] = 7380, + [8132] = 7381, + [8133] = 7528, + [8134] = 7382, + [8135] = 7859, + [8136] = 7803, + [8137] = 7906, + [8138] = 7360, + [8139] = 8139, + [8140] = 7383, + [8141] = 8141, + [8142] = 7384, + [8143] = 8143, + [8144] = 8144, + [8145] = 7403, + [8146] = 8146, + [8147] = 8147, + [8148] = 8148, + [8149] = 8149, + [8150] = 7548, + [8151] = 7408, + [8152] = 8152, + [8153] = 7522, + [8154] = 7366, + [8155] = 7365, + [8156] = 8156, + [8157] = 7550, + [8158] = 7528, + [8159] = 7356, + [8160] = 7494, + [8161] = 8161, + [8162] = 8162, + [8163] = 7897, + [8164] = 7396, + [8165] = 8165, + [8166] = 8166, + [8167] = 7828, + [8168] = 7773, + [8169] = 3268, + [8170] = 7412, + [8171] = 8171, + [8172] = 7399, + [8173] = 7361, + [8174] = 8174, + [8175] = 7403, + [8176] = 7404, + [8177] = 7405, + [8178] = 7406, + [8179] = 7528, + [8180] = 7405, + [8181] = 7355, + [8182] = 8182, + [8183] = 7406, + [8184] = 8184, + [8185] = 8185, + [8186] = 8186, + [8187] = 8187, + [8188] = 8188, + [8189] = 8189, + [8190] = 8190, + [8191] = 8191, + [8192] = 8192, + [8193] = 8193, + [8194] = 8194, + [8195] = 8195, + [8196] = 8184, + [8197] = 8197, + [8198] = 8198, + [8199] = 8199, + [8200] = 8200, + [8201] = 8200, + [8202] = 8202, + [8203] = 8203, + [8204] = 8204, + [8205] = 8205, + [8206] = 8206, + [8207] = 8207, + [8208] = 8208, + [8209] = 8209, + [8210] = 8210, + [8211] = 8211, + [8212] = 8212, + [8213] = 8213, + [8214] = 8214, + [8215] = 8215, + [8216] = 8216, + [8217] = 8192, + [8218] = 8218, + [8219] = 8219, + [8220] = 8186, + [8221] = 8221, + [8222] = 8222, + [8223] = 8223, + [8224] = 8224, + [8225] = 8225, + [8226] = 8226, + [8227] = 8194, + [8228] = 8228, + [8229] = 8229, + [8230] = 8214, + [8231] = 8231, + [8232] = 8188, + [8233] = 8233, + [8234] = 8234, + [8235] = 8235, + [8236] = 8236, + [8237] = 8237, + [8238] = 8189, + [8239] = 8239, + [8240] = 8240, + [8241] = 8241, + [8242] = 8184, + [8243] = 8243, + [8244] = 8244, + [8245] = 8245, + [8246] = 8245, + [8247] = 8247, + [8248] = 8243, + [8249] = 8249, + [8250] = 8250, + [8251] = 8251, + [8252] = 8252, + [8253] = 8253, + [8254] = 8240, + [8255] = 8237, + [8256] = 8189, + [8257] = 8214, + [8258] = 8225, + [8259] = 8190, + [8260] = 8260, + [8261] = 8261, + [8262] = 8195, + [8263] = 8240, + [8264] = 8264, + [8265] = 8265, + [8266] = 8266, + [8267] = 8213, + [8268] = 8212, + [8269] = 8234, + [8270] = 8270, + [8271] = 8187, + [8272] = 8272, + [8273] = 8253, + [8274] = 8274, + [8275] = 8275, + [8276] = 8276, + [8277] = 8277, + [8278] = 8278, + [8279] = 8185, + [8280] = 8250, + [8281] = 8200, + [8282] = 8282, + [8283] = 8204, + [8284] = 8284, + [8285] = 8204, + [8286] = 8244, + [8287] = 8200, + [8288] = 8288, + [8289] = 8289, + [8290] = 8192, + [8291] = 8234, + [8292] = 8203, + [8293] = 8212, + [8294] = 8213, + [8295] = 8186, + [8296] = 8228, + [8297] = 8188, + [8298] = 8190, + [8299] = 8299, + [8300] = 8194, + [8301] = 8195, + [8302] = 8302, + [8303] = 8303, + [8304] = 8304, + [8305] = 8305, + [8306] = 8225, + [8307] = 8307, + [8308] = 8204, + [8309] = 8309, + [8310] = 8310, + [8311] = 8214, + [8312] = 8307, + [8313] = 8195, + [8314] = 8305, + [8315] = 8315, + [8316] = 8316, + [8317] = 8317, + [8318] = 8194, + [8319] = 8189, + [8320] = 8190, + [8321] = 8240, + [8322] = 8322, + [8323] = 8323, + [8324] = 8225, + [8325] = 8325, + [8326] = 8190, + [8327] = 8245, + [8328] = 8328, + [8329] = 8243, + [8330] = 8197, + [8331] = 8331, + [8332] = 8332, + [8333] = 8265, + [8334] = 8266, + [8335] = 8270, + [8336] = 8237, + [8337] = 8275, + [8338] = 8276, + [8339] = 8277, + [8340] = 8278, + [8341] = 8316, + [8342] = 8315, + [8343] = 8310, + [8344] = 8185, + [8345] = 8309, + [8346] = 8307, + [8347] = 8305, + [8348] = 8304, + [8349] = 8303, + [8350] = 8234, + [8351] = 8302, + [8352] = 8187, + [8353] = 8282, + [8354] = 8299, + [8355] = 8284, + [8356] = 8288, + [8357] = 8195, + [8358] = 8194, + [8359] = 8225, + [8360] = 8251, + [8361] = 8249, + [8362] = 8200, + [8363] = 8309, + [8364] = 8364, + [8365] = 8365, + [8366] = 8234, + [8367] = 8187, + [8368] = 8368, + [8369] = 8234, + [8370] = 8233, + [8371] = 8188, + [8372] = 8228, + [8373] = 8212, + [8374] = 8213, + [8375] = 8186, + [8376] = 8315, + [8377] = 8192, + [8378] = 8316, + [8379] = 8288, + [8380] = 8284, + [8381] = 8282, + [8382] = 8216, + [8383] = 8225, + [8384] = 8211, + [8385] = 8185, + [8386] = 8210, + [8387] = 8208, + [8388] = 8214, + [8389] = 8189, + [8390] = 8278, + [8391] = 8240, + [8392] = 8207, + [8393] = 8277, + [8394] = 8276, + [8395] = 8245, + [8396] = 8275, + [8397] = 8243, + [8398] = 8398, + [8399] = 8399, + [8400] = 8270, + [8401] = 8401, + [8402] = 8266, + [8403] = 8265, + [8404] = 8237, + [8405] = 8237, + [8406] = 8406, + [8407] = 8407, + [8408] = 8197, + [8409] = 8409, + [8410] = 8410, + [8411] = 8187, + [8412] = 8412, + [8413] = 8237, + [8414] = 8200, + [8415] = 8184, + [8416] = 8310, + [8417] = 8417, + [8418] = 8234, + [8419] = 8243, + [8420] = 8245, + [8421] = 8203, + [8422] = 8212, + [8423] = 8213, + [8424] = 8240, + [8425] = 8215, + [8426] = 8189, + [8427] = 8218, + [8428] = 8428, + [8429] = 8221, + [8430] = 8430, + [8431] = 8225, + [8432] = 8214, + [8433] = 8304, + [8434] = 8251, + [8435] = 8249, + [8436] = 8214, + [8437] = 8189, + [8438] = 8244, + [8439] = 8240, + [8440] = 8250, + [8441] = 8253, + [8442] = 8245, + [8443] = 8187, + [8444] = 8243, + [8445] = 8253, + [8446] = 8213, + [8447] = 8274, + [8448] = 8212, + [8449] = 8265, + [8450] = 8237, + [8451] = 8266, + [8452] = 8204, + [8453] = 8250, + [8454] = 8244, + [8455] = 8270, + [8456] = 8275, + [8457] = 8187, + [8458] = 8276, + [8459] = 8200, + [8460] = 8200, + [8461] = 8277, + [8462] = 8278, + [8463] = 8228, + [8464] = 8282, + [8465] = 8212, + [8466] = 8213, + [8467] = 8284, + [8468] = 8288, + [8469] = 8469, + [8470] = 8470, + [8471] = 8471, + [8472] = 8225, + [8473] = 8473, + [8474] = 8214, + [8475] = 8212, + [8476] = 8240, + [8477] = 8213, + [8478] = 8478, + [8479] = 8245, + [8480] = 8480, + [8481] = 8243, + [8482] = 8299, + [8483] = 8302, + [8484] = 8484, + [8485] = 8237, + [8486] = 8303, + [8487] = 8487, + [8488] = 8195, + [8489] = 8305, + [8490] = 8243, + [8491] = 8307, + [8492] = 8309, + [8493] = 8310, + [8494] = 8315, + [8495] = 8316, + [8496] = 8198, + [8497] = 8497, + [8498] = 8498, + [8499] = 8233, + [8500] = 8184, + [8501] = 8197, + [8502] = 8184, + [8503] = 8195, + [8504] = 8197, + [8505] = 8221, + [8506] = 8194, + [8507] = 8194, + [8508] = 8190, + [8509] = 8428, + [8510] = 8190, + [8511] = 8184, + [8512] = 8512, + [8513] = 8473, + [8514] = 8197, + [8515] = 8188, + [8516] = 8228, + [8517] = 8186, + [8518] = 8251, + [8519] = 8249, + [8520] = 8520, + [8521] = 8521, + [8522] = 8245, + [8523] = 8184, + [8524] = 8197, + [8525] = 8192, + [8526] = 8526, + [8527] = 8231, + [8528] = 8233, + [8529] = 8188, + [8530] = 8228, + [8531] = 8186, + [8532] = 8532, + [8533] = 8533, + [8534] = 8184, + [8535] = 8197, + [8536] = 8222, + [8537] = 8247, + [8538] = 8272, + [8539] = 8192, + [8540] = 8216, + [8541] = 8211, + [8542] = 8512, + [8543] = 8210, + [8544] = 8487, + [8545] = 8221, + [8546] = 8208, + [8547] = 8184, + [8548] = 8197, + [8549] = 8197, + [8550] = 8550, + [8551] = 8184, + [8552] = 8218, + [8553] = 8236, + [8554] = 8215, + [8555] = 8197, + [8556] = 8556, + [8557] = 8203, + [8558] = 8188, + [8559] = 8228, + [8560] = 8560, + [8561] = 8215, + [8562] = 8203, + [8563] = 8218, + [8564] = 8184, + [8565] = 8197, + [8566] = 8198, + [8567] = 8428, + [8568] = 8186, + [8569] = 8233, + [8570] = 8473, + [8571] = 8526, + [8572] = 8231, + [8573] = 8207, + [8574] = 8221, + [8575] = 8288, + [8576] = 8244, + [8577] = 8250, + [8578] = 8203, + [8579] = 8253, + [8580] = 8247, + [8581] = 8272, + [8582] = 8582, + [8583] = 8203, + [8584] = 8512, + [8585] = 8265, + [8586] = 8487, + [8587] = 8266, + [8588] = 8270, + [8589] = 8533, + [8590] = 8275, + [8591] = 8236, + [8592] = 8184, + [8593] = 8198, + [8594] = 8428, + [8595] = 8197, + [8596] = 8276, + [8597] = 8473, + [8598] = 8526, + [8599] = 8231, + [8600] = 8277, + [8601] = 8222, + [8602] = 8278, + [8603] = 8233, + [8604] = 8185, + [8605] = 8605, + [8606] = 8247, + [8607] = 8272, + [8608] = 8282, + [8609] = 8512, + [8610] = 8249, + [8611] = 8487, + [8612] = 8251, + [8613] = 8284, + [8614] = 8430, + [8615] = 8316, + [8616] = 8299, + [8617] = 8236, + [8618] = 8198, + [8619] = 8428, + [8620] = 8302, + [8621] = 8304, + [8622] = 8473, + [8623] = 8526, + [8624] = 8231, + [8625] = 8305, + [8626] = 8184, + [8627] = 8197, + [8628] = 8307, + [8629] = 8309, + [8630] = 8218, + [8631] = 8247, + [8632] = 8272, + [8633] = 8497, + [8634] = 8634, + [8635] = 8512, + [8636] = 8310, + [8637] = 8487, + [8638] = 8560, + [8639] = 8315, + [8640] = 8526, + [8641] = 8192, + [8642] = 8236, + [8643] = 8198, + [8644] = 8428, + [8645] = 8216, + [8646] = 8303, + [8647] = 8473, + [8648] = 8231, + [8649] = 8195, + [8650] = 8215, + [8651] = 8194, + [8652] = 8207, + [8653] = 8208, + [8654] = 8210, + [8655] = 8247, + [8656] = 8272, + [8657] = 8211, + [8658] = 8195, + [8659] = 8512, + [8660] = 8190, + [8661] = 8487, + [8662] = 8216, + [8663] = 8192, + [8664] = 8236, + [8665] = 8198, + [8666] = 8428, + [8667] = 8667, + [8668] = 8194, + [8669] = 8473, + [8670] = 8231, + [8671] = 8211, + [8672] = 8190, + [8673] = 8251, + [8674] = 8249, + [8675] = 8203, + [8676] = 8233, + [8677] = 8247, + [8678] = 8272, + [8679] = 8512, + [8680] = 8188, + [8681] = 8487, + [8682] = 8582, + [8683] = 8228, + [8684] = 8236, + [8685] = 8198, + [8686] = 8428, + [8687] = 8186, + [8688] = 8473, + [8689] = 8231, + [8690] = 8192, + [8691] = 8186, + [8692] = 8228, + [8693] = 8188, + [8694] = 8184, + [8695] = 8247, + [8696] = 8272, + [8697] = 8512, + [8698] = 8197, + [8699] = 8487, + [8700] = 8251, + [8701] = 8236, + [8702] = 8249, + [8703] = 8703, + [8704] = 8325, + [8705] = 8322, + [8706] = 8706, + [8707] = 8197, + [8708] = 8233, + [8709] = 8430, + [8710] = 8184, + [8711] = 8233, + [8712] = 8325, + [8713] = 8322, + [8714] = 8203, + [8715] = 8249, + [8716] = 8251, + [8717] = 8430, + [8718] = 8299, + [8719] = 8719, + [8720] = 8325, + [8721] = 8322, + [8722] = 8302, + [8723] = 8303, + [8724] = 8724, + [8725] = 8430, + [8726] = 8325, + [8727] = 8322, + [8728] = 8728, + [8729] = 8207, + [8730] = 8304, + [8731] = 8430, + [8732] = 8325, + [8733] = 8322, + [8734] = 8208, + [8735] = 8430, + [8736] = 8325, + [8737] = 8322, + [8738] = 8738, + [8739] = 8430, + [8740] = 8325, + [8741] = 8322, + [8742] = 8210, + [8743] = 8743, }; static inline bool anon_sym_BANG_character_set_1(int32_t c) { @@ -9574,6 +13787,24 @@ static inline bool anon_sym_BANG_character_set_1(int32_t c) { : (c <= 12288 || c == 65279)))); } +static inline bool anon_sym_BANG_character_set_2(int32_t c) { + return (c < 8192 + ? (c < ' ' + ? (c < '\r' + ? (c >= '\t' && c <= '\n') + : c <= '\r') + : (c <= ' ' || (c < 5760 + ? c == 160 + : c <= 5760))) + : (c <= 8203 || (c < 8287 + ? (c < 8239 + ? (c >= 8232 && c <= 8233) + : c <= 8239) + : (c <= 8288 || (c < 65279 + ? c == 12288 + : c <= 65279))))); +} + static inline bool sym__glimmer_template_content_character_set_1(int32_t c) { return (c < 8192 ? (c < ' ' @@ -9583,11 +13814,13 @@ static inline bool sym__glimmer_template_content_character_set_1(int32_t c) { : (c <= ' ' || (c < 5760 ? c == 160 : c <= 5760))) - : (c <= 8203 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); + : (c <= 8203 || (c < 8287 + ? (c < 8239 + ? (c >= 8232 && c <= 8233) + : c <= 8239) + : (c <= 8288 || (c < 65279 + ? c == 12288 + : c <= 65279))))); } static inline bool sym_identifier_character_set_1(int32_t c) { @@ -9609,13 +13842,31 @@ static inline bool sym_identifier_character_set_1(int32_t c) { } static inline bool sym_identifier_character_set_2(int32_t c) { + return (c < 5760 + ? (c < '[' + ? (c < 0 + ? c == 0 + : (c <= '#' || (c >= '%' && c <= '@'))) + : (c <= '`' || (c < 160 + ? (c >= '{' && c <= '~') + : c <= 160))) + : (c <= 5760 || (c < 8287 + ? (c < 8239 + ? (c >= 8192 && c <= 8203) + : c <= 8239) + : (c <= 8288 || (c < 65279 + ? c == 12288 + : c <= 65279))))); +} + +static inline bool sym_identifier_character_set_3(int32_t c) { return (c < 160 ? (c < ':' ? (c < 0 ? c == 0 : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '`' - ? (c >= '[' && c <= '^') + : (c <= '@' || (c < '{' + ? (c >= '[' && c <= '`') : c <= '~'))) : (c <= 160 || (c < 8287 ? (c < 8192 @@ -9626,7 +13877,25 @@ static inline bool sym_identifier_character_set_2(int32_t c) { : c <= 65279))))); } -static inline bool sym_identifier_character_set_3(int32_t c) { +static inline bool sym_identifier_character_set_4(int32_t c) { + return (c < 5760 + ? (c < '`' + ? (c < 0 + ? c == 0 + : (c <= '@' || (c >= '[' && c <= '^'))) + : (c <= '`' || (c < 160 + ? (c >= '{' && c <= '~') + : c <= 160))) + : (c <= 5760 || (c < 8287 + ? (c < 8239 + ? (c >= 8192 && c <= 8203) + : c <= 8239) + : (c <= 8288 || (c < 65279 + ? c == 12288 + : c <= 65279))))); +} + +static inline bool sym_identifier_character_set_5(int32_t c) { return (c < 160 ? (c < ':' ? (c < 0 @@ -9667,34022 +13936,105507 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(94); - if (lookahead == '!') ADVANCE(107); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(10); - if (lookahead == '$') ADVANCE(231); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(163); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == '*') ADVANCE(97); - if (lookahead == '+') ADVANCE(175); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(179); - if (lookahead == '.') ADVANCE(132); - if (lookahead == '/') ADVANCE(217); - if (lookahead == '0') ADVANCE(222); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(100); - if (lookahead == '>') ADVANCE(127); - if (lookahead == '?') ADVANCE(237); - if (lookahead == '@') ADVANCE(234); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(53); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(166); - if (lookahead == '`') ADVANCE(215); - if (lookahead == '{') ADVANCE(103); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '}') ADVANCE(105); - if (lookahead == '~') ADVANCE(192); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(92) + if (eof) ADVANCE(382); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(33); + if (lookahead == '$') ADVANCE(937); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(513); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(517); + if (lookahead == '.') ADVANCE(459); + if (lookahead == '/') ADVANCE(567); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(955); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(322); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(651); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(787); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'g') ADVANCE(793); + if (lookahead == 'i') ADVANCE(802); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(652); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(726); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(674); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(405); + if (lookahead == '|') ADVANCE(506); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(616); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(379) if (lookahead != 0 && - lookahead > 31) ADVANCE(232); + lookahead > 31) ADVANCE(945); END_STATE(); case 1: if (lookahead == '\n') SKIP(1) - if (lookahead == '/') ADVANCE(115); - if (lookahead == '<') ADVANCE(117); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(116); - if (lookahead != 0) ADVANCE(114); + if (lookahead == '/') ADVANCE(450); + if (lookahead == '<') ADVANCE(452); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(451); + if (lookahead != 0) ADVANCE(449); END_STATE(); case 2: - if (lookahead == '\n') SKIP(29) - if (lookahead == '/') ADVANCE(23); - if (lookahead == '[') ADVANCE(37); - if (lookahead == '\\') ADVANCE(91); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(218); - if (lookahead != 0) ADVANCE(219); + if (lookahead == '\n') SKIP(93) + if (lookahead == '/') ADVANCE(69); + if (lookahead == '[') ADVANCE(104); + if (lookahead == '\\') ADVANCE(378); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(568); + if (lookahead != 0) ADVANCE(569); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(107); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(36); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(163); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == '*') ADVANCE(97); - if (lookahead == '+') ADVANCE(175); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(178); - if (lookahead == '.') ADVANCE(133); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(222); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '<') ADVANCE(121); - if (lookahead == '=') ADVANCE(100); - if (lookahead == '>') ADVANCE(127); - if (lookahead == '?') ADVANCE(237); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(166); - if (lookahead == '`') ADVANCE(215); - if (lookahead == '{') ADVANCE(103); - if (lookahead == '|') ADVANCE(168); - if (lookahead == '}') ADVANCE(105); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(459); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(955); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(816); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(791); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(813); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(505); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(623); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(3) if (lookahead != 0 && - lookahead > 31 && - lookahead != '@' && - lookahead != '~') ADVANCE(232); + lookahead > 31) ADVANCE(945); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(107); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(163); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == '*') ADVANCE(97); - if (lookahead == '+') ADVANCE(175); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(178); - if (lookahead == '.') ADVANCE(132); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(222); - if (lookahead == ':') ADVANCE(111); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(100); - if (lookahead == '>') ADVANCE(127); - if (lookahead == '?') ADVANCE(237); - if (lookahead == '@') ADVANCE(234); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == '^') ADVANCE(166); - if (lookahead == '`') ADVANCE(215); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(168); - if (lookahead == '~') ADVANCE(192); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(459); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ':') ADVANCE(440); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(955); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(813); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(652); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == '{') ADVANCE(405); + if (lookahead == '|') ADVANCE(505); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(619); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(4) if (lookahead != 0 && - lookahead > '#' && + lookahead > 31 && lookahead != ';' && lookahead != ']' && - lookahead != '}') ADVANCE(232); + lookahead != '}') ADVANCE(945); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(107); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(163); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == '*') ADVANCE(97); - if (lookahead == '+') ADVANCE(175); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(178); - if (lookahead == '.') ADVANCE(131); - if (lookahead == '/') ADVANCE(130); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '<') ADVANCE(121); - if (lookahead == '=') ADVANCE(100); - if (lookahead == '>') ADVANCE(127); - if (lookahead == '?') ADVANCE(237); - if (lookahead == '@') ADVANCE(234); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(166); - if (lookahead == '`') ADVANCE(215); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '}') ADVANCE(105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(243); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(955); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(817); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == '|') ADVANCE(505); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(644); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(5) if (lookahead != 0 && - lookahead > '#' && - lookahead != '~') ADVANCE(232); + lookahead > 31 && + (lookahead < ')' || '@' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(107); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '%') ADVANCE(180); - if (lookahead == '&') ADVANCE(164); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == '*') ADVANCE(98); - if (lookahead == '+') ADVANCE(174); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(177); - if (lookahead == '.') ADVANCE(133); - if (lookahead == '/') ADVANCE(129); - if (lookahead == '0') ADVANCE(222); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '<') ADVANCE(124); - if (lookahead == '=') ADVANCE(99); - if (lookahead == '>') ADVANCE(128); - if (lookahead == '?') ADVANCE(27); - if (lookahead == '@') ADVANCE(234); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(165); - if (lookahead == '`') ADVANCE(215); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(170); - if (lookahead == '}') ADVANCE(105); - if (lookahead == '~') ADVANCE(192); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(955); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(817); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == '|') ADVANCE(505); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(645); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(6) if (lookahead != 0 && - lookahead > '#') ADVANCE(232); + lookahead > 31 && + (lookahead < ')' || '@' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(107); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '%') ADVANCE(180); - if (lookahead == '&') ADVANCE(164); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == '*') ADVANCE(98); - if (lookahead == '+') ADVANCE(174); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(177); - if (lookahead == '.') ADVANCE(131); - if (lookahead == '/') ADVANCE(129); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '<') ADVANCE(123); - if (lookahead == '=') ADVANCE(99); - if (lookahead == '>') ADVANCE(128); - if (lookahead == '?') ADVANCE(238); - if (lookahead == '@') ADVANCE(234); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(165); - if (lookahead == '`') ADVANCE(215); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(171); - if (lookahead == '}') ADVANCE(105); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '0') ADVANCE(599); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(75); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(816); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(791); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(803); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(505); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(624); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(7) if (lookahead != 0 && - lookahead > '#' && - (lookahead < '0' || '9' < lookahead) && - lookahead != '~') ADVANCE(232); + lookahead > 31 && + (lookahead < ')' || ';' < lookahead) && + lookahead != ']' && + lookahead != '}') ADVANCE(945); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(107); - if (lookahead == '%') ADVANCE(180); - if (lookahead == '&') ADVANCE(164); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == '*') ADVANCE(98); - if (lookahead == '+') ADVANCE(174); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(177); - if (lookahead == '.') ADVANCE(131); - if (lookahead == '/') ADVANCE(129); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '<') ADVANCE(123); - if (lookahead == '=') ADVANCE(32); - if (lookahead == '>') ADVANCE(128); - if (lookahead == '?') ADVANCE(27); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(165); - if (lookahead == '`') ADVANCE(215); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(170); - if (lookahead == '}') ADVANCE(105); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(9) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(220); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(76); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(816); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(791); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(813); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(507); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(623); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(8) if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(232); + lookahead > 31) ADVANCE(945); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(107); - if (lookahead == '%') ADVANCE(180); - if (lookahead == '&') ADVANCE(164); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == '*') ADVANCE(98); - if (lookahead == '+') ADVANCE(174); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(177); - if (lookahead == '.') ADVANCE(131); - if (lookahead == '/') ADVANCE(129); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '<') ADVANCE(123); - if (lookahead == '=') ADVANCE(32); - if (lookahead == '>') ADVANCE(128); - if (lookahead == '?') ADVANCE(27); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(165); - if (lookahead == '`') ADVANCE(215); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(170); - if (lookahead == '}') ADVANCE(105); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '=') ADVANCE(394); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(76); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(692); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(812); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(507); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(617); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(9) if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(232); + lookahead > 31 && + (lookahead < ')' || ':' < lookahead) && + lookahead != ']') ADVANCE(945); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(95); - if (lookahead == '\\') ADVANCE(54); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(233); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '=') ADVANCE(394); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(76); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(692); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(812); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(507); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(618); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(10) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < ')' || ':' < lookahead) && + lookahead != ']') ADVANCE(945); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(106); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(36); - if (lookahead == '&') ADVANCE(162); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == '*') ADVANCE(96); - if (lookahead == '+') ADVANCE(174); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(177); - if (lookahead == '.') ADVANCE(132); - if (lookahead == '/') ADVANCE(129); - if (lookahead == '0') ADVANCE(222); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '<') ADVANCE(125); - if (lookahead == '=') ADVANCE(101); - if (lookahead == '>') ADVANCE(126); - if (lookahead == '?') ADVANCE(235); - if (lookahead == '@') ADVANCE(234); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '`') ADVANCE(215); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(172); - if (lookahead == '}') ADVANCE(105); - if (lookahead == '~') ADVANCE(192); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '=') ADVANCE(394); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(76); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(812); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(507); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(11) if (lookahead != 0 && lookahead > 31 && - lookahead != '%' && - lookahead != '^') ADVANCE(232); + (lookahead < ')' || ':' < lookahead) && + lookahead != ']') ADVANCE(945); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(106); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(36); - if (lookahead == '&') ADVANCE(162); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == '*') ADVANCE(96); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(176); - if (lookahead == '.') ADVANCE(26); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(222); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '<') ADVANCE(120); - if (lookahead == '=') ADVANCE(101); - if (lookahead == '>') ADVANCE(126); - if (lookahead == '?') ADVANCE(235); - if (lookahead == '@') ADVANCE(234); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(172); - if (lookahead == '}') ADVANCE(105); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '=') ADVANCE(394); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(76); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(812); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(507); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(12) if (lookahead != 0 && lookahead > 31 && - (lookahead < '%' || '+' < lookahead) && - lookahead != '^' && - lookahead != '`' && - lookahead != '~') ADVANCE(232); + (lookahead < ')' || ':' < lookahead) && + lookahead != ']') ADVANCE(945); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(106); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(36); - if (lookahead == '&') ADVANCE(162); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(108); - if (lookahead == '*') ADVANCE(96); - if (lookahead == '+') ADVANCE(173); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(176); - if (lookahead == '.') ADVANCE(132); - if (lookahead == '/') ADVANCE(217); - if (lookahead == '0') ADVANCE(222); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '<') ADVANCE(120); - if (lookahead == '=') ADVANCE(101); - if (lookahead == '>') ADVANCE(126); - if (lookahead == '?') ADVANCE(235); - if (lookahead == '@') ADVANCE(234); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '`') ADVANCE(215); - if (lookahead == '{') ADVANCE(103); - if (lookahead == '|') ADVANCE(172); - if (lookahead == '}') ADVANCE(105); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(14) + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == '<') ADVANCE(528); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(76); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(816); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(791); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(803); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(507); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(624); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(13) if (lookahead != 0 && lookahead > 31 && - (lookahead < '%' || ')' < lookahead) && - lookahead != '^' && - lookahead != '~') ADVANCE(232); + (lookahead < ')' || ';' < lookahead) && + lookahead != ']' && + lookahead != '}') ADVANCE(945); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(106); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(36); - if (lookahead == '&') ADVANCE(162); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(108); - if (lookahead == '*') ADVANCE(96); - if (lookahead == '+') ADVANCE(173); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(176); - if (lookahead == '.') ADVANCE(132); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '0') ADVANCE(222); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '<') ADVANCE(120); - if (lookahead == '=') ADVANCE(101); - if (lookahead == '>') ADVANCE(126); - if (lookahead == '?') ADVANCE(235); - if (lookahead == '@') ADVANCE(234); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '`') ADVANCE(215); - if (lookahead == '{') ADVANCE(103); - if (lookahead == '|') ADVANCE(172); - if (lookahead == '}') ADVANCE(105); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(955); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(697); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(844); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'n') ADVANCE(725); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 'r') ADVANCE(750); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == '{') ADVANCE(405); + if (lookahead == '|') ADVANCE(505); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(14) if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || ')' < lookahead) && - lookahead != '^' && - lookahead != '~') ADVANCE(232); + lookahead > '#' && + lookahead != '@' && + lookahead != '~') ADVANCE(945); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(106); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '&') ADVANCE(162); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == '*') ADVANCE(96); - if (lookahead == '+') ADVANCE(174); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(177); - if (lookahead == '.') ADVANCE(26); - if (lookahead == '/') ADVANCE(129); - if (lookahead == '0') ADVANCE(222); - if (lookahead == '<') ADVANCE(125); - if (lookahead == '?') ADVANCE(235); - if (lookahead == '@') ADVANCE(234); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '`') ADVANCE(215); - if (lookahead == '{') ADVANCE(103); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '~') ADVANCE(192); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(955); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(887); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 's') ADVANCE(666); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(505); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(685); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(15) if (lookahead != 0 && lookahead > '#' && - (lookahead < '%' || '>' < lookahead) && - lookahead != '^' && - lookahead != '}') ADVANCE(232); + (lookahead < '0' || '@' < lookahead) && + lookahead != '~') ADVANCE(945); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(106); - if (lookahead == '&') ADVANCE(162); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '.') ADVANCE(131); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '<') ADVANCE(120); - if (lookahead == '=') ADVANCE(101); - if (lookahead == '>') ADVANCE(126); - if (lookahead == '?') ADVANCE(235); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(172); - if (lookahead == '}') ADVANCE(105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(243); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(955); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(697); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(844); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'n') ADVANCE(725); + if (lookahead == 'o') ADVANCE(702); + if (lookahead == 'r') ADVANCE(750); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == '{') ADVANCE(405); + if (lookahead == '|') ADVANCE(505); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(625); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(16) if (lookahead != 0 && lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - lookahead != '^' && - lookahead != '`' && - lookahead != '~') ADVANCE(232); + (lookahead < ')' || '@' < lookahead) && + lookahead != ']' && + lookahead != '}' && + lookahead != '~') ADVANCE(945); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(195); - if (lookahead == '/') ADVANCE(198); - if (lookahead == '\\') ADVANCE(56); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(201); - if (lookahead != 0) ADVANCE(202); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '0') ADVANCE(599); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(955); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(697); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(844); + if (lookahead == 'i') ADVANCE(808); + if (lookahead == 'n') ADVANCE(725); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 'r') ADVANCE(750); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == '{') ADVANCE(405); + if (lookahead == '|') ADVANCE(505); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(627); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(17) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < ')' || '@' < lookahead) && + lookahead != ']' && + lookahead != '}' && + lookahead != '~') ADVANCE(945); END_STATE(); case 18: - if (lookahead == '$') ADVANCE(57); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '\\') ADVANCE(56); - if (lookahead == '`') ADVANCE(215); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(19) + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(75); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(887); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'o') ADVANCE(760); + if (lookahead == 's') ADVANCE(666); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(505); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(684); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(18) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < ')' || '@' < lookahead) && + lookahead != ']' && + lookahead != '}' && + lookahead != '~') ADVANCE(945); END_STATE(); case 19: - if (lookahead == '$') ADVANCE(57); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '`') ADVANCE(215); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(75); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(887); + if (lookahead == 'i') ADVANCE(808); + if (lookahead == 's') ADVANCE(666); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(505); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(686); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(19) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < ')' || '@' < lookahead) && + lookahead != ']' && + lookahead != '}' && + lookahead != '~') ADVANCE(945); END_STATE(); case 20: - if (lookahead == '&') ADVANCE(162); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '.') ADVANCE(131); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '=') ADVANCE(101); - if (lookahead == '>') ADVANCE(126); - if (lookahead == '?') ADVANCE(236); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(172); - if (lookahead == '}') ADVANCE(105); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(955); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(817); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(505); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(672); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(20) if (lookahead != 0 && lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - lookahead != '^' && - lookahead != '`' && - lookahead != '~') ADVANCE(232); + (lookahead < '\'' || '@' < lookahead) && + lookahead != '~') ADVANCE(945); END_STATE(); case 21: - if (lookahead == '&') ADVANCE(162); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(35); - if (lookahead == '.') ADVANCE(131); - if (lookahead == '/') ADVANCE(23); - if (lookahead == ':') ADVANCE(111); - if (lookahead == '<') ADVANCE(120); - if (lookahead == '?') ADVANCE(31); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '{') ADVANCE(103); - if (lookahead == '|') ADVANCE(167); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(21) + if (lookahead == '!') ADVANCE(421); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(955); + if (lookahead == '[') ADVANCE(447); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(292); + if (lookahead == 'e') ADVANCE(337); + if (lookahead == 'f') ADVANCE(278); + if (lookahead == 'i') ADVANCE(230); + if (lookahead == 'o') ADVANCE(181); + if (lookahead == 'r') ADVANCE(160); + if (lookahead == 's') ADVANCE(112); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(506); + if (lookahead == '}') ADVANCE(407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1011); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(21) + END_STATE(); + case 22: + if (lookahead == '!') ADVANCE(421); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(75); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(817); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(808); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(505); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(673); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(22) if (lookahead != 0 && lookahead > '#' && - (lookahead < '%' || '@' < lookahead) && - lookahead != '^' && - lookahead != '`' && + (lookahead < '\'' || '@' < lookahead) && + lookahead != ']' && lookahead != '}' && - lookahead != '~') ADVANCE(232); - END_STATE(); - case 22: - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '/') ADVANCE(204); - if (lookahead == '\\') ADVANCE(56); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(207); - if (lookahead != 0) ADVANCE(208); + lookahead != '~') ADVANCE(945); END_STATE(); case 23: - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(214); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(518); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(76); + if (lookahead == '[') ADVANCE(447); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(590); + if (lookahead == 'i') ADVANCE(585); + if (lookahead == 's') ADVANCE(570); + if (lookahead == '{') ADVANCE(405); + if (lookahead == '|') ADVANCE(507); + if (lookahead == '}') ADVANCE(407); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(597); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(24) END_STATE(); case 24: - if (lookahead == '*') ADVANCE(24); - if (lookahead == '/') ADVANCE(213); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(518); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(76); + if (lookahead == '[') ADVANCE(447); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(292); + if (lookahead == 'i') ADVANCE(235); + if (lookahead == 's') ADVANCE(112); + if (lookahead == '{') ADVANCE(405); + if (lookahead == '|') ADVANCE(507); + if (lookahead == '}') ADVANCE(407); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(24) END_STATE(); case 25: - if (lookahead == '*') ADVANCE(24); - if (lookahead != 0) ADVANCE(25); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(518); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(394); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(956); + if (lookahead == '[') ADVANCE(447); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(292); + if (lookahead == 'e') ADVANCE(207); + if (lookahead == 'i') ADVANCE(231); + if (lookahead == 'o') ADVANCE(181); + if (lookahead == 's') ADVANCE(112); + if (lookahead == 'w') ADVANCE(186); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(508); + if (lookahead == '}') ADVANCE(407); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(25) END_STATE(); case 26: - if (lookahead == '.') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(518); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(76); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(590); + if (lookahead == 'i') ADVANCE(585); + if (lookahead == 'o') ADVANCE(578); + if (lookahead == 's') ADVANCE(570); + if (lookahead == '|') ADVANCE(507); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(597); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(27) END_STATE(); case 27: - if (lookahead == '.') ADVANCE(135); - if (lookahead == '?') ADVANCE(190); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(518); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(76); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(292); + if (lookahead == 'i') ADVANCE(235); + if (lookahead == 'o') ADVANCE(181); + if (lookahead == 's') ADVANCE(112); + if (lookahead == '|') ADVANCE(507); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(27) END_STATE(); case 28: - if (lookahead == '.') ADVANCE(151); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(518); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(394); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(76); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(817); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(507); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(670); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(28) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '\'' || ':' < lookahead) && + lookahead != ']' && + lookahead != '~') ADVANCE(945); END_STATE(); case 29: - if (lookahead == '/') ADVANCE(23); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(518); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(394); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(76); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(817); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(507); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(671); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(29) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '\'' || ':' < lookahead) && + lookahead != ']' && + lookahead != '~') ADVANCE(945); END_STATE(); case 30: - if (lookahead == ':') ADVANCE(239); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(76); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(590); + if (lookahead == 'i') ADVANCE(583); + if (lookahead == 's') ADVANCE(570); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(507); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(597); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(31) END_STATE(); case 31: - if (lookahead == ':') ADVANCE(240); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '%') ADVANCE(520); + if (lookahead == '&') ADVANCE(501); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(388); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '<') ADVANCE(527); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(457); + if (lookahead == '?') ADVANCE(76); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '^') ADVANCE(502); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(292); + if (lookahead == 'i') ADVANCE(230); + if (lookahead == 's') ADVANCE(112); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(507); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(31) END_STATE(); case 32: - if (lookahead == '=') ADVANCE(185); + if (lookahead == '!') ADVANCE(383); END_STATE(); case 33: - if (lookahead == '>') ADVANCE(118); + if (lookahead == '!') ADVANCE(383); + if (lookahead == '\\') ADVANCE(328); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(947); END_STATE(); case 34: - if (lookahead == '>') ADVANCE(119); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '&') ADVANCE(499); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(386); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(73); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '?') ADVANCE(953); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(652); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == '{') ADVANCE(405); + if (lookahead == '|') ADVANCE(504); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(636); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(34) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '>' < lookahead) && + lookahead != '^' && + lookahead != '}') ADVANCE(945); END_STATE(); case 35: - if (lookahead == '?') ADVANCE(30); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '&') ADVANCE(499); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '>') ADVANCE(455); + if (lookahead == '?') ADVANCE(953); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(818); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(791); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(928); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(509); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(649); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(35) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '=' < lookahead) && + lookahead != '^') ADVANCE(945); END_STATE(); case 36: - if (lookahead == '\\') ADVANCE(54); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(233); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(459); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '=') ADVANCE(98); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(818); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(791); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(648); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(36) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != '^' && + lookahead != '|' && + lookahead != '}') ADVANCE(945); END_STATE(); case 37: - if (lookahead == '\\') ADVANCE(90); - if (lookahead == ']') ADVANCE(219); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(386); + if (lookahead == '+') ADVANCE(511); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(459); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(638); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(37) if (lookahead != 0 && - lookahead != '\n') ADVANCE(37); + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|') ADVANCE(945); END_STATE(); case 38: - if (lookahead == 'a') ADVANCE(50); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(386); + if (lookahead == '+') ADVANCE(510); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(514); + if (lookahead == '.') ADVANCE(459); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(524); + if (lookahead == '=') ADVANCE(393); + if (lookahead == '?') ADVANCE(953); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(351); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(650); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(38) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '>' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`' && + lookahead != '~') ADVANCE(945); END_STATE(); case 39: - if (lookahead == 'a') ADVANCE(51); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(386); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '.') ADVANCE(73); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(524); + if (lookahead == '=') ADVANCE(396); + if (lookahead == '?') ADVANCE(953); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(351); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(622); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(39) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`' && + lookahead != '~') ADVANCE(945); END_STATE(); case 40: - if (lookahead == 'e') ADVANCE(46); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '+') ADVANCE(511); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(692); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(40) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|') ADVANCE(945); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(33); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '+') ADVANCE(511); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(692); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(635); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(41) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|') ADVANCE(945); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(34); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '+') ADVANCE(511); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(460); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(641); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(42) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|') ADVANCE(945); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(47); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '+') ADVANCE(511); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(651); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(630); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(43) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|') ADVANCE(945); END_STATE(); case 44: - if (lookahead == 'l') ADVANCE(38); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '+') ADVANCE(511); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(651); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(631); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(44) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|') ADVANCE(945); END_STATE(); case 45: - if (lookahead == 'l') ADVANCE(39); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '+') ADVANCE(511); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(692); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(632); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(45) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|') ADVANCE(945); END_STATE(); case 46: - if (lookahead == 'm') ADVANCE(48); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '+') ADVANCE(511); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(692); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(634); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(46) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|') ADVANCE(945); END_STATE(); case 47: - if (lookahead == 'm') ADVANCE(49); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '+') ADVANCE(511); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(637); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(47) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|') ADVANCE(945); END_STATE(); case 48: - if (lookahead == 'p') ADVANCE(44); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '+') ADVANCE(511); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(48) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|') ADVANCE(945); END_STATE(); case 49: - if (lookahead == 'p') ADVANCE(45); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '+') ADVANCE(511); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(690); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(642); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(49) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|') ADVANCE(945); END_STATE(); case 50: - if (lookahead == 't') ADVANCE(41); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '+') ADVANCE(511); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(690); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(643); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(50) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|') ADVANCE(945); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(42); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '+') ADVANCE(511); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(818); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(646); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(51) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|' && + lookahead != '}') ADVANCE(945); END_STATE(); case 52: - if (lookahead == 't') ADVANCE(43); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '+') ADVANCE(511); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(818); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(791); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 'w') ADVANCE(772); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(647); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(52) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|' && + lookahead != '}') ADVANCE(945); END_STATE(); case 53: - if (lookahead == 'u') ADVANCE(58); - if (lookahead == 'x') ADVANCE(82); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(212); - if (lookahead != 0) ADVANCE(209); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '+') ADVANCE(511); + if (lookahead == '-') ADVANCE(515); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == '<') ADVANCE(529); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(53) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|' && + lookahead != '}') ADVANCE(945); END_STATE(); case 54: - if (lookahead == 'u') ADVANCE(59); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '&') ADVANCE(499); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(386); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(514); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(567); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(524); + if (lookahead == '=') ADVANCE(396); + if (lookahead == '>') ADVANCE(455); + if (lookahead == '?') ADVANCE(953); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(260); + if (lookahead == 'c') ADVANCE(211); + if (lookahead == 'd') ADVANCE(150); + if (lookahead == 'e') ADVANCE(240); + if (lookahead == 'f') ADVANCE(324); + if (lookahead == 'i') ADVANCE(225); + if (lookahead == 'l') ADVANCE(163); + if (lookahead == 'm') ADVANCE(251); + if (lookahead == 'n') ADVANCE(108); + if (lookahead == 'o') ADVANCE(130); + if (lookahead == 's') ADVANCE(317); + if (lookahead == 't') ADVANCE(342); + if (lookahead == 'u') ADVANCE(236); + if (lookahead == 'v') ADVANCE(115); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(509); + if (lookahead == '}') ADVANCE(407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(55) END_STATE(); case 55: - if (lookahead == 'u') ADVANCE(60); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '&') ADVANCE(499); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(386); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(514); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(524); + if (lookahead == '=') ADVANCE(396); + if (lookahead == '>') ADVANCE(455); + if (lookahead == '?') ADVANCE(953); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(127); + if (lookahead == 'b') ADVANCE(260); + if (lookahead == 'c') ADVANCE(211); + if (lookahead == 'd') ADVANCE(150); + if (lookahead == 'e') ADVANCE(240); + if (lookahead == 'f') ADVANCE(324); + if (lookahead == 'i') ADVANCE(225); + if (lookahead == 'l') ADVANCE(163); + if (lookahead == 'm') ADVANCE(251); + if (lookahead == 'n') ADVANCE(108); + if (lookahead == 'o') ADVANCE(130); + if (lookahead == 's') ADVANCE(317); + if (lookahead == 't') ADVANCE(342); + if (lookahead == 'u') ADVANCE(236); + if (lookahead == 'v') ADVANCE(115); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(509); + if (lookahead == '}') ADVANCE(407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(55) END_STATE(); case 56: - if (lookahead == 'u') ADVANCE(61); - if (lookahead == 'x') ADVANCE(82); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(212); - if (lookahead != 0) ADVANCE(209); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '&') ADVANCE(499); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(69); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(524); + if (lookahead == '=') ADVANCE(396); + if (lookahead == '>') ADVANCE(455); + if (lookahead == '?') ADVANCE(953); + if (lookahead == '[') ADVANCE(447); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(292); + if (lookahead == 'e') ADVANCE(207); + if (lookahead == 'f') ADVANCE(278); + if (lookahead == 'i') ADVANCE(239); + if (lookahead == 'o') ADVANCE(181); + if (lookahead == 'w') ADVANCE(187); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(509); + if (lookahead == '}') ADVANCE(407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1011); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(56) END_STATE(); case 57: - if (lookahead == '{') ADVANCE(216); + if (lookahead == '!') ADVANCE(420); + if (lookahead == '&') ADVANCE(499); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(69); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(524); + if (lookahead == '=') ADVANCE(396); + if (lookahead == '>') ADVANCE(455); + if (lookahead == '?') ADVANCE(954); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(129); + if (lookahead == 'c') ADVANCE(210); + if (lookahead == 'e') ADVANCE(336); + if (lookahead == 'i') ADVANCE(239); + if (lookahead == 'o') ADVANCE(181); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(509); + if (lookahead == '}') ADVANCE(407); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(57) END_STATE(); case 58: - if (lookahead == '{') ADVANCE(77); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(103); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(386); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(69); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(524); + if (lookahead == '?') ADVANCE(74); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == '{') ADVANCE(404); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(939); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(58) + if (lookahead != 0 && + lookahead > '!' && + (lookahead < '%' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + (lookahead < '|' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 59: - if (lookahead == '{') ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '&') ADVANCE(499); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(386); + if (lookahead == '+') ADVANCE(510); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(514); + if (lookahead == '.') ADVANCE(73); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '0') ADVANCE(599); + if (lookahead == '<') ADVANCE(524); + if (lookahead == '?') ADVANCE(953); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(700); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(844); + if (lookahead == 'n') ADVANCE(725); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 'r') ADVANCE(750); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == '{') ADVANCE(405); + if (lookahead == '|') ADVANCE(504); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(629); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(59) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + lookahead != '^' && + lookahead != '}' && + lookahead != '~') ADVANCE(945); END_STATE(); case 60: - if (lookahead == '{') ADVANCE(81); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '&') ADVANCE(499); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(386); + if (lookahead == '+') ADVANCE(510); + if (lookahead == '-') ADVANCE(514); + if (lookahead == '.') ADVANCE(357); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '0') ADVANCE(599); + if (lookahead == '<') ADVANCE(524); + if (lookahead == '>') ADVANCE(455); + if (lookahead == '?') ADVANCE(953); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(700); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(844); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'n') ADVANCE(725); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 'r') ADVANCE(750); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == '{') ADVANCE(405); + if (lookahead == '|') ADVANCE(504); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(628); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(60) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '}' && + lookahead != '~') ADVANCE(945); END_STATE(); case 61: - if (lookahead == '{') ADVANCE(83); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(79); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == '*') ADVANCE(386); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '<') ADVANCE(524); + if (lookahead == '?') ADVANCE(74); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 't') ADVANCE(935); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(911); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(61) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '|' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 62: - if (lookahead == '}') ADVANCE(232); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '*') ADVANCE(386); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 't') ADVANCE(935); + if (lookahead == '{') ADVANCE(404); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(764); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(62) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '|' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 63: - if (lookahead == '}') ADVANCE(233); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(887); + if (lookahead == 't') ADVANCE(935); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(687); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(63) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 64: - if (lookahead == '}') ADVANCE(209); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(69); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(663); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(64) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '?' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 65: - if (lookahead == '}') ADVANCE(210); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '/') ADVANCE(547); + if (lookahead == '\\') ADVANCE(331); + if (anon_sym_BANG_character_set_2(lookahead)) ADVANCE(550); + if (lookahead != 0) ADVANCE(551); END_STATE(); case 66: - if (lookahead == '+' || - lookahead == '-') ADVANCE(72); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead == '#') ADVANCE(32); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(662); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(66) + if (lookahead != 0 && + lookahead > '"' && + (lookahead < '%' || '?' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 67: - if (lookahead == '0' || - lookahead == '1') ADVANCE(224); + if (lookahead == '&') ADVANCE(499); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '>') ADVANCE(455); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(930); + if (lookahead == '|') ADVANCE(504); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(740); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(67) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 68: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(225); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '/') ADVANCE(553); + if (lookahead == '\\') ADVANCE(331); + if (anon_sym_BANG_character_set_2(lookahead)) ADVANCE(556); + if (lookahead != 0) ADVANCE(557); END_STATE(); case 69: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead == '*') ADVANCE(71); + if (lookahead == '/') ADVANCE(564); END_STATE(); case 70: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (lookahead == '*') ADVANCE(70); + if (lookahead == '/') ADVANCE(563); + if (lookahead != 0) ADVANCE(71); END_STATE(); case 71: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(227); + if (lookahead == '*') ADVANCE(70); + if (lookahead != 0) ADVANCE(71); END_STATE(); case 72: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead == '+') ADVANCE(101); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(102); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(69); + if (lookahead == ':') ADVANCE(440); + if (lookahead == '<') ADVANCE(524); + if (lookahead == '?') ADVANCE(96); + if (lookahead == 'e') ADVANCE(337); + if (lookahead == '{') ADVANCE(405); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(72) END_STATE(); case 73: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); + if (lookahead == '.') ADVANCE(77); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(614); END_STATE(); case 74: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(233); + if (lookahead == '.') ADVANCE(470); END_STATE(); case 75: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(209); + if (lookahead == '.') ADVANCE(470); + if (lookahead == '?') ADVANCE(537); END_STATE(); case 76: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(226); + if (lookahead == '.') ADVANCE(470); + if (lookahead == '?') ADVANCE(536); END_STATE(); case 77: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + if (lookahead == '.') ADVANCE(488); END_STATE(); case 78: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(210); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(69); + if (lookahead == ':') ADVANCE(440); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == '{') ADVANCE(404); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(657); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(78) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '|' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 79: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(82); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(69); + if (lookahead == ':') ADVANCE(440); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(823); + if (lookahead == '{') ADVANCE(404); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(852); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(79) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '|' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 80: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(659); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(80) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '?' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '|' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 81: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(62); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(661); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(81) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '?' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '|' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 82: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(75); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '<') ADVANCE(524); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(930); + if (lookahead == 'i') ADVANCE(809); + if (lookahead == '{') ADVANCE(404); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(739); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(82) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '|' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 83: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '>') ADVANCE(455); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'c') ADVANCE(844); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(712); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(83) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 84: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(78); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(691); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(655); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(84) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '?' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 85: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(74); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(691); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(656); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(85) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '?' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 86: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(73); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(658); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(86) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '?' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 87: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(84); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == '}') ADVANCE(407); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(660); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(87) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '?' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 88: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(85); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(822); + if (lookahead == '{') ADVANCE(404); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(754); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(88) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`' && + (lookahead < '|' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 89: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(86); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(664); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(89) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 90: + if (lookahead == '/') ADVANCE(69); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(820); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'n') ADVANCE(737); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(689); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(90) if (lookahead != 0 && - lookahead != '\n') ADVANCE(37); + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 91: + if (lookahead == '/') ADVANCE(69); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(774); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(91) if (lookahead != 0 && - lookahead != '\n') ADVANCE(219); + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 92: - if (eof) ADVANCE(94); - if (lookahead == '!') ADVANCE(107); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(10); - if (lookahead == '$') ADVANCE(231); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(163); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == '*') ADVANCE(97); - if (lookahead == '+') ADVANCE(175); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(179); - if (lookahead == '.') ADVANCE(132); - if (lookahead == '/') ADVANCE(129); - if (lookahead == '0') ADVANCE(222); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(100); - if (lookahead == '>') ADVANCE(127); - if (lookahead == '?') ADVANCE(237); - if (lookahead == '@') ADVANCE(234); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(166); - if (lookahead == '`') ADVANCE(215); - if (lookahead == '{') ADVANCE(103); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '}') ADVANCE(105); - if (lookahead == '~') ADVANCE(192); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead == '/') ADVANCE(69); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(756); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(881); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(92) if (lookahead != 0 && - lookahead > 31) ADVANCE(232); + lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(945); END_STATE(); case 93: - if (eof) ADVANCE(94); - if (lookahead == '!') ADVANCE(107); - if (lookahead == '"') ADVANCE(195); - if (lookahead == '#') ADVANCE(10); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(163); - if (lookahead == '\'') ADVANCE(196); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(109); - if (lookahead == '*') ADVANCE(97); - if (lookahead == '+') ADVANCE(175); - if (lookahead == ',') ADVANCE(104); - if (lookahead == '-') ADVANCE(178); - if (lookahead == '.') ADVANCE(132); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(222); - if (lookahead == ':') ADVANCE(111); - if (lookahead == ';') ADVANCE(110); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(100); - if (lookahead == '>') ADVANCE(127); - if (lookahead == '?') ADVANCE(237); - if (lookahead == '@') ADVANCE(234); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(166); - if (lookahead == '`') ADVANCE(215); - if (lookahead == '{') ADVANCE(103); - if (lookahead == '|') ADVANCE(168); - if (lookahead == '}') ADVANCE(105); - if (lookahead == '~') ADVANCE(192); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(93) - if (lookahead != 0 && - lookahead > 31) ADVANCE(232); + if (lookahead == '/') ADVANCE(69); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(93) END_STATE(); case 94: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (lookahead == ':') ADVANCE(999); END_STATE(); case 95: - ACCEPT_TOKEN(sym_hash_bang_line); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(95); + if (lookahead == ':') ADVANCE(998); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == ':') ADVANCE(1000); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(183); - if (lookahead == '=') ADVANCE(138); + if (lookahead == '=') ADVANCE(531); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(182); + if (lookahead == '>') ADVANCE(469); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(185); + if (lookahead == '>') ADVANCE(453); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(185); - if (lookahead == '>') ADVANCE(134); + if (lookahead == '>') ADVANCE(454); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(134); + if (lookahead == '?') ADVANCE(94); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '?') ADVANCE(95); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '|') ADVANCE(241); + if (lookahead == '\\') ADVANCE(328); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(947); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == '\\') ADVANCE(377); + if (lookahead == ']') ADVANCE(569); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(104); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_RBRACE); + if (lookahead == 'a') ADVANCE(310); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == 'a') ADVANCE(297); + if (lookahead == 'l') ADVANCE(116); + if (lookahead == 'o') ADVANCE(250); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(187); + if (lookahead == 'a') ADVANCE(228); + if (lookahead == 'e') ADVANCE(334); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == 'a') ADVANCE(228); + if (lookahead == 'e') ADVANCE(333); + if (lookahead == 'u') ADVANCE(227); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_RPAREN); + if (lookahead == 'a') ADVANCE(273); + if (lookahead == 'y') ADVANCE(267); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == 'a') ADVANCE(146); + if (lookahead == 'q') ADVANCE(325); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == 'a') ADVANCE(194); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == 'a') ADVANCE(312); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == 'a') ADVANCE(312); + if (lookahead == 'y') ADVANCE(226); END_STATE(); case 114: - ACCEPT_TOKEN(sym__glimmer_template_content); + if (lookahead == 'a') ADVANCE(274); END_STATE(); case 115: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(214); + if (lookahead == 'a') ADVANCE(274); + if (lookahead == 'o') ADVANCE(192); END_STATE(); case 116: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(115); - if (lookahead == '<') ADVANCE(117); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(116); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(114); + if (lookahead == 'a') ADVANCE(295); END_STATE(); case 117: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(52); + if (lookahead == 'a') ADVANCE(212); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_LTtemplate_GT); + if (lookahead == 'a') ADVANCE(204); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_LT_SLASHtemplate_GT); + if (lookahead == 'a') ADVANCE(245); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == 'a') ADVANCE(285); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(161); - if (lookahead == '=') ADVANCE(184); + if (lookahead == 'a') ADVANCE(237); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(161); - if (lookahead == '=') ADVANCE(184); - if (lookahead == 't') ADVANCE(40); + if (lookahead == 'a') ADVANCE(136); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(160); - if (lookahead == '=') ADVANCE(184); + if (lookahead == 'a') ADVANCE(326); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(160); - if (lookahead == '=') ADVANCE(184); - if (lookahead == 't') ADVANCE(40); + if (lookahead == 'a') ADVANCE(139); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == 't') ADVANCE(40); + if (lookahead == 'a') ADVANCE(140); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == 'a') ADVANCE(320); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(189); - if (lookahead == '>') ADVANCE(156); + if (lookahead == 'b') ADVANCE(296); + if (lookahead == 'n') ADVANCE(341); + if (lookahead == 's') ADVANCE(400); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(189); - if (lookahead == '>') ADVANCE(157); + if (lookahead == 'b') ADVANCE(296); + if (lookahead == 's') ADVANCE(400); + if (lookahead == 'w') ADVANCE(111); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(214); + if (lookahead == 'b') ADVANCE(296); + if (lookahead == 's') ADVANCE(397); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(214); - if (lookahead == '=') ADVANCE(139); + if (lookahead == 'b') ADVANCE(201); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == 'b') ADVANCE(118); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (lookahead == 'b') ADVANCE(257); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (lookahead == 'b') ADVANCE(173); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_EQ_GT); + if (lookahead == 'c') ADVANCE(465); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_QMARK_DOT); + if (lookahead == 'c') ADVANCE(189); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (lookahead == 'c') ADVANCE(308); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (lookahead == 'c') ADVANCE(309); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (lookahead == 'c') ADVANCE(169); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (lookahead == 'c') ADVANCE(158); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + if (lookahead == 'c') ADVANCE(159); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + if (lookahead == 'c') ADVANCE(219); + if (lookahead == 'f') ADVANCE(123); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + if (lookahead == 'c') ADVANCE(314); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + if (lookahead == 'd') ADVANCE(977); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + if (lookahead == 'd') ADVANCE(542); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + if (lookahead == 'd') ADVANCE(329); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + if (lookahead == 'd') ADVANCE(258); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + if (lookahead == 'd') ADVANCE(289); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + if (lookahead == 'e') ADVANCE(221); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + if (lookahead == 'e') ADVANCE(99); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + if (lookahead == 'e') ADVANCE(141); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if (lookahead == 'e') ADVANCE(110); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == 'e') ADVANCE(441); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(148); + if (lookahead == 'e') ADVANCE(422); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == 'e') ADVANCE(391); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(149); + if (lookahead == 'e') ADVANCE(437); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(144); - if (lookahead == '>') ADVANCE(159); + if (lookahead == 'e') ADVANCE(959); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(158); + if (lookahead == 'e') ADVANCE(957); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == 'e') ADVANCE(994); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(145); + if (lookahead == 'e') ADVANCE(402); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == 'e') ADVANCE(272); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(146); + if (lookahead == 'e') ADVANCE(984); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == 'e') ADVANCE(1003); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(153); - if (lookahead == '=') ADVANCE(142); + if (lookahead == 'e') ADVANCE(300); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(152); + if (lookahead == 'e') ADVANCE(100); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == 'e') ADVANCE(143); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(141); + if (lookahead == 'e') ADVANCE(294); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == 'e') ADVANCE(243); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(143); - if (lookahead == '|') ADVANCE(155); + if (lookahead == 'e') ADVANCE(275); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(143); - if (lookahead == '|') ADVANCE(155); - if (lookahead == '}') ADVANCE(242); + if (lookahead == 'e') ADVANCE(254); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(154); + if (lookahead == 'e') ADVANCE(290); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(154); - if (lookahead == '}') ADVANCE(242); + if (lookahead == 'e') ADVANCE(276); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '}') ADVANCE(242); + if (lookahead == 'e') ADVANCE(249); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == 'e') ADVANCE(277); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(193); + if (lookahead == 'e') ADVANCE(121); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(193); - if (lookahead == '=') ADVANCE(136); + if (lookahead == 'e') ADVANCE(306); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == 'e') ADVANCE(229); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(194); + if (lookahead == 'e') ADVANCE(137); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(194); - if (lookahead == '=') ADVANCE(137); + if (lookahead == 'e') ADVANCE(284); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(194); - if (lookahead == '=') ADVANCE(137); - if (lookahead == '?') ADVANCE(30); + if (lookahead == 'e') ADVANCE(232); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == 'f') ADVANCE(538); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(140); + if (lookahead == 'f') ADVANCE(434); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == 'f') ADVANCE(196); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(147); + if (lookahead == 'f') ADVANCE(124); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == 'g') ADVANCE(967); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(186); + if (lookahead == 'g') ADVANCE(175); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + if (lookahead == 'h') ADVANCE(190); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(188); + if (lookahead == 'h') ADVANCE(190); + if (lookahead == 'i') ADVANCE(301); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + if (lookahead == 'h') ADVANCE(412); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_GT_EQ); + if (lookahead == 'h') ADVANCE(443); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == 'i') ADVANCE(214); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(150); + if (lookahead == 'i') ADVANCE(246); + if (lookahead == 'r') ADVANCE(255); + if (lookahead == 'u') ADVANCE(241); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_TILDE); + if (lookahead == 'i') ADVANCE(144); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == 'i') ADVANCE(293); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == 'i') ADVANCE(302); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead == 'i') ADVANCE(242); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == 'i') ADVANCE(170); END_STATE(); case 197: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '\n') ADVANCE(202); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(197); + if (lookahead == 'i') ADVANCE(271); + if (lookahead == 'k') ADVANCE(248); END_STATE(); case 198: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(200); - if (lookahead == '/') ADVANCE(197); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(202); + if (lookahead == 'i') ADVANCE(259); END_STATE(); case 199: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(199); - if (lookahead == '/') ADVANCE(202); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(200); + if (lookahead == 'i') ADVANCE(286); END_STATE(); case 200: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(199); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(200); + if (lookahead == 'i') ADVANCE(287); END_STATE(); case 201: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(198); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(201); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(202); + if (lookahead == 'j') ADVANCE(177); END_STATE(); case 202: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(202); + if (lookahead == 'l') ADVANCE(105); END_STATE(); case 203: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '\n') ADVANCE(208); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(203); + if (lookahead == 'l') ADVANCE(338); END_STATE(); case 204: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(206); - if (lookahead == '/') ADVANCE(203); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(208); + if (lookahead == 'l') ADVANCE(992); END_STATE(); case 205: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(205); - if (lookahead == '/') ADVANCE(208); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(206); + if (lookahead == 'l') ADVANCE(969); END_STATE(); case 206: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(205); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(206); + if (lookahead == 'l') ADVANCE(298); + if (lookahead == 'n') ADVANCE(323); + if (lookahead == 'x') ADVANCE(265); END_STATE(); case 207: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '/') ADVANCE(204); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(207); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(208); + if (lookahead == 'l') ADVANCE(298); + if (lookahead == 'x') ADVANCE(315); END_STATE(); case 208: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(208); + if (lookahead == 'l') ADVANCE(252); END_STATE(); case 209: - ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == 'l') ADVANCE(340); END_STATE(); case 210: - ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(55); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(232); + if (lookahead == 'l') ADVANCE(116); END_STATE(); case 211: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(209); + if (lookahead == 'l') ADVANCE(116); + if (lookahead == 'o') ADVANCE(250); END_STATE(); case 212: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(211); + if (lookahead == 'l') ADVANCE(203); END_STATE(); case 213: - ACCEPT_TOKEN(sym_comment); + if (lookahead == 'l') ADVANCE(307); END_STATE(); case 214: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(214); + if (lookahead == 'l') ADVANCE(155); END_STATE(); case 215: - ACCEPT_TOKEN(anon_sym_BQUOTE); + if (lookahead == 'l') ADVANCE(156); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + if (lookahead == 'l') ADVANCE(174); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(214); + if (lookahead == 'l') ADVANCE(176); END_STATE(); case 218: - ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(29) - if (lookahead == '/') ADVANCE(23); - if (lookahead == '[') ADVANCE(37); - if (lookahead == '\\') ADVANCE(91); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(218); - if (lookahead != 0) ADVANCE(219); + if (lookahead == 'l') ADVANCE(176); + if (lookahead == 'o') ADVANCE(283); END_STATE(); case 219: - ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(37); - if (lookahead == '\\') ADVANCE(91); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '/') ADVANCE(219); + if (lookahead == 'l') ADVANCE(120); END_STATE(); case 220: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '\\') ADVANCE(55); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(220); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(232); + if (lookahead == 'l') ADVANCE(126); END_STATE(); case 221: - ACCEPT_TOKEN(sym_number); + if (lookahead == 'm') ADVANCE(263); END_STATE(); case 222: - ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(230); - if (lookahead == '0') ADVANCE(227); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(67); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(66); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(68); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(76); - if (lookahead == '_') ADVANCE(71); - if (lookahead == 'n') ADVANCE(221); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead == 'm') ADVANCE(996); END_STATE(); case 223: - ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(230); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(66); - if (lookahead == '_') ADVANCE(69); - if (lookahead == 'n') ADVANCE(221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); + if (lookahead == 'm') ADVANCE(410); END_STATE(); case 224: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(67); - if (lookahead == 'n') ADVANCE(221); - if (lookahead == '0' || - lookahead == '1') ADVANCE(224); + if (lookahead == 'm') ADVANCE(264); + if (lookahead == 'n') ADVANCE(433); + if (lookahead == 's') ADVANCE(1001); END_STATE(); case 225: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(68); - if (lookahead == 'n') ADVANCE(221); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(225); + if (lookahead == 'm') ADVANCE(264); + if (lookahead == 'n') ADVANCE(318); + if (lookahead == 's') ADVANCE(1001); END_STATE(); case 226: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(76); - if (lookahead == 'n') ADVANCE(221); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(226); + if (lookahead == 'm') ADVANCE(132); END_STATE(); case 227: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(71); - if (lookahead == 'n') ADVANCE(221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(227); + if (lookahead == 'm') ADVANCE(133); END_STATE(); case 228: - ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(72); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead == 'm') ADVANCE(166); END_STATE(); case 229: - ACCEPT_TOKEN(sym_number); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(66); - if (lookahead == '_') ADVANCE(70); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (lookahead == 'm') ADVANCE(172); END_STATE(); case 230: - ACCEPT_TOKEN(sym_number); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(66); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (lookahead == 'm') ADVANCE(266); + if (lookahead == 'n') ADVANCE(432); END_STATE(); case 231: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == '{') ADVANCE(216); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(232); + if (lookahead == 'm') ADVANCE(266); + if (lookahead == 'n') ADVANCE(432); + if (lookahead == 's') ADVANCE(1001); END_STATE(); case 232: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(55); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(232); + if (lookahead == 'm') ADVANCE(270); END_STATE(); case 233: - ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\\') ADVANCE(54); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(233); + if (lookahead == 'n') ADVANCE(975); END_STATE(); case 234: - ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == 'n') ADVANCE(467); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == 'n') ADVANCE(432); END_STATE(); case 236: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(135); + if (lookahead == 'n') ADVANCE(197); END_STATE(); case 237: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(135); - if (lookahead == '?') ADVANCE(191); + if (lookahead == 'n') ADVANCE(965); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(135); - if (lookahead == '?') ADVANCE(190); + if (lookahead == 'n') ADVANCE(1005); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); + if (lookahead == 'n') ADVANCE(428); + if (lookahead == 's') ADVANCE(1001); END_STATE(); case 240: - ACCEPT_TOKEN(anon_sym_QMARK_COLON); + if (lookahead == 'n') ADVANCE(323); + if (lookahead == 'x') ADVANCE(315); END_STATE(); case 241: - ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); + if (lookahead == 'n') ADVANCE(142); END_STATE(); case 242: - ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); + if (lookahead == 'n') ADVANCE(184); END_STATE(); case 243: - ACCEPT_TOKEN(aux_sym_ui_version_specifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(243); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == 'a') ADVANCE(1); - if (lookahead == 'b') ADVANCE(2); - if (lookahead == 'c') ADVANCE(3); - if (lookahead == 'd') ADVANCE(4); - if (lookahead == 'e') ADVANCE(5); - if (lookahead == 'f') ADVANCE(6); - if (lookahead == 'g') ADVANCE(7); - if (lookahead == 'i') ADVANCE(8); - if (lookahead == 'k') ADVANCE(9); - if (lookahead == 'l') ADVANCE(10); - if (lookahead == 'm') ADVANCE(11); - if (lookahead == 'n') ADVANCE(12); - if (lookahead == 'o') ADVANCE(13); - if (lookahead == 'p') ADVANCE(14); - if (lookahead == 'r') ADVANCE(15); - if (lookahead == 's') ADVANCE(16); - if (lookahead == 't') ADVANCE(17); - if (lookahead == 'u') ADVANCE(18); - if (lookahead == 'v') ADVANCE(19); - if (lookahead == 'w') ADVANCE(20); - if (lookahead == 'y') ADVANCE(21); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 160 || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8203) || - lookahead == 8239 || - lookahead == 8287 || - lookahead == 8288 || - lookahead == 12288 || - lookahead == 65279) SKIP(0) - END_STATE(); - case 1: - if (lookahead == 'b') ADVANCE(22); - if (lookahead == 'n') ADVANCE(23); - if (lookahead == 's') ADVANCE(24); - if (lookahead == 'w') ADVANCE(25); - END_STATE(); - case 2: - if (lookahead == 'o') ADVANCE(26); - if (lookahead == 'r') ADVANCE(27); + if (lookahead == 'n') ADVANCE(147); END_STATE(); - case 3: - if (lookahead == 'a') ADVANCE(28); - if (lookahead == 'l') ADVANCE(29); - if (lookahead == 'o') ADVANCE(30); + case 244: + if (lookahead == 'n') ADVANCE(134); END_STATE(); - case 4: - if (lookahead == 'e') ADVANCE(31); - if (lookahead == 'o') ADVANCE(32); + case 245: + if (lookahead == 'n') ADVANCE(138); END_STATE(); - case 5: - if (lookahead == 'l') ADVANCE(33); - if (lookahead == 'n') ADVANCE(34); - if (lookahead == 'x') ADVANCE(35); + case 246: + if (lookahead == 'n') ADVANCE(117); END_STATE(); - case 6: - if (lookahead == 'a') ADVANCE(36); - if (lookahead == 'i') ADVANCE(37); - if (lookahead == 'o') ADVANCE(38); - if (lookahead == 'r') ADVANCE(39); - if (lookahead == 'u') ADVANCE(40); + case 247: + if (lookahead == 'n') ADVANCE(209); END_STATE(); - case 7: - if (lookahead == 'e') ADVANCE(41); - if (lookahead == 'l') ADVANCE(42); + case 248: + if (lookahead == 'n') ADVANCE(253); END_STATE(); - case 8: - if (lookahead == 'f') ADVANCE(43); - if (lookahead == 'm') ADVANCE(44); - if (lookahead == 'n') ADVANCE(45); - if (lookahead == 's') ADVANCE(46); + case 249: + if (lookahead == 'n') ADVANCE(319); END_STATE(); - case 9: - if (lookahead == 'e') ADVANCE(47); + case 250: + if (lookahead == 'n') ADVANCE(299); END_STATE(); - case 10: - if (lookahead == 'e') ADVANCE(48); - if (lookahead == 'i') ADVANCE(49); + case 251: + if (lookahead == 'o') ADVANCE(145); END_STATE(); - case 11: - if (lookahead == 'o') ADVANCE(50); + case 252: + if (lookahead == 'o') ADVANCE(131); END_STATE(); - case 12: - if (lookahead == 'a') ADVANCE(51); - if (lookahead == 'e') ADVANCE(52); - if (lookahead == 'u') ADVANCE(53); + case 253: + if (lookahead == 'o') ADVANCE(335); END_STATE(); - case 13: - if (lookahead == 'b') ADVANCE(54); - if (lookahead == 'f') ADVANCE(55); - if (lookahead == 'n') ADVANCE(56); - if (lookahead == 'v') ADVANCE(57); + case 254: + if (lookahead == 'o') ADVANCE(180); END_STATE(); - case 14: - if (lookahead == 'r') ADVANCE(58); - if (lookahead == 'u') ADVANCE(59); + case 255: + if (lookahead == 'o') ADVANCE(223); END_STATE(); - case 15: - if (lookahead == 'e') ADVANCE(60); + case 256: + if (lookahead == 'o') ADVANCE(282); END_STATE(); - case 16: - if (lookahead == 'a') ADVANCE(61); - if (lookahead == 'e') ADVANCE(62); - if (lookahead == 'i') ADVANCE(63); - if (lookahead == 't') ADVANCE(64); - if (lookahead == 'u') ADVANCE(65); - if (lookahead == 'w') ADVANCE(66); - if (lookahead == 'y') ADVANCE(67); + case 257: + if (lookahead == 'o') ADVANCE(205); END_STATE(); - case 17: - if (lookahead == 'a') ADVANCE(68); - if (lookahead == 'h') ADVANCE(69); - if (lookahead == 'r') ADVANCE(70); - if (lookahead == 'y') ADVANCE(71); + case 258: + if (lookahead == 'o') ADVANCE(247); END_STATE(); - case 18: - if (lookahead == 'n') ADVANCE(72); + case 259: + if (lookahead == 'o') ADVANCE(234); END_STATE(); - case 19: - if (lookahead == 'a') ADVANCE(73); - if (lookahead == 'o') ADVANCE(74); + case 260: + if (lookahead == 'o') ADVANCE(262); END_STATE(); - case 20: - if (lookahead == 'h') ADVANCE(75); - if (lookahead == 'i') ADVANCE(76); + case 261: + if (lookahead == 'o') ADVANCE(268); END_STATE(); - case 21: - if (lookahead == 'i') ADVANCE(77); + case 262: + if (lookahead == 'o') ADVANCE(216); END_STATE(); - case 22: - if (lookahead == 's') ADVANCE(78); + case 263: + if (lookahead == 'p') ADVANCE(202); END_STATE(); - case 23: - if (lookahead == 'y') ADVANCE(79); + case 264: + if (lookahead == 'p') ADVANCE(218); END_STATE(); - case 24: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 's') ADVANCE(80); - if (lookahead == 'y') ADVANCE(81); + case 265: + if (lookahead == 'p') ADVANCE(256); + if (lookahead == 't') ADVANCE(167); END_STATE(); - case 25: - if (lookahead == 'a') ADVANCE(82); + case 266: + if (lookahead == 'p') ADVANCE(217); END_STATE(); - case 26: - if (lookahead == 'o') ADVANCE(83); + case 267: + if (lookahead == 'p') ADVANCE(154); END_STATE(); - case 27: - if (lookahead == 'e') ADVANCE(84); + case 268: + if (lookahead == 'p') ADVANCE(178); END_STATE(); - case 28: - if (lookahead == 's') ADVANCE(85); - if (lookahead == 't') ADVANCE(86); + case 269: + if (lookahead == 'p') ADVANCE(125); END_STATE(); - case 29: - if (lookahead == 'a') ADVANCE(87); + case 270: + if (lookahead == 'p') ADVANCE(220); END_STATE(); - case 30: - if (lookahead == 'm') ADVANCE(88); - if (lookahead == 'n') ADVANCE(89); + case 271: + if (lookahead == 'q') ADVANCE(327); END_STATE(); - case 31: - if (lookahead == 'b') ADVANCE(90); - if (lookahead == 'c') ADVANCE(91); - if (lookahead == 'f') ADVANCE(92); - if (lookahead == 'l') ADVANCE(93); + case 272: + if (lookahead == 'q') ADVANCE(332); END_STATE(); - case 32: - ACCEPT_TOKEN(anon_sym_do); + case 273: + if (lookahead == 'r') ADVANCE(185); END_STATE(); - case 33: - if (lookahead == 's') ADVANCE(94); + case 274: + if (lookahead == 'r') ADVANCE(414); END_STATE(); - case 34: - if (lookahead == 'u') ADVANCE(95); + case 275: + if (lookahead == 'r') ADVANCE(183); END_STATE(); - case 35: - if (lookahead == 'p') ADVANCE(96); - if (lookahead == 't') ADVANCE(97); + case 276: + if (lookahead == 'r') ADVANCE(1007); END_STATE(); - case 36: - if (lookahead == 'l') ADVANCE(98); + case 277: + if (lookahead == 'r') ADVANCE(963); END_STATE(); - case 37: - if (lookahead == 'n') ADVANCE(99); + case 278: + if (lookahead == 'r') ADVANCE(255); END_STATE(); - case 38: - if (lookahead == 'r') ADVANCE(100); + case 279: + if (lookahead == 'r') ADVANCE(261); END_STATE(); - case 39: - if (lookahead == 'o') ADVANCE(101); + case 280: + if (lookahead == 'r') ADVANCE(195); END_STATE(); - case 40: - if (lookahead == 'n') ADVANCE(102); + case 281: + if (lookahead == 'r') ADVANCE(122); END_STATE(); - case 41: - if (lookahead == 't') ADVANCE(103); + case 282: + if (lookahead == 'r') ADVANCE(304); END_STATE(); - case 42: - if (lookahead == 'o') ADVANCE(104); + case 283: + if (lookahead == 'r') ADVANCE(305); END_STATE(); - case 43: - ACCEPT_TOKEN(anon_sym_if); + case 284: + if (lookahead == 'r') ADVANCE(311); END_STATE(); - case 44: - if (lookahead == 'p') ADVANCE(105); + case 285: + if (lookahead == 'r') ADVANCE(157); END_STATE(); - case 45: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'f') ADVANCE(106); - if (lookahead == 's') ADVANCE(107); - if (lookahead == 't') ADVANCE(108); + case 286: + if (lookahead == 'r') ADVANCE(165); END_STATE(); - case 46: - ACCEPT_TOKEN(anon_sym_is); + case 287: + if (lookahead == 'r') ADVANCE(161); END_STATE(); - case 47: - if (lookahead == 'y') ADVANCE(109); + case 288: + if (lookahead == 's') ADVANCE(463); END_STATE(); - case 48: - if (lookahead == 't') ADVANCE(110); + case 289: + if (lookahead == 's') ADVANCE(987); END_STATE(); - case 49: - if (lookahead == 's') ADVANCE(111); + case 290: + if (lookahead == 's') ADVANCE(981); END_STATE(); - case 50: - if (lookahead == 'd') ADVANCE(112); + case 291: + if (lookahead == 's') ADVANCE(989); END_STATE(); - case 51: - if (lookahead == 'm') ADVANCE(113); + case 292: + if (lookahead == 's') ADVANCE(397); END_STATE(); - case 52: - if (lookahead == 'v') ADVANCE(114); - if (lookahead == 'w') ADVANCE(115); + case 293: + if (lookahead == 's') ADVANCE(182); END_STATE(); - case 53: - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(117); + case 294: + if (lookahead == 's') ADVANCE(269); END_STATE(); - case 54: - if (lookahead == 'j') ADVANCE(118); + case 295: + if (lookahead == 's') ADVANCE(288); END_STATE(); - case 55: - ACCEPT_TOKEN(anon_sym_of); + case 296: + if (lookahead == 's') ADVANCE(313); END_STATE(); - case 56: - ACCEPT_TOKEN(anon_sym_on); + case 297: + if (lookahead == 's') ADVANCE(152); + if (lookahead == 't') ADVANCE(135); END_STATE(); - case 57: - if (lookahead == 'e') ADVANCE(119); + case 298: + if (lookahead == 's') ADVANCE(153); END_STATE(); - case 58: - if (lookahead == 'a') ADVANCE(120); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'o') ADVANCE(122); + case 299: + if (lookahead == 's') ADVANCE(303); END_STATE(); - case 59: - if (lookahead == 'b') ADVANCE(123); + case 300: + if (lookahead == 't') ADVANCE(416); END_STATE(); - case 60: - if (lookahead == 'a') ADVANCE(124); - if (lookahead == 'q') ADVANCE(125); - if (lookahead == 't') ADVANCE(126); + case 301: + if (lookahead == 't') ADVANCE(188); END_STATE(); - case 61: - if (lookahead == 't') ADVANCE(127); + case 302: + if (lookahead == 't') ADVANCE(426); END_STATE(); - case 62: - if (lookahead == 't') ADVANCE(128); + case 303: + if (lookahead == 't') ADVANCE(418); END_STATE(); - case 63: - if (lookahead == 'g') ADVANCE(129); + case 304: + if (lookahead == 't') ADVANCE(384); END_STATE(); - case 64: - if (lookahead == 'a') ADVANCE(130); - if (lookahead == 'r') ADVANCE(131); + case 305: + if (lookahead == 't') ADVANCE(408); END_STATE(); - case 65: - if (lookahead == 'p') ADVANCE(132); + case 306: + if (lookahead == 't') ADVANCE(948); END_STATE(); - case 66: - if (lookahead == 'i') ADVANCE(133); + case 307: + if (lookahead == 't') ADVANCE(389); END_STATE(); - case 67: - if (lookahead == 'm') ADVANCE(134); + case 308: + if (lookahead == 't') ADVANCE(979); END_STATE(); - case 68: - if (lookahead == 'r') ADVANCE(135); + case 309: + if (lookahead == 't') ADVANCE(971); END_STATE(); - case 69: - if (lookahead == 'i') ADVANCE(136); - if (lookahead == 'r') ADVANCE(137); + case 310: + if (lookahead == 't') ADVANCE(149); END_STATE(); - case 70: - if (lookahead == 'u') ADVANCE(138); - if (lookahead == 'y') ADVANCE(139); + case 311: + if (lookahead == 't') ADVANCE(339); END_STATE(); - case 71: - if (lookahead == 'p') ADVANCE(140); + case 312: + if (lookahead == 't') ADVANCE(193); END_STATE(); - case 72: - if (lookahead == 'd') ADVANCE(141); - if (lookahead == 'k') ADVANCE(142); + case 313: + if (lookahead == 't') ADVANCE(281); END_STATE(); - case 73: - if (lookahead == 'r') ADVANCE(143); + case 314: + if (lookahead == 't') ADVANCE(198); END_STATE(); - case 74: - if (lookahead == 'i') ADVANCE(144); + case 315: + if (lookahead == 't') ADVANCE(167); END_STATE(); - case 75: - if (lookahead == 'i') ADVANCE(145); + case 316: + if (lookahead == 't') ADVANCE(119); END_STATE(); - case 76: - if (lookahead == 't') ADVANCE(146); + case 317: + if (lookahead == 't') ADVANCE(280); + if (lookahead == 'y') ADVANCE(226); END_STATE(); - case 77: - if (lookahead == 'e') ADVANCE(147); + case 318: + if (lookahead == 't') ADVANCE(168); END_STATE(); - case 78: - if (lookahead == 't') ADVANCE(148); + case 319: + if (lookahead == 't') ADVANCE(291); END_STATE(); - case 79: - ACCEPT_TOKEN(anon_sym_any); + case 320: + if (lookahead == 't') ADVANCE(164); END_STATE(); - case 80: - if (lookahead == 'e') ADVANCE(149); + case 321: + if (lookahead == 't') ADVANCE(179); END_STATE(); - case 81: - if (lookahead == 'n') ADVANCE(150); + case 322: + if (lookahead == 'u') ADVANCE(344); + if (lookahead == 'x') ADVANCE(369); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(560); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(562); + if (lookahead != 0) ADVANCE(558); END_STATE(); - case 82: - if (lookahead == 'i') ADVANCE(151); + case 323: + if (lookahead == 'u') ADVANCE(222); END_STATE(); - case 83: - if (lookahead == 'l') ADVANCE(152); + case 324: + if (lookahead == 'u') ADVANCE(241); END_STATE(); - case 84: - if (lookahead == 'a') ADVANCE(153); + case 325: + if (lookahead == 'u') ADVANCE(199); END_STATE(); - case 85: - if (lookahead == 'e') ADVANCE(154); + case 326: + if (lookahead == 'u') ADVANCE(213); END_STATE(); - case 86: - if (lookahead == 'c') ADVANCE(155); + case 327: + if (lookahead == 'u') ADVANCE(162); END_STATE(); - case 87: - if (lookahead == 's') ADVANCE(156); + case 328: + if (lookahead == 'u') ADVANCE(345); END_STATE(); - case 88: - if (lookahead == 'p') ADVANCE(157); + case 329: + if (lookahead == 'u') ADVANCE(215); END_STATE(); - case 89: - if (lookahead == 's') ADVANCE(158); - if (lookahead == 't') ADVANCE(159); + case 330: + if (lookahead == 'u') ADVANCE(346); END_STATE(); - case 90: - if (lookahead == 'u') ADVANCE(160); + case 331: + if (lookahead == 'u') ADVANCE(347); + if (lookahead == 'x') ADVANCE(369); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(560); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(562); + if (lookahead != 0) ADVANCE(558); END_STATE(); - case 91: - if (lookahead == 'l') ADVANCE(161); + case 332: + if (lookahead == 'u') ADVANCE(200); END_STATE(); - case 92: - if (lookahead == 'a') ADVANCE(162); + case 333: + if (lookahead == 'v') ADVANCE(171); END_STATE(); - case 93: - if (lookahead == 'e') ADVANCE(163); + case 334: + if (lookahead == 'w') ADVANCE(471); END_STATE(); - case 94: - if (lookahead == 'e') ADVANCE(164); + case 335: + if (lookahead == 'w') ADVANCE(238); END_STATE(); - case 95: - if (lookahead == 'm') ADVANCE(165); + case 336: + if (lookahead == 'x') ADVANCE(265); END_STATE(); - case 96: - if (lookahead == 'o') ADVANCE(166); + case 337: + if (lookahead == 'x') ADVANCE(315); END_STATE(); - case 97: - if (lookahead == 'e') ADVANCE(167); + case 338: + if (lookahead == 'y') ADVANCE(445); END_STATE(); - case 98: - if (lookahead == 's') ADVANCE(168); + case 339: + if (lookahead == 'y') ADVANCE(973); END_STATE(); - case 99: - if (lookahead == 'a') ADVANCE(169); + case 340: + if (lookahead == 'y') ADVANCE(951); END_STATE(); - case 100: - ACCEPT_TOKEN(anon_sym_for); + case 341: + if (lookahead == 'y') ADVANCE(961); END_STATE(); - case 101: - if (lookahead == 'm') ADVANCE(170); + case 342: + if (lookahead == 'y') ADVANCE(267); END_STATE(); - case 102: - if (lookahead == 'c') ADVANCE(171); + case 343: + if (lookahead == '{') ADVANCE(566); END_STATE(); - case 103: - ACCEPT_TOKEN(anon_sym_get); + case 344: + if (lookahead == '{') ADVANCE(364); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(374); END_STATE(); - case 104: - if (lookahead == 'b') ADVANCE(172); + case 345: + if (lookahead == '{') ADVANCE(367); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(375); END_STATE(); - case 105: - if (lookahead == 'l') ADVANCE(173); - if (lookahead == 'o') ADVANCE(174); + case 346: + if (lookahead == '{') ADVANCE(368); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(376); END_STATE(); - case 106: - if (lookahead == 'e') ADVANCE(175); + case 347: + if (lookahead == '{') ADVANCE(370); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(366); END_STATE(); - case 107: - if (lookahead == 't') ADVANCE(176); + case 348: + if (lookahead == '}') ADVANCE(945); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(348); END_STATE(); - case 108: - if (lookahead == 'e') ADVANCE(177); + case 349: + if (lookahead == '}') ADVANCE(947); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(349); END_STATE(); - case 109: - if (lookahead == 'o') ADVANCE(178); + case 350: + if (lookahead == '}') ADVANCE(558); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(350); END_STATE(); - case 110: - ACCEPT_TOKEN(anon_sym_let); + case 351: + if (lookahead == '}') ADVANCE(1010); END_STATE(); - case 111: - if (lookahead == 't') ADVANCE(179); + case 352: + if (lookahead == '}') ADVANCE(559); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(352); END_STATE(); - case 112: - if (lookahead == 'u') ADVANCE(180); + case 353: + if (lookahead == '+' || + lookahead == '-') ADVANCE(359); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(613); END_STATE(); - case 113: - if (lookahead == 'e') ADVANCE(181); + case 354: + if (lookahead == '0' || + lookahead == '1') ADVANCE(609); END_STATE(); - case 114: - if (lookahead == 'e') ADVANCE(182); + case 355: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(610); END_STATE(); - case 115: - ACCEPT_TOKEN(anon_sym_new); + case 356: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(601); END_STATE(); - case 116: - if (lookahead == 'l') ADVANCE(183); + case 357: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(614); END_STATE(); - case 117: - if (lookahead == 'b') ADVANCE(184); + case 358: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(612); END_STATE(); - case 118: - if (lookahead == 'e') ADVANCE(185); + case 359: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(613); END_STATE(); - case 119: - if (lookahead == 'r') ADVANCE(186); + case 360: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(945); END_STATE(); - case 120: - if (lookahead == 'g') ADVANCE(187); + case 361: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(947); END_STATE(); - case 121: - if (lookahead == 'v') ADVANCE(188); + case 362: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(558); END_STATE(); - case 122: - if (lookahead == 'p') ADVANCE(189); - if (lookahead == 't') ADVANCE(190); + case 363: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(611); END_STATE(); - case 123: - if (lookahead == 'l') ADVANCE(191); + case 364: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(352); END_STATE(); - case 124: - if (lookahead == 'd') ADVANCE(192); + case 365: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(559); END_STATE(); - case 125: - if (lookahead == 'u') ADVANCE(193); + case 366: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(369); END_STATE(); - case 126: - if (lookahead == 'u') ADVANCE(194); + case 367: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(349); END_STATE(); - case 127: - if (lookahead == 'i') ADVANCE(195); + case 368: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(348); END_STATE(); - case 128: - ACCEPT_TOKEN(anon_sym_set); + case 369: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(362); END_STATE(); - case 129: - if (lookahead == 'n') ADVANCE(196); + case 370: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(350); END_STATE(); - case 130: - if (lookahead == 't') ADVANCE(197); + case 371: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(365); END_STATE(); - case 131: - if (lookahead == 'i') ADVANCE(198); + case 372: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(361); END_STATE(); - case 132: - if (lookahead == 'e') ADVANCE(199); + case 373: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(360); END_STATE(); - case 133: - if (lookahead == 't') ADVANCE(200); + case 374: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(371); END_STATE(); - case 134: - if (lookahead == 'b') ADVANCE(201); + case 375: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(372); END_STATE(); - case 135: - if (lookahead == 'g') ADVANCE(202); + case 376: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(373); END_STATE(); - case 136: - if (lookahead == 's') ADVANCE(203); + case 377: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(104); END_STATE(); - case 137: - if (lookahead == 'o') ADVANCE(204); + case 378: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(569); END_STATE(); - case 138: - if (lookahead == 'e') ADVANCE(205); + case 379: + if (eof) ADVANCE(382); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '#') ADVANCE(33); + if (lookahead == '$') ADVANCE(937); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(513); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(517); + if (lookahead == '.') ADVANCE(459); + if (lookahead == '/') ADVANCE(518); + if (lookahead == '0') ADVANCE(599); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(526); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(955); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(651); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(787); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'g') ADVANCE(793); + if (lookahead == 'i') ADVANCE(802); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(652); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(726); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(674); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == '{') ADVANCE(405); + if (lookahead == '|') ADVANCE(506); + if (lookahead == '}') ADVANCE(407); + if (lookahead == '~') ADVANCE(541); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(616); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(379) + if (lookahead != 0 && + lookahead > 31) ADVANCE(945); END_STATE(); - case 139: - ACCEPT_TOKEN(anon_sym_try); + case 380: + if (eof) ADVANCE(382); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '$') ADVANCE(343); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(955); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == '\\') ADVANCE(331); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(128); + if (lookahead == 'c') ADVANCE(106); + if (lookahead == 'd') ADVANCE(150); + if (lookahead == 'e') ADVANCE(206); + if (lookahead == 'f') ADVANCE(191); + if (lookahead == 'g') ADVANCE(208); + if (lookahead == 'i') ADVANCE(224); + if (lookahead == 'l') ADVANCE(163); + if (lookahead == 'm') ADVANCE(251); + if (lookahead == 'n') ADVANCE(107); + if (lookahead == 'o') ADVANCE(233); + if (lookahead == 'p') ADVANCE(279); + if (lookahead == 'r') ADVANCE(151); + if (lookahead == 's') ADVANCE(113); + if (lookahead == 't') ADVANCE(109); + if (lookahead == 'v') ADVANCE(114); + if (lookahead == 'w') ADVANCE(187); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(506); + if (lookahead == '}') ADVANCE(407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1011); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(381) END_STATE(); - case 140: + case 381: + if (eof) ADVANCE(382); + if (lookahead == '!') ADVANCE(421); + if (lookahead == '"') ADVANCE(461); + if (lookahead == '$') ADVANCE(343); + if (lookahead == '%') ADVANCE(521); + if (lookahead == '&') ADVANCE(500); + if (lookahead == '\'') ADVANCE(462); + if (lookahead == '(') ADVANCE(424); + if (lookahead == ')') ADVANCE(425); + if (lookahead == '*') ADVANCE(387); + if (lookahead == '+') ADVANCE(512); + if (lookahead == ',') ADVANCE(406); + if (lookahead == '-') ADVANCE(516); + if (lookahead == '.') ADVANCE(458); + if (lookahead == '/') ADVANCE(519); + if (lookahead == ':') ADVANCE(440); + if (lookahead == ';') ADVANCE(439); + if (lookahead == '<') ADVANCE(525); + if (lookahead == '=') ADVANCE(395); + if (lookahead == '>') ADVANCE(456); + if (lookahead == '?') ADVANCE(955); + if (lookahead == '@') ADVANCE(950); + if (lookahead == '[') ADVANCE(447); + if (lookahead == ']') ADVANCE(448); + if (lookahead == '^') ADVANCE(503); + if (lookahead == '`') ADVANCE(565); + if (lookahead == 'a') ADVANCE(128); + if (lookahead == 'c') ADVANCE(106); + if (lookahead == 'd') ADVANCE(150); if (lookahead == 'e') ADVANCE(206); + if (lookahead == 'f') ADVANCE(191); + if (lookahead == 'g') ADVANCE(208); + if (lookahead == 'i') ADVANCE(224); + if (lookahead == 'l') ADVANCE(163); + if (lookahead == 'm') ADVANCE(251); + if (lookahead == 'n') ADVANCE(107); + if (lookahead == 'o') ADVANCE(233); + if (lookahead == 'p') ADVANCE(279); + if (lookahead == 'r') ADVANCE(151); + if (lookahead == 's') ADVANCE(113); + if (lookahead == 't') ADVANCE(109); + if (lookahead == 'v') ADVANCE(114); + if (lookahead == 'w') ADVANCE(187); + if (lookahead == '{') ADVANCE(404); + if (lookahead == '|') ADVANCE(506); + if (lookahead == '}') ADVANCE(407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1011); + if (anon_sym_BANG_character_set_2(lookahead)) SKIP(381) END_STATE(); - case 141: - if (lookahead == 'e') ADVANCE(207); + case 382: + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 142: - if (lookahead == 'n') ADVANCE(208); + case 383: + ACCEPT_TOKEN(sym_hash_bang_line); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(383); END_STATE(); - case 143: - ACCEPT_TOKEN(anon_sym_var); + case 384: + ACCEPT_TOKEN(anon_sym_export); END_STATE(); - case 144: - if (lookahead == 'd') ADVANCE(209); + case 385: + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 145: - if (lookahead == 'l') ADVANCE(210); + case 386: + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 146: - if (lookahead == 'h') ADVANCE(211); + case 387: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(523); + if (lookahead == '=') ADVANCE(475); END_STATE(); - case 147: - if (lookahead == 'l') ADVANCE(212); + case 388: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(522); END_STATE(); - case 148: - if (lookahead == 'r') ADVANCE(213); + case 389: + ACCEPT_TOKEN(anon_sym_default); END_STATE(); - case 149: - if (lookahead == 'r') ADVANCE(214); + case 390: + ACCEPT_TOKEN(anon_sym_default); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 150: - if (lookahead == 'c') ADVANCE(215); + case 391: + ACCEPT_TOKEN(anon_sym_type); END_STATE(); - case 151: - if (lookahead == 't') ADVANCE(216); + case 392: + ACCEPT_TOKEN(anon_sym_type); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 152: - if (lookahead == 'e') ADVANCE(217); + case 393: + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 153: - if (lookahead == 'k') ADVANCE(218); + case 394: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(531); END_STATE(); - case 154: - ACCEPT_TOKEN(anon_sym_case); + case 395: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(531); + if (lookahead == '>') ADVANCE(469); END_STATE(); - case 155: - if (lookahead == 'h') ADVANCE(219); + case 396: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(469); END_STATE(); - case 156: - if (lookahead == 's') ADVANCE(220); + case 397: + ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 157: - if (lookahead == 'o') ADVANCE(221); + case 398: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'y') ADVANCE(831); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 158: - if (lookahead == 't') ADVANCE(222); + case 399: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 159: - if (lookahead == 'i') ADVANCE(223); + case 400: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(244); END_STATE(); - case 160: - if (lookahead == 'g') ADVANCE(224); + case 401: + ACCEPT_TOKEN(anon_sym_as); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 161: - if (lookahead == 'a') ADVANCE(225); + case 402: + ACCEPT_TOKEN(anon_sym_namespace); END_STATE(); - case 162: - if (lookahead == 'u') ADVANCE(226); + case 403: + ACCEPT_TOKEN(anon_sym_namespace); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 163: - if (lookahead == 't') ADVANCE(227); + case 404: + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 164: - ACCEPT_TOKEN(anon_sym_else); + case 405: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '|') ADVANCE(1009); END_STATE(); - case 165: - ACCEPT_TOKEN(anon_sym_enum); + case 406: + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 166: - if (lookahead == 'r') ADVANCE(228); + case 407: + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 167: - if (lookahead == 'n') ADVANCE(229); + case 408: + ACCEPT_TOKEN(anon_sym_import); END_STATE(); - case 168: - if (lookahead == 'e') ADVANCE(230); + case 409: + ACCEPT_TOKEN(anon_sym_import); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 169: - if (lookahead == 'l') ADVANCE(231); + case 410: + ACCEPT_TOKEN(anon_sym_from); END_STATE(); - case 170: + case 411: ACCEPT_TOKEN(anon_sym_from); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 171: - if (lookahead == 't') ADVANCE(232); + case 412: + ACCEPT_TOKEN(anon_sym_with); END_STATE(); - case 172: - if (lookahead == 'a') ADVANCE(233); + case 413: + ACCEPT_TOKEN(anon_sym_with); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 173: - if (lookahead == 'e') ADVANCE(234); + case 414: + ACCEPT_TOKEN(anon_sym_var); END_STATE(); - case 174: - if (lookahead == 'r') ADVANCE(235); + case 415: + ACCEPT_TOKEN(anon_sym_var); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 175: - if (lookahead == 'r') ADVANCE(236); + case 416: + ACCEPT_TOKEN(anon_sym_let); END_STATE(); - case 176: - if (lookahead == 'a') ADVANCE(237); + case 417: + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 177: - if (lookahead == 'r') ADVANCE(238); + case 418: + ACCEPT_TOKEN(anon_sym_const); END_STATE(); - case 178: - if (lookahead == 'f') ADVANCE(239); + case 419: + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 179: - ACCEPT_TOKEN(anon_sym_list); + case 420: + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 180: - if (lookahead == 'l') ADVANCE(240); + case 421: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(533); END_STATE(); - case 181: - if (lookahead == 's') ADVANCE(241); + case 422: + ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 182: - if (lookahead == 'r') ADVANCE(242); + case 423: + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 183: - ACCEPT_TOKEN(sym_null); + case 424: + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 184: - if (lookahead == 'e') ADVANCE(243); + case 425: + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 185: - if (lookahead == 'c') ADVANCE(244); + case 426: + ACCEPT_TOKEN(anon_sym_await); END_STATE(); - case 186: - if (lookahead == 'r') ADVANCE(245); + case 427: + ACCEPT_TOKEN(anon_sym_await); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 187: - if (lookahead == 'm') ADVANCE(246); + case 428: + ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 188: - if (lookahead == 'a') ADVANCE(247); + case 429: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(914); + if (lookahead == 't') ADVANCE(745); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 189: - if (lookahead == 'e') ADVANCE(248); + case 430: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(914); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 190: - if (lookahead == 'e') ADVANCE(249); + case 431: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 's') ADVANCE(595); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 191: - if (lookahead == 'i') ADVANCE(250); + case 432: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 's') ADVANCE(316); END_STATE(); - case 192: - if (lookahead == 'o') ADVANCE(251); + case 433: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 's') ADVANCE(316); + if (lookahead == 't') ADVANCE(168); END_STATE(); - case 193: - if (lookahead == 'i') ADVANCE(252); + case 434: + ACCEPT_TOKEN(anon_sym_of); END_STATE(); - case 194: - if (lookahead == 'r') ADVANCE(253); + case 435: + ACCEPT_TOKEN(anon_sym_of); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 195: - if (lookahead == 's') ADVANCE(254); + case 436: + ACCEPT_TOKEN(anon_sym_of); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 196: - if (lookahead == 'a') ADVANCE(255); + case 437: + ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 197: - if (lookahead == 'i') ADVANCE(256); + case 438: + ACCEPT_TOKEN(anon_sym_while); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 198: - if (lookahead == 'n') ADVANCE(257); + case 439: + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 199: - if (lookahead == 'r') ADVANCE(258); + case 440: + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 200: - if (lookahead == 'c') ADVANCE(259); + case 441: + ACCEPT_TOKEN(anon_sym_case); END_STATE(); - case 201: - if (lookahead == 'o') ADVANCE(260); + case 442: + ACCEPT_TOKEN(anon_sym_case); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 202: - if (lookahead == 'e') ADVANCE(261); + case 443: + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 203: - ACCEPT_TOKEN(sym_this); + case 444: + ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 204: - if (lookahead == 'w') ADVANCE(262); + case 445: + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); - case 205: - ACCEPT_TOKEN(sym_true); + case 446: + ACCEPT_TOKEN(anon_sym_finally); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 206: - ACCEPT_TOKEN(anon_sym_type); - if (lookahead == 'o') ADVANCE(263); + case 447: + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 207: - if (lookahead == 'f') ADVANCE(264); + case 448: + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 208: - if (lookahead == 'o') ADVANCE(265); + case 449: + ACCEPT_TOKEN(sym__glimmer_template_content); END_STATE(); - case 209: - ACCEPT_TOKEN(anon_sym_void); + case 450: + ACCEPT_TOKEN(sym__glimmer_template_content); + if (lookahead == '*') ADVANCE(71); + if (lookahead == '/') ADVANCE(564); END_STATE(); - case 210: - if (lookahead == 'e') ADVANCE(266); + case 451: + ACCEPT_TOKEN(sym__glimmer_template_content); + if (lookahead == '/') ADVANCE(450); + if (lookahead == '<') ADVANCE(452); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(451); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(449); END_STATE(); - case 211: - ACCEPT_TOKEN(anon_sym_with); + case 452: + ACCEPT_TOKEN(sym__glimmer_template_content); + if (lookahead == '/') ADVANCE(321); END_STATE(); - case 212: - if (lookahead == 'd') ADVANCE(267); + case 453: + ACCEPT_TOKEN(anon_sym_LTtemplate_GT); END_STATE(); - case 213: - if (lookahead == 'a') ADVANCE(268); + case 454: + ACCEPT_TOKEN(anon_sym_LT_SLASHtemplate_GT); END_STATE(); - case 214: - if (lookahead == 't') ADVANCE(269); + case 455: + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 215: - ACCEPT_TOKEN(anon_sym_async); + case 456: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(535); + if (lookahead == '>') ADVANCE(493); END_STATE(); - case 216: - ACCEPT_TOKEN(anon_sym_await); + case 457: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(535); + if (lookahead == '>') ADVANCE(494); END_STATE(); - case 217: - if (lookahead == 'a') ADVANCE(270); + case 458: + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 218: - ACCEPT_TOKEN(anon_sym_break); + case 459: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(77); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(614); END_STATE(); - case 219: - ACCEPT_TOKEN(anon_sym_catch); + case 460: + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(614); END_STATE(); - case 220: + case 461: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 462: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 463: ACCEPT_TOKEN(anon_sym_class); END_STATE(); - case 221: - if (lookahead == 'n') ADVANCE(271); + case 464: + ACCEPT_TOKEN(anon_sym_class); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_const); + case 465: + ACCEPT_TOKEN(anon_sym_async); END_STATE(); - case 223: - if (lookahead == 'n') ADVANCE(272); + case 466: + ACCEPT_TOKEN(anon_sym_async); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 224: - if (lookahead == 'g') ADVANCE(273); + case 467: + ACCEPT_TOKEN(anon_sym_function); END_STATE(); - case 225: - if (lookahead == 'r') ADVANCE(274); + case 468: + ACCEPT_TOKEN(anon_sym_function); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 226: - if (lookahead == 'l') ADVANCE(275); + case 469: + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 227: - if (lookahead == 'e') ADVANCE(276); + case 470: + ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); - case 228: - if (lookahead == 't') ADVANCE(277); + case 471: + ACCEPT_TOKEN(anon_sym_new); END_STATE(); - case 229: - if (lookahead == 'd') ADVANCE(278); + case 472: + ACCEPT_TOKEN(anon_sym_new); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 230: - ACCEPT_TOKEN(sym_false); + case 473: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 231: - if (lookahead == 'l') ADVANCE(279); + case 474: + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 232: - if (lookahead == 'i') ADVANCE(280); + case 475: + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 233: - if (lookahead == 'l') ADVANCE(281); + case 476: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 234: - if (lookahead == 'm') ADVANCE(282); + case 477: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 235: - if (lookahead == 't') ADVANCE(283); + case 478: + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 236: - ACCEPT_TOKEN(anon_sym_infer); + case 479: + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 237: - if (lookahead == 'n') ADVANCE(284); + case 480: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 238: - if (lookahead == 'f') ADVANCE(285); + case 481: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 239: - ACCEPT_TOKEN(anon_sym_keyof); + case 482: + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); - case 240: - if (lookahead == 'e') ADVANCE(286); + case 483: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 241: - if (lookahead == 'p') ADVANCE(287); + case 484: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); - case 242: - ACCEPT_TOKEN(anon_sym_never); + case 485: + ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); - case 243: - if (lookahead == 'r') ADVANCE(288); + case 486: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); - case 244: - if (lookahead == 't') ADVANCE(289); + case 487: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); - case 245: - if (lookahead == 'i') ADVANCE(290); + case 488: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 246: - if (lookahead == 'a') ADVANCE(291); + case 489: + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 247: - if (lookahead == 't') ADVANCE(292); + case 490: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(485); END_STATE(); - case 248: - if (lookahead == 'r') ADVANCE(293); + case 491: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 249: - if (lookahead == 'c') ADVANCE(294); + case 492: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(486); END_STATE(); - case 250: - if (lookahead == 'c') ADVANCE(295); + case 493: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(481); + if (lookahead == '>') ADVANCE(496); END_STATE(); - case 251: - if (lookahead == 'n') ADVANCE(296); + case 494: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(495); END_STATE(); - case 252: - if (lookahead == 'r') ADVANCE(297); + case 495: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 253: - if (lookahead == 'n') ADVANCE(298); + case 496: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(482); END_STATE(); - case 254: - if (lookahead == 'f') ADVANCE(299); + case 497: + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 255: - if (lookahead == 'l') ADVANCE(300); + case 498: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(483); END_STATE(); - case 256: - if (lookahead == 'c') ADVANCE(301); + case 499: + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 257: - if (lookahead == 'g') ADVANCE(302); + case 500: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(490); + if (lookahead == '=') ADVANCE(479); END_STATE(); - case 258: - ACCEPT_TOKEN(sym_super); + case 501: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(489); END_STATE(); - case 259: - if (lookahead == 'h') ADVANCE(303); + case 502: + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 260: - if (lookahead == 'l') ADVANCE(304); + case 503: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(478); END_STATE(); - case 261: - if (lookahead == 't') ADVANCE(305); + case 504: + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 262: - ACCEPT_TOKEN(anon_sym_throw); + case 505: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(480); + if (lookahead == '|') ADVANCE(492); END_STATE(); - case 263: - if (lookahead == 'f') ADVANCE(306); + case 506: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(480); + if (lookahead == '|') ADVANCE(492); + if (lookahead == '}') ADVANCE(1010); END_STATE(); - case 264: - if (lookahead == 'i') ADVANCE(307); + case 507: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(491); END_STATE(); - case 265: - if (lookahead == 'w') ADVANCE(308); + case 508: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(491); + if (lookahead == '}') ADVANCE(1010); END_STATE(); - case 266: - ACCEPT_TOKEN(anon_sym_while); + case 509: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '}') ADVANCE(1010); END_STATE(); - case 267: - ACCEPT_TOKEN(anon_sym_yield); + case 510: + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 268: - if (lookahead == 'c') ADVANCE(309); + case 511: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(544); END_STATE(); - case 269: - if (lookahead == 's') ADVANCE(310); + case 512: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(544); + if (lookahead == '=') ADVANCE(473); END_STATE(); - case 270: - if (lookahead == 'n') ADVANCE(311); + case 513: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(544); + if (lookahead == '=') ADVANCE(473); + if (lookahead == '?') ADVANCE(94); END_STATE(); - case 271: - if (lookahead == 'e') ADVANCE(312); + case 514: + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 272: - if (lookahead == 'u') ADVANCE(313); + case 515: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(545); END_STATE(); - case 273: - if (lookahead == 'e') ADVANCE(314); + case 516: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(545); + if (lookahead == '=') ADVANCE(474); END_STATE(); - case 274: - if (lookahead == 'e') ADVANCE(315); + case 517: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(545); + if (lookahead == '=') ADVANCE(474); + if (lookahead == '?') ADVANCE(95); END_STATE(); - case 275: - if (lookahead == 't') ADVANCE(316); + case 518: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(71); + if (lookahead == '/') ADVANCE(564); END_STATE(); - case 276: - ACCEPT_TOKEN(anon_sym_delete); + case 519: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(71); + if (lookahead == '/') ADVANCE(564); + if (lookahead == '=') ADVANCE(476); END_STATE(); - case 277: - ACCEPT_TOKEN(anon_sym_export); + case 520: + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 278: - if (lookahead == 's') ADVANCE(317); + case 521: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(477); END_STATE(); - case 279: - if (lookahead == 'y') ADVANCE(318); + case 522: + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 280: - if (lookahead == 'o') ADVANCE(319); + case 523: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(484); END_STATE(); - case 281: - ACCEPT_TOKEN(anon_sym_global); + case 524: + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 282: - if (lookahead == 'e') ADVANCE(320); + case 525: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(498); + if (lookahead == '=') ADVANCE(530); END_STATE(); - case 283: - ACCEPT_TOKEN(anon_sym_import); + case 526: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(498); + if (lookahead == '=') ADVANCE(530); + if (lookahead == 't') ADVANCE(148); END_STATE(); - case 284: - if (lookahead == 'c') ADVANCE(321); + case 527: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(497); + if (lookahead == '=') ADVANCE(530); END_STATE(); - case 285: - if (lookahead == 'a') ADVANCE(322); + case 528: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(497); + if (lookahead == '=') ADVANCE(530); + if (lookahead == 't') ADVANCE(148); END_STATE(); - case 286: - ACCEPT_TOKEN(anon_sym_module); + case 529: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == 't') ADVANCE(148); END_STATE(); - case 287: - if (lookahead == 'a') ADVANCE(323); + case 530: + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 288: - ACCEPT_TOKEN(anon_sym_number); + case 531: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(532); END_STATE(); - case 289: - ACCEPT_TOKEN(anon_sym_object); + case 532: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); - case 290: - if (lookahead == 'd') ADVANCE(324); + case 533: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(534); END_STATE(); - case 291: - ACCEPT_TOKEN(anon_sym_pragma); + case 534: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); - case 292: - if (lookahead == 'e') ADVANCE(325); + case 535: + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 293: - if (lookahead == 't') ADVANCE(326); + case 536: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 294: - if (lookahead == 't') ADVANCE(327); + case 537: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(487); END_STATE(); - case 295: - ACCEPT_TOKEN(anon_sym_public); + case 538: + ACCEPT_TOKEN(anon_sym_instanceof); END_STATE(); - case 296: - if (lookahead == 'l') ADVANCE(328); + case 539: + ACCEPT_TOKEN(anon_sym_instanceof); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 297: - if (lookahead == 'e') ADVANCE(329); + case 540: + ACCEPT_TOKEN(anon_sym_instanceof); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 298: - ACCEPT_TOKEN(anon_sym_return); + case 541: + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 299: - if (lookahead == 'i') ADVANCE(330); + case 542: + ACCEPT_TOKEN(anon_sym_void); END_STATE(); - case 300: - ACCEPT_TOKEN(anon_sym_signal); + case 543: + ACCEPT_TOKEN(anon_sym_void); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 301: - ACCEPT_TOKEN(anon_sym_static); + case 544: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 302: - ACCEPT_TOKEN(anon_sym_string); + case 545: + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 303: - ACCEPT_TOKEN(anon_sym_switch); + case 546: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '\n') ADVANCE(551); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(546); END_STATE(); - case 304: - ACCEPT_TOKEN(anon_sym_symbol); + case 547: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(549); + if (lookahead == '/') ADVANCE(546); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(551); END_STATE(); - case 305: - ACCEPT_TOKEN(anon_sym_target); + case 548: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(548); + if (lookahead == '/') ADVANCE(551); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(549); END_STATE(); - case 306: - ACCEPT_TOKEN(anon_sym_typeof); + case 549: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(548); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(549); END_STATE(); - case 307: - if (lookahead == 'n') ADVANCE(331); + case 550: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '/') ADVANCE(547); + if (anon_sym_BANG_character_set_2(lookahead)) ADVANCE(550); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(551); END_STATE(); - case 308: - if (lookahead == 'n') ADVANCE(332); + case 551: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(551); END_STATE(); - case 309: - if (lookahead == 't') ADVANCE(333); + case 552: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '\n') ADVANCE(557); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(552); END_STATE(); - case 310: - ACCEPT_TOKEN(anon_sym_asserts); + case 553: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(555); + if (lookahead == '/') ADVANCE(552); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(557); END_STATE(); - case 311: - ACCEPT_TOKEN(anon_sym_boolean); + case 554: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(554); + if (lookahead == '/') ADVANCE(557); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(555); END_STATE(); - case 312: - if (lookahead == 'n') ADVANCE(334); + case 555: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(554); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(555); END_STATE(); - case 313: - if (lookahead == 'e') ADVANCE(335); + case 556: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '/') ADVANCE(553); + if (anon_sym_BANG_character_set_2(lookahead)) ADVANCE(556); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(557); END_STATE(); - case 314: - if (lookahead == 'r') ADVANCE(336); + case 557: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead != 0 && + lookahead != '\'' && + lookahead != '\\') ADVANCE(557); END_STATE(); - case 315: - ACCEPT_TOKEN(anon_sym_declare); + case 558: + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 316: - ACCEPT_TOKEN(anon_sym_default); + case 559: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); END_STATE(); - case 317: - ACCEPT_TOKEN(anon_sym_extends); + case 560: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\n' || + lookahead == 8232 || + lookahead == 8233) ADVANCE(558); END_STATE(); - case 318: - ACCEPT_TOKEN(anon_sym_finally); + case 561: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(558); END_STATE(); - case 319: - if (lookahead == 'n') ADVANCE(337); + case 562: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(561); END_STATE(); - case 320: - if (lookahead == 'n') ADVANCE(338); + case 563: + ACCEPT_TOKEN(aux_sym_comment_token1); END_STATE(); - case 321: - if (lookahead == 'e') ADVANCE(339); + case 564: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(564); END_STATE(); - case 322: - if (lookahead == 'c') ADVANCE(340); + case 565: + ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 323: - if (lookahead == 'c') ADVANCE(341); + case 566: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 324: - if (lookahead == 'e') ADVANCE(342); + case 567: + ACCEPT_TOKEN(anon_sym_SLASH2); + if (lookahead == '*') ADVANCE(71); + if (lookahead == '/') ADVANCE(564); END_STATE(); - case 325: - ACCEPT_TOKEN(anon_sym_private); + case 568: + ACCEPT_TOKEN(sym_regex_pattern); + if (lookahead == '\n') SKIP(93) + if (lookahead == '/') ADVANCE(69); + if (lookahead == '[') ADVANCE(104); + if (lookahead == '\\') ADVANCE(378); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(568); + if (lookahead != 0) ADVANCE(569); END_STATE(); - case 326: - if (lookahead == 'y') ADVANCE(343); + case 569: + ACCEPT_TOKEN(sym_regex_pattern); + if (lookahead == '[') ADVANCE(104); + if (lookahead == '\\') ADVANCE(378); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '/') ADVANCE(569); END_STATE(); - case 327: - if (lookahead == 'e') ADVANCE(344); + case 570: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'a') ADVANCE(594); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 328: - if (lookahead == 'y') ADVANCE(345); + case 571: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'a') ADVANCE(586); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 329: - ACCEPT_TOKEN(anon_sym_require); - if (lookahead == 'd') ADVANCE(346); + case 572: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'c') ADVANCE(573); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 330: - if (lookahead == 'e') ADVANCE(347); + case 573: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'e') ADVANCE(588); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 331: - if (lookahead == 'e') ADVANCE(348); + case 574: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'e') ADVANCE(584); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 332: - ACCEPT_TOKEN(anon_sym_unknown); + case 575: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'e') ADVANCE(592); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 333: - ACCEPT_TOKEN(anon_sym_abstract); + case 576: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'e') ADVANCE(587); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 334: - if (lookahead == 't') ADVANCE(349); + case 577: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'f') ADVANCE(540); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 335: - ACCEPT_TOKEN(anon_sym_continue); + case 578: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'f') ADVANCE(436); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 336: - ACCEPT_TOKEN(anon_sym_debugger); + case 579: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'f') ADVANCE(581); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 337: - ACCEPT_TOKEN(anon_sym_function); + case 580: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'i') ADVANCE(591); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 338: - if (lookahead == 't') ADVANCE(350); + case 581: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'i') ADVANCE(575); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 339: - if (lookahead == 'o') ADVANCE(351); + case 582: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'l') ADVANCE(574); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 340: - if (lookahead == 'e') ADVANCE(352); + case 583: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'm') ADVANCE(589); + if (lookahead == 'n') ADVANCE(431); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 341: - if (lookahead == 'e') ADVANCE(353); + case 584: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'm') ADVANCE(576); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 342: - ACCEPT_TOKEN(anon_sym_override); + case 585: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'n') ADVANCE(431); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 343: - ACCEPT_TOKEN(anon_sym_property); + case 586: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'n') ADVANCE(572); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 344: - if (lookahead == 'd') ADVANCE(354); + case 587: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'n') ADVANCE(596); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 345: - ACCEPT_TOKEN(anon_sym_readonly); + case 588: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'o') ADVANCE(577); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 346: - ACCEPT_TOKEN(anon_sym_required); + case 589: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 'p') ADVANCE(582); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 347: - if (lookahead == 's') ADVANCE(355); + case 590: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 's') ADVANCE(401); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 348: - if (lookahead == 'd') ADVANCE(356); + case 591: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 's') ADVANCE(579); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 349: - ACCEPT_TOKEN(anon_sym_component); + case 592: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 's') ADVANCE(983); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 350: - if (lookahead == 's') ADVANCE(357); + case 593: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 's') ADVANCE(991); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 351: - if (lookahead == 'f') ADVANCE(358); + case 594: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 't') ADVANCE(580); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 352: - ACCEPT_TOKEN(anon_sym_interface); + case 595: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 't') ADVANCE(571); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 353: - ACCEPT_TOKEN(anon_sym_namespace); + case 596: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == 't') ADVANCE(593); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 354: - ACCEPT_TOKEN(anon_sym_protected); + case 597: + ACCEPT_TOKEN(sym_regex_flags); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); END_STATE(); - case 355: - ACCEPT_TOKEN(anon_sym_satisfies); + case 598: + ACCEPT_TOKEN(sym_number); END_STATE(); - case 356: - ACCEPT_TOKEN(sym_undefined); + case 599: + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(615); + if (lookahead == '0') ADVANCE(612); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(354); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(353); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(355); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(363); + if (lookahead == '_') ADVANCE(358); + if (lookahead == 'n') ADVANCE(598); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); END_STATE(); - case 357: - ACCEPT_TOKEN(anon_sym_implements); + case 600: + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(615); + if (lookahead == '0') ADVANCE(606); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(938); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(946); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(940); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(944); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '_') ADVANCE(942); + if (lookahead == 'n') ADVANCE(608); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_identifier_character_set_2(lookahead)) ADVANCE(945); END_STATE(); - case 358: - ACCEPT_TOKEN(anon_sym_instanceof); + case 601: + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(615); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(353); + if (lookahead == '_') ADVANCE(356); + if (lookahead == 'n') ADVANCE(598); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(601); END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 93}, - [2] = {.lex_state = 93, .external_lex_state = 2}, - [3] = {.lex_state = 93, .external_lex_state = 2}, - [4] = {.lex_state = 11}, - [5] = {.lex_state = 11}, - [6] = {.lex_state = 11}, - [7] = {.lex_state = 11}, - [8] = {.lex_state = 11}, - [9] = {.lex_state = 11}, - [10] = {.lex_state = 11}, - [11] = {.lex_state = 11}, - [12] = {.lex_state = 11}, - [13] = {.lex_state = 11}, - [14] = {.lex_state = 11}, - [15] = {.lex_state = 11}, - [16] = {.lex_state = 11}, - [17] = {.lex_state = 11}, - [18] = {.lex_state = 11}, - [19] = {.lex_state = 11}, - [20] = {.lex_state = 11}, - [21] = {.lex_state = 11}, - [22] = {.lex_state = 11}, - [23] = {.lex_state = 11}, - [24] = {.lex_state = 11}, - [25] = {.lex_state = 11}, - [26] = {.lex_state = 11}, - [27] = {.lex_state = 11}, - [28] = {.lex_state = 11}, - [29] = {.lex_state = 11}, - [30] = {.lex_state = 11}, - [31] = {.lex_state = 11}, - [32] = {.lex_state = 11}, - [33] = {.lex_state = 11}, - [34] = {.lex_state = 11}, - [35] = {.lex_state = 11}, - [36] = {.lex_state = 11}, - [37] = {.lex_state = 11}, - [38] = {.lex_state = 11}, - [39] = {.lex_state = 11}, - [40] = {.lex_state = 11}, - [41] = {.lex_state = 11}, - [42] = {.lex_state = 11}, - [43] = {.lex_state = 11}, - [44] = {.lex_state = 11}, - [45] = {.lex_state = 11}, - [46] = {.lex_state = 11}, - [47] = {.lex_state = 11}, - [48] = {.lex_state = 11}, - [49] = {.lex_state = 11}, - [50] = {.lex_state = 11}, - [51] = {.lex_state = 11}, - [52] = {.lex_state = 11}, - [53] = {.lex_state = 11}, - [54] = {.lex_state = 11}, - [55] = {.lex_state = 11}, - [56] = {.lex_state = 11}, - [57] = {.lex_state = 11}, - [58] = {.lex_state = 11}, - [59] = {.lex_state = 11}, - [60] = {.lex_state = 11}, - [61] = {.lex_state = 4, .external_lex_state = 2}, - [62] = {.lex_state = 4, .external_lex_state = 2}, - [63] = {.lex_state = 15}, - [64] = {.lex_state = 15}, - [65] = {.lex_state = 15}, - [66] = {.lex_state = 4, .external_lex_state = 2}, - [67] = {.lex_state = 15}, - [68] = {.lex_state = 4, .external_lex_state = 2}, - [69] = {.lex_state = 15}, - [70] = {.lex_state = 4, .external_lex_state = 2}, - [71] = {.lex_state = 15}, - [72] = {.lex_state = 15}, - [73] = {.lex_state = 4, .external_lex_state = 2}, - [74] = {.lex_state = 4, .external_lex_state = 2}, - [75] = {.lex_state = 15}, - [76] = {.lex_state = 15}, - [77] = {.lex_state = 4, .external_lex_state = 2}, - [78] = {.lex_state = 15}, - [79] = {.lex_state = 15}, - [80] = {.lex_state = 15}, - [81] = {.lex_state = 15}, - [82] = {.lex_state = 15}, - [83] = {.lex_state = 15}, - [84] = {.lex_state = 15}, - [85] = {.lex_state = 15}, - [86] = {.lex_state = 15}, - [87] = {.lex_state = 15}, - [88] = {.lex_state = 15}, - [89] = {.lex_state = 15}, - [90] = {.lex_state = 15}, - [91] = {.lex_state = 15}, - [92] = {.lex_state = 15}, - [93] = {.lex_state = 15}, - [94] = {.lex_state = 15}, - [95] = {.lex_state = 15}, - [96] = {.lex_state = 15}, - [97] = {.lex_state = 15}, - [98] = {.lex_state = 15}, - [99] = {.lex_state = 15}, - [100] = {.lex_state = 6, .external_lex_state = 2}, - [101] = {.lex_state = 6, .external_lex_state = 3}, - [102] = {.lex_state = 6, .external_lex_state = 3}, - [103] = {.lex_state = 6, .external_lex_state = 2}, - [104] = {.lex_state = 6, .external_lex_state = 3}, - [105] = {.lex_state = 6, .external_lex_state = 2}, - [106] = {.lex_state = 6, .external_lex_state = 2}, - [107] = {.lex_state = 6, .external_lex_state = 2}, - [108] = {.lex_state = 6, .external_lex_state = 2}, - [109] = {.lex_state = 11}, - [110] = {.lex_state = 11}, - [111] = {.lex_state = 11}, - [112] = {.lex_state = 11}, - [113] = {.lex_state = 11}, - [114] = {.lex_state = 11}, - [115] = {.lex_state = 11}, - [116] = {.lex_state = 11}, - [117] = {.lex_state = 11}, - [118] = {.lex_state = 11}, - [119] = {.lex_state = 11}, - [120] = {.lex_state = 11}, - [121] = {.lex_state = 11}, - [122] = {.lex_state = 11}, - [123] = {.lex_state = 11}, - [124] = {.lex_state = 11}, - [125] = {.lex_state = 11}, - [126] = {.lex_state = 11}, - [127] = {.lex_state = 11}, - [128] = {.lex_state = 3, .external_lex_state = 2}, - [129] = {.lex_state = 11}, - [130] = {.lex_state = 11}, - [131] = {.lex_state = 11}, - [132] = {.lex_state = 11}, - [133] = {.lex_state = 11}, - [134] = {.lex_state = 11}, - [135] = {.lex_state = 11}, - [136] = {.lex_state = 11}, - [137] = {.lex_state = 11}, - [138] = {.lex_state = 3, .external_lex_state = 3}, - [139] = {.lex_state = 11}, - [140] = {.lex_state = 3, .external_lex_state = 3}, - [141] = {.lex_state = 11}, - [142] = {.lex_state = 11}, - [143] = {.lex_state = 11}, - [144] = {.lex_state = 11}, - [145] = {.lex_state = 11}, - [146] = {.lex_state = 3, .external_lex_state = 2}, - [147] = {.lex_state = 11}, - [148] = {.lex_state = 11}, - [149] = {.lex_state = 3, .external_lex_state = 2}, - [150] = {.lex_state = 11}, - [151] = {.lex_state = 6, .external_lex_state = 3}, - [152] = {.lex_state = 11}, - [153] = {.lex_state = 6, .external_lex_state = 3}, - [154] = {.lex_state = 6, .external_lex_state = 3}, - [155] = {.lex_state = 11}, - [156] = {.lex_state = 11}, - [157] = {.lex_state = 11}, - [158] = {.lex_state = 11}, - [159] = {.lex_state = 11}, - [160] = {.lex_state = 11}, - [161] = {.lex_state = 6, .external_lex_state = 3}, - [162] = {.lex_state = 6, .external_lex_state = 3}, - [163] = {.lex_state = 6, .external_lex_state = 3}, - [164] = {.lex_state = 6, .external_lex_state = 3}, - [165] = {.lex_state = 6, .external_lex_state = 3}, - [166] = {.lex_state = 6, .external_lex_state = 3}, - [167] = {.lex_state = 3, .external_lex_state = 2}, - [168] = {.lex_state = 6, .external_lex_state = 3}, - [169] = {.lex_state = 6, .external_lex_state = 3}, - [170] = {.lex_state = 6, .external_lex_state = 3}, - [171] = {.lex_state = 6, .external_lex_state = 3}, - [172] = {.lex_state = 3, .external_lex_state = 2}, - [173] = {.lex_state = 6, .external_lex_state = 3}, - [174] = {.lex_state = 6, .external_lex_state = 3}, - [175] = {.lex_state = 6, .external_lex_state = 3}, - [176] = {.lex_state = 6, .external_lex_state = 3}, - [177] = {.lex_state = 11, .external_lex_state = 4}, - [178] = {.lex_state = 6, .external_lex_state = 3}, - [179] = {.lex_state = 3, .external_lex_state = 3}, - [180] = {.lex_state = 6, .external_lex_state = 3}, - [181] = {.lex_state = 11}, - [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 = 6, .external_lex_state = 3}, - [187] = {.lex_state = 3, .external_lex_state = 2}, - [188] = {.lex_state = 6, .external_lex_state = 3}, - [189] = {.lex_state = 6, .external_lex_state = 3}, - [190] = {.lex_state = 6, .external_lex_state = 3}, - [191] = {.lex_state = 11}, - [192] = {.lex_state = 3, .external_lex_state = 2}, - [193] = {.lex_state = 11}, - [194] = {.lex_state = 11}, - [195] = {.lex_state = 3, .external_lex_state = 2}, - [196] = {.lex_state = 11}, - [197] = {.lex_state = 11}, - [198] = {.lex_state = 3, .external_lex_state = 2}, - [199] = {.lex_state = 3, .external_lex_state = 2}, - [200] = {.lex_state = 11}, - [201] = {.lex_state = 11}, - [202] = {.lex_state = 3, .external_lex_state = 2}, - [203] = {.lex_state = 11}, - [204] = {.lex_state = 11}, - [205] = {.lex_state = 4, .external_lex_state = 2}, - [206] = {.lex_state = 11}, - [207] = {.lex_state = 11}, - [208] = {.lex_state = 11}, - [209] = {.lex_state = 11}, - [210] = {.lex_state = 11}, - [211] = {.lex_state = 11}, - [212] = {.lex_state = 11}, - [213] = {.lex_state = 11}, - [214] = {.lex_state = 4, .external_lex_state = 2}, - [215] = {.lex_state = 11}, - [216] = {.lex_state = 11}, - [217] = {.lex_state = 4, .external_lex_state = 2}, - [218] = {.lex_state = 4, .external_lex_state = 2}, - [219] = {.lex_state = 11}, - [220] = {.lex_state = 11}, - [221] = {.lex_state = 11}, - [222] = {.lex_state = 11}, - [223] = {.lex_state = 11}, - [224] = {.lex_state = 11}, - [225] = {.lex_state = 11}, - [226] = {.lex_state = 11}, - [227] = {.lex_state = 11}, - [228] = {.lex_state = 11}, - [229] = {.lex_state = 11}, - [230] = {.lex_state = 11}, - [231] = {.lex_state = 11}, - [232] = {.lex_state = 11}, - [233] = {.lex_state = 11}, - [234] = {.lex_state = 11, .external_lex_state = 4}, - [235] = {.lex_state = 11}, - [236] = {.lex_state = 11}, - [237] = {.lex_state = 11}, - [238] = {.lex_state = 11, .external_lex_state = 4}, - [239] = {.lex_state = 11}, - [240] = {.lex_state = 11}, - [241] = {.lex_state = 11}, - [242] = {.lex_state = 11}, - [243] = {.lex_state = 11}, - [244] = {.lex_state = 11}, - [245] = {.lex_state = 11}, - [246] = {.lex_state = 11}, - [247] = {.lex_state = 11}, - [248] = {.lex_state = 11}, - [249] = {.lex_state = 11}, - [250] = {.lex_state = 11}, - [251] = {.lex_state = 11}, - [252] = {.lex_state = 11}, - [253] = {.lex_state = 11}, - [254] = {.lex_state = 11}, - [255] = {.lex_state = 11}, - [256] = {.lex_state = 11}, - [257] = {.lex_state = 11}, - [258] = {.lex_state = 11}, - [259] = {.lex_state = 11}, - [260] = {.lex_state = 11}, - [261] = {.lex_state = 11}, - [262] = {.lex_state = 11}, - [263] = {.lex_state = 11}, - [264] = {.lex_state = 11}, - [265] = {.lex_state = 11}, - [266] = {.lex_state = 11}, - [267] = {.lex_state = 11}, - [268] = {.lex_state = 11}, - [269] = {.lex_state = 11}, - [270] = {.lex_state = 11}, - [271] = {.lex_state = 11}, - [272] = {.lex_state = 11}, - [273] = {.lex_state = 11}, - [274] = {.lex_state = 11}, - [275] = {.lex_state = 11}, - [276] = {.lex_state = 11}, - [277] = {.lex_state = 11}, - [278] = {.lex_state = 11}, - [279] = {.lex_state = 11}, - [280] = {.lex_state = 11}, - [281] = {.lex_state = 11}, - [282] = {.lex_state = 11}, - [283] = {.lex_state = 11}, - [284] = {.lex_state = 11}, - [285] = {.lex_state = 11}, - [286] = {.lex_state = 11}, - [287] = {.lex_state = 11}, - [288] = {.lex_state = 11}, - [289] = {.lex_state = 11}, - [290] = {.lex_state = 11}, - [291] = {.lex_state = 11}, - [292] = {.lex_state = 11}, - [293] = {.lex_state = 11}, - [294] = {.lex_state = 11}, - [295] = {.lex_state = 11}, - [296] = {.lex_state = 11}, - [297] = {.lex_state = 11}, - [298] = {.lex_state = 11}, - [299] = {.lex_state = 11}, - [300] = {.lex_state = 11}, - [301] = {.lex_state = 11}, - [302] = {.lex_state = 11}, - [303] = {.lex_state = 11}, - [304] = {.lex_state = 11}, - [305] = {.lex_state = 11}, - [306] = {.lex_state = 11}, - [307] = {.lex_state = 11}, - [308] = {.lex_state = 11}, - [309] = {.lex_state = 11}, - [310] = {.lex_state = 11}, - [311] = {.lex_state = 11}, - [312] = {.lex_state = 11}, - [313] = {.lex_state = 11}, - [314] = {.lex_state = 11}, - [315] = {.lex_state = 11}, - [316] = {.lex_state = 11}, - [317] = {.lex_state = 11}, - [318] = {.lex_state = 11}, - [319] = {.lex_state = 11}, - [320] = {.lex_state = 11}, - [321] = {.lex_state = 11}, - [322] = {.lex_state = 11}, - [323] = {.lex_state = 11}, - [324] = {.lex_state = 11}, - [325] = {.lex_state = 11}, - [326] = {.lex_state = 11}, - [327] = {.lex_state = 11}, - [328] = {.lex_state = 11}, - [329] = {.lex_state = 11}, - [330] = {.lex_state = 11}, - [331] = {.lex_state = 11}, - [332] = {.lex_state = 11}, - [333] = {.lex_state = 11}, - [334] = {.lex_state = 11}, - [335] = {.lex_state = 11}, - [336] = {.lex_state = 11}, - [337] = {.lex_state = 11}, - [338] = {.lex_state = 11}, - [339] = {.lex_state = 11}, - [340] = {.lex_state = 11}, - [341] = {.lex_state = 11}, - [342] = {.lex_state = 11}, - [343] = {.lex_state = 11}, - [344] = {.lex_state = 11}, - [345] = {.lex_state = 11}, - [346] = {.lex_state = 11}, - [347] = {.lex_state = 11}, - [348] = {.lex_state = 11}, - [349] = {.lex_state = 11}, - [350] = {.lex_state = 11}, - [351] = {.lex_state = 11}, - [352] = {.lex_state = 11}, - [353] = {.lex_state = 11}, - [354] = {.lex_state = 11}, - [355] = {.lex_state = 11}, - [356] = {.lex_state = 11}, - [357] = {.lex_state = 11}, - [358] = {.lex_state = 11}, - [359] = {.lex_state = 11}, - [360] = {.lex_state = 11}, - [361] = {.lex_state = 11}, - [362] = {.lex_state = 11}, - [363] = {.lex_state = 11}, - [364] = {.lex_state = 11}, - [365] = {.lex_state = 11}, - [366] = {.lex_state = 11}, - [367] = {.lex_state = 11}, - [368] = {.lex_state = 11}, - [369] = {.lex_state = 11}, - [370] = {.lex_state = 11}, - [371] = {.lex_state = 11}, - [372] = {.lex_state = 11}, - [373] = {.lex_state = 11}, - [374] = {.lex_state = 11}, - [375] = {.lex_state = 11}, - [376] = {.lex_state = 11}, - [377] = {.lex_state = 11}, - [378] = {.lex_state = 11}, - [379] = {.lex_state = 11}, - [380] = {.lex_state = 11}, - [381] = {.lex_state = 11}, - [382] = {.lex_state = 11}, - [383] = {.lex_state = 11}, - [384] = {.lex_state = 11}, - [385] = {.lex_state = 11}, - [386] = {.lex_state = 11}, - [387] = {.lex_state = 11}, - [388] = {.lex_state = 11}, - [389] = {.lex_state = 11}, - [390] = {.lex_state = 11}, - [391] = {.lex_state = 11}, - [392] = {.lex_state = 11}, - [393] = {.lex_state = 11}, - [394] = {.lex_state = 11}, - [395] = {.lex_state = 11}, - [396] = {.lex_state = 11}, - [397] = {.lex_state = 11}, - [398] = {.lex_state = 11}, - [399] = {.lex_state = 11}, - [400] = {.lex_state = 11}, - [401] = {.lex_state = 11}, - [402] = {.lex_state = 11}, - [403] = {.lex_state = 11}, - [404] = {.lex_state = 11}, - [405] = {.lex_state = 11}, - [406] = {.lex_state = 11}, - [407] = {.lex_state = 11}, - [408] = {.lex_state = 11}, - [409] = {.lex_state = 11}, - [410] = {.lex_state = 11}, - [411] = {.lex_state = 11}, - [412] = {.lex_state = 11}, - [413] = {.lex_state = 11}, - [414] = {.lex_state = 11}, - [415] = {.lex_state = 11}, - [416] = {.lex_state = 11}, - [417] = {.lex_state = 11}, - [418] = {.lex_state = 11}, - [419] = {.lex_state = 11}, - [420] = {.lex_state = 11}, - [421] = {.lex_state = 11}, - [422] = {.lex_state = 11}, - [423] = {.lex_state = 11}, - [424] = {.lex_state = 11}, - [425] = {.lex_state = 11}, - [426] = {.lex_state = 11}, - [427] = {.lex_state = 11}, - [428] = {.lex_state = 11}, - [429] = {.lex_state = 11}, - [430] = {.lex_state = 11}, - [431] = {.lex_state = 11}, - [432] = {.lex_state = 11}, - [433] = {.lex_state = 11}, - [434] = {.lex_state = 11}, - [435] = {.lex_state = 11}, - [436] = {.lex_state = 11}, - [437] = {.lex_state = 11}, - [438] = {.lex_state = 11}, - [439] = {.lex_state = 11}, - [440] = {.lex_state = 11}, - [441] = {.lex_state = 11}, - [442] = {.lex_state = 11}, - [443] = {.lex_state = 11}, - [444] = {.lex_state = 11}, - [445] = {.lex_state = 11}, - [446] = {.lex_state = 11}, - [447] = {.lex_state = 11}, - [448] = {.lex_state = 11}, - [449] = {.lex_state = 11}, - [450] = {.lex_state = 11}, - [451] = {.lex_state = 11}, - [452] = {.lex_state = 11}, - [453] = {.lex_state = 11}, - [454] = {.lex_state = 11}, - [455] = {.lex_state = 11}, - [456] = {.lex_state = 11}, - [457] = {.lex_state = 11}, - [458] = {.lex_state = 11}, - [459] = {.lex_state = 11}, - [460] = {.lex_state = 11}, - [461] = {.lex_state = 11}, - [462] = {.lex_state = 11}, - [463] = {.lex_state = 11}, - [464] = {.lex_state = 11}, - [465] = {.lex_state = 11}, - [466] = {.lex_state = 11}, - [467] = {.lex_state = 11}, - [468] = {.lex_state = 11}, - [469] = {.lex_state = 11}, - [470] = {.lex_state = 11}, - [471] = {.lex_state = 11}, - [472] = {.lex_state = 11}, - [473] = {.lex_state = 11}, - [474] = {.lex_state = 11}, - [475] = {.lex_state = 11}, - [476] = {.lex_state = 11}, - [477] = {.lex_state = 11}, - [478] = {.lex_state = 11}, - [479] = {.lex_state = 11}, - [480] = {.lex_state = 11}, - [481] = {.lex_state = 11}, - [482] = {.lex_state = 11}, - [483] = {.lex_state = 11}, - [484] = {.lex_state = 11}, - [485] = {.lex_state = 11}, - [486] = {.lex_state = 11}, - [487] = {.lex_state = 11}, - [488] = {.lex_state = 11}, - [489] = {.lex_state = 11}, - [490] = {.lex_state = 11}, - [491] = {.lex_state = 11}, - [492] = {.lex_state = 11}, - [493] = {.lex_state = 11}, - [494] = {.lex_state = 11}, - [495] = {.lex_state = 11}, - [496] = {.lex_state = 11}, - [497] = {.lex_state = 11}, - [498] = {.lex_state = 11}, - [499] = {.lex_state = 11}, - [500] = {.lex_state = 11}, - [501] = {.lex_state = 11}, - [502] = {.lex_state = 11}, - [503] = {.lex_state = 11}, - [504] = {.lex_state = 11}, - [505] = {.lex_state = 11}, - [506] = {.lex_state = 11}, - [507] = {.lex_state = 11}, - [508] = {.lex_state = 11}, - [509] = {.lex_state = 11}, - [510] = {.lex_state = 11}, - [511] = {.lex_state = 11}, - [512] = {.lex_state = 11}, - [513] = {.lex_state = 11}, - [514] = {.lex_state = 11}, - [515] = {.lex_state = 11}, - [516] = {.lex_state = 11}, - [517] = {.lex_state = 11}, - [518] = {.lex_state = 11}, - [519] = {.lex_state = 11}, - [520] = {.lex_state = 11}, - [521] = {.lex_state = 11}, - [522] = {.lex_state = 11}, - [523] = {.lex_state = 11}, - [524] = {.lex_state = 11}, - [525] = {.lex_state = 11}, - [526] = {.lex_state = 11}, - [527] = {.lex_state = 11}, - [528] = {.lex_state = 11}, - [529] = {.lex_state = 11}, - [530] = {.lex_state = 11}, - [531] = {.lex_state = 11}, - [532] = {.lex_state = 11}, - [533] = {.lex_state = 11}, - [534] = {.lex_state = 11}, - [535] = {.lex_state = 11}, - [536] = {.lex_state = 11}, - [537] = {.lex_state = 11}, - [538] = {.lex_state = 11}, - [539] = {.lex_state = 11}, - [540] = {.lex_state = 11}, - [541] = {.lex_state = 11}, - [542] = {.lex_state = 11}, - [543] = {.lex_state = 11}, - [544] = {.lex_state = 11}, - [545] = {.lex_state = 11}, - [546] = {.lex_state = 11}, - [547] = {.lex_state = 11}, - [548] = {.lex_state = 11}, - [549] = {.lex_state = 11}, - [550] = {.lex_state = 11}, - [551] = {.lex_state = 11}, - [552] = {.lex_state = 11}, - [553] = {.lex_state = 11}, - [554] = {.lex_state = 11}, - [555] = {.lex_state = 11}, - [556] = {.lex_state = 11}, - [557] = {.lex_state = 11}, - [558] = {.lex_state = 11}, - [559] = {.lex_state = 11}, - [560] = {.lex_state = 11}, - [561] = {.lex_state = 11}, - [562] = {.lex_state = 11}, - [563] = {.lex_state = 11}, - [564] = {.lex_state = 11}, - [565] = {.lex_state = 11}, - [566] = {.lex_state = 11}, - [567] = {.lex_state = 11}, - [568] = {.lex_state = 11}, - [569] = {.lex_state = 11}, - [570] = {.lex_state = 11}, - [571] = {.lex_state = 11}, - [572] = {.lex_state = 11}, - [573] = {.lex_state = 11}, - [574] = {.lex_state = 11}, - [575] = {.lex_state = 11}, - [576] = {.lex_state = 11}, - [577] = {.lex_state = 11}, - [578] = {.lex_state = 11}, - [579] = {.lex_state = 11}, - [580] = {.lex_state = 11}, - [581] = {.lex_state = 11}, - [582] = {.lex_state = 11}, - [583] = {.lex_state = 11}, - [584] = {.lex_state = 11}, - [585] = {.lex_state = 11}, - [586] = {.lex_state = 11}, - [587] = {.lex_state = 3, .external_lex_state = 3}, - [588] = {.lex_state = 3, .external_lex_state = 3}, - [589] = {.lex_state = 3, .external_lex_state = 3}, - [590] = {.lex_state = 3, .external_lex_state = 3}, - [591] = {.lex_state = 5, .external_lex_state = 3}, - [592] = {.lex_state = 5, .external_lex_state = 3}, - [593] = {.lex_state = 5, .external_lex_state = 3}, - [594] = {.lex_state = 5, .external_lex_state = 3}, - [595] = {.lex_state = 3, .external_lex_state = 3}, - [596] = {.lex_state = 3, .external_lex_state = 3}, - [597] = {.lex_state = 3, .external_lex_state = 3}, - [598] = {.lex_state = 3, .external_lex_state = 3}, - [599] = {.lex_state = 3, .external_lex_state = 3}, - [600] = {.lex_state = 3, .external_lex_state = 3}, - [601] = {.lex_state = 3, .external_lex_state = 3}, - [602] = {.lex_state = 3, .external_lex_state = 3}, - [603] = {.lex_state = 3, .external_lex_state = 3}, - [604] = {.lex_state = 3, .external_lex_state = 3}, - [605] = {.lex_state = 3, .external_lex_state = 3}, - [606] = {.lex_state = 3, .external_lex_state = 3}, - [607] = {.lex_state = 5, .external_lex_state = 3}, - [608] = {.lex_state = 5, .external_lex_state = 3}, - [609] = {.lex_state = 5, .external_lex_state = 3}, - [610] = {.lex_state = 5, .external_lex_state = 3}, - [611] = {.lex_state = 5, .external_lex_state = 3}, - [612] = {.lex_state = 11}, - [613] = {.lex_state = 11}, - [614] = {.lex_state = 11}, - [615] = {.lex_state = 11}, - [616] = {.lex_state = 5, .external_lex_state = 3}, - [617] = {.lex_state = 11}, - [618] = {.lex_state = 5, .external_lex_state = 3}, - [619] = {.lex_state = 3, .external_lex_state = 3}, - [620] = {.lex_state = 3, .external_lex_state = 3}, - [621] = {.lex_state = 3, .external_lex_state = 3}, - [622] = {.lex_state = 3, .external_lex_state = 3}, - [623] = {.lex_state = 3, .external_lex_state = 3}, - [624] = {.lex_state = 3, .external_lex_state = 3}, - [625] = {.lex_state = 3, .external_lex_state = 3}, - [626] = {.lex_state = 3, .external_lex_state = 3}, - [627] = {.lex_state = 5, .external_lex_state = 3}, - [628] = {.lex_state = 5, .external_lex_state = 3}, - [629] = {.lex_state = 5, .external_lex_state = 2}, - [630] = {.lex_state = 5, .external_lex_state = 2}, - [631] = {.lex_state = 5, .external_lex_state = 3}, - [632] = {.lex_state = 5, .external_lex_state = 2}, - [633] = {.lex_state = 5, .external_lex_state = 3}, - [634] = {.lex_state = 5, .external_lex_state = 2}, - [635] = {.lex_state = 5, .external_lex_state = 3}, - [636] = {.lex_state = 5, .external_lex_state = 2}, - [637] = {.lex_state = 5, .external_lex_state = 3}, - [638] = {.lex_state = 5, .external_lex_state = 2}, - [639] = {.lex_state = 5, .external_lex_state = 3}, - [640] = {.lex_state = 5, .external_lex_state = 3}, - [641] = {.lex_state = 5, .external_lex_state = 3}, - [642] = {.lex_state = 5, .external_lex_state = 3}, - [643] = {.lex_state = 5, .external_lex_state = 3}, - [644] = {.lex_state = 5, .external_lex_state = 3}, - [645] = {.lex_state = 5, .external_lex_state = 3}, - [646] = {.lex_state = 5, .external_lex_state = 2}, - [647] = {.lex_state = 5, .external_lex_state = 3}, - [648] = {.lex_state = 5, .external_lex_state = 3}, - [649] = {.lex_state = 5, .external_lex_state = 2}, - [650] = {.lex_state = 5, .external_lex_state = 2}, - [651] = {.lex_state = 5, .external_lex_state = 3}, - [652] = {.lex_state = 5, .external_lex_state = 2}, - [653] = {.lex_state = 5, .external_lex_state = 3}, - [654] = {.lex_state = 5, .external_lex_state = 3}, - [655] = {.lex_state = 5, .external_lex_state = 3}, - [656] = {.lex_state = 5, .external_lex_state = 3}, - [657] = {.lex_state = 5, .external_lex_state = 2}, - [658] = {.lex_state = 5, .external_lex_state = 2}, - [659] = {.lex_state = 11}, - [660] = {.lex_state = 5, .external_lex_state = 3}, - [661] = {.lex_state = 5, .external_lex_state = 2}, - [662] = {.lex_state = 5, .external_lex_state = 3}, - [663] = {.lex_state = 5, .external_lex_state = 3}, - [664] = {.lex_state = 5, .external_lex_state = 2}, - [665] = {.lex_state = 5, .external_lex_state = 2}, - [666] = {.lex_state = 5, .external_lex_state = 2}, - [667] = {.lex_state = 11, .external_lex_state = 4}, - [668] = {.lex_state = 11, .external_lex_state = 4}, - [669] = {.lex_state = 11, .external_lex_state = 4}, - [670] = {.lex_state = 5, .external_lex_state = 2}, - [671] = {.lex_state = 11, .external_lex_state = 4}, - [672] = {.lex_state = 5, .external_lex_state = 2}, - [673] = {.lex_state = 5, .external_lex_state = 2}, - [674] = {.lex_state = 11}, - [675] = {.lex_state = 5, .external_lex_state = 2}, - [676] = {.lex_state = 11}, - [677] = {.lex_state = 11}, - [678] = {.lex_state = 11}, - [679] = {.lex_state = 5, .external_lex_state = 2}, - [680] = {.lex_state = 11}, - [681] = {.lex_state = 11, .external_lex_state = 4}, - [682] = {.lex_state = 11, .external_lex_state = 4}, - [683] = {.lex_state = 11, .external_lex_state = 4}, - [684] = {.lex_state = 11, .external_lex_state = 4}, - [685] = {.lex_state = 11}, - [686] = {.lex_state = 11, .external_lex_state = 4}, - [687] = {.lex_state = 11, .external_lex_state = 4}, - [688] = {.lex_state = 11, .external_lex_state = 4}, - [689] = {.lex_state = 11}, - [690] = {.lex_state = 11}, - [691] = {.lex_state = 11, .external_lex_state = 4}, - [692] = {.lex_state = 11}, - [693] = {.lex_state = 11}, - [694] = {.lex_state = 11, .external_lex_state = 4}, - [695] = {.lex_state = 11, .external_lex_state = 4}, - [696] = {.lex_state = 11, .external_lex_state = 4}, - [697] = {.lex_state = 11, .external_lex_state = 4}, - [698] = {.lex_state = 11}, - [699] = {.lex_state = 11, .external_lex_state = 4}, - [700] = {.lex_state = 11, .external_lex_state = 4}, - [701] = {.lex_state = 11}, - [702] = {.lex_state = 11, .external_lex_state = 4}, - [703] = {.lex_state = 11, .external_lex_state = 4}, - [704] = {.lex_state = 11}, - [705] = {.lex_state = 11}, - [706] = {.lex_state = 11}, - [707] = {.lex_state = 11}, - [708] = {.lex_state = 11}, - [709] = {.lex_state = 11}, - [710] = {.lex_state = 11}, - [711] = {.lex_state = 11}, - [712] = {.lex_state = 11}, - [713] = {.lex_state = 11}, - [714] = {.lex_state = 11}, - [715] = {.lex_state = 11}, - [716] = {.lex_state = 11}, - [717] = {.lex_state = 11}, - [718] = {.lex_state = 11}, - [719] = {.lex_state = 11}, - [720] = {.lex_state = 11}, - [721] = {.lex_state = 11}, - [722] = {.lex_state = 11}, - [723] = {.lex_state = 11}, - [724] = {.lex_state = 11}, - [725] = {.lex_state = 11}, - [726] = {.lex_state = 11}, - [727] = {.lex_state = 11}, - [728] = {.lex_state = 11}, - [729] = {.lex_state = 11}, - [730] = {.lex_state = 11}, - [731] = {.lex_state = 11}, - [732] = {.lex_state = 11}, - [733] = {.lex_state = 11}, - [734] = {.lex_state = 11}, - [735] = {.lex_state = 11}, - [736] = {.lex_state = 11}, - [737] = {.lex_state = 11}, - [738] = {.lex_state = 11}, - [739] = {.lex_state = 11}, - [740] = {.lex_state = 11}, - [741] = {.lex_state = 11}, - [742] = {.lex_state = 11}, - [743] = {.lex_state = 11}, - [744] = {.lex_state = 11}, - [745] = {.lex_state = 11}, - [746] = {.lex_state = 11}, - [747] = {.lex_state = 11}, - [748] = {.lex_state = 11}, - [749] = {.lex_state = 11}, - [750] = {.lex_state = 11}, - [751] = {.lex_state = 11}, - [752] = {.lex_state = 11}, - [753] = {.lex_state = 11}, - [754] = {.lex_state = 11}, - [755] = {.lex_state = 11}, - [756] = {.lex_state = 11}, - [757] = {.lex_state = 11}, - [758] = {.lex_state = 11}, - [759] = {.lex_state = 11}, - [760] = {.lex_state = 11}, - [761] = {.lex_state = 11}, - [762] = {.lex_state = 11}, - [763] = {.lex_state = 11}, - [764] = {.lex_state = 11}, - [765] = {.lex_state = 11}, - [766] = {.lex_state = 11}, - [767] = {.lex_state = 11}, - [768] = {.lex_state = 11}, - [769] = {.lex_state = 11}, - [770] = {.lex_state = 11}, - [771] = {.lex_state = 11}, - [772] = {.lex_state = 11}, - [773] = {.lex_state = 11}, - [774] = {.lex_state = 11}, - [775] = {.lex_state = 11}, - [776] = {.lex_state = 11}, - [777] = {.lex_state = 11}, - [778] = {.lex_state = 11}, - [779] = {.lex_state = 11}, - [780] = {.lex_state = 11}, - [781] = {.lex_state = 11}, - [782] = {.lex_state = 11}, - [783] = {.lex_state = 11}, - [784] = {.lex_state = 11}, - [785] = {.lex_state = 11}, - [786] = {.lex_state = 11}, - [787] = {.lex_state = 11}, - [788] = {.lex_state = 11}, - [789] = {.lex_state = 11}, - [790] = {.lex_state = 11}, - [791] = {.lex_state = 11}, - [792] = {.lex_state = 11}, - [793] = {.lex_state = 11}, - [794] = {.lex_state = 11}, - [795] = {.lex_state = 11}, - [796] = {.lex_state = 11}, - [797] = {.lex_state = 11}, - [798] = {.lex_state = 11}, - [799] = {.lex_state = 11}, - [800] = {.lex_state = 11}, - [801] = {.lex_state = 11}, - [802] = {.lex_state = 11}, - [803] = {.lex_state = 11}, - [804] = {.lex_state = 11}, - [805] = {.lex_state = 11}, - [806] = {.lex_state = 11}, - [807] = {.lex_state = 11}, - [808] = {.lex_state = 11}, - [809] = {.lex_state = 11}, - [810] = {.lex_state = 11}, - [811] = {.lex_state = 11}, - [812] = {.lex_state = 11}, - [813] = {.lex_state = 11}, - [814] = {.lex_state = 11}, - [815] = {.lex_state = 11}, - [816] = {.lex_state = 11}, - [817] = {.lex_state = 11}, - [818] = {.lex_state = 11}, - [819] = {.lex_state = 11}, - [820] = {.lex_state = 11}, - [821] = {.lex_state = 11}, - [822] = {.lex_state = 11}, - [823] = {.lex_state = 11}, - [824] = {.lex_state = 11}, - [825] = {.lex_state = 11}, - [826] = {.lex_state = 11}, - [827] = {.lex_state = 11}, - [828] = {.lex_state = 11}, - [829] = {.lex_state = 11}, - [830] = {.lex_state = 11}, - [831] = {.lex_state = 11}, - [832] = {.lex_state = 11}, - [833] = {.lex_state = 11}, - [834] = {.lex_state = 11}, - [835] = {.lex_state = 11}, - [836] = {.lex_state = 11}, - [837] = {.lex_state = 11}, - [838] = {.lex_state = 11}, - [839] = {.lex_state = 11}, - [840] = {.lex_state = 11}, - [841] = {.lex_state = 11}, - [842] = {.lex_state = 11}, - [843] = {.lex_state = 11}, - [844] = {.lex_state = 11}, - [845] = {.lex_state = 11}, - [846] = {.lex_state = 11}, - [847] = {.lex_state = 11}, - [848] = {.lex_state = 11}, - [849] = {.lex_state = 11}, - [850] = {.lex_state = 11}, - [851] = {.lex_state = 11}, - [852] = {.lex_state = 11}, - [853] = {.lex_state = 11}, - [854] = {.lex_state = 11}, - [855] = {.lex_state = 11}, - [856] = {.lex_state = 11}, - [857] = {.lex_state = 11}, - [858] = {.lex_state = 11}, - [859] = {.lex_state = 11}, - [860] = {.lex_state = 11}, - [861] = {.lex_state = 11}, - [862] = {.lex_state = 11}, - [863] = {.lex_state = 11}, - [864] = {.lex_state = 11}, - [865] = {.lex_state = 7, .external_lex_state = 3}, - [866] = {.lex_state = 7, .external_lex_state = 3}, - [867] = {.lex_state = 7, .external_lex_state = 3}, - [868] = {.lex_state = 7, .external_lex_state = 3}, - [869] = {.lex_state = 7, .external_lex_state = 3}, - [870] = {.lex_state = 7, .external_lex_state = 3}, - [871] = {.lex_state = 7, .external_lex_state = 3}, - [872] = {.lex_state = 7, .external_lex_state = 3}, - [873] = {.lex_state = 7, .external_lex_state = 3}, - [874] = {.lex_state = 7, .external_lex_state = 3}, - [875] = {.lex_state = 7, .external_lex_state = 3}, - [876] = {.lex_state = 7, .external_lex_state = 3}, - [877] = {.lex_state = 7, .external_lex_state = 3}, - [878] = {.lex_state = 7, .external_lex_state = 3}, - [879] = {.lex_state = 13}, - [880] = {.lex_state = 7, .external_lex_state = 3}, - [881] = {.lex_state = 7, .external_lex_state = 3}, - [882] = {.lex_state = 7, .external_lex_state = 3}, - [883] = {.lex_state = 7, .external_lex_state = 3}, - [884] = {.lex_state = 13}, - [885] = {.lex_state = 7, .external_lex_state = 3}, - [886] = {.lex_state = 7, .external_lex_state = 3}, - [887] = {.lex_state = 7, .external_lex_state = 3}, - [888] = {.lex_state = 7, .external_lex_state = 3}, - [889] = {.lex_state = 13}, - [890] = {.lex_state = 7, .external_lex_state = 3}, - [891] = {.lex_state = 7, .external_lex_state = 3}, - [892] = {.lex_state = 7, .external_lex_state = 3}, - [893] = {.lex_state = 13}, - [894] = {.lex_state = 7, .external_lex_state = 3}, - [895] = {.lex_state = 13}, - [896] = {.lex_state = 7, .external_lex_state = 3}, - [897] = {.lex_state = 13}, - [898] = {.lex_state = 11}, - [899] = {.lex_state = 12}, - [900] = {.lex_state = 12}, - [901] = {.lex_state = 12}, - [902] = {.lex_state = 12}, - [903] = {.lex_state = 13}, - [904] = {.lex_state = 13}, - [905] = {.lex_state = 13}, - [906] = {.lex_state = 13}, - [907] = {.lex_state = 13}, - [908] = {.lex_state = 13}, - [909] = {.lex_state = 12}, - [910] = {.lex_state = 12}, - [911] = {.lex_state = 12}, - [912] = {.lex_state = 12}, - [913] = {.lex_state = 13}, - [914] = {.lex_state = 11}, - [915] = {.lex_state = 11}, - [916] = {.lex_state = 13}, - [917] = {.lex_state = 12}, - [918] = {.lex_state = 12}, - [919] = {.lex_state = 12}, - [920] = {.lex_state = 12}, - [921] = {.lex_state = 12}, - [922] = {.lex_state = 13}, - [923] = {.lex_state = 13}, - [924] = {.lex_state = 12}, - [925] = {.lex_state = 12}, - [926] = {.lex_state = 5, .external_lex_state = 3}, - [927] = {.lex_state = 5, .external_lex_state = 3}, - [928] = {.lex_state = 5, .external_lex_state = 3}, - [929] = {.lex_state = 5, .external_lex_state = 3}, - [930] = {.lex_state = 5, .external_lex_state = 3}, - [931] = {.lex_state = 5, .external_lex_state = 3}, - [932] = {.lex_state = 5, .external_lex_state = 3}, - [933] = {.lex_state = 5, .external_lex_state = 3}, - [934] = {.lex_state = 13}, - [935] = {.lex_state = 13}, - [936] = {.lex_state = 13}, - [937] = {.lex_state = 13}, - [938] = {.lex_state = 13}, - [939] = {.lex_state = 13}, - [940] = {.lex_state = 13}, - [941] = {.lex_state = 13}, - [942] = {.lex_state = 13}, - [943] = {.lex_state = 13}, - [944] = {.lex_state = 5, .external_lex_state = 2}, - [945] = {.lex_state = 13}, - [946] = {.lex_state = 13}, - [947] = {.lex_state = 13}, - [948] = {.lex_state = 13}, - [949] = {.lex_state = 13}, - [950] = {.lex_state = 13}, - [951] = {.lex_state = 13}, - [952] = {.lex_state = 13}, - [953] = {.lex_state = 13}, - [954] = {.lex_state = 13}, - [955] = {.lex_state = 5, .external_lex_state = 2}, - [956] = {.lex_state = 5, .external_lex_state = 2}, - [957] = {.lex_state = 13}, - [958] = {.lex_state = 13}, - [959] = {.lex_state = 13}, - [960] = {.lex_state = 13}, - [961] = {.lex_state = 13}, - [962] = {.lex_state = 13}, - [963] = {.lex_state = 13}, - [964] = {.lex_state = 13}, - [965] = {.lex_state = 13}, - [966] = {.lex_state = 13}, - [967] = {.lex_state = 13}, - [968] = {.lex_state = 13}, - [969] = {.lex_state = 13}, - [970] = {.lex_state = 13}, - [971] = {.lex_state = 13}, - [972] = {.lex_state = 5, .external_lex_state = 3}, - [973] = {.lex_state = 13}, - [974] = {.lex_state = 13}, - [975] = {.lex_state = 13}, - [976] = {.lex_state = 13}, - [977] = {.lex_state = 13}, - [978] = {.lex_state = 13}, - [979] = {.lex_state = 13}, - [980] = {.lex_state = 13}, - [981] = {.lex_state = 13}, - [982] = {.lex_state = 13}, - [983] = {.lex_state = 13}, - [984] = {.lex_state = 13}, - [985] = {.lex_state = 13}, - [986] = {.lex_state = 13}, - [987] = {.lex_state = 13}, - [988] = {.lex_state = 13}, - [989] = {.lex_state = 13}, - [990] = {.lex_state = 13}, - [991] = {.lex_state = 13}, - [992] = {.lex_state = 13}, - [993] = {.lex_state = 13}, - [994] = {.lex_state = 13}, - [995] = {.lex_state = 13}, - [996] = {.lex_state = 13}, - [997] = {.lex_state = 13}, - [998] = {.lex_state = 13}, - [999] = {.lex_state = 13}, - [1000] = {.lex_state = 13}, - [1001] = {.lex_state = 13}, - [1002] = {.lex_state = 13}, - [1003] = {.lex_state = 13}, - [1004] = {.lex_state = 13}, - [1005] = {.lex_state = 13}, - [1006] = {.lex_state = 13}, - [1007] = {.lex_state = 13}, - [1008] = {.lex_state = 13}, - [1009] = {.lex_state = 13}, - [1010] = {.lex_state = 13}, - [1011] = {.lex_state = 13}, - [1012] = {.lex_state = 13}, - [1013] = {.lex_state = 13}, - [1014] = {.lex_state = 13}, - [1015] = {.lex_state = 13}, - [1016] = {.lex_state = 13}, - [1017] = {.lex_state = 13}, - [1018] = {.lex_state = 13}, - [1019] = {.lex_state = 13}, - [1020] = {.lex_state = 13}, - [1021] = {.lex_state = 13}, - [1022] = {.lex_state = 13}, - [1023] = {.lex_state = 13}, - [1024] = {.lex_state = 13}, - [1025] = {.lex_state = 13}, - [1026] = {.lex_state = 13}, - [1027] = {.lex_state = 13}, - [1028] = {.lex_state = 13}, - [1029] = {.lex_state = 13}, - [1030] = {.lex_state = 13}, - [1031] = {.lex_state = 13}, - [1032] = {.lex_state = 13}, - [1033] = {.lex_state = 13}, - [1034] = {.lex_state = 13}, - [1035] = {.lex_state = 13}, - [1036] = {.lex_state = 13}, - [1037] = {.lex_state = 13}, - [1038] = {.lex_state = 13}, - [1039] = {.lex_state = 13}, - [1040] = {.lex_state = 13}, - [1041] = {.lex_state = 13}, - [1042] = {.lex_state = 13}, - [1043] = {.lex_state = 13}, - [1044] = {.lex_state = 13}, - [1045] = {.lex_state = 13}, - [1046] = {.lex_state = 13}, - [1047] = {.lex_state = 13}, - [1048] = {.lex_state = 13}, - [1049] = {.lex_state = 5, .external_lex_state = 3}, - [1050] = {.lex_state = 13}, - [1051] = {.lex_state = 13}, - [1052] = {.lex_state = 13}, - [1053] = {.lex_state = 13}, - [1054] = {.lex_state = 13}, - [1055] = {.lex_state = 13}, - [1056] = {.lex_state = 13}, - [1057] = {.lex_state = 13}, - [1058] = {.lex_state = 13}, - [1059] = {.lex_state = 13}, - [1060] = {.lex_state = 13}, - [1061] = {.lex_state = 13}, - [1062] = {.lex_state = 13}, - [1063] = {.lex_state = 13}, - [1064] = {.lex_state = 13}, - [1065] = {.lex_state = 13}, - [1066] = {.lex_state = 13}, - [1067] = {.lex_state = 13}, - [1068] = {.lex_state = 13}, - [1069] = {.lex_state = 13}, - [1070] = {.lex_state = 13}, - [1071] = {.lex_state = 13}, - [1072] = {.lex_state = 13}, - [1073] = {.lex_state = 13}, - [1074] = {.lex_state = 5, .external_lex_state = 2}, - [1075] = {.lex_state = 13}, - [1076] = {.lex_state = 13}, - [1077] = {.lex_state = 13}, - [1078] = {.lex_state = 5, .external_lex_state = 2}, - [1079] = {.lex_state = 13}, - [1080] = {.lex_state = 13}, - [1081] = {.lex_state = 13}, - [1082] = {.lex_state = 13}, - [1083] = {.lex_state = 13}, - [1084] = {.lex_state = 13}, - [1085] = {.lex_state = 13}, - [1086] = {.lex_state = 13}, - [1087] = {.lex_state = 13}, - [1088] = {.lex_state = 13}, - [1089] = {.lex_state = 13}, - [1090] = {.lex_state = 13}, - [1091] = {.lex_state = 13}, - [1092] = {.lex_state = 13}, - [1093] = {.lex_state = 13}, - [1094] = {.lex_state = 13}, - [1095] = {.lex_state = 13}, - [1096] = {.lex_state = 13}, - [1097] = {.lex_state = 13}, - [1098] = {.lex_state = 13}, - [1099] = {.lex_state = 13}, - [1100] = {.lex_state = 13}, - [1101] = {.lex_state = 13}, - [1102] = {.lex_state = 13}, - [1103] = {.lex_state = 13}, - [1104] = {.lex_state = 13}, - [1105] = {.lex_state = 13}, - [1106] = {.lex_state = 5, .external_lex_state = 3}, - [1107] = {.lex_state = 5, .external_lex_state = 3}, - [1108] = {.lex_state = 5, .external_lex_state = 3}, - [1109] = {.lex_state = 5, .external_lex_state = 3}, - [1110] = {.lex_state = 5, .external_lex_state = 2}, - [1111] = {.lex_state = 5, .external_lex_state = 3}, - [1112] = {.lex_state = 5, .external_lex_state = 3}, - [1113] = {.lex_state = 5, .external_lex_state = 3}, - [1114] = {.lex_state = 5, .external_lex_state = 3}, - [1115] = {.lex_state = 5, .external_lex_state = 3}, - [1116] = {.lex_state = 5, .external_lex_state = 3}, - [1117] = {.lex_state = 5, .external_lex_state = 2}, - [1118] = {.lex_state = 5, .external_lex_state = 3}, - [1119] = {.lex_state = 5, .external_lex_state = 3}, - [1120] = {.lex_state = 11}, - [1121] = {.lex_state = 11}, - [1122] = {.lex_state = 5, .external_lex_state = 3}, - [1123] = {.lex_state = 5, .external_lex_state = 2}, - [1124] = {.lex_state = 5, .external_lex_state = 3}, - [1125] = {.lex_state = 5, .external_lex_state = 3}, - [1126] = {.lex_state = 5, .external_lex_state = 2}, - [1127] = {.lex_state = 11}, - [1128] = {.lex_state = 5, .external_lex_state = 2}, - [1129] = {.lex_state = 5, .external_lex_state = 2}, - [1130] = {.lex_state = 11}, - [1131] = {.lex_state = 5, .external_lex_state = 2}, - [1132] = {.lex_state = 5, .external_lex_state = 3}, - [1133] = {.lex_state = 11}, - [1134] = {.lex_state = 5, .external_lex_state = 3}, - [1135] = {.lex_state = 5, .external_lex_state = 2}, - [1136] = {.lex_state = 11}, - [1137] = {.lex_state = 5, .external_lex_state = 3}, - [1138] = {.lex_state = 5, .external_lex_state = 2}, - [1139] = {.lex_state = 5, .external_lex_state = 2}, - [1140] = {.lex_state = 5, .external_lex_state = 2}, - [1141] = {.lex_state = 11}, - [1142] = {.lex_state = 5, .external_lex_state = 2}, - [1143] = {.lex_state = 5, .external_lex_state = 3}, - [1144] = {.lex_state = 5, .external_lex_state = 2}, - [1145] = {.lex_state = 5, .external_lex_state = 2}, - [1146] = {.lex_state = 5, .external_lex_state = 3}, - [1147] = {.lex_state = 5, .external_lex_state = 3}, - [1148] = {.lex_state = 5, .external_lex_state = 3}, - [1149] = {.lex_state = 5, .external_lex_state = 3}, - [1150] = {.lex_state = 11}, - [1151] = {.lex_state = 5, .external_lex_state = 3}, - [1152] = {.lex_state = 5, .external_lex_state = 3}, - [1153] = {.lex_state = 5, .external_lex_state = 3}, - [1154] = {.lex_state = 11}, - [1155] = {.lex_state = 5, .external_lex_state = 3}, - [1156] = {.lex_state = 11}, - [1157] = {.lex_state = 5, .external_lex_state = 3}, - [1158] = {.lex_state = 5, .external_lex_state = 3}, - [1159] = {.lex_state = 5, .external_lex_state = 3}, - [1160] = {.lex_state = 5, .external_lex_state = 2}, - [1161] = {.lex_state = 5, .external_lex_state = 3}, - [1162] = {.lex_state = 5, .external_lex_state = 2}, - [1163] = {.lex_state = 5, .external_lex_state = 2}, - [1164] = {.lex_state = 5, .external_lex_state = 2}, - [1165] = {.lex_state = 5, .external_lex_state = 2}, - [1166] = {.lex_state = 5, .external_lex_state = 2}, - [1167] = {.lex_state = 5, .external_lex_state = 2}, - [1168] = {.lex_state = 5, .external_lex_state = 2}, - [1169] = {.lex_state = 5, .external_lex_state = 2}, - [1170] = {.lex_state = 5, .external_lex_state = 2}, - [1171] = {.lex_state = 5, .external_lex_state = 3}, - [1172] = {.lex_state = 5, .external_lex_state = 3}, - [1173] = {.lex_state = 5, .external_lex_state = 2}, - [1174] = {.lex_state = 5, .external_lex_state = 2}, - [1175] = {.lex_state = 5, .external_lex_state = 2}, - [1176] = {.lex_state = 5, .external_lex_state = 2}, - [1177] = {.lex_state = 5, .external_lex_state = 2}, - [1178] = {.lex_state = 13}, - [1179] = {.lex_state = 5, .external_lex_state = 2}, - [1180] = {.lex_state = 5, .external_lex_state = 2}, - [1181] = {.lex_state = 13}, - [1182] = {.lex_state = 5, .external_lex_state = 2}, - [1183] = {.lex_state = 5, .external_lex_state = 2}, - [1184] = {.lex_state = 5, .external_lex_state = 2}, - [1185] = {.lex_state = 5, .external_lex_state = 2}, - [1186] = {.lex_state = 13}, - [1187] = {.lex_state = 5, .external_lex_state = 3}, - [1188] = {.lex_state = 13}, - [1189] = {.lex_state = 5, .external_lex_state = 2}, - [1190] = {.lex_state = 13}, - [1191] = {.lex_state = 5, .external_lex_state = 2}, - [1192] = {.lex_state = 5, .external_lex_state = 3}, - [1193] = {.lex_state = 5, .external_lex_state = 2}, - [1194] = {.lex_state = 5, .external_lex_state = 3}, - [1195] = {.lex_state = 13}, - [1196] = {.lex_state = 5, .external_lex_state = 2}, - [1197] = {.lex_state = 5, .external_lex_state = 3}, - [1198] = {.lex_state = 13}, - [1199] = {.lex_state = 5, .external_lex_state = 3}, - [1200] = {.lex_state = 5, .external_lex_state = 3}, - [1201] = {.lex_state = 5, .external_lex_state = 2}, - [1202] = {.lex_state = 5, .external_lex_state = 3}, - [1203] = {.lex_state = 5, .external_lex_state = 2}, - [1204] = {.lex_state = 5, .external_lex_state = 3}, - [1205] = {.lex_state = 5, .external_lex_state = 2}, - [1206] = {.lex_state = 5, .external_lex_state = 3}, - [1207] = {.lex_state = 5, .external_lex_state = 3}, - [1208] = {.lex_state = 5, .external_lex_state = 2}, - [1209] = {.lex_state = 5, .external_lex_state = 3}, - [1210] = {.lex_state = 5, .external_lex_state = 2}, - [1211] = {.lex_state = 5, .external_lex_state = 2}, - [1212] = {.lex_state = 5, .external_lex_state = 3}, - [1213] = {.lex_state = 5, .external_lex_state = 3}, - [1214] = {.lex_state = 5, .external_lex_state = 2}, - [1215] = {.lex_state = 5, .external_lex_state = 2}, - [1216] = {.lex_state = 5, .external_lex_state = 2}, - [1217] = {.lex_state = 5, .external_lex_state = 2}, - [1218] = {.lex_state = 5, .external_lex_state = 3}, - [1219] = {.lex_state = 5, .external_lex_state = 2}, - [1220] = {.lex_state = 5, .external_lex_state = 2}, - [1221] = {.lex_state = 5, .external_lex_state = 2}, - [1222] = {.lex_state = 5, .external_lex_state = 3}, - [1223] = {.lex_state = 5, .external_lex_state = 3}, - [1224] = {.lex_state = 5, .external_lex_state = 2}, - [1225] = {.lex_state = 13}, - [1226] = {.lex_state = 5, .external_lex_state = 3}, - [1227] = {.lex_state = 5, .external_lex_state = 2}, - [1228] = {.lex_state = 13}, - [1229] = {.lex_state = 5, .external_lex_state = 2}, - [1230] = {.lex_state = 13}, - [1231] = {.lex_state = 13}, - [1232] = {.lex_state = 5, .external_lex_state = 2}, - [1233] = {.lex_state = 5, .external_lex_state = 2}, - [1234] = {.lex_state = 5, .external_lex_state = 3}, - [1235] = {.lex_state = 5, .external_lex_state = 2}, - [1236] = {.lex_state = 5, .external_lex_state = 2}, - [1237] = {.lex_state = 13}, - [1238] = {.lex_state = 5, .external_lex_state = 2}, - [1239] = {.lex_state = 5, .external_lex_state = 2}, - [1240] = {.lex_state = 5, .external_lex_state = 2}, - [1241] = {.lex_state = 5, .external_lex_state = 3}, - [1242] = {.lex_state = 13}, - [1243] = {.lex_state = 5, .external_lex_state = 3}, - [1244] = {.lex_state = 13}, - [1245] = {.lex_state = 5, .external_lex_state = 2}, - [1246] = {.lex_state = 5, .external_lex_state = 2}, - [1247] = {.lex_state = 5, .external_lex_state = 3}, - [1248] = {.lex_state = 5, .external_lex_state = 2}, - [1249] = {.lex_state = 13}, - [1250] = {.lex_state = 13}, - [1251] = {.lex_state = 13}, - [1252] = {.lex_state = 5, .external_lex_state = 2}, - [1253] = {.lex_state = 13}, - [1254] = {.lex_state = 5, .external_lex_state = 3}, - [1255] = {.lex_state = 5, .external_lex_state = 3}, - [1256] = {.lex_state = 13}, - [1257] = {.lex_state = 5, .external_lex_state = 3}, - [1258] = {.lex_state = 5, .external_lex_state = 3}, - [1259] = {.lex_state = 13}, - [1260] = {.lex_state = 5, .external_lex_state = 2}, - [1261] = {.lex_state = 5, .external_lex_state = 3}, - [1262] = {.lex_state = 13}, - [1263] = {.lex_state = 5, .external_lex_state = 3}, - [1264] = {.lex_state = 5, .external_lex_state = 3}, - [1265] = {.lex_state = 5, .external_lex_state = 3}, - [1266] = {.lex_state = 5, .external_lex_state = 3}, - [1267] = {.lex_state = 5, .external_lex_state = 2}, - [1268] = {.lex_state = 13}, - [1269] = {.lex_state = 5, .external_lex_state = 3}, - [1270] = {.lex_state = 5, .external_lex_state = 3}, - [1271] = {.lex_state = 13}, - [1272] = {.lex_state = 13}, - [1273] = {.lex_state = 5, .external_lex_state = 3}, - [1274] = {.lex_state = 5, .external_lex_state = 3}, - [1275] = {.lex_state = 5, .external_lex_state = 3}, - [1276] = {.lex_state = 5, .external_lex_state = 2}, - [1277] = {.lex_state = 5, .external_lex_state = 3}, - [1278] = {.lex_state = 5, .external_lex_state = 3}, - [1279] = {.lex_state = 5, .external_lex_state = 3}, - [1280] = {.lex_state = 5, .external_lex_state = 3}, - [1281] = {.lex_state = 13}, - [1282] = {.lex_state = 13}, - [1283] = {.lex_state = 13}, - [1284] = {.lex_state = 5, .external_lex_state = 3}, - [1285] = {.lex_state = 5, .external_lex_state = 3}, - [1286] = {.lex_state = 5, .external_lex_state = 3}, - [1287] = {.lex_state = 5, .external_lex_state = 3}, - [1288] = {.lex_state = 13}, - [1289] = {.lex_state = 5, .external_lex_state = 2}, - [1290] = {.lex_state = 5, .external_lex_state = 2}, - [1291] = {.lex_state = 5, .external_lex_state = 2}, - [1292] = {.lex_state = 5, .external_lex_state = 3}, - [1293] = {.lex_state = 5, .external_lex_state = 3}, - [1294] = {.lex_state = 5, .external_lex_state = 2}, - [1295] = {.lex_state = 5, .external_lex_state = 3}, - [1296] = {.lex_state = 5, .external_lex_state = 3}, - [1297] = {.lex_state = 5, .external_lex_state = 2}, - [1298] = {.lex_state = 5, .external_lex_state = 2}, - [1299] = {.lex_state = 5, .external_lex_state = 2}, - [1300] = {.lex_state = 5, .external_lex_state = 2}, - [1301] = {.lex_state = 5, .external_lex_state = 2}, - [1302] = {.lex_state = 5, .external_lex_state = 2}, - [1303] = {.lex_state = 5, .external_lex_state = 3}, - [1304] = {.lex_state = 5, .external_lex_state = 2}, - [1305] = {.lex_state = 5, .external_lex_state = 2}, - [1306] = {.lex_state = 5, .external_lex_state = 2}, - [1307] = {.lex_state = 5, .external_lex_state = 2}, - [1308] = {.lex_state = 5, .external_lex_state = 3}, - [1309] = {.lex_state = 5, .external_lex_state = 2}, - [1310] = {.lex_state = 5, .external_lex_state = 3}, - [1311] = {.lex_state = 13}, - [1312] = {.lex_state = 5, .external_lex_state = 2}, - [1313] = {.lex_state = 5, .external_lex_state = 2}, - [1314] = {.lex_state = 13}, - [1315] = {.lex_state = 5, .external_lex_state = 2}, - [1316] = {.lex_state = 5, .external_lex_state = 2}, - [1317] = {.lex_state = 13}, - [1318] = {.lex_state = 5, .external_lex_state = 3}, - [1319] = {.lex_state = 13}, - [1320] = {.lex_state = 13}, - [1321] = {.lex_state = 5, .external_lex_state = 3}, - [1322] = {.lex_state = 5, .external_lex_state = 2}, - [1323] = {.lex_state = 5, .external_lex_state = 2}, - [1324] = {.lex_state = 13}, - [1325] = {.lex_state = 5, .external_lex_state = 2}, - [1326] = {.lex_state = 13}, - [1327] = {.lex_state = 5, .external_lex_state = 2}, - [1328] = {.lex_state = 13}, - [1329] = {.lex_state = 5, .external_lex_state = 3}, - [1330] = {.lex_state = 5, .external_lex_state = 2}, - [1331] = {.lex_state = 5, .external_lex_state = 2}, - [1332] = {.lex_state = 5, .external_lex_state = 2}, - [1333] = {.lex_state = 5, .external_lex_state = 2}, - [1334] = {.lex_state = 5, .external_lex_state = 2}, - [1335] = {.lex_state = 5, .external_lex_state = 3}, - [1336] = {.lex_state = 5, .external_lex_state = 2}, - [1337] = {.lex_state = 5, .external_lex_state = 2}, - [1338] = {.lex_state = 5, .external_lex_state = 2}, - [1339] = {.lex_state = 5, .external_lex_state = 2}, - [1340] = {.lex_state = 5, .external_lex_state = 2}, - [1341] = {.lex_state = 5, .external_lex_state = 2}, - [1342] = {.lex_state = 5, .external_lex_state = 2}, - [1343] = {.lex_state = 5, .external_lex_state = 2}, - [1344] = {.lex_state = 5, .external_lex_state = 2}, - [1345] = {.lex_state = 5, .external_lex_state = 2}, - [1346] = {.lex_state = 5, .external_lex_state = 2}, - [1347] = {.lex_state = 11}, - [1348] = {.lex_state = 11}, - [1349] = {.lex_state = 11}, - [1350] = {.lex_state = 11}, - [1351] = {.lex_state = 5, .external_lex_state = 2}, - [1352] = {.lex_state = 5, .external_lex_state = 2}, - [1353] = {.lex_state = 5, .external_lex_state = 2}, - [1354] = {.lex_state = 11}, - [1355] = {.lex_state = 5, .external_lex_state = 2}, - [1356] = {.lex_state = 11}, - [1357] = {.lex_state = 11}, - [1358] = {.lex_state = 5, .external_lex_state = 2}, - [1359] = {.lex_state = 93}, - [1360] = {.lex_state = 93}, - [1361] = {.lex_state = 11}, - [1362] = {.lex_state = 93}, - [1363] = {.lex_state = 93}, - [1364] = {.lex_state = 93}, - [1365] = {.lex_state = 12, .external_lex_state = 4}, - [1366] = {.lex_state = 12, .external_lex_state = 4}, - [1367] = {.lex_state = 13}, - [1368] = {.lex_state = 13}, - [1369] = {.lex_state = 12, .external_lex_state = 4}, - [1370] = {.lex_state = 13}, - [1371] = {.lex_state = 7, .external_lex_state = 3}, - [1372] = {.lex_state = 13}, - [1373] = {.lex_state = 13}, - [1374] = {.lex_state = 13}, - [1375] = {.lex_state = 13}, - [1376] = {.lex_state = 12, .external_lex_state = 4}, - [1377] = {.lex_state = 13}, - [1378] = {.lex_state = 13}, - [1379] = {.lex_state = 7, .external_lex_state = 3}, - [1380] = {.lex_state = 12, .external_lex_state = 4}, - [1381] = {.lex_state = 13}, - [1382] = {.lex_state = 13}, - [1383] = {.lex_state = 13}, - [1384] = {.lex_state = 13}, - [1385] = {.lex_state = 13}, - [1386] = {.lex_state = 13}, - [1387] = {.lex_state = 13}, - [1388] = {.lex_state = 12, .external_lex_state = 4}, - [1389] = {.lex_state = 13}, - [1390] = {.lex_state = 13, .external_lex_state = 4}, - [1391] = {.lex_state = 13, .external_lex_state = 4}, - [1392] = {.lex_state = 13, .external_lex_state = 4}, - [1393] = {.lex_state = 13, .external_lex_state = 4}, - [1394] = {.lex_state = 13, .external_lex_state = 4}, - [1395] = {.lex_state = 13, .external_lex_state = 4}, - [1396] = {.lex_state = 13, .external_lex_state = 4}, - [1397] = {.lex_state = 12, .external_lex_state = 4}, - [1398] = {.lex_state = 12, .external_lex_state = 4}, - [1399] = {.lex_state = 7, .external_lex_state = 3}, - [1400] = {.lex_state = 13, .external_lex_state = 4}, - [1401] = {.lex_state = 13, .external_lex_state = 4}, - [1402] = {.lex_state = 7, .external_lex_state = 3}, - [1403] = {.lex_state = 93}, - [1404] = {.lex_state = 13, .external_lex_state = 4}, - [1405] = {.lex_state = 13, .external_lex_state = 4}, - [1406] = {.lex_state = 13, .external_lex_state = 4}, - [1407] = {.lex_state = 13, .external_lex_state = 4}, - [1408] = {.lex_state = 13, .external_lex_state = 4}, - [1409] = {.lex_state = 13, .external_lex_state = 4}, - [1410] = {.lex_state = 13, .external_lex_state = 4}, - [1411] = {.lex_state = 13, .external_lex_state = 4}, - [1412] = {.lex_state = 12, .external_lex_state = 4}, - [1413] = {.lex_state = 13, .external_lex_state = 4}, - [1414] = {.lex_state = 13, .external_lex_state = 4}, - [1415] = {.lex_state = 13, .external_lex_state = 4}, - [1416] = {.lex_state = 13, .external_lex_state = 4}, - [1417] = {.lex_state = 13, .external_lex_state = 4}, - [1418] = {.lex_state = 13, .external_lex_state = 4}, - [1419] = {.lex_state = 13, .external_lex_state = 4}, - [1420] = {.lex_state = 13, .external_lex_state = 4}, - [1421] = {.lex_state = 13, .external_lex_state = 4}, - [1422] = {.lex_state = 13, .external_lex_state = 4}, - [1423] = {.lex_state = 13, .external_lex_state = 4}, - [1424] = {.lex_state = 13, .external_lex_state = 4}, - [1425] = {.lex_state = 13, .external_lex_state = 4}, - [1426] = {.lex_state = 13, .external_lex_state = 4}, - [1427] = {.lex_state = 7, .external_lex_state = 2}, - [1428] = {.lex_state = 7, .external_lex_state = 2}, - [1429] = {.lex_state = 13, .external_lex_state = 4}, - [1430] = {.lex_state = 13}, - [1431] = {.lex_state = 13, .external_lex_state = 4}, - [1432] = {.lex_state = 13, .external_lex_state = 4}, - [1433] = {.lex_state = 7, .external_lex_state = 2}, - [1434] = {.lex_state = 13, .external_lex_state = 4}, - [1435] = {.lex_state = 13, .external_lex_state = 4}, - [1436] = {.lex_state = 7, .external_lex_state = 2}, - [1437] = {.lex_state = 13}, - [1438] = {.lex_state = 11}, - [1439] = {.lex_state = 7, .external_lex_state = 2}, - [1440] = {.lex_state = 7, .external_lex_state = 2}, - [1441] = {.lex_state = 7, .external_lex_state = 2}, - [1442] = {.lex_state = 13, .external_lex_state = 4}, - [1443] = {.lex_state = 11}, - [1444] = {.lex_state = 13}, - [1445] = {.lex_state = 7, .external_lex_state = 2}, - [1446] = {.lex_state = 13}, - [1447] = {.lex_state = 7, .external_lex_state = 2}, - [1448] = {.lex_state = 7, .external_lex_state = 2}, - [1449] = {.lex_state = 13}, - [1450] = {.lex_state = 7, .external_lex_state = 2}, - [1451] = {.lex_state = 7, .external_lex_state = 3}, - [1452] = {.lex_state = 13}, - [1453] = {.lex_state = 7, .external_lex_state = 3}, - [1454] = {.lex_state = 13, .external_lex_state = 4}, - [1455] = {.lex_state = 13, .external_lex_state = 4}, - [1456] = {.lex_state = 7, .external_lex_state = 3}, - [1457] = {.lex_state = 7, .external_lex_state = 2}, - [1458] = {.lex_state = 13}, - [1459] = {.lex_state = 13}, - [1460] = {.lex_state = 13, .external_lex_state = 4}, - [1461] = {.lex_state = 13}, - [1462] = {.lex_state = 7, .external_lex_state = 2}, - [1463] = {.lex_state = 7, .external_lex_state = 2}, - [1464] = {.lex_state = 7, .external_lex_state = 2}, - [1465] = {.lex_state = 13}, - [1466] = {.lex_state = 7, .external_lex_state = 2}, - [1467] = {.lex_state = 7, .external_lex_state = 2}, - [1468] = {.lex_state = 7, .external_lex_state = 2}, - [1469] = {.lex_state = 13}, - [1470] = {.lex_state = 7, .external_lex_state = 2}, - [1471] = {.lex_state = 13, .external_lex_state = 4}, - [1472] = {.lex_state = 13}, - [1473] = {.lex_state = 13}, - [1474] = {.lex_state = 13}, - [1475] = {.lex_state = 13, .external_lex_state = 4}, - [1476] = {.lex_state = 7, .external_lex_state = 2}, - [1477] = {.lex_state = 7, .external_lex_state = 2}, - [1478] = {.lex_state = 13}, - [1479] = {.lex_state = 7, .external_lex_state = 2}, - [1480] = {.lex_state = 7, .external_lex_state = 2}, - [1481] = {.lex_state = 7, .external_lex_state = 2}, - [1482] = {.lex_state = 7, .external_lex_state = 2}, - [1483] = {.lex_state = 7, .external_lex_state = 2}, - [1484] = {.lex_state = 13, .external_lex_state = 4}, - [1485] = {.lex_state = 13, .external_lex_state = 4}, - [1486] = {.lex_state = 7, .external_lex_state = 2}, - [1487] = {.lex_state = 7, .external_lex_state = 2}, - [1488] = {.lex_state = 7, .external_lex_state = 2}, - [1489] = {.lex_state = 13, .external_lex_state = 4}, - [1490] = {.lex_state = 7, .external_lex_state = 2}, - [1491] = {.lex_state = 13, .external_lex_state = 4}, - [1492] = {.lex_state = 7, .external_lex_state = 2}, - [1493] = {.lex_state = 7, .external_lex_state = 2}, - [1494] = {.lex_state = 7, .external_lex_state = 2}, - [1495] = {.lex_state = 13}, - [1496] = {.lex_state = 7, .external_lex_state = 2}, - [1497] = {.lex_state = 7, .external_lex_state = 2}, - [1498] = {.lex_state = 7, .external_lex_state = 2}, - [1499] = {.lex_state = 11}, - [1500] = {.lex_state = 7, .external_lex_state = 2}, - [1501] = {.lex_state = 7, .external_lex_state = 2}, - [1502] = {.lex_state = 7, .external_lex_state = 2}, - [1503] = {.lex_state = 13, .external_lex_state = 4}, - [1504] = {.lex_state = 7, .external_lex_state = 2}, - [1505] = {.lex_state = 7, .external_lex_state = 2}, - [1506] = {.lex_state = 7, .external_lex_state = 2}, - [1507] = {.lex_state = 7, .external_lex_state = 2}, - [1508] = {.lex_state = 13, .external_lex_state = 4}, - [1509] = {.lex_state = 7, .external_lex_state = 2}, - [1510] = {.lex_state = 7, .external_lex_state = 2}, - [1511] = {.lex_state = 7, .external_lex_state = 2}, - [1512] = {.lex_state = 7, .external_lex_state = 2}, - [1513] = {.lex_state = 13, .external_lex_state = 4}, - [1514] = {.lex_state = 7, .external_lex_state = 3}, - [1515] = {.lex_state = 7, .external_lex_state = 2}, - [1516] = {.lex_state = 7, .external_lex_state = 2}, - [1517] = {.lex_state = 7, .external_lex_state = 2}, - [1518] = {.lex_state = 7, .external_lex_state = 2}, - [1519] = {.lex_state = 7, .external_lex_state = 2}, - [1520] = {.lex_state = 7, .external_lex_state = 2}, - [1521] = {.lex_state = 7, .external_lex_state = 2}, - [1522] = {.lex_state = 7, .external_lex_state = 2}, - [1523] = {.lex_state = 7, .external_lex_state = 2}, - [1524] = {.lex_state = 13, .external_lex_state = 4}, - [1525] = {.lex_state = 7, .external_lex_state = 2}, - [1526] = {.lex_state = 7, .external_lex_state = 2}, - [1527] = {.lex_state = 7, .external_lex_state = 2}, - [1528] = {.lex_state = 7, .external_lex_state = 2}, - [1529] = {.lex_state = 7, .external_lex_state = 2}, - [1530] = {.lex_state = 7, .external_lex_state = 2}, - [1531] = {.lex_state = 7, .external_lex_state = 2}, - [1532] = {.lex_state = 7, .external_lex_state = 2}, - [1533] = {.lex_state = 7, .external_lex_state = 2}, - [1534] = {.lex_state = 7, .external_lex_state = 2}, - [1535] = {.lex_state = 7, .external_lex_state = 2}, - [1536] = {.lex_state = 7, .external_lex_state = 2}, - [1537] = {.lex_state = 7, .external_lex_state = 2}, - [1538] = {.lex_state = 7, .external_lex_state = 2}, - [1539] = {.lex_state = 7, .external_lex_state = 2}, - [1540] = {.lex_state = 7, .external_lex_state = 2}, - [1541] = {.lex_state = 13, .external_lex_state = 4}, - [1542] = {.lex_state = 7, .external_lex_state = 2}, - [1543] = {.lex_state = 7, .external_lex_state = 2}, - [1544] = {.lex_state = 7, .external_lex_state = 2}, - [1545] = {.lex_state = 13, .external_lex_state = 4}, - [1546] = {.lex_state = 7, .external_lex_state = 2}, - [1547] = {.lex_state = 13, .external_lex_state = 4}, - [1548] = {.lex_state = 7, .external_lex_state = 2}, - [1549] = {.lex_state = 13, .external_lex_state = 4}, - [1550] = {.lex_state = 13, .external_lex_state = 4}, - [1551] = {.lex_state = 13, .external_lex_state = 4}, - [1552] = {.lex_state = 7, .external_lex_state = 2}, - [1553] = {.lex_state = 7, .external_lex_state = 2}, - [1554] = {.lex_state = 7, .external_lex_state = 2}, - [1555] = {.lex_state = 7, .external_lex_state = 2}, - [1556] = {.lex_state = 7, .external_lex_state = 2}, - [1557] = {.lex_state = 7, .external_lex_state = 2}, - [1558] = {.lex_state = 7, .external_lex_state = 2}, - [1559] = {.lex_state = 7, .external_lex_state = 2}, - [1560] = {.lex_state = 7, .external_lex_state = 2}, - [1561] = {.lex_state = 7, .external_lex_state = 2}, - [1562] = {.lex_state = 7, .external_lex_state = 2}, - [1563] = {.lex_state = 13}, - [1564] = {.lex_state = 13}, - [1565] = {.lex_state = 7, .external_lex_state = 2}, - [1566] = {.lex_state = 13, .external_lex_state = 4}, - [1567] = {.lex_state = 7, .external_lex_state = 2}, - [1568] = {.lex_state = 7, .external_lex_state = 2}, - [1569] = {.lex_state = 13}, - [1570] = {.lex_state = 13, .external_lex_state = 4}, - [1571] = {.lex_state = 13, .external_lex_state = 4}, - [1572] = {.lex_state = 13}, - [1573] = {.lex_state = 13}, - [1574] = {.lex_state = 7, .external_lex_state = 2}, - [1575] = {.lex_state = 7, .external_lex_state = 2}, - [1576] = {.lex_state = 7, .external_lex_state = 2}, - [1577] = {.lex_state = 7, .external_lex_state = 2}, - [1578] = {.lex_state = 13, .external_lex_state = 4}, - [1579] = {.lex_state = 13, .external_lex_state = 4}, - [1580] = {.lex_state = 7, .external_lex_state = 2}, - [1581] = {.lex_state = 13, .external_lex_state = 4}, - [1582] = {.lex_state = 7, .external_lex_state = 2}, - [1583] = {.lex_state = 13, .external_lex_state = 4}, - [1584] = {.lex_state = 7, .external_lex_state = 2}, - [1585] = {.lex_state = 7, .external_lex_state = 2}, - [1586] = {.lex_state = 7, .external_lex_state = 2}, - [1587] = {.lex_state = 7, .external_lex_state = 2}, - [1588] = {.lex_state = 7, .external_lex_state = 2}, - [1589] = {.lex_state = 13}, - [1590] = {.lex_state = 7, .external_lex_state = 2}, - [1591] = {.lex_state = 7, .external_lex_state = 2}, - [1592] = {.lex_state = 7, .external_lex_state = 2}, - [1593] = {.lex_state = 7, .external_lex_state = 2}, - [1594] = {.lex_state = 7, .external_lex_state = 2}, - [1595] = {.lex_state = 7, .external_lex_state = 2}, - [1596] = {.lex_state = 7, .external_lex_state = 2}, - [1597] = {.lex_state = 7, .external_lex_state = 2}, - [1598] = {.lex_state = 7, .external_lex_state = 2}, - [1599] = {.lex_state = 13, .external_lex_state = 4}, - [1600] = {.lex_state = 7, .external_lex_state = 2}, - [1601] = {.lex_state = 13, .external_lex_state = 4}, - [1602] = {.lex_state = 7, .external_lex_state = 2}, - [1603] = {.lex_state = 7, .external_lex_state = 2}, - [1604] = {.lex_state = 13, .external_lex_state = 4}, - [1605] = {.lex_state = 7, .external_lex_state = 2}, - [1606] = {.lex_state = 7, .external_lex_state = 2}, - [1607] = {.lex_state = 7, .external_lex_state = 2}, - [1608] = {.lex_state = 7, .external_lex_state = 2}, - [1609] = {.lex_state = 7, .external_lex_state = 2}, - [1610] = {.lex_state = 7, .external_lex_state = 2}, - [1611] = {.lex_state = 7, .external_lex_state = 2}, - [1612] = {.lex_state = 7, .external_lex_state = 2}, - [1613] = {.lex_state = 7, .external_lex_state = 2}, - [1614] = {.lex_state = 7, .external_lex_state = 2}, - [1615] = {.lex_state = 7, .external_lex_state = 2}, - [1616] = {.lex_state = 7, .external_lex_state = 2}, - [1617] = {.lex_state = 7, .external_lex_state = 2}, - [1618] = {.lex_state = 7, .external_lex_state = 2}, - [1619] = {.lex_state = 7, .external_lex_state = 2}, - [1620] = {.lex_state = 7, .external_lex_state = 2}, - [1621] = {.lex_state = 7, .external_lex_state = 2}, - [1622] = {.lex_state = 7, .external_lex_state = 2}, - [1623] = {.lex_state = 13, .external_lex_state = 4}, - [1624] = {.lex_state = 13, .external_lex_state = 4}, - [1625] = {.lex_state = 7, .external_lex_state = 2}, - [1626] = {.lex_state = 13, .external_lex_state = 4}, - [1627] = {.lex_state = 13, .external_lex_state = 4}, - [1628] = {.lex_state = 7, .external_lex_state = 3}, - [1629] = {.lex_state = 7, .external_lex_state = 3}, - [1630] = {.lex_state = 7, .external_lex_state = 2}, - [1631] = {.lex_state = 7, .external_lex_state = 2}, - [1632] = {.lex_state = 13, .external_lex_state = 4}, - [1633] = {.lex_state = 7, .external_lex_state = 2}, - [1634] = {.lex_state = 13}, - [1635] = {.lex_state = 13, .external_lex_state = 4}, - [1636] = {.lex_state = 7, .external_lex_state = 2}, - [1637] = {.lex_state = 7, .external_lex_state = 2}, - [1638] = {.lex_state = 13, .external_lex_state = 4}, - [1639] = {.lex_state = 13, .external_lex_state = 4}, - [1640] = {.lex_state = 7, .external_lex_state = 2}, - [1641] = {.lex_state = 13, .external_lex_state = 4}, - [1642] = {.lex_state = 13, .external_lex_state = 4}, - [1643] = {.lex_state = 13, .external_lex_state = 4}, - [1644] = {.lex_state = 13, .external_lex_state = 4}, - [1645] = {.lex_state = 13, .external_lex_state = 4}, - [1646] = {.lex_state = 7, .external_lex_state = 3}, - [1647] = {.lex_state = 7, .external_lex_state = 3}, - [1648] = {.lex_state = 7, .external_lex_state = 2}, - [1649] = {.lex_state = 7, .external_lex_state = 2}, - [1650] = {.lex_state = 7, .external_lex_state = 3}, - [1651] = {.lex_state = 7, .external_lex_state = 3}, - [1652] = {.lex_state = 7, .external_lex_state = 2}, - [1653] = {.lex_state = 7, .external_lex_state = 2}, - [1654] = {.lex_state = 7, .external_lex_state = 3}, - [1655] = {.lex_state = 7, .external_lex_state = 3}, - [1656] = {.lex_state = 7, .external_lex_state = 3}, - [1657] = {.lex_state = 7, .external_lex_state = 2}, - [1658] = {.lex_state = 7, .external_lex_state = 3}, - [1659] = {.lex_state = 7, .external_lex_state = 3}, - [1660] = {.lex_state = 7, .external_lex_state = 3}, - [1661] = {.lex_state = 7, .external_lex_state = 2}, - [1662] = {.lex_state = 7, .external_lex_state = 2}, - [1663] = {.lex_state = 7, .external_lex_state = 2}, - [1664] = {.lex_state = 7, .external_lex_state = 3}, - [1665] = {.lex_state = 7, .external_lex_state = 3}, - [1666] = {.lex_state = 7, .external_lex_state = 2}, - [1667] = {.lex_state = 7, .external_lex_state = 2}, - [1668] = {.lex_state = 13, .external_lex_state = 4}, - [1669] = {.lex_state = 13, .external_lex_state = 4}, - [1670] = {.lex_state = 13}, - [1671] = {.lex_state = 7, .external_lex_state = 3}, - [1672] = {.lex_state = 7, .external_lex_state = 2}, - [1673] = {.lex_state = 7, .external_lex_state = 3}, - [1674] = {.lex_state = 7, .external_lex_state = 3}, - [1675] = {.lex_state = 7, .external_lex_state = 3}, - [1676] = {.lex_state = 7, .external_lex_state = 3}, - [1677] = {.lex_state = 7, .external_lex_state = 2}, - [1678] = {.lex_state = 7, .external_lex_state = 3}, - [1679] = {.lex_state = 7, .external_lex_state = 3}, - [1680] = {.lex_state = 7, .external_lex_state = 3}, - [1681] = {.lex_state = 13, .external_lex_state = 4}, - [1682] = {.lex_state = 7, .external_lex_state = 3}, - [1683] = {.lex_state = 7, .external_lex_state = 3}, - [1684] = {.lex_state = 7, .external_lex_state = 2}, - [1685] = {.lex_state = 13, .external_lex_state = 4}, - [1686] = {.lex_state = 13, .external_lex_state = 4}, - [1687] = {.lex_state = 7, .external_lex_state = 3}, - [1688] = {.lex_state = 7, .external_lex_state = 3}, - [1689] = {.lex_state = 7, .external_lex_state = 2}, - [1690] = {.lex_state = 7, .external_lex_state = 2}, - [1691] = {.lex_state = 7, .external_lex_state = 2}, - [1692] = {.lex_state = 7, .external_lex_state = 2}, - [1693] = {.lex_state = 7, .external_lex_state = 3}, - [1694] = {.lex_state = 7, .external_lex_state = 3}, - [1695] = {.lex_state = 7, .external_lex_state = 2}, - [1696] = {.lex_state = 7, .external_lex_state = 2}, - [1697] = {.lex_state = 7, .external_lex_state = 2}, - [1698] = {.lex_state = 7, .external_lex_state = 2}, - [1699] = {.lex_state = 7, .external_lex_state = 2}, - [1700] = {.lex_state = 7, .external_lex_state = 2}, - [1701] = {.lex_state = 7, .external_lex_state = 2}, - [1702] = {.lex_state = 7, .external_lex_state = 2}, - [1703] = {.lex_state = 7, .external_lex_state = 2}, - [1704] = {.lex_state = 7, .external_lex_state = 3}, - [1705] = {.lex_state = 7, .external_lex_state = 2}, - [1706] = {.lex_state = 7, .external_lex_state = 2}, - [1707] = {.lex_state = 7, .external_lex_state = 2}, - [1708] = {.lex_state = 7, .external_lex_state = 3}, - [1709] = {.lex_state = 7, .external_lex_state = 2}, - [1710] = {.lex_state = 7, .external_lex_state = 2}, - [1711] = {.lex_state = 7, .external_lex_state = 2}, - [1712] = {.lex_state = 7, .external_lex_state = 3}, - [1713] = {.lex_state = 7, .external_lex_state = 2}, - [1714] = {.lex_state = 7, .external_lex_state = 2}, - [1715] = {.lex_state = 7, .external_lex_state = 2}, - [1716] = {.lex_state = 7, .external_lex_state = 2}, - [1717] = {.lex_state = 7, .external_lex_state = 2}, - [1718] = {.lex_state = 13, .external_lex_state = 4}, - [1719] = {.lex_state = 7, .external_lex_state = 3}, - [1720] = {.lex_state = 13, .external_lex_state = 4}, - [1721] = {.lex_state = 7, .external_lex_state = 2}, - [1722] = {.lex_state = 7, .external_lex_state = 3}, - [1723] = {.lex_state = 13, .external_lex_state = 4}, - [1724] = {.lex_state = 13, .external_lex_state = 4}, - [1725] = {.lex_state = 7, .external_lex_state = 3}, - [1726] = {.lex_state = 7, .external_lex_state = 2}, - [1727] = {.lex_state = 7, .external_lex_state = 3}, - [1728] = {.lex_state = 7, .external_lex_state = 2}, - [1729] = {.lex_state = 7, .external_lex_state = 2}, - [1730] = {.lex_state = 7, .external_lex_state = 2}, - [1731] = {.lex_state = 13, .external_lex_state = 4}, - [1732] = {.lex_state = 7, .external_lex_state = 2}, - [1733] = {.lex_state = 7, .external_lex_state = 2}, - [1734] = {.lex_state = 7, .external_lex_state = 2}, - [1735] = {.lex_state = 13}, - [1736] = {.lex_state = 7, .external_lex_state = 2}, - [1737] = {.lex_state = 13}, - [1738] = {.lex_state = 13, .external_lex_state = 4}, - [1739] = {.lex_state = 7, .external_lex_state = 3}, - [1740] = {.lex_state = 7, .external_lex_state = 2}, - [1741] = {.lex_state = 7, .external_lex_state = 2}, - [1742] = {.lex_state = 7, .external_lex_state = 2}, - [1743] = {.lex_state = 7, .external_lex_state = 2}, - [1744] = {.lex_state = 7, .external_lex_state = 2}, - [1745] = {.lex_state = 7, .external_lex_state = 2}, - [1746] = {.lex_state = 7, .external_lex_state = 2}, - [1747] = {.lex_state = 7, .external_lex_state = 2}, - [1748] = {.lex_state = 7, .external_lex_state = 2}, - [1749] = {.lex_state = 7, .external_lex_state = 2}, - [1750] = {.lex_state = 7, .external_lex_state = 2}, - [1751] = {.lex_state = 7, .external_lex_state = 2}, - [1752] = {.lex_state = 7, .external_lex_state = 2}, - [1753] = {.lex_state = 7, .external_lex_state = 2}, - [1754] = {.lex_state = 13, .external_lex_state = 4}, - [1755] = {.lex_state = 13, .external_lex_state = 4}, - [1756] = {.lex_state = 7, .external_lex_state = 3}, - [1757] = {.lex_state = 7, .external_lex_state = 3}, - [1758] = {.lex_state = 13}, - [1759] = {.lex_state = 7, .external_lex_state = 2}, - [1760] = {.lex_state = 13}, - [1761] = {.lex_state = 7, .external_lex_state = 3}, - [1762] = {.lex_state = 7, .external_lex_state = 2}, - [1763] = {.lex_state = 7, .external_lex_state = 2}, - [1764] = {.lex_state = 7, .external_lex_state = 2}, - [1765] = {.lex_state = 7, .external_lex_state = 2}, - [1766] = {.lex_state = 13}, - [1767] = {.lex_state = 7, .external_lex_state = 2}, - [1768] = {.lex_state = 7, .external_lex_state = 2}, - [1769] = {.lex_state = 7, .external_lex_state = 2}, - [1770] = {.lex_state = 13, .external_lex_state = 4}, - [1771] = {.lex_state = 13}, - [1772] = {.lex_state = 13, .external_lex_state = 4}, - [1773] = {.lex_state = 7, .external_lex_state = 3}, - [1774] = {.lex_state = 7, .external_lex_state = 2}, - [1775] = {.lex_state = 7, .external_lex_state = 2}, - [1776] = {.lex_state = 13, .external_lex_state = 4}, - [1777] = {.lex_state = 7, .external_lex_state = 2}, - [1778] = {.lex_state = 13, .external_lex_state = 4}, - [1779] = {.lex_state = 7, .external_lex_state = 2}, - [1780] = {.lex_state = 7, .external_lex_state = 3}, - [1781] = {.lex_state = 7, .external_lex_state = 3}, - [1782] = {.lex_state = 13, .external_lex_state = 4}, - [1783] = {.lex_state = 7, .external_lex_state = 3}, - [1784] = {.lex_state = 7, .external_lex_state = 3}, - [1785] = {.lex_state = 13}, - [1786] = {.lex_state = 7, .external_lex_state = 3}, - [1787] = {.lex_state = 7, .external_lex_state = 3}, - [1788] = {.lex_state = 7, .external_lex_state = 3}, - [1789] = {.lex_state = 7, .external_lex_state = 3}, - [1790] = {.lex_state = 7, .external_lex_state = 3}, - [1791] = {.lex_state = 7, .external_lex_state = 3}, - [1792] = {.lex_state = 7, .external_lex_state = 3}, - [1793] = {.lex_state = 7, .external_lex_state = 3}, - [1794] = {.lex_state = 7, .external_lex_state = 3}, - [1795] = {.lex_state = 7, .external_lex_state = 2}, - [1796] = {.lex_state = 7, .external_lex_state = 3}, - [1797] = {.lex_state = 7, .external_lex_state = 3}, - [1798] = {.lex_state = 7, .external_lex_state = 3}, - [1799] = {.lex_state = 7, .external_lex_state = 3}, - [1800] = {.lex_state = 11}, - [1801] = {.lex_state = 7, .external_lex_state = 3}, - [1802] = {.lex_state = 7, .external_lex_state = 3}, - [1803] = {.lex_state = 7, .external_lex_state = 3}, - [1804] = {.lex_state = 7, .external_lex_state = 3}, - [1805] = {.lex_state = 7, .external_lex_state = 3}, - [1806] = {.lex_state = 7, .external_lex_state = 3}, - [1807] = {.lex_state = 7, .external_lex_state = 3}, - [1808] = {.lex_state = 7, .external_lex_state = 3}, - [1809] = {.lex_state = 7, .external_lex_state = 3}, - [1810] = {.lex_state = 7, .external_lex_state = 3}, - [1811] = {.lex_state = 7, .external_lex_state = 3}, - [1812] = {.lex_state = 7, .external_lex_state = 3}, - [1813] = {.lex_state = 7, .external_lex_state = 3}, - [1814] = {.lex_state = 7, .external_lex_state = 3}, - [1815] = {.lex_state = 7, .external_lex_state = 2}, - [1816] = {.lex_state = 7, .external_lex_state = 3}, - [1817] = {.lex_state = 7, .external_lex_state = 3}, - [1818] = {.lex_state = 7, .external_lex_state = 3}, - [1819] = {.lex_state = 7, .external_lex_state = 2}, - [1820] = {.lex_state = 7, .external_lex_state = 3}, - [1821] = {.lex_state = 11, .external_lex_state = 4}, - [1822] = {.lex_state = 7, .external_lex_state = 2}, - [1823] = {.lex_state = 13, .external_lex_state = 4}, - [1824] = {.lex_state = 13, .external_lex_state = 4}, - [1825] = {.lex_state = 11, .external_lex_state = 4}, - [1826] = {.lex_state = 11, .external_lex_state = 4}, - [1827] = {.lex_state = 7, .external_lex_state = 2}, - [1828] = {.lex_state = 7, .external_lex_state = 2}, - [1829] = {.lex_state = 7, .external_lex_state = 3}, - [1830] = {.lex_state = 7, .external_lex_state = 2}, - [1831] = {.lex_state = 7, .external_lex_state = 2}, - [1832] = {.lex_state = 7, .external_lex_state = 2}, - [1833] = {.lex_state = 7, .external_lex_state = 2}, - [1834] = {.lex_state = 7, .external_lex_state = 3}, - [1835] = {.lex_state = 7, .external_lex_state = 2}, - [1836] = {.lex_state = 7, .external_lex_state = 2}, - [1837] = {.lex_state = 7, .external_lex_state = 2}, - [1838] = {.lex_state = 7, .external_lex_state = 2}, - [1839] = {.lex_state = 7, .external_lex_state = 2}, - [1840] = {.lex_state = 7, .external_lex_state = 2}, - [1841] = {.lex_state = 7, .external_lex_state = 2}, - [1842] = {.lex_state = 7, .external_lex_state = 2}, - [1843] = {.lex_state = 7, .external_lex_state = 3}, - [1844] = {.lex_state = 7, .external_lex_state = 3}, - [1845] = {.lex_state = 7, .external_lex_state = 3}, - [1846] = {.lex_state = 7, .external_lex_state = 2}, - [1847] = {.lex_state = 7, .external_lex_state = 2}, - [1848] = {.lex_state = 7, .external_lex_state = 2}, - [1849] = {.lex_state = 7, .external_lex_state = 3}, - [1850] = {.lex_state = 7, .external_lex_state = 3}, - [1851] = {.lex_state = 7, .external_lex_state = 3}, - [1852] = {.lex_state = 7, .external_lex_state = 3}, - [1853] = {.lex_state = 7, .external_lex_state = 3}, - [1854] = {.lex_state = 7, .external_lex_state = 2}, - [1855] = {.lex_state = 7, .external_lex_state = 2}, - [1856] = {.lex_state = 7, .external_lex_state = 2}, - [1857] = {.lex_state = 13}, - [1858] = {.lex_state = 16}, - [1859] = {.lex_state = 7, .external_lex_state = 2}, - [1860] = {.lex_state = 7, .external_lex_state = 3}, - [1861] = {.lex_state = 7, .external_lex_state = 2}, - [1862] = {.lex_state = 7, .external_lex_state = 2}, - [1863] = {.lex_state = 7, .external_lex_state = 2}, - [1864] = {.lex_state = 7, .external_lex_state = 2}, - [1865] = {.lex_state = 11, .external_lex_state = 4}, - [1866] = {.lex_state = 7, .external_lex_state = 2}, - [1867] = {.lex_state = 7, .external_lex_state = 2}, - [1868] = {.lex_state = 7, .external_lex_state = 2}, - [1869] = {.lex_state = 7, .external_lex_state = 2}, - [1870] = {.lex_state = 7, .external_lex_state = 2}, - [1871] = {.lex_state = 13}, - [1872] = {.lex_state = 7, .external_lex_state = 2}, - [1873] = {.lex_state = 7, .external_lex_state = 3}, - [1874] = {.lex_state = 7, .external_lex_state = 3}, - [1875] = {.lex_state = 7, .external_lex_state = 2}, - [1876] = {.lex_state = 7, .external_lex_state = 2}, - [1877] = {.lex_state = 13}, - [1878] = {.lex_state = 7, .external_lex_state = 3}, - [1879] = {.lex_state = 7, .external_lex_state = 2}, - [1880] = {.lex_state = 7, .external_lex_state = 2}, - [1881] = {.lex_state = 7, .external_lex_state = 2}, - [1882] = {.lex_state = 7, .external_lex_state = 2}, - [1883] = {.lex_state = 7, .external_lex_state = 2}, - [1884] = {.lex_state = 7, .external_lex_state = 3}, - [1885] = {.lex_state = 7, .external_lex_state = 3}, - [1886] = {.lex_state = 7, .external_lex_state = 3}, - [1887] = {.lex_state = 7, .external_lex_state = 3}, - [1888] = {.lex_state = 7, .external_lex_state = 2}, - [1889] = {.lex_state = 7, .external_lex_state = 2}, - [1890] = {.lex_state = 7, .external_lex_state = 2}, - [1891] = {.lex_state = 7, .external_lex_state = 3}, - [1892] = {.lex_state = 7, .external_lex_state = 2}, - [1893] = {.lex_state = 7, .external_lex_state = 3}, - [1894] = {.lex_state = 7, .external_lex_state = 3}, - [1895] = {.lex_state = 7, .external_lex_state = 2}, - [1896] = {.lex_state = 7, .external_lex_state = 2}, - [1897] = {.lex_state = 7, .external_lex_state = 2}, - [1898] = {.lex_state = 7, .external_lex_state = 2}, - [1899] = {.lex_state = 7, .external_lex_state = 2}, - [1900] = {.lex_state = 7, .external_lex_state = 3}, - [1901] = {.lex_state = 7, .external_lex_state = 2}, - [1902] = {.lex_state = 7, .external_lex_state = 3}, - [1903] = {.lex_state = 7, .external_lex_state = 3}, - [1904] = {.lex_state = 7, .external_lex_state = 2}, - [1905] = {.lex_state = 7, .external_lex_state = 3}, - [1906] = {.lex_state = 7, .external_lex_state = 3}, - [1907] = {.lex_state = 7, .external_lex_state = 3}, - [1908] = {.lex_state = 7, .external_lex_state = 3}, - [1909] = {.lex_state = 7, .external_lex_state = 3}, - [1910] = {.lex_state = 7, .external_lex_state = 3}, - [1911] = {.lex_state = 7, .external_lex_state = 3}, - [1912] = {.lex_state = 7, .external_lex_state = 3}, - [1913] = {.lex_state = 7, .external_lex_state = 2}, - [1914] = {.lex_state = 7, .external_lex_state = 3}, - [1915] = {.lex_state = 7, .external_lex_state = 3}, - [1916] = {.lex_state = 7, .external_lex_state = 3}, - [1917] = {.lex_state = 7, .external_lex_state = 3}, - [1918] = {.lex_state = 7, .external_lex_state = 3}, - [1919] = {.lex_state = 7, .external_lex_state = 3}, - [1920] = {.lex_state = 7, .external_lex_state = 3}, - [1921] = {.lex_state = 7, .external_lex_state = 3}, - [1922] = {.lex_state = 13}, - [1923] = {.lex_state = 7, .external_lex_state = 3}, - [1924] = {.lex_state = 7, .external_lex_state = 3}, - [1925] = {.lex_state = 7, .external_lex_state = 3}, - [1926] = {.lex_state = 7, .external_lex_state = 3}, - [1927] = {.lex_state = 7, .external_lex_state = 3}, - [1928] = {.lex_state = 7, .external_lex_state = 3}, - [1929] = {.lex_state = 13}, - [1930] = {.lex_state = 7, .external_lex_state = 3}, - [1931] = {.lex_state = 7, .external_lex_state = 3}, - [1932] = {.lex_state = 7, .external_lex_state = 3}, - [1933] = {.lex_state = 7, .external_lex_state = 2}, - [1934] = {.lex_state = 7, .external_lex_state = 3}, - [1935] = {.lex_state = 7, .external_lex_state = 3}, - [1936] = {.lex_state = 7, .external_lex_state = 3}, - [1937] = {.lex_state = 7, .external_lex_state = 3}, - [1938] = {.lex_state = 7, .external_lex_state = 3}, - [1939] = {.lex_state = 13}, - [1940] = {.lex_state = 13}, - [1941] = {.lex_state = 7, .external_lex_state = 3}, - [1942] = {.lex_state = 7, .external_lex_state = 3}, - [1943] = {.lex_state = 13}, - [1944] = {.lex_state = 13}, - [1945] = {.lex_state = 13}, - [1946] = {.lex_state = 7, .external_lex_state = 3}, - [1947] = {.lex_state = 7, .external_lex_state = 3}, - [1948] = {.lex_state = 7, .external_lex_state = 2}, - [1949] = {.lex_state = 7, .external_lex_state = 3}, - [1950] = {.lex_state = 7, .external_lex_state = 3}, - [1951] = {.lex_state = 7, .external_lex_state = 3}, - [1952] = {.lex_state = 7, .external_lex_state = 3}, - [1953] = {.lex_state = 7, .external_lex_state = 2}, - [1954] = {.lex_state = 7, .external_lex_state = 3}, - [1955] = {.lex_state = 7, .external_lex_state = 3}, - [1956] = {.lex_state = 7, .external_lex_state = 3}, - [1957] = {.lex_state = 7, .external_lex_state = 3}, - [1958] = {.lex_state = 7, .external_lex_state = 3}, - [1959] = {.lex_state = 7, .external_lex_state = 3}, - [1960] = {.lex_state = 7, .external_lex_state = 3}, - [1961] = {.lex_state = 7, .external_lex_state = 3}, - [1962] = {.lex_state = 7, .external_lex_state = 3}, - [1963] = {.lex_state = 13}, - [1964] = {.lex_state = 7, .external_lex_state = 3}, - [1965] = {.lex_state = 7, .external_lex_state = 3}, - [1966] = {.lex_state = 13}, - [1967] = {.lex_state = 7, .external_lex_state = 3}, - [1968] = {.lex_state = 7, .external_lex_state = 3}, - [1969] = {.lex_state = 7, .external_lex_state = 3}, - [1970] = {.lex_state = 7, .external_lex_state = 3}, - [1971] = {.lex_state = 7, .external_lex_state = 3}, - [1972] = {.lex_state = 11, .external_lex_state = 4}, - [1973] = {.lex_state = 7, .external_lex_state = 3}, - [1974] = {.lex_state = 7, .external_lex_state = 2}, - [1975] = {.lex_state = 7, .external_lex_state = 3}, - [1976] = {.lex_state = 7, .external_lex_state = 3}, - [1977] = {.lex_state = 7, .external_lex_state = 3}, - [1978] = {.lex_state = 7, .external_lex_state = 3}, - [1979] = {.lex_state = 13}, - [1980] = {.lex_state = 7, .external_lex_state = 3}, - [1981] = {.lex_state = 13}, - [1982] = {.lex_state = 7, .external_lex_state = 2}, - [1983] = {.lex_state = 7, .external_lex_state = 3}, - [1984] = {.lex_state = 7, .external_lex_state = 3}, - [1985] = {.lex_state = 7, .external_lex_state = 2}, - [1986] = {.lex_state = 7, .external_lex_state = 3}, - [1987] = {.lex_state = 7, .external_lex_state = 2}, - [1988] = {.lex_state = 7, .external_lex_state = 3}, - [1989] = {.lex_state = 7, .external_lex_state = 3}, - [1990] = {.lex_state = 7, .external_lex_state = 3}, - [1991] = {.lex_state = 13}, - [1992] = {.lex_state = 7, .external_lex_state = 2}, - [1993] = {.lex_state = 7, .external_lex_state = 3}, - [1994] = {.lex_state = 7, .external_lex_state = 3}, - [1995] = {.lex_state = 7, .external_lex_state = 3}, - [1996] = {.lex_state = 7, .external_lex_state = 3}, - [1997] = {.lex_state = 7, .external_lex_state = 3}, - [1998] = {.lex_state = 7, .external_lex_state = 3}, - [1999] = {.lex_state = 7, .external_lex_state = 3}, - [2000] = {.lex_state = 7, .external_lex_state = 3}, - [2001] = {.lex_state = 13}, - [2002] = {.lex_state = 7, .external_lex_state = 3}, - [2003] = {.lex_state = 7, .external_lex_state = 3}, - [2004] = {.lex_state = 7, .external_lex_state = 3}, - [2005] = {.lex_state = 7, .external_lex_state = 3}, - [2006] = {.lex_state = 7, .external_lex_state = 3}, - [2007] = {.lex_state = 7, .external_lex_state = 3}, - [2008] = {.lex_state = 7, .external_lex_state = 3}, - [2009] = {.lex_state = 13}, - [2010] = {.lex_state = 7, .external_lex_state = 3}, - [2011] = {.lex_state = 7, .external_lex_state = 3}, - [2012] = {.lex_state = 7, .external_lex_state = 2}, - [2013] = {.lex_state = 7, .external_lex_state = 2}, - [2014] = {.lex_state = 7, .external_lex_state = 3}, - [2015] = {.lex_state = 7, .external_lex_state = 2}, - [2016] = {.lex_state = 7, .external_lex_state = 2}, - [2017] = {.lex_state = 7, .external_lex_state = 3}, - [2018] = {.lex_state = 7, .external_lex_state = 3}, - [2019] = {.lex_state = 7, .external_lex_state = 3}, - [2020] = {.lex_state = 7, .external_lex_state = 2}, - [2021] = {.lex_state = 7, .external_lex_state = 2}, - [2022] = {.lex_state = 7, .external_lex_state = 2}, - [2023] = {.lex_state = 7, .external_lex_state = 3}, - [2024] = {.lex_state = 7, .external_lex_state = 2}, - [2025] = {.lex_state = 7, .external_lex_state = 3}, - [2026] = {.lex_state = 7, .external_lex_state = 3}, - [2027] = {.lex_state = 7, .external_lex_state = 3}, - [2028] = {.lex_state = 7, .external_lex_state = 3}, - [2029] = {.lex_state = 7, .external_lex_state = 3}, - [2030] = {.lex_state = 7, .external_lex_state = 3}, - [2031] = {.lex_state = 7, .external_lex_state = 3}, - [2032] = {.lex_state = 7, .external_lex_state = 3}, - [2033] = {.lex_state = 7, .external_lex_state = 3}, - [2034] = {.lex_state = 7, .external_lex_state = 3}, - [2035] = {.lex_state = 7, .external_lex_state = 3}, - [2036] = {.lex_state = 7, .external_lex_state = 3}, - [2037] = {.lex_state = 7, .external_lex_state = 3}, - [2038] = {.lex_state = 7, .external_lex_state = 3}, - [2039] = {.lex_state = 7, .external_lex_state = 3}, - [2040] = {.lex_state = 7, .external_lex_state = 3}, - [2041] = {.lex_state = 7, .external_lex_state = 3}, - [2042] = {.lex_state = 7, .external_lex_state = 3}, - [2043] = {.lex_state = 8, .external_lex_state = 2}, - [2044] = {.lex_state = 7, .external_lex_state = 3}, - [2045] = {.lex_state = 7, .external_lex_state = 3}, - [2046] = {.lex_state = 7, .external_lex_state = 3}, - [2047] = {.lex_state = 7, .external_lex_state = 3}, - [2048] = {.lex_state = 7, .external_lex_state = 3}, - [2049] = {.lex_state = 7, .external_lex_state = 3}, - [2050] = {.lex_state = 7, .external_lex_state = 3}, - [2051] = {.lex_state = 7, .external_lex_state = 3}, - [2052] = {.lex_state = 7, .external_lex_state = 3}, - [2053] = {.lex_state = 7, .external_lex_state = 3}, - [2054] = {.lex_state = 7, .external_lex_state = 2}, - [2055] = {.lex_state = 7, .external_lex_state = 3}, - [2056] = {.lex_state = 7, .external_lex_state = 2}, - [2057] = {.lex_state = 7, .external_lex_state = 3}, - [2058] = {.lex_state = 7, .external_lex_state = 3}, - [2059] = {.lex_state = 7, .external_lex_state = 2}, - [2060] = {.lex_state = 7, .external_lex_state = 3}, - [2061] = {.lex_state = 7, .external_lex_state = 3}, - [2062] = {.lex_state = 7, .external_lex_state = 2}, - [2063] = {.lex_state = 7, .external_lex_state = 3}, - [2064] = {.lex_state = 7, .external_lex_state = 3}, - [2065] = {.lex_state = 11, .external_lex_state = 4}, - [2066] = {.lex_state = 7, .external_lex_state = 3}, - [2067] = {.lex_state = 7, .external_lex_state = 2}, - [2068] = {.lex_state = 7, .external_lex_state = 2}, - [2069] = {.lex_state = 7, .external_lex_state = 3}, - [2070] = {.lex_state = 7, .external_lex_state = 2}, - [2071] = {.lex_state = 7, .external_lex_state = 3}, - [2072] = {.lex_state = 7, .external_lex_state = 3}, - [2073] = {.lex_state = 7, .external_lex_state = 2}, - [2074] = {.lex_state = 7, .external_lex_state = 3}, - [2075] = {.lex_state = 7, .external_lex_state = 2}, - [2076] = {.lex_state = 7, .external_lex_state = 3}, - [2077] = {.lex_state = 7, .external_lex_state = 3}, - [2078] = {.lex_state = 7, .external_lex_state = 3}, - [2079] = {.lex_state = 7, .external_lex_state = 3}, - [2080] = {.lex_state = 13}, - [2081] = {.lex_state = 13}, - [2082] = {.lex_state = 13}, - [2083] = {.lex_state = 7, .external_lex_state = 3}, - [2084] = {.lex_state = 7, .external_lex_state = 3}, - [2085] = {.lex_state = 7, .external_lex_state = 3}, - [2086] = {.lex_state = 7, .external_lex_state = 3}, - [2087] = {.lex_state = 7, .external_lex_state = 3}, - [2088] = {.lex_state = 7, .external_lex_state = 2}, - [2089] = {.lex_state = 7, .external_lex_state = 2}, - [2090] = {.lex_state = 7, .external_lex_state = 3}, - [2091] = {.lex_state = 7, .external_lex_state = 3}, - [2092] = {.lex_state = 7, .external_lex_state = 2}, - [2093] = {.lex_state = 7, .external_lex_state = 2}, - [2094] = {.lex_state = 7, .external_lex_state = 3}, - [2095] = {.lex_state = 7, .external_lex_state = 2}, - [2096] = {.lex_state = 7, .external_lex_state = 3}, - [2097] = {.lex_state = 7, .external_lex_state = 3}, - [2098] = {.lex_state = 7, .external_lex_state = 2}, - [2099] = {.lex_state = 7, .external_lex_state = 2}, - [2100] = {.lex_state = 7, .external_lex_state = 3}, - [2101] = {.lex_state = 7, .external_lex_state = 3}, - [2102] = {.lex_state = 7, .external_lex_state = 3}, - [2103] = {.lex_state = 7, .external_lex_state = 2}, - [2104] = {.lex_state = 7, .external_lex_state = 2}, - [2105] = {.lex_state = 7, .external_lex_state = 2}, - [2106] = {.lex_state = 7, .external_lex_state = 2}, - [2107] = {.lex_state = 7, .external_lex_state = 3}, - [2108] = {.lex_state = 7, .external_lex_state = 3}, - [2109] = {.lex_state = 7, .external_lex_state = 2}, - [2110] = {.lex_state = 7, .external_lex_state = 3}, - [2111] = {.lex_state = 7, .external_lex_state = 2}, - [2112] = {.lex_state = 13}, - [2113] = {.lex_state = 7, .external_lex_state = 3}, - [2114] = {.lex_state = 7, .external_lex_state = 3}, - [2115] = {.lex_state = 7, .external_lex_state = 3}, - [2116] = {.lex_state = 7, .external_lex_state = 3}, - [2117] = {.lex_state = 7, .external_lex_state = 2}, - [2118] = {.lex_state = 7, .external_lex_state = 3}, - [2119] = {.lex_state = 7, .external_lex_state = 3}, - [2120] = {.lex_state = 7, .external_lex_state = 3}, - [2121] = {.lex_state = 7, .external_lex_state = 3}, - [2122] = {.lex_state = 7, .external_lex_state = 2}, - [2123] = {.lex_state = 7, .external_lex_state = 3}, - [2124] = {.lex_state = 7, .external_lex_state = 3}, - [2125] = {.lex_state = 7, .external_lex_state = 3}, - [2126] = {.lex_state = 7, .external_lex_state = 3}, - [2127] = {.lex_state = 7, .external_lex_state = 3}, - [2128] = {.lex_state = 7, .external_lex_state = 3}, - [2129] = {.lex_state = 7, .external_lex_state = 3}, - [2130] = {.lex_state = 7, .external_lex_state = 2}, - [2131] = {.lex_state = 7, .external_lex_state = 2}, - [2132] = {.lex_state = 7, .external_lex_state = 2}, - [2133] = {.lex_state = 7, .external_lex_state = 2}, - [2134] = {.lex_state = 7, .external_lex_state = 2}, - [2135] = {.lex_state = 7, .external_lex_state = 2}, - [2136] = {.lex_state = 7, .external_lex_state = 2}, - [2137] = {.lex_state = 7, .external_lex_state = 3}, - [2138] = {.lex_state = 7, .external_lex_state = 3}, - [2139] = {.lex_state = 7, .external_lex_state = 3}, - [2140] = {.lex_state = 7, .external_lex_state = 3}, - [2141] = {.lex_state = 7, .external_lex_state = 3}, - [2142] = {.lex_state = 7, .external_lex_state = 2}, - [2143] = {.lex_state = 7, .external_lex_state = 2}, - [2144] = {.lex_state = 7, .external_lex_state = 2}, - [2145] = {.lex_state = 7, .external_lex_state = 3}, - [2146] = {.lex_state = 7, .external_lex_state = 2}, - [2147] = {.lex_state = 7, .external_lex_state = 2}, - [2148] = {.lex_state = 7, .external_lex_state = 2}, - [2149] = {.lex_state = 7, .external_lex_state = 2}, - [2150] = {.lex_state = 7, .external_lex_state = 3}, - [2151] = {.lex_state = 7, .external_lex_state = 3}, - [2152] = {.lex_state = 7, .external_lex_state = 2}, - [2153] = {.lex_state = 7, .external_lex_state = 2}, - [2154] = {.lex_state = 7, .external_lex_state = 2}, - [2155] = {.lex_state = 7, .external_lex_state = 3}, - [2156] = {.lex_state = 7, .external_lex_state = 2}, - [2157] = {.lex_state = 7, .external_lex_state = 2}, - [2158] = {.lex_state = 7, .external_lex_state = 3}, - [2159] = {.lex_state = 7, .external_lex_state = 3}, - [2160] = {.lex_state = 7, .external_lex_state = 2}, - [2161] = {.lex_state = 7, .external_lex_state = 2}, - [2162] = {.lex_state = 7, .external_lex_state = 2}, - [2163] = {.lex_state = 7, .external_lex_state = 3}, - [2164] = {.lex_state = 7, .external_lex_state = 3}, - [2165] = {.lex_state = 7, .external_lex_state = 2}, - [2166] = {.lex_state = 7, .external_lex_state = 3}, - [2167] = {.lex_state = 7, .external_lex_state = 2}, - [2168] = {.lex_state = 7, .external_lex_state = 3}, - [2169] = {.lex_state = 7, .external_lex_state = 2}, - [2170] = {.lex_state = 7, .external_lex_state = 2}, - [2171] = {.lex_state = 7, .external_lex_state = 2}, - [2172] = {.lex_state = 7, .external_lex_state = 2}, - [2173] = {.lex_state = 7, .external_lex_state = 2}, - [2174] = {.lex_state = 7, .external_lex_state = 2}, - [2175] = {.lex_state = 7, .external_lex_state = 2}, - [2176] = {.lex_state = 7, .external_lex_state = 2}, - [2177] = {.lex_state = 7, .external_lex_state = 2}, - [2178] = {.lex_state = 7, .external_lex_state = 3}, - [2179] = {.lex_state = 7, .external_lex_state = 2}, - [2180] = {.lex_state = 7, .external_lex_state = 2}, - [2181] = {.lex_state = 7, .external_lex_state = 3}, - [2182] = {.lex_state = 7, .external_lex_state = 3}, - [2183] = {.lex_state = 7, .external_lex_state = 3}, - [2184] = {.lex_state = 7, .external_lex_state = 2}, - [2185] = {.lex_state = 7, .external_lex_state = 3}, - [2186] = {.lex_state = 7, .external_lex_state = 2}, - [2187] = {.lex_state = 7, .external_lex_state = 2}, - [2188] = {.lex_state = 7, .external_lex_state = 2}, - [2189] = {.lex_state = 7, .external_lex_state = 2}, - [2190] = {.lex_state = 7, .external_lex_state = 2}, - [2191] = {.lex_state = 7, .external_lex_state = 2}, - [2192] = {.lex_state = 7, .external_lex_state = 3}, - [2193] = {.lex_state = 7, .external_lex_state = 3}, - [2194] = {.lex_state = 7, .external_lex_state = 2}, - [2195] = {.lex_state = 7, .external_lex_state = 2}, - [2196] = {.lex_state = 7, .external_lex_state = 3}, - [2197] = {.lex_state = 7, .external_lex_state = 2}, - [2198] = {.lex_state = 7, .external_lex_state = 2}, - [2199] = {.lex_state = 7, .external_lex_state = 2}, - [2200] = {.lex_state = 7, .external_lex_state = 2}, - [2201] = {.lex_state = 7, .external_lex_state = 2}, - [2202] = {.lex_state = 7, .external_lex_state = 2}, - [2203] = {.lex_state = 7, .external_lex_state = 2}, - [2204] = {.lex_state = 7, .external_lex_state = 2}, - [2205] = {.lex_state = 7, .external_lex_state = 2}, - [2206] = {.lex_state = 7, .external_lex_state = 3}, - [2207] = {.lex_state = 7, .external_lex_state = 3}, - [2208] = {.lex_state = 7, .external_lex_state = 2}, - [2209] = {.lex_state = 7, .external_lex_state = 2}, - [2210] = {.lex_state = 7, .external_lex_state = 3}, - [2211] = {.lex_state = 7, .external_lex_state = 3}, - [2212] = {.lex_state = 7, .external_lex_state = 3}, - [2213] = {.lex_state = 7, .external_lex_state = 2}, - [2214] = {.lex_state = 7, .external_lex_state = 2}, - [2215] = {.lex_state = 7, .external_lex_state = 2}, - [2216] = {.lex_state = 7, .external_lex_state = 2}, - [2217] = {.lex_state = 7, .external_lex_state = 2}, - [2218] = {.lex_state = 7, .external_lex_state = 2}, - [2219] = {.lex_state = 7, .external_lex_state = 2}, - [2220] = {.lex_state = 7, .external_lex_state = 3}, - [2221] = {.lex_state = 7, .external_lex_state = 3}, - [2222] = {.lex_state = 7, .external_lex_state = 2}, - [2223] = {.lex_state = 7, .external_lex_state = 2}, - [2224] = {.lex_state = 7, .external_lex_state = 3}, - [2225] = {.lex_state = 7, .external_lex_state = 3}, - [2226] = {.lex_state = 7, .external_lex_state = 3}, - [2227] = {.lex_state = 7, .external_lex_state = 2}, - [2228] = {.lex_state = 7, .external_lex_state = 2}, - [2229] = {.lex_state = 7, .external_lex_state = 2}, - [2230] = {.lex_state = 7, .external_lex_state = 2}, - [2231] = {.lex_state = 7, .external_lex_state = 2}, - [2232] = {.lex_state = 7, .external_lex_state = 3}, - [2233] = {.lex_state = 7, .external_lex_state = 2}, - [2234] = {.lex_state = 7, .external_lex_state = 2}, - [2235] = {.lex_state = 7, .external_lex_state = 2}, - [2236] = {.lex_state = 7, .external_lex_state = 2}, - [2237] = {.lex_state = 7, .external_lex_state = 2}, - [2238] = {.lex_state = 7, .external_lex_state = 2}, - [2239] = {.lex_state = 7, .external_lex_state = 2}, - [2240] = {.lex_state = 7, .external_lex_state = 2}, - [2241] = {.lex_state = 7, .external_lex_state = 2}, - [2242] = {.lex_state = 7, .external_lex_state = 3}, - [2243] = {.lex_state = 7, .external_lex_state = 2}, - [2244] = {.lex_state = 7, .external_lex_state = 2}, - [2245] = {.lex_state = 7, .external_lex_state = 2}, - [2246] = {.lex_state = 7, .external_lex_state = 2}, - [2247] = {.lex_state = 7, .external_lex_state = 2}, - [2248] = {.lex_state = 7, .external_lex_state = 2}, - [2249] = {.lex_state = 7, .external_lex_state = 2}, - [2250] = {.lex_state = 7, .external_lex_state = 2}, - [2251] = {.lex_state = 7, .external_lex_state = 2}, - [2252] = {.lex_state = 7, .external_lex_state = 2}, - [2253] = {.lex_state = 7, .external_lex_state = 2}, - [2254] = {.lex_state = 7, .external_lex_state = 2}, - [2255] = {.lex_state = 7, .external_lex_state = 2}, - [2256] = {.lex_state = 7, .external_lex_state = 2}, - [2257] = {.lex_state = 7, .external_lex_state = 3}, - [2258] = {.lex_state = 7, .external_lex_state = 3}, - [2259] = {.lex_state = 7, .external_lex_state = 2}, - [2260] = {.lex_state = 7, .external_lex_state = 2}, - [2261] = {.lex_state = 7, .external_lex_state = 3}, - [2262] = {.lex_state = 7, .external_lex_state = 3}, - [2263] = {.lex_state = 7, .external_lex_state = 3}, - [2264] = {.lex_state = 7, .external_lex_state = 3}, - [2265] = {.lex_state = 8, .external_lex_state = 3}, - [2266] = {.lex_state = 7, .external_lex_state = 3}, - [2267] = {.lex_state = 7, .external_lex_state = 3}, - [2268] = {.lex_state = 7, .external_lex_state = 3}, - [2269] = {.lex_state = 7, .external_lex_state = 3}, - [2270] = {.lex_state = 7, .external_lex_state = 3}, - [2271] = {.lex_state = 7, .external_lex_state = 3}, - [2272] = {.lex_state = 7, .external_lex_state = 3}, - [2273] = {.lex_state = 7, .external_lex_state = 3}, - [2274] = {.lex_state = 7, .external_lex_state = 2}, - [2275] = {.lex_state = 7, .external_lex_state = 3}, - [2276] = {.lex_state = 7, .external_lex_state = 3}, - [2277] = {.lex_state = 7, .external_lex_state = 2}, - [2278] = {.lex_state = 7, .external_lex_state = 3}, - [2279] = {.lex_state = 7, .external_lex_state = 2}, - [2280] = {.lex_state = 7, .external_lex_state = 3}, - [2281] = {.lex_state = 7, .external_lex_state = 2}, - [2282] = {.lex_state = 8, .external_lex_state = 3}, - [2283] = {.lex_state = 7, .external_lex_state = 3}, - [2284] = {.lex_state = 7, .external_lex_state = 2}, - [2285] = {.lex_state = 7, .external_lex_state = 2}, - [2286] = {.lex_state = 7, .external_lex_state = 3}, - [2287] = {.lex_state = 7, .external_lex_state = 2}, - [2288] = {.lex_state = 7, .external_lex_state = 2}, - [2289] = {.lex_state = 7, .external_lex_state = 2}, - [2290] = {.lex_state = 7, .external_lex_state = 3}, - [2291] = {.lex_state = 7, .external_lex_state = 2}, - [2292] = {.lex_state = 7, .external_lex_state = 2}, - [2293] = {.lex_state = 7, .external_lex_state = 3}, - [2294] = {.lex_state = 7, .external_lex_state = 3}, - [2295] = {.lex_state = 7, .external_lex_state = 3}, - [2296] = {.lex_state = 7, .external_lex_state = 2}, - [2297] = {.lex_state = 7, .external_lex_state = 3}, - [2298] = {.lex_state = 7, .external_lex_state = 2}, - [2299] = {.lex_state = 7, .external_lex_state = 2}, - [2300] = {.lex_state = 7, .external_lex_state = 3}, - [2301] = {.lex_state = 7, .external_lex_state = 3}, - [2302] = {.lex_state = 7, .external_lex_state = 3}, - [2303] = {.lex_state = 7, .external_lex_state = 3}, - [2304] = {.lex_state = 7, .external_lex_state = 2}, - [2305] = {.lex_state = 7, .external_lex_state = 2}, - [2306] = {.lex_state = 7, .external_lex_state = 3}, - [2307] = {.lex_state = 7, .external_lex_state = 2}, - [2308] = {.lex_state = 7, .external_lex_state = 3}, - [2309] = {.lex_state = 7, .external_lex_state = 2}, - [2310] = {.lex_state = 7, .external_lex_state = 2}, - [2311] = {.lex_state = 7, .external_lex_state = 3}, - [2312] = {.lex_state = 7, .external_lex_state = 2}, - [2313] = {.lex_state = 7, .external_lex_state = 2}, - [2314] = {.lex_state = 7, .external_lex_state = 2}, - [2315] = {.lex_state = 7, .external_lex_state = 2}, - [2316] = {.lex_state = 7, .external_lex_state = 2}, - [2317] = {.lex_state = 7, .external_lex_state = 2}, - [2318] = {.lex_state = 7, .external_lex_state = 2}, - [2319] = {.lex_state = 7, .external_lex_state = 3}, - [2320] = {.lex_state = 7, .external_lex_state = 2}, - [2321] = {.lex_state = 7, .external_lex_state = 2}, - [2322] = {.lex_state = 13}, - [2323] = {.lex_state = 7, .external_lex_state = 2}, - [2324] = {.lex_state = 7, .external_lex_state = 3}, - [2325] = {.lex_state = 7, .external_lex_state = 2}, - [2326] = {.lex_state = 13}, - [2327] = {.lex_state = 7, .external_lex_state = 3}, - [2328] = {.lex_state = 7, .external_lex_state = 2}, - [2329] = {.lex_state = 7, .external_lex_state = 2}, - [2330] = {.lex_state = 7, .external_lex_state = 2}, - [2331] = {.lex_state = 7, .external_lex_state = 2}, - [2332] = {.lex_state = 7, .external_lex_state = 2}, - [2333] = {.lex_state = 7, .external_lex_state = 2}, - [2334] = {.lex_state = 13}, - [2335] = {.lex_state = 7, .external_lex_state = 2}, - [2336] = {.lex_state = 7, .external_lex_state = 2}, - [2337] = {.lex_state = 7, .external_lex_state = 2}, - [2338] = {.lex_state = 7, .external_lex_state = 2}, - [2339] = {.lex_state = 7, .external_lex_state = 2}, - [2340] = {.lex_state = 7, .external_lex_state = 2}, - [2341] = {.lex_state = 7, .external_lex_state = 2}, - [2342] = {.lex_state = 7, .external_lex_state = 2}, - [2343] = {.lex_state = 7, .external_lex_state = 2}, - [2344] = {.lex_state = 7, .external_lex_state = 2}, - [2345] = {.lex_state = 7, .external_lex_state = 2}, - [2346] = {.lex_state = 7, .external_lex_state = 2}, - [2347] = {.lex_state = 7, .external_lex_state = 2}, - [2348] = {.lex_state = 7, .external_lex_state = 2}, - [2349] = {.lex_state = 7, .external_lex_state = 2}, - [2350] = {.lex_state = 7, .external_lex_state = 2}, - [2351] = {.lex_state = 7, .external_lex_state = 2}, - [2352] = {.lex_state = 7, .external_lex_state = 2}, - [2353] = {.lex_state = 7, .external_lex_state = 2}, - [2354] = {.lex_state = 7, .external_lex_state = 2}, - [2355] = {.lex_state = 13}, - [2356] = {.lex_state = 7, .external_lex_state = 2}, - [2357] = {.lex_state = 7, .external_lex_state = 2}, - [2358] = {.lex_state = 8, .external_lex_state = 2}, - [2359] = {.lex_state = 7, .external_lex_state = 2}, - [2360] = {.lex_state = 7, .external_lex_state = 2}, - [2361] = {.lex_state = 7, .external_lex_state = 2}, - [2362] = {.lex_state = 7, .external_lex_state = 2}, - [2363] = {.lex_state = 7, .external_lex_state = 2}, - [2364] = {.lex_state = 7, .external_lex_state = 2}, - [2365] = {.lex_state = 13}, - [2366] = {.lex_state = 13, .external_lex_state = 4}, - [2367] = {.lex_state = 13}, - [2368] = {.lex_state = 7, .external_lex_state = 2}, - [2369] = {.lex_state = 7, .external_lex_state = 2}, - [2370] = {.lex_state = 7, .external_lex_state = 2}, - [2371] = {.lex_state = 13}, - [2372] = {.lex_state = 13, .external_lex_state = 4}, - [2373] = {.lex_state = 7, .external_lex_state = 2}, - [2374] = {.lex_state = 13, .external_lex_state = 4}, - [2375] = {.lex_state = 7, .external_lex_state = 2}, - [2376] = {.lex_state = 7, .external_lex_state = 2}, - [2377] = {.lex_state = 13, .external_lex_state = 4}, - [2378] = {.lex_state = 13, .external_lex_state = 4}, - [2379] = {.lex_state = 7, .external_lex_state = 3}, - [2380] = {.lex_state = 13}, - [2381] = {.lex_state = 13, .external_lex_state = 4}, - [2382] = {.lex_state = 13}, - [2383] = {.lex_state = 13}, - [2384] = {.lex_state = 13, .external_lex_state = 4}, - [2385] = {.lex_state = 13}, - [2386] = {.lex_state = 13, .external_lex_state = 4}, - [2387] = {.lex_state = 13, .external_lex_state = 4}, - [2388] = {.lex_state = 13}, - [2389] = {.lex_state = 13, .external_lex_state = 4}, - [2390] = {.lex_state = 13, .external_lex_state = 4}, - [2391] = {.lex_state = 13}, - [2392] = {.lex_state = 13, .external_lex_state = 4}, - [2393] = {.lex_state = 7, .external_lex_state = 2}, - [2394] = {.lex_state = 13, .external_lex_state = 4}, - [2395] = {.lex_state = 7, .external_lex_state = 2}, - [2396] = {.lex_state = 7, .external_lex_state = 3}, - [2397] = {.lex_state = 7, .external_lex_state = 2}, - [2398] = {.lex_state = 13, .external_lex_state = 4}, - [2399] = {.lex_state = 13, .external_lex_state = 4}, - [2400] = {.lex_state = 7, .external_lex_state = 2}, - [2401] = {.lex_state = 7, .external_lex_state = 2}, - [2402] = {.lex_state = 13}, - [2403] = {.lex_state = 13, .external_lex_state = 4}, - [2404] = {.lex_state = 13, .external_lex_state = 4}, - [2405] = {.lex_state = 7, .external_lex_state = 2}, - [2406] = {.lex_state = 93}, - [2407] = {.lex_state = 7, .external_lex_state = 3}, - [2408] = {.lex_state = 13, .external_lex_state = 4}, - [2409] = {.lex_state = 13, .external_lex_state = 4}, - [2410] = {.lex_state = 13, .external_lex_state = 4}, - [2411] = {.lex_state = 7, .external_lex_state = 3}, - [2412] = {.lex_state = 13, .external_lex_state = 4}, - [2413] = {.lex_state = 13, .external_lex_state = 4}, - [2414] = {.lex_state = 13, .external_lex_state = 4}, - [2415] = {.lex_state = 7, .external_lex_state = 2}, - [2416] = {.lex_state = 13}, - [2417] = {.lex_state = 7, .external_lex_state = 2}, - [2418] = {.lex_state = 13}, - [2419] = {.lex_state = 13}, - [2420] = {.lex_state = 7, .external_lex_state = 2}, - [2421] = {.lex_state = 13}, - [2422] = {.lex_state = 13}, - [2423] = {.lex_state = 7, .external_lex_state = 2}, - [2424] = {.lex_state = 7, .external_lex_state = 2}, - [2425] = {.lex_state = 93}, - [2426] = {.lex_state = 93}, - [2427] = {.lex_state = 13}, - [2428] = {.lex_state = 13}, - [2429] = {.lex_state = 13}, - [2430] = {.lex_state = 13}, - [2431] = {.lex_state = 13}, - [2432] = {.lex_state = 13}, - [2433] = {.lex_state = 13}, - [2434] = {.lex_state = 13}, - [2435] = {.lex_state = 13}, - [2436] = {.lex_state = 13}, - [2437] = {.lex_state = 8, .external_lex_state = 2}, - [2438] = {.lex_state = 93}, - [2439] = {.lex_state = 7, .external_lex_state = 2}, - [2440] = {.lex_state = 7, .external_lex_state = 2}, - [2441] = {.lex_state = 7, .external_lex_state = 2}, - [2442] = {.lex_state = 7, .external_lex_state = 2}, - [2443] = {.lex_state = 13}, - [2444] = {.lex_state = 13}, - [2445] = {.lex_state = 13}, - [2446] = {.lex_state = 11}, - [2447] = {.lex_state = 13}, - [2448] = {.lex_state = 13}, - [2449] = {.lex_state = 13}, - [2450] = {.lex_state = 93}, - [2451] = {.lex_state = 13}, - [2452] = {.lex_state = 11}, - [2453] = {.lex_state = 11}, - [2454] = {.lex_state = 11}, - [2455] = {.lex_state = 13}, - [2456] = {.lex_state = 93}, - [2457] = {.lex_state = 93}, - [2458] = {.lex_state = 13}, - [2459] = {.lex_state = 93}, - [2460] = {.lex_state = 93}, - [2461] = {.lex_state = 13}, - [2462] = {.lex_state = 93}, - [2463] = {.lex_state = 5}, - [2464] = {.lex_state = 13}, - [2465] = {.lex_state = 93}, - [2466] = {.lex_state = 93}, - [2467] = {.lex_state = 13}, - [2468] = {.lex_state = 93}, - [2469] = {.lex_state = 5}, - [2470] = {.lex_state = 93}, - [2471] = {.lex_state = 93}, - [2472] = {.lex_state = 93}, - [2473] = {.lex_state = 93}, - [2474] = {.lex_state = 93}, - [2475] = {.lex_state = 13}, - [2476] = {.lex_state = 93}, - [2477] = {.lex_state = 93}, - [2478] = {.lex_state = 93}, - [2479] = {.lex_state = 11}, - [2480] = {.lex_state = 11}, - [2481] = {.lex_state = 93, .external_lex_state = 4}, - [2482] = {.lex_state = 11}, - [2483] = {.lex_state = 13}, - [2484] = {.lex_state = 93, .external_lex_state = 4}, - [2485] = {.lex_state = 93, .external_lex_state = 4}, - [2486] = {.lex_state = 93}, - [2487] = {.lex_state = 11}, - [2488] = {.lex_state = 11}, - [2489] = {.lex_state = 11}, - [2490] = {.lex_state = 11}, - [2491] = {.lex_state = 11}, - [2492] = {.lex_state = 93}, - [2493] = {.lex_state = 11}, - [2494] = {.lex_state = 11}, - [2495] = {.lex_state = 11}, - [2496] = {.lex_state = 11}, - [2497] = {.lex_state = 93}, - [2498] = {.lex_state = 93}, - [2499] = {.lex_state = 93}, - [2500] = {.lex_state = 93}, - [2501] = {.lex_state = 93}, - [2502] = {.lex_state = 11}, - [2503] = {.lex_state = 11}, - [2504] = {.lex_state = 93}, - [2505] = {.lex_state = 11}, - [2506] = {.lex_state = 93, .external_lex_state = 4}, - [2507] = {.lex_state = 93}, - [2508] = {.lex_state = 93}, - [2509] = {.lex_state = 93}, - [2510] = {.lex_state = 93}, - [2511] = {.lex_state = 93}, - [2512] = {.lex_state = 93}, - [2513] = {.lex_state = 93}, - [2514] = {.lex_state = 93}, - [2515] = {.lex_state = 93}, - [2516] = {.lex_state = 93}, - [2517] = {.lex_state = 93}, - [2518] = {.lex_state = 93}, - [2519] = {.lex_state = 93}, - [2520] = {.lex_state = 93}, - [2521] = {.lex_state = 93}, - [2522] = {.lex_state = 93}, - [2523] = {.lex_state = 93}, - [2524] = {.lex_state = 93, .external_lex_state = 4}, - [2525] = {.lex_state = 93}, - [2526] = {.lex_state = 93}, - [2527] = {.lex_state = 93}, - [2528] = {.lex_state = 93}, - [2529] = {.lex_state = 93}, - [2530] = {.lex_state = 93, .external_lex_state = 4}, - [2531] = {.lex_state = 93, .external_lex_state = 4}, - [2532] = {.lex_state = 93, .external_lex_state = 4}, - [2533] = {.lex_state = 93}, - [2534] = {.lex_state = 93}, - [2535] = {.lex_state = 93}, - [2536] = {.lex_state = 93, .external_lex_state = 4}, - [2537] = {.lex_state = 93}, - [2538] = {.lex_state = 93}, - [2539] = {.lex_state = 93}, - [2540] = {.lex_state = 93}, - [2541] = {.lex_state = 93, .external_lex_state = 4}, - [2542] = {.lex_state = 93, .external_lex_state = 4}, - [2543] = {.lex_state = 93}, - [2544] = {.lex_state = 93}, - [2545] = {.lex_state = 93, .external_lex_state = 4}, - [2546] = {.lex_state = 93, .external_lex_state = 4}, - [2547] = {.lex_state = 93}, - [2548] = {.lex_state = 93}, - [2549] = {.lex_state = 93}, - [2550] = {.lex_state = 93}, - [2551] = {.lex_state = 93}, - [2552] = {.lex_state = 11}, - [2553] = {.lex_state = 93}, - [2554] = {.lex_state = 11}, - [2555] = {.lex_state = 93}, - [2556] = {.lex_state = 93}, - [2557] = {.lex_state = 93}, - [2558] = {.lex_state = 93}, - [2559] = {.lex_state = 93}, - [2560] = {.lex_state = 93}, - [2561] = {.lex_state = 93}, - [2562] = {.lex_state = 93}, - [2563] = {.lex_state = 93}, - [2564] = {.lex_state = 93}, - [2565] = {.lex_state = 93}, - [2566] = {.lex_state = 93, .external_lex_state = 4}, - [2567] = {.lex_state = 93}, - [2568] = {.lex_state = 93}, - [2569] = {.lex_state = 93}, - [2570] = {.lex_state = 93}, - [2571] = {.lex_state = 93}, - [2572] = {.lex_state = 93}, - [2573] = {.lex_state = 93}, - [2574] = {.lex_state = 93}, - [2575] = {.lex_state = 93}, - [2576] = {.lex_state = 93}, - [2577] = {.lex_state = 93}, - [2578] = {.lex_state = 93}, - [2579] = {.lex_state = 93}, - [2580] = {.lex_state = 93}, - [2581] = {.lex_state = 93}, - [2582] = {.lex_state = 93}, - [2583] = {.lex_state = 93}, - [2584] = {.lex_state = 93}, - [2585] = {.lex_state = 93}, - [2586] = {.lex_state = 93}, - [2587] = {.lex_state = 93}, - [2588] = {.lex_state = 93}, - [2589] = {.lex_state = 93}, - [2590] = {.lex_state = 93}, - [2591] = {.lex_state = 93}, - [2592] = {.lex_state = 93}, - [2593] = {.lex_state = 93}, - [2594] = {.lex_state = 93}, - [2595] = {.lex_state = 93}, - [2596] = {.lex_state = 93}, - [2597] = {.lex_state = 93}, - [2598] = {.lex_state = 93}, - [2599] = {.lex_state = 93}, - [2600] = {.lex_state = 93}, - [2601] = {.lex_state = 93}, - [2602] = {.lex_state = 93}, - [2603] = {.lex_state = 93}, - [2604] = {.lex_state = 93}, - [2605] = {.lex_state = 93}, - [2606] = {.lex_state = 93}, - [2607] = {.lex_state = 93}, - [2608] = {.lex_state = 93}, - [2609] = {.lex_state = 93}, - [2610] = {.lex_state = 93}, - [2611] = {.lex_state = 93}, - [2612] = {.lex_state = 93}, - [2613] = {.lex_state = 93}, - [2614] = {.lex_state = 93}, - [2615] = {.lex_state = 93}, - [2616] = {.lex_state = 93}, - [2617] = {.lex_state = 93}, - [2618] = {.lex_state = 93}, - [2619] = {.lex_state = 93}, - [2620] = {.lex_state = 93}, - [2621] = {.lex_state = 93}, - [2622] = {.lex_state = 93}, - [2623] = {.lex_state = 93}, - [2624] = {.lex_state = 93}, - [2625] = {.lex_state = 93}, - [2626] = {.lex_state = 93}, - [2627] = {.lex_state = 93}, - [2628] = {.lex_state = 93}, - [2629] = {.lex_state = 93}, - [2630] = {.lex_state = 93}, - [2631] = {.lex_state = 93}, - [2632] = {.lex_state = 93}, - [2633] = {.lex_state = 93}, - [2634] = {.lex_state = 93}, - [2635] = {.lex_state = 93}, - [2636] = {.lex_state = 93}, - [2637] = {.lex_state = 93}, - [2638] = {.lex_state = 93}, - [2639] = {.lex_state = 93}, - [2640] = {.lex_state = 93}, - [2641] = {.lex_state = 93}, - [2642] = {.lex_state = 93}, - [2643] = {.lex_state = 93}, - [2644] = {.lex_state = 93}, - [2645] = {.lex_state = 93}, - [2646] = {.lex_state = 93}, - [2647] = {.lex_state = 93}, - [2648] = {.lex_state = 93}, - [2649] = {.lex_state = 93}, - [2650] = {.lex_state = 93}, - [2651] = {.lex_state = 93}, - [2652] = {.lex_state = 93}, - [2653] = {.lex_state = 93}, - [2654] = {.lex_state = 93}, - [2655] = {.lex_state = 93}, - [2656] = {.lex_state = 93}, - [2657] = {.lex_state = 93}, - [2658] = {.lex_state = 93}, - [2659] = {.lex_state = 93}, - [2660] = {.lex_state = 93}, - [2661] = {.lex_state = 93}, - [2662] = {.lex_state = 93}, - [2663] = {.lex_state = 93}, - [2664] = {.lex_state = 93}, - [2665] = {.lex_state = 93}, - [2666] = {.lex_state = 93}, - [2667] = {.lex_state = 93}, - [2668] = {.lex_state = 93}, - [2669] = {.lex_state = 93}, - [2670] = {.lex_state = 93}, - [2671] = {.lex_state = 93}, - [2672] = {.lex_state = 93}, - [2673] = {.lex_state = 93}, - [2674] = {.lex_state = 93}, - [2675] = {.lex_state = 93}, - [2676] = {.lex_state = 93}, - [2677] = {.lex_state = 93}, - [2678] = {.lex_state = 93}, - [2679] = {.lex_state = 93}, - [2680] = {.lex_state = 93}, - [2681] = {.lex_state = 93}, - [2682] = {.lex_state = 93}, - [2683] = {.lex_state = 93}, - [2684] = {.lex_state = 93}, - [2685] = {.lex_state = 93}, - [2686] = {.lex_state = 93}, - [2687] = {.lex_state = 93}, - [2688] = {.lex_state = 93}, - [2689] = {.lex_state = 93}, - [2690] = {.lex_state = 93}, - [2691] = {.lex_state = 93}, - [2692] = {.lex_state = 93}, - [2693] = {.lex_state = 93}, - [2694] = {.lex_state = 93}, - [2695] = {.lex_state = 93}, - [2696] = {.lex_state = 93}, - [2697] = {.lex_state = 93}, - [2698] = {.lex_state = 93}, - [2699] = {.lex_state = 93}, - [2700] = {.lex_state = 93}, - [2701] = {.lex_state = 93}, - [2702] = {.lex_state = 93}, - [2703] = {.lex_state = 93}, - [2704] = {.lex_state = 93}, - [2705] = {.lex_state = 93}, - [2706] = {.lex_state = 93}, - [2707] = {.lex_state = 93}, - [2708] = {.lex_state = 93}, - [2709] = {.lex_state = 93}, - [2710] = {.lex_state = 93}, - [2711] = {.lex_state = 93}, - [2712] = {.lex_state = 93}, - [2713] = {.lex_state = 93}, - [2714] = {.lex_state = 93}, - [2715] = {.lex_state = 93}, - [2716] = {.lex_state = 93}, - [2717] = {.lex_state = 93}, - [2718] = {.lex_state = 93}, - [2719] = {.lex_state = 93}, - [2720] = {.lex_state = 93}, - [2721] = {.lex_state = 93}, - [2722] = {.lex_state = 93}, - [2723] = {.lex_state = 93}, - [2724] = {.lex_state = 93}, - [2725] = {.lex_state = 93}, - [2726] = {.lex_state = 93}, - [2727] = {.lex_state = 93}, - [2728] = {.lex_state = 93}, - [2729] = {.lex_state = 93}, - [2730] = {.lex_state = 93}, - [2731] = {.lex_state = 93}, - [2732] = {.lex_state = 93}, - [2733] = {.lex_state = 93}, - [2734] = {.lex_state = 93}, - [2735] = {.lex_state = 93}, - [2736] = {.lex_state = 93}, - [2737] = {.lex_state = 93}, - [2738] = {.lex_state = 93}, - [2739] = {.lex_state = 93}, - [2740] = {.lex_state = 93}, - [2741] = {.lex_state = 93}, - [2742] = {.lex_state = 93}, - [2743] = {.lex_state = 93}, - [2744] = {.lex_state = 93}, - [2745] = {.lex_state = 93}, - [2746] = {.lex_state = 93}, - [2747] = {.lex_state = 93}, - [2748] = {.lex_state = 93}, - [2749] = {.lex_state = 93}, - [2750] = {.lex_state = 93}, - [2751] = {.lex_state = 93}, - [2752] = {.lex_state = 93}, - [2753] = {.lex_state = 93}, - [2754] = {.lex_state = 93}, - [2755] = {.lex_state = 93}, - [2756] = {.lex_state = 93}, - [2757] = {.lex_state = 93}, - [2758] = {.lex_state = 93}, - [2759] = {.lex_state = 93}, - [2760] = {.lex_state = 93}, - [2761] = {.lex_state = 93}, - [2762] = {.lex_state = 93}, - [2763] = {.lex_state = 93}, - [2764] = {.lex_state = 93}, - [2765] = {.lex_state = 93}, - [2766] = {.lex_state = 93}, - [2767] = {.lex_state = 93}, - [2768] = {.lex_state = 93}, - [2769] = {.lex_state = 93}, - [2770] = {.lex_state = 93}, - [2771] = {.lex_state = 93}, - [2772] = {.lex_state = 5}, - [2773] = {.lex_state = 93}, - [2774] = {.lex_state = 93, .external_lex_state = 4}, - [2775] = {.lex_state = 93}, - [2776] = {.lex_state = 93}, - [2777] = {.lex_state = 93}, - [2778] = {.lex_state = 93}, - [2779] = {.lex_state = 93}, - [2780] = {.lex_state = 93}, - [2781] = {.lex_state = 93}, - [2782] = {.lex_state = 93}, - [2783] = {.lex_state = 5}, - [2784] = {.lex_state = 93}, - [2785] = {.lex_state = 5}, - [2786] = {.lex_state = 93}, - [2787] = {.lex_state = 93}, - [2788] = {.lex_state = 93}, - [2789] = {.lex_state = 93}, - [2790] = {.lex_state = 93}, - [2791] = {.lex_state = 12}, - [2792] = {.lex_state = 12}, - [2793] = {.lex_state = 20}, - [2794] = {.lex_state = 20}, - [2795] = {.lex_state = 20}, - [2796] = {.lex_state = 20}, - [2797] = {.lex_state = 20}, - [2798] = {.lex_state = 20}, - [2799] = {.lex_state = 20}, - [2800] = {.lex_state = 20}, - [2801] = {.lex_state = 20}, - [2802] = {.lex_state = 20}, - [2803] = {.lex_state = 20}, - [2804] = {.lex_state = 20}, - [2805] = {.lex_state = 20}, - [2806] = {.lex_state = 16}, - [2807] = {.lex_state = 20}, - [2808] = {.lex_state = 16, .external_lex_state = 4}, - [2809] = {.lex_state = 20}, - [2810] = {.lex_state = 20}, - [2811] = {.lex_state = 20}, - [2812] = {.lex_state = 20}, - [2813] = {.lex_state = 20}, - [2814] = {.lex_state = 20}, - [2815] = {.lex_state = 20}, - [2816] = {.lex_state = 20}, - [2817] = {.lex_state = 16, .external_lex_state = 4}, - [2818] = {.lex_state = 20}, - [2819] = {.lex_state = 20}, - [2820] = {.lex_state = 20}, - [2821] = {.lex_state = 20}, - [2822] = {.lex_state = 20}, - [2823] = {.lex_state = 20}, - [2824] = {.lex_state = 20}, - [2825] = {.lex_state = 20}, - [2826] = {.lex_state = 20}, - [2827] = {.lex_state = 20}, - [2828] = {.lex_state = 20}, - [2829] = {.lex_state = 20}, - [2830] = {.lex_state = 20}, - [2831] = {.lex_state = 20}, - [2832] = {.lex_state = 20}, - [2833] = {.lex_state = 20}, - [2834] = {.lex_state = 20}, - [2835] = {.lex_state = 20}, - [2836] = {.lex_state = 20}, - [2837] = {.lex_state = 20}, - [2838] = {.lex_state = 20}, - [2839] = {.lex_state = 20}, - [2840] = {.lex_state = 16}, - [2841] = {.lex_state = 12}, - [2842] = {.lex_state = 11}, - [2843] = {.lex_state = 93}, - [2844] = {.lex_state = 11}, - [2845] = {.lex_state = 93}, - [2846] = {.lex_state = 16, .external_lex_state = 4}, - [2847] = {.lex_state = 93}, - [2848] = {.lex_state = 11}, - [2849] = {.lex_state = 11}, - [2850] = {.lex_state = 11}, - [2851] = {.lex_state = 93}, - [2852] = {.lex_state = 11}, - [2853] = {.lex_state = 11}, - [2854] = {.lex_state = 93}, - [2855] = {.lex_state = 11}, - [2856] = {.lex_state = 11}, - [2857] = {.lex_state = 11}, - [2858] = {.lex_state = 11}, - [2859] = {.lex_state = 93}, - [2860] = {.lex_state = 11}, - [2861] = {.lex_state = 11}, - [2862] = {.lex_state = 20, .external_lex_state = 4}, - [2863] = {.lex_state = 20, .external_lex_state = 4}, - [2864] = {.lex_state = 11}, - [2865] = {.lex_state = 11}, - [2866] = {.lex_state = 11}, - [2867] = {.lex_state = 11}, - [2868] = {.lex_state = 11}, - [2869] = {.lex_state = 93}, - [2870] = {.lex_state = 20, .external_lex_state = 4}, - [2871] = {.lex_state = 11}, - [2872] = {.lex_state = 93}, - [2873] = {.lex_state = 11}, - [2874] = {.lex_state = 11}, - [2875] = {.lex_state = 11}, - [2876] = {.lex_state = 11}, - [2877] = {.lex_state = 11}, - [2878] = {.lex_state = 11}, - [2879] = {.lex_state = 11}, - [2880] = {.lex_state = 11}, - [2881] = {.lex_state = 93}, - [2882] = {.lex_state = 11}, - [2883] = {.lex_state = 11}, - [2884] = {.lex_state = 11}, - [2885] = {.lex_state = 11}, - [2886] = {.lex_state = 11}, - [2887] = {.lex_state = 20, .external_lex_state = 4}, - [2888] = {.lex_state = 20, .external_lex_state = 4}, - [2889] = {.lex_state = 93}, - [2890] = {.lex_state = 93}, - [2891] = {.lex_state = 11}, - [2892] = {.lex_state = 11}, - [2893] = {.lex_state = 20, .external_lex_state = 4}, - [2894] = {.lex_state = 93}, - [2895] = {.lex_state = 93}, - [2896] = {.lex_state = 11}, - [2897] = {.lex_state = 93}, - [2898] = {.lex_state = 93}, - [2899] = {.lex_state = 11}, - [2900] = {.lex_state = 11}, - [2901] = {.lex_state = 93}, - [2902] = {.lex_state = 93}, - [2903] = {.lex_state = 20, .external_lex_state = 4}, - [2904] = {.lex_state = 20, .external_lex_state = 4}, - [2905] = {.lex_state = 20, .external_lex_state = 4}, - [2906] = {.lex_state = 20, .external_lex_state = 4}, - [2907] = {.lex_state = 93}, - [2908] = {.lex_state = 20, .external_lex_state = 4}, - [2909] = {.lex_state = 13, .external_lex_state = 4}, - [2910] = {.lex_state = 11}, - [2911] = {.lex_state = 13, .external_lex_state = 4}, - [2912] = {.lex_state = 11}, - [2913] = {.lex_state = 93}, - [2914] = {.lex_state = 13, .external_lex_state = 4}, - [2915] = {.lex_state = 20, .external_lex_state = 4}, - [2916] = {.lex_state = 93}, - [2917] = {.lex_state = 13, .external_lex_state = 4}, - [2918] = {.lex_state = 93}, - [2919] = {.lex_state = 20, .external_lex_state = 4}, - [2920] = {.lex_state = 20, .external_lex_state = 4}, - [2921] = {.lex_state = 20, .external_lex_state = 4}, - [2922] = {.lex_state = 11}, - [2923] = {.lex_state = 93}, - [2924] = {.lex_state = 93}, - [2925] = {.lex_state = 20, .external_lex_state = 4}, - [2926] = {.lex_state = 20, .external_lex_state = 4}, - [2927] = {.lex_state = 20, .external_lex_state = 4}, - [2928] = {.lex_state = 93}, - [2929] = {.lex_state = 20, .external_lex_state = 4}, - [2930] = {.lex_state = 20, .external_lex_state = 4}, - [2931] = {.lex_state = 20, .external_lex_state = 4}, - [2932] = {.lex_state = 93}, - [2933] = {.lex_state = 20, .external_lex_state = 4}, - [2934] = {.lex_state = 20, .external_lex_state = 4}, - [2935] = {.lex_state = 20, .external_lex_state = 4}, - [2936] = {.lex_state = 93}, - [2937] = {.lex_state = 20, .external_lex_state = 4}, - [2938] = {.lex_state = 13, .external_lex_state = 4}, - [2939] = {.lex_state = 20, .external_lex_state = 4}, - [2940] = {.lex_state = 13, .external_lex_state = 4}, - [2941] = {.lex_state = 20, .external_lex_state = 4}, - [2942] = {.lex_state = 20, .external_lex_state = 4}, - [2943] = {.lex_state = 93}, - [2944] = {.lex_state = 20, .external_lex_state = 4}, - [2945] = {.lex_state = 93}, - [2946] = {.lex_state = 20, .external_lex_state = 4}, - [2947] = {.lex_state = 20, .external_lex_state = 4}, - [2948] = {.lex_state = 20, .external_lex_state = 4}, - [2949] = {.lex_state = 20, .external_lex_state = 4}, - [2950] = {.lex_state = 20, .external_lex_state = 4}, - [2951] = {.lex_state = 13, .external_lex_state = 4}, - [2952] = {.lex_state = 20, .external_lex_state = 4}, - [2953] = {.lex_state = 20, .external_lex_state = 4}, - [2954] = {.lex_state = 93}, - [2955] = {.lex_state = 20, .external_lex_state = 4}, - [2956] = {.lex_state = 16, .external_lex_state = 4}, - [2957] = {.lex_state = 20, .external_lex_state = 4}, - [2958] = {.lex_state = 13, .external_lex_state = 4}, - [2959] = {.lex_state = 13, .external_lex_state = 4}, - [2960] = {.lex_state = 20, .external_lex_state = 4}, - [2961] = {.lex_state = 13, .external_lex_state = 4}, - [2962] = {.lex_state = 93}, - [2963] = {.lex_state = 93}, - [2964] = {.lex_state = 12, .external_lex_state = 4}, - [2965] = {.lex_state = 20, .external_lex_state = 4}, - [2966] = {.lex_state = 16, .external_lex_state = 4}, - [2967] = {.lex_state = 13, .external_lex_state = 4}, - [2968] = {.lex_state = 20, .external_lex_state = 4}, - [2969] = {.lex_state = 20, .external_lex_state = 5}, - [2970] = {.lex_state = 20, .external_lex_state = 4}, - [2971] = {.lex_state = 13, .external_lex_state = 4}, - [2972] = {.lex_state = 20, .external_lex_state = 5}, - [2973] = {.lex_state = 93}, - [2974] = {.lex_state = 13, .external_lex_state = 4}, - [2975] = {.lex_state = 20, .external_lex_state = 5}, - [2976] = {.lex_state = 16}, - [2977] = {.lex_state = 20, .external_lex_state = 4}, - [2978] = {.lex_state = 20, .external_lex_state = 4}, - [2979] = {.lex_state = 13, .external_lex_state = 4}, - [2980] = {.lex_state = 13, .external_lex_state = 4}, - [2981] = {.lex_state = 13, .external_lex_state = 4}, - [2982] = {.lex_state = 13, .external_lex_state = 4}, - [2983] = {.lex_state = 16, .external_lex_state = 5}, - [2984] = {.lex_state = 13, .external_lex_state = 4}, - [2985] = {.lex_state = 20, .external_lex_state = 5}, - [2986] = {.lex_state = 20, .external_lex_state = 5}, - [2987] = {.lex_state = 13, .external_lex_state = 4}, - [2988] = {.lex_state = 13, .external_lex_state = 4}, - [2989] = {.lex_state = 20, .external_lex_state = 5}, - [2990] = {.lex_state = 13, .external_lex_state = 4}, - [2991] = {.lex_state = 20, .external_lex_state = 5}, - [2992] = {.lex_state = 13, .external_lex_state = 4}, - [2993] = {.lex_state = 20, .external_lex_state = 5}, - [2994] = {.lex_state = 20, .external_lex_state = 5}, - [2995] = {.lex_state = 20, .external_lex_state = 5}, - [2996] = {.lex_state = 20, .external_lex_state = 5}, - [2997] = {.lex_state = 20, .external_lex_state = 5}, - [2998] = {.lex_state = 13, .external_lex_state = 4}, - [2999] = {.lex_state = 13, .external_lex_state = 4}, - [3000] = {.lex_state = 13, .external_lex_state = 4}, - [3001] = {.lex_state = 20, .external_lex_state = 5}, - [3002] = {.lex_state = 13, .external_lex_state = 4}, - [3003] = {.lex_state = 20, .external_lex_state = 5}, - [3004] = {.lex_state = 20, .external_lex_state = 5}, - [3005] = {.lex_state = 20, .external_lex_state = 5}, - [3006] = {.lex_state = 20, .external_lex_state = 5}, - [3007] = {.lex_state = 20, .external_lex_state = 5}, - [3008] = {.lex_state = 20, .external_lex_state = 5}, - [3009] = {.lex_state = 20, .external_lex_state = 5}, - [3010] = {.lex_state = 20, .external_lex_state = 5}, - [3011] = {.lex_state = 13, .external_lex_state = 4}, - [3012] = {.lex_state = 20, .external_lex_state = 5}, - [3013] = {.lex_state = 13, .external_lex_state = 4}, - [3014] = {.lex_state = 20, .external_lex_state = 5}, - [3015] = {.lex_state = 20, .external_lex_state = 5}, - [3016] = {.lex_state = 20, .external_lex_state = 5}, - [3017] = {.lex_state = 20, .external_lex_state = 5}, - [3018] = {.lex_state = 13, .external_lex_state = 4}, - [3019] = {.lex_state = 20, .external_lex_state = 5}, - [3020] = {.lex_state = 20, .external_lex_state = 5}, - [3021] = {.lex_state = 20, .external_lex_state = 5}, - [3022] = {.lex_state = 20, .external_lex_state = 5}, - [3023] = {.lex_state = 20, .external_lex_state = 5}, - [3024] = {.lex_state = 13, .external_lex_state = 4}, - [3025] = {.lex_state = 20, .external_lex_state = 5}, - [3026] = {.lex_state = 20, .external_lex_state = 5}, - [3027] = {.lex_state = 20, .external_lex_state = 5}, - [3028] = {.lex_state = 20, .external_lex_state = 5}, - [3029] = {.lex_state = 13, .external_lex_state = 4}, - [3030] = {.lex_state = 11, .external_lex_state = 4}, - [3031] = {.lex_state = 13, .external_lex_state = 4}, - [3032] = {.lex_state = 13, .external_lex_state = 4}, - [3033] = {.lex_state = 13, .external_lex_state = 4}, - [3034] = {.lex_state = 16, .external_lex_state = 5}, - [3035] = {.lex_state = 11, .external_lex_state = 4}, - [3036] = {.lex_state = 16}, - [3037] = {.lex_state = 13, .external_lex_state = 4}, - [3038] = {.lex_state = 13, .external_lex_state = 4}, - [3039] = {.lex_state = 11, .external_lex_state = 4}, - [3040] = {.lex_state = 13, .external_lex_state = 4}, - [3041] = {.lex_state = 13, .external_lex_state = 4}, - [3042] = {.lex_state = 20, .external_lex_state = 5}, - [3043] = {.lex_state = 13, .external_lex_state = 4}, - [3044] = {.lex_state = 13, .external_lex_state = 4}, - [3045] = {.lex_state = 20, .external_lex_state = 5}, - [3046] = {.lex_state = 11, .external_lex_state = 4}, - [3047] = {.lex_state = 11, .external_lex_state = 4}, - [3048] = {.lex_state = 11, .external_lex_state = 4}, - [3049] = {.lex_state = 11, .external_lex_state = 4}, - [3050] = {.lex_state = 11, .external_lex_state = 4}, - [3051] = {.lex_state = 11, .external_lex_state = 4}, - [3052] = {.lex_state = 11, .external_lex_state = 4}, - [3053] = {.lex_state = 20, .external_lex_state = 5}, - [3054] = {.lex_state = 11, .external_lex_state = 4}, - [3055] = {.lex_state = 11, .external_lex_state = 4}, - [3056] = {.lex_state = 11, .external_lex_state = 4}, - [3057] = {.lex_state = 11, .external_lex_state = 4}, - [3058] = {.lex_state = 11, .external_lex_state = 4}, - [3059] = {.lex_state = 20, .external_lex_state = 5}, - [3060] = {.lex_state = 11, .external_lex_state = 4}, - [3061] = {.lex_state = 11, .external_lex_state = 4}, - [3062] = {.lex_state = 11, .external_lex_state = 4}, - [3063] = {.lex_state = 11, .external_lex_state = 4}, - [3064] = {.lex_state = 11, .external_lex_state = 4}, - [3065] = {.lex_state = 12, .external_lex_state = 5}, - [3066] = {.lex_state = 11, .external_lex_state = 4}, - [3067] = {.lex_state = 11, .external_lex_state = 4}, - [3068] = {.lex_state = 11, .external_lex_state = 4}, - [3069] = {.lex_state = 11, .external_lex_state = 4}, - [3070] = {.lex_state = 11, .external_lex_state = 4}, - [3071] = {.lex_state = 16, .external_lex_state = 5}, - [3072] = {.lex_state = 11, .external_lex_state = 4}, - [3073] = {.lex_state = 21}, - [3074] = {.lex_state = 11, .external_lex_state = 4}, - [3075] = {.lex_state = 11, .external_lex_state = 4}, - [3076] = {.lex_state = 11, .external_lex_state = 4}, - [3077] = {.lex_state = 13, .external_lex_state = 4}, - [3078] = {.lex_state = 11, .external_lex_state = 4}, - [3079] = {.lex_state = 20, .external_lex_state = 5}, - [3080] = {.lex_state = 11, .external_lex_state = 4}, - [3081] = {.lex_state = 20, .external_lex_state = 5}, - [3082] = {.lex_state = 11, .external_lex_state = 4}, - [3083] = {.lex_state = 11, .external_lex_state = 4}, - [3084] = {.lex_state = 11, .external_lex_state = 4}, - [3085] = {.lex_state = 11, .external_lex_state = 4}, - [3086] = {.lex_state = 11, .external_lex_state = 4}, - [3087] = {.lex_state = 11, .external_lex_state = 4}, - [3088] = {.lex_state = 11, .external_lex_state = 4}, - [3089] = {.lex_state = 20, .external_lex_state = 5}, - [3090] = {.lex_state = 11, .external_lex_state = 4}, - [3091] = {.lex_state = 20, .external_lex_state = 5}, - [3092] = {.lex_state = 11, .external_lex_state = 4}, - [3093] = {.lex_state = 11, .external_lex_state = 4}, - [3094] = {.lex_state = 11, .external_lex_state = 4}, - [3095] = {.lex_state = 11, .external_lex_state = 4}, - [3096] = {.lex_state = 13, .external_lex_state = 4}, - [3097] = {.lex_state = 11, .external_lex_state = 4}, - [3098] = {.lex_state = 11, .external_lex_state = 4}, - [3099] = {.lex_state = 11, .external_lex_state = 4}, - [3100] = {.lex_state = 20, .external_lex_state = 5}, - [3101] = {.lex_state = 11, .external_lex_state = 4}, - [3102] = {.lex_state = 11, .external_lex_state = 4}, - [3103] = {.lex_state = 5}, - [3104] = {.lex_state = 11, .external_lex_state = 4}, - [3105] = {.lex_state = 13, .external_lex_state = 4}, - [3106] = {.lex_state = 11, .external_lex_state = 5}, - [3107] = {.lex_state = 11, .external_lex_state = 5}, - [3108] = {.lex_state = 12}, - [3109] = {.lex_state = 11, .external_lex_state = 4}, - [3110] = {.lex_state = 12}, - [3111] = {.lex_state = 11}, - [3112] = {.lex_state = 12}, - [3113] = {.lex_state = 11, .external_lex_state = 4}, - [3114] = {.lex_state = 11, .external_lex_state = 4}, - [3115] = {.lex_state = 12}, - [3116] = {.lex_state = 11}, - [3117] = {.lex_state = 12}, - [3118] = {.lex_state = 12}, - [3119] = {.lex_state = 12}, - [3120] = {.lex_state = 12}, - [3121] = {.lex_state = 12}, - [3122] = {.lex_state = 12}, - [3123] = {.lex_state = 12}, - [3124] = {.lex_state = 93}, - [3125] = {.lex_state = 11, .external_lex_state = 4}, - [3126] = {.lex_state = 12}, - [3127] = {.lex_state = 16}, - [3128] = {.lex_state = 93}, - [3129] = {.lex_state = 11, .external_lex_state = 5}, - [3130] = {.lex_state = 12}, - [3131] = {.lex_state = 11, .external_lex_state = 5}, - [3132] = {.lex_state = 12}, - [3133] = {.lex_state = 11, .external_lex_state = 5}, - [3134] = {.lex_state = 11, .external_lex_state = 5}, - [3135] = {.lex_state = 11}, - [3136] = {.lex_state = 12}, - [3137] = {.lex_state = 11}, - [3138] = {.lex_state = 12}, - [3139] = {.lex_state = 11, .external_lex_state = 5}, - [3140] = {.lex_state = 13}, - [3141] = {.lex_state = 12}, - [3142] = {.lex_state = 93}, - [3143] = {.lex_state = 16}, - [3144] = {.lex_state = 11, .external_lex_state = 5}, - [3145] = {.lex_state = 11, .external_lex_state = 4}, - [3146] = {.lex_state = 12}, - [3147] = {.lex_state = 11}, - [3148] = {.lex_state = 15}, - [3149] = {.lex_state = 11, .external_lex_state = 4}, - [3150] = {.lex_state = 93, .external_lex_state = 4}, - [3151] = {.lex_state = 11, .external_lex_state = 5}, - [3152] = {.lex_state = 11, .external_lex_state = 5}, - [3153] = {.lex_state = 93, .external_lex_state = 4}, - [3154] = {.lex_state = 11, .external_lex_state = 5}, - [3155] = {.lex_state = 15}, - [3156] = {.lex_state = 11, .external_lex_state = 5}, - [3157] = {.lex_state = 11, .external_lex_state = 5}, - [3158] = {.lex_state = 11, .external_lex_state = 5}, - [3159] = {.lex_state = 11, .external_lex_state = 5}, - [3160] = {.lex_state = 11, .external_lex_state = 5}, - [3161] = {.lex_state = 11, .external_lex_state = 5}, - [3162] = {.lex_state = 12}, - [3163] = {.lex_state = 93}, - [3164] = {.lex_state = 11, .external_lex_state = 5}, - [3165] = {.lex_state = 11, .external_lex_state = 5}, - [3166] = {.lex_state = 11, .external_lex_state = 5}, - [3167] = {.lex_state = 5, .external_lex_state = 4}, - [3168] = {.lex_state = 12}, - [3169] = {.lex_state = 11, .external_lex_state = 5}, - [3170] = {.lex_state = 11, .external_lex_state = 5}, - [3171] = {.lex_state = 11, .external_lex_state = 5}, - [3172] = {.lex_state = 11, .external_lex_state = 5}, - [3173] = {.lex_state = 11, .external_lex_state = 5}, - [3174] = {.lex_state = 13}, - [3175] = {.lex_state = 11, .external_lex_state = 5}, - [3176] = {.lex_state = 12}, - [3177] = {.lex_state = 12}, - [3178] = {.lex_state = 11, .external_lex_state = 5}, - [3179] = {.lex_state = 93}, - [3180] = {.lex_state = 11, .external_lex_state = 5}, - [3181] = {.lex_state = 11, .external_lex_state = 5}, - [3182] = {.lex_state = 12}, - [3183] = {.lex_state = 12}, - [3184] = {.lex_state = 11, .external_lex_state = 5}, - [3185] = {.lex_state = 11, .external_lex_state = 5}, - [3186] = {.lex_state = 12}, - [3187] = {.lex_state = 11, .external_lex_state = 5}, - [3188] = {.lex_state = 15}, - [3189] = {.lex_state = 12}, - [3190] = {.lex_state = 11, .external_lex_state = 5}, - [3191] = {.lex_state = 13}, - [3192] = {.lex_state = 5}, - [3193] = {.lex_state = 11, .external_lex_state = 5}, - [3194] = {.lex_state = 13}, - [3195] = {.lex_state = 12}, - [3196] = {.lex_state = 13}, - [3197] = {.lex_state = 11, .external_lex_state = 5}, - [3198] = {.lex_state = 12}, - [3199] = {.lex_state = 13}, - [3200] = {.lex_state = 12}, - [3201] = {.lex_state = 11, .external_lex_state = 5}, - [3202] = {.lex_state = 11, .external_lex_state = 5}, - [3203] = {.lex_state = 11, .external_lex_state = 5}, - [3204] = {.lex_state = 11, .external_lex_state = 5}, - [3205] = {.lex_state = 11, .external_lex_state = 5}, - [3206] = {.lex_state = 11, .external_lex_state = 5}, - [3207] = {.lex_state = 11, .external_lex_state = 5}, - [3208] = {.lex_state = 12}, - [3209] = {.lex_state = 11, .external_lex_state = 4}, - [3210] = {.lex_state = 12}, - [3211] = {.lex_state = 12}, - [3212] = {.lex_state = 12}, - [3213] = {.lex_state = 12}, - [3214] = {.lex_state = 12}, - [3215] = {.lex_state = 11, .external_lex_state = 5}, - [3216] = {.lex_state = 11}, - [3217] = {.lex_state = 11}, - [3218] = {.lex_state = 11, .external_lex_state = 5}, - [3219] = {.lex_state = 13}, - [3220] = {.lex_state = 11}, - [3221] = {.lex_state = 11, .external_lex_state = 5}, - [3222] = {.lex_state = 11, .external_lex_state = 5}, - [3223] = {.lex_state = 11, .external_lex_state = 5}, - [3224] = {.lex_state = 93}, - [3225] = {.lex_state = 11, .external_lex_state = 4}, - [3226] = {.lex_state = 11, .external_lex_state = 5}, - [3227] = {.lex_state = 11, .external_lex_state = 5}, - [3228] = {.lex_state = 12}, - [3229] = {.lex_state = 12}, - [3230] = {.lex_state = 11, .external_lex_state = 5}, - [3231] = {.lex_state = 11, .external_lex_state = 4}, - [3232] = {.lex_state = 11, .external_lex_state = 5}, - [3233] = {.lex_state = 11, .external_lex_state = 5}, - [3234] = {.lex_state = 12}, - [3235] = {.lex_state = 11, .external_lex_state = 4}, - [3236] = {.lex_state = 18, .external_lex_state = 6}, - [3237] = {.lex_state = 93}, - [3238] = {.lex_state = 11, .external_lex_state = 5}, - [3239] = {.lex_state = 11}, - [3240] = {.lex_state = 18, .external_lex_state = 6}, - [3241] = {.lex_state = 18, .external_lex_state = 6}, - [3242] = {.lex_state = 11, .external_lex_state = 4}, - [3243] = {.lex_state = 93}, - [3244] = {.lex_state = 18, .external_lex_state = 6}, - [3245] = {.lex_state = 18, .external_lex_state = 6}, - [3246] = {.lex_state = 11}, - [3247] = {.lex_state = 11}, - [3248] = {.lex_state = 18, .external_lex_state = 6}, - [3249] = {.lex_state = 18, .external_lex_state = 6}, - [3250] = {.lex_state = 11}, - [3251] = {.lex_state = 11, .external_lex_state = 4}, - [3252] = {.lex_state = 18, .external_lex_state = 6}, - [3253] = {.lex_state = 13}, - [3254] = {.lex_state = 5, .external_lex_state = 4}, - [3255] = {.lex_state = 11}, - [3256] = {.lex_state = 11, .external_lex_state = 4}, - [3257] = {.lex_state = 93, .external_lex_state = 4}, - [3258] = {.lex_state = 11}, - [3259] = {.lex_state = 13}, - [3260] = {.lex_state = 11}, - [3261] = {.lex_state = 11}, - [3262] = {.lex_state = 13}, - [3263] = {.lex_state = 11}, - [3264] = {.lex_state = 13}, - [3265] = {.lex_state = 0, .external_lex_state = 4}, - [3266] = {.lex_state = 11}, - [3267] = {.lex_state = 13}, - [3268] = {.lex_state = 11}, - [3269] = {.lex_state = 5}, - [3270] = {.lex_state = 13}, - [3271] = {.lex_state = 11}, - [3272] = {.lex_state = 11, .external_lex_state = 4}, - [3273] = {.lex_state = 11, .external_lex_state = 4}, - [3274] = {.lex_state = 13}, - [3275] = {.lex_state = 93, .external_lex_state = 4}, - [3276] = {.lex_state = 11, .external_lex_state = 4}, - [3277] = {.lex_state = 11}, - [3278] = {.lex_state = 11}, - [3279] = {.lex_state = 11}, - [3280] = {.lex_state = 11}, - [3281] = {.lex_state = 13}, - [3282] = {.lex_state = 11, .external_lex_state = 4}, - [3283] = {.lex_state = 11}, - [3284] = {.lex_state = 0, .external_lex_state = 4}, - [3285] = {.lex_state = 11}, - [3286] = {.lex_state = 11}, - [3287] = {.lex_state = 11}, - [3288] = {.lex_state = 11, .external_lex_state = 4}, - [3289] = {.lex_state = 13}, - [3290] = {.lex_state = 11}, - [3291] = {.lex_state = 13}, - [3292] = {.lex_state = 11}, - [3293] = {.lex_state = 5}, - [3294] = {.lex_state = 93, .external_lex_state = 4}, - [3295] = {.lex_state = 13}, - [3296] = {.lex_state = 11}, - [3297] = {.lex_state = 11}, - [3298] = {.lex_state = 11, .external_lex_state = 4}, - [3299] = {.lex_state = 5}, - [3300] = {.lex_state = 11}, - [3301] = {.lex_state = 13}, - [3302] = {.lex_state = 13}, - [3303] = {.lex_state = 11, .external_lex_state = 4}, - [3304] = {.lex_state = 11}, - [3305] = {.lex_state = 11}, - [3306] = {.lex_state = 0, .external_lex_state = 4}, - [3307] = {.lex_state = 11, .external_lex_state = 4}, - [3308] = {.lex_state = 11}, - [3309] = {.lex_state = 11, .external_lex_state = 4}, - [3310] = {.lex_state = 11, .external_lex_state = 4}, - [3311] = {.lex_state = 0, .external_lex_state = 4}, - [3312] = {.lex_state = 93, .external_lex_state = 4}, - [3313] = {.lex_state = 11}, - [3314] = {.lex_state = 13}, - [3315] = {.lex_state = 13}, - [3316] = {.lex_state = 11, .external_lex_state = 4}, - [3317] = {.lex_state = 13}, - [3318] = {.lex_state = 11}, - [3319] = {.lex_state = 5}, - [3320] = {.lex_state = 93, .external_lex_state = 4}, - [3321] = {.lex_state = 21}, - [3322] = {.lex_state = 93, .external_lex_state = 4}, - [3323] = {.lex_state = 11}, - [3324] = {.lex_state = 11}, - [3325] = {.lex_state = 11, .external_lex_state = 4}, - [3326] = {.lex_state = 11}, - [3327] = {.lex_state = 11, .external_lex_state = 4}, - [3328] = {.lex_state = 11}, - [3329] = {.lex_state = 11, .external_lex_state = 4}, - [3330] = {.lex_state = 13}, - [3331] = {.lex_state = 13}, - [3332] = {.lex_state = 5}, - [3333] = {.lex_state = 93, .external_lex_state = 4}, - [3334] = {.lex_state = 11, .external_lex_state = 4}, - [3335] = {.lex_state = 0, .external_lex_state = 4}, - [3336] = {.lex_state = 11, .external_lex_state = 4}, - [3337] = {.lex_state = 11}, - [3338] = {.lex_state = 11}, - [3339] = {.lex_state = 93, .external_lex_state = 4}, - [3340] = {.lex_state = 11}, - [3341] = {.lex_state = 0, .external_lex_state = 4}, - [3342] = {.lex_state = 0, .external_lex_state = 4}, - [3343] = {.lex_state = 11}, - [3344] = {.lex_state = 11}, - [3345] = {.lex_state = 11}, - [3346] = {.lex_state = 13}, - [3347] = {.lex_state = 0, .external_lex_state = 4}, - [3348] = {.lex_state = 11, .external_lex_state = 4}, - [3349] = {.lex_state = 11, .external_lex_state = 4}, - [3350] = {.lex_state = 11}, - [3351] = {.lex_state = 11, .external_lex_state = 4}, - [3352] = {.lex_state = 11}, - [3353] = {.lex_state = 13}, - [3354] = {.lex_state = 11, .external_lex_state = 4}, - [3355] = {.lex_state = 11}, - [3356] = {.lex_state = 11}, - [3357] = {.lex_state = 11, .external_lex_state = 4}, - [3358] = {.lex_state = 11}, - [3359] = {.lex_state = 11, .external_lex_state = 4}, - [3360] = {.lex_state = 11}, - [3361] = {.lex_state = 11}, - [3362] = {.lex_state = 11}, - [3363] = {.lex_state = 11, .external_lex_state = 4}, - [3364] = {.lex_state = 0, .external_lex_state = 4}, - [3365] = {.lex_state = 11, .external_lex_state = 4}, - [3366] = {.lex_state = 11}, - [3367] = {.lex_state = 0, .external_lex_state = 4}, - [3368] = {.lex_state = 11}, - [3369] = {.lex_state = 0, .external_lex_state = 4}, - [3370] = {.lex_state = 11}, - [3371] = {.lex_state = 13}, - [3372] = {.lex_state = 11, .external_lex_state = 4}, - [3373] = {.lex_state = 11, .external_lex_state = 4}, - [3374] = {.lex_state = 13}, - [3375] = {.lex_state = 11, .external_lex_state = 4}, - [3376] = {.lex_state = 11}, - [3377] = {.lex_state = 11, .external_lex_state = 5}, - [3378] = {.lex_state = 11}, - [3379] = {.lex_state = 11}, - [3380] = {.lex_state = 13}, - [3381] = {.lex_state = 93}, - [3382] = {.lex_state = 21}, - [3383] = {.lex_state = 18, .external_lex_state = 6}, - [3384] = {.lex_state = 11}, - [3385] = {.lex_state = 11, .external_lex_state = 4}, - [3386] = {.lex_state = 13}, - [3387] = {.lex_state = 11, .external_lex_state = 5}, - [3388] = {.lex_state = 13}, - [3389] = {.lex_state = 18, .external_lex_state = 6}, - [3390] = {.lex_state = 13}, - [3391] = {.lex_state = 11}, - [3392] = {.lex_state = 11, .external_lex_state = 5}, - [3393] = {.lex_state = 5}, - [3394] = {.lex_state = 11}, - [3395] = {.lex_state = 11}, - [3396] = {.lex_state = 13}, - [3397] = {.lex_state = 11, .external_lex_state = 5}, - [3398] = {.lex_state = 93}, - [3399] = {.lex_state = 13}, - [3400] = {.lex_state = 13}, - [3401] = {.lex_state = 11, .external_lex_state = 5}, - [3402] = {.lex_state = 13}, - [3403] = {.lex_state = 13}, - [3404] = {.lex_state = 11, .external_lex_state = 5}, - [3405] = {.lex_state = 93}, - [3406] = {.lex_state = 11}, - [3407] = {.lex_state = 11}, - [3408] = {.lex_state = 11}, - [3409] = {.lex_state = 13}, - [3410] = {.lex_state = 11, .external_lex_state = 5}, - [3411] = {.lex_state = 13}, - [3412] = {.lex_state = 13}, - [3413] = {.lex_state = 13}, - [3414] = {.lex_state = 11}, - [3415] = {.lex_state = 13}, - [3416] = {.lex_state = 13}, - [3417] = {.lex_state = 93}, - [3418] = {.lex_state = 93}, - [3419] = {.lex_state = 93}, - [3420] = {.lex_state = 93}, - [3421] = {.lex_state = 11, .external_lex_state = 5}, - [3422] = {.lex_state = 13}, - [3423] = {.lex_state = 0, .external_lex_state = 4}, - [3424] = {.lex_state = 0, .external_lex_state = 4}, - [3425] = {.lex_state = 13}, - [3426] = {.lex_state = 13}, - [3427] = {.lex_state = 11, .external_lex_state = 5}, - [3428] = {.lex_state = 93}, - [3429] = {.lex_state = 93}, - [3430] = {.lex_state = 11}, - [3431] = {.lex_state = 13}, - [3432] = {.lex_state = 0, .external_lex_state = 4}, - [3433] = {.lex_state = 11, .external_lex_state = 5}, - [3434] = {.lex_state = 11, .external_lex_state = 5}, - [3435] = {.lex_state = 5}, - [3436] = {.lex_state = 13}, - [3437] = {.lex_state = 13}, - [3438] = {.lex_state = 11}, - [3439] = {.lex_state = 18, .external_lex_state = 6}, - [3440] = {.lex_state = 0, .external_lex_state = 4}, - [3441] = {.lex_state = 0, .external_lex_state = 4}, - [3442] = {.lex_state = 21}, - [3443] = {.lex_state = 11, .external_lex_state = 4}, - [3444] = {.lex_state = 11, .external_lex_state = 4}, - [3445] = {.lex_state = 21}, - [3446] = {.lex_state = 93}, - [3447] = {.lex_state = 5}, - [3448] = {.lex_state = 93}, - [3449] = {.lex_state = 13}, - [3450] = {.lex_state = 13}, - [3451] = {.lex_state = 11}, - [3452] = {.lex_state = 11}, - [3453] = {.lex_state = 13}, - [3454] = {.lex_state = 93}, - [3455] = {.lex_state = 11}, - [3456] = {.lex_state = 11, .external_lex_state = 5}, - [3457] = {.lex_state = 0, .external_lex_state = 4}, - [3458] = {.lex_state = 11, .external_lex_state = 5}, - [3459] = {.lex_state = 0, .external_lex_state = 4}, - [3460] = {.lex_state = 93}, - [3461] = {.lex_state = 93}, - [3462] = {.lex_state = 11, .external_lex_state = 5}, - [3463] = {.lex_state = 0, .external_lex_state = 4}, - [3464] = {.lex_state = 93}, - [3465] = {.lex_state = 0, .external_lex_state = 4}, - [3466] = {.lex_state = 18, .external_lex_state = 6}, - [3467] = {.lex_state = 13}, - [3468] = {.lex_state = 0, .external_lex_state = 4}, - [3469] = {.lex_state = 11, .external_lex_state = 5}, - [3470] = {.lex_state = 11, .external_lex_state = 5}, - [3471] = {.lex_state = 13}, - [3472] = {.lex_state = 11}, - [3473] = {.lex_state = 93}, - [3474] = {.lex_state = 11}, - [3475] = {.lex_state = 13}, - [3476] = {.lex_state = 11}, - [3477] = {.lex_state = 11}, - [3478] = {.lex_state = 11}, - [3479] = {.lex_state = 13}, - [3480] = {.lex_state = 11, .external_lex_state = 5}, - [3481] = {.lex_state = 13}, - [3482] = {.lex_state = 0, .external_lex_state = 4}, - [3483] = {.lex_state = 93}, - [3484] = {.lex_state = 11}, - [3485] = {.lex_state = 11, .external_lex_state = 5}, - [3486] = {.lex_state = 21}, - [3487] = {.lex_state = 21}, - [3488] = {.lex_state = 11}, - [3489] = {.lex_state = 11, .external_lex_state = 5}, - [3490] = {.lex_state = 0, .external_lex_state = 4}, - [3491] = {.lex_state = 11}, - [3492] = {.lex_state = 13}, - [3493] = {.lex_state = 0}, - [3494] = {.lex_state = 0, .external_lex_state = 4}, - [3495] = {.lex_state = 93}, - [3496] = {.lex_state = 13}, - [3497] = {.lex_state = 11, .external_lex_state = 5}, - [3498] = {.lex_state = 11, .external_lex_state = 5}, - [3499] = {.lex_state = 13}, - [3500] = {.lex_state = 11, .external_lex_state = 5}, - [3501] = {.lex_state = 0, .external_lex_state = 4}, - [3502] = {.lex_state = 13}, - [3503] = {.lex_state = 11, .external_lex_state = 5}, - [3504] = {.lex_state = 13}, - [3505] = {.lex_state = 93}, - [3506] = {.lex_state = 93}, - [3507] = {.lex_state = 93}, - [3508] = {.lex_state = 13}, - [3509] = {.lex_state = 11}, - [3510] = {.lex_state = 18, .external_lex_state = 6}, - [3511] = {.lex_state = 0, .external_lex_state = 4}, - [3512] = {.lex_state = 21}, - [3513] = {.lex_state = 93}, - [3514] = {.lex_state = 93}, - [3515] = {.lex_state = 11, .external_lex_state = 5}, - [3516] = {.lex_state = 21}, - [3517] = {.lex_state = 0, .external_lex_state = 4}, - [3518] = {.lex_state = 21}, - [3519] = {.lex_state = 0, .external_lex_state = 4}, - [3520] = {.lex_state = 13}, - [3521] = {.lex_state = 11}, - [3522] = {.lex_state = 0, .external_lex_state = 4}, - [3523] = {.lex_state = 0, .external_lex_state = 4}, - [3524] = {.lex_state = 0, .external_lex_state = 4}, - [3525] = {.lex_state = 0, .external_lex_state = 4}, - [3526] = {.lex_state = 0, .external_lex_state = 4}, - [3527] = {.lex_state = 0, .external_lex_state = 4}, - [3528] = {.lex_state = 0, .external_lex_state = 4}, - [3529] = {.lex_state = 13}, - [3530] = {.lex_state = 5}, - [3531] = {.lex_state = 13}, - [3532] = {.lex_state = 13}, - [3533] = {.lex_state = 11, .external_lex_state = 5}, - [3534] = {.lex_state = 11, .external_lex_state = 4}, - [3535] = {.lex_state = 11}, - [3536] = {.lex_state = 11}, - [3537] = {.lex_state = 11, .external_lex_state = 5}, - [3538] = {.lex_state = 11, .external_lex_state = 5}, - [3539] = {.lex_state = 13}, - [3540] = {.lex_state = 0, .external_lex_state = 4}, - [3541] = {.lex_state = 13}, - [3542] = {.lex_state = 0, .external_lex_state = 4}, - [3543] = {.lex_state = 21}, - [3544] = {.lex_state = 0, .external_lex_state = 4}, - [3545] = {.lex_state = 5, .external_lex_state = 4}, - [3546] = {.lex_state = 11}, - [3547] = {.lex_state = 11}, - [3548] = {.lex_state = 93}, - [3549] = {.lex_state = 0, .external_lex_state = 4}, - [3550] = {.lex_state = 0, .external_lex_state = 4}, - [3551] = {.lex_state = 21}, - [3552] = {.lex_state = 0}, - [3553] = {.lex_state = 0, .external_lex_state = 4}, - [3554] = {.lex_state = 0, .external_lex_state = 4}, - [3555] = {.lex_state = 93}, - [3556] = {.lex_state = 18, .external_lex_state = 6}, - [3557] = {.lex_state = 5}, - [3558] = {.lex_state = 13}, - [3559] = {.lex_state = 13}, - [3560] = {.lex_state = 0}, - [3561] = {.lex_state = 0, .external_lex_state = 4}, - [3562] = {.lex_state = 18, .external_lex_state = 6}, - [3563] = {.lex_state = 0, .external_lex_state = 4}, - [3564] = {.lex_state = 0}, - [3565] = {.lex_state = 0, .external_lex_state = 4}, - [3566] = {.lex_state = 0}, - [3567] = {.lex_state = 13}, - [3568] = {.lex_state = 93}, - [3569] = {.lex_state = 0}, - [3570] = {.lex_state = 0}, - [3571] = {.lex_state = 93}, - [3572] = {.lex_state = 11}, - [3573] = {.lex_state = 0, .external_lex_state = 4}, - [3574] = {.lex_state = 93}, - [3575] = {.lex_state = 11, .external_lex_state = 5}, - [3576] = {.lex_state = 0, .external_lex_state = 4}, - [3577] = {.lex_state = 13}, - [3578] = {.lex_state = 11}, - [3579] = {.lex_state = 93}, - [3580] = {.lex_state = 13}, - [3581] = {.lex_state = 13}, - [3582] = {.lex_state = 13}, - [3583] = {.lex_state = 13}, - [3584] = {.lex_state = 0, .external_lex_state = 4}, - [3585] = {.lex_state = 0, .external_lex_state = 4}, - [3586] = {.lex_state = 11}, - [3587] = {.lex_state = 18, .external_lex_state = 6}, - [3588] = {.lex_state = 11}, - [3589] = {.lex_state = 0, .external_lex_state = 4}, - [3590] = {.lex_state = 0, .external_lex_state = 4}, - [3591] = {.lex_state = 0, .external_lex_state = 4}, - [3592] = {.lex_state = 11}, - [3593] = {.lex_state = 13}, - [3594] = {.lex_state = 11}, - [3595] = {.lex_state = 11}, - [3596] = {.lex_state = 13}, - [3597] = {.lex_state = 13}, - [3598] = {.lex_state = 0, .external_lex_state = 4}, - [3599] = {.lex_state = 0, .external_lex_state = 4}, - [3600] = {.lex_state = 13}, - [3601] = {.lex_state = 11}, - [3602] = {.lex_state = 13}, - [3603] = {.lex_state = 11, .external_lex_state = 4}, - [3604] = {.lex_state = 11, .external_lex_state = 5}, - [3605] = {.lex_state = 0, .external_lex_state = 4}, - [3606] = {.lex_state = 11, .external_lex_state = 4}, - [3607] = {.lex_state = 11}, - [3608] = {.lex_state = 11, .external_lex_state = 5}, - [3609] = {.lex_state = 13}, - [3610] = {.lex_state = 11}, - [3611] = {.lex_state = 13}, - [3612] = {.lex_state = 11, .external_lex_state = 5}, - [3613] = {.lex_state = 0, .external_lex_state = 4}, - [3614] = {.lex_state = 0, .external_lex_state = 4}, - [3615] = {.lex_state = 0, .external_lex_state = 4}, - [3616] = {.lex_state = 11, .external_lex_state = 5}, - [3617] = {.lex_state = 0}, - [3618] = {.lex_state = 11, .external_lex_state = 5}, - [3619] = {.lex_state = 0, .external_lex_state = 4}, - [3620] = {.lex_state = 0, .external_lex_state = 4}, - [3621] = {.lex_state = 5, .external_lex_state = 4}, - [3622] = {.lex_state = 18, .external_lex_state = 6}, - [3623] = {.lex_state = 0, .external_lex_state = 4}, - [3624] = {.lex_state = 0, .external_lex_state = 4}, - [3625] = {.lex_state = 0, .external_lex_state = 4}, - [3626] = {.lex_state = 11, .external_lex_state = 5}, - [3627] = {.lex_state = 0}, - [3628] = {.lex_state = 11}, - [3629] = {.lex_state = 0, .external_lex_state = 4}, - [3630] = {.lex_state = 0, .external_lex_state = 4}, - [3631] = {.lex_state = 0, .external_lex_state = 4}, - [3632] = {.lex_state = 0, .external_lex_state = 4}, - [3633] = {.lex_state = 93}, - [3634] = {.lex_state = 0, .external_lex_state = 4}, - [3635] = {.lex_state = 0}, - [3636] = {.lex_state = 0, .external_lex_state = 4}, - [3637] = {.lex_state = 93}, - [3638] = {.lex_state = 0, .external_lex_state = 4}, - [3639] = {.lex_state = 18, .external_lex_state = 6}, - [3640] = {.lex_state = 0, .external_lex_state = 4}, - [3641] = {.lex_state = 13}, - [3642] = {.lex_state = 0, .external_lex_state = 4}, - [3643] = {.lex_state = 0, .external_lex_state = 4}, - [3644] = {.lex_state = 0, .external_lex_state = 4}, - [3645] = {.lex_state = 13}, - [3646] = {.lex_state = 0, .external_lex_state = 4}, - [3647] = {.lex_state = 0, .external_lex_state = 4}, - [3648] = {.lex_state = 11}, - [3649] = {.lex_state = 11, .external_lex_state = 5}, - [3650] = {.lex_state = 11}, - [3651] = {.lex_state = 0, .external_lex_state = 4}, - [3652] = {.lex_state = 11, .external_lex_state = 4}, - [3653] = {.lex_state = 0, .external_lex_state = 4}, - [3654] = {.lex_state = 93}, - [3655] = {.lex_state = 0}, - [3656] = {.lex_state = 0, .external_lex_state = 4}, - [3657] = {.lex_state = 0, .external_lex_state = 4}, - [3658] = {.lex_state = 0, .external_lex_state = 4}, - [3659] = {.lex_state = 0, .external_lex_state = 4}, - [3660] = {.lex_state = 13}, - [3661] = {.lex_state = 13}, - [3662] = {.lex_state = 0, .external_lex_state = 4}, - [3663] = {.lex_state = 0, .external_lex_state = 4}, - [3664] = {.lex_state = 0, .external_lex_state = 4}, - [3665] = {.lex_state = 18, .external_lex_state = 6}, - [3666] = {.lex_state = 0, .external_lex_state = 4}, - [3667] = {.lex_state = 0, .external_lex_state = 4}, - [3668] = {.lex_state = 0, .external_lex_state = 4}, - [3669] = {.lex_state = 0, .external_lex_state = 4}, - [3670] = {.lex_state = 0, .external_lex_state = 4}, - [3671] = {.lex_state = 0, .external_lex_state = 4}, - [3672] = {.lex_state = 13}, - [3673] = {.lex_state = 13}, - [3674] = {.lex_state = 0, .external_lex_state = 4}, - [3675] = {.lex_state = 13}, - [3676] = {.lex_state = 93}, - [3677] = {.lex_state = 0, .external_lex_state = 4}, - [3678] = {.lex_state = 13}, - [3679] = {.lex_state = 11}, - [3680] = {.lex_state = 0, .external_lex_state = 4}, - [3681] = {.lex_state = 11, .external_lex_state = 4}, - [3682] = {.lex_state = 0, .external_lex_state = 4}, - [3683] = {.lex_state = 0, .external_lex_state = 4}, - [3684] = {.lex_state = 13}, - [3685] = {.lex_state = 0, .external_lex_state = 4}, - [3686] = {.lex_state = 0, .external_lex_state = 4}, - [3687] = {.lex_state = 13}, - [3688] = {.lex_state = 13}, - [3689] = {.lex_state = 0, .external_lex_state = 4}, - [3690] = {.lex_state = 13}, - [3691] = {.lex_state = 93}, - [3692] = {.lex_state = 13}, - [3693] = {.lex_state = 0, .external_lex_state = 4}, - [3694] = {.lex_state = 13}, - [3695] = {.lex_state = 0, .external_lex_state = 4}, - [3696] = {.lex_state = 0, .external_lex_state = 4}, - [3697] = {.lex_state = 13}, - [3698] = {.lex_state = 13}, - [3699] = {.lex_state = 0, .external_lex_state = 4}, - [3700] = {.lex_state = 13}, - [3701] = {.lex_state = 0, .external_lex_state = 4}, - [3702] = {.lex_state = 0, .external_lex_state = 4}, - [3703] = {.lex_state = 11}, - [3704] = {.lex_state = 13}, - [3705] = {.lex_state = 11, .external_lex_state = 5}, - [3706] = {.lex_state = 0, .external_lex_state = 4}, - [3707] = {.lex_state = 13}, - [3708] = {.lex_state = 0, .external_lex_state = 4}, - [3709] = {.lex_state = 13}, - [3710] = {.lex_state = 13}, - [3711] = {.lex_state = 0, .external_lex_state = 4}, - [3712] = {.lex_state = 11}, - [3713] = {.lex_state = 13}, - [3714] = {.lex_state = 0, .external_lex_state = 4}, - [3715] = {.lex_state = 0, .external_lex_state = 4}, - [3716] = {.lex_state = 0, .external_lex_state = 4}, - [3717] = {.lex_state = 93}, - [3718] = {.lex_state = 0, .external_lex_state = 4}, - [3719] = {.lex_state = 0, .external_lex_state = 4}, - [3720] = {.lex_state = 11, .external_lex_state = 5}, - [3721] = {.lex_state = 13}, - [3722] = {.lex_state = 0, .external_lex_state = 4}, - [3723] = {.lex_state = 0, .external_lex_state = 4}, - [3724] = {.lex_state = 0, .external_lex_state = 4}, - [3725] = {.lex_state = 11}, - [3726] = {.lex_state = 13}, - [3727] = {.lex_state = 13}, - [3728] = {.lex_state = 13}, - [3729] = {.lex_state = 0, .external_lex_state = 4}, - [3730] = {.lex_state = 13}, - [3731] = {.lex_state = 0, .external_lex_state = 4}, - [3732] = {.lex_state = 13}, - [3733] = {.lex_state = 93}, - [3734] = {.lex_state = 13}, - [3735] = {.lex_state = 13}, - [3736] = {.lex_state = 13}, - [3737] = {.lex_state = 0, .external_lex_state = 4}, - [3738] = {.lex_state = 0, .external_lex_state = 4}, - [3739] = {.lex_state = 0, .external_lex_state = 4}, - [3740] = {.lex_state = 11}, - [3741] = {.lex_state = 0, .external_lex_state = 4}, - [3742] = {.lex_state = 93}, - [3743] = {.lex_state = 0, .external_lex_state = 4}, - [3744] = {.lex_state = 13}, - [3745] = {.lex_state = 13}, - [3746] = {.lex_state = 0, .external_lex_state = 4}, - [3747] = {.lex_state = 0, .external_lex_state = 4}, - [3748] = {.lex_state = 0, .external_lex_state = 4}, - [3749] = {.lex_state = 18, .external_lex_state = 6}, - [3750] = {.lex_state = 0, .external_lex_state = 4}, - [3751] = {.lex_state = 0, .external_lex_state = 4}, - [3752] = {.lex_state = 0, .external_lex_state = 4}, - [3753] = {.lex_state = 11, .external_lex_state = 5}, - [3754] = {.lex_state = 13}, - [3755] = {.lex_state = 13}, - [3756] = {.lex_state = 93}, - [3757] = {.lex_state = 0, .external_lex_state = 4}, - [3758] = {.lex_state = 13}, - [3759] = {.lex_state = 0, .external_lex_state = 4}, - [3760] = {.lex_state = 13}, - [3761] = {.lex_state = 0, .external_lex_state = 4}, - [3762] = {.lex_state = 11, .external_lex_state = 4}, - [3763] = {.lex_state = 0, .external_lex_state = 4}, - [3764] = {.lex_state = 0, .external_lex_state = 4}, - [3765] = {.lex_state = 93}, - [3766] = {.lex_state = 11, .external_lex_state = 4}, - [3767] = {.lex_state = 0, .external_lex_state = 4}, - [3768] = {.lex_state = 0, .external_lex_state = 4}, - [3769] = {.lex_state = 0, .external_lex_state = 4}, - [3770] = {.lex_state = 0, .external_lex_state = 4}, - [3771] = {.lex_state = 0, .external_lex_state = 4}, - [3772] = {.lex_state = 0, .external_lex_state = 4}, - [3773] = {.lex_state = 0, .external_lex_state = 4}, - [3774] = {.lex_state = 0, .external_lex_state = 4}, - [3775] = {.lex_state = 0, .external_lex_state = 4}, - [3776] = {.lex_state = 0, .external_lex_state = 4}, - [3777] = {.lex_state = 0, .external_lex_state = 4}, - [3778] = {.lex_state = 0, .external_lex_state = 4}, - [3779] = {.lex_state = 0, .external_lex_state = 4}, - [3780] = {.lex_state = 11, .external_lex_state = 4}, - [3781] = {.lex_state = 0, .external_lex_state = 4}, - [3782] = {.lex_state = 11, .external_lex_state = 5}, - [3783] = {.lex_state = 93, .external_lex_state = 4}, - [3784] = {.lex_state = 0, .external_lex_state = 4}, - [3785] = {.lex_state = 93}, - [3786] = {.lex_state = 0, .external_lex_state = 4}, - [3787] = {.lex_state = 93}, - [3788] = {.lex_state = 13}, - [3789] = {.lex_state = 0, .external_lex_state = 4}, - [3790] = {.lex_state = 13}, - [3791] = {.lex_state = 13}, - [3792] = {.lex_state = 0, .external_lex_state = 4}, - [3793] = {.lex_state = 0, .external_lex_state = 4}, - [3794] = {.lex_state = 0, .external_lex_state = 4}, - [3795] = {.lex_state = 0, .external_lex_state = 4}, - [3796] = {.lex_state = 11, .external_lex_state = 5}, - [3797] = {.lex_state = 13}, - [3798] = {.lex_state = 93}, - [3799] = {.lex_state = 11}, - [3800] = {.lex_state = 0}, - [3801] = {.lex_state = 5}, - [3802] = {.lex_state = 18, .external_lex_state = 6}, - [3803] = {.lex_state = 93, .external_lex_state = 4}, - [3804] = {.lex_state = 11, .external_lex_state = 5}, - [3805] = {.lex_state = 0, .external_lex_state = 4}, - [3806] = {.lex_state = 11, .external_lex_state = 4}, - [3807] = {.lex_state = 0, .external_lex_state = 4}, - [3808] = {.lex_state = 11, .external_lex_state = 5}, - [3809] = {.lex_state = 93}, - [3810] = {.lex_state = 13}, - [3811] = {.lex_state = 13}, - [3812] = {.lex_state = 0, .external_lex_state = 4}, - [3813] = {.lex_state = 0, .external_lex_state = 4}, - [3814] = {.lex_state = 0, .external_lex_state = 4}, - [3815] = {.lex_state = 13}, - [3816] = {.lex_state = 0, .external_lex_state = 4}, - [3817] = {.lex_state = 0, .external_lex_state = 4}, - [3818] = {.lex_state = 18, .external_lex_state = 6}, - [3819] = {.lex_state = 0, .external_lex_state = 4}, - [3820] = {.lex_state = 93}, - [3821] = {.lex_state = 0, .external_lex_state = 4}, - [3822] = {.lex_state = 18, .external_lex_state = 6}, - [3823] = {.lex_state = 13}, - [3824] = {.lex_state = 13}, - [3825] = {.lex_state = 0, .external_lex_state = 4}, - [3826] = {.lex_state = 0, .external_lex_state = 4}, - [3827] = {.lex_state = 0, .external_lex_state = 4}, - [3828] = {.lex_state = 93}, - [3829] = {.lex_state = 13}, - [3830] = {.lex_state = 0, .external_lex_state = 4}, - [3831] = {.lex_state = 13}, - [3832] = {.lex_state = 11, .external_lex_state = 5}, - [3833] = {.lex_state = 0, .external_lex_state = 4}, - [3834] = {.lex_state = 0, .external_lex_state = 4}, - [3835] = {.lex_state = 13}, - [3836] = {.lex_state = 0, .external_lex_state = 4}, - [3837] = {.lex_state = 0, .external_lex_state = 4}, - [3838] = {.lex_state = 11, .external_lex_state = 4}, - [3839] = {.lex_state = 0, .external_lex_state = 4}, - [3840] = {.lex_state = 5}, - [3841] = {.lex_state = 13}, - [3842] = {.lex_state = 0, .external_lex_state = 4}, - [3843] = {.lex_state = 0, .external_lex_state = 4}, - [3844] = {.lex_state = 13}, - [3845] = {.lex_state = 13}, - [3846] = {.lex_state = 0, .external_lex_state = 4}, - [3847] = {.lex_state = 0}, - [3848] = {.lex_state = 11, .external_lex_state = 5}, - [3849] = {.lex_state = 13}, - [3850] = {.lex_state = 0}, - [3851] = {.lex_state = 0}, - [3852] = {.lex_state = 0}, - [3853] = {.lex_state = 18, .external_lex_state = 6}, - [3854] = {.lex_state = 0, .external_lex_state = 4}, - [3855] = {.lex_state = 11, .external_lex_state = 5}, - [3856] = {.lex_state = 11, .external_lex_state = 5}, - [3857] = {.lex_state = 0, .external_lex_state = 4}, - [3858] = {.lex_state = 11, .external_lex_state = 5}, - [3859] = {.lex_state = 0}, - [3860] = {.lex_state = 11}, - [3861] = {.lex_state = 11}, - [3862] = {.lex_state = 11}, - [3863] = {.lex_state = 11}, - [3864] = {.lex_state = 11}, - [3865] = {.lex_state = 0}, - [3866] = {.lex_state = 11}, - [3867] = {.lex_state = 13}, - [3868] = {.lex_state = 11}, - [3869] = {.lex_state = 18, .external_lex_state = 6}, - [3870] = {.lex_state = 93, .external_lex_state = 4}, - [3871] = {.lex_state = 22}, - [3872] = {.lex_state = 0}, - [3873] = {.lex_state = 17}, - [3874] = {.lex_state = 22}, - [3875] = {.lex_state = 17}, - [3876] = {.lex_state = 0, .external_lex_state = 4}, - [3877] = {.lex_state = 11}, - [3878] = {.lex_state = 11}, - [3879] = {.lex_state = 11}, - [3880] = {.lex_state = 0, .external_lex_state = 4}, - [3881] = {.lex_state = 93, .external_lex_state = 4}, - [3882] = {.lex_state = 0, .external_lex_state = 4}, - [3883] = {.lex_state = 93, .external_lex_state = 4}, - [3884] = {.lex_state = 11}, - [3885] = {.lex_state = 93, .external_lex_state = 4}, - [3886] = {.lex_state = 93}, - [3887] = {.lex_state = 17}, - [3888] = {.lex_state = 11}, - [3889] = {.lex_state = 0, .external_lex_state = 4}, - [3890] = {.lex_state = 93}, - [3891] = {.lex_state = 1}, - [3892] = {.lex_state = 11}, - [3893] = {.lex_state = 11}, - [3894] = {.lex_state = 22}, - [3895] = {.lex_state = 11}, - [3896] = {.lex_state = 0, .external_lex_state = 4}, - [3897] = {.lex_state = 17}, - [3898] = {.lex_state = 22}, - [3899] = {.lex_state = 17}, - [3900] = {.lex_state = 22}, - [3901] = {.lex_state = 0, .external_lex_state = 4}, - [3902] = {.lex_state = 93}, - [3903] = {.lex_state = 11}, - [3904] = {.lex_state = 13}, - [3905] = {.lex_state = 0, .external_lex_state = 4}, - [3906] = {.lex_state = 11}, - [3907] = {.lex_state = 1}, - [3908] = {.lex_state = 0, .external_lex_state = 4}, - [3909] = {.lex_state = 0}, - [3910] = {.lex_state = 93}, - [3911] = {.lex_state = 0}, - [3912] = {.lex_state = 13}, - [3913] = {.lex_state = 11}, - [3914] = {.lex_state = 93}, - [3915] = {.lex_state = 13}, - [3916] = {.lex_state = 11}, - [3917] = {.lex_state = 11}, - [3918] = {.lex_state = 11}, - [3919] = {.lex_state = 13}, - [3920] = {.lex_state = 11}, - [3921] = {.lex_state = 0, .external_lex_state = 4}, - [3922] = {.lex_state = 18, .external_lex_state = 6}, - [3923] = {.lex_state = 22}, - [3924] = {.lex_state = 13}, - [3925] = {.lex_state = 17}, - [3926] = {.lex_state = 13}, - [3927] = {.lex_state = 11}, - [3928] = {.lex_state = 5}, - [3929] = {.lex_state = 0, .external_lex_state = 4}, - [3930] = {.lex_state = 11}, - [3931] = {.lex_state = 17}, - [3932] = {.lex_state = 22}, - [3933] = {.lex_state = 22}, - [3934] = {.lex_state = 17}, - [3935] = {.lex_state = 22}, - [3936] = {.lex_state = 93, .external_lex_state = 4}, - [3937] = {.lex_state = 5, .external_lex_state = 4}, - [3938] = {.lex_state = 0}, - [3939] = {.lex_state = 17}, - [3940] = {.lex_state = 13}, - [3941] = {.lex_state = 11}, - [3942] = {.lex_state = 11}, - [3943] = {.lex_state = 0}, - [3944] = {.lex_state = 22}, - [3945] = {.lex_state = 93}, - [3946] = {.lex_state = 0}, - [3947] = {.lex_state = 0, .external_lex_state = 4}, - [3948] = {.lex_state = 93}, - [3949] = {.lex_state = 17}, - [3950] = {.lex_state = 0}, - [3951] = {.lex_state = 13}, - [3952] = {.lex_state = 13}, - [3953] = {.lex_state = 5}, - [3954] = {.lex_state = 93}, - [3955] = {.lex_state = 0}, - [3956] = {.lex_state = 0, .external_lex_state = 4}, - [3957] = {.lex_state = 22}, - [3958] = {.lex_state = 13}, - [3959] = {.lex_state = 22}, - [3960] = {.lex_state = 13}, - [3961] = {.lex_state = 17}, - [3962] = {.lex_state = 22}, - [3963] = {.lex_state = 17}, - [3964] = {.lex_state = 17}, - [3965] = {.lex_state = 11}, - [3966] = {.lex_state = 0}, - [3967] = {.lex_state = 11}, - [3968] = {.lex_state = 22}, - [3969] = {.lex_state = 17}, - [3970] = {.lex_state = 11}, - [3971] = {.lex_state = 11}, - [3972] = {.lex_state = 0, .external_lex_state = 4}, - [3973] = {.lex_state = 0, .external_lex_state = 5}, - [3974] = {.lex_state = 1}, - [3975] = {.lex_state = 0, .external_lex_state = 4}, - [3976] = {.lex_state = 11}, - [3977] = {.lex_state = 13}, - [3978] = {.lex_state = 22}, - [3979] = {.lex_state = 17}, - [3980] = {.lex_state = 22}, - [3981] = {.lex_state = 17}, - [3982] = {.lex_state = 11}, - [3983] = {.lex_state = 22}, - [3984] = {.lex_state = 0}, - [3985] = {.lex_state = 93, .external_lex_state = 4}, - [3986] = {.lex_state = 0}, - [3987] = {.lex_state = 22}, - [3988] = {.lex_state = 17}, - [3989] = {.lex_state = 13}, - [3990] = {.lex_state = 22}, - [3991] = {.lex_state = 0}, - [3992] = {.lex_state = 17}, - [3993] = {.lex_state = 13}, - [3994] = {.lex_state = 0}, - [3995] = {.lex_state = 0}, - [3996] = {.lex_state = 13}, - [3997] = {.lex_state = 11}, - [3998] = {.lex_state = 11}, - [3999] = {.lex_state = 11}, - [4000] = {.lex_state = 11}, - [4001] = {.lex_state = 1}, - [4002] = {.lex_state = 11}, - [4003] = {.lex_state = 17}, - [4004] = {.lex_state = 0}, - [4005] = {.lex_state = 93}, - [4006] = {.lex_state = 93, .external_lex_state = 4}, - [4007] = {.lex_state = 11}, - [4008] = {.lex_state = 11}, - [4009] = {.lex_state = 0}, - [4010] = {.lex_state = 93}, - [4011] = {.lex_state = 0}, - [4012] = {.lex_state = 11}, - [4013] = {.lex_state = 0}, - [4014] = {.lex_state = 0}, - [4015] = {.lex_state = 0, .external_lex_state = 4}, - [4016] = {.lex_state = 0, .external_lex_state = 4}, - [4017] = {.lex_state = 0, .external_lex_state = 4}, - [4018] = {.lex_state = 0}, - [4019] = {.lex_state = 0}, - [4020] = {.lex_state = 0, .external_lex_state = 4}, - [4021] = {.lex_state = 0}, - [4022] = {.lex_state = 0, .external_lex_state = 4}, - [4023] = {.lex_state = 0, .external_lex_state = 4}, - [4024] = {.lex_state = 0, .external_lex_state = 4}, - [4025] = {.lex_state = 0}, - [4026] = {.lex_state = 0, .external_lex_state = 4}, - [4027] = {.lex_state = 0, .external_lex_state = 4}, - [4028] = {.lex_state = 5}, - [4029] = {.lex_state = 0}, - [4030] = {.lex_state = 0}, - [4031] = {.lex_state = 93}, - [4032] = {.lex_state = 0}, - [4033] = {.lex_state = 0, .external_lex_state = 4}, - [4034] = {.lex_state = 0, .external_lex_state = 4}, - [4035] = {.lex_state = 0, .external_lex_state = 4}, - [4036] = {.lex_state = 0}, - [4037] = {.lex_state = 0}, - [4038] = {.lex_state = 0, .external_lex_state = 4}, - [4039] = {.lex_state = 93}, - [4040] = {.lex_state = 0, .external_lex_state = 4}, - [4041] = {.lex_state = 1}, - [4042] = {.lex_state = 0, .external_lex_state = 4}, - [4043] = {.lex_state = 0}, - [4044] = {.lex_state = 0}, - [4045] = {.lex_state = 0, .external_lex_state = 4}, - [4046] = {.lex_state = 0}, - [4047] = {.lex_state = 0, .external_lex_state = 4}, - [4048] = {.lex_state = 0, .external_lex_state = 4}, - [4049] = {.lex_state = 11}, - [4050] = {.lex_state = 0}, - [4051] = {.lex_state = 93}, - [4052] = {.lex_state = 0}, - [4053] = {.lex_state = 0}, - [4054] = {.lex_state = 0}, - [4055] = {.lex_state = 0, .external_lex_state = 4}, - [4056] = {.lex_state = 0}, - [4057] = {.lex_state = 0}, - [4058] = {.lex_state = 0, .external_lex_state = 4}, - [4059] = {.lex_state = 93}, - [4060] = {.lex_state = 0}, - [4061] = {.lex_state = 93}, - [4062] = {.lex_state = 0}, - [4063] = {.lex_state = 0}, - [4064] = {.lex_state = 0}, - [4065] = {.lex_state = 0}, - [4066] = {.lex_state = 0, .external_lex_state = 4}, - [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 0}, - [4069] = {.lex_state = 0}, - [4070] = {.lex_state = 0, .external_lex_state = 4}, - [4071] = {.lex_state = 93}, - [4072] = {.lex_state = 93, .external_lex_state = 4}, - [4073] = {.lex_state = 0, .external_lex_state = 4}, - [4074] = {.lex_state = 93}, - [4075] = {.lex_state = 0, .external_lex_state = 4}, - [4076] = {.lex_state = 0}, - [4077] = {.lex_state = 0}, - [4078] = {.lex_state = 0, .external_lex_state = 4}, - [4079] = {.lex_state = 0, .external_lex_state = 4}, - [4080] = {.lex_state = 18, .external_lex_state = 6}, - [4081] = {.lex_state = 93}, - [4082] = {.lex_state = 0}, - [4083] = {.lex_state = 0, .external_lex_state = 4}, - [4084] = {.lex_state = 11}, - [4085] = {.lex_state = 93}, - [4086] = {.lex_state = 93}, - [4087] = {.lex_state = 0}, - [4088] = {.lex_state = 0}, - [4089] = {.lex_state = 93}, - [4090] = {.lex_state = 0}, - [4091] = {.lex_state = 0, .external_lex_state = 4}, - [4092] = {.lex_state = 0}, - [4093] = {.lex_state = 0}, - [4094] = {.lex_state = 0}, - [4095] = {.lex_state = 0}, - [4096] = {.lex_state = 0}, - [4097] = {.lex_state = 0}, - [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 0}, - [4100] = {.lex_state = 5}, - [4101] = {.lex_state = 0}, - [4102] = {.lex_state = 0}, - [4103] = {.lex_state = 11}, - [4104] = {.lex_state = 93}, - [4105] = {.lex_state = 0}, - [4106] = {.lex_state = 5}, - [4107] = {.lex_state = 13}, - [4108] = {.lex_state = 93}, - [4109] = {.lex_state = 0}, - [4110] = {.lex_state = 11}, - [4111] = {.lex_state = 93}, - [4112] = {.lex_state = 0, .external_lex_state = 4}, - [4113] = {.lex_state = 93}, - [4114] = {.lex_state = 0, .external_lex_state = 4}, - [4115] = {.lex_state = 0}, - [4116] = {.lex_state = 11}, - [4117] = {.lex_state = 0}, - [4118] = {.lex_state = 93}, - [4119] = {.lex_state = 0}, - [4120] = {.lex_state = 0}, - [4121] = {.lex_state = 5}, - [4122] = {.lex_state = 0}, - [4123] = {.lex_state = 0}, - [4124] = {.lex_state = 0}, - [4125] = {.lex_state = 11}, - [4126] = {.lex_state = 11}, - [4127] = {.lex_state = 0}, - [4128] = {.lex_state = 11}, - [4129] = {.lex_state = 0}, - [4130] = {.lex_state = 0}, - [4131] = {.lex_state = 0}, - [4132] = {.lex_state = 11}, - [4133] = {.lex_state = 11}, - [4134] = {.lex_state = 0}, - [4135] = {.lex_state = 0}, - [4136] = {.lex_state = 0}, - [4137] = {.lex_state = 93, .external_lex_state = 4}, - [4138] = {.lex_state = 0}, - [4139] = {.lex_state = 0}, - [4140] = {.lex_state = 93}, - [4141] = {.lex_state = 0}, - [4142] = {.lex_state = 0}, - [4143] = {.lex_state = 93}, - [4144] = {.lex_state = 5, .external_lex_state = 4}, - [4145] = {.lex_state = 0}, - [4146] = {.lex_state = 13}, - [4147] = {.lex_state = 0}, - [4148] = {.lex_state = 11}, - [4149] = {.lex_state = 11}, - [4150] = {.lex_state = 0}, - [4151] = {.lex_state = 5}, - [4152] = {.lex_state = 0, .external_lex_state = 4}, - [4153] = {.lex_state = 0, .external_lex_state = 4}, - [4154] = {.lex_state = 0}, - [4155] = {.lex_state = 0}, - [4156] = {.lex_state = 11}, - [4157] = {.lex_state = 11}, - [4158] = {.lex_state = 0}, - [4159] = {.lex_state = 11}, - [4160] = {.lex_state = 0}, - [4161] = {.lex_state = 0}, - [4162] = {.lex_state = 0}, - [4163] = {.lex_state = 0}, - [4164] = {.lex_state = 0, .external_lex_state = 4}, - [4165] = {.lex_state = 0, .external_lex_state = 4}, - [4166] = {.lex_state = 0}, - [4167] = {.lex_state = 0}, - [4168] = {.lex_state = 0, .external_lex_state = 4}, - [4169] = {.lex_state = 0}, - [4170] = {.lex_state = 11}, - [4171] = {.lex_state = 0, .external_lex_state = 4}, - [4172] = {.lex_state = 11}, - [4173] = {.lex_state = 0}, - [4174] = {.lex_state = 11}, - [4175] = {.lex_state = 93, .external_lex_state = 4}, - [4176] = {.lex_state = 11}, - [4177] = {.lex_state = 93, .external_lex_state = 4}, - [4178] = {.lex_state = 0}, - [4179] = {.lex_state = 0}, - [4180] = {.lex_state = 11}, - [4181] = {.lex_state = 5, .external_lex_state = 4}, - [4182] = {.lex_state = 93}, - [4183] = {.lex_state = 11}, - [4184] = {.lex_state = 13}, - [4185] = {.lex_state = 0, .external_lex_state = 4}, - [4186] = {.lex_state = 0}, - [4187] = {.lex_state = 5, .external_lex_state = 4}, - [4188] = {.lex_state = 0, .external_lex_state = 4}, - [4189] = {.lex_state = 0}, - [4190] = {.lex_state = 93, .external_lex_state = 4}, - [4191] = {.lex_state = 0}, - [4192] = {.lex_state = 93, .external_lex_state = 4}, - [4193] = {.lex_state = 0}, - [4194] = {.lex_state = 0}, - [4195] = {.lex_state = 93}, - [4196] = {.lex_state = 11}, - [4197] = {.lex_state = 13}, - [4198] = {.lex_state = 0}, - [4199] = {.lex_state = 93}, - [4200] = {.lex_state = 0}, - [4201] = {.lex_state = 0}, - [4202] = {.lex_state = 93, .external_lex_state = 4}, - [4203] = {.lex_state = 0}, - [4204] = {.lex_state = 0}, - [4205] = {.lex_state = 93}, - [4206] = {.lex_state = 93}, - [4207] = {.lex_state = 0}, - [4208] = {.lex_state = 5}, - [4209] = {.lex_state = 0}, - [4210] = {.lex_state = 5}, - [4211] = {.lex_state = 0}, - [4212] = {.lex_state = 11}, - [4213] = {.lex_state = 93, .external_lex_state = 4}, - [4214] = {.lex_state = 93}, - [4215] = {.lex_state = 0, .external_lex_state = 4}, - [4216] = {.lex_state = 0, .external_lex_state = 4}, - [4217] = {.lex_state = 0}, - [4218] = {.lex_state = 0, .external_lex_state = 4}, - [4219] = {.lex_state = 0, .external_lex_state = 4}, - [4220] = {.lex_state = 0, .external_lex_state = 4}, - [4221] = {.lex_state = 0, .external_lex_state = 4}, - [4222] = {.lex_state = 0, .external_lex_state = 4}, - [4223] = {.lex_state = 0}, - [4224] = {.lex_state = 0, .external_lex_state = 4}, - [4225] = {.lex_state = 0}, - [4226] = {.lex_state = 0}, - [4227] = {.lex_state = 0}, - [4228] = {.lex_state = 11}, - [4229] = {.lex_state = 0, .external_lex_state = 4}, - [4230] = {.lex_state = 0, .external_lex_state = 4}, - [4231] = {.lex_state = 0, .external_lex_state = 4}, - [4232] = {.lex_state = 11}, - [4233] = {.lex_state = 93}, - [4234] = {.lex_state = 5}, - [4235] = {.lex_state = 0, .external_lex_state = 4}, - [4236] = {.lex_state = 0}, - [4237] = {.lex_state = 0}, - [4238] = {.lex_state = 11}, - [4239] = {.lex_state = 0}, - [4240] = {.lex_state = 0}, - [4241] = {.lex_state = 0}, - [4242] = {.lex_state = 0, .external_lex_state = 4}, - [4243] = {.lex_state = 5}, - [4244] = {.lex_state = 0, .external_lex_state = 4}, - [4245] = {.lex_state = 0}, - [4246] = {.lex_state = 0}, - [4247] = {.lex_state = 0}, - [4248] = {.lex_state = 0, .external_lex_state = 4}, - [4249] = {.lex_state = 0}, - [4250] = {.lex_state = 93}, - [4251] = {.lex_state = 0, .external_lex_state = 4}, - [4252] = {.lex_state = 93}, - [4253] = {.lex_state = 93}, - [4254] = {.lex_state = 93}, - [4255] = {.lex_state = 0, .external_lex_state = 4}, - [4256] = {.lex_state = 93}, - [4257] = {.lex_state = 93}, - [4258] = {.lex_state = 11}, - [4259] = {.lex_state = 93}, - [4260] = {.lex_state = 93}, - [4261] = {.lex_state = 93}, - [4262] = {.lex_state = 93}, - [4263] = {.lex_state = 93}, - [4264] = {.lex_state = 0}, - [4265] = {.lex_state = 93}, - [4266] = {.lex_state = 93, .external_lex_state = 4}, - [4267] = {.lex_state = 0, .external_lex_state = 4}, - [4268] = {.lex_state = 11}, - [4269] = {.lex_state = 0}, - [4270] = {.lex_state = 93}, - [4271] = {.lex_state = 0}, - [4272] = {.lex_state = 11}, - [4273] = {.lex_state = 0}, - [4274] = {.lex_state = 11}, - [4275] = {.lex_state = 0, .external_lex_state = 4}, - [4276] = {.lex_state = 0, .external_lex_state = 4}, - [4277] = {.lex_state = 5}, - [4278] = {.lex_state = 0, .external_lex_state = 4}, - [4279] = {.lex_state = 0}, - [4280] = {.lex_state = 0}, - [4281] = {.lex_state = 93}, - [4282] = {.lex_state = 0, .external_lex_state = 4}, - [4283] = {.lex_state = 0}, - [4284] = {.lex_state = 0, .external_lex_state = 4}, - [4285] = {.lex_state = 93}, - [4286] = {.lex_state = 0}, - [4287] = {.lex_state = 11}, - [4288] = {.lex_state = 0}, - [4289] = {.lex_state = 93}, - [4290] = {.lex_state = 0}, - [4291] = {.lex_state = 93}, - [4292] = {.lex_state = 11}, - [4293] = {.lex_state = 93}, - [4294] = {.lex_state = 11}, - [4295] = {.lex_state = 93}, - [4296] = {.lex_state = 93}, - [4297] = {.lex_state = 0}, - [4298] = {.lex_state = 11}, - [4299] = {.lex_state = 0}, - [4300] = {.lex_state = 11}, - [4301] = {.lex_state = 0}, - [4302] = {.lex_state = 11}, - [4303] = {.lex_state = 93}, - [4304] = {.lex_state = 11}, - [4305] = {.lex_state = 11}, - [4306] = {.lex_state = 11}, - [4307] = {.lex_state = 11}, - [4308] = {.lex_state = 0, .external_lex_state = 4}, - [4309] = {.lex_state = 0}, - [4310] = {.lex_state = 11}, - [4311] = {.lex_state = 0}, - [4312] = {.lex_state = 11}, - [4313] = {.lex_state = 11}, - [4314] = {.lex_state = 11}, - [4315] = {.lex_state = 11}, - [4316] = {.lex_state = 11}, - [4317] = {.lex_state = 0}, - [4318] = {.lex_state = 11}, - [4319] = {.lex_state = 0}, - [4320] = {.lex_state = 11}, - [4321] = {.lex_state = 0, .external_lex_state = 4}, - [4322] = {.lex_state = 0}, - [4323] = {.lex_state = 93}, - [4324] = {.lex_state = 11}, - [4325] = {.lex_state = 11}, - [4326] = {.lex_state = 0}, - [4327] = {.lex_state = 0}, - [4328] = {.lex_state = 0, .external_lex_state = 4}, - [4329] = {.lex_state = 0, .external_lex_state = 4}, - [4330] = {.lex_state = 0, .external_lex_state = 4}, - [4331] = {.lex_state = 0, .external_lex_state = 4}, - [4332] = {.lex_state = 11}, - [4333] = {.lex_state = 11}, - [4334] = {.lex_state = 11}, - [4335] = {.lex_state = 0}, - [4336] = {.lex_state = 11}, - [4337] = {.lex_state = 93}, - [4338] = {.lex_state = 16}, - [4339] = {.lex_state = 0}, - [4340] = {.lex_state = 0}, - [4341] = {.lex_state = 0}, - [4342] = {.lex_state = 11}, - [4343] = {.lex_state = 11}, - [4344] = {.lex_state = 0}, - [4345] = {.lex_state = 0}, - [4346] = {.lex_state = 0}, - [4347] = {.lex_state = 11}, - [4348] = {.lex_state = 11}, - [4349] = {.lex_state = 11}, - [4350] = {.lex_state = 11}, - [4351] = {.lex_state = 0, .external_lex_state = 4}, - [4352] = {.lex_state = 93}, - [4353] = {.lex_state = 11}, - [4354] = {.lex_state = 11}, - [4355] = {.lex_state = 0}, - [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 0}, - [4358] = {.lex_state = 0, .external_lex_state = 4}, - [4359] = {.lex_state = 0}, - [4360] = {.lex_state = 11}, - [4361] = {.lex_state = 0}, - [4362] = {.lex_state = 0}, - [4363] = {.lex_state = 0}, - [4364] = {.lex_state = 11}, - [4365] = {.lex_state = 11}, - [4366] = {.lex_state = 11}, - [4367] = {.lex_state = 0}, - [4368] = {.lex_state = 0}, - [4369] = {.lex_state = 0}, - [4370] = {.lex_state = 0, .external_lex_state = 4}, - [4371] = {.lex_state = 93}, - [4372] = {.lex_state = 93}, - [4373] = {.lex_state = 93}, - [4374] = {.lex_state = 93}, - [4375] = {.lex_state = 11}, - [4376] = {.lex_state = 93}, - [4377] = {.lex_state = 0}, - [4378] = {.lex_state = 0, .external_lex_state = 4}, - [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 0, .external_lex_state = 4}, - [4381] = {.lex_state = 0}, - [4382] = {.lex_state = 0}, - [4383] = {.lex_state = 11}, - [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 11}, - [4386] = {.lex_state = 0, .external_lex_state = 4}, - [4387] = {.lex_state = 0, .external_lex_state = 4}, - [4388] = {.lex_state = 11}, - [4389] = {.lex_state = 0, .external_lex_state = 4}, - [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 11}, - [4392] = {.lex_state = 11}, - [4393] = {.lex_state = 0, .external_lex_state = 4}, - [4394] = {.lex_state = 0, .external_lex_state = 4}, - [4395] = {.lex_state = 0}, - [4396] = {.lex_state = 0}, - [4397] = {.lex_state = 11}, - [4398] = {.lex_state = 0}, - [4399] = {.lex_state = 11}, - [4400] = {.lex_state = 11}, - [4401] = {.lex_state = 11}, - [4402] = {.lex_state = 0}, - [4403] = {.lex_state = 11}, - [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 11}, - [4406] = {.lex_state = 11}, - [4407] = {.lex_state = 11}, - [4408] = {.lex_state = 11}, - [4409] = {.lex_state = 0, .external_lex_state = 4}, - [4410] = {.lex_state = 11}, - [4411] = {.lex_state = 0}, - [4412] = {.lex_state = 11}, - [4413] = {.lex_state = 0, .external_lex_state = 4}, - [4414] = {.lex_state = 0}, - [4415] = {.lex_state = 0}, - [4416] = {.lex_state = 11}, - [4417] = {.lex_state = 11}, - [4418] = {.lex_state = 0, .external_lex_state = 4}, - [4419] = {.lex_state = 11}, - [4420] = {.lex_state = 11}, - [4421] = {.lex_state = 93}, - [4422] = {.lex_state = 0, .external_lex_state = 4}, - [4423] = {.lex_state = 0, .external_lex_state = 4}, - [4424] = {.lex_state = 0, .external_lex_state = 4}, - [4425] = {.lex_state = 0, .external_lex_state = 4}, - [4426] = {.lex_state = 0, .external_lex_state = 4}, - [4427] = {.lex_state = 0, .external_lex_state = 4}, - [4428] = {.lex_state = 0, .external_lex_state = 4}, - [4429] = {.lex_state = 0}, - [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 11}, - [4432] = {.lex_state = 11}, - [4433] = {.lex_state = 11}, - [4434] = {.lex_state = 11}, - [4435] = {.lex_state = 11}, - [4436] = {.lex_state = 11}, - [4437] = {.lex_state = 11}, - [4438] = {.lex_state = 0}, - [4439] = {.lex_state = 0}, - [4440] = {.lex_state = 0}, - [4441] = {.lex_state = 93}, - [4442] = {.lex_state = 11}, - [4443] = {.lex_state = 0}, - [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 0}, - [4446] = {.lex_state = 0, .external_lex_state = 4}, - [4447] = {.lex_state = 0}, - [4448] = {.lex_state = 11}, - [4449] = {.lex_state = 0}, - [4450] = {.lex_state = 11}, - [4451] = {.lex_state = 0, .external_lex_state = 4}, - [4452] = {.lex_state = 11}, - [4453] = {.lex_state = 0}, - [4454] = {.lex_state = 11}, - [4455] = {.lex_state = 93}, - [4456] = {.lex_state = 0, .external_lex_state = 4}, - [4457] = {.lex_state = 11}, - [4458] = {.lex_state = 11}, - [4459] = {.lex_state = 11}, - [4460] = {.lex_state = 11}, - [4461] = {.lex_state = 0, .external_lex_state = 4}, - [4462] = {.lex_state = 11}, - [4463] = {.lex_state = 11}, - [4464] = {.lex_state = 0}, - [4465] = {.lex_state = 0, .external_lex_state = 4}, - [4466] = {.lex_state = 11}, - [4467] = {.lex_state = 0, .external_lex_state = 4}, - [4468] = {.lex_state = 11}, - [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 0}, - [4471] = {.lex_state = 0}, - [4472] = {.lex_state = 0}, - [4473] = {.lex_state = 0}, - [4474] = {.lex_state = 93}, - [4475] = {.lex_state = 0}, - [4476] = {.lex_state = 93}, - [4477] = {.lex_state = 93}, - [4478] = {.lex_state = 93}, - [4479] = {.lex_state = 0}, - [4480] = {.lex_state = 93}, - [4481] = {.lex_state = 11}, - [4482] = {.lex_state = 11}, - [4483] = {.lex_state = 0, .external_lex_state = 4}, - [4484] = {.lex_state = 0, .external_lex_state = 4}, - [4485] = {.lex_state = 0}, - [4486] = {.lex_state = 0, .external_lex_state = 4}, - [4487] = {.lex_state = 93}, - [4488] = {.lex_state = 11}, - [4489] = {.lex_state = 93}, - [4490] = {.lex_state = 93}, - [4491] = {.lex_state = 0}, - [4492] = {.lex_state = 0}, - [4493] = {.lex_state = 0}, - [4494] = {.lex_state = 0}, - [4495] = {.lex_state = 0}, - [4496] = {.lex_state = 0}, - [4497] = {.lex_state = 0}, - [4498] = {.lex_state = 0}, - [4499] = {.lex_state = 11}, - [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 0}, - [4502] = {.lex_state = 11}, - [4503] = {.lex_state = 11}, - [4504] = {.lex_state = 11}, - [4505] = {.lex_state = 0}, - [4506] = {.lex_state = 11}, - [4507] = {.lex_state = 1}, - [4508] = {.lex_state = 93}, - [4509] = {.lex_state = 0}, - [4510] = {.lex_state = 93}, - [4511] = {.lex_state = 0}, - [4512] = {.lex_state = 0}, - [4513] = {.lex_state = 11}, - [4514] = {.lex_state = 0}, - [4515] = {.lex_state = 11}, - [4516] = {.lex_state = 0}, - [4517] = {.lex_state = 0}, - [4518] = {.lex_state = 11}, - [4519] = {.lex_state = 0}, - [4520] = {.lex_state = 0}, - [4521] = {.lex_state = 11}, - [4522] = {.lex_state = 0, .external_lex_state = 4}, - [4523] = {.lex_state = 0}, - [4524] = {.lex_state = 0, .external_lex_state = 4}, - [4525] = {.lex_state = 11}, - [4526] = {.lex_state = 0}, - [4527] = {.lex_state = 0}, - [4528] = {.lex_state = 0}, - [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 11}, - [4531] = {.lex_state = 0}, - [4532] = {.lex_state = 0, .external_lex_state = 4}, - [4533] = {.lex_state = 0, .external_lex_state = 4}, - [4534] = {.lex_state = 11}, - [4535] = {.lex_state = 11}, - [4536] = {.lex_state = 11}, - [4537] = {.lex_state = 11}, - [4538] = {.lex_state = 0, .external_lex_state = 4}, - [4539] = {.lex_state = 11}, - [4540] = {.lex_state = 11}, - [4541] = {.lex_state = 11}, - [4542] = {.lex_state = 93}, - [4543] = {.lex_state = 11}, - [4544] = {.lex_state = 0, .external_lex_state = 4}, - [4545] = {.lex_state = 0}, - [4546] = {.lex_state = 93}, - [4547] = {.lex_state = 0, .external_lex_state = 4}, - [4548] = {.lex_state = 11}, - [4549] = {.lex_state = 11}, - [4550] = {.lex_state = 0}, - [4551] = {.lex_state = 0}, - [4552] = {.lex_state = 0}, - [4553] = {.lex_state = 93}, - [4554] = {.lex_state = 0}, - [4555] = {.lex_state = 11}, - [4556] = {.lex_state = 11}, - [4557] = {.lex_state = 0, .external_lex_state = 4}, - [4558] = {.lex_state = 11}, - [4559] = {.lex_state = 11}, - [4560] = {.lex_state = 93}, - [4561] = {.lex_state = 11}, - [4562] = {.lex_state = 0}, - [4563] = {.lex_state = 11}, - [4564] = {.lex_state = 0, .external_lex_state = 4}, - [4565] = {.lex_state = 93}, - [4566] = {.lex_state = 0}, - [4567] = {.lex_state = 0, .external_lex_state = 4}, - [4568] = {.lex_state = 11}, - [4569] = {.lex_state = 93}, - [4570] = {.lex_state = 11}, - [4571] = {.lex_state = 0, .external_lex_state = 4}, - [4572] = {.lex_state = 0, .external_lex_state = 4}, - [4573] = {.lex_state = 11}, - [4574] = {.lex_state = 11}, - [4575] = {.lex_state = 0}, - [4576] = {.lex_state = 11}, - [4577] = {.lex_state = 11}, - [4578] = {.lex_state = 11}, - [4579] = {.lex_state = 0}, - [4580] = {.lex_state = 11}, - [4581] = {.lex_state = 11}, - [4582] = {.lex_state = 0, .external_lex_state = 4}, - [4583] = {.lex_state = 11}, - [4584] = {.lex_state = 11}, - [4585] = {.lex_state = 0, .external_lex_state = 4}, - [4586] = {.lex_state = 0}, - [4587] = {.lex_state = 0, .external_lex_state = 4}, - [4588] = {.lex_state = 0, .external_lex_state = 4}, - [4589] = {.lex_state = 11}, - [4590] = {.lex_state = 11}, - [4591] = {.lex_state = 11}, - [4592] = {.lex_state = 0}, - [4593] = {.lex_state = 0, .external_lex_state = 4}, - [4594] = {.lex_state = 93}, - [4595] = {.lex_state = 11}, - [4596] = {.lex_state = 11}, - [4597] = {.lex_state = 11}, - [4598] = {.lex_state = 11}, - [4599] = {.lex_state = 11}, - [4600] = {.lex_state = 11}, - [4601] = {.lex_state = 0, .external_lex_state = 4}, - [4602] = {.lex_state = 0}, - [4603] = {.lex_state = 11}, - [4604] = {.lex_state = 11}, - [4605] = {.lex_state = 0, .external_lex_state = 4}, - [4606] = {.lex_state = 11}, - [4607] = {.lex_state = 11}, - [4608] = {.lex_state = 0}, - [4609] = {.lex_state = 0, .external_lex_state = 4}, - [4610] = {.lex_state = 0, .external_lex_state = 4}, - [4611] = {.lex_state = 11}, - [4612] = {.lex_state = 0, .external_lex_state = 4}, - [4613] = {.lex_state = 0, .external_lex_state = 4}, - [4614] = {.lex_state = 11}, - [4615] = {.lex_state = 0, .external_lex_state = 4}, - [4616] = {.lex_state = 11}, - [4617] = {.lex_state = 11}, - [4618] = {.lex_state = 11}, - [4619] = {.lex_state = 11}, - [4620] = {.lex_state = 11}, - [4621] = {.lex_state = 93}, - [4622] = {.lex_state = 11}, - [4623] = {.lex_state = 11}, - [4624] = {.lex_state = 11}, - [4625] = {.lex_state = 0, .external_lex_state = 4}, - [4626] = {.lex_state = 0, .external_lex_state = 4}, - [4627] = {.lex_state = 0}, - [4628] = {.lex_state = 0}, - [4629] = {.lex_state = 0, .external_lex_state = 4}, - [4630] = {.lex_state = 0, .external_lex_state = 4}, - [4631] = {.lex_state = 93}, - [4632] = {.lex_state = 0, .external_lex_state = 4}, - [4633] = {.lex_state = 93}, - [4634] = {.lex_state = 93}, - [4635] = {.lex_state = 93}, - [4636] = {.lex_state = 0, .external_lex_state = 4}, - [4637] = {.lex_state = 11}, - [4638] = {.lex_state = 11}, - [4639] = {.lex_state = 93}, - [4640] = {.lex_state = 11}, - [4641] = {.lex_state = 0, .external_lex_state = 4}, - [4642] = {.lex_state = 0, .external_lex_state = 4}, - [4643] = {.lex_state = 0, .external_lex_state = 4}, - [4644] = {.lex_state = 93}, - [4645] = {.lex_state = 93}, - [4646] = {.lex_state = 0}, - [4647] = {.lex_state = 0}, - [4648] = {.lex_state = 0}, - [4649] = {.lex_state = 0}, - [4650] = {.lex_state = 0}, - [4651] = {.lex_state = 93}, - [4652] = {.lex_state = 0}, - [4653] = {.lex_state = 0}, - [4654] = {.lex_state = 0}, - [4655] = {.lex_state = 93}, - [4656] = {.lex_state = 0}, - [4657] = {.lex_state = 0}, - [4658] = {.lex_state = 93}, - [4659] = {.lex_state = 93}, - [4660] = {.lex_state = 93}, - [4661] = {.lex_state = 93}, - [4662] = {.lex_state = 0}, - [4663] = {.lex_state = 0}, - [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 0}, - [4666] = {.lex_state = 0}, - [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 0}, - [4669] = {.lex_state = 0}, - [4670] = {.lex_state = 0}, - [4671] = {.lex_state = 0}, - [4672] = {.lex_state = 93}, - [4673] = {.lex_state = 0}, - [4674] = {.lex_state = 93}, - [4675] = {.lex_state = 5}, - [4676] = {.lex_state = 2}, - [4677] = {.lex_state = 0}, - [4678] = {.lex_state = 0}, - [4679] = {.lex_state = 0}, - [4680] = {.lex_state = 0}, - [4681] = {.lex_state = 93}, - [4682] = {.lex_state = 93}, - [4683] = {.lex_state = 93}, - [4684] = {.lex_state = 0}, - [4685] = {.lex_state = 0}, - [4686] = {.lex_state = 0}, - [4687] = {.lex_state = 0}, - [4688] = {.lex_state = 0}, - [4689] = {.lex_state = 0}, - [4690] = {.lex_state = 93}, - [4691] = {.lex_state = 0}, - [4692] = {.lex_state = 93}, - [4693] = {.lex_state = 0}, - [4694] = {.lex_state = 93}, - [4695] = {.lex_state = 0}, - [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 0}, - [4698] = {.lex_state = 0}, - [4699] = {.lex_state = 0}, - [4700] = {.lex_state = 93}, - [4701] = {.lex_state = 93}, - [4702] = {.lex_state = 93}, - [4703] = {.lex_state = 93}, - [4704] = {.lex_state = 0}, - [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 0}, - [4707] = {.lex_state = 93}, - [4708] = {.lex_state = 0}, - [4709] = {.lex_state = 0}, - [4710] = {.lex_state = 0}, - [4711] = {.lex_state = 0}, - [4712] = {.lex_state = 0}, - [4713] = {.lex_state = 13}, - [4714] = {.lex_state = 0}, - [4715] = {.lex_state = 0}, - [4716] = {.lex_state = 93}, - [4717] = {.lex_state = 0}, - [4718] = {.lex_state = 93}, - [4719] = {.lex_state = 93}, - [4720] = {.lex_state = 93}, - [4721] = {.lex_state = 93}, - [4722] = {.lex_state = 0}, - [4723] = {.lex_state = 93}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 93}, - [4726] = {.lex_state = 93}, - [4727] = {.lex_state = 93}, - [4728] = {.lex_state = 93}, - [4729] = {.lex_state = 11}, - [4730] = {.lex_state = 93}, - [4731] = {.lex_state = 0}, - [4732] = {.lex_state = 0}, - [4733] = {.lex_state = 0}, - [4734] = {.lex_state = 0}, - [4735] = {.lex_state = 93}, - [4736] = {.lex_state = 93}, - [4737] = {.lex_state = 0}, - [4738] = {.lex_state = 0}, - [4739] = {.lex_state = 0}, - [4740] = {.lex_state = 0}, - [4741] = {.lex_state = 0}, - [4742] = {.lex_state = 0}, - [4743] = {.lex_state = 93}, - [4744] = {.lex_state = 0}, - [4745] = {.lex_state = 93}, - [4746] = {.lex_state = 0}, - [4747] = {.lex_state = 0}, - [4748] = {.lex_state = 93}, - [4749] = {.lex_state = 13}, - [4750] = {.lex_state = 0}, - [4751] = {.lex_state = 0}, - [4752] = {.lex_state = 93}, - [4753] = {.lex_state = 0}, - [4754] = {.lex_state = 93}, - [4755] = {.lex_state = 93}, - [4756] = {.lex_state = 0}, - [4757] = {.lex_state = 0}, - [4758] = {.lex_state = 0}, - [4759] = {.lex_state = 0}, - [4760] = {.lex_state = 0}, - [4761] = {.lex_state = 0}, - [4762] = {.lex_state = 2}, - [4763] = {.lex_state = 93}, - [4764] = {.lex_state = 93}, - [4765] = {.lex_state = 0}, - [4766] = {.lex_state = 0}, - [4767] = {.lex_state = 93}, - [4768] = {.lex_state = 5}, - [4769] = {.lex_state = 2}, - [4770] = {.lex_state = 93}, - [4771] = {.lex_state = 0}, - [4772] = {.lex_state = 0}, - [4773] = {.lex_state = 0}, - [4774] = {.lex_state = 0}, - [4775] = {.lex_state = 0}, - [4776] = {.lex_state = 13}, - [4777] = {.lex_state = 0}, - [4778] = {.lex_state = 93}, - [4779] = {.lex_state = 11}, - [4780] = {.lex_state = 0}, - [4781] = {.lex_state = 0}, - [4782] = {.lex_state = 0}, - [4783] = {.lex_state = 0}, - [4784] = {.lex_state = 0}, - [4785] = {.lex_state = 0}, - [4786] = {.lex_state = 0}, - [4787] = {.lex_state = 0}, - [4788] = {.lex_state = 0}, - [4789] = {.lex_state = 93}, - [4790] = {.lex_state = 93}, - [4791] = {.lex_state = 93}, - [4792] = {.lex_state = 0}, - [4793] = {.lex_state = 93}, - [4794] = {.lex_state = 0}, - [4795] = {.lex_state = 0}, - [4796] = {.lex_state = 0}, - [4797] = {.lex_state = 0}, - [4798] = {.lex_state = 0}, - [4799] = {.lex_state = 5}, - [4800] = {.lex_state = 2}, - [4801] = {.lex_state = 5}, - [4802] = {.lex_state = 93}, - [4803] = {.lex_state = 0}, - [4804] = {.lex_state = 2}, - [4805] = {.lex_state = 0}, - [4806] = {.lex_state = 0}, - [4807] = {.lex_state = 5}, - [4808] = {.lex_state = 0}, - [4809] = {.lex_state = 0}, - [4810] = {.lex_state = 93}, - [4811] = {.lex_state = 0}, - [4812] = {.lex_state = 93}, - [4813] = {.lex_state = 0}, - [4814] = {.lex_state = 0}, - [4815] = {.lex_state = 93}, - [4816] = {.lex_state = 0}, - [4817] = {.lex_state = 0}, - [4818] = {.lex_state = 0}, - [4819] = {.lex_state = 0}, - [4820] = {.lex_state = 93}, - [4821] = {.lex_state = 5}, - [4822] = {.lex_state = 0}, - [4823] = {.lex_state = 0}, - [4824] = {.lex_state = 0}, - [4825] = {.lex_state = 0}, - [4826] = {.lex_state = 0}, - [4827] = {.lex_state = 93}, - [4828] = {.lex_state = 93}, - [4829] = {.lex_state = 93}, - [4830] = {.lex_state = 93}, - [4831] = {.lex_state = 93}, - [4832] = {.lex_state = 0}, - [4833] = {.lex_state = 0}, - [4834] = {.lex_state = 0}, - [4835] = {.lex_state = 93}, - [4836] = {.lex_state = 0}, - [4837] = {.lex_state = 93}, - [4838] = {.lex_state = 0}, - [4839] = {.lex_state = 93}, - [4840] = {.lex_state = 0}, - [4841] = {.lex_state = 93}, - [4842] = {.lex_state = 0}, - [4843] = {.lex_state = 0}, - [4844] = {.lex_state = 93}, - [4845] = {.lex_state = 93}, - [4846] = {.lex_state = 93}, - [4847] = {.lex_state = 93}, - [4848] = {.lex_state = 93}, - [4849] = {.lex_state = 0}, - [4850] = {.lex_state = 0}, - [4851] = {.lex_state = 0}, - [4852] = {.lex_state = 0}, - [4853] = {.lex_state = 93}, - [4854] = {.lex_state = 93}, - [4855] = {.lex_state = 0}, - [4856] = {.lex_state = 93}, - [4857] = {.lex_state = 0}, - [4858] = {.lex_state = 0}, - [4859] = {.lex_state = 93}, - [4860] = {.lex_state = 13}, - [4861] = {.lex_state = 0}, - [4862] = {.lex_state = 93}, - [4863] = {.lex_state = 93}, - [4864] = {.lex_state = 0}, - [4865] = {.lex_state = 0}, - [4866] = {.lex_state = 0}, - [4867] = {.lex_state = 0}, - [4868] = {.lex_state = 0}, - [4869] = {.lex_state = 0}, - [4870] = {.lex_state = 93}, - [4871] = {.lex_state = 0}, - [4872] = {.lex_state = 93}, - [4873] = {.lex_state = 0}, - [4874] = {.lex_state = 0}, - [4875] = {.lex_state = 0}, - [4876] = {.lex_state = 0}, - [4877] = {.lex_state = 93}, - [4878] = {.lex_state = 93}, - [4879] = {.lex_state = 0}, - [4880] = {.lex_state = 5}, - [4881] = {.lex_state = 13}, - [4882] = {.lex_state = 0}, - [4883] = {.lex_state = 0}, - [4884] = {.lex_state = 0}, - [4885] = {.lex_state = 93}, - [4886] = {.lex_state = 0}, - [4887] = {.lex_state = 0}, - [4888] = {.lex_state = 0}, - [4889] = {.lex_state = 0}, - [4890] = {.lex_state = 0}, - [4891] = {.lex_state = 93}, - [4892] = {.lex_state = 0}, - [4893] = {.lex_state = 0}, - [4894] = {.lex_state = 0}, - [4895] = {.lex_state = 0}, - [4896] = {.lex_state = 0}, - [4897] = {.lex_state = 93}, - [4898] = {.lex_state = 93}, - [4899] = {.lex_state = 0}, - [4900] = {.lex_state = 0}, - [4901] = {.lex_state = 0}, - [4902] = {.lex_state = 0}, - [4903] = {.lex_state = 0}, - [4904] = {.lex_state = 0}, - [4905] = {.lex_state = 0}, - [4906] = {.lex_state = 0}, - [4907] = {.lex_state = 0}, - [4908] = {.lex_state = 0}, - [4909] = {.lex_state = 0}, - [4910] = {.lex_state = 93}, - [4911] = {.lex_state = 93}, - [4912] = {.lex_state = 0}, - [4913] = {.lex_state = 0}, - [4914] = {.lex_state = 0}, - [4915] = {.lex_state = 93}, - [4916] = {.lex_state = 0}, - [4917] = {.lex_state = 0}, - [4918] = {.lex_state = 93}, - [4919] = {.lex_state = 0}, - [4920] = {.lex_state = 93}, - [4921] = {.lex_state = 0}, - [4922] = {.lex_state = 0}, - [4923] = {.lex_state = 0}, - [4924] = {.lex_state = 0}, - [4925] = {.lex_state = 0}, - [4926] = {.lex_state = 11}, - [4927] = {.lex_state = 0}, - [4928] = {.lex_state = 0}, - [4929] = {.lex_state = 0}, - [4930] = {.lex_state = 0}, - [4931] = {.lex_state = 0}, - [4932] = {.lex_state = 0}, - [4933] = {.lex_state = 0}, - [4934] = {.lex_state = 0}, - [4935] = {.lex_state = 0}, - [4936] = {.lex_state = 0}, - [4937] = {.lex_state = 0}, - [4938] = {.lex_state = 0}, - [4939] = {.lex_state = 0}, - [4940] = {.lex_state = 0}, - [4941] = {.lex_state = 0}, - [4942] = {.lex_state = 0}, - [4943] = {.lex_state = 0}, - [4944] = {.lex_state = 0}, - [4945] = {.lex_state = 0}, - [4946] = {.lex_state = 0}, - [4947] = {.lex_state = 0}, - [4948] = {.lex_state = 0}, - [4949] = {.lex_state = 0}, - [4950] = {.lex_state = 0}, - [4951] = {.lex_state = 0}, - [4952] = {.lex_state = 0}, - [4953] = {.lex_state = 0}, - [4954] = {.lex_state = 0}, - [4955] = {.lex_state = 0}, - [4956] = {.lex_state = 0}, - [4957] = {.lex_state = 0}, - [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 0}, - [4960] = {.lex_state = 0}, - [4961] = {.lex_state = 0}, - [4962] = {.lex_state = 0}, - [4963] = {.lex_state = 0}, - [4964] = {.lex_state = 93}, - [4965] = {.lex_state = 93}, - [4966] = {.lex_state = 93}, - [4967] = {.lex_state = 93}, - [4968] = {.lex_state = 0}, - [4969] = {.lex_state = 93}, - [4970] = {.lex_state = 93}, - [4971] = {.lex_state = 0}, - [4972] = {.lex_state = 0}, - [4973] = {.lex_state = 93}, - [4974] = {.lex_state = 93}, - [4975] = {.lex_state = 0}, - [4976] = {.lex_state = 0}, - [4977] = {.lex_state = 0}, - [4978] = {.lex_state = 93}, - [4979] = {.lex_state = 0}, - [4980] = {.lex_state = 93}, - [4981] = {.lex_state = 93}, - [4982] = {.lex_state = 0}, - [4983] = {.lex_state = 93}, - [4984] = {.lex_state = 93}, - [4985] = {.lex_state = 0}, - [4986] = {.lex_state = 93}, - [4987] = {.lex_state = 13}, - [4988] = {.lex_state = 0}, - [4989] = {.lex_state = 0}, - [4990] = {.lex_state = 93}, - [4991] = {.lex_state = 0}, - [4992] = {.lex_state = 0}, - [4993] = {.lex_state = 0}, - [4994] = {.lex_state = 93}, - [4995] = {.lex_state = 0}, - [4996] = {.lex_state = 0}, - [4997] = {.lex_state = 0}, - [4998] = {.lex_state = 93}, - [4999] = {.lex_state = 0}, - [5000] = {.lex_state = 93}, - [5001] = {.lex_state = 93}, - [5002] = {.lex_state = 93}, - [5003] = {.lex_state = 93}, - [5004] = {.lex_state = 0}, - [5005] = {.lex_state = 93}, - [5006] = {.lex_state = 93}, - [5007] = {.lex_state = 0}, - [5008] = {.lex_state = 0}, - [5009] = {.lex_state = 93}, - [5010] = {.lex_state = 0}, - [5011] = {.lex_state = 0}, - [5012] = {.lex_state = 0}, - [5013] = {.lex_state = 93}, - [5014] = {.lex_state = 93}, - [5015] = {.lex_state = 93}, - [5016] = {.lex_state = 93}, - [5017] = {.lex_state = 0}, - [5018] = {.lex_state = 93}, - [5019] = {.lex_state = 93}, - [5020] = {.lex_state = 0}, - [5021] = {.lex_state = 0}, - [5022] = {.lex_state = 0}, -}; - -enum { - ts_external_token__automatic_semicolon = 0, - ts_external_token__template_chars = 1, - ts_external_token__ternary_qmark = 2, - ts_external_token_PIPE_PIPE = 3, - ts_external_token__function_signature_automatic_semicolon = 4, -}; - -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_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [ts_external_token__function_signature_automatic_semicolon] = sym__function_signature_automatic_semicolon, -}; - -static const bool ts_external_scanner_states[7][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_PIPE_PIPE] = true, - [ts_external_token__function_signature_automatic_semicolon] = true, - }, - [2] = { - [ts_external_token__ternary_qmark] = true, - [ts_external_token_PIPE_PIPE] = true, - }, - [3] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token__ternary_qmark] = true, - [ts_external_token_PIPE_PIPE] = true, - }, - [4] = { - [ts_external_token__automatic_semicolon] = true, - }, - [5] = { - [ts_external_token__automatic_semicolon] = true, - [ts_external_token__function_signature_automatic_semicolon] = true, - }, - [6] = { - [ts_external_token__template_chars] = true, - }, -}; - -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_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_with] = 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), - [anon_sym_LTtemplate_GT] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_class] = ACTIONS(1), - [anon_sym_async] = ACTIONS(1), - [anon_sym_function] = ACTIONS(1), - [anon_sym_EQ_GT] = ACTIONS(1), - [anon_sym_QMARK_DOT] = ACTIONS(1), - [anon_sym_new] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_STAR_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_PERCENT] = ACTIONS(1), - [anon_sym_STAR_STAR] = 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), - [anon_sym_DQUOTE] = ACTIONS(1), - [anon_sym_SQUOTE] = 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_property] = ACTIONS(1), - [anon_sym_signal] = ACTIONS(1), - [anon_sym_on] = ACTIONS(1), - [anon_sym_required] = ACTIONS(1), - [anon_sym_component] = ACTIONS(1), - [anon_sym_abstract] = 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_asserts] = ACTIONS(1), - [anon_sym_infer] = ACTIONS(1), - [anon_sym_is] = ACTIONS(1), - [anon_sym_keyof] = ACTIONS(1), - [anon_sym_unknown] = ACTIONS(1), - [anon_sym_never] = ACTIONS(1), - [anon_sym_object] = ACTIONS(1), - [anon_sym_LBRACE_PIPE] = ACTIONS(1), - [anon_sym_PIPE_RBRACE] = ACTIONS(1), - [anon_sym_pragma] = ACTIONS(1), - [aux_sym_ui_version_specifier_token1] = ACTIONS(1), - [anon_sym_list] = ACTIONS(1), - [sym__automatic_semicolon] = ACTIONS(1), - [sym__template_chars] = ACTIONS(1), - [sym__ternary_qmark] = ACTIONS(1), - [sym__function_signature_automatic_semicolon] = ACTIONS(1), - }, - [1] = { - [sym_program] = STATE(5011), - [sym_ui_pragma] = STATE(2426), - [sym_ui_import] = STATE(2426), - [sym_ui_object_definition] = STATE(5007), - [sym_ui_annotated_object] = STATE(5007), - [sym_ui_annotation] = STATE(2770), - [sym_ui_nested_identifier] = STATE(4277), - [aux_sym_program_repeat1] = STATE(2426), - [aux_sym_ui_annotated_object_repeat1] = STATE(2771), - [sym_identifier] = ACTIONS(5), - [sym_hash_bang_line] = ACTIONS(7), - [anon_sym_export] = ACTIONS(9), - [anon_sym_type] = ACTIONS(9), - [anon_sym_namespace] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(9), - [anon_sym_of] = ACTIONS(9), - [anon_sym_async] = ACTIONS(9), - [sym_comment] = ACTIONS(3), - [anon_sym_AT] = ACTIONS(13), - [anon_sym_static] = ACTIONS(9), - [anon_sym_readonly] = ACTIONS(9), - [anon_sym_get] = ACTIONS(9), - [anon_sym_set] = ACTIONS(9), - [anon_sym_declare] = ACTIONS(9), - [anon_sym_public] = ACTIONS(9), - [anon_sym_private] = ACTIONS(9), - [anon_sym_protected] = ACTIONS(9), - [anon_sym_override] = ACTIONS(9), - [anon_sym_module] = ACTIONS(9), - [anon_sym_any] = ACTIONS(9), - [anon_sym_number] = ACTIONS(9), - [anon_sym_boolean] = ACTIONS(9), - [anon_sym_string] = ACTIONS(9), - [anon_sym_symbol] = ACTIONS(9), - [anon_sym_property] = ACTIONS(9), - [anon_sym_signal] = ACTIONS(9), - [anon_sym_on] = ACTIONS(9), - [anon_sym_required] = ACTIONS(9), - [anon_sym_component] = ACTIONS(9), - [anon_sym_pragma] = ACTIONS(15), - }, - [2] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3725), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(557), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(17), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_type] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(23), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_COMMA] = ACTIONS(32), - [anon_sym_typeof] = ACTIONS(35), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_RPAREN] = ACTIONS(32), - [anon_sym_await] = ACTIONS(44), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(19), - [anon_sym_COLON] = ACTIONS(32), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(48), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(54), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(81), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(96), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(102), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(106), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(110), - [anon_sym_number] = ACTIONS(110), - [anon_sym_boolean] = ACTIONS(110), - [anon_sym_string] = ACTIONS(110), - [anon_sym_symbol] = ACTIONS(110), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(65), - }, - [3] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3725), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(557), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(17), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_type] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_typeof] = ACTIONS(35), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_await] = ACTIONS(44), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(19), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(48), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(54), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(81), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(96), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(102), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(106), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(110), - [anon_sym_number] = ACTIONS(110), - [anon_sym_boolean] = ACTIONS(110), - [anon_sym_string] = ACTIONS(110), - [anon_sym_symbol] = ACTIONS(110), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(65), - }, - [4] = { - [sym_export_statement] = STATE(31), - [sym_declaration] = STATE(31), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_for_in_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_try_statement] = STATE(31), - [sym_with_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_debugger_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_throw_statement] = STATE(31), - [sym_empty_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4662), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4662), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4662), - [sym_spread_element] = STATE(4141), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2293), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4141), - [sym_pair] = STATE(4141), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(3262), - [sym_computed_property_name] = STATE(3262), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_accessibility_modifier] = STATE(2452), - [sym_override_modifier] = STATE(2494), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(31), - [aux_sym_object_repeat1] = STATE(4139), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(129), - [anon_sym_export] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_type] = ACTIONS(135), - [anon_sym_namespace] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(143), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(149), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(149), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(197), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(213), - [sym_private_property_identifier] = ACTIONS(215), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(221), - [anon_sym_readonly] = ACTIONS(223), - [anon_sym_get] = ACTIONS(225), - [anon_sym_set] = ACTIONS(225), - [anon_sym_declare] = ACTIONS(227), - [anon_sym_public] = ACTIONS(229), - [anon_sym_private] = ACTIONS(229), - [anon_sym_protected] = ACTIONS(229), - [anon_sym_override] = ACTIONS(231), - [anon_sym_module] = ACTIONS(233), - [anon_sym_any] = ACTIONS(149), - [anon_sym_number] = ACTIONS(149), - [anon_sym_boolean] = ACTIONS(149), - [anon_sym_string] = ACTIONS(149), - [anon_sym_symbol] = ACTIONS(149), - [anon_sym_property] = ACTIONS(149), - [anon_sym_signal] = ACTIONS(149), - [anon_sym_on] = ACTIONS(149), - [anon_sym_required] = ACTIONS(149), - [anon_sym_component] = ACTIONS(149), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [5] = { - [sym_export_statement] = STATE(31), - [sym_declaration] = STATE(31), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_for_in_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_try_statement] = STATE(31), - [sym_with_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_debugger_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_throw_statement] = STATE(31), - [sym_empty_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4662), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4662), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4662), - [sym_spread_element] = STATE(4141), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2293), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4141), - [sym_pair] = STATE(4141), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(3262), - [sym_computed_property_name] = STATE(3262), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_accessibility_modifier] = STATE(2452), - [sym_override_modifier] = STATE(2494), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(31), - [aux_sym_object_repeat1] = STATE(4139), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(129), - [anon_sym_export] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_type] = ACTIONS(135), - [anon_sym_namespace] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(241), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(149), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(149), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(197), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(213), - [sym_private_property_identifier] = ACTIONS(215), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(221), - [anon_sym_readonly] = ACTIONS(223), - [anon_sym_get] = ACTIONS(225), - [anon_sym_set] = ACTIONS(225), - [anon_sym_declare] = ACTIONS(227), - [anon_sym_public] = ACTIONS(229), - [anon_sym_private] = ACTIONS(229), - [anon_sym_protected] = ACTIONS(229), - [anon_sym_override] = ACTIONS(231), - [anon_sym_module] = ACTIONS(233), - [anon_sym_any] = ACTIONS(149), - [anon_sym_number] = ACTIONS(149), - [anon_sym_boolean] = ACTIONS(149), - [anon_sym_string] = ACTIONS(149), - [anon_sym_symbol] = ACTIONS(149), - [anon_sym_property] = ACTIONS(149), - [anon_sym_signal] = ACTIONS(149), - [anon_sym_on] = ACTIONS(149), - [anon_sym_required] = ACTIONS(149), - [anon_sym_component] = ACTIONS(149), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [6] = { - [sym_export_statement] = STATE(19), - [sym_declaration] = STATE(19), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_for_in_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_try_statement] = STATE(19), - [sym_with_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_debugger_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_throw_statement] = STATE(19), - [sym_empty_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4662), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4662), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4662), - [sym_spread_element] = STATE(4101), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2293), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4101), - [sym_pair] = STATE(4101), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(3262), - [sym_computed_property_name] = STATE(3262), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_accessibility_modifier] = STATE(2452), - [sym_override_modifier] = STATE(2494), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(19), - [aux_sym_object_repeat1] = STATE(4092), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(243), - [anon_sym_export] = ACTIONS(245), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_type] = ACTIONS(247), - [anon_sym_namespace] = ACTIONS(249), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(251), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(253), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(253), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(255), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(213), - [sym_private_property_identifier] = ACTIONS(215), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(257), - [anon_sym_readonly] = ACTIONS(259), - [anon_sym_get] = ACTIONS(261), - [anon_sym_set] = ACTIONS(261), - [anon_sym_declare] = ACTIONS(263), - [anon_sym_public] = ACTIONS(265), - [anon_sym_private] = ACTIONS(265), - [anon_sym_protected] = ACTIONS(265), - [anon_sym_override] = ACTIONS(267), - [anon_sym_module] = ACTIONS(269), - [anon_sym_any] = ACTIONS(253), - [anon_sym_number] = ACTIONS(253), - [anon_sym_boolean] = ACTIONS(253), - [anon_sym_string] = ACTIONS(253), - [anon_sym_symbol] = ACTIONS(253), - [anon_sym_property] = ACTIONS(253), - [anon_sym_signal] = ACTIONS(253), - [anon_sym_on] = ACTIONS(253), - [anon_sym_required] = ACTIONS(253), - [anon_sym_component] = ACTIONS(253), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [7] = { - [sym_export_statement] = STATE(17), - [sym_declaration] = STATE(17), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_for_in_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_try_statement] = STATE(17), - [sym_with_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_debugger_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym_empty_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4662), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4662), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4662), - [sym_spread_element] = STATE(4141), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2293), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4141), - [sym_pair] = STATE(4141), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(3262), - [sym_computed_property_name] = STATE(3262), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_accessibility_modifier] = STATE(2452), - [sym_override_modifier] = STATE(2494), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(17), - [aux_sym_object_repeat1] = STATE(4139), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(129), - [anon_sym_export] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_type] = ACTIONS(135), - [anon_sym_namespace] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(271), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(149), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(149), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(197), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(213), - [sym_private_property_identifier] = ACTIONS(215), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(221), - [anon_sym_readonly] = ACTIONS(223), - [anon_sym_get] = ACTIONS(225), - [anon_sym_set] = ACTIONS(225), - [anon_sym_declare] = ACTIONS(227), - [anon_sym_public] = ACTIONS(229), - [anon_sym_private] = ACTIONS(229), - [anon_sym_protected] = ACTIONS(229), - [anon_sym_override] = ACTIONS(231), - [anon_sym_module] = ACTIONS(233), - [anon_sym_any] = ACTIONS(149), - [anon_sym_number] = ACTIONS(149), - [anon_sym_boolean] = ACTIONS(149), - [anon_sym_string] = ACTIONS(149), - [anon_sym_symbol] = ACTIONS(149), - [anon_sym_property] = ACTIONS(149), - [anon_sym_signal] = ACTIONS(149), - [anon_sym_on] = ACTIONS(149), - [anon_sym_required] = ACTIONS(149), - [anon_sym_component] = ACTIONS(149), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [8] = { - [sym_export_statement] = STATE(19), - [sym_declaration] = STATE(19), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_for_in_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_try_statement] = STATE(19), - [sym_with_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_debugger_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_throw_statement] = STATE(19), - [sym_empty_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4662), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4662), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4662), - [sym_spread_element] = STATE(4101), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2293), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4101), - [sym_pair] = STATE(4101), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(3262), - [sym_computed_property_name] = STATE(3262), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_accessibility_modifier] = STATE(2452), - [sym_override_modifier] = STATE(2494), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(19), - [aux_sym_object_repeat1] = STATE(4092), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(273), - [anon_sym_export] = ACTIONS(275), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_type] = ACTIONS(277), - [anon_sym_namespace] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(251), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(281), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(281), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(283), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(213), - [sym_private_property_identifier] = ACTIONS(215), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(285), - [anon_sym_readonly] = ACTIONS(287), - [anon_sym_get] = ACTIONS(289), - [anon_sym_set] = ACTIONS(289), - [anon_sym_declare] = ACTIONS(291), - [anon_sym_public] = ACTIONS(293), - [anon_sym_private] = ACTIONS(293), - [anon_sym_protected] = ACTIONS(293), - [anon_sym_override] = ACTIONS(295), - [anon_sym_module] = ACTIONS(297), - [anon_sym_any] = ACTIONS(281), - [anon_sym_number] = ACTIONS(281), - [anon_sym_boolean] = ACTIONS(281), - [anon_sym_string] = ACTIONS(281), - [anon_sym_symbol] = ACTIONS(281), - [anon_sym_property] = ACTIONS(281), - [anon_sym_signal] = ACTIONS(281), - [anon_sym_on] = ACTIONS(281), - [anon_sym_required] = ACTIONS(281), - [anon_sym_component] = ACTIONS(281), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [9] = { - [sym_export_statement] = STATE(19), - [sym_declaration] = STATE(19), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_for_in_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_try_statement] = STATE(19), - [sym_with_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_debugger_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_throw_statement] = STATE(19), - [sym_empty_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4662), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4662), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4662), - [sym_spread_element] = STATE(4101), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2293), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4101), - [sym_pair] = STATE(4101), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(3262), - [sym_computed_property_name] = STATE(3262), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_accessibility_modifier] = STATE(2452), - [sym_override_modifier] = STATE(2494), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(19), - [aux_sym_object_repeat1] = STATE(4092), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(299), - [anon_sym_export] = ACTIONS(301), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_type] = ACTIONS(303), - [anon_sym_namespace] = ACTIONS(305), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(251), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(307), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(307), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(309), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(213), - [sym_private_property_identifier] = ACTIONS(215), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(311), - [anon_sym_readonly] = ACTIONS(313), - [anon_sym_get] = ACTIONS(315), - [anon_sym_set] = ACTIONS(315), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_public] = ACTIONS(319), - [anon_sym_private] = ACTIONS(319), - [anon_sym_protected] = ACTIONS(319), - [anon_sym_override] = ACTIONS(321), - [anon_sym_module] = ACTIONS(323), - [anon_sym_any] = ACTIONS(307), - [anon_sym_number] = ACTIONS(307), - [anon_sym_boolean] = ACTIONS(307), - [anon_sym_string] = ACTIONS(307), - [anon_sym_symbol] = ACTIONS(307), - [anon_sym_property] = ACTIONS(307), - [anon_sym_signal] = ACTIONS(307), - [anon_sym_on] = ACTIONS(307), - [anon_sym_required] = ACTIONS(307), - [anon_sym_component] = ACTIONS(307), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [10] = { - [sym_export_statement] = STATE(23), - [sym_declaration] = STATE(23), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_for_in_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_try_statement] = STATE(23), - [sym_with_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_debugger_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_throw_statement] = STATE(23), - [sym_empty_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4662), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4662), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4662), - [sym_spread_element] = STATE(4141), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2293), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4141), - [sym_pair] = STATE(4141), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(3262), - [sym_computed_property_name] = STATE(3262), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_accessibility_modifier] = STATE(2452), - [sym_override_modifier] = STATE(2494), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(23), - [aux_sym_object_repeat1] = STATE(4139), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(129), - [anon_sym_export] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(133), - [anon_sym_type] = ACTIONS(135), - [anon_sym_namespace] = ACTIONS(137), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(141), - [anon_sym_RBRACE] = ACTIONS(325), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(149), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(149), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(197), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(213), - [sym_private_property_identifier] = ACTIONS(215), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(221), - [anon_sym_readonly] = ACTIONS(223), - [anon_sym_get] = ACTIONS(225), - [anon_sym_set] = ACTIONS(225), - [anon_sym_declare] = ACTIONS(227), - [anon_sym_public] = ACTIONS(229), - [anon_sym_private] = ACTIONS(229), - [anon_sym_protected] = ACTIONS(229), - [anon_sym_override] = ACTIONS(231), - [anon_sym_module] = ACTIONS(233), - [anon_sym_any] = ACTIONS(149), - [anon_sym_number] = ACTIONS(149), - [anon_sym_boolean] = ACTIONS(149), - [anon_sym_string] = ACTIONS(149), - [anon_sym_symbol] = ACTIONS(149), - [anon_sym_property] = ACTIONS(149), - [anon_sym_signal] = ACTIONS(149), - [anon_sym_on] = ACTIONS(149), - [anon_sym_required] = ACTIONS(149), - [anon_sym_component] = ACTIONS(149), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [11] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_default] = ACTIONS(331), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(337), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_case] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [12] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(351), - [anon_sym_export] = ACTIONS(354), - [anon_sym_default] = ACTIONS(357), - [anon_sym_type] = ACTIONS(359), - [anon_sym_namespace] = ACTIONS(362), - [anon_sym_LBRACE] = ACTIONS(365), - [anon_sym_RBRACE] = ACTIONS(368), - [anon_sym_typeof] = ACTIONS(370), - [anon_sym_import] = ACTIONS(373), - [anon_sym_from] = ACTIONS(376), - [anon_sym_var] = ACTIONS(379), - [anon_sym_let] = ACTIONS(382), - [anon_sym_const] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(388), - [anon_sym_if] = ACTIONS(391), - [anon_sym_switch] = ACTIONS(394), - [anon_sym_for] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(400), - [anon_sym_await] = ACTIONS(403), - [anon_sym_of] = ACTIONS(376), - [anon_sym_while] = ACTIONS(406), - [anon_sym_do] = ACTIONS(409), - [anon_sym_try] = ACTIONS(412), - [anon_sym_with] = ACTIONS(415), - [anon_sym_break] = ACTIONS(418), - [anon_sym_continue] = ACTIONS(421), - [anon_sym_debugger] = ACTIONS(424), - [anon_sym_return] = ACTIONS(427), - [anon_sym_throw] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(433), - [anon_sym_case] = ACTIONS(357), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_LBRACK] = ACTIONS(439), - [anon_sym_LTtemplate_GT] = ACTIONS(442), - [anon_sym_LT] = ACTIONS(445), - [anon_sym_SLASH] = ACTIONS(448), - [anon_sym_class] = ACTIONS(451), - [anon_sym_async] = ACTIONS(454), - [anon_sym_function] = ACTIONS(457), - [anon_sym_new] = ACTIONS(460), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_TILDE] = ACTIONS(388), - [anon_sym_void] = ACTIONS(370), - [anon_sym_delete] = ACTIONS(370), - [anon_sym_PLUS_PLUS] = ACTIONS(463), - [anon_sym_DASH_DASH] = ACTIONS(463), - [anon_sym_DQUOTE] = ACTIONS(466), - [anon_sym_SQUOTE] = ACTIONS(469), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(472), - [sym_number] = ACTIONS(475), - [sym_this] = ACTIONS(478), - [sym_super] = ACTIONS(478), - [sym_true] = ACTIONS(478), - [sym_false] = ACTIONS(478), - [sym_null] = ACTIONS(478), - [sym_undefined] = ACTIONS(481), - [anon_sym_AT] = ACTIONS(484), - [anon_sym_static] = ACTIONS(376), - [anon_sym_readonly] = ACTIONS(376), - [anon_sym_get] = ACTIONS(376), - [anon_sym_set] = ACTIONS(376), - [anon_sym_declare] = ACTIONS(487), - [anon_sym_public] = ACTIONS(376), - [anon_sym_private] = ACTIONS(376), - [anon_sym_protected] = ACTIONS(376), - [anon_sym_override] = ACTIONS(376), - [anon_sym_module] = ACTIONS(490), - [anon_sym_any] = ACTIONS(376), - [anon_sym_number] = ACTIONS(376), - [anon_sym_boolean] = ACTIONS(376), - [anon_sym_string] = ACTIONS(376), - [anon_sym_symbol] = ACTIONS(376), - [anon_sym_property] = ACTIONS(376), - [anon_sym_signal] = ACTIONS(376), - [anon_sym_on] = ACTIONS(376), - [anon_sym_required] = ACTIONS(376), - [anon_sym_component] = ACTIONS(376), - [anon_sym_abstract] = ACTIONS(493), - [anon_sym_interface] = ACTIONS(496), - [anon_sym_enum] = ACTIONS(499), - }, - [13] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_default] = ACTIONS(502), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(504), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_case] = ACTIONS(502), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [14] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(11), - [sym_if_statement] = STATE(11), - [sym_switch_statement] = STATE(11), - [sym_for_statement] = STATE(11), - [sym_for_in_statement] = STATE(11), - [sym_while_statement] = STATE(11), - [sym_do_statement] = STATE(11), - [sym_try_statement] = STATE(11), - [sym_with_statement] = STATE(11), - [sym_break_statement] = STATE(11), - [sym_continue_statement] = STATE(11), - [sym_debugger_statement] = STATE(11), - [sym_return_statement] = STATE(11), - [sym_throw_statement] = STATE(11), - [sym_empty_statement] = STATE(11), - [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(11), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_default] = ACTIONS(506), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(508), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_case] = ACTIONS(506), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [15] = { - [sym_export_statement] = STATE(13), - [sym_declaration] = STATE(13), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_for_in_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_try_statement] = STATE(13), - [sym_with_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_debugger_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_throw_statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(13), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_default] = ACTIONS(510), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_case] = ACTIONS(510), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [16] = { - [sym_export_statement] = STATE(21), - [sym_declaration] = STATE(21), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_for_in_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_try_statement] = STATE(21), - [sym_with_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_debugger_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_throw_statement] = STATE(21), - [sym_empty_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(21), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(514), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [17] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(516), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [18] = { - [sym_export_statement] = STATE(17), - [sym_declaration] = STATE(17), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_for_in_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_try_statement] = STATE(17), - [sym_with_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_debugger_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym_empty_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(17), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(518), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [19] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [20] = { - [sym_export_statement] = STATE(31), - [sym_declaration] = STATE(31), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_for_in_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_try_statement] = STATE(31), - [sym_with_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_debugger_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_throw_statement] = STATE(31), - [sym_empty_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(31), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(522), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [21] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(524), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [22] = { - [sym_export_statement] = STATE(30), - [sym_declaration] = STATE(30), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_for_in_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_try_statement] = STATE(30), - [sym_with_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_debugger_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_throw_statement] = STATE(30), - [sym_empty_statement] = STATE(30), - [sym_labeled_statement] = STATE(30), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(30), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(526), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [23] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(528), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [24] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(530), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [25] = { - [sym_export_statement] = STATE(19), - [sym_declaration] = STATE(19), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_for_in_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_try_statement] = STATE(19), - [sym_with_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_debugger_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_throw_statement] = STATE(19), - [sym_empty_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(19), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(532), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [26] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(534), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [27] = { - [sym_export_statement] = STATE(24), - [sym_declaration] = STATE(24), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_for_in_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_try_statement] = STATE(24), - [sym_with_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_debugger_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_throw_statement] = STATE(24), - [sym_empty_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(24), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [28] = { - [sym_export_statement] = STATE(23), - [sym_declaration] = STATE(23), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_for_in_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_try_statement] = STATE(23), - [sym_with_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_debugger_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_throw_statement] = STATE(23), - [sym_empty_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(23), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(538), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [29] = { - [sym_export_statement] = STATE(26), - [sym_declaration] = STATE(26), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(26), - [sym_expression_statement] = STATE(26), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_switch_statement] = STATE(26), - [sym_for_statement] = STATE(26), - [sym_for_in_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_do_statement] = STATE(26), - [sym_try_statement] = STATE(26), - [sym_with_statement] = STATE(26), - [sym_break_statement] = STATE(26), - [sym_continue_statement] = STATE(26), - [sym_debugger_statement] = STATE(26), - [sym_return_statement] = STATE(26), - [sym_throw_statement] = STATE(26), - [sym_empty_statement] = STATE(26), - [sym_labeled_statement] = STATE(26), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(26), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(540), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [30] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [31] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [aux_sym_statement_block_repeat1] = STATE(12), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(544), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [32] = { - [sym_export_statement] = STATE(738), - [sym_declaration] = STATE(738), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(738), - [sym_expression_statement] = STATE(738), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(738), - [sym_if_statement] = STATE(738), - [sym_switch_statement] = STATE(738), - [sym_for_statement] = STATE(738), - [sym_for_in_statement] = STATE(738), - [sym_while_statement] = STATE(738), - [sym_do_statement] = STATE(738), - [sym_try_statement] = STATE(738), - [sym_with_statement] = STATE(738), - [sym_break_statement] = STATE(738), - [sym_continue_statement] = STATE(738), - [sym_debugger_statement] = STATE(738), - [sym_return_statement] = STATE(738), - [sym_throw_statement] = STATE(738), - [sym_empty_statement] = STATE(738), - [sym_labeled_statement] = STATE(738), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(2297), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3454), - [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(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(556), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(556), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(574), - [anon_sym_async] = ACTIONS(576), - [anon_sym_function] = ACTIONS(578), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(556), - [anon_sym_readonly] = ACTIONS(556), - [anon_sym_get] = ACTIONS(556), - [anon_sym_set] = ACTIONS(556), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(556), - [anon_sym_private] = ACTIONS(556), - [anon_sym_protected] = ACTIONS(556), - [anon_sym_override] = ACTIONS(556), - [anon_sym_module] = ACTIONS(582), - [anon_sym_any] = ACTIONS(556), - [anon_sym_number] = ACTIONS(556), - [anon_sym_boolean] = ACTIONS(556), - [anon_sym_string] = ACTIONS(556), - [anon_sym_symbol] = ACTIONS(556), - [anon_sym_property] = ACTIONS(556), - [anon_sym_signal] = ACTIONS(556), - [anon_sym_on] = ACTIONS(556), - [anon_sym_required] = ACTIONS(556), - [anon_sym_component] = ACTIONS(556), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [33] = { - [sym_export_statement] = STATE(2508), - [sym_declaration] = STATE(2508), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(2508), - [sym_expression_statement] = STATE(2508), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(2508), - [sym_if_statement] = STATE(2508), - [sym_switch_statement] = STATE(2508), - [sym_for_statement] = STATE(2508), - [sym_for_in_statement] = STATE(2508), - [sym_while_statement] = STATE(2508), - [sym_do_statement] = STATE(2508), - [sym_try_statement] = STATE(2508), - [sym_with_statement] = STATE(2508), - [sym_break_statement] = STATE(2508), - [sym_continue_statement] = STATE(2508), - [sym_debugger_statement] = STATE(2508), - [sym_return_statement] = STATE(2508), - [sym_throw_statement] = STATE(2508), - [sym_empty_statement] = STATE(2508), - [sym_labeled_statement] = STATE(2508), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(2297), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3454), - [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(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(556), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(556), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(574), - [anon_sym_async] = ACTIONS(576), - [anon_sym_function] = ACTIONS(578), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(556), - [anon_sym_readonly] = ACTIONS(556), - [anon_sym_get] = ACTIONS(556), - [anon_sym_set] = ACTIONS(556), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(556), - [anon_sym_private] = ACTIONS(556), - [anon_sym_protected] = ACTIONS(556), - [anon_sym_override] = ACTIONS(556), - [anon_sym_module] = ACTIONS(582), - [anon_sym_any] = ACTIONS(556), - [anon_sym_number] = ACTIONS(556), - [anon_sym_boolean] = ACTIONS(556), - [anon_sym_string] = ACTIONS(556), - [anon_sym_symbol] = ACTIONS(556), - [anon_sym_property] = ACTIONS(556), - [anon_sym_signal] = ACTIONS(556), - [anon_sym_on] = ACTIONS(556), - [anon_sym_required] = ACTIONS(556), - [anon_sym_component] = ACTIONS(556), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [34] = { - [sym_export_statement] = STATE(2636), - [sym_declaration] = STATE(2636), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(2636), - [sym_expression_statement] = STATE(2636), - [sym_variable_declaration] = STATE(2613), - [sym_lexical_declaration] = STATE(2613), - [sym_statement_block] = STATE(2636), - [sym_if_statement] = STATE(2636), - [sym_switch_statement] = STATE(2636), - [sym_for_statement] = STATE(2636), - [sym_for_in_statement] = STATE(2636), - [sym_while_statement] = STATE(2636), - [sym_do_statement] = STATE(2636), - [sym_try_statement] = STATE(2636), - [sym_with_statement] = STATE(2636), - [sym_break_statement] = STATE(2636), - [sym_continue_statement] = STATE(2636), - [sym_debugger_statement] = STATE(2636), - [sym_return_statement] = STATE(2636), - [sym_throw_statement] = STATE(2636), - [sym_empty_statement] = STATE(2636), - [sym_labeled_statement] = STATE(2636), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(2613), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(2613), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(2613), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(2613), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(2613), - [sym_abstract_class_declaration] = STATE(2613), - [sym_module] = STATE(2613), - [sym_internal_module] = STATE(883), - [sym_import_alias] = STATE(2613), - [sym_interface_declaration] = STATE(2613), - [sym_enum_declaration] = STATE(2613), - [sym_type_alias_declaration] = STATE(2613), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3428), - [sym_identifier] = ACTIONS(584), - [anon_sym_export] = ACTIONS(586), - [anon_sym_type] = ACTIONS(588), - [anon_sym_namespace] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(594), - [anon_sym_from] = ACTIONS(596), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(598), - [anon_sym_const] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(596), - [anon_sym_while] = ACTIONS(606), - [anon_sym_do] = ACTIONS(608), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_break] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_debugger] = ACTIONS(616), - [anon_sym_return] = ACTIONS(618), - [anon_sym_throw] = ACTIONS(620), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(622), - [anon_sym_async] = ACTIONS(624), - [anon_sym_function] = ACTIONS(626), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(596), - [anon_sym_readonly] = ACTIONS(596), - [anon_sym_get] = ACTIONS(596), - [anon_sym_set] = ACTIONS(596), - [anon_sym_declare] = ACTIONS(628), - [anon_sym_public] = ACTIONS(596), - [anon_sym_private] = ACTIONS(596), - [anon_sym_protected] = ACTIONS(596), - [anon_sym_override] = ACTIONS(596), - [anon_sym_module] = ACTIONS(630), - [anon_sym_any] = ACTIONS(596), - [anon_sym_number] = ACTIONS(596), - [anon_sym_boolean] = ACTIONS(596), - [anon_sym_string] = ACTIONS(596), - [anon_sym_symbol] = ACTIONS(596), - [anon_sym_property] = ACTIONS(596), - [anon_sym_signal] = ACTIONS(596), - [anon_sym_on] = ACTIONS(596), - [anon_sym_required] = ACTIONS(596), - [anon_sym_component] = ACTIONS(596), - [anon_sym_abstract] = ACTIONS(632), - [anon_sym_interface] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(636), - }, - [35] = { - [sym_export_statement] = STATE(2538), - [sym_declaration] = STATE(2538), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(2538), - [sym_expression_statement] = STATE(2538), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(2538), - [sym_if_statement] = STATE(2538), - [sym_switch_statement] = STATE(2538), - [sym_for_statement] = STATE(2538), - [sym_for_in_statement] = STATE(2538), - [sym_while_statement] = STATE(2538), - [sym_do_statement] = STATE(2538), - [sym_try_statement] = STATE(2538), - [sym_with_statement] = STATE(2538), - [sym_break_statement] = STATE(2538), - [sym_continue_statement] = STATE(2538), - [sym_debugger_statement] = STATE(2538), - [sym_return_statement] = STATE(2538), - [sym_throw_statement] = STATE(2538), - [sym_empty_statement] = STATE(2538), - [sym_labeled_statement] = STATE(2538), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(2297), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3454), - [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(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(556), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(556), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(574), - [anon_sym_async] = ACTIONS(576), - [anon_sym_function] = ACTIONS(578), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(556), - [anon_sym_readonly] = ACTIONS(556), - [anon_sym_get] = ACTIONS(556), - [anon_sym_set] = ACTIONS(556), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(556), - [anon_sym_private] = ACTIONS(556), - [anon_sym_protected] = ACTIONS(556), - [anon_sym_override] = ACTIONS(556), - [anon_sym_module] = ACTIONS(582), - [anon_sym_any] = ACTIONS(556), - [anon_sym_number] = ACTIONS(556), - [anon_sym_boolean] = ACTIONS(556), - [anon_sym_string] = ACTIONS(556), - [anon_sym_symbol] = ACTIONS(556), - [anon_sym_property] = ACTIONS(556), - [anon_sym_signal] = ACTIONS(556), - [anon_sym_on] = ACTIONS(556), - [anon_sym_required] = ACTIONS(556), - [anon_sym_component] = ACTIONS(556), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [36] = { - [sym_export_statement] = STATE(2508), - [sym_declaration] = STATE(2508), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(2508), - [sym_expression_statement] = STATE(2508), - [sym_variable_declaration] = STATE(2613), - [sym_lexical_declaration] = STATE(2613), - [sym_statement_block] = STATE(2508), - [sym_if_statement] = STATE(2508), - [sym_switch_statement] = STATE(2508), - [sym_for_statement] = STATE(2508), - [sym_for_in_statement] = STATE(2508), - [sym_while_statement] = STATE(2508), - [sym_do_statement] = STATE(2508), - [sym_try_statement] = STATE(2508), - [sym_with_statement] = STATE(2508), - [sym_break_statement] = STATE(2508), - [sym_continue_statement] = STATE(2508), - [sym_debugger_statement] = STATE(2508), - [sym_return_statement] = STATE(2508), - [sym_throw_statement] = STATE(2508), - [sym_empty_statement] = STATE(2508), - [sym_labeled_statement] = STATE(2508), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(2613), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(2613), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(2613), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(2613), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(2613), - [sym_abstract_class_declaration] = STATE(2613), - [sym_module] = STATE(2613), - [sym_internal_module] = STATE(883), - [sym_import_alias] = STATE(2613), - [sym_interface_declaration] = STATE(2613), - [sym_enum_declaration] = STATE(2613), - [sym_type_alias_declaration] = STATE(2613), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3428), - [sym_identifier] = ACTIONS(584), - [anon_sym_export] = ACTIONS(586), - [anon_sym_type] = ACTIONS(588), - [anon_sym_namespace] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(594), - [anon_sym_from] = ACTIONS(596), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(598), - [anon_sym_const] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(596), - [anon_sym_while] = ACTIONS(606), - [anon_sym_do] = ACTIONS(608), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_break] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_debugger] = ACTIONS(616), - [anon_sym_return] = ACTIONS(618), - [anon_sym_throw] = ACTIONS(620), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(622), - [anon_sym_async] = ACTIONS(624), - [anon_sym_function] = ACTIONS(626), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(596), - [anon_sym_readonly] = ACTIONS(596), - [anon_sym_get] = ACTIONS(596), - [anon_sym_set] = ACTIONS(596), - [anon_sym_declare] = ACTIONS(628), - [anon_sym_public] = ACTIONS(596), - [anon_sym_private] = ACTIONS(596), - [anon_sym_protected] = ACTIONS(596), - [anon_sym_override] = ACTIONS(596), - [anon_sym_module] = ACTIONS(630), - [anon_sym_any] = ACTIONS(596), - [anon_sym_number] = ACTIONS(596), - [anon_sym_boolean] = ACTIONS(596), - [anon_sym_string] = ACTIONS(596), - [anon_sym_symbol] = ACTIONS(596), - [anon_sym_property] = ACTIONS(596), - [anon_sym_signal] = ACTIONS(596), - [anon_sym_on] = ACTIONS(596), - [anon_sym_required] = ACTIONS(596), - [anon_sym_component] = ACTIONS(596), - [anon_sym_abstract] = ACTIONS(632), - [anon_sym_interface] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(636), - }, - [37] = { - [sym_export_statement] = STATE(2625), - [sym_declaration] = STATE(2625), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(2625), - [sym_expression_statement] = STATE(2625), - [sym_variable_declaration] = STATE(2613), - [sym_lexical_declaration] = STATE(2613), - [sym_statement_block] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_switch_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_for_in_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_do_statement] = STATE(2625), - [sym_try_statement] = STATE(2625), - [sym_with_statement] = STATE(2625), - [sym_break_statement] = STATE(2625), - [sym_continue_statement] = STATE(2625), - [sym_debugger_statement] = STATE(2625), - [sym_return_statement] = STATE(2625), - [sym_throw_statement] = STATE(2625), - [sym_empty_statement] = STATE(2625), - [sym_labeled_statement] = STATE(2625), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(2613), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(2613), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(2613), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(2613), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(2613), - [sym_abstract_class_declaration] = STATE(2613), - [sym_module] = STATE(2613), - [sym_internal_module] = STATE(883), - [sym_import_alias] = STATE(2613), - [sym_interface_declaration] = STATE(2613), - [sym_enum_declaration] = STATE(2613), - [sym_type_alias_declaration] = STATE(2613), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3428), - [sym_identifier] = ACTIONS(584), - [anon_sym_export] = ACTIONS(586), - [anon_sym_type] = ACTIONS(588), - [anon_sym_namespace] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(594), - [anon_sym_from] = ACTIONS(596), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(598), - [anon_sym_const] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(596), - [anon_sym_while] = ACTIONS(606), - [anon_sym_do] = ACTIONS(608), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_break] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_debugger] = ACTIONS(616), - [anon_sym_return] = ACTIONS(618), - [anon_sym_throw] = ACTIONS(620), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(622), - [anon_sym_async] = ACTIONS(624), - [anon_sym_function] = ACTIONS(626), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(596), - [anon_sym_readonly] = ACTIONS(596), - [anon_sym_get] = ACTIONS(596), - [anon_sym_set] = ACTIONS(596), - [anon_sym_declare] = ACTIONS(628), - [anon_sym_public] = ACTIONS(596), - [anon_sym_private] = ACTIONS(596), - [anon_sym_protected] = ACTIONS(596), - [anon_sym_override] = ACTIONS(596), - [anon_sym_module] = ACTIONS(630), - [anon_sym_any] = ACTIONS(596), - [anon_sym_number] = ACTIONS(596), - [anon_sym_boolean] = ACTIONS(596), - [anon_sym_string] = ACTIONS(596), - [anon_sym_symbol] = ACTIONS(596), - [anon_sym_property] = ACTIONS(596), - [anon_sym_signal] = ACTIONS(596), - [anon_sym_on] = ACTIONS(596), - [anon_sym_required] = ACTIONS(596), - [anon_sym_component] = ACTIONS(596), - [anon_sym_abstract] = ACTIONS(632), - [anon_sym_interface] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(636), - }, - [38] = { - [sym_export_statement] = STATE(756), - [sym_declaration] = STATE(756), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(756), - [sym_expression_statement] = STATE(756), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(756), - [sym_if_statement] = STATE(756), - [sym_switch_statement] = STATE(756), - [sym_for_statement] = STATE(756), - [sym_for_in_statement] = STATE(756), - [sym_while_statement] = STATE(756), - [sym_do_statement] = STATE(756), - [sym_try_statement] = STATE(756), - [sym_with_statement] = STATE(756), - [sym_break_statement] = STATE(756), - [sym_continue_statement] = STATE(756), - [sym_debugger_statement] = STATE(756), - [sym_return_statement] = STATE(756), - [sym_throw_statement] = STATE(756), - [sym_empty_statement] = STATE(756), - [sym_labeled_statement] = STATE(756), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(2297), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3454), - [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(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(556), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(556), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(574), - [anon_sym_async] = ACTIONS(576), - [anon_sym_function] = ACTIONS(578), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(556), - [anon_sym_readonly] = ACTIONS(556), - [anon_sym_get] = ACTIONS(556), - [anon_sym_set] = ACTIONS(556), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(556), - [anon_sym_private] = ACTIONS(556), - [anon_sym_protected] = ACTIONS(556), - [anon_sym_override] = ACTIONS(556), - [anon_sym_module] = ACTIONS(582), - [anon_sym_any] = ACTIONS(556), - [anon_sym_number] = ACTIONS(556), - [anon_sym_boolean] = ACTIONS(556), - [anon_sym_string] = ACTIONS(556), - [anon_sym_symbol] = ACTIONS(556), - [anon_sym_property] = ACTIONS(556), - [anon_sym_signal] = ACTIONS(556), - [anon_sym_on] = ACTIONS(556), - [anon_sym_required] = ACTIONS(556), - [anon_sym_component] = ACTIONS(556), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [39] = { - [sym_export_statement] = STATE(2583), - [sym_declaration] = STATE(2659), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(2658), - [sym_expression_statement] = STATE(2657), - [sym_variable_declaration] = STATE(2613), - [sym_lexical_declaration] = STATE(2613), - [sym_statement_block] = STATE(2656), - [sym_if_statement] = STATE(2655), - [sym_switch_statement] = STATE(2654), - [sym_for_statement] = STATE(2651), - [sym_for_in_statement] = STATE(2650), - [sym_while_statement] = STATE(2649), - [sym_do_statement] = STATE(2648), - [sym_try_statement] = STATE(2647), - [sym_with_statement] = STATE(2646), - [sym_break_statement] = STATE(2645), - [sym_continue_statement] = STATE(2644), - [sym_debugger_statement] = STATE(2641), - [sym_return_statement] = STATE(2640), - [sym_throw_statement] = STATE(2639), - [sym_empty_statement] = STATE(2570), - [sym_labeled_statement] = STATE(2637), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(2613), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(2613), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(2613), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(2613), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(2613), - [sym_abstract_class_declaration] = STATE(2613), - [sym_module] = STATE(2613), - [sym_internal_module] = STATE(883), - [sym_import_alias] = STATE(2613), - [sym_interface_declaration] = STATE(2613), - [sym_enum_declaration] = STATE(2613), - [sym_type_alias_declaration] = STATE(2613), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3428), - [sym_identifier] = ACTIONS(584), - [anon_sym_export] = ACTIONS(586), - [anon_sym_type] = ACTIONS(588), - [anon_sym_namespace] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(594), - [anon_sym_from] = ACTIONS(596), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(598), - [anon_sym_const] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(596), - [anon_sym_while] = ACTIONS(606), - [anon_sym_do] = ACTIONS(608), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_break] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_debugger] = ACTIONS(616), - [anon_sym_return] = ACTIONS(618), - [anon_sym_throw] = ACTIONS(620), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(622), - [anon_sym_async] = ACTIONS(624), - [anon_sym_function] = ACTIONS(626), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(596), - [anon_sym_readonly] = ACTIONS(596), - [anon_sym_get] = ACTIONS(596), - [anon_sym_set] = ACTIONS(596), - [anon_sym_declare] = ACTIONS(628), - [anon_sym_public] = ACTIONS(596), - [anon_sym_private] = ACTIONS(596), - [anon_sym_protected] = ACTIONS(596), - [anon_sym_override] = ACTIONS(596), - [anon_sym_module] = ACTIONS(630), - [anon_sym_any] = ACTIONS(596), - [anon_sym_number] = ACTIONS(596), - [anon_sym_boolean] = ACTIONS(596), - [anon_sym_string] = ACTIONS(596), - [anon_sym_symbol] = ACTIONS(596), - [anon_sym_property] = ACTIONS(596), - [anon_sym_signal] = ACTIONS(596), - [anon_sym_on] = ACTIONS(596), - [anon_sym_required] = ACTIONS(596), - [anon_sym_component] = ACTIONS(596), - [anon_sym_abstract] = ACTIONS(632), - [anon_sym_interface] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(636), - }, - [40] = { - [sym_export_statement] = STATE(4859), - [sym_declaration] = STATE(4859), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(4859), - [sym_expression_statement] = STATE(4859), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(4859), - [sym_if_statement] = STATE(4859), - [sym_switch_statement] = STATE(4859), - [sym_for_statement] = STATE(4859), - [sym_for_in_statement] = STATE(4859), - [sym_while_statement] = STATE(4859), - [sym_do_statement] = STATE(4859), - [sym_try_statement] = STATE(4859), - [sym_with_statement] = STATE(4859), - [sym_break_statement] = STATE(4859), - [sym_continue_statement] = STATE(4859), - [sym_debugger_statement] = STATE(4859), - [sym_return_statement] = STATE(4859), - [sym_throw_statement] = STATE(4859), - [sym_empty_statement] = STATE(4859), - [sym_labeled_statement] = STATE(4859), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(2297), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3454), - [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(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(556), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(556), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(574), - [anon_sym_async] = ACTIONS(576), - [anon_sym_function] = ACTIONS(578), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(556), - [anon_sym_readonly] = ACTIONS(556), - [anon_sym_get] = ACTIONS(556), - [anon_sym_set] = ACTIONS(556), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(556), - [anon_sym_private] = ACTIONS(556), - [anon_sym_protected] = ACTIONS(556), - [anon_sym_override] = ACTIONS(556), - [anon_sym_module] = ACTIONS(582), - [anon_sym_any] = ACTIONS(556), - [anon_sym_number] = ACTIONS(556), - [anon_sym_boolean] = ACTIONS(556), - [anon_sym_string] = ACTIONS(556), - [anon_sym_symbol] = ACTIONS(556), - [anon_sym_property] = ACTIONS(556), - [anon_sym_signal] = ACTIONS(556), - [anon_sym_on] = ACTIONS(556), - [anon_sym_required] = ACTIONS(556), - [anon_sym_component] = ACTIONS(556), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [41] = { - [sym_export_statement] = STATE(756), - [sym_declaration] = STATE(756), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(756), - [sym_expression_statement] = STATE(756), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(756), - [sym_if_statement] = STATE(756), - [sym_switch_statement] = STATE(756), - [sym_for_statement] = STATE(756), - [sym_for_in_statement] = STATE(756), - [sym_while_statement] = STATE(756), - [sym_do_statement] = STATE(756), - [sym_try_statement] = STATE(756), - [sym_with_statement] = STATE(756), - [sym_break_statement] = STATE(756), - [sym_continue_statement] = STATE(756), - [sym_debugger_statement] = STATE(756), - [sym_return_statement] = STATE(756), - [sym_throw_statement] = STATE(756), - [sym_empty_statement] = STATE(756), - [sym_labeled_statement] = STATE(756), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [42] = { - [sym_export_statement] = STATE(848), - [sym_declaration] = STATE(847), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(846), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(843), - [sym_if_statement] = STATE(841), - [sym_switch_statement] = STATE(840), - [sym_for_statement] = STATE(839), - [sym_for_in_statement] = STATE(838), - [sym_while_statement] = STATE(837), - [sym_do_statement] = STATE(836), - [sym_try_statement] = STATE(835), - [sym_with_statement] = STATE(834), - [sym_break_statement] = STATE(833), - [sym_continue_statement] = STATE(832), - [sym_debugger_statement] = STATE(831), - [sym_return_statement] = STATE(830), - [sym_throw_statement] = STATE(828), - [sym_empty_statement] = STATE(827), - [sym_labeled_statement] = STATE(826), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(2297), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3454), - [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(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(556), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(556), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(574), - [anon_sym_async] = ACTIONS(576), - [anon_sym_function] = ACTIONS(578), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(556), - [anon_sym_readonly] = ACTIONS(556), - [anon_sym_get] = ACTIONS(556), - [anon_sym_set] = ACTIONS(556), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(556), - [anon_sym_private] = ACTIONS(556), - [anon_sym_protected] = ACTIONS(556), - [anon_sym_override] = ACTIONS(556), - [anon_sym_module] = ACTIONS(582), - [anon_sym_any] = ACTIONS(556), - [anon_sym_number] = ACTIONS(556), - [anon_sym_boolean] = ACTIONS(556), - [anon_sym_string] = ACTIONS(556), - [anon_sym_symbol] = ACTIONS(556), - [anon_sym_property] = ACTIONS(556), - [anon_sym_signal] = ACTIONS(556), - [anon_sym_on] = ACTIONS(556), - [anon_sym_required] = ACTIONS(556), - [anon_sym_component] = ACTIONS(556), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [43] = { - [sym_export_statement] = STATE(825), - [sym_declaration] = STATE(825), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(825), - [sym_expression_statement] = STATE(825), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(825), - [sym_if_statement] = STATE(825), - [sym_switch_statement] = STATE(825), - [sym_for_statement] = STATE(825), - [sym_for_in_statement] = STATE(825), - [sym_while_statement] = STATE(825), - [sym_do_statement] = STATE(825), - [sym_try_statement] = STATE(825), - [sym_with_statement] = STATE(825), - [sym_break_statement] = STATE(825), - [sym_continue_statement] = STATE(825), - [sym_debugger_statement] = STATE(825), - [sym_return_statement] = STATE(825), - [sym_throw_statement] = STATE(825), - [sym_empty_statement] = STATE(825), - [sym_labeled_statement] = STATE(825), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(2297), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3454), - [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(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(556), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(556), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(574), - [anon_sym_async] = ACTIONS(576), - [anon_sym_function] = ACTIONS(578), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(556), - [anon_sym_readonly] = ACTIONS(556), - [anon_sym_get] = ACTIONS(556), - [anon_sym_set] = ACTIONS(556), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(556), - [anon_sym_private] = ACTIONS(556), - [anon_sym_protected] = ACTIONS(556), - [anon_sym_override] = ACTIONS(556), - [anon_sym_module] = ACTIONS(582), - [anon_sym_any] = ACTIONS(556), - [anon_sym_number] = ACTIONS(556), - [anon_sym_boolean] = ACTIONS(556), - [anon_sym_string] = ACTIONS(556), - [anon_sym_symbol] = ACTIONS(556), - [anon_sym_property] = ACTIONS(556), - [anon_sym_signal] = ACTIONS(556), - [anon_sym_on] = ACTIONS(556), - [anon_sym_required] = ACTIONS(556), - [anon_sym_component] = ACTIONS(556), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [44] = { - [sym_export_statement] = STATE(2668), - [sym_declaration] = STATE(2668), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(2668), - [sym_expression_statement] = STATE(2668), - [sym_variable_declaration] = STATE(2613), - [sym_lexical_declaration] = STATE(2613), - [sym_statement_block] = STATE(2668), - [sym_if_statement] = STATE(2668), - [sym_switch_statement] = STATE(2668), - [sym_for_statement] = STATE(2668), - [sym_for_in_statement] = STATE(2668), - [sym_while_statement] = STATE(2668), - [sym_do_statement] = STATE(2668), - [sym_try_statement] = STATE(2668), - [sym_with_statement] = STATE(2668), - [sym_break_statement] = STATE(2668), - [sym_continue_statement] = STATE(2668), - [sym_debugger_statement] = STATE(2668), - [sym_return_statement] = STATE(2668), - [sym_throw_statement] = STATE(2668), - [sym_empty_statement] = STATE(2668), - [sym_labeled_statement] = STATE(2668), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(2613), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(2613), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(2613), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(2613), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(2613), - [sym_abstract_class_declaration] = STATE(2613), - [sym_module] = STATE(2613), - [sym_internal_module] = STATE(883), - [sym_import_alias] = STATE(2613), - [sym_interface_declaration] = STATE(2613), - [sym_enum_declaration] = STATE(2613), - [sym_type_alias_declaration] = STATE(2613), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3428), - [sym_identifier] = ACTIONS(584), - [anon_sym_export] = ACTIONS(586), - [anon_sym_type] = ACTIONS(588), - [anon_sym_namespace] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(594), - [anon_sym_from] = ACTIONS(596), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(598), - [anon_sym_const] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(596), - [anon_sym_while] = ACTIONS(606), - [anon_sym_do] = ACTIONS(608), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_break] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_debugger] = ACTIONS(616), - [anon_sym_return] = ACTIONS(618), - [anon_sym_throw] = ACTIONS(620), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(622), - [anon_sym_async] = ACTIONS(624), - [anon_sym_function] = ACTIONS(626), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(596), - [anon_sym_readonly] = ACTIONS(596), - [anon_sym_get] = ACTIONS(596), - [anon_sym_set] = ACTIONS(596), - [anon_sym_declare] = ACTIONS(628), - [anon_sym_public] = ACTIONS(596), - [anon_sym_private] = ACTIONS(596), - [anon_sym_protected] = ACTIONS(596), - [anon_sym_override] = ACTIONS(596), - [anon_sym_module] = ACTIONS(630), - [anon_sym_any] = ACTIONS(596), - [anon_sym_number] = ACTIONS(596), - [anon_sym_boolean] = ACTIONS(596), - [anon_sym_string] = ACTIONS(596), - [anon_sym_symbol] = ACTIONS(596), - [anon_sym_property] = ACTIONS(596), - [anon_sym_signal] = ACTIONS(596), - [anon_sym_on] = ACTIONS(596), - [anon_sym_required] = ACTIONS(596), - [anon_sym_component] = ACTIONS(596), - [anon_sym_abstract] = ACTIONS(632), - [anon_sym_interface] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(636), - }, - [45] = { - [sym_export_statement] = STATE(4104), - [sym_declaration] = STATE(4104), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(4104), - [sym_expression_statement] = STATE(4104), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(4104), - [sym_if_statement] = STATE(4104), - [sym_switch_statement] = STATE(4104), - [sym_for_statement] = STATE(4104), - [sym_for_in_statement] = STATE(4104), - [sym_while_statement] = STATE(4104), - [sym_do_statement] = STATE(4104), - [sym_try_statement] = STATE(4104), - [sym_with_statement] = STATE(4104), - [sym_break_statement] = STATE(4104), - [sym_continue_statement] = STATE(4104), - [sym_debugger_statement] = STATE(4104), - [sym_return_statement] = STATE(4104), - [sym_throw_statement] = STATE(4104), - [sym_empty_statement] = STATE(4104), - [sym_labeled_statement] = STATE(4104), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(2297), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3454), - [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(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(556), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(556), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(574), - [anon_sym_async] = ACTIONS(576), - [anon_sym_function] = ACTIONS(578), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(556), - [anon_sym_readonly] = ACTIONS(556), - [anon_sym_get] = ACTIONS(556), - [anon_sym_set] = ACTIONS(556), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(556), - [anon_sym_private] = ACTIONS(556), - [anon_sym_protected] = ACTIONS(556), - [anon_sym_override] = ACTIONS(556), - [anon_sym_module] = ACTIONS(582), - [anon_sym_any] = ACTIONS(556), - [anon_sym_number] = ACTIONS(556), - [anon_sym_boolean] = ACTIONS(556), - [anon_sym_string] = ACTIONS(556), - [anon_sym_symbol] = ACTIONS(556), - [anon_sym_property] = ACTIONS(556), - [anon_sym_signal] = ACTIONS(556), - [anon_sym_on] = ACTIONS(556), - [anon_sym_required] = ACTIONS(556), - [anon_sym_component] = ACTIONS(556), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [46] = { - [sym_export_statement] = STATE(2687), - [sym_declaration] = STATE(2687), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(2687), - [sym_expression_statement] = STATE(2687), - [sym_variable_declaration] = STATE(2613), - [sym_lexical_declaration] = STATE(2613), - [sym_statement_block] = STATE(2687), - [sym_if_statement] = STATE(2687), - [sym_switch_statement] = STATE(2687), - [sym_for_statement] = STATE(2687), - [sym_for_in_statement] = STATE(2687), - [sym_while_statement] = STATE(2687), - [sym_do_statement] = STATE(2687), - [sym_try_statement] = STATE(2687), - [sym_with_statement] = STATE(2687), - [sym_break_statement] = STATE(2687), - [sym_continue_statement] = STATE(2687), - [sym_debugger_statement] = STATE(2687), - [sym_return_statement] = STATE(2687), - [sym_throw_statement] = STATE(2687), - [sym_empty_statement] = STATE(2687), - [sym_labeled_statement] = STATE(2687), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(2613), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(2613), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(2613), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(2613), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(2613), - [sym_abstract_class_declaration] = STATE(2613), - [sym_module] = STATE(2613), - [sym_internal_module] = STATE(883), - [sym_import_alias] = STATE(2613), - [sym_interface_declaration] = STATE(2613), - [sym_enum_declaration] = STATE(2613), - [sym_type_alias_declaration] = STATE(2613), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3428), - [sym_identifier] = ACTIONS(584), - [anon_sym_export] = ACTIONS(586), - [anon_sym_type] = ACTIONS(588), - [anon_sym_namespace] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(594), - [anon_sym_from] = ACTIONS(596), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(598), - [anon_sym_const] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(596), - [anon_sym_while] = ACTIONS(606), - [anon_sym_do] = ACTIONS(608), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_break] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_debugger] = ACTIONS(616), - [anon_sym_return] = ACTIONS(618), - [anon_sym_throw] = ACTIONS(620), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(622), - [anon_sym_async] = ACTIONS(624), - [anon_sym_function] = ACTIONS(626), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(596), - [anon_sym_readonly] = ACTIONS(596), - [anon_sym_get] = ACTIONS(596), - [anon_sym_set] = ACTIONS(596), - [anon_sym_declare] = ACTIONS(628), - [anon_sym_public] = ACTIONS(596), - [anon_sym_private] = ACTIONS(596), - [anon_sym_protected] = ACTIONS(596), - [anon_sym_override] = ACTIONS(596), - [anon_sym_module] = ACTIONS(630), - [anon_sym_any] = ACTIONS(596), - [anon_sym_number] = ACTIONS(596), - [anon_sym_boolean] = ACTIONS(596), - [anon_sym_string] = ACTIONS(596), - [anon_sym_symbol] = ACTIONS(596), - [anon_sym_property] = ACTIONS(596), - [anon_sym_signal] = ACTIONS(596), - [anon_sym_on] = ACTIONS(596), - [anon_sym_required] = ACTIONS(596), - [anon_sym_component] = ACTIONS(596), - [anon_sym_abstract] = ACTIONS(632), - [anon_sym_interface] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(636), - }, - [47] = { - [sym_export_statement] = STATE(2581), - [sym_declaration] = STATE(2580), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(2665), - [sym_expression_statement] = STATE(2577), - [sym_variable_declaration] = STATE(2613), - [sym_lexical_declaration] = STATE(2613), - [sym_statement_block] = STATE(2576), - [sym_if_statement] = STATE(2575), - [sym_switch_statement] = STATE(2574), - [sym_for_statement] = STATE(2573), - [sym_for_in_statement] = STATE(2572), - [sym_while_statement] = STATE(2571), - [sym_do_statement] = STATE(2638), - [sym_try_statement] = STATE(2597), - [sym_with_statement] = STATE(2598), - [sym_break_statement] = STATE(2599), - [sym_continue_statement] = STATE(2600), - [sym_debugger_statement] = STATE(2601), - [sym_return_statement] = STATE(2602), - [sym_throw_statement] = STATE(2603), - [sym_empty_statement] = STATE(2604), - [sym_labeled_statement] = STATE(2606), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(2613), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(2613), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(2613), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(2613), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(2613), - [sym_abstract_class_declaration] = STATE(2613), - [sym_module] = STATE(2613), - [sym_internal_module] = STATE(883), - [sym_import_alias] = STATE(2613), - [sym_interface_declaration] = STATE(2613), - [sym_enum_declaration] = STATE(2613), - [sym_type_alias_declaration] = STATE(2613), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3428), - [sym_identifier] = ACTIONS(584), - [anon_sym_export] = ACTIONS(586), - [anon_sym_type] = ACTIONS(588), - [anon_sym_namespace] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(594), - [anon_sym_from] = ACTIONS(596), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(598), - [anon_sym_const] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(596), - [anon_sym_while] = ACTIONS(606), - [anon_sym_do] = ACTIONS(608), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_break] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_debugger] = ACTIONS(616), - [anon_sym_return] = ACTIONS(618), - [anon_sym_throw] = ACTIONS(620), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(622), - [anon_sym_async] = ACTIONS(624), - [anon_sym_function] = ACTIONS(626), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(596), - [anon_sym_readonly] = ACTIONS(596), - [anon_sym_get] = ACTIONS(596), - [anon_sym_set] = ACTIONS(596), - [anon_sym_declare] = ACTIONS(628), - [anon_sym_public] = ACTIONS(596), - [anon_sym_private] = ACTIONS(596), - [anon_sym_protected] = ACTIONS(596), - [anon_sym_override] = ACTIONS(596), - [anon_sym_module] = ACTIONS(630), - [anon_sym_any] = ACTIONS(596), - [anon_sym_number] = ACTIONS(596), - [anon_sym_boolean] = ACTIONS(596), - [anon_sym_string] = ACTIONS(596), - [anon_sym_symbol] = ACTIONS(596), - [anon_sym_property] = ACTIONS(596), - [anon_sym_signal] = ACTIONS(596), - [anon_sym_on] = ACTIONS(596), - [anon_sym_required] = ACTIONS(596), - [anon_sym_component] = ACTIONS(596), - [anon_sym_abstract] = ACTIONS(632), - [anon_sym_interface] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(636), - }, - [48] = { - [sym_export_statement] = STATE(825), - [sym_declaration] = STATE(825), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(825), - [sym_expression_statement] = STATE(825), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(825), - [sym_if_statement] = STATE(825), - [sym_switch_statement] = STATE(825), - [sym_for_statement] = STATE(825), - [sym_for_in_statement] = STATE(825), - [sym_while_statement] = STATE(825), - [sym_do_statement] = STATE(825), - [sym_try_statement] = STATE(825), - [sym_with_statement] = STATE(825), - [sym_break_statement] = STATE(825), - [sym_continue_statement] = STATE(825), - [sym_debugger_statement] = STATE(825), - [sym_return_statement] = STATE(825), - [sym_throw_statement] = STATE(825), - [sym_empty_statement] = STATE(825), - [sym_labeled_statement] = STATE(825), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [49] = { - [sym_export_statement] = STATE(813), - [sym_declaration] = STATE(813), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(813), - [sym_expression_statement] = STATE(813), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(813), - [sym_if_statement] = STATE(813), - [sym_switch_statement] = STATE(813), - [sym_for_statement] = STATE(813), - [sym_for_in_statement] = STATE(813), - [sym_while_statement] = STATE(813), - [sym_do_statement] = STATE(813), - [sym_try_statement] = STATE(813), - [sym_with_statement] = STATE(813), - [sym_break_statement] = STATE(813), - [sym_continue_statement] = STATE(813), - [sym_debugger_statement] = STATE(813), - [sym_return_statement] = STATE(813), - [sym_throw_statement] = STATE(813), - [sym_empty_statement] = STATE(813), - [sym_labeled_statement] = STATE(813), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [50] = { - [sym_export_statement] = STATE(4872), - [sym_declaration] = STATE(4872), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(4872), - [sym_expression_statement] = STATE(4872), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(4872), - [sym_if_statement] = STATE(4872), - [sym_switch_statement] = STATE(4872), - [sym_for_statement] = STATE(4872), - [sym_for_in_statement] = STATE(4872), - [sym_while_statement] = STATE(4872), - [sym_do_statement] = STATE(4872), - [sym_try_statement] = STATE(4872), - [sym_with_statement] = STATE(4872), - [sym_break_statement] = STATE(4872), - [sym_continue_statement] = STATE(4872), - [sym_debugger_statement] = STATE(4872), - [sym_return_statement] = STATE(4872), - [sym_throw_statement] = STATE(4872), - [sym_empty_statement] = STATE(4872), - [sym_labeled_statement] = STATE(4872), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(2297), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3454), - [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(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(556), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(556), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(574), - [anon_sym_async] = ACTIONS(576), - [anon_sym_function] = ACTIONS(578), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(556), - [anon_sym_readonly] = ACTIONS(556), - [anon_sym_get] = ACTIONS(556), - [anon_sym_set] = ACTIONS(556), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(556), - [anon_sym_private] = ACTIONS(556), - [anon_sym_protected] = ACTIONS(556), - [anon_sym_override] = ACTIONS(556), - [anon_sym_module] = ACTIONS(582), - [anon_sym_any] = ACTIONS(556), - [anon_sym_number] = ACTIONS(556), - [anon_sym_boolean] = ACTIONS(556), - [anon_sym_string] = ACTIONS(556), - [anon_sym_symbol] = ACTIONS(556), - [anon_sym_property] = ACTIONS(556), - [anon_sym_signal] = ACTIONS(556), - [anon_sym_on] = ACTIONS(556), - [anon_sym_required] = ACTIONS(556), - [anon_sym_component] = ACTIONS(556), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [51] = { - [sym_export_statement] = STATE(738), - [sym_declaration] = STATE(738), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(738), - [sym_expression_statement] = STATE(738), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(738), - [sym_if_statement] = STATE(738), - [sym_switch_statement] = STATE(738), - [sym_for_statement] = STATE(738), - [sym_for_in_statement] = STATE(738), - [sym_while_statement] = STATE(738), - [sym_do_statement] = STATE(738), - [sym_try_statement] = STATE(738), - [sym_with_statement] = STATE(738), - [sym_break_statement] = STATE(738), - [sym_continue_statement] = STATE(738), - [sym_debugger_statement] = STATE(738), - [sym_return_statement] = STATE(738), - [sym_throw_statement] = STATE(738), - [sym_empty_statement] = STATE(738), - [sym_labeled_statement] = STATE(738), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [52] = { - [sym_export_statement] = STATE(685), - [sym_declaration] = STATE(685), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(685), - [sym_expression_statement] = STATE(685), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(685), - [sym_if_statement] = STATE(685), - [sym_switch_statement] = STATE(685), - [sym_for_statement] = STATE(685), - [sym_for_in_statement] = STATE(685), - [sym_while_statement] = STATE(685), - [sym_do_statement] = STATE(685), - [sym_try_statement] = STATE(685), - [sym_with_statement] = STATE(685), - [sym_break_statement] = STATE(685), - [sym_continue_statement] = STATE(685), - [sym_debugger_statement] = STATE(685), - [sym_return_statement] = STATE(685), - [sym_throw_statement] = STATE(685), - [sym_empty_statement] = STATE(685), - [sym_labeled_statement] = STATE(685), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [53] = { - [sym_export_statement] = STATE(742), - [sym_declaration] = STATE(746), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(747), - [sym_expression_statement] = STATE(748), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(750), - [sym_if_statement] = STATE(751), - [sym_switch_statement] = STATE(758), - [sym_for_statement] = STATE(763), - [sym_for_in_statement] = STATE(764), - [sym_while_statement] = STATE(766), - [sym_do_statement] = STATE(767), - [sym_try_statement] = STATE(768), - [sym_with_statement] = STATE(769), - [sym_break_statement] = STATE(771), - [sym_continue_statement] = STATE(775), - [sym_debugger_statement] = STATE(776), - [sym_return_statement] = STATE(778), - [sym_throw_statement] = STATE(779), - [sym_empty_statement] = STATE(781), - [sym_labeled_statement] = STATE(782), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(2297), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3454), - [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(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(556), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(556), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(574), - [anon_sym_async] = ACTIONS(576), - [anon_sym_function] = ACTIONS(578), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(556), - [anon_sym_readonly] = ACTIONS(556), - [anon_sym_get] = ACTIONS(556), - [anon_sym_set] = ACTIONS(556), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(556), - [anon_sym_private] = ACTIONS(556), - [anon_sym_protected] = ACTIONS(556), - [anon_sym_override] = ACTIONS(556), - [anon_sym_module] = ACTIONS(582), - [anon_sym_any] = ACTIONS(556), - [anon_sym_number] = ACTIONS(556), - [anon_sym_boolean] = ACTIONS(556), - [anon_sym_string] = ACTIONS(556), - [anon_sym_symbol] = ACTIONS(556), - [anon_sym_property] = ACTIONS(556), - [anon_sym_signal] = ACTIONS(556), - [anon_sym_on] = ACTIONS(556), - [anon_sym_required] = ACTIONS(556), - [anon_sym_component] = ACTIONS(556), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [54] = { - [sym_export_statement] = STATE(713), - [sym_declaration] = STATE(713), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(713), - [sym_expression_statement] = STATE(713), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(713), - [sym_if_statement] = STATE(713), - [sym_switch_statement] = STATE(713), - [sym_for_statement] = STATE(713), - [sym_for_in_statement] = STATE(713), - [sym_while_statement] = STATE(713), - [sym_do_statement] = STATE(713), - [sym_try_statement] = STATE(713), - [sym_with_statement] = STATE(713), - [sym_break_statement] = STATE(713), - [sym_continue_statement] = STATE(713), - [sym_debugger_statement] = STATE(713), - [sym_return_statement] = STATE(713), - [sym_throw_statement] = STATE(713), - [sym_empty_statement] = STATE(713), - [sym_labeled_statement] = STATE(713), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(2297), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3454), - [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(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(556), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(556), - [anon_sym_while] = ACTIONS(566), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(570), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(574), - [anon_sym_async] = ACTIONS(576), - [anon_sym_function] = ACTIONS(578), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(556), - [anon_sym_readonly] = ACTIONS(556), - [anon_sym_get] = ACTIONS(556), - [anon_sym_set] = ACTIONS(556), - [anon_sym_declare] = ACTIONS(580), - [anon_sym_public] = ACTIONS(556), - [anon_sym_private] = ACTIONS(556), - [anon_sym_protected] = ACTIONS(556), - [anon_sym_override] = ACTIONS(556), - [anon_sym_module] = ACTIONS(582), - [anon_sym_any] = ACTIONS(556), - [anon_sym_number] = ACTIONS(556), - [anon_sym_boolean] = ACTIONS(556), - [anon_sym_string] = ACTIONS(556), - [anon_sym_symbol] = ACTIONS(556), - [anon_sym_property] = ACTIONS(556), - [anon_sym_signal] = ACTIONS(556), - [anon_sym_on] = ACTIONS(556), - [anon_sym_required] = ACTIONS(556), - [anon_sym_component] = ACTIONS(556), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [55] = { - [sym_export_statement] = STATE(713), - [sym_declaration] = STATE(713), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(713), - [sym_expression_statement] = STATE(713), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(713), - [sym_if_statement] = STATE(713), - [sym_switch_statement] = STATE(713), - [sym_for_statement] = STATE(713), - [sym_for_in_statement] = STATE(713), - [sym_while_statement] = STATE(713), - [sym_do_statement] = STATE(713), - [sym_try_statement] = STATE(713), - [sym_with_statement] = STATE(713), - [sym_break_statement] = STATE(713), - [sym_continue_statement] = STATE(713), - [sym_debugger_statement] = STATE(713), - [sym_return_statement] = STATE(713), - [sym_throw_statement] = STATE(713), - [sym_empty_statement] = STATE(713), - [sym_labeled_statement] = STATE(713), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [56] = { - [sym_export_statement] = STATE(772), - [sym_declaration] = STATE(772), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_for_in_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_with_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_debugger_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_empty_statement] = STATE(772), - [sym_labeled_statement] = STATE(772), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [57] = { - [sym_export_statement] = STATE(848), - [sym_declaration] = STATE(847), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(846), - [sym_expression_statement] = STATE(844), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(843), - [sym_if_statement] = STATE(841), - [sym_switch_statement] = STATE(840), - [sym_for_statement] = STATE(839), - [sym_for_in_statement] = STATE(838), - [sym_while_statement] = STATE(837), - [sym_do_statement] = STATE(836), - [sym_try_statement] = STATE(835), - [sym_with_statement] = STATE(834), - [sym_break_statement] = STATE(833), - [sym_continue_statement] = STATE(832), - [sym_debugger_statement] = STATE(831), - [sym_return_statement] = STATE(830), - [sym_throw_statement] = STATE(828), - [sym_empty_statement] = STATE(827), - [sym_labeled_statement] = STATE(826), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [58] = { - [sym_export_statement] = STATE(2522), - [sym_declaration] = STATE(2522), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(2522), - [sym_expression_statement] = STATE(2522), - [sym_variable_declaration] = STATE(2613), - [sym_lexical_declaration] = STATE(2613), - [sym_statement_block] = STATE(2522), - [sym_if_statement] = STATE(2522), - [sym_switch_statement] = STATE(2522), - [sym_for_statement] = STATE(2522), - [sym_for_in_statement] = STATE(2522), - [sym_while_statement] = STATE(2522), - [sym_do_statement] = STATE(2522), - [sym_try_statement] = STATE(2522), - [sym_with_statement] = STATE(2522), - [sym_break_statement] = STATE(2522), - [sym_continue_statement] = STATE(2522), - [sym_debugger_statement] = STATE(2522), - [sym_return_statement] = STATE(2522), - [sym_throw_statement] = STATE(2522), - [sym_empty_statement] = STATE(2522), - [sym_labeled_statement] = STATE(2522), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(2613), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(2613), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(2613), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(2613), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(2613), - [sym_abstract_class_declaration] = STATE(2613), - [sym_module] = STATE(2613), - [sym_internal_module] = STATE(883), - [sym_import_alias] = STATE(2613), - [sym_interface_declaration] = STATE(2613), - [sym_enum_declaration] = STATE(2613), - [sym_type_alias_declaration] = STATE(2613), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3428), - [sym_identifier] = ACTIONS(584), - [anon_sym_export] = ACTIONS(586), - [anon_sym_type] = ACTIONS(588), - [anon_sym_namespace] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(594), - [anon_sym_from] = ACTIONS(596), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(598), - [anon_sym_const] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(596), - [anon_sym_while] = ACTIONS(606), - [anon_sym_do] = ACTIONS(608), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_break] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_debugger] = ACTIONS(616), - [anon_sym_return] = ACTIONS(618), - [anon_sym_throw] = ACTIONS(620), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(622), - [anon_sym_async] = ACTIONS(624), - [anon_sym_function] = ACTIONS(626), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(596), - [anon_sym_readonly] = ACTIONS(596), - [anon_sym_get] = ACTIONS(596), - [anon_sym_set] = ACTIONS(596), - [anon_sym_declare] = ACTIONS(628), - [anon_sym_public] = ACTIONS(596), - [anon_sym_private] = ACTIONS(596), - [anon_sym_protected] = ACTIONS(596), - [anon_sym_override] = ACTIONS(596), - [anon_sym_module] = ACTIONS(630), - [anon_sym_any] = ACTIONS(596), - [anon_sym_number] = ACTIONS(596), - [anon_sym_boolean] = ACTIONS(596), - [anon_sym_string] = ACTIONS(596), - [anon_sym_symbol] = ACTIONS(596), - [anon_sym_property] = ACTIONS(596), - [anon_sym_signal] = ACTIONS(596), - [anon_sym_on] = ACTIONS(596), - [anon_sym_required] = ACTIONS(596), - [anon_sym_component] = ACTIONS(596), - [anon_sym_abstract] = ACTIONS(632), - [anon_sym_interface] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(636), - }, - [59] = { - [sym_export_statement] = STATE(2538), - [sym_declaration] = STATE(2538), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(2538), - [sym_expression_statement] = STATE(2538), - [sym_variable_declaration] = STATE(2613), - [sym_lexical_declaration] = STATE(2613), - [sym_statement_block] = STATE(2538), - [sym_if_statement] = STATE(2538), - [sym_switch_statement] = STATE(2538), - [sym_for_statement] = STATE(2538), - [sym_for_in_statement] = STATE(2538), - [sym_while_statement] = STATE(2538), - [sym_do_statement] = STATE(2538), - [sym_try_statement] = STATE(2538), - [sym_with_statement] = STATE(2538), - [sym_break_statement] = STATE(2538), - [sym_continue_statement] = STATE(2538), - [sym_debugger_statement] = STATE(2538), - [sym_return_statement] = STATE(2538), - [sym_throw_statement] = STATE(2538), - [sym_empty_statement] = STATE(2538), - [sym_labeled_statement] = STATE(2538), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(2613), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(2613), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(2613), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(2613), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(2613), - [sym_abstract_class_declaration] = STATE(2613), - [sym_module] = STATE(2613), - [sym_internal_module] = STATE(883), - [sym_import_alias] = STATE(2613), - [sym_interface_declaration] = STATE(2613), - [sym_enum_declaration] = STATE(2613), - [sym_type_alias_declaration] = STATE(2613), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3428), - [sym_identifier] = ACTIONS(584), - [anon_sym_export] = ACTIONS(586), - [anon_sym_type] = ACTIONS(588), - [anon_sym_namespace] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(594), - [anon_sym_from] = ACTIONS(596), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(598), - [anon_sym_const] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_for] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(596), - [anon_sym_while] = ACTIONS(606), - [anon_sym_do] = ACTIONS(608), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_break] = ACTIONS(612), - [anon_sym_continue] = ACTIONS(614), - [anon_sym_debugger] = ACTIONS(616), - [anon_sym_return] = ACTIONS(618), - [anon_sym_throw] = ACTIONS(620), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(622), - [anon_sym_async] = ACTIONS(624), - [anon_sym_function] = ACTIONS(626), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(596), - [anon_sym_readonly] = ACTIONS(596), - [anon_sym_get] = ACTIONS(596), - [anon_sym_set] = ACTIONS(596), - [anon_sym_declare] = ACTIONS(628), - [anon_sym_public] = ACTIONS(596), - [anon_sym_private] = ACTIONS(596), - [anon_sym_protected] = ACTIONS(596), - [anon_sym_override] = ACTIONS(596), - [anon_sym_module] = ACTIONS(630), - [anon_sym_any] = ACTIONS(596), - [anon_sym_number] = ACTIONS(596), - [anon_sym_boolean] = ACTIONS(596), - [anon_sym_string] = ACTIONS(596), - [anon_sym_symbol] = ACTIONS(596), - [anon_sym_property] = ACTIONS(596), - [anon_sym_signal] = ACTIONS(596), - [anon_sym_on] = ACTIONS(596), - [anon_sym_required] = ACTIONS(596), - [anon_sym_component] = ACTIONS(596), - [anon_sym_abstract] = ACTIONS(632), - [anon_sym_interface] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(636), - }, - [60] = { - [sym_export_statement] = STATE(742), - [sym_declaration] = STATE(746), - [sym_import] = STATE(2118), - [sym_import_statement] = STATE(747), - [sym_expression_statement] = STATE(748), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_statement_block] = STATE(750), - [sym_if_statement] = STATE(751), - [sym_switch_statement] = STATE(758), - [sym_for_statement] = STATE(763), - [sym_for_in_statement] = STATE(764), - [sym_while_statement] = STATE(766), - [sym_do_statement] = STATE(767), - [sym_try_statement] = STATE(768), - [sym_with_statement] = STATE(769), - [sym_break_statement] = STATE(771), - [sym_continue_statement] = STATE(775), - [sym_debugger_statement] = STATE(776), - [sym_return_statement] = STATE(778), - [sym_throw_statement] = STATE(779), - [sym_empty_statement] = STATE(781), - [sym_labeled_statement] = STATE(782), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3464), - [sym_identifier] = ACTIONS(327), - [anon_sym_export] = ACTIONS(329), - [anon_sym_type] = ACTIONS(333), - [anon_sym_namespace] = ACTIONS(335), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(147), - [anon_sym_from] = ACTIONS(339), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_switch] = ACTIONS(161), - [anon_sym_for] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(339), - [anon_sym_while] = ACTIONS(169), - [anon_sym_do] = ACTIONS(171), - [anon_sym_try] = ACTIONS(173), - [anon_sym_with] = ACTIONS(175), - [anon_sym_break] = ACTIONS(177), - [anon_sym_continue] = ACTIONS(179), - [anon_sym_debugger] = ACTIONS(181), - [anon_sym_return] = ACTIONS(183), - [anon_sym_throw] = ACTIONS(185), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(343), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(339), - [anon_sym_get] = ACTIONS(339), - [anon_sym_set] = ACTIONS(339), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_public] = ACTIONS(339), - [anon_sym_private] = ACTIONS(339), - [anon_sym_protected] = ACTIONS(339), - [anon_sym_override] = ACTIONS(339), - [anon_sym_module] = ACTIONS(349), - [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_property] = ACTIONS(339), - [anon_sym_signal] = ACTIONS(339), - [anon_sym_on] = ACTIONS(339), - [anon_sym_required] = ACTIONS(339), - [anon_sym_component] = ACTIONS(339), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), - }, - [61] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3595), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_await] = ACTIONS(44), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(19), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(54), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(653), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(658), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(19), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [62] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3607), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_await] = ACTIONS(44), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(19), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(54), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(653), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(664), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(19), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [63] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4062), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3560), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4237), - [sym_optional_tuple_parameter] = STATE(4237), - [sym_optional_type] = STATE(4237), - [sym_rest_type] = STATE(4237), - [sym__tuple_type_member] = STATE(4237), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4054), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(666), - [anon_sym_export] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_typeof] = ACTIONS(678), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(688), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(714), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(718), - [anon_sym_number] = ACTIONS(718), - [anon_sym_boolean] = ACTIONS(718), - [anon_sym_string] = ACTIONS(718), - [anon_sym_symbol] = ACTIONS(718), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [64] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4062), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3560), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4142), - [sym_optional_tuple_parameter] = STATE(4142), - [sym_optional_type] = STATE(4142), - [sym_rest_type] = STATE(4142), - [sym__tuple_type_member] = STATE(4142), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4054), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(666), - [anon_sym_export] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(720), - [anon_sym_typeof] = ACTIONS(678), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(722), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(714), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(718), - [anon_sym_number] = ACTIONS(718), - [anon_sym_boolean] = ACTIONS(718), - [anon_sym_string] = ACTIONS(718), - [anon_sym_symbol] = ACTIONS(718), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [65] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4046), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3560), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4237), - [sym_optional_tuple_parameter] = STATE(4237), - [sym_optional_type] = STATE(4237), - [sym_rest_type] = STATE(4237), - [sym__tuple_type_member] = STATE(4237), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4009), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(666), - [anon_sym_export] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_typeof] = ACTIONS(678), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(724), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(714), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(718), - [anon_sym_number] = ACTIONS(718), - [anon_sym_boolean] = ACTIONS(718), - [anon_sym_string] = ACTIONS(718), - [anon_sym_symbol] = ACTIONS(718), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [66] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3592), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_await] = ACTIONS(44), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(19), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(54), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(653), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(726), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(19), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [67] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4062), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3560), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4237), - [sym_optional_tuple_parameter] = STATE(4237), - [sym_optional_type] = STATE(4237), - [sym_rest_type] = STATE(4237), - [sym__tuple_type_member] = STATE(4237), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4054), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(666), - [anon_sym_export] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_typeof] = ACTIONS(678), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(714), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(718), - [anon_sym_number] = ACTIONS(718), - [anon_sym_boolean] = ACTIONS(718), - [anon_sym_string] = ACTIONS(718), - [anon_sym_symbol] = ACTIONS(718), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [68] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3628), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_await] = ACTIONS(44), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(19), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(54), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(653), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(730), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(19), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [69] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4062), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3560), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4237), - [sym_optional_tuple_parameter] = STATE(4237), - [sym_optional_type] = STATE(4237), - [sym_rest_type] = STATE(4237), - [sym__tuple_type_member] = STATE(4237), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4054), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(666), - [anon_sym_export] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_typeof] = ACTIONS(678), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(732), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(714), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(718), - [anon_sym_number] = ACTIONS(718), - [anon_sym_boolean] = ACTIONS(718), - [anon_sym_string] = ACTIONS(718), - [anon_sym_symbol] = ACTIONS(718), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [70] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3725), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(23), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(32), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(32), - [anon_sym_await] = ACTIONS(44), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(19), - [anon_sym_COLON] = ACTIONS(32), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(54), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(653), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(734), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(19), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [71] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4046), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3560), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4237), - [sym_optional_tuple_parameter] = STATE(4237), - [sym_optional_type] = STATE(4237), - [sym_rest_type] = STATE(4237), - [sym__tuple_type_member] = STATE(4237), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4009), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(666), - [anon_sym_export] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_typeof] = ACTIONS(678), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(714), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(718), - [anon_sym_number] = ACTIONS(718), - [anon_sym_boolean] = ACTIONS(718), - [anon_sym_string] = ACTIONS(718), - [anon_sym_symbol] = ACTIONS(718), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [72] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4062), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3560), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4237), - [sym_optional_tuple_parameter] = STATE(4237), - [sym_optional_type] = STATE(4237), - [sym_rest_type] = STATE(4237), - [sym__tuple_type_member] = STATE(4237), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4054), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(666), - [anon_sym_export] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_typeof] = ACTIONS(678), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(714), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(718), - [anon_sym_number] = ACTIONS(718), - [anon_sym_boolean] = ACTIONS(718), - [anon_sym_string] = ACTIONS(718), - [anon_sym_symbol] = ACTIONS(718), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [73] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3725), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_await] = ACTIONS(44), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(19), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(54), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(653), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(734), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(19), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [74] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3712), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_await] = ACTIONS(44), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(19), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(54), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(653), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(740), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(19), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [75] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4062), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3560), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4237), - [sym_optional_tuple_parameter] = STATE(4237), - [sym_optional_type] = STATE(4237), - [sym_rest_type] = STATE(4237), - [sym__tuple_type_member] = STATE(4237), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4054), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(666), - [anon_sym_export] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_typeof] = ACTIONS(678), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(742), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(714), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(718), - [anon_sym_number] = ACTIONS(718), - [anon_sym_boolean] = ACTIONS(718), - [anon_sym_string] = ACTIONS(718), - [anon_sym_symbol] = ACTIONS(718), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [76] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4062), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3560), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4237), - [sym_optional_tuple_parameter] = STATE(4237), - [sym_optional_type] = STATE(4237), - [sym_rest_type] = STATE(4237), - [sym__tuple_type_member] = STATE(4237), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4054), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(666), - [anon_sym_export] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_typeof] = ACTIONS(678), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(714), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(718), - [anon_sym_number] = ACTIONS(718), - [anon_sym_boolean] = ACTIONS(718), - [anon_sym_string] = ACTIONS(718), - [anon_sym_symbol] = ACTIONS(718), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [77] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3648), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(19), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(642), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_await] = ACTIONS(44), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(19), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(645), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(648), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(54), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(39), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(653), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(746), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(19), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [78] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4062), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3560), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4237), - [sym_optional_tuple_parameter] = STATE(4237), - [sym_optional_type] = STATE(4237), - [sym_rest_type] = STATE(4237), - [sym__tuple_type_member] = STATE(4237), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4054), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(666), - [anon_sym_export] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_typeof] = ACTIONS(678), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_RBRACK] = ACTIONS(748), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(712), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(714), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(718), - [anon_sym_number] = ACTIONS(718), - [anon_sym_boolean] = ACTIONS(718), - [anon_sym_string] = ACTIONS(718), - [anon_sym_symbol] = ACTIONS(718), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [79] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1795), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym__formal_parameter] = STATE(4130), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4722), - [sym_string] = STATE(2142), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4130), - [sym_optional_parameter] = STATE(4130), - [sym__parameter_name] = STATE(3290), - [sym__type] = STATE(3868), - [sym_constructor_type] = STATE(3868), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3868), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3868), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3868), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_typeof] = ACTIONS(754), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(758), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(760), - [anon_sym_DASH] = ACTIONS(760), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(762), - [sym_number] = ACTIONS(764), - [sym_this] = ACTIONS(766), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(768), - [sym_false] = ACTIONS(768), - [sym_null] = ACTIONS(768), - [sym_undefined] = ACTIONS(770), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(778), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(780), - [anon_sym_number] = ACTIONS(780), - [anon_sym_boolean] = ACTIONS(780), - [anon_sym_string] = ACTIONS(780), - [anon_sym_symbol] = ACTIONS(780), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [80] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1721), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym__formal_parameter] = STATE(4130), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4685), - [sym_string] = STATE(2142), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4130), - [sym_optional_parameter] = STATE(4130), - [sym__parameter_name] = STATE(3290), - [sym__type] = STATE(3868), - [sym_constructor_type] = STATE(3868), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3868), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3868), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3868), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_typeof] = ACTIONS(754), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(758), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(760), - [anon_sym_DASH] = ACTIONS(760), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(762), - [sym_number] = ACTIONS(764), - [sym_this] = ACTIONS(766), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(768), - [sym_false] = ACTIONS(768), - [sym_null] = ACTIONS(768), - [sym_undefined] = ACTIONS(770), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(778), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(780), - [anon_sym_number] = ACTIONS(780), - [anon_sym_boolean] = ACTIONS(780), - [anon_sym_string] = ACTIONS(780), - [anon_sym_symbol] = ACTIONS(780), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [81] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1795), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym__formal_parameter] = STATE(4130), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4722), - [sym_string] = STATE(2142), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4130), - [sym_optional_parameter] = STATE(4130), - [sym__parameter_name] = STATE(3290), - [sym__type] = STATE(3927), - [sym_constructor_type] = STATE(3927), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3927), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3927), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3927), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(750), - [anon_sym_export] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(752), - [anon_sym_typeof] = ACTIONS(754), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(758), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(760), - [anon_sym_DASH] = ACTIONS(760), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(762), - [sym_number] = ACTIONS(764), - [sym_this] = ACTIONS(766), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(768), - [sym_false] = ACTIONS(768), - [sym_null] = ACTIONS(768), - [sym_undefined] = ACTIONS(770), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(774), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(778), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(780), - [anon_sym_number] = ACTIONS(780), - [anon_sym_boolean] = ACTIONS(780), - [anon_sym_string] = ACTIONS(780), - [anon_sym_symbol] = ACTIONS(780), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [82] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4130), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4130), - [sym_optional_parameter] = STATE(4130), - [sym__parameter_name] = STATE(3290), - [sym__type] = STATE(3862), - [sym_constructor_type] = STATE(3862), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3862), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(557), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3862), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3862), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(17), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_typeof] = ACTIONS(35), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(48), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(81), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(784), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(102), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(786), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(110), - [anon_sym_number] = ACTIONS(110), - [anon_sym_boolean] = ACTIONS(110), - [anon_sym_string] = ACTIONS(110), - [anon_sym_symbol] = ACTIONS(110), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [83] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4130), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4130), - [sym_optional_parameter] = STATE(4130), - [sym__parameter_name] = STATE(3290), - [sym__type] = STATE(3930), - [sym_constructor_type] = STATE(3930), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3930), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(557), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3930), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3930), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(17), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_typeof] = ACTIONS(35), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(48), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(81), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(784), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(102), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(786), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(110), - [anon_sym_number] = ACTIONS(110), - [anon_sym_boolean] = ACTIONS(110), - [anon_sym_string] = ACTIONS(110), - [anon_sym_symbol] = ACTIONS(110), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [84] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4130), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4130), - [sym_optional_parameter] = STATE(4130), - [sym__parameter_name] = STATE(3290), - [sym__type] = STATE(3863), - [sym_constructor_type] = STATE(3863), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3863), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(557), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3863), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3863), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(17), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_typeof] = ACTIONS(35), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(48), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(81), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(784), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(102), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(786), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(110), - [anon_sym_number] = ACTIONS(110), - [anon_sym_boolean] = ACTIONS(110), - [anon_sym_string] = ACTIONS(110), - [anon_sym_symbol] = ACTIONS(110), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [85] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4130), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4130), - [sym_optional_parameter] = STATE(4130), - [sym__parameter_name] = STATE(3290), - [sym__type] = STATE(3868), - [sym_constructor_type] = STATE(3868), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3868), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(557), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3868), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3868), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(17), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_typeof] = ACTIONS(35), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(48), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(81), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(784), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(102), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(786), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(110), - [anon_sym_number] = ACTIONS(110), - [anon_sym_boolean] = ACTIONS(110), - [anon_sym_string] = ACTIONS(110), - [anon_sym_symbol] = ACTIONS(110), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [86] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4130), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4130), - [sym_optional_parameter] = STATE(4130), - [sym__parameter_name] = STATE(3290), - [sym__type] = STATE(3927), - [sym_constructor_type] = STATE(3927), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3927), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(557), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3927), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3927), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(17), - [anon_sym_export] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(30), - [anon_sym_typeof] = ACTIONS(35), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(48), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(77), - [anon_sym_DASH] = ACTIONS(77), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(81), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(784), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(102), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(786), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(110), - [anon_sym_number] = ACTIONS(110), - [anon_sym_boolean] = ACTIONS(110), - [anon_sym_string] = ACTIONS(110), - [anon_sym_symbol] = ACTIONS(110), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [87] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1948), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4586), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4807), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1952), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3627), - [sym_pattern] = STATE(4201), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3125), - [sym_constructor_type] = STATE(3125), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3125), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4517), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3125), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3125), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(792), - [anon_sym_export] = ACTIONS(668), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(796), - [anon_sym_typeof] = ACTIONS(798), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(800), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(802), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(804), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(810), - [anon_sym_DASH] = ACTIONS(810), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(812), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(814), - [sym_number] = ACTIONS(816), - [sym_this] = ACTIONS(818), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(820), - [sym_false] = ACTIONS(820), - [sym_null] = ACTIONS(820), - [sym_undefined] = ACTIONS(822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(824), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(828), - [anon_sym_number] = ACTIONS(828), - [anon_sym_boolean] = ACTIONS(828), - [anon_sym_string] = ACTIONS(828), - [anon_sym_symbol] = ACTIONS(828), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [88] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(2020), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4650), - [sym_string] = STATE(2142), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(4159), - [sym_constructor_type] = STATE(4159), - [sym__primary_type] = STATE(3586), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3884), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(4159), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(4159), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(840), - [anon_sym_export] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(754), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(760), - [anon_sym_DASH] = ACTIONS(760), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(762), - [sym_number] = ACTIONS(764), - [sym_this] = ACTIONS(852), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(768), - [sym_false] = ACTIONS(768), - [sym_null] = ACTIONS(768), - [sym_undefined] = ACTIONS(854), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(856), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(858), - [anon_sym_number] = ACTIONS(858), - [anon_sym_boolean] = ACTIONS(858), - [anon_sym_string] = ACTIONS(858), - [anon_sym_symbol] = ACTIONS(858), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [89] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1816), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2048), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3391), - [sym_constructor_type] = STATE(3391), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3391), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(511), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3391), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3391), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_typeof] = ACTIONS(868), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(894), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(900), - [sym_number] = ACTIONS(902), - [sym_this] = ACTIONS(904), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [sym_undefined] = ACTIONS(908), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(910), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(912), - [anon_sym_number] = ACTIONS(912), - [anon_sym_boolean] = ACTIONS(912), - [anon_sym_string] = ACTIONS(912), - [anon_sym_symbol] = ACTIONS(912), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [90] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2117), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2229), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3391), - [sym_constructor_type] = STATE(3391), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3391), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(432), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3391), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3391), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(914), - [anon_sym_export] = ACTIONS(916), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(920), - [anon_sym_typeof] = ACTIONS(922), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(936), - [anon_sym_DASH] = ACTIONS(936), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(938), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(944), - [sym_number] = ACTIONS(946), - [sym_this] = ACTIONS(948), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [sym_null] = ACTIONS(950), - [sym_undefined] = ACTIONS(952), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(954), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(956), - [anon_sym_number] = ACTIONS(956), - [anon_sym_boolean] = ACTIONS(956), - [anon_sym_string] = ACTIONS(956), - [anon_sym_symbol] = ACTIONS(956), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [91] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1779), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3847), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3847), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3847), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2106), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_non_null_expression] = STATE(1302), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3572), - [sym_constructor_type] = STATE(3572), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3572), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3572), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3572), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(958), - [anon_sym_export] = ACTIONS(960), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(960), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(678), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(686), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(702), - [anon_sym_DASH] = ACTIONS(702), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(92), - [sym_number] = ACTIONS(94), - [sym_this] = ACTIONS(710), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(100), - [sym_false] = ACTIONS(100), - [sym_null] = ACTIONS(100), - [sym_undefined] = ACTIONS(968), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(960), - [anon_sym_readonly] = ACTIONS(970), - [anon_sym_get] = ACTIONS(960), - [anon_sym_set] = ACTIONS(960), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(960), - [anon_sym_public] = ACTIONS(960), - [anon_sym_private] = ACTIONS(960), - [anon_sym_protected] = ACTIONS(960), - [anon_sym_override] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_any] = ACTIONS(972), - [anon_sym_number] = ACTIONS(972), - [anon_sym_boolean] = ACTIONS(972), - [anon_sym_string] = ACTIONS(972), - [anon_sym_symbol] = ACTIONS(972), - [anon_sym_property] = ACTIONS(960), - [anon_sym_signal] = ACTIONS(960), - [anon_sym_on] = ACTIONS(960), - [anon_sym_required] = ACTIONS(960), - [anon_sym_component] = ACTIONS(960), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [92] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1595), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1677), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3391), - [sym_constructor_type] = STATE(3391), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3391), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(507), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3391), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3391), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(974), - [anon_sym_export] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_typeof] = ACTIONS(978), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(704), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(984), - [sym_number] = ACTIONS(986), - [sym_this] = ACTIONS(988), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_undefined] = ACTIONS(992), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(856), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(994), - [anon_sym_number] = ACTIONS(994), - [anon_sym_boolean] = ACTIONS(994), - [anon_sym_string] = ACTIONS(994), - [anon_sym_symbol] = ACTIONS(994), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [93] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1912), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2327), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3391), - [sym_constructor_type] = STATE(3391), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3391), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(399), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3391), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3391), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(996), - [anon_sym_export] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_typeof] = ACTIONS(1004), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1012), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1016), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(1018), - [anon_sym_DASH] = ACTIONS(1018), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1020), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1026), - [sym_number] = ACTIONS(1028), - [sym_this] = ACTIONS(1030), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(1032), - [sym_false] = ACTIONS(1032), - [sym_null] = ACTIONS(1032), - [sym_undefined] = ACTIONS(1034), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(1036), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [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_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [94] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3318), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3318), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1205), - [sym_subscript_expression] = STATE(1205), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3318), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2370), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_non_null_expression] = STATE(1205), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3572), - [sym_constructor_type] = STATE(3572), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3572), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(557), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3572), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3572), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1040), - [anon_sym_export] = ACTIONS(1042), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(1042), - [anon_sym_namespace] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1046), - [anon_sym_typeof] = ACTIONS(1048), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(67), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(81), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1056), - [sym_number] = ACTIONS(1058), - [sym_this] = ACTIONS(1060), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(1062), - [sym_false] = ACTIONS(1062), - [sym_null] = ACTIONS(1062), - [sym_undefined] = ACTIONS(1064), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1042), - [anon_sym_readonly] = ACTIONS(1066), - [anon_sym_get] = ACTIONS(1042), - [anon_sym_set] = ACTIONS(1042), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(1042), - [anon_sym_public] = ACTIONS(1042), - [anon_sym_private] = ACTIONS(1042), - [anon_sym_protected] = ACTIONS(1042), - [anon_sym_override] = ACTIONS(1042), - [anon_sym_module] = ACTIONS(1042), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), - [anon_sym_property] = ACTIONS(1042), - [anon_sym_signal] = ACTIONS(1042), - [anon_sym_on] = ACTIONS(1042), - [anon_sym_required] = ACTIONS(1042), - [anon_sym_component] = ACTIONS(1042), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [95] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2152), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2229), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3391), - [sym_constructor_type] = STATE(3391), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3391), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(586), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3391), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3391), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1070), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1076), - [anon_sym_typeof] = ACTIONS(1078), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1088), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(1090), - [anon_sym_DASH] = ACTIONS(1090), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1092), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(944), - [sym_number] = ACTIONS(946), - [sym_this] = ACTIONS(948), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [sym_null] = ACTIONS(950), - [sym_undefined] = ACTIONS(1098), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1100), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1102), - [anon_sym_number] = ACTIONS(1102), - [anon_sym_boolean] = ACTIONS(1102), - [anon_sym_string] = ACTIONS(1102), - [anon_sym_symbol] = ACTIONS(1102), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [96] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2340), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2229), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3391), - [sym_constructor_type] = STATE(3391), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3391), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(557), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3391), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3391), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1104), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(1112), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(67), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(1116), - [anon_sym_DASH] = ACTIONS(1116), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(81), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(944), - [sym_number] = ACTIONS(946), - [sym_this] = ACTIONS(948), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [sym_null] = ACTIONS(950), - [sym_undefined] = ACTIONS(1118), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1120), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1122), - [anon_sym_number] = ACTIONS(1122), - [anon_sym_boolean] = ACTIONS(1122), - [anon_sym_string] = ACTIONS(1122), - [anon_sym_symbol] = ACTIONS(1122), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [97] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1687), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2048), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3391), - [sym_constructor_type] = STATE(3391), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3391), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(461), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3391), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3391), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1124), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_typeof] = ACTIONS(1130), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(874), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(880), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(1136), - [anon_sym_DASH] = ACTIONS(1136), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(1138), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(900), - [sym_number] = ACTIONS(902), - [sym_this] = ACTIONS(904), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(906), - [sym_false] = ACTIONS(906), - [sym_null] = ACTIONS(906), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1142), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1144), - [anon_sym_number] = ACTIONS(1144), - [anon_sym_boolean] = ACTIONS(1144), - [anon_sym_string] = ACTIONS(1144), - [anon_sym_symbol] = ACTIONS(1144), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), + case 602: + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(615); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(946); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '_') ADVANCE(941); + if (lookahead == 'n') ADVANCE(608); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_identifier_character_set_2(lookahead)) ADVANCE(945); + END_STATE(); + case 603: + ACCEPT_TOKEN(sym_number); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '_') ADVANCE(938); + if (lookahead == 'n') ADVANCE(608); + if (lookahead == '0' || + lookahead == '1') ADVANCE(603); + if (!sym_identifier_character_set_3(lookahead)) ADVANCE(945); + END_STATE(); + case 604: + ACCEPT_TOKEN(sym_number); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '_') ADVANCE(940); + if (lookahead == 'n') ADVANCE(608); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(604); + if (!sym_identifier_character_set_3(lookahead)) ADVANCE(945); + END_STATE(); + case 605: + ACCEPT_TOKEN(sym_number); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '_') ADVANCE(944); + if (lookahead == 'n') ADVANCE(608); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(605); + if (!sym_identifier_character_set_2(lookahead)) ADVANCE(945); + END_STATE(); + case 606: + ACCEPT_TOKEN(sym_number); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '_') ADVANCE(942); + if (lookahead == 'n') ADVANCE(608); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(606); + if (!sym_identifier_character_set_2(lookahead)) ADVANCE(945); + END_STATE(); + case 607: + ACCEPT_TOKEN(sym_number); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '_') ADVANCE(943); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(607); + if (!sym_identifier_character_set_2(lookahead)) ADVANCE(945); + END_STATE(); + case 608: + ACCEPT_TOKEN(sym_number); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 609: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(354); + if (lookahead == 'n') ADVANCE(598); + if (lookahead == '0' || + lookahead == '1') ADVANCE(609); + END_STATE(); + case 610: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(355); + if (lookahead == 'n') ADVANCE(598); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(610); + END_STATE(); + case 611: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(363); + if (lookahead == 'n') ADVANCE(598); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(611); + END_STATE(); + case 612: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(358); + if (lookahead == 'n') ADVANCE(598); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(612); + END_STATE(); + case 613: + ACCEPT_TOKEN(sym_number); + if (lookahead == '_') ADVANCE(359); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(613); + END_STATE(); + case 614: + ACCEPT_TOKEN(sym_number); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(353); + if (lookahead == '_') ADVANCE(357); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(614); + END_STATE(); + case 615: + ACCEPT_TOKEN(sym_number); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(353); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(614); + END_STATE(); + case 616: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '$') ADVANCE(937); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(651); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(787); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'g') ADVANCE(793); + if (lookahead == 'i') ADVANCE(802); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(652); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(726); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(674); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(616); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_identifier_character_set_4(lookahead)) ADVANCE(945); + END_STATE(); + case 617: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(692); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(812); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(617); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 618: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(692); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(812); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(618); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 619: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(813); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(652); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(619); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 620: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(812); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(620); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 621: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(696); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(812); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 622: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(622); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 623: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(816); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(791); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(813); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(623); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 624: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(816); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(791); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(803); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(624); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 625: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(697); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(844); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'n') ADVANCE(725); + if (lookahead == 'o') ADVANCE(702); + if (lookahead == 'r') ADVANCE(750); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(625); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 626: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(697); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(844); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'n') ADVANCE(725); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 'r') ADVANCE(750); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(626); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 627: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(697); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(844); + if (lookahead == 'i') ADVANCE(808); + if (lookahead == 'n') ADVANCE(725); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 'r') ADVANCE(750); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(627); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 628: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(700); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(844); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'n') ADVANCE(725); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 'r') ADVANCE(750); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(628); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 629: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(700); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(844); + if (lookahead == 'n') ADVANCE(725); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 'r') ADVANCE(750); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(629); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 630: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(651); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(630); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 631: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(651); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(631); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 632: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(692); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(632); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 633: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(692); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 634: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(692); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(634); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 635: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(692); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(635); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 636: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(652); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(636); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 637: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(637); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 638: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(638); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 639: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 640: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(640); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 641: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(641); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 642: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(690); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(642); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 643: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(698); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(690); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'i') ADVANCE(814); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 'w') ADVANCE(769); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(643); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 644: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(817); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(644); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 645: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(817); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(645); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 646: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(818); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(678); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(646); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 647: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(818); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(791); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 'w') ADVANCE(772); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(647); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 648: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(818); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(791); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(648); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 649: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(818); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(791); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(928); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(649); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 650: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '0') ADVANCE(600); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(699); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(650); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 651: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(890); + if (lookahead == 'l') ADVANCE(675); + if (lookahead == 'o') ADVANCE(838); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 652: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(810); + if (lookahead == 'e') ADVANCE(924); + if (lookahead == 'u') ADVANCE(806); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 653: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(810); + if (lookahead == 'e') ADVANCE(926); + if (lookahead == 'u') ADVANCE(806); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 654: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(810); + if (lookahead == 'u') ADVANCE(806); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 655: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(691); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(655); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 656: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'c') ADVANCE(691); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(656); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 657: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(657); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 658: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(658); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 659: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(659); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 660: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(771); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(660); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 661: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(661); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 662: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 663: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 664: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(819); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 665: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(909); + if (lookahead == 't') ADVANCE(872); + if (lookahead == 'y') ADVANCE(807); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 666: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(909); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 667: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(722); + if (lookahead == 'q') ADVANCE(919); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 668: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(722); + if (lookahead == 'q') ADVANCE(922); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 669: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(722); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 670: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(817); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(821); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 671: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(817); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(723); + if (lookahead == 'e') ADVANCE(788); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(654); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 'v') ADVANCE(679); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 672: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(817); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 673: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(817); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'd') ADVANCE(744); + if (lookahead == 'e') ADVANCE(929); + if (lookahead == 'f') ADVANCE(870); + if (lookahead == 'i') ADVANCE(808); + if (lookahead == 'l') ADVANCE(724); + if (lookahead == 'm') ADVANCE(839); + if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'o') ADVANCE(701); + if (lookahead == 'p') ADVANCE(873); + if (lookahead == 'r') ADVANCE(759); + if (lookahead == 's') ADVANCE(665); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 674: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(865); + if (lookahead == 'y') ADVANCE(858); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 675: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(892); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 676: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(776); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 677: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(795); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 678: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(866); + if (lookahead == 'o') ADVANCE(773); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 679: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(866); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 680: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(918); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 681: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(785); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 682: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(878); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 683: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(834); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 684: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(887); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 'o') ADVANCE(760); + if (lookahead == 's') ADVANCE(666); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(684); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 685: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(887); + if (lookahead == 'i') ADVANCE(828); + if (lookahead == 's') ADVANCE(666); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 686: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(887); + if (lookahead == 'i') ADVANCE(808); + if (lookahead == 's') ADVANCE(666); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(686); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 687: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(887); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 688: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(825); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 689: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(820); + if (lookahead == 'b') ADVANCE(845); + if (lookahead == 'n') ADVANCE(737); + if (lookahead == 'o') ADVANCE(703); + if (lookahead == 's') ADVANCE(907); + if (lookahead == 'u') ADVANCE(824); + if (lookahead == 'v') ADVANCE(840); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(689); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 690: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(896); + if (lookahead == 'l') ADVANCE(675); + if (lookahead == 'o') ADVANCE(838); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 691: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(896); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 692: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(891); + if (lookahead == 'l') ADVANCE(675); + if (lookahead == 'o') ADVANCE(838); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 693: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(713); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 694: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(715); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 695: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'a') ADVANCE(716); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 696: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'b') ADVANCE(893); + if (lookahead == 'n') ADVANCE(931); + if (lookahead == 's') ADVANCE(398); + if (lookahead == 'w') ADVANCE(676); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 697: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'b') ADVANCE(893); + if (lookahead == 'n') ADVANCE(931); + if (lookahead == 's') ADVANCE(399); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 698: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'b') ADVANCE(893); + if (lookahead == 'n') ADVANCE(931); + if (lookahead == 's') ADVANCE(936); + if (lookahead == 'w') ADVANCE(676); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 699: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'b') ADVANCE(893); + if (lookahead == 'n') ADVANCE(931); + if (lookahead == 's') ADVANCE(936); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 700: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'b') ADVANCE(893); + if (lookahead == 'n') ADVANCE(931); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 701: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'b') ADVANCE(784); + if (lookahead == 'f') ADVANCE(435); + if (lookahead == 'n') ADVANCE(976); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 702: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'b') ADVANCE(784); + if (lookahead == 'f') ADVANCE(435); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 703: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'b') ADVANCE(784); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 704: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'b') ADVANCE(681); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 705: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'b') ADVANCE(849); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 706: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'b') ADVANCE(749); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 707: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'c') ADVANCE(466); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 708: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'c') ADVANCE(768); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 709: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'c') ADVANCE(794); + if (lookahead == 'f') ADVANCE(680); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 710: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'c') ADVANCE(794); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 711: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'c') ADVANCE(903); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 712: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'c') ADVANCE(844); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 713: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'c') ADVANCE(906); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 714: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'c') ADVANCE(751); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 715: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'c') ADVANCE(735); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 716: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'c') ADVANCE(736); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 717: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'c') ADVANCE(915); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 718: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'd') ADVANCE(543); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 719: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'd') ADVANCE(978); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 720: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'd') ADVANCE(921); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 721: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'd') ADVANCE(884); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 722: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'd') ADVANCE(850); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 723: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(709); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 724: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(897); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 725: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(924); + if (lookahead == 'u') ADVANCE(806); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 726: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(667); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 727: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(442); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 728: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(423); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 729: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(392); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 730: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(438); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 731: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(960); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 732: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(1004); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 733: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(958); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 734: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(985); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 735: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(995); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 736: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(403); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 737: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(925); + if (lookahead == 'u') ADVANCE(806); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 738: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(986); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 739: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(930); + if (lookahead == 'i') ADVANCE(809); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(739); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 740: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(930); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(740); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 741: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(711); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 742: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(889); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 743: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(719); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 744: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(710); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 745: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(867); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 746: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(833); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 747: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(868); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 748: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(885); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 749: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(869); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 750: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(669); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 751: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(846); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 752: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(904); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 753: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(837); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 754: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(822); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 755: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(811); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 756: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(864); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 757: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(688); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 758: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(877); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 759: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'e') ADVANCE(668); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 760: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'f') ADVANCE(435); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 761: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'f') ADVANCE(539); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 762: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'f') ADVANCE(778); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 763: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'f') ADVANCE(694); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 764: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'f') ADVANCE(871); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(764); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 765: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'g') ADVANCE(968); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 766: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'g') ADVANCE(752); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 767: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'h') ADVANCE(413); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 768: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'h') ADVANCE(444); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 769: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'h') ADVANCE(779); + if (lookahead == 'i') ADVANCE(898); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 770: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(863); + if (lookahead == 'k') ADVANCE(836); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 771: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(832); + if (lookahead == 'r') ADVANCE(847); + if (lookahead == 'u') ADVANCE(829); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 772: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(898); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 773: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(718); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 774: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(815); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(774); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 775: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(888); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 776: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(899); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 777: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(830); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 778: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(748); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 779: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(800); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 780: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(851); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 781: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(879); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 782: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(880); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 783: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'i') ADVANCE(882); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 784: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'j') ADVANCE(741); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 785: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(993); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 786: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(970); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 787: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(894); + if (lookahead == 'n') ADVANCE(917); + if (lookahead == 'x') ADVANCE(856); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 788: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(894); + if (lookahead == 'n') ADVANCE(917); + if (lookahead == 'x') ADVANCE(857); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 789: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(932); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 790: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(675); + if (lookahead == 'o') ADVANCE(838); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 791: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(675); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 792: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(934); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 793: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(841); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 794: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(682); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 795: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(789); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 796: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(757); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 797: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(755); + if (lookahead == 'o') ADVANCE(876); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 798: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(755); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 799: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(905); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 800: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(730); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 801: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'l') ADVANCE(731); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 802: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'm') ADVANCE(855); + if (lookahead == 'n') ADVANCE(429); + if (lookahead == 's') ADVANCE(1002); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 803: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'm') ADVANCE(855); + if (lookahead == 'n') ADVANCE(430); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 804: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'm') ADVANCE(997); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 805: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'm') ADVANCE(411); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 806: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'm') ADVANCE(706); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 807: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'm') ADVANCE(705); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 808: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'm') ADVANCE(861); + if (lookahead == 'n') ADVANCE(430); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 809: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'm') ADVANCE(861); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 810: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'm') ADVANCE(742); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 811: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'm') ADVANCE(753); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 812: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'm') ADVANCE(860); + if (lookahead == 'n') ADVANCE(429); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 813: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'm') ADVANCE(860); + if (lookahead == 'n') ADVANCE(430); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 814: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'm') ADVANCE(860); + if (lookahead == 'n') ADVANCE(913); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 815: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'm') ADVANCE(860); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 816: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(931); + if (lookahead == 's') ADVANCE(398); + if (lookahead == 'w') ADVANCE(676); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 817: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(931); + if (lookahead == 's') ADVANCE(398); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 818: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(931); + if (lookahead == 's') ADVANCE(936); + if (lookahead == 'w') ADVANCE(676); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 819: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(931); + if (lookahead == 's') ADVANCE(936); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 820: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(931); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 821: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(917); + if (lookahead == 'x') ADVANCE(857); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 822: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(917); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 823: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(976); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 824: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(770); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 825: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(966); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 826: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(1006); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 827: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(468); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 828: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(430); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 829: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(717); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 830: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(765); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 831: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(707); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 832: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(677); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 833: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(721); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 834: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(714); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 835: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(792); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 836: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(842); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 837: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(916); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 838: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'n') ADVANCE(895); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 839: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(720); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 840: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(773); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 841: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(704); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 842: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(927); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 843: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(796); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 844: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(838); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 845: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(843); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 846: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(761); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 847: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(805); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 848: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(875); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 849: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(786); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 850: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(835); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 851: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(827); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 852: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(823); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(852); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 853: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(859); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 854: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'o') ADVANCE(876); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 855: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'p') ADVANCE(797); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 856: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'p') ADVANCE(848); + if (lookahead == 't') ADVANCE(746); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 857: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'p') ADVANCE(848); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 858: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'p') ADVANCE(729); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 859: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'p') ADVANCE(758); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 860: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'p') ADVANCE(854); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 861: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'p') ADVANCE(798); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 862: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'p') ADVANCE(695); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 863: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'q') ADVANCE(920); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 864: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'q') ADVANCE(923); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 865: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(766); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 866: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(415); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 867: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(763); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 868: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(1008); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 869: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(964); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 870: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(847); + if (lookahead == 'u') ADVANCE(829); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 871: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(847); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 872: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(777); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 873: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(853); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 874: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(693); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 875: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(901); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 876: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(902); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 877: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(908); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 878: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(733); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 879: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(734); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 880: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(743); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 881: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(756); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 882: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'r') ADVANCE(738); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 883: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(464); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 884: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(988); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 885: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(982); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 886: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(990); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 887: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(399); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 888: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(762); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 889: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(862); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 890: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(727); + if (lookahead == 't') ADVANCE(708); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 891: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(727); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 892: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(883); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 893: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(910); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 894: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(728); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 895: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 's') ADVANCE(900); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 896: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(708); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 897: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(417); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 898: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(767); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 899: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(427); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 900: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(419); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 901: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(385); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 902: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(409); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 903: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(972); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 904: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(949); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 905: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(390); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 906: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(980); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 907: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(872); + if (lookahead == 'y') ADVANCE(807); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 908: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(933); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 909: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(775); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 910: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(874); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 911: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(935); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(911); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 912: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(746); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 913: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(745); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 914: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(683); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 915: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(780); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 916: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 't') ADVANCE(886); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 917: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'u') ADVANCE(804); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 918: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'u') ADVANCE(799); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 919: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'u') ADVANCE(781); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 920: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'u') ADVANCE(732); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 921: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'u') ADVANCE(801); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 922: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'u') ADVANCE(782); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 923: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'u') ADVANCE(783); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 924: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'v') ADVANCE(747); + if (lookahead == 'w') ADVANCE(472); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 925: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'v') ADVANCE(747); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 926: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'w') ADVANCE(472); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 927: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'w') ADVANCE(826); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 928: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'x') ADVANCE(856); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 929: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'x') ADVANCE(857); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 930: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'x') ADVANCE(912); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 931: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'y') ADVANCE(962); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 932: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'y') ADVANCE(446); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 933: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'y') ADVANCE(974); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 934: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'y') ADVANCE(952); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 935: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'y') ADVANCE(858); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 936: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'y') ADVANCE(831); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 937: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '{') ADVANCE(566); + if (!sym_identifier_character_set_5(lookahead)) ADVANCE(945); + END_STATE(); + case 938: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '0' || + lookahead == '1') ADVANCE(603); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 939: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(939); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 940: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(604); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 941: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 942: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(606); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 943: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(607); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 944: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(605); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 945: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 946: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '+' || + lookahead == '-') ADVANCE(359); + if (lookahead == '\\') ADVANCE(330); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(607); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 947: + ACCEPT_TOKEN(sym_private_property_identifier); + if (lookahead == '\\') ADVANCE(328); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(947); + END_STATE(); + case 948: + ACCEPT_TOKEN(anon_sym_target); + END_STATE(); + case 949: + ACCEPT_TOKEN(anon_sym_target); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 950: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 951: + ACCEPT_TOKEN(anon_sym_readonly); + END_STATE(); + case 952: + ACCEPT_TOKEN(anon_sym_readonly); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 953: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 954: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(470); + END_STATE(); + case 955: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(470); + if (lookahead == '?') ADVANCE(537); + END_STATE(); + case 956: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(470); + if (lookahead == '?') ADVANCE(536); + END_STATE(); + case 957: + ACCEPT_TOKEN(anon_sym_declare); + END_STATE(); + case 958: + ACCEPT_TOKEN(anon_sym_declare); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 959: + ACCEPT_TOKEN(anon_sym_module); + END_STATE(); + case 960: + ACCEPT_TOKEN(anon_sym_module); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 961: + ACCEPT_TOKEN(anon_sym_any); + END_STATE(); + case 962: + ACCEPT_TOKEN(anon_sym_any); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 963: + ACCEPT_TOKEN(anon_sym_number); + END_STATE(); + case 964: + ACCEPT_TOKEN(anon_sym_number); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 965: + ACCEPT_TOKEN(anon_sym_boolean); + END_STATE(); + case 966: + ACCEPT_TOKEN(anon_sym_boolean); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 967: + ACCEPT_TOKEN(anon_sym_string); + END_STATE(); + case 968: + ACCEPT_TOKEN(anon_sym_string); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 969: + ACCEPT_TOKEN(anon_sym_symbol); + END_STATE(); + case 970: + ACCEPT_TOKEN(anon_sym_symbol); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 971: + ACCEPT_TOKEN(anon_sym_object); + END_STATE(); + case 972: + ACCEPT_TOKEN(anon_sym_object); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 973: + ACCEPT_TOKEN(anon_sym_property); + END_STATE(); + case 974: + ACCEPT_TOKEN(anon_sym_property); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 975: + ACCEPT_TOKEN(anon_sym_on); + END_STATE(); + case 976: + ACCEPT_TOKEN(anon_sym_on); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 977: + ACCEPT_TOKEN(anon_sym_required); + END_STATE(); + case 978: + ACCEPT_TOKEN(anon_sym_required); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 979: + ACCEPT_TOKEN(anon_sym_abstract); + END_STATE(); + case 980: + ACCEPT_TOKEN(anon_sym_abstract); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 981: + ACCEPT_TOKEN(anon_sym_satisfies); + END_STATE(); + case 982: + ACCEPT_TOKEN(anon_sym_satisfies); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 983: + ACCEPT_TOKEN(anon_sym_satisfies); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); + END_STATE(); + case 984: + ACCEPT_TOKEN(anon_sym_require); + END_STATE(); + case 985: + ACCEPT_TOKEN(anon_sym_require); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == 'd') ADVANCE(978); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 986: + ACCEPT_TOKEN(anon_sym_require); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 987: + ACCEPT_TOKEN(anon_sym_extends); + END_STATE(); + case 988: + ACCEPT_TOKEN(anon_sym_extends); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 989: + ACCEPT_TOKEN(anon_sym_implements); + END_STATE(); + case 990: + ACCEPT_TOKEN(anon_sym_implements); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 991: + ACCEPT_TOKEN(anon_sym_implements); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(597); + END_STATE(); + case 992: + ACCEPT_TOKEN(anon_sym_global); + END_STATE(); + case 993: + ACCEPT_TOKEN(anon_sym_global); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 994: + ACCEPT_TOKEN(anon_sym_interface); + END_STATE(); + case 995: + ACCEPT_TOKEN(anon_sym_interface); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 996: + ACCEPT_TOKEN(anon_sym_enum); + END_STATE(); + case 997: + ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 998: + ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); + END_STATE(); + case 999: + ACCEPT_TOKEN(anon_sym_PLUS_QMARK_COLON); + END_STATE(); + case 1000: + ACCEPT_TOKEN(anon_sym_QMARK_COLON); + END_STATE(); + case 1001: + ACCEPT_TOKEN(anon_sym_is); + END_STATE(); + case 1002: + ACCEPT_TOKEN(anon_sym_is); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 1003: + ACCEPT_TOKEN(anon_sym_unique); + END_STATE(); + case 1004: + ACCEPT_TOKEN(anon_sym_unique); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 1005: + ACCEPT_TOKEN(anon_sym_unknown); + END_STATE(); + case 1006: + ACCEPT_TOKEN(anon_sym_unknown); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 1007: + ACCEPT_TOKEN(anon_sym_never); + END_STATE(); + case 1008: + ACCEPT_TOKEN(anon_sym_never); + if (lookahead == '\\') ADVANCE(330); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + END_STATE(); + case 1009: + ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); + END_STATE(); + case 1010: + ACCEPT_TOKEN(anon_sym_PIPE_RBRACE); + END_STATE(); + case 1011: + ACCEPT_TOKEN(aux_sym_ui_version_specifier_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1011); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == 'a') ADVANCE(1); + if (lookahead == 'b') ADVANCE(2); + if (lookahead == 'c') ADVANCE(3); + if (lookahead == 'd') ADVANCE(4); + if (lookahead == 'f') ADVANCE(5); + if (lookahead == 'g') ADVANCE(6); + if (lookahead == 'i') ADVANCE(7); + if (lookahead == 'k') ADVANCE(8); + if (lookahead == 'l') ADVANCE(9); + if (lookahead == 'n') ADVANCE(10); + if (lookahead == 'o') ADVANCE(11); + if (lookahead == 'p') ADVANCE(12); + if (lookahead == 'r') ADVANCE(13); + if (lookahead == 's') ADVANCE(14); + if (lookahead == 't') ADVANCE(15); + if (lookahead == 'u') ADVANCE(16); + if (lookahead == 'y') ADVANCE(17); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 160 || + lookahead == 5760 || + (8192 <= lookahead && lookahead <= 8203) || + lookahead == 8232 || + lookahead == 8233 || + lookahead == 8239 || + lookahead == 8287 || + lookahead == 8288 || + lookahead == 12288 || + lookahead == 65279) SKIP(0) + END_STATE(); + case 1: + if (lookahead == 's') ADVANCE(18); + END_STATE(); + case 2: + if (lookahead == 'r') ADVANCE(19); + END_STATE(); + case 3: + if (lookahead == 'o') ADVANCE(20); + END_STATE(); + case 4: + if (lookahead == 'e') ADVANCE(21); + if (lookahead == 'o') ADVANCE(22); + END_STATE(); + case 5: + if (lookahead == 'a') ADVANCE(23); + if (lookahead == 'o') ADVANCE(24); + END_STATE(); + case 6: + if (lookahead == 'e') ADVANCE(25); + END_STATE(); + case 7: + if (lookahead == 'f') ADVANCE(26); + if (lookahead == 'n') ADVANCE(27); + END_STATE(); + case 8: + if (lookahead == 'e') ADVANCE(28); + END_STATE(); + case 9: + if (lookahead == 'i') ADVANCE(29); + END_STATE(); + case 10: + if (lookahead == 'u') ADVANCE(30); + END_STATE(); + case 11: + if (lookahead == 'v') ADVANCE(31); + END_STATE(); + case 12: + if (lookahead == 'r') ADVANCE(32); + if (lookahead == 'u') ADVANCE(33); + END_STATE(); + case 13: + if (lookahead == 'e') ADVANCE(34); + END_STATE(); + case 14: + if (lookahead == 'e') ADVANCE(35); + if (lookahead == 'i') ADVANCE(36); + if (lookahead == 't') ADVANCE(37); + if (lookahead == 'u') ADVANCE(38); + if (lookahead == 'w') ADVANCE(39); + END_STATE(); + case 15: + if (lookahead == 'h') ADVANCE(40); + if (lookahead == 'r') ADVANCE(41); + if (lookahead == 'y') ADVANCE(42); + END_STATE(); + case 16: + if (lookahead == 'n') ADVANCE(43); + if (lookahead == 's') ADVANCE(44); + END_STATE(); + case 17: + if (lookahead == 'i') ADVANCE(45); + END_STATE(); + case 18: + if (lookahead == 's') ADVANCE(46); + END_STATE(); + case 19: + if (lookahead == 'e') ADVANCE(47); + END_STATE(); + case 20: + if (lookahead == 'm') ADVANCE(48); + if (lookahead == 'n') ADVANCE(49); + END_STATE(); + case 21: + if (lookahead == 'b') ADVANCE(50); + if (lookahead == 'l') ADVANCE(51); + END_STATE(); + case 22: + ACCEPT_TOKEN(anon_sym_do); + END_STATE(); + case 23: + if (lookahead == 'l') ADVANCE(52); + END_STATE(); + case 24: + if (lookahead == 'r') ADVANCE(53); + END_STATE(); + case 25: + if (lookahead == 't') ADVANCE(54); + END_STATE(); + case 26: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 27: + if (lookahead == 'f') ADVANCE(55); + END_STATE(); + case 28: + if (lookahead == 'y') ADVANCE(56); + END_STATE(); + case 29: + if (lookahead == 's') ADVANCE(57); + END_STATE(); + case 30: + if (lookahead == 'l') ADVANCE(58); + END_STATE(); + case 31: + if (lookahead == 'e') ADVANCE(59); + END_STATE(); + case 32: + if (lookahead == 'a') ADVANCE(60); + if (lookahead == 'i') ADVANCE(61); + if (lookahead == 'o') ADVANCE(62); + END_STATE(); + case 33: + if (lookahead == 'b') ADVANCE(63); + END_STATE(); + case 34: + if (lookahead == 't') ADVANCE(64); + END_STATE(); + case 35: + if (lookahead == 't') ADVANCE(65); + END_STATE(); + case 36: + if (lookahead == 'g') ADVANCE(66); + END_STATE(); + case 37: + if (lookahead == 'a') ADVANCE(67); + END_STATE(); + case 38: + if (lookahead == 'p') ADVANCE(68); + END_STATE(); + case 39: + if (lookahead == 'i') ADVANCE(69); + END_STATE(); + case 40: + if (lookahead == 'i') ADVANCE(70); + if (lookahead == 'r') ADVANCE(71); + END_STATE(); + case 41: + if (lookahead == 'u') ADVANCE(72); + if (lookahead == 'y') ADVANCE(73); + END_STATE(); + case 42: + if (lookahead == 'p') ADVANCE(74); + END_STATE(); + case 43: + if (lookahead == 'd') ADVANCE(75); + END_STATE(); + case 44: + if (lookahead == 'i') ADVANCE(76); + END_STATE(); + case 45: + if (lookahead == 'e') ADVANCE(77); + END_STATE(); + case 46: + if (lookahead == 'e') ADVANCE(78); + END_STATE(); + case 47: + if (lookahead == 'a') ADVANCE(79); + END_STATE(); + case 48: + if (lookahead == 'p') ADVANCE(80); + END_STATE(); + case 49: + if (lookahead == 't') ADVANCE(81); + END_STATE(); + case 50: + if (lookahead == 'u') ADVANCE(82); + END_STATE(); + case 51: + if (lookahead == 'e') ADVANCE(83); + END_STATE(); + case 52: + if (lookahead == 's') ADVANCE(84); + END_STATE(); + case 53: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 54: + ACCEPT_TOKEN(anon_sym_get); + END_STATE(); + case 55: + if (lookahead == 'e') ADVANCE(85); + END_STATE(); + case 56: + if (lookahead == 'o') ADVANCE(86); + END_STATE(); + case 57: + if (lookahead == 't') ADVANCE(87); + END_STATE(); + case 58: + if (lookahead == 'l') ADVANCE(88); + END_STATE(); + case 59: + if (lookahead == 'r') ADVANCE(89); + END_STATE(); + case 60: + if (lookahead == 'g') ADVANCE(90); + END_STATE(); + case 61: + if (lookahead == 'v') ADVANCE(91); + END_STATE(); + case 62: + if (lookahead == 't') ADVANCE(92); + END_STATE(); + case 63: + if (lookahead == 'l') ADVANCE(93); + END_STATE(); + case 64: + if (lookahead == 'u') ADVANCE(94); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_set); + END_STATE(); + case 66: + if (lookahead == 'n') ADVANCE(95); + END_STATE(); + case 67: + if (lookahead == 't') ADVANCE(96); + END_STATE(); + case 68: + if (lookahead == 'e') ADVANCE(97); + END_STATE(); + case 69: + if (lookahead == 't') ADVANCE(98); + END_STATE(); + case 70: + if (lookahead == 's') ADVANCE(99); + END_STATE(); + case 71: + if (lookahead == 'o') ADVANCE(100); + END_STATE(); + case 72: + if (lookahead == 'e') ADVANCE(101); + END_STATE(); + case 73: + ACCEPT_TOKEN(anon_sym_try); + END_STATE(); + case 74: + if (lookahead == 'e') ADVANCE(102); + END_STATE(); + case 75: + if (lookahead == 'e') ADVANCE(103); + END_STATE(); + case 76: + if (lookahead == 'n') ADVANCE(104); + END_STATE(); + case 77: + if (lookahead == 'l') ADVANCE(105); + END_STATE(); + case 78: + if (lookahead == 'r') ADVANCE(106); + END_STATE(); + case 79: + if (lookahead == 'k') ADVANCE(107); + END_STATE(); + case 80: + if (lookahead == 'o') ADVANCE(108); + END_STATE(); + case 81: + if (lookahead == 'i') ADVANCE(109); + END_STATE(); + case 82: + if (lookahead == 'g') ADVANCE(110); + END_STATE(); + case 83: + if (lookahead == 't') ADVANCE(111); + END_STATE(); + case 84: + if (lookahead == 'e') ADVANCE(112); + END_STATE(); + case 85: + if (lookahead == 'r') ADVANCE(113); + END_STATE(); + case 86: + if (lookahead == 'f') ADVANCE(114); + END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_list); + END_STATE(); + case 88: + ACCEPT_TOKEN(sym_null); + END_STATE(); + case 89: + if (lookahead == 'r') ADVANCE(115); + END_STATE(); + case 90: + if (lookahead == 'm') ADVANCE(116); + END_STATE(); + case 91: + if (lookahead == 'a') ADVANCE(117); + END_STATE(); + case 92: + if (lookahead == 'e') ADVANCE(118); + END_STATE(); + case 93: + if (lookahead == 'i') ADVANCE(119); + END_STATE(); + case 94: + if (lookahead == 'r') ADVANCE(120); + END_STATE(); + case 95: + if (lookahead == 'a') ADVANCE(121); + END_STATE(); + case 96: + if (lookahead == 'i') ADVANCE(122); + END_STATE(); + case 97: + if (lookahead == 'r') ADVANCE(123); + END_STATE(); + case 98: + if (lookahead == 'c') ADVANCE(124); + END_STATE(); + case 99: + ACCEPT_TOKEN(sym_this); + END_STATE(); + case 100: + if (lookahead == 'w') ADVANCE(125); + END_STATE(); + case 101: + ACCEPT_TOKEN(sym_true); + END_STATE(); + case 102: + if (lookahead == 'o') ADVANCE(126); + END_STATE(); + case 103: + if (lookahead == 'f') ADVANCE(127); + END_STATE(); + case 104: + if (lookahead == 'g') ADVANCE(128); + END_STATE(); + case 105: + if (lookahead == 'd') ADVANCE(129); + END_STATE(); + case 106: + if (lookahead == 't') ADVANCE(130); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 108: + if (lookahead == 'n') ADVANCE(131); + END_STATE(); + case 109: + if (lookahead == 'n') ADVANCE(132); + END_STATE(); + case 110: + if (lookahead == 'g') ADVANCE(133); + END_STATE(); + case 111: + if (lookahead == 'e') ADVANCE(134); + END_STATE(); + case 112: + ACCEPT_TOKEN(sym_false); + END_STATE(); + case 113: + ACCEPT_TOKEN(anon_sym_infer); + END_STATE(); + case 114: + ACCEPT_TOKEN(anon_sym_keyof); + END_STATE(); + case 115: + if (lookahead == 'i') ADVANCE(135); + END_STATE(); + case 116: + if (lookahead == 'a') ADVANCE(136); + END_STATE(); + case 117: + if (lookahead == 't') ADVANCE(137); + END_STATE(); + case 118: + if (lookahead == 'c') ADVANCE(138); + END_STATE(); + case 119: + if (lookahead == 'c') ADVANCE(139); + END_STATE(); + case 120: + if (lookahead == 'n') ADVANCE(140); + END_STATE(); + case 121: + if (lookahead == 'l') ADVANCE(141); + END_STATE(); + case 122: + if (lookahead == 'c') ADVANCE(142); + END_STATE(); + case 123: + ACCEPT_TOKEN(sym_super); + END_STATE(); + case 124: + if (lookahead == 'h') ADVANCE(143); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_throw); + END_STATE(); + case 126: + if (lookahead == 'f') ADVANCE(144); + END_STATE(); + case 127: + if (lookahead == 'i') ADVANCE(145); + END_STATE(); + case 128: + ACCEPT_TOKEN(anon_sym_using); + END_STATE(); + case 129: + ACCEPT_TOKEN(anon_sym_yield); + END_STATE(); + case 130: + if (lookahead == 's') ADVANCE(146); + END_STATE(); + case 131: + if (lookahead == 'e') ADVANCE(147); + END_STATE(); + case 132: + if (lookahead == 'u') ADVANCE(148); + END_STATE(); + case 133: + if (lookahead == 'e') ADVANCE(149); + END_STATE(); + case 134: + ACCEPT_TOKEN(anon_sym_delete); + END_STATE(); + case 135: + if (lookahead == 'd') ADVANCE(150); + END_STATE(); + case 136: + ACCEPT_TOKEN(anon_sym_pragma); + END_STATE(); + case 137: + if (lookahead == 'e') ADVANCE(151); + END_STATE(); + case 138: + if (lookahead == 't') ADVANCE(152); + END_STATE(); + case 139: + ACCEPT_TOKEN(anon_sym_public); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 141: + ACCEPT_TOKEN(anon_sym_signal); + END_STATE(); + case 142: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 143: + ACCEPT_TOKEN(anon_sym_switch); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_typeof); + END_STATE(); + case 145: + if (lookahead == 'n') ADVANCE(153); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_asserts); + END_STATE(); + case 147: + if (lookahead == 'n') ADVANCE(154); + END_STATE(); + case 148: + if (lookahead == 'e') ADVANCE(155); + END_STATE(); + case 149: + if (lookahead == 'r') ADVANCE(156); + END_STATE(); + case 150: + if (lookahead == 'e') ADVANCE(157); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_private); + END_STATE(); + case 152: + if (lookahead == 'e') ADVANCE(158); + END_STATE(); + case 153: + if (lookahead == 'e') ADVANCE(159); + END_STATE(); + case 154: + if (lookahead == 't') ADVANCE(160); + END_STATE(); + case 155: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 156: + ACCEPT_TOKEN(anon_sym_debugger); + END_STATE(); + case 157: + ACCEPT_TOKEN(anon_sym_override); + END_STATE(); + case 158: + if (lookahead == 'd') ADVANCE(161); + END_STATE(); + case 159: + if (lookahead == 'd') ADVANCE(162); + END_STATE(); + case 160: + ACCEPT_TOKEN(anon_sym_component); + END_STATE(); + case 161: + ACCEPT_TOKEN(anon_sym_protected); + END_STATE(); + case 162: + ACCEPT_TOKEN(sym_undefined); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 66, .external_lex_state = 2}, + [2] = {.lex_state = 4, .external_lex_state = 3}, + [3] = {.lex_state = 4, .external_lex_state = 3}, + [4] = {.lex_state = 37, .external_lex_state = 2}, + [5] = {.lex_state = 37, .external_lex_state = 2}, + [6] = {.lex_state = 37, .external_lex_state = 2}, + [7] = {.lex_state = 37, .external_lex_state = 2}, + [8] = {.lex_state = 37, .external_lex_state = 2}, + [9] = {.lex_state = 37, .external_lex_state = 2}, + [10] = {.lex_state = 37, .external_lex_state = 2}, + [11] = {.lex_state = 37, .external_lex_state = 2}, + [12] = {.lex_state = 37, .external_lex_state = 2}, + [13] = {.lex_state = 37, .external_lex_state = 2}, + [14] = {.lex_state = 37, .external_lex_state = 2}, + [15] = {.lex_state = 40, .external_lex_state = 2}, + [16] = {.lex_state = 40, .external_lex_state = 2}, + [17] = {.lex_state = 40, .external_lex_state = 2}, + [18] = {.lex_state = 40, .external_lex_state = 2}, + [19] = {.lex_state = 40, .external_lex_state = 2}, + [20] = {.lex_state = 37, .external_lex_state = 2}, + [21] = {.lex_state = 37, .external_lex_state = 2}, + [22] = {.lex_state = 37, .external_lex_state = 2}, + [23] = {.lex_state = 37, .external_lex_state = 2}, + [24] = {.lex_state = 37, .external_lex_state = 2}, + [25] = {.lex_state = 37, .external_lex_state = 2}, + [26] = {.lex_state = 37, .external_lex_state = 2}, + [27] = {.lex_state = 37, .external_lex_state = 2}, + [28] = {.lex_state = 37, .external_lex_state = 2}, + [29] = {.lex_state = 37, .external_lex_state = 2}, + [30] = {.lex_state = 37, .external_lex_state = 2}, + [31] = {.lex_state = 37, .external_lex_state = 2}, + [32] = {.lex_state = 37, .external_lex_state = 2}, + [33] = {.lex_state = 37, .external_lex_state = 2}, + [34] = {.lex_state = 37, .external_lex_state = 2}, + [35] = {.lex_state = 37, .external_lex_state = 2}, + [36] = {.lex_state = 37, .external_lex_state = 2}, + [37] = {.lex_state = 37, .external_lex_state = 2}, + [38] = {.lex_state = 37, .external_lex_state = 2}, + [39] = {.lex_state = 37, .external_lex_state = 2}, + [40] = {.lex_state = 37, .external_lex_state = 2}, + [41] = {.lex_state = 37, .external_lex_state = 2}, + [42] = {.lex_state = 37, .external_lex_state = 2}, + [43] = {.lex_state = 37, .external_lex_state = 2}, + [44] = {.lex_state = 37, .external_lex_state = 2}, + [45] = {.lex_state = 37, .external_lex_state = 2}, + [46] = {.lex_state = 37, .external_lex_state = 2}, + [47] = {.lex_state = 37, .external_lex_state = 2}, + [48] = {.lex_state = 37, .external_lex_state = 2}, + [49] = {.lex_state = 37, .external_lex_state = 2}, + [50] = {.lex_state = 37, .external_lex_state = 2}, + [51] = {.lex_state = 37, .external_lex_state = 2}, + [52] = {.lex_state = 37, .external_lex_state = 2}, + [53] = {.lex_state = 37, .external_lex_state = 2}, + [54] = {.lex_state = 37, .external_lex_state = 2}, + [55] = {.lex_state = 37, .external_lex_state = 2}, + [56] = {.lex_state = 37, .external_lex_state = 2}, + [57] = {.lex_state = 37, .external_lex_state = 2}, + [58] = {.lex_state = 37, .external_lex_state = 2}, + [59] = {.lex_state = 37, .external_lex_state = 2}, + [60] = {.lex_state = 37, .external_lex_state = 2}, + [61] = {.lex_state = 37, .external_lex_state = 2}, + [62] = {.lex_state = 37, .external_lex_state = 2}, + [63] = {.lex_state = 37, .external_lex_state = 2}, + [64] = {.lex_state = 37, .external_lex_state = 2}, + [65] = {.lex_state = 37, .external_lex_state = 2}, + [66] = {.lex_state = 37, .external_lex_state = 2}, + [67] = {.lex_state = 37, .external_lex_state = 2}, + [68] = {.lex_state = 37, .external_lex_state = 2}, + [69] = {.lex_state = 37, .external_lex_state = 2}, + [70] = {.lex_state = 37, .external_lex_state = 2}, + [71] = {.lex_state = 37, .external_lex_state = 2}, + [72] = {.lex_state = 37, .external_lex_state = 2}, + [73] = {.lex_state = 37, .external_lex_state = 2}, + [74] = {.lex_state = 37, .external_lex_state = 2}, + [75] = {.lex_state = 37, .external_lex_state = 2}, + [76] = {.lex_state = 37, .external_lex_state = 2}, + [77] = {.lex_state = 37, .external_lex_state = 2}, + [78] = {.lex_state = 37, .external_lex_state = 2}, + [79] = {.lex_state = 37, .external_lex_state = 2}, + [80] = {.lex_state = 37, .external_lex_state = 2}, + [81] = {.lex_state = 37, .external_lex_state = 2}, + [82] = {.lex_state = 37, .external_lex_state = 2}, + [83] = {.lex_state = 37, .external_lex_state = 2}, + [84] = {.lex_state = 37, .external_lex_state = 2}, + [85] = {.lex_state = 37, .external_lex_state = 2}, + [86] = {.lex_state = 37, .external_lex_state = 2}, + [87] = {.lex_state = 37, .external_lex_state = 2}, + [88] = {.lex_state = 37, .external_lex_state = 2}, + [89] = {.lex_state = 37, .external_lex_state = 2}, + [90] = {.lex_state = 37, .external_lex_state = 2}, + [91] = {.lex_state = 37, .external_lex_state = 2}, + [92] = {.lex_state = 37, .external_lex_state = 2}, + [93] = {.lex_state = 37, .external_lex_state = 2}, + [94] = {.lex_state = 37, .external_lex_state = 2}, + [95] = {.lex_state = 37, .external_lex_state = 2}, + [96] = {.lex_state = 37, .external_lex_state = 2}, + [97] = {.lex_state = 37, .external_lex_state = 2}, + [98] = {.lex_state = 37, .external_lex_state = 2}, + [99] = {.lex_state = 37, .external_lex_state = 2}, + [100] = {.lex_state = 37, .external_lex_state = 2}, + [101] = {.lex_state = 37, .external_lex_state = 2}, + [102] = {.lex_state = 37, .external_lex_state = 2}, + [103] = {.lex_state = 37, .external_lex_state = 2}, + [104] = {.lex_state = 37, .external_lex_state = 2}, + [105] = {.lex_state = 37, .external_lex_state = 2}, + [106] = {.lex_state = 37, .external_lex_state = 2}, + [107] = {.lex_state = 37, .external_lex_state = 2}, + [108] = {.lex_state = 37, .external_lex_state = 2}, + [109] = {.lex_state = 37, .external_lex_state = 2}, + [110] = {.lex_state = 37, .external_lex_state = 2}, + [111] = {.lex_state = 37, .external_lex_state = 2}, + [112] = {.lex_state = 37, .external_lex_state = 2}, + [113] = {.lex_state = 37, .external_lex_state = 2}, + [114] = {.lex_state = 37, .external_lex_state = 2}, + [115] = {.lex_state = 37, .external_lex_state = 2}, + [116] = {.lex_state = 37, .external_lex_state = 2}, + [117] = {.lex_state = 37, .external_lex_state = 2}, + [118] = {.lex_state = 37, .external_lex_state = 2}, + [119] = {.lex_state = 37, .external_lex_state = 2}, + [120] = {.lex_state = 37, .external_lex_state = 2}, + [121] = {.lex_state = 37, .external_lex_state = 2}, + [122] = {.lex_state = 37, .external_lex_state = 2}, + [123] = {.lex_state = 37, .external_lex_state = 2}, + [124] = {.lex_state = 37, .external_lex_state = 2}, + [125] = {.lex_state = 37, .external_lex_state = 2}, + [126] = {.lex_state = 37, .external_lex_state = 2}, + [127] = {.lex_state = 37, .external_lex_state = 2}, + [128] = {.lex_state = 37, .external_lex_state = 2}, + [129] = {.lex_state = 37, .external_lex_state = 2}, + [130] = {.lex_state = 37, .external_lex_state = 2}, + [131] = {.lex_state = 37, .external_lex_state = 2}, + [132] = {.lex_state = 37, .external_lex_state = 2}, + [133] = {.lex_state = 37, .external_lex_state = 2}, + [134] = {.lex_state = 37, .external_lex_state = 2}, + [135] = {.lex_state = 37, .external_lex_state = 2}, + [136] = {.lex_state = 37, .external_lex_state = 2}, + [137] = {.lex_state = 37, .external_lex_state = 2}, + [138] = {.lex_state = 37, .external_lex_state = 2}, + [139] = {.lex_state = 37, .external_lex_state = 2}, + [140] = {.lex_state = 37, .external_lex_state = 2}, + [141] = {.lex_state = 37, .external_lex_state = 2}, + [142] = {.lex_state = 37, .external_lex_state = 2}, + [143] = {.lex_state = 37, .external_lex_state = 2}, + [144] = {.lex_state = 37, .external_lex_state = 2}, + [145] = {.lex_state = 37, .external_lex_state = 2}, + [146] = {.lex_state = 37, .external_lex_state = 2}, + [147] = {.lex_state = 37, .external_lex_state = 2}, + [148] = {.lex_state = 37, .external_lex_state = 2}, + [149] = {.lex_state = 37, .external_lex_state = 2}, + [150] = {.lex_state = 37, .external_lex_state = 2}, + [151] = {.lex_state = 37, .external_lex_state = 2}, + [152] = {.lex_state = 37, .external_lex_state = 2}, + [153] = {.lex_state = 37, .external_lex_state = 2}, + [154] = {.lex_state = 37, .external_lex_state = 2}, + [155] = {.lex_state = 37, .external_lex_state = 2}, + [156] = {.lex_state = 37, .external_lex_state = 2}, + [157] = {.lex_state = 37, .external_lex_state = 2}, + [158] = {.lex_state = 37, .external_lex_state = 2}, + [159] = {.lex_state = 37, .external_lex_state = 2}, + [160] = {.lex_state = 37, .external_lex_state = 2}, + [161] = {.lex_state = 37, .external_lex_state = 2}, + [162] = {.lex_state = 37, .external_lex_state = 2}, + [163] = {.lex_state = 3, .external_lex_state = 4}, + [164] = {.lex_state = 34, .external_lex_state = 2}, + [165] = {.lex_state = 34, .external_lex_state = 2}, + [166] = {.lex_state = 34, .external_lex_state = 2}, + [167] = {.lex_state = 34, .external_lex_state = 2}, + [168] = {.lex_state = 3, .external_lex_state = 4}, + [169] = {.lex_state = 3, .external_lex_state = 4}, + [170] = {.lex_state = 34, .external_lex_state = 2}, + [171] = {.lex_state = 34, .external_lex_state = 2}, + [172] = {.lex_state = 34, .external_lex_state = 2}, + [173] = {.lex_state = 34, .external_lex_state = 2}, + [174] = {.lex_state = 34, .external_lex_state = 2}, + [175] = {.lex_state = 34, .external_lex_state = 2}, + [176] = {.lex_state = 3, .external_lex_state = 4}, + [177] = {.lex_state = 3, .external_lex_state = 3}, + [178] = {.lex_state = 3, .external_lex_state = 3}, + [179] = {.lex_state = 3, .external_lex_state = 3}, + [180] = {.lex_state = 3, .external_lex_state = 3}, + [181] = {.lex_state = 3, .external_lex_state = 3}, + [182] = {.lex_state = 3, .external_lex_state = 3}, + [183] = {.lex_state = 3, .external_lex_state = 3}, + [184] = {.lex_state = 3, .external_lex_state = 3}, + [185] = {.lex_state = 3, .external_lex_state = 3}, + [186] = {.lex_state = 3, .external_lex_state = 3}, + [187] = {.lex_state = 3, .external_lex_state = 3}, + [188] = {.lex_state = 34, .external_lex_state = 2}, + [189] = {.lex_state = 34, .external_lex_state = 2}, + [190] = {.lex_state = 3, .external_lex_state = 3}, + [191] = {.lex_state = 3, .external_lex_state = 3}, + [192] = {.lex_state = 3, .external_lex_state = 3}, + [193] = {.lex_state = 3, .external_lex_state = 3}, + [194] = {.lex_state = 34, .external_lex_state = 2}, + [195] = {.lex_state = 3, .external_lex_state = 4}, + [196] = {.lex_state = 3, .external_lex_state = 4}, + [197] = {.lex_state = 3, .external_lex_state = 4}, + [198] = {.lex_state = 3, .external_lex_state = 4}, + [199] = {.lex_state = 3, .external_lex_state = 4}, + [200] = {.lex_state = 3, .external_lex_state = 4}, + [201] = {.lex_state = 3, .external_lex_state = 4}, + [202] = {.lex_state = 34, .external_lex_state = 2}, + [203] = {.lex_state = 3, .external_lex_state = 4}, + [204] = {.lex_state = 34, .external_lex_state = 2}, + [205] = {.lex_state = 3, .external_lex_state = 4}, + [206] = {.lex_state = 34, .external_lex_state = 2}, + [207] = {.lex_state = 3, .external_lex_state = 4}, + [208] = {.lex_state = 3, .external_lex_state = 3}, + [209] = {.lex_state = 3, .external_lex_state = 4}, + [210] = {.lex_state = 34, .external_lex_state = 2}, + [211] = {.lex_state = 34, .external_lex_state = 2}, + [212] = {.lex_state = 3, .external_lex_state = 3}, + [213] = {.lex_state = 3, .external_lex_state = 3}, + [214] = {.lex_state = 3, .external_lex_state = 4}, + [215] = {.lex_state = 3, .external_lex_state = 4}, + [216] = {.lex_state = 3, .external_lex_state = 4}, + [217] = {.lex_state = 3, .external_lex_state = 3}, + [218] = {.lex_state = 3, .external_lex_state = 4}, + [219] = {.lex_state = 7, .external_lex_state = 3}, + [220] = {.lex_state = 3, .external_lex_state = 3}, + [221] = {.lex_state = 3, .external_lex_state = 3}, + [222] = {.lex_state = 7, .external_lex_state = 3}, + [223] = {.lex_state = 3, .external_lex_state = 3}, + [224] = {.lex_state = 3, .external_lex_state = 4}, + [225] = {.lex_state = 3, .external_lex_state = 4}, + [226] = {.lex_state = 7, .external_lex_state = 3}, + [227] = {.lex_state = 3, .external_lex_state = 3}, + [228] = {.lex_state = 3, .external_lex_state = 4}, + [229] = {.lex_state = 3, .external_lex_state = 3}, + [230] = {.lex_state = 3, .external_lex_state = 3}, + [231] = {.lex_state = 3, .external_lex_state = 3}, + [232] = {.lex_state = 3, .external_lex_state = 3}, + [233] = {.lex_state = 3, .external_lex_state = 3}, + [234] = {.lex_state = 3, .external_lex_state = 3}, + [235] = {.lex_state = 3, .external_lex_state = 3}, + [236] = {.lex_state = 3, .external_lex_state = 3}, + [237] = {.lex_state = 3, .external_lex_state = 3}, + [238] = {.lex_state = 3, .external_lex_state = 3}, + [239] = {.lex_state = 3, .external_lex_state = 3}, + [240] = {.lex_state = 3, .external_lex_state = 3}, + [241] = {.lex_state = 3, .external_lex_state = 3}, + [242] = {.lex_state = 3, .external_lex_state = 3}, + [243] = {.lex_state = 3, .external_lex_state = 3}, + [244] = {.lex_state = 3, .external_lex_state = 3}, + [245] = {.lex_state = 3, .external_lex_state = 3}, + [246] = {.lex_state = 3, .external_lex_state = 3}, + [247] = {.lex_state = 3, .external_lex_state = 3}, + [248] = {.lex_state = 3, .external_lex_state = 3}, + [249] = {.lex_state = 3, .external_lex_state = 3}, + [250] = {.lex_state = 3, .external_lex_state = 3}, + [251] = {.lex_state = 34, .external_lex_state = 2}, + [252] = {.lex_state = 3, .external_lex_state = 3}, + [253] = {.lex_state = 34, .external_lex_state = 2}, + [254] = {.lex_state = 34, .external_lex_state = 2}, + [255] = {.lex_state = 34, .external_lex_state = 2}, + [256] = {.lex_state = 34, .external_lex_state = 2}, + [257] = {.lex_state = 34, .external_lex_state = 2}, + [258] = {.lex_state = 34, .external_lex_state = 2}, + [259] = {.lex_state = 34, .external_lex_state = 2}, + [260] = {.lex_state = 34, .external_lex_state = 2}, + [261] = {.lex_state = 34, .external_lex_state = 2}, + [262] = {.lex_state = 34, .external_lex_state = 2}, + [263] = {.lex_state = 34, .external_lex_state = 2}, + [264] = {.lex_state = 34, .external_lex_state = 2}, + [265] = {.lex_state = 8, .external_lex_state = 3}, + [266] = {.lex_state = 8, .external_lex_state = 4}, + [267] = {.lex_state = 8, .external_lex_state = 4}, + [268] = {.lex_state = 8, .external_lex_state = 4}, + [269] = {.lex_state = 13, .external_lex_state = 3}, + [270] = {.lex_state = 8, .external_lex_state = 3}, + [271] = {.lex_state = 8, .external_lex_state = 3}, + [272] = {.lex_state = 8, .external_lex_state = 3}, + [273] = {.lex_state = 8, .external_lex_state = 3}, + [274] = {.lex_state = 53, .external_lex_state = 2}, + [275] = {.lex_state = 53, .external_lex_state = 2}, + [276] = {.lex_state = 53, .external_lex_state = 2}, + [277] = {.lex_state = 53, .external_lex_state = 2}, + [278] = {.lex_state = 53, .external_lex_state = 2}, + [279] = {.lex_state = 53, .external_lex_state = 2}, + [280] = {.lex_state = 53, .external_lex_state = 2}, + [281] = {.lex_state = 53, .external_lex_state = 2}, + [282] = {.lex_state = 53, .external_lex_state = 2}, + [283] = {.lex_state = 53, .external_lex_state = 2}, + [284] = {.lex_state = 53, .external_lex_state = 2}, + [285] = {.lex_state = 53, .external_lex_state = 2}, + [286] = {.lex_state = 53, .external_lex_state = 2}, + [287] = {.lex_state = 53, .external_lex_state = 2}, + [288] = {.lex_state = 53, .external_lex_state = 2}, + [289] = {.lex_state = 53, .external_lex_state = 2}, + [290] = {.lex_state = 52, .external_lex_state = 2}, + [291] = {.lex_state = 52, .external_lex_state = 2}, + [292] = {.lex_state = 52, .external_lex_state = 2}, + [293] = {.lex_state = 52, .external_lex_state = 2}, + [294] = {.lex_state = 52, .external_lex_state = 2}, + [295] = {.lex_state = 52, .external_lex_state = 2}, + [296] = {.lex_state = 52, .external_lex_state = 2}, + [297] = {.lex_state = 52, .external_lex_state = 2}, + [298] = {.lex_state = 52, .external_lex_state = 2}, + [299] = {.lex_state = 52, .external_lex_state = 2}, + [300] = {.lex_state = 36, .external_lex_state = 2}, + [301] = {.lex_state = 36, .external_lex_state = 2}, + [302] = {.lex_state = 36, .external_lex_state = 2}, + [303] = {.lex_state = 36, .external_lex_state = 2}, + [304] = {.lex_state = 36, .external_lex_state = 2}, + [305] = {.lex_state = 36, .external_lex_state = 2}, + [306] = {.lex_state = 36, .external_lex_state = 2}, + [307] = {.lex_state = 36, .external_lex_state = 2}, + [308] = {.lex_state = 36, .external_lex_state = 2}, + [309] = {.lex_state = 36, .external_lex_state = 2}, + [310] = {.lex_state = 36, .external_lex_state = 2}, + [311] = {.lex_state = 36, .external_lex_state = 2}, + [312] = {.lex_state = 36, .external_lex_state = 2}, + [313] = {.lex_state = 36, .external_lex_state = 2}, + [314] = {.lex_state = 36, .external_lex_state = 2}, + [315] = {.lex_state = 36, .external_lex_state = 2}, + [316] = {.lex_state = 36, .external_lex_state = 2}, + [317] = {.lex_state = 36, .external_lex_state = 2}, + [318] = {.lex_state = 36, .external_lex_state = 2}, + [319] = {.lex_state = 36, .external_lex_state = 2}, + [320] = {.lex_state = 36, .external_lex_state = 2}, + [321] = {.lex_state = 36, .external_lex_state = 2}, + [322] = {.lex_state = 35, .external_lex_state = 2}, + [323] = {.lex_state = 51, .external_lex_state = 2}, + [324] = {.lex_state = 51, .external_lex_state = 2}, + [325] = {.lex_state = 14, .external_lex_state = 3}, + [326] = {.lex_state = 51, .external_lex_state = 2}, + [327] = {.lex_state = 35, .external_lex_state = 5}, + [328] = {.lex_state = 51, .external_lex_state = 2}, + [329] = {.lex_state = 36, .external_lex_state = 2}, + [330] = {.lex_state = 51, .external_lex_state = 2}, + [331] = {.lex_state = 51, .external_lex_state = 2}, + [332] = {.lex_state = 51, .external_lex_state = 2}, + [333] = {.lex_state = 10, .external_lex_state = 4}, + [334] = {.lex_state = 36, .external_lex_state = 2}, + [335] = {.lex_state = 36, .external_lex_state = 2}, + [336] = {.lex_state = 35, .external_lex_state = 2}, + [337] = {.lex_state = 36, .external_lex_state = 2}, + [338] = {.lex_state = 36, .external_lex_state = 2}, + [339] = {.lex_state = 36, .external_lex_state = 2}, + [340] = {.lex_state = 36, .external_lex_state = 2}, + [341] = {.lex_state = 10, .external_lex_state = 4}, + [342] = {.lex_state = 10, .external_lex_state = 4}, + [343] = {.lex_state = 14, .external_lex_state = 4}, + [344] = {.lex_state = 10, .external_lex_state = 4}, + [345] = {.lex_state = 16, .external_lex_state = 4}, + [346] = {.lex_state = 10, .external_lex_state = 4}, + [347] = {.lex_state = 10, .external_lex_state = 4}, + [348] = {.lex_state = 10, .external_lex_state = 4}, + [349] = {.lex_state = 10, .external_lex_state = 4}, + [350] = {.lex_state = 10, .external_lex_state = 4}, + [351] = {.lex_state = 10, .external_lex_state = 4}, + [352] = {.lex_state = 10, .external_lex_state = 4}, + [353] = {.lex_state = 10, .external_lex_state = 4}, + [354] = {.lex_state = 10, .external_lex_state = 4}, + [355] = {.lex_state = 10, .external_lex_state = 4}, + [356] = {.lex_state = 10, .external_lex_state = 4}, + [357] = {.lex_state = 10, .external_lex_state = 4}, + [358] = {.lex_state = 10, .external_lex_state = 4}, + [359] = {.lex_state = 10, .external_lex_state = 4}, + [360] = {.lex_state = 10, .external_lex_state = 4}, + [361] = {.lex_state = 10, .external_lex_state = 4}, + [362] = {.lex_state = 10, .external_lex_state = 4}, + [363] = {.lex_state = 10, .external_lex_state = 4}, + [364] = {.lex_state = 10, .external_lex_state = 4}, + [365] = {.lex_state = 14, .external_lex_state = 3}, + [366] = {.lex_state = 10, .external_lex_state = 4}, + [367] = {.lex_state = 14, .external_lex_state = 3}, + [368] = {.lex_state = 9, .external_lex_state = 4}, + [369] = {.lex_state = 10, .external_lex_state = 4}, + [370] = {.lex_state = 10, .external_lex_state = 4}, + [371] = {.lex_state = 10, .external_lex_state = 4}, + [372] = {.lex_state = 36, .external_lex_state = 2}, + [373] = {.lex_state = 9, .external_lex_state = 4}, + [374] = {.lex_state = 9, .external_lex_state = 4}, + [375] = {.lex_state = 9, .external_lex_state = 4}, + [376] = {.lex_state = 10, .external_lex_state = 4}, + [377] = {.lex_state = 10, .external_lex_state = 4}, + [378] = {.lex_state = 9, .external_lex_state = 4}, + [379] = {.lex_state = 9, .external_lex_state = 4}, + [380] = {.lex_state = 9, .external_lex_state = 4}, + [381] = {.lex_state = 14, .external_lex_state = 3}, + [382] = {.lex_state = 9, .external_lex_state = 4}, + [383] = {.lex_state = 35, .external_lex_state = 2}, + [384] = {.lex_state = 35, .external_lex_state = 2}, + [385] = {.lex_state = 35, .external_lex_state = 2}, + [386] = {.lex_state = 9, .external_lex_state = 4}, + [387] = {.lex_state = 9, .external_lex_state = 4}, + [388] = {.lex_state = 9, .external_lex_state = 4}, + [389] = {.lex_state = 36, .external_lex_state = 2}, + [390] = {.lex_state = 36, .external_lex_state = 2}, + [391] = {.lex_state = 9, .external_lex_state = 4}, + [392] = {.lex_state = 12, .external_lex_state = 4}, + [393] = {.lex_state = 9, .external_lex_state = 4}, + [394] = {.lex_state = 36, .external_lex_state = 2}, + [395] = {.lex_state = 9, .external_lex_state = 4}, + [396] = {.lex_state = 9, .external_lex_state = 4}, + [397] = {.lex_state = 9, .external_lex_state = 4}, + [398] = {.lex_state = 9, .external_lex_state = 4}, + [399] = {.lex_state = 9, .external_lex_state = 4}, + [400] = {.lex_state = 36, .external_lex_state = 2}, + [401] = {.lex_state = 36, .external_lex_state = 2}, + [402] = {.lex_state = 9, .external_lex_state = 4}, + [403] = {.lex_state = 9, .external_lex_state = 4}, + [404] = {.lex_state = 9, .external_lex_state = 4}, + [405] = {.lex_state = 9, .external_lex_state = 4}, + [406] = {.lex_state = 9, .external_lex_state = 4}, + [407] = {.lex_state = 36, .external_lex_state = 2}, + [408] = {.lex_state = 12, .external_lex_state = 4}, + [409] = {.lex_state = 12, .external_lex_state = 4}, + [410] = {.lex_state = 36, .external_lex_state = 2}, + [411] = {.lex_state = 12, .external_lex_state = 4}, + [412] = {.lex_state = 35, .external_lex_state = 2}, + [413] = {.lex_state = 14, .external_lex_state = 4}, + [414] = {.lex_state = 14, .external_lex_state = 3}, + [415] = {.lex_state = 35, .external_lex_state = 2}, + [416] = {.lex_state = 9, .external_lex_state = 4}, + [417] = {.lex_state = 9, .external_lex_state = 4}, + [418] = {.lex_state = 9, .external_lex_state = 4}, + [419] = {.lex_state = 36, .external_lex_state = 2}, + [420] = {.lex_state = 9, .external_lex_state = 4}, + [421] = {.lex_state = 36, .external_lex_state = 2}, + [422] = {.lex_state = 17, .external_lex_state = 3}, + [423] = {.lex_state = 35, .external_lex_state = 2}, + [424] = {.lex_state = 9, .external_lex_state = 4}, + [425] = {.lex_state = 35, .external_lex_state = 2}, + [426] = {.lex_state = 9, .external_lex_state = 4}, + [427] = {.lex_state = 36, .external_lex_state = 2}, + [428] = {.lex_state = 36, .external_lex_state = 2}, + [429] = {.lex_state = 3, .external_lex_state = 3}, + [430] = {.lex_state = 36, .external_lex_state = 2}, + [431] = {.lex_state = 36, .external_lex_state = 2}, + [432] = {.lex_state = 36, .external_lex_state = 2}, + [433] = {.lex_state = 12, .external_lex_state = 4}, + [434] = {.lex_state = 36, .external_lex_state = 2}, + [435] = {.lex_state = 3, .external_lex_state = 3}, + [436] = {.lex_state = 36, .external_lex_state = 2}, + [437] = {.lex_state = 14, .external_lex_state = 3}, + [438] = {.lex_state = 12, .external_lex_state = 4}, + [439] = {.lex_state = 36, .external_lex_state = 2}, + [440] = {.lex_state = 36, .external_lex_state = 2}, + [441] = {.lex_state = 12, .external_lex_state = 4}, + [442] = {.lex_state = 36, .external_lex_state = 2}, + [443] = {.lex_state = 3, .external_lex_state = 3}, + [444] = {.lex_state = 12, .external_lex_state = 4}, + [445] = {.lex_state = 12, .external_lex_state = 4}, + [446] = {.lex_state = 36, .external_lex_state = 2}, + [447] = {.lex_state = 14, .external_lex_state = 3}, + [448] = {.lex_state = 36, .external_lex_state = 2}, + [449] = {.lex_state = 36, .external_lex_state = 2}, + [450] = {.lex_state = 36, .external_lex_state = 2}, + [451] = {.lex_state = 11, .external_lex_state = 4}, + [452] = {.lex_state = 12, .external_lex_state = 4}, + [453] = {.lex_state = 36, .external_lex_state = 2}, + [454] = {.lex_state = 12, .external_lex_state = 4}, + [455] = {.lex_state = 36, .external_lex_state = 2}, + [456] = {.lex_state = 14, .external_lex_state = 3}, + [457] = {.lex_state = 36, .external_lex_state = 2}, + [458] = {.lex_state = 12, .external_lex_state = 4}, + [459] = {.lex_state = 36, .external_lex_state = 2}, + [460] = {.lex_state = 16, .external_lex_state = 3}, + [461] = {.lex_state = 12, .external_lex_state = 4}, + [462] = {.lex_state = 12, .external_lex_state = 4}, + [463] = {.lex_state = 12, .external_lex_state = 4}, + [464] = {.lex_state = 12, .external_lex_state = 4}, + [465] = {.lex_state = 36, .external_lex_state = 2}, + [466] = {.lex_state = 36, .external_lex_state = 2}, + [467] = {.lex_state = 12, .external_lex_state = 4}, + [468] = {.lex_state = 36, .external_lex_state = 2}, + [469] = {.lex_state = 12, .external_lex_state = 4}, + [470] = {.lex_state = 12, .external_lex_state = 4}, + [471] = {.lex_state = 12, .external_lex_state = 4}, + [472] = {.lex_state = 12, .external_lex_state = 4}, + [473] = {.lex_state = 36, .external_lex_state = 2}, + [474] = {.lex_state = 12, .external_lex_state = 4}, + [475] = {.lex_state = 3, .external_lex_state = 3}, + [476] = {.lex_state = 12, .external_lex_state = 4}, + [477] = {.lex_state = 12, .external_lex_state = 4}, + [478] = {.lex_state = 12, .external_lex_state = 4}, + [479] = {.lex_state = 36, .external_lex_state = 2}, + [480] = {.lex_state = 12, .external_lex_state = 4}, + [481] = {.lex_state = 12, .external_lex_state = 4}, + [482] = {.lex_state = 11, .external_lex_state = 4}, + [483] = {.lex_state = 12, .external_lex_state = 4}, + [484] = {.lex_state = 36, .external_lex_state = 2}, + [485] = {.lex_state = 12, .external_lex_state = 4}, + [486] = {.lex_state = 36, .external_lex_state = 2}, + [487] = {.lex_state = 11, .external_lex_state = 4}, + [488] = {.lex_state = 11, .external_lex_state = 4}, + [489] = {.lex_state = 11, .external_lex_state = 4}, + [490] = {.lex_state = 11, .external_lex_state = 4}, + [491] = {.lex_state = 11, .external_lex_state = 4}, + [492] = {.lex_state = 36, .external_lex_state = 5}, + [493] = {.lex_state = 36, .external_lex_state = 2}, + [494] = {.lex_state = 11, .external_lex_state = 4}, + [495] = {.lex_state = 11, .external_lex_state = 4}, + [496] = {.lex_state = 11, .external_lex_state = 4}, + [497] = {.lex_state = 36, .external_lex_state = 2}, + [498] = {.lex_state = 11, .external_lex_state = 4}, + [499] = {.lex_state = 11, .external_lex_state = 4}, + [500] = {.lex_state = 36, .external_lex_state = 5}, + [501] = {.lex_state = 11, .external_lex_state = 4}, + [502] = {.lex_state = 11, .external_lex_state = 4}, + [503] = {.lex_state = 11, .external_lex_state = 4}, + [504] = {.lex_state = 36, .external_lex_state = 2}, + [505] = {.lex_state = 11, .external_lex_state = 4}, + [506] = {.lex_state = 14, .external_lex_state = 3}, + [507] = {.lex_state = 11, .external_lex_state = 4}, + [508] = {.lex_state = 11, .external_lex_state = 4}, + [509] = {.lex_state = 36, .external_lex_state = 5}, + [510] = {.lex_state = 11, .external_lex_state = 4}, + [511] = {.lex_state = 11, .external_lex_state = 4}, + [512] = {.lex_state = 36, .external_lex_state = 5}, + [513] = {.lex_state = 36, .external_lex_state = 5}, + [514] = {.lex_state = 11, .external_lex_state = 4}, + [515] = {.lex_state = 11, .external_lex_state = 4}, + [516] = {.lex_state = 11, .external_lex_state = 4}, + [517] = {.lex_state = 36, .external_lex_state = 2}, + [518] = {.lex_state = 36, .external_lex_state = 5}, + [519] = {.lex_state = 11, .external_lex_state = 4}, + [520] = {.lex_state = 36, .external_lex_state = 5}, + [521] = {.lex_state = 11, .external_lex_state = 4}, + [522] = {.lex_state = 11, .external_lex_state = 4}, + [523] = {.lex_state = 11, .external_lex_state = 4}, + [524] = {.lex_state = 11, .external_lex_state = 4}, + [525] = {.lex_state = 11, .external_lex_state = 4}, + [526] = {.lex_state = 36, .external_lex_state = 2}, + [527] = {.lex_state = 36, .external_lex_state = 2}, + [528] = {.lex_state = 36, .external_lex_state = 2}, + [529] = {.lex_state = 36, .external_lex_state = 2}, + [530] = {.lex_state = 36, .external_lex_state = 2}, + [531] = {.lex_state = 36, .external_lex_state = 2}, + [532] = {.lex_state = 36, .external_lex_state = 2}, + [533] = {.lex_state = 51, .external_lex_state = 2}, + [534] = {.lex_state = 36, .external_lex_state = 2}, + [535] = {.lex_state = 36, .external_lex_state = 2}, + [536] = {.lex_state = 36, .external_lex_state = 2}, + [537] = {.lex_state = 36, .external_lex_state = 2}, + [538] = {.lex_state = 36, .external_lex_state = 2}, + [539] = {.lex_state = 36, .external_lex_state = 2}, + [540] = {.lex_state = 36, .external_lex_state = 2}, + [541] = {.lex_state = 36, .external_lex_state = 2}, + [542] = {.lex_state = 36, .external_lex_state = 2}, + [543] = {.lex_state = 36, .external_lex_state = 2}, + [544] = {.lex_state = 36, .external_lex_state = 2}, + [545] = {.lex_state = 36, .external_lex_state = 2}, + [546] = {.lex_state = 36, .external_lex_state = 2}, + [547] = {.lex_state = 36, .external_lex_state = 2}, + [548] = {.lex_state = 36, .external_lex_state = 2}, + [549] = {.lex_state = 36, .external_lex_state = 2}, + [550] = {.lex_state = 36, .external_lex_state = 2}, + [551] = {.lex_state = 36, .external_lex_state = 2}, + [552] = {.lex_state = 36, .external_lex_state = 2}, + [553] = {.lex_state = 36, .external_lex_state = 2}, + [554] = {.lex_state = 36, .external_lex_state = 2}, + [555] = {.lex_state = 36, .external_lex_state = 2}, + [556] = {.lex_state = 36, .external_lex_state = 2}, + [557] = {.lex_state = 36, .external_lex_state = 2}, + [558] = {.lex_state = 36, .external_lex_state = 2}, + [559] = {.lex_state = 36, .external_lex_state = 2}, + [560] = {.lex_state = 36, .external_lex_state = 2}, + [561] = {.lex_state = 36, .external_lex_state = 2}, + [562] = {.lex_state = 36, .external_lex_state = 2}, + [563] = {.lex_state = 36, .external_lex_state = 2}, + [564] = {.lex_state = 36, .external_lex_state = 2}, + [565] = {.lex_state = 36, .external_lex_state = 2}, + [566] = {.lex_state = 36, .external_lex_state = 2}, + [567] = {.lex_state = 36, .external_lex_state = 2}, + [568] = {.lex_state = 36, .external_lex_state = 2}, + [569] = {.lex_state = 36, .external_lex_state = 2}, + [570] = {.lex_state = 36, .external_lex_state = 2}, + [571] = {.lex_state = 36, .external_lex_state = 2}, + [572] = {.lex_state = 36, .external_lex_state = 2}, + [573] = {.lex_state = 36, .external_lex_state = 2}, + [574] = {.lex_state = 36, .external_lex_state = 2}, + [575] = {.lex_state = 36, .external_lex_state = 2}, + [576] = {.lex_state = 36, .external_lex_state = 2}, + [577] = {.lex_state = 36, .external_lex_state = 2}, + [578] = {.lex_state = 36, .external_lex_state = 2}, + [579] = {.lex_state = 36, .external_lex_state = 2}, + [580] = {.lex_state = 36, .external_lex_state = 2}, + [581] = {.lex_state = 36, .external_lex_state = 2}, + [582] = {.lex_state = 36, .external_lex_state = 2}, + [583] = {.lex_state = 36, .external_lex_state = 2}, + [584] = {.lex_state = 36, .external_lex_state = 2}, + [585] = {.lex_state = 36, .external_lex_state = 2}, + [586] = {.lex_state = 36, .external_lex_state = 2}, + [587] = {.lex_state = 36, .external_lex_state = 2}, + [588] = {.lex_state = 36, .external_lex_state = 2}, + [589] = {.lex_state = 36, .external_lex_state = 2}, + [590] = {.lex_state = 36, .external_lex_state = 2}, + [591] = {.lex_state = 36, .external_lex_state = 2}, + [592] = {.lex_state = 36, .external_lex_state = 2}, + [593] = {.lex_state = 36, .external_lex_state = 2}, + [594] = {.lex_state = 36, .external_lex_state = 2}, + [595] = {.lex_state = 36, .external_lex_state = 2}, + [596] = {.lex_state = 36, .external_lex_state = 2}, + [597] = {.lex_state = 36, .external_lex_state = 2}, + [598] = {.lex_state = 36, .external_lex_state = 2}, + [599] = {.lex_state = 36, .external_lex_state = 2}, + [600] = {.lex_state = 36, .external_lex_state = 2}, + [601] = {.lex_state = 36, .external_lex_state = 2}, + [602] = {.lex_state = 36, .external_lex_state = 2}, + [603] = {.lex_state = 36, .external_lex_state = 2}, + [604] = {.lex_state = 36, .external_lex_state = 2}, + [605] = {.lex_state = 36, .external_lex_state = 2}, + [606] = {.lex_state = 36, .external_lex_state = 2}, + [607] = {.lex_state = 36, .external_lex_state = 2}, + [608] = {.lex_state = 36, .external_lex_state = 2}, + [609] = {.lex_state = 36, .external_lex_state = 2}, + [610] = {.lex_state = 36, .external_lex_state = 2}, + [611] = {.lex_state = 36, .external_lex_state = 2}, + [612] = {.lex_state = 36, .external_lex_state = 2}, + [613] = {.lex_state = 36, .external_lex_state = 2}, + [614] = {.lex_state = 36, .external_lex_state = 2}, + [615] = {.lex_state = 36, .external_lex_state = 2}, + [616] = {.lex_state = 36, .external_lex_state = 2}, + [617] = {.lex_state = 36, .external_lex_state = 2}, + [618] = {.lex_state = 36, .external_lex_state = 2}, + [619] = {.lex_state = 36, .external_lex_state = 2}, + [620] = {.lex_state = 36, .external_lex_state = 2}, + [621] = {.lex_state = 36, .external_lex_state = 2}, + [622] = {.lex_state = 36, .external_lex_state = 2}, + [623] = {.lex_state = 36, .external_lex_state = 2}, + [624] = {.lex_state = 36, .external_lex_state = 2}, + [625] = {.lex_state = 36, .external_lex_state = 2}, + [626] = {.lex_state = 36, .external_lex_state = 2}, + [627] = {.lex_state = 36, .external_lex_state = 2}, + [628] = {.lex_state = 36, .external_lex_state = 2}, + [629] = {.lex_state = 36, .external_lex_state = 2}, + [630] = {.lex_state = 36, .external_lex_state = 2}, + [631] = {.lex_state = 36, .external_lex_state = 2}, + [632] = {.lex_state = 36, .external_lex_state = 2}, + [633] = {.lex_state = 36, .external_lex_state = 2}, + [634] = {.lex_state = 36, .external_lex_state = 2}, + [635] = {.lex_state = 36, .external_lex_state = 2}, + [636] = {.lex_state = 36, .external_lex_state = 2}, + [637] = {.lex_state = 36, .external_lex_state = 2}, + [638] = {.lex_state = 36, .external_lex_state = 2}, + [639] = {.lex_state = 36, .external_lex_state = 2}, + [640] = {.lex_state = 36, .external_lex_state = 2}, + [641] = {.lex_state = 36, .external_lex_state = 2}, + [642] = {.lex_state = 36, .external_lex_state = 2}, + [643] = {.lex_state = 36, .external_lex_state = 2}, + [644] = {.lex_state = 36, .external_lex_state = 2}, + [645] = {.lex_state = 36, .external_lex_state = 2}, + [646] = {.lex_state = 36, .external_lex_state = 2}, + [647] = {.lex_state = 36, .external_lex_state = 2}, + [648] = {.lex_state = 36, .external_lex_state = 2}, + [649] = {.lex_state = 36, .external_lex_state = 2}, + [650] = {.lex_state = 36, .external_lex_state = 2}, + [651] = {.lex_state = 36, .external_lex_state = 2}, + [652] = {.lex_state = 36, .external_lex_state = 2}, + [653] = {.lex_state = 36, .external_lex_state = 2}, + [654] = {.lex_state = 36, .external_lex_state = 2}, + [655] = {.lex_state = 36, .external_lex_state = 2}, + [656] = {.lex_state = 36, .external_lex_state = 2}, + [657] = {.lex_state = 36, .external_lex_state = 2}, + [658] = {.lex_state = 36, .external_lex_state = 2}, + [659] = {.lex_state = 36, .external_lex_state = 2}, + [660] = {.lex_state = 36, .external_lex_state = 2}, + [661] = {.lex_state = 36, .external_lex_state = 2}, + [662] = {.lex_state = 36, .external_lex_state = 2}, + [663] = {.lex_state = 36, .external_lex_state = 2}, + [664] = {.lex_state = 36, .external_lex_state = 2}, + [665] = {.lex_state = 36, .external_lex_state = 2}, + [666] = {.lex_state = 36, .external_lex_state = 2}, + [667] = {.lex_state = 36, .external_lex_state = 2}, + [668] = {.lex_state = 36, .external_lex_state = 2}, + [669] = {.lex_state = 36, .external_lex_state = 2}, + [670] = {.lex_state = 36, .external_lex_state = 2}, + [671] = {.lex_state = 36, .external_lex_state = 2}, + [672] = {.lex_state = 36, .external_lex_state = 2}, + [673] = {.lex_state = 36, .external_lex_state = 2}, + [674] = {.lex_state = 36, .external_lex_state = 2}, + [675] = {.lex_state = 36, .external_lex_state = 2}, + [676] = {.lex_state = 36, .external_lex_state = 2}, + [677] = {.lex_state = 36, .external_lex_state = 2}, + [678] = {.lex_state = 36, .external_lex_state = 2}, + [679] = {.lex_state = 36, .external_lex_state = 2}, + [680] = {.lex_state = 36, .external_lex_state = 2}, + [681] = {.lex_state = 36, .external_lex_state = 2}, + [682] = {.lex_state = 36, .external_lex_state = 2}, + [683] = {.lex_state = 36, .external_lex_state = 2}, + [684] = {.lex_state = 36, .external_lex_state = 2}, + [685] = {.lex_state = 36, .external_lex_state = 2}, + [686] = {.lex_state = 36, .external_lex_state = 2}, + [687] = {.lex_state = 36, .external_lex_state = 2}, + [688] = {.lex_state = 36, .external_lex_state = 2}, + [689] = {.lex_state = 36, .external_lex_state = 2}, + [690] = {.lex_state = 36, .external_lex_state = 2}, + [691] = {.lex_state = 36, .external_lex_state = 2}, + [692] = {.lex_state = 36, .external_lex_state = 2}, + [693] = {.lex_state = 36, .external_lex_state = 2}, + [694] = {.lex_state = 36, .external_lex_state = 2}, + [695] = {.lex_state = 36, .external_lex_state = 2}, + [696] = {.lex_state = 36, .external_lex_state = 2}, + [697] = {.lex_state = 36, .external_lex_state = 2}, + [698] = {.lex_state = 36, .external_lex_state = 2}, + [699] = {.lex_state = 36, .external_lex_state = 2}, + [700] = {.lex_state = 36, .external_lex_state = 2}, + [701] = {.lex_state = 36, .external_lex_state = 2}, + [702] = {.lex_state = 36, .external_lex_state = 2}, + [703] = {.lex_state = 36, .external_lex_state = 2}, + [704] = {.lex_state = 36, .external_lex_state = 2}, + [705] = {.lex_state = 36, .external_lex_state = 2}, + [706] = {.lex_state = 36, .external_lex_state = 2}, + [707] = {.lex_state = 36, .external_lex_state = 2}, + [708] = {.lex_state = 36, .external_lex_state = 2}, + [709] = {.lex_state = 36, .external_lex_state = 2}, + [710] = {.lex_state = 36, .external_lex_state = 2}, + [711] = {.lex_state = 36, .external_lex_state = 2}, + [712] = {.lex_state = 36, .external_lex_state = 2}, + [713] = {.lex_state = 36, .external_lex_state = 2}, + [714] = {.lex_state = 36, .external_lex_state = 2}, + [715] = {.lex_state = 36, .external_lex_state = 2}, + [716] = {.lex_state = 36, .external_lex_state = 2}, + [717] = {.lex_state = 36, .external_lex_state = 2}, + [718] = {.lex_state = 36, .external_lex_state = 2}, + [719] = {.lex_state = 36, .external_lex_state = 2}, + [720] = {.lex_state = 36, .external_lex_state = 2}, + [721] = {.lex_state = 36, .external_lex_state = 2}, + [722] = {.lex_state = 36, .external_lex_state = 2}, + [723] = {.lex_state = 36, .external_lex_state = 2}, + [724] = {.lex_state = 36, .external_lex_state = 2}, + [725] = {.lex_state = 36, .external_lex_state = 2}, + [726] = {.lex_state = 36, .external_lex_state = 2}, + [727] = {.lex_state = 36, .external_lex_state = 2}, + [728] = {.lex_state = 36, .external_lex_state = 2}, + [729] = {.lex_state = 36, .external_lex_state = 2}, + [730] = {.lex_state = 36, .external_lex_state = 2}, + [731] = {.lex_state = 36, .external_lex_state = 2}, + [732] = {.lex_state = 36, .external_lex_state = 2}, + [733] = {.lex_state = 36, .external_lex_state = 2}, + [734] = {.lex_state = 36, .external_lex_state = 2}, + [735] = {.lex_state = 36, .external_lex_state = 2}, + [736] = {.lex_state = 36, .external_lex_state = 2}, + [737] = {.lex_state = 36, .external_lex_state = 2}, + [738] = {.lex_state = 36, .external_lex_state = 2}, + [739] = {.lex_state = 36, .external_lex_state = 2}, + [740] = {.lex_state = 36, .external_lex_state = 2}, + [741] = {.lex_state = 36, .external_lex_state = 2}, + [742] = {.lex_state = 36, .external_lex_state = 2}, + [743] = {.lex_state = 36, .external_lex_state = 2}, + [744] = {.lex_state = 36, .external_lex_state = 2}, + [745] = {.lex_state = 36, .external_lex_state = 2}, + [746] = {.lex_state = 36, .external_lex_state = 2}, + [747] = {.lex_state = 36, .external_lex_state = 2}, + [748] = {.lex_state = 36, .external_lex_state = 2}, + [749] = {.lex_state = 36, .external_lex_state = 2}, + [750] = {.lex_state = 36, .external_lex_state = 2}, + [751] = {.lex_state = 36, .external_lex_state = 2}, + [752] = {.lex_state = 36, .external_lex_state = 2}, + [753] = {.lex_state = 36, .external_lex_state = 2}, + [754] = {.lex_state = 36, .external_lex_state = 2}, + [755] = {.lex_state = 36, .external_lex_state = 2}, + [756] = {.lex_state = 36, .external_lex_state = 2}, + [757] = {.lex_state = 36, .external_lex_state = 2}, + [758] = {.lex_state = 36, .external_lex_state = 2}, + [759] = {.lex_state = 36, .external_lex_state = 2}, + [760] = {.lex_state = 36, .external_lex_state = 2}, + [761] = {.lex_state = 36, .external_lex_state = 2}, + [762] = {.lex_state = 36, .external_lex_state = 2}, + [763] = {.lex_state = 36, .external_lex_state = 2}, + [764] = {.lex_state = 36, .external_lex_state = 2}, + [765] = {.lex_state = 36, .external_lex_state = 2}, + [766] = {.lex_state = 36, .external_lex_state = 2}, + [767] = {.lex_state = 36, .external_lex_state = 2}, + [768] = {.lex_state = 36, .external_lex_state = 2}, + [769] = {.lex_state = 36, .external_lex_state = 2}, + [770] = {.lex_state = 36, .external_lex_state = 2}, + [771] = {.lex_state = 36, .external_lex_state = 2}, + [772] = {.lex_state = 36, .external_lex_state = 2}, + [773] = {.lex_state = 36, .external_lex_state = 2}, + [774] = {.lex_state = 36, .external_lex_state = 2}, + [775] = {.lex_state = 36, .external_lex_state = 2}, + [776] = {.lex_state = 36, .external_lex_state = 2}, + [777] = {.lex_state = 36, .external_lex_state = 2}, + [778] = {.lex_state = 36, .external_lex_state = 2}, + [779] = {.lex_state = 36, .external_lex_state = 2}, + [780] = {.lex_state = 36, .external_lex_state = 2}, + [781] = {.lex_state = 36, .external_lex_state = 2}, + [782] = {.lex_state = 36, .external_lex_state = 2}, + [783] = {.lex_state = 36, .external_lex_state = 2}, + [784] = {.lex_state = 36, .external_lex_state = 2}, + [785] = {.lex_state = 36, .external_lex_state = 2}, + [786] = {.lex_state = 36, .external_lex_state = 2}, + [787] = {.lex_state = 36, .external_lex_state = 2}, + [788] = {.lex_state = 36, .external_lex_state = 2}, + [789] = {.lex_state = 36, .external_lex_state = 2}, + [790] = {.lex_state = 36, .external_lex_state = 2}, + [791] = {.lex_state = 36, .external_lex_state = 2}, + [792] = {.lex_state = 36, .external_lex_state = 2}, + [793] = {.lex_state = 36, .external_lex_state = 2}, + [794] = {.lex_state = 36, .external_lex_state = 2}, + [795] = {.lex_state = 36, .external_lex_state = 2}, + [796] = {.lex_state = 36, .external_lex_state = 2}, + [797] = {.lex_state = 36, .external_lex_state = 2}, + [798] = {.lex_state = 36, .external_lex_state = 2}, + [799] = {.lex_state = 36, .external_lex_state = 2}, + [800] = {.lex_state = 36, .external_lex_state = 2}, + [801] = {.lex_state = 36, .external_lex_state = 2}, + [802] = {.lex_state = 36, .external_lex_state = 2}, + [803] = {.lex_state = 36, .external_lex_state = 2}, + [804] = {.lex_state = 36, .external_lex_state = 2}, + [805] = {.lex_state = 36, .external_lex_state = 2}, + [806] = {.lex_state = 36, .external_lex_state = 2}, + [807] = {.lex_state = 36, .external_lex_state = 2}, + [808] = {.lex_state = 36, .external_lex_state = 2}, + [809] = {.lex_state = 36, .external_lex_state = 2}, + [810] = {.lex_state = 36, .external_lex_state = 2}, + [811] = {.lex_state = 36, .external_lex_state = 2}, + [812] = {.lex_state = 36, .external_lex_state = 2}, + [813] = {.lex_state = 36, .external_lex_state = 2}, + [814] = {.lex_state = 36, .external_lex_state = 2}, + [815] = {.lex_state = 36, .external_lex_state = 2}, + [816] = {.lex_state = 36, .external_lex_state = 2}, + [817] = {.lex_state = 36, .external_lex_state = 2}, + [818] = {.lex_state = 36, .external_lex_state = 2}, + [819] = {.lex_state = 36, .external_lex_state = 2}, + [820] = {.lex_state = 36, .external_lex_state = 2}, + [821] = {.lex_state = 36, .external_lex_state = 2}, + [822] = {.lex_state = 36, .external_lex_state = 2}, + [823] = {.lex_state = 36, .external_lex_state = 2}, + [824] = {.lex_state = 36, .external_lex_state = 2}, + [825] = {.lex_state = 36, .external_lex_state = 2}, + [826] = {.lex_state = 36, .external_lex_state = 2}, + [827] = {.lex_state = 36, .external_lex_state = 2}, + [828] = {.lex_state = 36, .external_lex_state = 2}, + [829] = {.lex_state = 36, .external_lex_state = 2}, + [830] = {.lex_state = 36, .external_lex_state = 2}, + [831] = {.lex_state = 36, .external_lex_state = 2}, + [832] = {.lex_state = 36, .external_lex_state = 2}, + [833] = {.lex_state = 36, .external_lex_state = 2}, + [834] = {.lex_state = 36, .external_lex_state = 2}, + [835] = {.lex_state = 36, .external_lex_state = 2}, + [836] = {.lex_state = 36, .external_lex_state = 2}, + [837] = {.lex_state = 36, .external_lex_state = 2}, + [838] = {.lex_state = 36, .external_lex_state = 2}, + [839] = {.lex_state = 36, .external_lex_state = 2}, + [840] = {.lex_state = 36, .external_lex_state = 2}, + [841] = {.lex_state = 36, .external_lex_state = 2}, + [842] = {.lex_state = 36, .external_lex_state = 2}, + [843] = {.lex_state = 36, .external_lex_state = 2}, + [844] = {.lex_state = 36, .external_lex_state = 2}, + [845] = {.lex_state = 36, .external_lex_state = 2}, + [846] = {.lex_state = 36, .external_lex_state = 2}, + [847] = {.lex_state = 36, .external_lex_state = 2}, + [848] = {.lex_state = 36, .external_lex_state = 2}, + [849] = {.lex_state = 36, .external_lex_state = 2}, + [850] = {.lex_state = 36, .external_lex_state = 2}, + [851] = {.lex_state = 36, .external_lex_state = 2}, + [852] = {.lex_state = 36, .external_lex_state = 2}, + [853] = {.lex_state = 36, .external_lex_state = 2}, + [854] = {.lex_state = 36, .external_lex_state = 2}, + [855] = {.lex_state = 36, .external_lex_state = 2}, + [856] = {.lex_state = 36, .external_lex_state = 2}, + [857] = {.lex_state = 36, .external_lex_state = 2}, + [858] = {.lex_state = 36, .external_lex_state = 2}, + [859] = {.lex_state = 36, .external_lex_state = 2}, + [860] = {.lex_state = 36, .external_lex_state = 2}, + [861] = {.lex_state = 36, .external_lex_state = 2}, + [862] = {.lex_state = 36, .external_lex_state = 2}, + [863] = {.lex_state = 36, .external_lex_state = 2}, + [864] = {.lex_state = 36, .external_lex_state = 2}, + [865] = {.lex_state = 36, .external_lex_state = 2}, + [866] = {.lex_state = 36, .external_lex_state = 2}, + [867] = {.lex_state = 36, .external_lex_state = 2}, + [868] = {.lex_state = 36, .external_lex_state = 2}, + [869] = {.lex_state = 36, .external_lex_state = 2}, + [870] = {.lex_state = 36, .external_lex_state = 2}, + [871] = {.lex_state = 36, .external_lex_state = 2}, + [872] = {.lex_state = 36, .external_lex_state = 2}, + [873] = {.lex_state = 36, .external_lex_state = 2}, + [874] = {.lex_state = 36, .external_lex_state = 2}, + [875] = {.lex_state = 36, .external_lex_state = 2}, + [876] = {.lex_state = 36, .external_lex_state = 2}, + [877] = {.lex_state = 36, .external_lex_state = 2}, + [878] = {.lex_state = 36, .external_lex_state = 2}, + [879] = {.lex_state = 36, .external_lex_state = 2}, + [880] = {.lex_state = 36, .external_lex_state = 2}, + [881] = {.lex_state = 36, .external_lex_state = 2}, + [882] = {.lex_state = 36, .external_lex_state = 2}, + [883] = {.lex_state = 36, .external_lex_state = 2}, + [884] = {.lex_state = 36, .external_lex_state = 2}, + [885] = {.lex_state = 36, .external_lex_state = 2}, + [886] = {.lex_state = 36, .external_lex_state = 2}, + [887] = {.lex_state = 36, .external_lex_state = 2}, + [888] = {.lex_state = 5, .external_lex_state = 4}, + [889] = {.lex_state = 5, .external_lex_state = 4}, + [890] = {.lex_state = 5, .external_lex_state = 4}, + [891] = {.lex_state = 5, .external_lex_state = 4}, + [892] = {.lex_state = 6, .external_lex_state = 4}, + [893] = {.lex_state = 6, .external_lex_state = 4}, + [894] = {.lex_state = 6, .external_lex_state = 4}, + [895] = {.lex_state = 6, .external_lex_state = 4}, + [896] = {.lex_state = 6, .external_lex_state = 4}, + [897] = {.lex_state = 6, .external_lex_state = 4}, + [898] = {.lex_state = 6, .external_lex_state = 4}, + [899] = {.lex_state = 6, .external_lex_state = 4}, + [900] = {.lex_state = 6, .external_lex_state = 4}, + [901] = {.lex_state = 6, .external_lex_state = 4}, + [902] = {.lex_state = 6, .external_lex_state = 4}, + [903] = {.lex_state = 6, .external_lex_state = 4}, + [904] = {.lex_state = 380, .external_lex_state = 4}, + [905] = {.lex_state = 380, .external_lex_state = 4}, + [906] = {.lex_state = 380, .external_lex_state = 4}, + [907] = {.lex_state = 380, .external_lex_state = 4}, + [908] = {.lex_state = 6, .external_lex_state = 4}, + [909] = {.lex_state = 6, .external_lex_state = 4}, + [910] = {.lex_state = 6, .external_lex_state = 4}, + [911] = {.lex_state = 6, .external_lex_state = 4}, + [912] = {.lex_state = 6, .external_lex_state = 4}, + [913] = {.lex_state = 6, .external_lex_state = 4}, + [914] = {.lex_state = 6, .external_lex_state = 4}, + [915] = {.lex_state = 6, .external_lex_state = 4}, + [916] = {.lex_state = 380, .external_lex_state = 4}, + [917] = {.lex_state = 380, .external_lex_state = 4}, + [918] = {.lex_state = 380, .external_lex_state = 4}, + [919] = {.lex_state = 380, .external_lex_state = 4}, + [920] = {.lex_state = 380, .external_lex_state = 4}, + [921] = {.lex_state = 380, .external_lex_state = 4}, + [922] = {.lex_state = 380, .external_lex_state = 4}, + [923] = {.lex_state = 380, .external_lex_state = 4}, + [924] = {.lex_state = 20, .external_lex_state = 3}, + [925] = {.lex_state = 380, .external_lex_state = 4}, + [926] = {.lex_state = 20, .external_lex_state = 3}, + [927] = {.lex_state = 20, .external_lex_state = 3}, + [928] = {.lex_state = 380, .external_lex_state = 4}, + [929] = {.lex_state = 380, .external_lex_state = 4}, + [930] = {.lex_state = 20, .external_lex_state = 4}, + [931] = {.lex_state = 20, .external_lex_state = 3}, + [932] = {.lex_state = 20, .external_lex_state = 4}, + [933] = {.lex_state = 20, .external_lex_state = 3}, + [934] = {.lex_state = 20, .external_lex_state = 4}, + [935] = {.lex_state = 20, .external_lex_state = 4}, + [936] = {.lex_state = 20, .external_lex_state = 3}, + [937] = {.lex_state = 20, .external_lex_state = 4}, + [938] = {.lex_state = 20, .external_lex_state = 4}, + [939] = {.lex_state = 20, .external_lex_state = 4}, + [940] = {.lex_state = 20, .external_lex_state = 4}, + [941] = {.lex_state = 20, .external_lex_state = 3}, + [942] = {.lex_state = 20, .external_lex_state = 4}, + [943] = {.lex_state = 20, .external_lex_state = 4}, + [944] = {.lex_state = 20, .external_lex_state = 4}, + [945] = {.lex_state = 20, .external_lex_state = 4}, + [946] = {.lex_state = 380, .external_lex_state = 4}, + [947] = {.lex_state = 380, .external_lex_state = 4}, + [948] = {.lex_state = 380, .external_lex_state = 4}, + [949] = {.lex_state = 380, .external_lex_state = 4}, + [950] = {.lex_state = 380, .external_lex_state = 4}, + [951] = {.lex_state = 380, .external_lex_state = 4}, + [952] = {.lex_state = 22, .external_lex_state = 3}, + [953] = {.lex_state = 380, .external_lex_state = 4}, + [954] = {.lex_state = 20, .external_lex_state = 4}, + [955] = {.lex_state = 22, .external_lex_state = 3}, + [956] = {.lex_state = 20, .external_lex_state = 4}, + [957] = {.lex_state = 20, .external_lex_state = 3}, + [958] = {.lex_state = 20, .external_lex_state = 3}, + [959] = {.lex_state = 44, .external_lex_state = 2}, + [960] = {.lex_state = 20, .external_lex_state = 4}, + [961] = {.lex_state = 20, .external_lex_state = 4}, + [962] = {.lex_state = 20, .external_lex_state = 4}, + [963] = {.lex_state = 20, .external_lex_state = 4}, + [964] = {.lex_state = 20, .external_lex_state = 4}, + [965] = {.lex_state = 20, .external_lex_state = 4}, + [966] = {.lex_state = 20, .external_lex_state = 3}, + [967] = {.lex_state = 20, .external_lex_state = 4}, + [968] = {.lex_state = 20, .external_lex_state = 4}, + [969] = {.lex_state = 20, .external_lex_state = 4}, + [970] = {.lex_state = 20, .external_lex_state = 3}, + [971] = {.lex_state = 20, .external_lex_state = 4}, + [972] = {.lex_state = 43, .external_lex_state = 2}, + [973] = {.lex_state = 380, .external_lex_state = 4}, + [974] = {.lex_state = 20, .external_lex_state = 3}, + [975] = {.lex_state = 380, .external_lex_state = 4}, + [976] = {.lex_state = 20, .external_lex_state = 3}, + [977] = {.lex_state = 20, .external_lex_state = 3}, + [978] = {.lex_state = 380, .external_lex_state = 4}, + [979] = {.lex_state = 380, .external_lex_state = 4}, + [980] = {.lex_state = 380, .external_lex_state = 4}, + [981] = {.lex_state = 44, .external_lex_state = 5}, + [982] = {.lex_state = 20, .external_lex_state = 3}, + [983] = {.lex_state = 44, .external_lex_state = 5}, + [984] = {.lex_state = 380, .external_lex_state = 4}, + [985] = {.lex_state = 380, .external_lex_state = 4}, + [986] = {.lex_state = 380, .external_lex_state = 4}, + [987] = {.lex_state = 20, .external_lex_state = 3}, + [988] = {.lex_state = 46, .external_lex_state = 5}, + [989] = {.lex_state = 20, .external_lex_state = 3}, + [990] = {.lex_state = 20, .external_lex_state = 3}, + [991] = {.lex_state = 41, .external_lex_state = 2}, + [992] = {.lex_state = 20, .external_lex_state = 3}, + [993] = {.lex_state = 20, .external_lex_state = 3}, + [994] = {.lex_state = 41, .external_lex_state = 2}, + [995] = {.lex_state = 20, .external_lex_state = 3}, + [996] = {.lex_state = 46, .external_lex_state = 2}, + [997] = {.lex_state = 20, .external_lex_state = 3}, + [998] = {.lex_state = 20, .external_lex_state = 3}, + [999] = {.lex_state = 20, .external_lex_state = 3}, + [1000] = {.lex_state = 43, .external_lex_state = 5}, + [1001] = {.lex_state = 43, .external_lex_state = 5}, + [1002] = {.lex_state = 46, .external_lex_state = 5}, + [1003] = {.lex_state = 20, .external_lex_state = 3}, + [1004] = {.lex_state = 44, .external_lex_state = 2}, + [1005] = {.lex_state = 44, .external_lex_state = 2}, + [1006] = {.lex_state = 50, .external_lex_state = 2}, + [1007] = {.lex_state = 20, .external_lex_state = 3}, + [1008] = {.lex_state = 20, .external_lex_state = 3}, + [1009] = {.lex_state = 20, .external_lex_state = 3}, + [1010] = {.lex_state = 46, .external_lex_state = 2}, + [1011] = {.lex_state = 41, .external_lex_state = 5}, + [1012] = {.lex_state = 41, .external_lex_state = 5}, + [1013] = {.lex_state = 41, .external_lex_state = 2}, + [1014] = {.lex_state = 45, .external_lex_state = 5}, + [1015] = {.lex_state = 43, .external_lex_state = 2}, + [1016] = {.lex_state = 43, .external_lex_state = 2}, + [1017] = {.lex_state = 49, .external_lex_state = 2}, + [1018] = {.lex_state = 45, .external_lex_state = 5}, + [1019] = {.lex_state = 41, .external_lex_state = 5}, + [1020] = {.lex_state = 41, .external_lex_state = 5}, + [1021] = {.lex_state = 41, .external_lex_state = 5}, + [1022] = {.lex_state = 41, .external_lex_state = 5}, + [1023] = {.lex_state = 46, .external_lex_state = 2}, + [1024] = {.lex_state = 41, .external_lex_state = 5}, + [1025] = {.lex_state = 45, .external_lex_state = 2}, + [1026] = {.lex_state = 41, .external_lex_state = 2}, + [1027] = {.lex_state = 41, .external_lex_state = 5}, + [1028] = {.lex_state = 41, .external_lex_state = 5}, + [1029] = {.lex_state = 41, .external_lex_state = 5}, + [1030] = {.lex_state = 41, .external_lex_state = 5}, + [1031] = {.lex_state = 41, .external_lex_state = 5}, + [1032] = {.lex_state = 41, .external_lex_state = 5}, + [1033] = {.lex_state = 41, .external_lex_state = 5}, + [1034] = {.lex_state = 41, .external_lex_state = 5}, + [1035] = {.lex_state = 41, .external_lex_state = 5}, + [1036] = {.lex_state = 41, .external_lex_state = 2}, + [1037] = {.lex_state = 41, .external_lex_state = 2}, + [1038] = {.lex_state = 41, .external_lex_state = 5}, + [1039] = {.lex_state = 46, .external_lex_state = 2}, + [1040] = {.lex_state = 41, .external_lex_state = 2}, + [1041] = {.lex_state = 41, .external_lex_state = 5}, + [1042] = {.lex_state = 40, .external_lex_state = 2}, + [1043] = {.lex_state = 40, .external_lex_state = 2}, + [1044] = {.lex_state = 46, .external_lex_state = 2}, + [1045] = {.lex_state = 50, .external_lex_state = 5}, + [1046] = {.lex_state = 41, .external_lex_state = 5}, + [1047] = {.lex_state = 46, .external_lex_state = 2}, + [1048] = {.lex_state = 50, .external_lex_state = 5}, + [1049] = {.lex_state = 41, .external_lex_state = 5}, + [1050] = {.lex_state = 45, .external_lex_state = 2}, + [1051] = {.lex_state = 41, .external_lex_state = 2}, + [1052] = {.lex_state = 41, .external_lex_state = 2}, + [1053] = {.lex_state = 41, .external_lex_state = 2}, + [1054] = {.lex_state = 41, .external_lex_state = 2}, + [1055] = {.lex_state = 41, .external_lex_state = 2}, + [1056] = {.lex_state = 41, .external_lex_state = 2}, + [1057] = {.lex_state = 41, .external_lex_state = 2}, + [1058] = {.lex_state = 41, .external_lex_state = 2}, + [1059] = {.lex_state = 41, .external_lex_state = 2}, + [1060] = {.lex_state = 41, .external_lex_state = 2}, + [1061] = {.lex_state = 41, .external_lex_state = 2}, + [1062] = {.lex_state = 41, .external_lex_state = 2}, + [1063] = {.lex_state = 41, .external_lex_state = 2}, + [1064] = {.lex_state = 41, .external_lex_state = 2}, + [1065] = {.lex_state = 41, .external_lex_state = 2}, + [1066] = {.lex_state = 41, .external_lex_state = 2}, + [1067] = {.lex_state = 41, .external_lex_state = 2}, + [1068] = {.lex_state = 41, .external_lex_state = 2}, + [1069] = {.lex_state = 41, .external_lex_state = 2}, + [1070] = {.lex_state = 41, .external_lex_state = 2}, + [1071] = {.lex_state = 41, .external_lex_state = 2}, + [1072] = {.lex_state = 41, .external_lex_state = 2}, + [1073] = {.lex_state = 41, .external_lex_state = 2}, + [1074] = {.lex_state = 41, .external_lex_state = 2}, + [1075] = {.lex_state = 41, .external_lex_state = 2}, + [1076] = {.lex_state = 41, .external_lex_state = 2}, + [1077] = {.lex_state = 41, .external_lex_state = 2}, + [1078] = {.lex_state = 41, .external_lex_state = 2}, + [1079] = {.lex_state = 41, .external_lex_state = 2}, + [1080] = {.lex_state = 41, .external_lex_state = 2}, + [1081] = {.lex_state = 41, .external_lex_state = 2}, + [1082] = {.lex_state = 41, .external_lex_state = 2}, + [1083] = {.lex_state = 41, .external_lex_state = 2}, + [1084] = {.lex_state = 41, .external_lex_state = 2}, + [1085] = {.lex_state = 41, .external_lex_state = 2}, + [1086] = {.lex_state = 41, .external_lex_state = 2}, + [1087] = {.lex_state = 41, .external_lex_state = 2}, + [1088] = {.lex_state = 41, .external_lex_state = 2}, + [1089] = {.lex_state = 41, .external_lex_state = 2}, + [1090] = {.lex_state = 41, .external_lex_state = 2}, + [1091] = {.lex_state = 41, .external_lex_state = 2}, + [1092] = {.lex_state = 41, .external_lex_state = 2}, + [1093] = {.lex_state = 41, .external_lex_state = 2}, + [1094] = {.lex_state = 41, .external_lex_state = 2}, + [1095] = {.lex_state = 41, .external_lex_state = 2}, + [1096] = {.lex_state = 41, .external_lex_state = 2}, + [1097] = {.lex_state = 41, .external_lex_state = 2}, + [1098] = {.lex_state = 41, .external_lex_state = 2}, + [1099] = {.lex_state = 41, .external_lex_state = 2}, + [1100] = {.lex_state = 41, .external_lex_state = 2}, + [1101] = {.lex_state = 41, .external_lex_state = 2}, + [1102] = {.lex_state = 41, .external_lex_state = 2}, + [1103] = {.lex_state = 41, .external_lex_state = 2}, + [1104] = {.lex_state = 41, .external_lex_state = 2}, + [1105] = {.lex_state = 41, .external_lex_state = 2}, + [1106] = {.lex_state = 41, .external_lex_state = 2}, + [1107] = {.lex_state = 41, .external_lex_state = 2}, + [1108] = {.lex_state = 41, .external_lex_state = 2}, + [1109] = {.lex_state = 41, .external_lex_state = 2}, + [1110] = {.lex_state = 40, .external_lex_state = 5}, + [1111] = {.lex_state = 41, .external_lex_state = 2}, + [1112] = {.lex_state = 41, .external_lex_state = 2}, + [1113] = {.lex_state = 41, .external_lex_state = 2}, + [1114] = {.lex_state = 41, .external_lex_state = 2}, + [1115] = {.lex_state = 41, .external_lex_state = 2}, + [1116] = {.lex_state = 41, .external_lex_state = 2}, + [1117] = {.lex_state = 42, .external_lex_state = 2}, + [1118] = {.lex_state = 41, .external_lex_state = 2}, + [1119] = {.lex_state = 41, .external_lex_state = 2}, + [1120] = {.lex_state = 41, .external_lex_state = 2}, + [1121] = {.lex_state = 40, .external_lex_state = 5}, + [1122] = {.lex_state = 41, .external_lex_state = 2}, + [1123] = {.lex_state = 41, .external_lex_state = 2}, + [1124] = {.lex_state = 41, .external_lex_state = 2}, + [1125] = {.lex_state = 40, .external_lex_state = 5}, + [1126] = {.lex_state = 41, .external_lex_state = 2}, + [1127] = {.lex_state = 40, .external_lex_state = 5}, + [1128] = {.lex_state = 41, .external_lex_state = 2}, + [1129] = {.lex_state = 41, .external_lex_state = 2}, + [1130] = {.lex_state = 45, .external_lex_state = 2}, + [1131] = {.lex_state = 41, .external_lex_state = 2}, + [1132] = {.lex_state = 41, .external_lex_state = 2}, + [1133] = {.lex_state = 49, .external_lex_state = 5}, + [1134] = {.lex_state = 41, .external_lex_state = 2}, + [1135] = {.lex_state = 40, .external_lex_state = 5}, + [1136] = {.lex_state = 41, .external_lex_state = 2}, + [1137] = {.lex_state = 41, .external_lex_state = 2}, + [1138] = {.lex_state = 41, .external_lex_state = 2}, + [1139] = {.lex_state = 41, .external_lex_state = 2}, + [1140] = {.lex_state = 40, .external_lex_state = 5}, + [1141] = {.lex_state = 40, .external_lex_state = 5}, + [1142] = {.lex_state = 40, .external_lex_state = 5}, + [1143] = {.lex_state = 40, .external_lex_state = 5}, + [1144] = {.lex_state = 40, .external_lex_state = 2}, + [1145] = {.lex_state = 48, .external_lex_state = 2}, + [1146] = {.lex_state = 41, .external_lex_state = 2}, + [1147] = {.lex_state = 41, .external_lex_state = 2}, + [1148] = {.lex_state = 41, .external_lex_state = 2}, + [1149] = {.lex_state = 48, .external_lex_state = 5}, + [1150] = {.lex_state = 48, .external_lex_state = 5}, + [1151] = {.lex_state = 42, .external_lex_state = 2}, + [1152] = {.lex_state = 41, .external_lex_state = 2}, + [1153] = {.lex_state = 40, .external_lex_state = 5}, + [1154] = {.lex_state = 40, .external_lex_state = 5}, + [1155] = {.lex_state = 49, .external_lex_state = 5}, + [1156] = {.lex_state = 40, .external_lex_state = 5}, + [1157] = {.lex_state = 40, .external_lex_state = 5}, + [1158] = {.lex_state = 40, .external_lex_state = 5}, + [1159] = {.lex_state = 41, .external_lex_state = 2}, + [1160] = {.lex_state = 41, .external_lex_state = 2}, + [1161] = {.lex_state = 40, .external_lex_state = 5}, + [1162] = {.lex_state = 41, .external_lex_state = 2}, + [1163] = {.lex_state = 41, .external_lex_state = 2}, + [1164] = {.lex_state = 45, .external_lex_state = 2}, + [1165] = {.lex_state = 41, .external_lex_state = 2}, + [1166] = {.lex_state = 40, .external_lex_state = 2}, + [1167] = {.lex_state = 41, .external_lex_state = 2}, + [1168] = {.lex_state = 41, .external_lex_state = 2}, + [1169] = {.lex_state = 41, .external_lex_state = 2}, + [1170] = {.lex_state = 40, .external_lex_state = 5}, + [1171] = {.lex_state = 40, .external_lex_state = 5}, + [1172] = {.lex_state = 40, .external_lex_state = 5}, + [1173] = {.lex_state = 40, .external_lex_state = 5}, + [1174] = {.lex_state = 45, .external_lex_state = 2}, + [1175] = {.lex_state = 45, .external_lex_state = 2}, + [1176] = {.lex_state = 41, .external_lex_state = 2}, + [1177] = {.lex_state = 41, .external_lex_state = 2}, + [1178] = {.lex_state = 41, .external_lex_state = 2}, + [1179] = {.lex_state = 41, .external_lex_state = 2}, + [1180] = {.lex_state = 40, .external_lex_state = 2}, + [1181] = {.lex_state = 41, .external_lex_state = 2}, + [1182] = {.lex_state = 41, .external_lex_state = 2}, + [1183] = {.lex_state = 41, .external_lex_state = 2}, + [1184] = {.lex_state = 41, .external_lex_state = 2}, + [1185] = {.lex_state = 41, .external_lex_state = 2}, + [1186] = {.lex_state = 41, .external_lex_state = 2}, + [1187] = {.lex_state = 41, .external_lex_state = 2}, + [1188] = {.lex_state = 41, .external_lex_state = 2}, + [1189] = {.lex_state = 41, .external_lex_state = 2}, + [1190] = {.lex_state = 41, .external_lex_state = 2}, + [1191] = {.lex_state = 50, .external_lex_state = 2}, + [1192] = {.lex_state = 41, .external_lex_state = 2}, + [1193] = {.lex_state = 41, .external_lex_state = 2}, + [1194] = {.lex_state = 41, .external_lex_state = 2}, + [1195] = {.lex_state = 41, .external_lex_state = 2}, + [1196] = {.lex_state = 41, .external_lex_state = 2}, + [1197] = {.lex_state = 41, .external_lex_state = 2}, + [1198] = {.lex_state = 41, .external_lex_state = 2}, + [1199] = {.lex_state = 41, .external_lex_state = 2}, + [1200] = {.lex_state = 41, .external_lex_state = 2}, + [1201] = {.lex_state = 41, .external_lex_state = 2}, + [1202] = {.lex_state = 41, .external_lex_state = 2}, + [1203] = {.lex_state = 41, .external_lex_state = 2}, + [1204] = {.lex_state = 41, .external_lex_state = 2}, + [1205] = {.lex_state = 41, .external_lex_state = 2}, + [1206] = {.lex_state = 41, .external_lex_state = 2}, + [1207] = {.lex_state = 41, .external_lex_state = 2}, + [1208] = {.lex_state = 41, .external_lex_state = 2}, + [1209] = {.lex_state = 41, .external_lex_state = 2}, + [1210] = {.lex_state = 41, .external_lex_state = 2}, + [1211] = {.lex_state = 41, .external_lex_state = 2}, + [1212] = {.lex_state = 41, .external_lex_state = 2}, + [1213] = {.lex_state = 41, .external_lex_state = 2}, + [1214] = {.lex_state = 41, .external_lex_state = 2}, + [1215] = {.lex_state = 41, .external_lex_state = 2}, + [1216] = {.lex_state = 41, .external_lex_state = 2}, + [1217] = {.lex_state = 41, .external_lex_state = 2}, + [1218] = {.lex_state = 41, .external_lex_state = 2}, + [1219] = {.lex_state = 41, .external_lex_state = 2}, + [1220] = {.lex_state = 40, .external_lex_state = 5}, + [1221] = {.lex_state = 41, .external_lex_state = 2}, + [1222] = {.lex_state = 41, .external_lex_state = 2}, + [1223] = {.lex_state = 41, .external_lex_state = 2}, + [1224] = {.lex_state = 50, .external_lex_state = 2}, + [1225] = {.lex_state = 41, .external_lex_state = 2}, + [1226] = {.lex_state = 41, .external_lex_state = 2}, + [1227] = {.lex_state = 41, .external_lex_state = 2}, + [1228] = {.lex_state = 41, .external_lex_state = 2}, + [1229] = {.lex_state = 41, .external_lex_state = 2}, + [1230] = {.lex_state = 41, .external_lex_state = 2}, + [1231] = {.lex_state = 41, .external_lex_state = 2}, + [1232] = {.lex_state = 41, .external_lex_state = 2}, + [1233] = {.lex_state = 41, .external_lex_state = 2}, + [1234] = {.lex_state = 41, .external_lex_state = 2}, + [1235] = {.lex_state = 41, .external_lex_state = 2}, + [1236] = {.lex_state = 41, .external_lex_state = 2}, + [1237] = {.lex_state = 41, .external_lex_state = 2}, + [1238] = {.lex_state = 41, .external_lex_state = 2}, + [1239] = {.lex_state = 41, .external_lex_state = 2}, + [1240] = {.lex_state = 41, .external_lex_state = 2}, + [1241] = {.lex_state = 41, .external_lex_state = 2}, + [1242] = {.lex_state = 41, .external_lex_state = 2}, + [1243] = {.lex_state = 41, .external_lex_state = 2}, + [1244] = {.lex_state = 41, .external_lex_state = 2}, + [1245] = {.lex_state = 41, .external_lex_state = 2}, + [1246] = {.lex_state = 41, .external_lex_state = 2}, + [1247] = {.lex_state = 41, .external_lex_state = 2}, + [1248] = {.lex_state = 41, .external_lex_state = 2}, + [1249] = {.lex_state = 41, .external_lex_state = 2}, + [1250] = {.lex_state = 41, .external_lex_state = 2}, + [1251] = {.lex_state = 41, .external_lex_state = 2}, + [1252] = {.lex_state = 41, .external_lex_state = 2}, + [1253] = {.lex_state = 42, .external_lex_state = 5}, + [1254] = {.lex_state = 40, .external_lex_state = 2}, + [1255] = {.lex_state = 40, .external_lex_state = 2}, + [1256] = {.lex_state = 40, .external_lex_state = 2}, + [1257] = {.lex_state = 40, .external_lex_state = 2}, + [1258] = {.lex_state = 40, .external_lex_state = 2}, + [1259] = {.lex_state = 40, .external_lex_state = 2}, + [1260] = {.lex_state = 40, .external_lex_state = 2}, + [1261] = {.lex_state = 40, .external_lex_state = 2}, + [1262] = {.lex_state = 48, .external_lex_state = 2}, + [1263] = {.lex_state = 40, .external_lex_state = 2}, + [1264] = {.lex_state = 40, .external_lex_state = 2}, + [1265] = {.lex_state = 40, .external_lex_state = 2}, + [1266] = {.lex_state = 42, .external_lex_state = 5}, + [1267] = {.lex_state = 48, .external_lex_state = 2}, + [1268] = {.lex_state = 40, .external_lex_state = 2}, + [1269] = {.lex_state = 42, .external_lex_state = 5}, + [1270] = {.lex_state = 49, .external_lex_state = 2}, + [1271] = {.lex_state = 40, .external_lex_state = 2}, + [1272] = {.lex_state = 40, .external_lex_state = 2}, + [1273] = {.lex_state = 40, .external_lex_state = 2}, + [1274] = {.lex_state = 40, .external_lex_state = 2}, + [1275] = {.lex_state = 40, .external_lex_state = 2}, + [1276] = {.lex_state = 40, .external_lex_state = 2}, + [1277] = {.lex_state = 40, .external_lex_state = 2}, + [1278] = {.lex_state = 40, .external_lex_state = 2}, + [1279] = {.lex_state = 40, .external_lex_state = 2}, + [1280] = {.lex_state = 42, .external_lex_state = 5}, + [1281] = {.lex_state = 40, .external_lex_state = 2}, + [1282] = {.lex_state = 40, .external_lex_state = 2}, + [1283] = {.lex_state = 40, .external_lex_state = 2}, + [1284] = {.lex_state = 40, .external_lex_state = 2}, + [1285] = {.lex_state = 40, .external_lex_state = 2}, + [1286] = {.lex_state = 42, .external_lex_state = 2}, + [1287] = {.lex_state = 40, .external_lex_state = 2}, + [1288] = {.lex_state = 40, .external_lex_state = 2}, + [1289] = {.lex_state = 40, .external_lex_state = 2}, + [1290] = {.lex_state = 40, .external_lex_state = 2}, + [1291] = {.lex_state = 42, .external_lex_state = 2}, + [1292] = {.lex_state = 42, .external_lex_state = 5}, + [1293] = {.lex_state = 40, .external_lex_state = 2}, + [1294] = {.lex_state = 40, .external_lex_state = 2}, + [1295] = {.lex_state = 40, .external_lex_state = 2}, + [1296] = {.lex_state = 40, .external_lex_state = 2}, + [1297] = {.lex_state = 40, .external_lex_state = 2}, + [1298] = {.lex_state = 42, .external_lex_state = 5}, + [1299] = {.lex_state = 40, .external_lex_state = 2}, + [1300] = {.lex_state = 40, .external_lex_state = 2}, + [1301] = {.lex_state = 40, .external_lex_state = 2}, + [1302] = {.lex_state = 40, .external_lex_state = 2}, + [1303] = {.lex_state = 40, .external_lex_state = 2}, + [1304] = {.lex_state = 40, .external_lex_state = 2}, + [1305] = {.lex_state = 49, .external_lex_state = 2}, + [1306] = {.lex_state = 40, .external_lex_state = 2}, + [1307] = {.lex_state = 40, .external_lex_state = 2}, + [1308] = {.lex_state = 40, .external_lex_state = 2}, + [1309] = {.lex_state = 40, .external_lex_state = 2}, + [1310] = {.lex_state = 40, .external_lex_state = 2}, + [1311] = {.lex_state = 40, .external_lex_state = 2}, + [1312] = {.lex_state = 40, .external_lex_state = 2}, + [1313] = {.lex_state = 40, .external_lex_state = 2}, + [1314] = {.lex_state = 40, .external_lex_state = 2}, + [1315] = {.lex_state = 40, .external_lex_state = 2}, + [1316] = {.lex_state = 40, .external_lex_state = 2}, + [1317] = {.lex_state = 40, .external_lex_state = 2}, + [1318] = {.lex_state = 48, .external_lex_state = 2}, + [1319] = {.lex_state = 40, .external_lex_state = 2}, + [1320] = {.lex_state = 40, .external_lex_state = 2}, + [1321] = {.lex_state = 40, .external_lex_state = 2}, + [1322] = {.lex_state = 42, .external_lex_state = 5}, + [1323] = {.lex_state = 40, .external_lex_state = 2}, + [1324] = {.lex_state = 40, .external_lex_state = 2}, + [1325] = {.lex_state = 40, .external_lex_state = 2}, + [1326] = {.lex_state = 40, .external_lex_state = 2}, + [1327] = {.lex_state = 42, .external_lex_state = 5}, + [1328] = {.lex_state = 42, .external_lex_state = 5}, + [1329] = {.lex_state = 42, .external_lex_state = 5}, + [1330] = {.lex_state = 42, .external_lex_state = 5}, + [1331] = {.lex_state = 48, .external_lex_state = 2}, + [1332] = {.lex_state = 40, .external_lex_state = 2}, + [1333] = {.lex_state = 40, .external_lex_state = 2}, + [1334] = {.lex_state = 40, .external_lex_state = 2}, + [1335] = {.lex_state = 40, .external_lex_state = 2}, + [1336] = {.lex_state = 40, .external_lex_state = 2}, + [1337] = {.lex_state = 40, .external_lex_state = 2}, + [1338] = {.lex_state = 42, .external_lex_state = 5}, + [1339] = {.lex_state = 42, .external_lex_state = 5}, + [1340] = {.lex_state = 42, .external_lex_state = 5}, + [1341] = {.lex_state = 48, .external_lex_state = 2}, + [1342] = {.lex_state = 40, .external_lex_state = 2}, + [1343] = {.lex_state = 40, .external_lex_state = 2}, + [1344] = {.lex_state = 40, .external_lex_state = 2}, + [1345] = {.lex_state = 40, .external_lex_state = 2}, + [1346] = {.lex_state = 42, .external_lex_state = 5}, + [1347] = {.lex_state = 40, .external_lex_state = 2}, + [1348] = {.lex_state = 40, .external_lex_state = 2}, + [1349] = {.lex_state = 40, .external_lex_state = 2}, + [1350] = {.lex_state = 40, .external_lex_state = 2}, + [1351] = {.lex_state = 40, .external_lex_state = 2}, + [1352] = {.lex_state = 40, .external_lex_state = 2}, + [1353] = {.lex_state = 40, .external_lex_state = 2}, + [1354] = {.lex_state = 40, .external_lex_state = 2}, + [1355] = {.lex_state = 40, .external_lex_state = 2}, + [1356] = {.lex_state = 40, .external_lex_state = 2}, + [1357] = {.lex_state = 40, .external_lex_state = 2}, + [1358] = {.lex_state = 40, .external_lex_state = 2}, + [1359] = {.lex_state = 40, .external_lex_state = 2}, + [1360] = {.lex_state = 47, .external_lex_state = 5}, + [1361] = {.lex_state = 42, .external_lex_state = 2}, + [1362] = {.lex_state = 40, .external_lex_state = 2}, + [1363] = {.lex_state = 40, .external_lex_state = 2}, + [1364] = {.lex_state = 40, .external_lex_state = 2}, + [1365] = {.lex_state = 40, .external_lex_state = 2}, + [1366] = {.lex_state = 40, .external_lex_state = 2}, + [1367] = {.lex_state = 40, .external_lex_state = 2}, + [1368] = {.lex_state = 40, .external_lex_state = 2}, + [1369] = {.lex_state = 40, .external_lex_state = 2}, + [1370] = {.lex_state = 40, .external_lex_state = 2}, + [1371] = {.lex_state = 40, .external_lex_state = 2}, + [1372] = {.lex_state = 40, .external_lex_state = 2}, + [1373] = {.lex_state = 40, .external_lex_state = 2}, + [1374] = {.lex_state = 40, .external_lex_state = 2}, + [1375] = {.lex_state = 47, .external_lex_state = 2}, + [1376] = {.lex_state = 40, .external_lex_state = 2}, + [1377] = {.lex_state = 40, .external_lex_state = 2}, + [1378] = {.lex_state = 40, .external_lex_state = 2}, + [1379] = {.lex_state = 40, .external_lex_state = 2}, + [1380] = {.lex_state = 40, .external_lex_state = 2}, + [1381] = {.lex_state = 40, .external_lex_state = 2}, + [1382] = {.lex_state = 40, .external_lex_state = 2}, + [1383] = {.lex_state = 40, .external_lex_state = 2}, + [1384] = {.lex_state = 40, .external_lex_state = 2}, + [1385] = {.lex_state = 40, .external_lex_state = 2}, + [1386] = {.lex_state = 42, .external_lex_state = 5}, + [1387] = {.lex_state = 40, .external_lex_state = 2}, + [1388] = {.lex_state = 40, .external_lex_state = 2}, + [1389] = {.lex_state = 40, .external_lex_state = 2}, + [1390] = {.lex_state = 40, .external_lex_state = 2}, + [1391] = {.lex_state = 40, .external_lex_state = 2}, + [1392] = {.lex_state = 42, .external_lex_state = 5}, + [1393] = {.lex_state = 40, .external_lex_state = 2}, + [1394] = {.lex_state = 40, .external_lex_state = 2}, + [1395] = {.lex_state = 40, .external_lex_state = 2}, + [1396] = {.lex_state = 40, .external_lex_state = 2}, + [1397] = {.lex_state = 40, .external_lex_state = 2}, + [1398] = {.lex_state = 40, .external_lex_state = 2}, + [1399] = {.lex_state = 40, .external_lex_state = 2}, + [1400] = {.lex_state = 40, .external_lex_state = 2}, + [1401] = {.lex_state = 42, .external_lex_state = 5}, + [1402] = {.lex_state = 40, .external_lex_state = 2}, + [1403] = {.lex_state = 40, .external_lex_state = 2}, + [1404] = {.lex_state = 40, .external_lex_state = 2}, + [1405] = {.lex_state = 40, .external_lex_state = 2}, + [1406] = {.lex_state = 40, .external_lex_state = 2}, + [1407] = {.lex_state = 40, .external_lex_state = 2}, + [1408] = {.lex_state = 40, .external_lex_state = 2}, + [1409] = {.lex_state = 40, .external_lex_state = 2}, + [1410] = {.lex_state = 40, .external_lex_state = 2}, + [1411] = {.lex_state = 40, .external_lex_state = 2}, + [1412] = {.lex_state = 40, .external_lex_state = 2}, + [1413] = {.lex_state = 40, .external_lex_state = 2}, + [1414] = {.lex_state = 40, .external_lex_state = 2}, + [1415] = {.lex_state = 40, .external_lex_state = 2}, + [1416] = {.lex_state = 40, .external_lex_state = 2}, + [1417] = {.lex_state = 40, .external_lex_state = 2}, + [1418] = {.lex_state = 40, .external_lex_state = 2}, + [1419] = {.lex_state = 42, .external_lex_state = 2}, + [1420] = {.lex_state = 40, .external_lex_state = 2}, + [1421] = {.lex_state = 40, .external_lex_state = 2}, + [1422] = {.lex_state = 40, .external_lex_state = 2}, + [1423] = {.lex_state = 40, .external_lex_state = 2}, + [1424] = {.lex_state = 42, .external_lex_state = 5}, + [1425] = {.lex_state = 40, .external_lex_state = 2}, + [1426] = {.lex_state = 40, .external_lex_state = 2}, + [1427] = {.lex_state = 40, .external_lex_state = 2}, + [1428] = {.lex_state = 40, .external_lex_state = 2}, + [1429] = {.lex_state = 40, .external_lex_state = 2}, + [1430] = {.lex_state = 40, .external_lex_state = 2}, + [1431] = {.lex_state = 40, .external_lex_state = 2}, + [1432] = {.lex_state = 37, .external_lex_state = 2}, + [1433] = {.lex_state = 37, .external_lex_state = 2}, + [1434] = {.lex_state = 40, .external_lex_state = 2}, + [1435] = {.lex_state = 40, .external_lex_state = 2}, + [1436] = {.lex_state = 42, .external_lex_state = 2}, + [1437] = {.lex_state = 40, .external_lex_state = 2}, + [1438] = {.lex_state = 40, .external_lex_state = 2}, + [1439] = {.lex_state = 40, .external_lex_state = 2}, + [1440] = {.lex_state = 40, .external_lex_state = 2}, + [1441] = {.lex_state = 40, .external_lex_state = 2}, + [1442] = {.lex_state = 47, .external_lex_state = 5}, + [1443] = {.lex_state = 40, .external_lex_state = 2}, + [1444] = {.lex_state = 40, .external_lex_state = 2}, + [1445] = {.lex_state = 40, .external_lex_state = 2}, + [1446] = {.lex_state = 40, .external_lex_state = 2}, + [1447] = {.lex_state = 40, .external_lex_state = 2}, + [1448] = {.lex_state = 40, .external_lex_state = 2}, + [1449] = {.lex_state = 40, .external_lex_state = 2}, + [1450] = {.lex_state = 40, .external_lex_state = 2}, + [1451] = {.lex_state = 40, .external_lex_state = 2}, + [1452] = {.lex_state = 42, .external_lex_state = 5}, + [1453] = {.lex_state = 40, .external_lex_state = 2}, + [1454] = {.lex_state = 40, .external_lex_state = 2}, + [1455] = {.lex_state = 40, .external_lex_state = 2}, + [1456] = {.lex_state = 40, .external_lex_state = 2}, + [1457] = {.lex_state = 42, .external_lex_state = 2}, + [1458] = {.lex_state = 42, .external_lex_state = 2}, + [1459] = {.lex_state = 37, .external_lex_state = 5}, + [1460] = {.lex_state = 42, .external_lex_state = 2}, + [1461] = {.lex_state = 42, .external_lex_state = 2}, + [1462] = {.lex_state = 42, .external_lex_state = 2}, + [1463] = {.lex_state = 42, .external_lex_state = 2}, + [1464] = {.lex_state = 47, .external_lex_state = 2}, + [1465] = {.lex_state = 42, .external_lex_state = 2}, + [1466] = {.lex_state = 42, .external_lex_state = 2}, + [1467] = {.lex_state = 47, .external_lex_state = 2}, + [1468] = {.lex_state = 42, .external_lex_state = 2}, + [1469] = {.lex_state = 37, .external_lex_state = 5}, + [1470] = {.lex_state = 47, .external_lex_state = 2}, + [1471] = {.lex_state = 37, .external_lex_state = 5}, + [1472] = {.lex_state = 47, .external_lex_state = 2}, + [1473] = {.lex_state = 42, .external_lex_state = 2}, + [1474] = {.lex_state = 42, .external_lex_state = 2}, + [1475] = {.lex_state = 37, .external_lex_state = 5}, + [1476] = {.lex_state = 42, .external_lex_state = 2}, + [1477] = {.lex_state = 42, .external_lex_state = 2}, + [1478] = {.lex_state = 37, .external_lex_state = 5}, + [1479] = {.lex_state = 42, .external_lex_state = 2}, + [1480] = {.lex_state = 37, .external_lex_state = 5}, + [1481] = {.lex_state = 42, .external_lex_state = 2}, + [1482] = {.lex_state = 42, .external_lex_state = 2}, + [1483] = {.lex_state = 37, .external_lex_state = 2}, + [1484] = {.lex_state = 37, .external_lex_state = 5}, + [1485] = {.lex_state = 37, .external_lex_state = 2}, + [1486] = {.lex_state = 42, .external_lex_state = 2}, + [1487] = {.lex_state = 42, .external_lex_state = 2}, + [1488] = {.lex_state = 42, .external_lex_state = 2}, + [1489] = {.lex_state = 42, .external_lex_state = 2}, + [1490] = {.lex_state = 37, .external_lex_state = 5}, + [1491] = {.lex_state = 42, .external_lex_state = 2}, + [1492] = {.lex_state = 37, .external_lex_state = 5}, + [1493] = {.lex_state = 42, .external_lex_state = 2}, + [1494] = {.lex_state = 42, .external_lex_state = 2}, + [1495] = {.lex_state = 37, .external_lex_state = 5}, + [1496] = {.lex_state = 37, .external_lex_state = 5}, + [1497] = {.lex_state = 37, .external_lex_state = 5}, + [1498] = {.lex_state = 42, .external_lex_state = 2}, + [1499] = {.lex_state = 42, .external_lex_state = 2}, + [1500] = {.lex_state = 42, .external_lex_state = 2}, + [1501] = {.lex_state = 42, .external_lex_state = 2}, + [1502] = {.lex_state = 42, .external_lex_state = 2}, + [1503] = {.lex_state = 42, .external_lex_state = 2}, + [1504] = {.lex_state = 42, .external_lex_state = 2}, + [1505] = {.lex_state = 42, .external_lex_state = 2}, + [1506] = {.lex_state = 42, .external_lex_state = 2}, + [1507] = {.lex_state = 42, .external_lex_state = 2}, + [1508] = {.lex_state = 42, .external_lex_state = 2}, + [1509] = {.lex_state = 42, .external_lex_state = 2}, + [1510] = {.lex_state = 42, .external_lex_state = 2}, + [1511] = {.lex_state = 42, .external_lex_state = 2}, + [1512] = {.lex_state = 42, .external_lex_state = 2}, + [1513] = {.lex_state = 42, .external_lex_state = 2}, + [1514] = {.lex_state = 42, .external_lex_state = 2}, + [1515] = {.lex_state = 42, .external_lex_state = 2}, + [1516] = {.lex_state = 42, .external_lex_state = 2}, + [1517] = {.lex_state = 42, .external_lex_state = 2}, + [1518] = {.lex_state = 42, .external_lex_state = 2}, + [1519] = {.lex_state = 42, .external_lex_state = 2}, + [1520] = {.lex_state = 37, .external_lex_state = 5}, + [1521] = {.lex_state = 42, .external_lex_state = 2}, + [1522] = {.lex_state = 42, .external_lex_state = 2}, + [1523] = {.lex_state = 42, .external_lex_state = 2}, + [1524] = {.lex_state = 42, .external_lex_state = 2}, + [1525] = {.lex_state = 42, .external_lex_state = 2}, + [1526] = {.lex_state = 47, .external_lex_state = 2}, + [1527] = {.lex_state = 42, .external_lex_state = 2}, + [1528] = {.lex_state = 42, .external_lex_state = 2}, + [1529] = {.lex_state = 42, .external_lex_state = 2}, + [1530] = {.lex_state = 37, .external_lex_state = 5}, + [1531] = {.lex_state = 42, .external_lex_state = 2}, + [1532] = {.lex_state = 42, .external_lex_state = 2}, + [1533] = {.lex_state = 42, .external_lex_state = 2}, + [1534] = {.lex_state = 42, .external_lex_state = 2}, + [1535] = {.lex_state = 42, .external_lex_state = 2}, + [1536] = {.lex_state = 42, .external_lex_state = 2}, + [1537] = {.lex_state = 42, .external_lex_state = 2}, + [1538] = {.lex_state = 42, .external_lex_state = 2}, + [1539] = {.lex_state = 42, .external_lex_state = 2}, + [1540] = {.lex_state = 42, .external_lex_state = 2}, + [1541] = {.lex_state = 42, .external_lex_state = 2}, + [1542] = {.lex_state = 42, .external_lex_state = 2}, + [1543] = {.lex_state = 42, .external_lex_state = 2}, + [1544] = {.lex_state = 42, .external_lex_state = 2}, + [1545] = {.lex_state = 42, .external_lex_state = 2}, + [1546] = {.lex_state = 42, .external_lex_state = 2}, + [1547] = {.lex_state = 42, .external_lex_state = 2}, + [1548] = {.lex_state = 42, .external_lex_state = 2}, + [1549] = {.lex_state = 42, .external_lex_state = 2}, + [1550] = {.lex_state = 42, .external_lex_state = 2}, + [1551] = {.lex_state = 42, .external_lex_state = 2}, + [1552] = {.lex_state = 42, .external_lex_state = 2}, + [1553] = {.lex_state = 42, .external_lex_state = 2}, + [1554] = {.lex_state = 37, .external_lex_state = 2}, + [1555] = {.lex_state = 42, .external_lex_state = 2}, + [1556] = {.lex_state = 42, .external_lex_state = 2}, + [1557] = {.lex_state = 42, .external_lex_state = 2}, + [1558] = {.lex_state = 42, .external_lex_state = 2}, + [1559] = {.lex_state = 42, .external_lex_state = 2}, + [1560] = {.lex_state = 42, .external_lex_state = 2}, + [1561] = {.lex_state = 42, .external_lex_state = 2}, + [1562] = {.lex_state = 42, .external_lex_state = 2}, + [1563] = {.lex_state = 42, .external_lex_state = 2}, + [1564] = {.lex_state = 42, .external_lex_state = 2}, + [1565] = {.lex_state = 42, .external_lex_state = 2}, + [1566] = {.lex_state = 42, .external_lex_state = 2}, + [1567] = {.lex_state = 42, .external_lex_state = 2}, + [1568] = {.lex_state = 42, .external_lex_state = 2}, + [1569] = {.lex_state = 42, .external_lex_state = 2}, + [1570] = {.lex_state = 37, .external_lex_state = 5}, + [1571] = {.lex_state = 42, .external_lex_state = 2}, + [1572] = {.lex_state = 42, .external_lex_state = 2}, + [1573] = {.lex_state = 42, .external_lex_state = 2}, + [1574] = {.lex_state = 42, .external_lex_state = 2}, + [1575] = {.lex_state = 42, .external_lex_state = 2}, + [1576] = {.lex_state = 37, .external_lex_state = 5}, + [1577] = {.lex_state = 42, .external_lex_state = 2}, + [1578] = {.lex_state = 42, .external_lex_state = 2}, + [1579] = {.lex_state = 42, .external_lex_state = 2}, + [1580] = {.lex_state = 42, .external_lex_state = 2}, + [1581] = {.lex_state = 42, .external_lex_state = 2}, + [1582] = {.lex_state = 42, .external_lex_state = 2}, + [1583] = {.lex_state = 42, .external_lex_state = 2}, + [1584] = {.lex_state = 42, .external_lex_state = 2}, + [1585] = {.lex_state = 42, .external_lex_state = 2}, + [1586] = {.lex_state = 37, .external_lex_state = 5}, + [1587] = {.lex_state = 42, .external_lex_state = 2}, + [1588] = {.lex_state = 42, .external_lex_state = 2}, + [1589] = {.lex_state = 42, .external_lex_state = 2}, + [1590] = {.lex_state = 42, .external_lex_state = 2}, + [1591] = {.lex_state = 42, .external_lex_state = 2}, + [1592] = {.lex_state = 42, .external_lex_state = 2}, + [1593] = {.lex_state = 42, .external_lex_state = 2}, + [1594] = {.lex_state = 42, .external_lex_state = 2}, + [1595] = {.lex_state = 42, .external_lex_state = 2}, + [1596] = {.lex_state = 42, .external_lex_state = 2}, + [1597] = {.lex_state = 42, .external_lex_state = 2}, + [1598] = {.lex_state = 42, .external_lex_state = 2}, + [1599] = {.lex_state = 42, .external_lex_state = 2}, + [1600] = {.lex_state = 42, .external_lex_state = 2}, + [1601] = {.lex_state = 42, .external_lex_state = 2}, + [1602] = {.lex_state = 42, .external_lex_state = 2}, + [1603] = {.lex_state = 42, .external_lex_state = 2}, + [1604] = {.lex_state = 42, .external_lex_state = 2}, + [1605] = {.lex_state = 42, .external_lex_state = 2}, + [1606] = {.lex_state = 42, .external_lex_state = 2}, + [1607] = {.lex_state = 42, .external_lex_state = 2}, + [1608] = {.lex_state = 42, .external_lex_state = 2}, + [1609] = {.lex_state = 42, .external_lex_state = 2}, + [1610] = {.lex_state = 37, .external_lex_state = 5}, + [1611] = {.lex_state = 42, .external_lex_state = 2}, + [1612] = {.lex_state = 42, .external_lex_state = 2}, + [1613] = {.lex_state = 42, .external_lex_state = 2}, + [1614] = {.lex_state = 42, .external_lex_state = 2}, + [1615] = {.lex_state = 42, .external_lex_state = 2}, + [1616] = {.lex_state = 37, .external_lex_state = 5}, + [1617] = {.lex_state = 42, .external_lex_state = 2}, + [1618] = {.lex_state = 42, .external_lex_state = 2}, + [1619] = {.lex_state = 42, .external_lex_state = 2}, + [1620] = {.lex_state = 42, .external_lex_state = 2}, + [1621] = {.lex_state = 42, .external_lex_state = 2}, + [1622] = {.lex_state = 42, .external_lex_state = 2}, + [1623] = {.lex_state = 42, .external_lex_state = 2}, + [1624] = {.lex_state = 42, .external_lex_state = 2}, + [1625] = {.lex_state = 42, .external_lex_state = 2}, + [1626] = {.lex_state = 42, .external_lex_state = 2}, + [1627] = {.lex_state = 42, .external_lex_state = 2}, + [1628] = {.lex_state = 42, .external_lex_state = 2}, + [1629] = {.lex_state = 42, .external_lex_state = 2}, + [1630] = {.lex_state = 42, .external_lex_state = 2}, + [1631] = {.lex_state = 42, .external_lex_state = 2}, + [1632] = {.lex_state = 42, .external_lex_state = 2}, + [1633] = {.lex_state = 42, .external_lex_state = 2}, + [1634] = {.lex_state = 42, .external_lex_state = 2}, + [1635] = {.lex_state = 42, .external_lex_state = 2}, + [1636] = {.lex_state = 42, .external_lex_state = 2}, + [1637] = {.lex_state = 42, .external_lex_state = 2}, + [1638] = {.lex_state = 42, .external_lex_state = 2}, + [1639] = {.lex_state = 42, .external_lex_state = 2}, + [1640] = {.lex_state = 42, .external_lex_state = 2}, + [1641] = {.lex_state = 42, .external_lex_state = 2}, + [1642] = {.lex_state = 42, .external_lex_state = 2}, + [1643] = {.lex_state = 42, .external_lex_state = 2}, + [1644] = {.lex_state = 42, .external_lex_state = 2}, + [1645] = {.lex_state = 42, .external_lex_state = 2}, + [1646] = {.lex_state = 42, .external_lex_state = 2}, + [1647] = {.lex_state = 42, .external_lex_state = 2}, + [1648] = {.lex_state = 42, .external_lex_state = 2}, + [1649] = {.lex_state = 42, .external_lex_state = 2}, + [1650] = {.lex_state = 37, .external_lex_state = 5}, + [1651] = {.lex_state = 37, .external_lex_state = 2}, + [1652] = {.lex_state = 37, .external_lex_state = 2}, + [1653] = {.lex_state = 37, .external_lex_state = 2}, + [1654] = {.lex_state = 37, .external_lex_state = 2}, + [1655] = {.lex_state = 37, .external_lex_state = 2}, + [1656] = {.lex_state = 37, .external_lex_state = 2}, + [1657] = {.lex_state = 37, .external_lex_state = 2}, + [1658] = {.lex_state = 37, .external_lex_state = 2}, + [1659] = {.lex_state = 37, .external_lex_state = 2}, + [1660] = {.lex_state = 37, .external_lex_state = 2}, + [1661] = {.lex_state = 37, .external_lex_state = 2}, + [1662] = {.lex_state = 37, .external_lex_state = 2}, + [1663] = {.lex_state = 37, .external_lex_state = 2}, + [1664] = {.lex_state = 37, .external_lex_state = 2}, + [1665] = {.lex_state = 37, .external_lex_state = 2}, + [1666] = {.lex_state = 37, .external_lex_state = 2}, + [1667] = {.lex_state = 37, .external_lex_state = 2}, + [1668] = {.lex_state = 37, .external_lex_state = 2}, + [1669] = {.lex_state = 37, .external_lex_state = 2}, + [1670] = {.lex_state = 37, .external_lex_state = 2}, + [1671] = {.lex_state = 37, .external_lex_state = 2}, + [1672] = {.lex_state = 37, .external_lex_state = 2}, + [1673] = {.lex_state = 37, .external_lex_state = 2}, + [1674] = {.lex_state = 37, .external_lex_state = 2}, + [1675] = {.lex_state = 37, .external_lex_state = 2}, + [1676] = {.lex_state = 37, .external_lex_state = 2}, + [1677] = {.lex_state = 37, .external_lex_state = 2}, + [1678] = {.lex_state = 37, .external_lex_state = 2}, + [1679] = {.lex_state = 37, .external_lex_state = 2}, + [1680] = {.lex_state = 37, .external_lex_state = 2}, + [1681] = {.lex_state = 37, .external_lex_state = 2}, + [1682] = {.lex_state = 37, .external_lex_state = 2}, + [1683] = {.lex_state = 37, .external_lex_state = 2}, + [1684] = {.lex_state = 37, .external_lex_state = 2}, + [1685] = {.lex_state = 37, .external_lex_state = 2}, + [1686] = {.lex_state = 37, .external_lex_state = 2}, + [1687] = {.lex_state = 37, .external_lex_state = 2}, + [1688] = {.lex_state = 37, .external_lex_state = 2}, + [1689] = {.lex_state = 37, .external_lex_state = 2}, + [1690] = {.lex_state = 37, .external_lex_state = 2}, + [1691] = {.lex_state = 37, .external_lex_state = 2}, + [1692] = {.lex_state = 37, .external_lex_state = 2}, + [1693] = {.lex_state = 37, .external_lex_state = 2}, + [1694] = {.lex_state = 37, .external_lex_state = 2}, + [1695] = {.lex_state = 37, .external_lex_state = 2}, + [1696] = {.lex_state = 37, .external_lex_state = 2}, + [1697] = {.lex_state = 37, .external_lex_state = 2}, + [1698] = {.lex_state = 37, .external_lex_state = 2}, + [1699] = {.lex_state = 37, .external_lex_state = 2}, + [1700] = {.lex_state = 37, .external_lex_state = 2}, + [1701] = {.lex_state = 37, .external_lex_state = 2}, + [1702] = {.lex_state = 37, .external_lex_state = 2}, + [1703] = {.lex_state = 37, .external_lex_state = 2}, + [1704] = {.lex_state = 37, .external_lex_state = 2}, + [1705] = {.lex_state = 37, .external_lex_state = 2}, + [1706] = {.lex_state = 37, .external_lex_state = 2}, + [1707] = {.lex_state = 37, .external_lex_state = 2}, + [1708] = {.lex_state = 37, .external_lex_state = 2}, + [1709] = {.lex_state = 37, .external_lex_state = 2}, + [1710] = {.lex_state = 37, .external_lex_state = 2}, + [1711] = {.lex_state = 37, .external_lex_state = 2}, + [1712] = {.lex_state = 37, .external_lex_state = 2}, + [1713] = {.lex_state = 37, .external_lex_state = 2}, + [1714] = {.lex_state = 37, .external_lex_state = 2}, + [1715] = {.lex_state = 37, .external_lex_state = 2}, + [1716] = {.lex_state = 37, .external_lex_state = 2}, + [1717] = {.lex_state = 37, .external_lex_state = 2}, + [1718] = {.lex_state = 37, .external_lex_state = 2}, + [1719] = {.lex_state = 37, .external_lex_state = 2}, + [1720] = {.lex_state = 37, .external_lex_state = 2}, + [1721] = {.lex_state = 37, .external_lex_state = 2}, + [1722] = {.lex_state = 37, .external_lex_state = 2}, + [1723] = {.lex_state = 37, .external_lex_state = 2}, + [1724] = {.lex_state = 37, .external_lex_state = 2}, + [1725] = {.lex_state = 37, .external_lex_state = 2}, + [1726] = {.lex_state = 37, .external_lex_state = 2}, + [1727] = {.lex_state = 37, .external_lex_state = 2}, + [1728] = {.lex_state = 37, .external_lex_state = 2}, + [1729] = {.lex_state = 37, .external_lex_state = 2}, + [1730] = {.lex_state = 37, .external_lex_state = 2}, + [1731] = {.lex_state = 37, .external_lex_state = 2}, + [1732] = {.lex_state = 37, .external_lex_state = 2}, + [1733] = {.lex_state = 37, .external_lex_state = 2}, + [1734] = {.lex_state = 37, .external_lex_state = 2}, + [1735] = {.lex_state = 37, .external_lex_state = 2}, + [1736] = {.lex_state = 37, .external_lex_state = 2}, + [1737] = {.lex_state = 37, .external_lex_state = 2}, + [1738] = {.lex_state = 37, .external_lex_state = 2}, + [1739] = {.lex_state = 37, .external_lex_state = 2}, + [1740] = {.lex_state = 37, .external_lex_state = 2}, + [1741] = {.lex_state = 37, .external_lex_state = 2}, + [1742] = {.lex_state = 37, .external_lex_state = 2}, + [1743] = {.lex_state = 37, .external_lex_state = 2}, + [1744] = {.lex_state = 37, .external_lex_state = 2}, + [1745] = {.lex_state = 37, .external_lex_state = 2}, + [1746] = {.lex_state = 37, .external_lex_state = 2}, + [1747] = {.lex_state = 37, .external_lex_state = 2}, + [1748] = {.lex_state = 37, .external_lex_state = 2}, + [1749] = {.lex_state = 37, .external_lex_state = 2}, + [1750] = {.lex_state = 37, .external_lex_state = 2}, + [1751] = {.lex_state = 37, .external_lex_state = 2}, + [1752] = {.lex_state = 37, .external_lex_state = 2}, + [1753] = {.lex_state = 37, .external_lex_state = 2}, + [1754] = {.lex_state = 37, .external_lex_state = 2}, + [1755] = {.lex_state = 37, .external_lex_state = 2}, + [1756] = {.lex_state = 37, .external_lex_state = 2}, + [1757] = {.lex_state = 37, .external_lex_state = 2}, + [1758] = {.lex_state = 37, .external_lex_state = 2}, + [1759] = {.lex_state = 37, .external_lex_state = 2}, + [1760] = {.lex_state = 37, .external_lex_state = 2}, + [1761] = {.lex_state = 37, .external_lex_state = 2}, + [1762] = {.lex_state = 37, .external_lex_state = 2}, + [1763] = {.lex_state = 37, .external_lex_state = 2}, + [1764] = {.lex_state = 37, .external_lex_state = 2}, + [1765] = {.lex_state = 37, .external_lex_state = 2}, + [1766] = {.lex_state = 37, .external_lex_state = 2}, + [1767] = {.lex_state = 37, .external_lex_state = 2}, + [1768] = {.lex_state = 37, .external_lex_state = 2}, + [1769] = {.lex_state = 37, .external_lex_state = 2}, + [1770] = {.lex_state = 37, .external_lex_state = 2}, + [1771] = {.lex_state = 37, .external_lex_state = 2}, + [1772] = {.lex_state = 37, .external_lex_state = 2}, + [1773] = {.lex_state = 37, .external_lex_state = 2}, + [1774] = {.lex_state = 37, .external_lex_state = 2}, + [1775] = {.lex_state = 37, .external_lex_state = 2}, + [1776] = {.lex_state = 37, .external_lex_state = 2}, + [1777] = {.lex_state = 37, .external_lex_state = 2}, + [1778] = {.lex_state = 37, .external_lex_state = 2}, + [1779] = {.lex_state = 37, .external_lex_state = 2}, + [1780] = {.lex_state = 37, .external_lex_state = 2}, + [1781] = {.lex_state = 37, .external_lex_state = 2}, + [1782] = {.lex_state = 37, .external_lex_state = 2}, + [1783] = {.lex_state = 37, .external_lex_state = 2}, + [1784] = {.lex_state = 37, .external_lex_state = 2}, + [1785] = {.lex_state = 37, .external_lex_state = 2}, + [1786] = {.lex_state = 37, .external_lex_state = 2}, + [1787] = {.lex_state = 37, .external_lex_state = 2}, + [1788] = {.lex_state = 37, .external_lex_state = 2}, + [1789] = {.lex_state = 37, .external_lex_state = 2}, + [1790] = {.lex_state = 37, .external_lex_state = 2}, + [1791] = {.lex_state = 37, .external_lex_state = 2}, + [1792] = {.lex_state = 37, .external_lex_state = 2}, + [1793] = {.lex_state = 37, .external_lex_state = 2}, + [1794] = {.lex_state = 37, .external_lex_state = 2}, + [1795] = {.lex_state = 37, .external_lex_state = 2}, + [1796] = {.lex_state = 37, .external_lex_state = 2}, + [1797] = {.lex_state = 37, .external_lex_state = 2}, + [1798] = {.lex_state = 37, .external_lex_state = 2}, + [1799] = {.lex_state = 37, .external_lex_state = 2}, + [1800] = {.lex_state = 37, .external_lex_state = 2}, + [1801] = {.lex_state = 37, .external_lex_state = 2}, + [1802] = {.lex_state = 37, .external_lex_state = 2}, + [1803] = {.lex_state = 37, .external_lex_state = 2}, + [1804] = {.lex_state = 37, .external_lex_state = 2}, + [1805] = {.lex_state = 37, .external_lex_state = 2}, + [1806] = {.lex_state = 37, .external_lex_state = 2}, + [1807] = {.lex_state = 37, .external_lex_state = 2}, + [1808] = {.lex_state = 37, .external_lex_state = 2}, + [1809] = {.lex_state = 37, .external_lex_state = 2}, + [1810] = {.lex_state = 37, .external_lex_state = 2}, + [1811] = {.lex_state = 37, .external_lex_state = 2}, + [1812] = {.lex_state = 37, .external_lex_state = 2}, + [1813] = {.lex_state = 37, .external_lex_state = 2}, + [1814] = {.lex_state = 37, .external_lex_state = 2}, + [1815] = {.lex_state = 37, .external_lex_state = 2}, + [1816] = {.lex_state = 37, .external_lex_state = 2}, + [1817] = {.lex_state = 37, .external_lex_state = 2}, + [1818] = {.lex_state = 37, .external_lex_state = 2}, + [1819] = {.lex_state = 37, .external_lex_state = 2}, + [1820] = {.lex_state = 37, .external_lex_state = 2}, + [1821] = {.lex_state = 37, .external_lex_state = 2}, + [1822] = {.lex_state = 37, .external_lex_state = 2}, + [1823] = {.lex_state = 37, .external_lex_state = 2}, + [1824] = {.lex_state = 37, .external_lex_state = 2}, + [1825] = {.lex_state = 37, .external_lex_state = 2}, + [1826] = {.lex_state = 37, .external_lex_state = 2}, + [1827] = {.lex_state = 37, .external_lex_state = 2}, + [1828] = {.lex_state = 37, .external_lex_state = 2}, + [1829] = {.lex_state = 29, .external_lex_state = 4}, + [1830] = {.lex_state = 29, .external_lex_state = 4}, + [1831] = {.lex_state = 29, .external_lex_state = 4}, + [1832] = {.lex_state = 29, .external_lex_state = 4}, + [1833] = {.lex_state = 28, .external_lex_state = 4}, + [1834] = {.lex_state = 29, .external_lex_state = 4}, + [1835] = {.lex_state = 28, .external_lex_state = 4}, + [1836] = {.lex_state = 29, .external_lex_state = 4}, + [1837] = {.lex_state = 29, .external_lex_state = 4}, + [1838] = {.lex_state = 28, .external_lex_state = 4}, + [1839] = {.lex_state = 29, .external_lex_state = 4}, + [1840] = {.lex_state = 29, .external_lex_state = 4}, + [1841] = {.lex_state = 38, .external_lex_state = 2}, + [1842] = {.lex_state = 29, .external_lex_state = 4}, + [1843] = {.lex_state = 29, .external_lex_state = 4}, + [1844] = {.lex_state = 38, .external_lex_state = 2}, + [1845] = {.lex_state = 28, .external_lex_state = 4}, + [1846] = {.lex_state = 59, .external_lex_state = 2}, + [1847] = {.lex_state = 38, .external_lex_state = 2}, + [1848] = {.lex_state = 38, .external_lex_state = 2}, + [1849] = {.lex_state = 29, .external_lex_state = 4}, + [1850] = {.lex_state = 29, .external_lex_state = 4}, + [1851] = {.lex_state = 29, .external_lex_state = 4}, + [1852] = {.lex_state = 28, .external_lex_state = 4}, + [1853] = {.lex_state = 59, .external_lex_state = 2}, + [1854] = {.lex_state = 29, .external_lex_state = 4}, + [1855] = {.lex_state = 29, .external_lex_state = 4}, + [1856] = {.lex_state = 29, .external_lex_state = 4}, + [1857] = {.lex_state = 29, .external_lex_state = 4}, + [1858] = {.lex_state = 29, .external_lex_state = 4}, + [1859] = {.lex_state = 29, .external_lex_state = 4}, + [1860] = {.lex_state = 29, .external_lex_state = 4}, + [1861] = {.lex_state = 38, .external_lex_state = 2}, + [1862] = {.lex_state = 59, .external_lex_state = 2}, + [1863] = {.lex_state = 38, .external_lex_state = 2}, + [1864] = {.lex_state = 38, .external_lex_state = 2}, + [1865] = {.lex_state = 38, .external_lex_state = 2}, + [1866] = {.lex_state = 59, .external_lex_state = 2}, + [1867] = {.lex_state = 29, .external_lex_state = 4}, + [1868] = {.lex_state = 29, .external_lex_state = 4}, + [1869] = {.lex_state = 38, .external_lex_state = 2}, + [1870] = {.lex_state = 38, .external_lex_state = 2}, + [1871] = {.lex_state = 28, .external_lex_state = 4}, + [1872] = {.lex_state = 28, .external_lex_state = 4}, + [1873] = {.lex_state = 28, .external_lex_state = 4}, + [1874] = {.lex_state = 59, .external_lex_state = 2}, + [1875] = {.lex_state = 29, .external_lex_state = 4}, + [1876] = {.lex_state = 38, .external_lex_state = 2}, + [1877] = {.lex_state = 29, .external_lex_state = 4}, + [1878] = {.lex_state = 38, .external_lex_state = 2}, + [1879] = {.lex_state = 38, .external_lex_state = 2}, + [1880] = {.lex_state = 29, .external_lex_state = 4}, + [1881] = {.lex_state = 29, .external_lex_state = 4}, + [1882] = {.lex_state = 29, .external_lex_state = 4}, + [1883] = {.lex_state = 29, .external_lex_state = 4}, + [1884] = {.lex_state = 59, .external_lex_state = 2}, + [1885] = {.lex_state = 28, .external_lex_state = 4}, + [1886] = {.lex_state = 28, .external_lex_state = 4}, + [1887] = {.lex_state = 59, .external_lex_state = 2}, + [1888] = {.lex_state = 59, .external_lex_state = 2}, + [1889] = {.lex_state = 28, .external_lex_state = 4}, + [1890] = {.lex_state = 28, .external_lex_state = 4}, + [1891] = {.lex_state = 59, .external_lex_state = 2}, + [1892] = {.lex_state = 59, .external_lex_state = 2}, + [1893] = {.lex_state = 28, .external_lex_state = 4}, + [1894] = {.lex_state = 28, .external_lex_state = 4}, + [1895] = {.lex_state = 28, .external_lex_state = 4}, + [1896] = {.lex_state = 59, .external_lex_state = 2}, + [1897] = {.lex_state = 59, .external_lex_state = 2}, + [1898] = {.lex_state = 28, .external_lex_state = 4}, + [1899] = {.lex_state = 28, .external_lex_state = 4}, + [1900] = {.lex_state = 28, .external_lex_state = 4}, + [1901] = {.lex_state = 59, .external_lex_state = 2}, + [1902] = {.lex_state = 28, .external_lex_state = 4}, + [1903] = {.lex_state = 28, .external_lex_state = 4}, + [1904] = {.lex_state = 28, .external_lex_state = 4}, + [1905] = {.lex_state = 28, .external_lex_state = 4}, + [1906] = {.lex_state = 28, .external_lex_state = 4}, + [1907] = {.lex_state = 28, .external_lex_state = 4}, + [1908] = {.lex_state = 28, .external_lex_state = 4}, + [1909] = {.lex_state = 28, .external_lex_state = 4}, + [1910] = {.lex_state = 28, .external_lex_state = 4}, + [1911] = {.lex_state = 28, .external_lex_state = 4}, + [1912] = {.lex_state = 59, .external_lex_state = 2}, + [1913] = {.lex_state = 28, .external_lex_state = 4}, + [1914] = {.lex_state = 59, .external_lex_state = 2}, + [1915] = {.lex_state = 59, .external_lex_state = 2}, + [1916] = {.lex_state = 60, .external_lex_state = 2}, + [1917] = {.lex_state = 60, .external_lex_state = 2}, + [1918] = {.lex_state = 60, .external_lex_state = 2}, + [1919] = {.lex_state = 60, .external_lex_state = 2}, + [1920] = {.lex_state = 60, .external_lex_state = 2}, + [1921] = {.lex_state = 60, .external_lex_state = 2}, + [1922] = {.lex_state = 60, .external_lex_state = 2}, + [1923] = {.lex_state = 60, .external_lex_state = 2}, + [1924] = {.lex_state = 60, .external_lex_state = 2}, + [1925] = {.lex_state = 60, .external_lex_state = 2}, + [1926] = {.lex_state = 60, .external_lex_state = 2}, + [1927] = {.lex_state = 60, .external_lex_state = 2}, + [1928] = {.lex_state = 60, .external_lex_state = 2}, + [1929] = {.lex_state = 60, .external_lex_state = 2}, + [1930] = {.lex_state = 60, .external_lex_state = 2}, + [1931] = {.lex_state = 60, .external_lex_state = 2}, + [1932] = {.lex_state = 60, .external_lex_state = 2}, + [1933] = {.lex_state = 60, .external_lex_state = 2}, + [1934] = {.lex_state = 60, .external_lex_state = 2}, + [1935] = {.lex_state = 60, .external_lex_state = 2}, + [1936] = {.lex_state = 60, .external_lex_state = 2}, + [1937] = {.lex_state = 60, .external_lex_state = 2}, + [1938] = {.lex_state = 38, .external_lex_state = 2}, + [1939] = {.lex_state = 60, .external_lex_state = 2}, + [1940] = {.lex_state = 60, .external_lex_state = 2}, + [1941] = {.lex_state = 60, .external_lex_state = 2}, + [1942] = {.lex_state = 60, .external_lex_state = 2}, + [1943] = {.lex_state = 60, .external_lex_state = 2}, + [1944] = {.lex_state = 60, .external_lex_state = 2}, + [1945] = {.lex_state = 60, .external_lex_state = 2}, + [1946] = {.lex_state = 60, .external_lex_state = 2}, + [1947] = {.lex_state = 60, .external_lex_state = 2}, + [1948] = {.lex_state = 60, .external_lex_state = 2}, + [1949] = {.lex_state = 60, .external_lex_state = 2}, + [1950] = {.lex_state = 60, .external_lex_state = 2}, + [1951] = {.lex_state = 60, .external_lex_state = 2}, + [1952] = {.lex_state = 60, .external_lex_state = 2}, + [1953] = {.lex_state = 60, .external_lex_state = 2}, + [1954] = {.lex_state = 60, .external_lex_state = 2}, + [1955] = {.lex_state = 60, .external_lex_state = 2}, + [1956] = {.lex_state = 60, .external_lex_state = 2}, + [1957] = {.lex_state = 60, .external_lex_state = 2}, + [1958] = {.lex_state = 60, .external_lex_state = 2}, + [1959] = {.lex_state = 60, .external_lex_state = 2}, + [1960] = {.lex_state = 60, .external_lex_state = 2}, + [1961] = {.lex_state = 60, .external_lex_state = 2}, + [1962] = {.lex_state = 60, .external_lex_state = 2}, + [1963] = {.lex_state = 38, .external_lex_state = 2}, + [1964] = {.lex_state = 60, .external_lex_state = 2}, + [1965] = {.lex_state = 60, .external_lex_state = 2}, + [1966] = {.lex_state = 60, .external_lex_state = 2}, + [1967] = {.lex_state = 60, .external_lex_state = 2}, + [1968] = {.lex_state = 60, .external_lex_state = 2}, + [1969] = {.lex_state = 60, .external_lex_state = 2}, + [1970] = {.lex_state = 60, .external_lex_state = 2}, + [1971] = {.lex_state = 60, .external_lex_state = 2}, + [1972] = {.lex_state = 60, .external_lex_state = 2}, + [1973] = {.lex_state = 59, .external_lex_state = 2}, + [1974] = {.lex_state = 59, .external_lex_state = 2}, + [1975] = {.lex_state = 59, .external_lex_state = 2}, + [1976] = {.lex_state = 59, .external_lex_state = 2}, + [1977] = {.lex_state = 59, .external_lex_state = 2}, + [1978] = {.lex_state = 59, .external_lex_state = 2}, + [1979] = {.lex_state = 59, .external_lex_state = 2}, + [1980] = {.lex_state = 59, .external_lex_state = 2}, + [1981] = {.lex_state = 59, .external_lex_state = 2}, + [1982] = {.lex_state = 59, .external_lex_state = 2}, + [1983] = {.lex_state = 15, .external_lex_state = 4}, + [1984] = {.lex_state = 15, .external_lex_state = 4}, + [1985] = {.lex_state = 15, .external_lex_state = 4}, + [1986] = {.lex_state = 15, .external_lex_state = 4}, + [1987] = {.lex_state = 15, .external_lex_state = 4}, + [1988] = {.lex_state = 15, .external_lex_state = 4}, + [1989] = {.lex_state = 59, .external_lex_state = 2}, + [1990] = {.lex_state = 15, .external_lex_state = 4}, + [1991] = {.lex_state = 15, .external_lex_state = 4}, + [1992] = {.lex_state = 15, .external_lex_state = 4}, + [1993] = {.lex_state = 59, .external_lex_state = 2}, + [1994] = {.lex_state = 59, .external_lex_state = 2}, + [1995] = {.lex_state = 15, .external_lex_state = 4}, + [1996] = {.lex_state = 59, .external_lex_state = 2}, + [1997] = {.lex_state = 15, .external_lex_state = 4}, + [1998] = {.lex_state = 59, .external_lex_state = 2}, + [1999] = {.lex_state = 15, .external_lex_state = 4}, + [2000] = {.lex_state = 59, .external_lex_state = 2}, + [2001] = {.lex_state = 59, .external_lex_state = 2}, + [2002] = {.lex_state = 59, .external_lex_state = 2}, + [2003] = {.lex_state = 59, .external_lex_state = 2}, + [2004] = {.lex_state = 59, .external_lex_state = 2}, + [2005] = {.lex_state = 59, .external_lex_state = 2}, + [2006] = {.lex_state = 59, .external_lex_state = 2}, + [2007] = {.lex_state = 59, .external_lex_state = 2}, + [2008] = {.lex_state = 59, .external_lex_state = 2}, + [2009] = {.lex_state = 59, .external_lex_state = 2}, + [2010] = {.lex_state = 59, .external_lex_state = 2}, + [2011] = {.lex_state = 59, .external_lex_state = 2}, + [2012] = {.lex_state = 59, .external_lex_state = 2}, + [2013] = {.lex_state = 59, .external_lex_state = 2}, + [2014] = {.lex_state = 36, .external_lex_state = 2}, + [2015] = {.lex_state = 59, .external_lex_state = 2}, + [2016] = {.lex_state = 59, .external_lex_state = 2}, + [2017] = {.lex_state = 59, .external_lex_state = 2}, + [2018] = {.lex_state = 59, .external_lex_state = 2}, + [2019] = {.lex_state = 59, .external_lex_state = 2}, + [2020] = {.lex_state = 59, .external_lex_state = 2}, + [2021] = {.lex_state = 59, .external_lex_state = 2}, + [2022] = {.lex_state = 59, .external_lex_state = 2}, + [2023] = {.lex_state = 59, .external_lex_state = 2}, + [2024] = {.lex_state = 59, .external_lex_state = 2}, + [2025] = {.lex_state = 59, .external_lex_state = 2}, + [2026] = {.lex_state = 59, .external_lex_state = 2}, + [2027] = {.lex_state = 59, .external_lex_state = 2}, + [2028] = {.lex_state = 59, .external_lex_state = 2}, + [2029] = {.lex_state = 59, .external_lex_state = 2}, + [2030] = {.lex_state = 59, .external_lex_state = 2}, + [2031] = {.lex_state = 59, .external_lex_state = 2}, + [2032] = {.lex_state = 59, .external_lex_state = 2}, + [2033] = {.lex_state = 59, .external_lex_state = 2}, + [2034] = {.lex_state = 59, .external_lex_state = 2}, + [2035] = {.lex_state = 59, .external_lex_state = 2}, + [2036] = {.lex_state = 36, .external_lex_state = 2}, + [2037] = {.lex_state = 59, .external_lex_state = 2}, + [2038] = {.lex_state = 59, .external_lex_state = 2}, + [2039] = {.lex_state = 59, .external_lex_state = 2}, + [2040] = {.lex_state = 59, .external_lex_state = 2}, + [2041] = {.lex_state = 59, .external_lex_state = 2}, + [2042] = {.lex_state = 59, .external_lex_state = 2}, + [2043] = {.lex_state = 59, .external_lex_state = 2}, + [2044] = {.lex_state = 59, .external_lex_state = 2}, + [2045] = {.lex_state = 59, .external_lex_state = 2}, + [2046] = {.lex_state = 59, .external_lex_state = 2}, + [2047] = {.lex_state = 59, .external_lex_state = 2}, + [2048] = {.lex_state = 59, .external_lex_state = 2}, + [2049] = {.lex_state = 59, .external_lex_state = 2}, + [2050] = {.lex_state = 59, .external_lex_state = 2}, + [2051] = {.lex_state = 59, .external_lex_state = 2}, + [2052] = {.lex_state = 59, .external_lex_state = 2}, + [2053] = {.lex_state = 59, .external_lex_state = 2}, + [2054] = {.lex_state = 59, .external_lex_state = 2}, + [2055] = {.lex_state = 59, .external_lex_state = 2}, + [2056] = {.lex_state = 59, .external_lex_state = 2}, + [2057] = {.lex_state = 59, .external_lex_state = 2}, + [2058] = {.lex_state = 59, .external_lex_state = 2}, + [2059] = {.lex_state = 59, .external_lex_state = 2}, + [2060] = {.lex_state = 59, .external_lex_state = 2}, + [2061] = {.lex_state = 59, .external_lex_state = 2}, + [2062] = {.lex_state = 59, .external_lex_state = 2}, + [2063] = {.lex_state = 59, .external_lex_state = 2}, + [2064] = {.lex_state = 59, .external_lex_state = 2}, + [2065] = {.lex_state = 59, .external_lex_state = 2}, + [2066] = {.lex_state = 59, .external_lex_state = 2}, + [2067] = {.lex_state = 59, .external_lex_state = 2}, + [2068] = {.lex_state = 59, .external_lex_state = 2}, + [2069] = {.lex_state = 59, .external_lex_state = 2}, + [2070] = {.lex_state = 59, .external_lex_state = 2}, + [2071] = {.lex_state = 59, .external_lex_state = 2}, + [2072] = {.lex_state = 59, .external_lex_state = 2}, + [2073] = {.lex_state = 59, .external_lex_state = 2}, + [2074] = {.lex_state = 59, .external_lex_state = 2}, + [2075] = {.lex_state = 59, .external_lex_state = 2}, + [2076] = {.lex_state = 59, .external_lex_state = 2}, + [2077] = {.lex_state = 59, .external_lex_state = 2}, + [2078] = {.lex_state = 59, .external_lex_state = 2}, + [2079] = {.lex_state = 59, .external_lex_state = 2}, + [2080] = {.lex_state = 59, .external_lex_state = 2}, + [2081] = {.lex_state = 36, .external_lex_state = 2}, + [2082] = {.lex_state = 59, .external_lex_state = 2}, + [2083] = {.lex_state = 59, .external_lex_state = 2}, + [2084] = {.lex_state = 59, .external_lex_state = 2}, + [2085] = {.lex_state = 59, .external_lex_state = 2}, + [2086] = {.lex_state = 59, .external_lex_state = 2}, + [2087] = {.lex_state = 59, .external_lex_state = 2}, + [2088] = {.lex_state = 59, .external_lex_state = 2}, + [2089] = {.lex_state = 59, .external_lex_state = 2}, + [2090] = {.lex_state = 59, .external_lex_state = 2}, + [2091] = {.lex_state = 59, .external_lex_state = 2}, + [2092] = {.lex_state = 59, .external_lex_state = 2}, + [2093] = {.lex_state = 59, .external_lex_state = 2}, + [2094] = {.lex_state = 59, .external_lex_state = 2}, + [2095] = {.lex_state = 59, .external_lex_state = 2}, + [2096] = {.lex_state = 59, .external_lex_state = 2}, + [2097] = {.lex_state = 59, .external_lex_state = 2}, + [2098] = {.lex_state = 59, .external_lex_state = 2}, + [2099] = {.lex_state = 59, .external_lex_state = 2}, + [2100] = {.lex_state = 59, .external_lex_state = 2}, + [2101] = {.lex_state = 59, .external_lex_state = 2}, + [2102] = {.lex_state = 59, .external_lex_state = 2}, + [2103] = {.lex_state = 59, .external_lex_state = 2}, + [2104] = {.lex_state = 59, .external_lex_state = 2}, + [2105] = {.lex_state = 59, .external_lex_state = 2}, + [2106] = {.lex_state = 59, .external_lex_state = 2}, + [2107] = {.lex_state = 59, .external_lex_state = 2}, + [2108] = {.lex_state = 59, .external_lex_state = 2}, + [2109] = {.lex_state = 59, .external_lex_state = 2}, + [2110] = {.lex_state = 59, .external_lex_state = 2}, + [2111] = {.lex_state = 59, .external_lex_state = 2}, + [2112] = {.lex_state = 59, .external_lex_state = 2}, + [2113] = {.lex_state = 59, .external_lex_state = 2}, + [2114] = {.lex_state = 59, .external_lex_state = 2}, + [2115] = {.lex_state = 59, .external_lex_state = 2}, + [2116] = {.lex_state = 59, .external_lex_state = 2}, + [2117] = {.lex_state = 59, .external_lex_state = 2}, + [2118] = {.lex_state = 59, .external_lex_state = 2}, + [2119] = {.lex_state = 59, .external_lex_state = 2}, + [2120] = {.lex_state = 59, .external_lex_state = 2}, + [2121] = {.lex_state = 59, .external_lex_state = 2}, + [2122] = {.lex_state = 59, .external_lex_state = 2}, + [2123] = {.lex_state = 59, .external_lex_state = 2}, + [2124] = {.lex_state = 59, .external_lex_state = 2}, + [2125] = {.lex_state = 59, .external_lex_state = 2}, + [2126] = {.lex_state = 59, .external_lex_state = 2}, + [2127] = {.lex_state = 59, .external_lex_state = 2}, + [2128] = {.lex_state = 59, .external_lex_state = 2}, + [2129] = {.lex_state = 59, .external_lex_state = 2}, + [2130] = {.lex_state = 59, .external_lex_state = 2}, + [2131] = {.lex_state = 59, .external_lex_state = 2}, + [2132] = {.lex_state = 36, .external_lex_state = 2}, + [2133] = {.lex_state = 36, .external_lex_state = 2}, + [2134] = {.lex_state = 15, .external_lex_state = 3}, + [2135] = {.lex_state = 36, .external_lex_state = 2}, + [2136] = {.lex_state = 15, .external_lex_state = 3}, + [2137] = {.lex_state = 15, .external_lex_state = 3}, + [2138] = {.lex_state = 15, .external_lex_state = 3}, + [2139] = {.lex_state = 15, .external_lex_state = 3}, + [2140] = {.lex_state = 36, .external_lex_state = 2}, + [2141] = {.lex_state = 36, .external_lex_state = 2}, + [2142] = {.lex_state = 36, .external_lex_state = 2}, + [2143] = {.lex_state = 36, .external_lex_state = 2}, + [2144] = {.lex_state = 36, .external_lex_state = 2}, + [2145] = {.lex_state = 36, .external_lex_state = 2}, + [2146] = {.lex_state = 36, .external_lex_state = 2}, + [2147] = {.lex_state = 36, .external_lex_state = 2}, + [2148] = {.lex_state = 36, .external_lex_state = 2}, + [2149] = {.lex_state = 15, .external_lex_state = 4}, + [2150] = {.lex_state = 36, .external_lex_state = 2}, + [2151] = {.lex_state = 15, .external_lex_state = 4}, + [2152] = {.lex_state = 15, .external_lex_state = 4}, + [2153] = {.lex_state = 36, .external_lex_state = 2}, + [2154] = {.lex_state = 15, .external_lex_state = 4}, + [2155] = {.lex_state = 15, .external_lex_state = 4}, + [2156] = {.lex_state = 15, .external_lex_state = 4}, + [2157] = {.lex_state = 15, .external_lex_state = 4}, + [2158] = {.lex_state = 15, .external_lex_state = 3}, + [2159] = {.lex_state = 36, .external_lex_state = 2}, + [2160] = {.lex_state = 36, .external_lex_state = 2}, + [2161] = {.lex_state = 36, .external_lex_state = 2}, + [2162] = {.lex_state = 15, .external_lex_state = 4}, + [2163] = {.lex_state = 15, .external_lex_state = 4}, + [2164] = {.lex_state = 15, .external_lex_state = 4}, + [2165] = {.lex_state = 15, .external_lex_state = 4}, + [2166] = {.lex_state = 15, .external_lex_state = 4}, + [2167] = {.lex_state = 36, .external_lex_state = 2}, + [2168] = {.lex_state = 18, .external_lex_state = 4}, + [2169] = {.lex_state = 15, .external_lex_state = 4}, + [2170] = {.lex_state = 15, .external_lex_state = 4}, + [2171] = {.lex_state = 15, .external_lex_state = 4}, + [2172] = {.lex_state = 18, .external_lex_state = 4}, + [2173] = {.lex_state = 15, .external_lex_state = 4}, + [2174] = {.lex_state = 15, .external_lex_state = 4}, + [2175] = {.lex_state = 15, .external_lex_state = 4}, + [2176] = {.lex_state = 15, .external_lex_state = 4}, + [2177] = {.lex_state = 18, .external_lex_state = 4}, + [2178] = {.lex_state = 18, .external_lex_state = 4}, + [2179] = {.lex_state = 15, .external_lex_state = 4}, + [2180] = {.lex_state = 15, .external_lex_state = 4}, + [2181] = {.lex_state = 15, .external_lex_state = 4}, + [2182] = {.lex_state = 36, .external_lex_state = 2}, + [2183] = {.lex_state = 15, .external_lex_state = 4}, + [2184] = {.lex_state = 36, .external_lex_state = 2}, + [2185] = {.lex_state = 36, .external_lex_state = 2}, + [2186] = {.lex_state = 15, .external_lex_state = 4}, + [2187] = {.lex_state = 36, .external_lex_state = 2}, + [2188] = {.lex_state = 36, .external_lex_state = 2}, + [2189] = {.lex_state = 36, .external_lex_state = 2}, + [2190] = {.lex_state = 15, .external_lex_state = 4}, + [2191] = {.lex_state = 15, .external_lex_state = 3}, + [2192] = {.lex_state = 38, .external_lex_state = 2}, + [2193] = {.lex_state = 38, .external_lex_state = 2}, + [2194] = {.lex_state = 19, .external_lex_state = 3}, + [2195] = {.lex_state = 38, .external_lex_state = 2}, + [2196] = {.lex_state = 19, .external_lex_state = 3}, + [2197] = {.lex_state = 15, .external_lex_state = 4}, + [2198] = {.lex_state = 38, .external_lex_state = 2}, + [2199] = {.lex_state = 38, .external_lex_state = 2}, + [2200] = {.lex_state = 15, .external_lex_state = 3}, + [2201] = {.lex_state = 38, .external_lex_state = 2}, + [2202] = {.lex_state = 38, .external_lex_state = 2}, + [2203] = {.lex_state = 38, .external_lex_state = 2}, + [2204] = {.lex_state = 15, .external_lex_state = 4}, + [2205] = {.lex_state = 38, .external_lex_state = 2}, + [2206] = {.lex_state = 15, .external_lex_state = 4}, + [2207] = {.lex_state = 15, .external_lex_state = 4}, + [2208] = {.lex_state = 38, .external_lex_state = 2}, + [2209] = {.lex_state = 38, .external_lex_state = 2}, + [2210] = {.lex_state = 21, .external_lex_state = 4}, + [2211] = {.lex_state = 15, .external_lex_state = 4}, + [2212] = {.lex_state = 21, .external_lex_state = 3}, + [2213] = {.lex_state = 21, .external_lex_state = 4}, + [2214] = {.lex_state = 15, .external_lex_state = 4}, + [2215] = {.lex_state = 15, .external_lex_state = 4}, + [2216] = {.lex_state = 21, .external_lex_state = 3}, + [2217] = {.lex_state = 15, .external_lex_state = 4}, + [2218] = {.lex_state = 15, .external_lex_state = 4}, + [2219] = {.lex_state = 15, .external_lex_state = 3}, + [2220] = {.lex_state = 21, .external_lex_state = 4}, + [2221] = {.lex_state = 15, .external_lex_state = 4}, + [2222] = {.lex_state = 15, .external_lex_state = 4}, + [2223] = {.lex_state = 15, .external_lex_state = 4}, + [2224] = {.lex_state = 15, .external_lex_state = 4}, + [2225] = {.lex_state = 15, .external_lex_state = 4}, + [2226] = {.lex_state = 21, .external_lex_state = 4}, + [2227] = {.lex_state = 15, .external_lex_state = 4}, + [2228] = {.lex_state = 15, .external_lex_state = 4}, + [2229] = {.lex_state = 15, .external_lex_state = 4}, + [2230] = {.lex_state = 15, .external_lex_state = 4}, + [2231] = {.lex_state = 15, .external_lex_state = 4}, + [2232] = {.lex_state = 15, .external_lex_state = 3}, + [2233] = {.lex_state = 21, .external_lex_state = 4}, + [2234] = {.lex_state = 21, .external_lex_state = 3}, + [2235] = {.lex_state = 15, .external_lex_state = 4}, + [2236] = {.lex_state = 15, .external_lex_state = 4}, + [2237] = {.lex_state = 21, .external_lex_state = 3}, + [2238] = {.lex_state = 15, .external_lex_state = 4}, + [2239] = {.lex_state = 15, .external_lex_state = 4}, + [2240] = {.lex_state = 15, .external_lex_state = 4}, + [2241] = {.lex_state = 15, .external_lex_state = 3}, + [2242] = {.lex_state = 21, .external_lex_state = 3}, + [2243] = {.lex_state = 15, .external_lex_state = 4}, + [2244] = {.lex_state = 15, .external_lex_state = 4}, + [2245] = {.lex_state = 21, .external_lex_state = 4}, + [2246] = {.lex_state = 21, .external_lex_state = 4}, + [2247] = {.lex_state = 15, .external_lex_state = 4}, + [2248] = {.lex_state = 15, .external_lex_state = 4}, + [2249] = {.lex_state = 21, .external_lex_state = 4}, + [2250] = {.lex_state = 21, .external_lex_state = 3}, + [2251] = {.lex_state = 21, .external_lex_state = 3}, + [2252] = {.lex_state = 21, .external_lex_state = 3}, + [2253] = {.lex_state = 21, .external_lex_state = 4}, + [2254] = {.lex_state = 21, .external_lex_state = 4}, + [2255] = {.lex_state = 21, .external_lex_state = 3}, + [2256] = {.lex_state = 15, .external_lex_state = 3}, + [2257] = {.lex_state = 38, .external_lex_state = 2}, + [2258] = {.lex_state = 38, .external_lex_state = 2}, + [2259] = {.lex_state = 38, .external_lex_state = 2}, + [2260] = {.lex_state = 38, .external_lex_state = 2}, + [2261] = {.lex_state = 21, .external_lex_state = 3}, + [2262] = {.lex_state = 38, .external_lex_state = 2}, + [2263] = {.lex_state = 38, .external_lex_state = 2}, + [2264] = {.lex_state = 38, .external_lex_state = 2}, + [2265] = {.lex_state = 21, .external_lex_state = 3}, + [2266] = {.lex_state = 38, .external_lex_state = 2}, + [2267] = {.lex_state = 38, .external_lex_state = 2}, + [2268] = {.lex_state = 38, .external_lex_state = 2}, + [2269] = {.lex_state = 21, .external_lex_state = 3}, + [2270] = {.lex_state = 38, .external_lex_state = 2}, + [2271] = {.lex_state = 21, .external_lex_state = 3}, + [2272] = {.lex_state = 18, .external_lex_state = 3}, + [2273] = {.lex_state = 38, .external_lex_state = 2}, + [2274] = {.lex_state = 21, .external_lex_state = 3}, + [2275] = {.lex_state = 21, .external_lex_state = 4}, + [2276] = {.lex_state = 38, .external_lex_state = 2}, + [2277] = {.lex_state = 38, .external_lex_state = 2}, + [2278] = {.lex_state = 18, .external_lex_state = 3}, + [2279] = {.lex_state = 38, .external_lex_state = 2}, + [2280] = {.lex_state = 15, .external_lex_state = 3}, + [2281] = {.lex_state = 38, .external_lex_state = 2}, + [2282] = {.lex_state = 38, .external_lex_state = 2}, + [2283] = {.lex_state = 38, .external_lex_state = 2}, + [2284] = {.lex_state = 38, .external_lex_state = 2}, + [2285] = {.lex_state = 38, .external_lex_state = 2}, + [2286] = {.lex_state = 15, .external_lex_state = 3}, + [2287] = {.lex_state = 21, .external_lex_state = 4}, + [2288] = {.lex_state = 38, .external_lex_state = 2}, + [2289] = {.lex_state = 38, .external_lex_state = 2}, + [2290] = {.lex_state = 38, .external_lex_state = 2}, + [2291] = {.lex_state = 38, .external_lex_state = 2}, + [2292] = {.lex_state = 38, .external_lex_state = 2}, + [2293] = {.lex_state = 38, .external_lex_state = 2}, + [2294] = {.lex_state = 38, .external_lex_state = 2}, + [2295] = {.lex_state = 38, .external_lex_state = 2}, + [2296] = {.lex_state = 38, .external_lex_state = 2}, + [2297] = {.lex_state = 15, .external_lex_state = 3}, + [2298] = {.lex_state = 38, .external_lex_state = 2}, + [2299] = {.lex_state = 38, .external_lex_state = 2}, + [2300] = {.lex_state = 18, .external_lex_state = 3}, + [2301] = {.lex_state = 38, .external_lex_state = 2}, + [2302] = {.lex_state = 38, .external_lex_state = 2}, + [2303] = {.lex_state = 18, .external_lex_state = 3}, + [2304] = {.lex_state = 21, .external_lex_state = 3}, + [2305] = {.lex_state = 15, .external_lex_state = 3}, + [2306] = {.lex_state = 15, .external_lex_state = 3}, + [2307] = {.lex_state = 15, .external_lex_state = 3}, + [2308] = {.lex_state = 21, .external_lex_state = 4}, + [2309] = {.lex_state = 21, .external_lex_state = 4}, + [2310] = {.lex_state = 21, .external_lex_state = 3}, + [2311] = {.lex_state = 15, .external_lex_state = 3}, + [2312] = {.lex_state = 15, .external_lex_state = 3}, + [2313] = {.lex_state = 21, .external_lex_state = 3}, + [2314] = {.lex_state = 21, .external_lex_state = 3}, + [2315] = {.lex_state = 15, .external_lex_state = 3}, + [2316] = {.lex_state = 21, .external_lex_state = 3}, + [2317] = {.lex_state = 21, .external_lex_state = 3}, + [2318] = {.lex_state = 21, .external_lex_state = 4}, + [2319] = {.lex_state = 21, .external_lex_state = 3}, + [2320] = {.lex_state = 21, .external_lex_state = 3}, + [2321] = {.lex_state = 21, .external_lex_state = 3}, + [2322] = {.lex_state = 21, .external_lex_state = 3}, + [2323] = {.lex_state = 15, .external_lex_state = 3}, + [2324] = {.lex_state = 21, .external_lex_state = 4}, + [2325] = {.lex_state = 15, .external_lex_state = 3}, + [2326] = {.lex_state = 15, .external_lex_state = 3}, + [2327] = {.lex_state = 21, .external_lex_state = 3}, + [2328] = {.lex_state = 21, .external_lex_state = 3}, + [2329] = {.lex_state = 21, .external_lex_state = 3}, + [2330] = {.lex_state = 15, .external_lex_state = 3}, + [2331] = {.lex_state = 21, .external_lex_state = 3}, + [2332] = {.lex_state = 21, .external_lex_state = 3}, + [2333] = {.lex_state = 15, .external_lex_state = 4}, + [2334] = {.lex_state = 38, .external_lex_state = 2}, + [2335] = {.lex_state = 21, .external_lex_state = 3}, + [2336] = {.lex_state = 21, .external_lex_state = 3}, + [2337] = {.lex_state = 21, .external_lex_state = 3}, + [2338] = {.lex_state = 38, .external_lex_state = 2}, + [2339] = {.lex_state = 21, .external_lex_state = 4}, + [2340] = {.lex_state = 21, .external_lex_state = 3}, + [2341] = {.lex_state = 38, .external_lex_state = 2}, + [2342] = {.lex_state = 15, .external_lex_state = 4}, + [2343] = {.lex_state = 38, .external_lex_state = 2}, + [2344] = {.lex_state = 21, .external_lex_state = 4}, + [2345] = {.lex_state = 38, .external_lex_state = 2}, + [2346] = {.lex_state = 38, .external_lex_state = 2}, + [2347] = {.lex_state = 21, .external_lex_state = 3}, + [2348] = {.lex_state = 21, .external_lex_state = 3}, + [2349] = {.lex_state = 15, .external_lex_state = 4}, + [2350] = {.lex_state = 38, .external_lex_state = 2}, + [2351] = {.lex_state = 15, .external_lex_state = 4}, + [2352] = {.lex_state = 21, .external_lex_state = 4}, + [2353] = {.lex_state = 21, .external_lex_state = 3}, + [2354] = {.lex_state = 21, .external_lex_state = 3}, + [2355] = {.lex_state = 38, .external_lex_state = 2}, + [2356] = {.lex_state = 15, .external_lex_state = 4}, + [2357] = {.lex_state = 38, .external_lex_state = 2}, + [2358] = {.lex_state = 38, .external_lex_state = 2}, + [2359] = {.lex_state = 21, .external_lex_state = 3}, + [2360] = {.lex_state = 21, .external_lex_state = 4}, + [2361] = {.lex_state = 21, .external_lex_state = 3}, + [2362] = {.lex_state = 15, .external_lex_state = 4}, + [2363] = {.lex_state = 21, .external_lex_state = 4}, + [2364] = {.lex_state = 21, .external_lex_state = 3}, + [2365] = {.lex_state = 21, .external_lex_state = 4}, + [2366] = {.lex_state = 21, .external_lex_state = 3}, + [2367] = {.lex_state = 38, .external_lex_state = 2}, + [2368] = {.lex_state = 15, .external_lex_state = 4}, + [2369] = {.lex_state = 21, .external_lex_state = 3}, + [2370] = {.lex_state = 38, .external_lex_state = 2}, + [2371] = {.lex_state = 21, .external_lex_state = 3}, + [2372] = {.lex_state = 21, .external_lex_state = 4}, + [2373] = {.lex_state = 21, .external_lex_state = 3}, + [2374] = {.lex_state = 21, .external_lex_state = 4}, + [2375] = {.lex_state = 21, .external_lex_state = 4}, + [2376] = {.lex_state = 21, .external_lex_state = 4}, + [2377] = {.lex_state = 21, .external_lex_state = 3}, + [2378] = {.lex_state = 21, .external_lex_state = 3}, + [2379] = {.lex_state = 21, .external_lex_state = 4}, + [2380] = {.lex_state = 21, .external_lex_state = 4}, + [2381] = {.lex_state = 21, .external_lex_state = 4}, + [2382] = {.lex_state = 21, .external_lex_state = 3}, + [2383] = {.lex_state = 21, .external_lex_state = 4}, + [2384] = {.lex_state = 21, .external_lex_state = 4}, + [2385] = {.lex_state = 21, .external_lex_state = 3}, + [2386] = {.lex_state = 21, .external_lex_state = 4}, + [2387] = {.lex_state = 21, .external_lex_state = 4}, + [2388] = {.lex_state = 21, .external_lex_state = 4}, + [2389] = {.lex_state = 21, .external_lex_state = 4}, + [2390] = {.lex_state = 21, .external_lex_state = 4}, + [2391] = {.lex_state = 21, .external_lex_state = 3}, + [2392] = {.lex_state = 21, .external_lex_state = 4}, + [2393] = {.lex_state = 21, .external_lex_state = 4}, + [2394] = {.lex_state = 21, .external_lex_state = 4}, + [2395] = {.lex_state = 21, .external_lex_state = 4}, + [2396] = {.lex_state = 21, .external_lex_state = 3}, + [2397] = {.lex_state = 21, .external_lex_state = 4}, + [2398] = {.lex_state = 21, .external_lex_state = 4}, + [2399] = {.lex_state = 21, .external_lex_state = 3}, + [2400] = {.lex_state = 21, .external_lex_state = 3}, + [2401] = {.lex_state = 21, .external_lex_state = 3}, + [2402] = {.lex_state = 21, .external_lex_state = 3}, + [2403] = {.lex_state = 21, .external_lex_state = 4}, + [2404] = {.lex_state = 21, .external_lex_state = 3}, + [2405] = {.lex_state = 21, .external_lex_state = 4}, + [2406] = {.lex_state = 21, .external_lex_state = 3}, + [2407] = {.lex_state = 21, .external_lex_state = 4}, + [2408] = {.lex_state = 21, .external_lex_state = 4}, + [2409] = {.lex_state = 21, .external_lex_state = 4}, + [2410] = {.lex_state = 21, .external_lex_state = 4}, + [2411] = {.lex_state = 21, .external_lex_state = 4}, + [2412] = {.lex_state = 21, .external_lex_state = 4}, + [2413] = {.lex_state = 21, .external_lex_state = 4}, + [2414] = {.lex_state = 21, .external_lex_state = 4}, + [2415] = {.lex_state = 21, .external_lex_state = 4}, + [2416] = {.lex_state = 21, .external_lex_state = 4}, + [2417] = {.lex_state = 21, .external_lex_state = 4}, + [2418] = {.lex_state = 21, .external_lex_state = 4}, + [2419] = {.lex_state = 21, .external_lex_state = 3}, + [2420] = {.lex_state = 21, .external_lex_state = 4}, + [2421] = {.lex_state = 21, .external_lex_state = 4}, + [2422] = {.lex_state = 21, .external_lex_state = 4}, + [2423] = {.lex_state = 21, .external_lex_state = 4}, + [2424] = {.lex_state = 21, .external_lex_state = 4}, + [2425] = {.lex_state = 21, .external_lex_state = 4}, + [2426] = {.lex_state = 38, .external_lex_state = 2}, + [2427] = {.lex_state = 38, .external_lex_state = 2}, + [2428] = {.lex_state = 38, .external_lex_state = 2}, + [2429] = {.lex_state = 39, .external_lex_state = 2}, + [2430] = {.lex_state = 38, .external_lex_state = 2}, + [2431] = {.lex_state = 15, .external_lex_state = 4}, + [2432] = {.lex_state = 15, .external_lex_state = 4}, + [2433] = {.lex_state = 38, .external_lex_state = 2}, + [2434] = {.lex_state = 38, .external_lex_state = 2}, + [2435] = {.lex_state = 38, .external_lex_state = 2}, + [2436] = {.lex_state = 21, .external_lex_state = 3}, + [2437] = {.lex_state = 38, .external_lex_state = 2}, + [2438] = {.lex_state = 38, .external_lex_state = 2}, + [2439] = {.lex_state = 21, .external_lex_state = 4}, + [2440] = {.lex_state = 21, .external_lex_state = 3}, + [2441] = {.lex_state = 21, .external_lex_state = 3}, + [2442] = {.lex_state = 38, .external_lex_state = 2}, + [2443] = {.lex_state = 15, .external_lex_state = 4}, + [2444] = {.lex_state = 38, .external_lex_state = 2}, + [2445] = {.lex_state = 15, .external_lex_state = 4}, + [2446] = {.lex_state = 38, .external_lex_state = 2}, + [2447] = {.lex_state = 15, .external_lex_state = 4}, + [2448] = {.lex_state = 38, .external_lex_state = 2}, + [2449] = {.lex_state = 38, .external_lex_state = 2}, + [2450] = {.lex_state = 38, .external_lex_state = 2}, + [2451] = {.lex_state = 15, .external_lex_state = 4}, + [2452] = {.lex_state = 38, .external_lex_state = 2}, + [2453] = {.lex_state = 38, .external_lex_state = 2}, + [2454] = {.lex_state = 38, .external_lex_state = 2}, + [2455] = {.lex_state = 38, .external_lex_state = 2}, + [2456] = {.lex_state = 38, .external_lex_state = 2}, + [2457] = {.lex_state = 38, .external_lex_state = 2}, + [2458] = {.lex_state = 38, .external_lex_state = 2}, + [2459] = {.lex_state = 21, .external_lex_state = 3}, + [2460] = {.lex_state = 38, .external_lex_state = 2}, + [2461] = {.lex_state = 38, .external_lex_state = 2}, + [2462] = {.lex_state = 39, .external_lex_state = 2}, + [2463] = {.lex_state = 38, .external_lex_state = 2}, + [2464] = {.lex_state = 15, .external_lex_state = 4}, + [2465] = {.lex_state = 38, .external_lex_state = 2}, + [2466] = {.lex_state = 21, .external_lex_state = 3}, + [2467] = {.lex_state = 38, .external_lex_state = 2}, + [2468] = {.lex_state = 21, .external_lex_state = 4}, + [2469] = {.lex_state = 21, .external_lex_state = 3}, + [2470] = {.lex_state = 39, .external_lex_state = 2}, + [2471] = {.lex_state = 38, .external_lex_state = 2}, + [2472] = {.lex_state = 38, .external_lex_state = 2}, + [2473] = {.lex_state = 38, .external_lex_state = 2}, + [2474] = {.lex_state = 38, .external_lex_state = 2}, + [2475] = {.lex_state = 21, .external_lex_state = 3}, + [2476] = {.lex_state = 38, .external_lex_state = 2}, + [2477] = {.lex_state = 38, .external_lex_state = 2}, + [2478] = {.lex_state = 39, .external_lex_state = 2}, + [2479] = {.lex_state = 21, .external_lex_state = 3}, + [2480] = {.lex_state = 21, .external_lex_state = 3}, + [2481] = {.lex_state = 38, .external_lex_state = 2}, + [2482] = {.lex_state = 38, .external_lex_state = 2}, + [2483] = {.lex_state = 39, .external_lex_state = 2}, + [2484] = {.lex_state = 38, .external_lex_state = 2}, + [2485] = {.lex_state = 38, .external_lex_state = 2}, + [2486] = {.lex_state = 38, .external_lex_state = 2}, + [2487] = {.lex_state = 21, .external_lex_state = 3}, + [2488] = {.lex_state = 39, .external_lex_state = 2}, + [2489] = {.lex_state = 38, .external_lex_state = 2}, + [2490] = {.lex_state = 38, .external_lex_state = 2}, + [2491] = {.lex_state = 38, .external_lex_state = 2}, + [2492] = {.lex_state = 21, .external_lex_state = 3}, + [2493] = {.lex_state = 21, .external_lex_state = 4}, + [2494] = {.lex_state = 21, .external_lex_state = 3}, + [2495] = {.lex_state = 21, .external_lex_state = 3}, + [2496] = {.lex_state = 38, .external_lex_state = 2}, + [2497] = {.lex_state = 39, .external_lex_state = 2}, + [2498] = {.lex_state = 21, .external_lex_state = 3}, + [2499] = {.lex_state = 38, .external_lex_state = 2}, + [2500] = {.lex_state = 15, .external_lex_state = 4}, + [2501] = {.lex_state = 38, .external_lex_state = 2}, + [2502] = {.lex_state = 21, .external_lex_state = 3}, + [2503] = {.lex_state = 38, .external_lex_state = 2}, + [2504] = {.lex_state = 21, .external_lex_state = 3}, + [2505] = {.lex_state = 21, .external_lex_state = 4}, + [2506] = {.lex_state = 21, .external_lex_state = 3}, + [2507] = {.lex_state = 21, .external_lex_state = 4}, + [2508] = {.lex_state = 21, .external_lex_state = 4}, + [2509] = {.lex_state = 21, .external_lex_state = 3}, + [2510] = {.lex_state = 21, .external_lex_state = 3}, + [2511] = {.lex_state = 21, .external_lex_state = 3}, + [2512] = {.lex_state = 21, .external_lex_state = 3}, + [2513] = {.lex_state = 21, .external_lex_state = 4}, + [2514] = {.lex_state = 21, .external_lex_state = 4}, + [2515] = {.lex_state = 21, .external_lex_state = 3}, + [2516] = {.lex_state = 21, .external_lex_state = 4}, + [2517] = {.lex_state = 21, .external_lex_state = 3}, + [2518] = {.lex_state = 21, .external_lex_state = 3}, + [2519] = {.lex_state = 21, .external_lex_state = 3}, + [2520] = {.lex_state = 39, .external_lex_state = 2}, + [2521] = {.lex_state = 21, .external_lex_state = 3}, + [2522] = {.lex_state = 21, .external_lex_state = 3}, + [2523] = {.lex_state = 21, .external_lex_state = 3}, + [2524] = {.lex_state = 21, .external_lex_state = 3}, + [2525] = {.lex_state = 21, .external_lex_state = 3}, + [2526] = {.lex_state = 21, .external_lex_state = 3}, + [2527] = {.lex_state = 21, .external_lex_state = 3}, + [2528] = {.lex_state = 21, .external_lex_state = 3}, + [2529] = {.lex_state = 21, .external_lex_state = 3}, + [2530] = {.lex_state = 21, .external_lex_state = 4}, + [2531] = {.lex_state = 21, .external_lex_state = 3}, + [2532] = {.lex_state = 21, .external_lex_state = 3}, + [2533] = {.lex_state = 21, .external_lex_state = 3}, + [2534] = {.lex_state = 21, .external_lex_state = 3}, + [2535] = {.lex_state = 21, .external_lex_state = 3}, + [2536] = {.lex_state = 21, .external_lex_state = 3}, + [2537] = {.lex_state = 21, .external_lex_state = 3}, + [2538] = {.lex_state = 21, .external_lex_state = 3}, + [2539] = {.lex_state = 21, .external_lex_state = 3}, + [2540] = {.lex_state = 21, .external_lex_state = 3}, + [2541] = {.lex_state = 80, .external_lex_state = 2}, + [2542] = {.lex_state = 21, .external_lex_state = 3}, + [2543] = {.lex_state = 21, .external_lex_state = 3}, + [2544] = {.lex_state = 21, .external_lex_state = 3}, + [2545] = {.lex_state = 80, .external_lex_state = 2}, + [2546] = {.lex_state = 21, .external_lex_state = 3}, + [2547] = {.lex_state = 21, .external_lex_state = 3}, + [2548] = {.lex_state = 21, .external_lex_state = 3}, + [2549] = {.lex_state = 21, .external_lex_state = 3}, + [2550] = {.lex_state = 21, .external_lex_state = 3}, + [2551] = {.lex_state = 80, .external_lex_state = 2}, + [2552] = {.lex_state = 80, .external_lex_state = 2}, + [2553] = {.lex_state = 21, .external_lex_state = 3}, + [2554] = {.lex_state = 21, .external_lex_state = 3}, + [2555] = {.lex_state = 21, .external_lex_state = 3}, + [2556] = {.lex_state = 21, .external_lex_state = 3}, + [2557] = {.lex_state = 80, .external_lex_state = 2}, + [2558] = {.lex_state = 80, .external_lex_state = 2}, + [2559] = {.lex_state = 80, .external_lex_state = 2}, + [2560] = {.lex_state = 21, .external_lex_state = 3}, + [2561] = {.lex_state = 80, .external_lex_state = 2}, + [2562] = {.lex_state = 21, .external_lex_state = 3}, + [2563] = {.lex_state = 21, .external_lex_state = 3}, + [2564] = {.lex_state = 21, .external_lex_state = 3}, + [2565] = {.lex_state = 21, .external_lex_state = 3}, + [2566] = {.lex_state = 80, .external_lex_state = 2}, + [2567] = {.lex_state = 21, .external_lex_state = 3}, + [2568] = {.lex_state = 21, .external_lex_state = 3}, + [2569] = {.lex_state = 39, .external_lex_state = 5}, + [2570] = {.lex_state = 21, .external_lex_state = 3}, + [2571] = {.lex_state = 21, .external_lex_state = 3}, + [2572] = {.lex_state = 39, .external_lex_state = 5}, + [2573] = {.lex_state = 21, .external_lex_state = 3}, + [2574] = {.lex_state = 39, .external_lex_state = 5}, + [2575] = {.lex_state = 21, .external_lex_state = 3}, + [2576] = {.lex_state = 39, .external_lex_state = 5}, + [2577] = {.lex_state = 21, .external_lex_state = 3}, + [2578] = {.lex_state = 21, .external_lex_state = 3}, + [2579] = {.lex_state = 21, .external_lex_state = 3}, + [2580] = {.lex_state = 39, .external_lex_state = 5}, + [2581] = {.lex_state = 21, .external_lex_state = 3}, + [2582] = {.lex_state = 39, .external_lex_state = 5}, + [2583] = {.lex_state = 39, .external_lex_state = 5}, + [2584] = {.lex_state = 39, .external_lex_state = 5}, + [2585] = {.lex_state = 39, .external_lex_state = 5}, + [2586] = {.lex_state = 39, .external_lex_state = 5}, + [2587] = {.lex_state = 39, .external_lex_state = 5}, + [2588] = {.lex_state = 39, .external_lex_state = 5}, + [2589] = {.lex_state = 39, .external_lex_state = 5}, + [2590] = {.lex_state = 39, .external_lex_state = 5}, + [2591] = {.lex_state = 39, .external_lex_state = 5}, + [2592] = {.lex_state = 39, .external_lex_state = 5}, + [2593] = {.lex_state = 39, .external_lex_state = 5}, + [2594] = {.lex_state = 39, .external_lex_state = 5}, + [2595] = {.lex_state = 39, .external_lex_state = 5}, + [2596] = {.lex_state = 39, .external_lex_state = 5}, + [2597] = {.lex_state = 54, .external_lex_state = 5}, + [2598] = {.lex_state = 39, .external_lex_state = 5}, + [2599] = {.lex_state = 54, .external_lex_state = 5}, + [2600] = {.lex_state = 39, .external_lex_state = 5}, + [2601] = {.lex_state = 80, .external_lex_state = 2}, + [2602] = {.lex_state = 54, .external_lex_state = 5}, + [2603] = {.lex_state = 39, .external_lex_state = 5}, + [2604] = {.lex_state = 39, .external_lex_state = 5}, + [2605] = {.lex_state = 39, .external_lex_state = 5}, + [2606] = {.lex_state = 54, .external_lex_state = 5}, + [2607] = {.lex_state = 38, .external_lex_state = 5}, + [2608] = {.lex_state = 54, .external_lex_state = 5}, + [2609] = {.lex_state = 38, .external_lex_state = 5}, + [2610] = {.lex_state = 54, .external_lex_state = 5}, + [2611] = {.lex_state = 39, .external_lex_state = 5}, + [2612] = {.lex_state = 38, .external_lex_state = 5}, + [2613] = {.lex_state = 39, .external_lex_state = 5}, + [2614] = {.lex_state = 39, .external_lex_state = 2}, + [2615] = {.lex_state = 39, .external_lex_state = 5}, + [2616] = {.lex_state = 39, .external_lex_state = 5}, + [2617] = {.lex_state = 38, .external_lex_state = 5}, + [2618] = {.lex_state = 39, .external_lex_state = 2}, + [2619] = {.lex_state = 38, .external_lex_state = 5}, + [2620] = {.lex_state = 39, .external_lex_state = 2}, + [2621] = {.lex_state = 39, .external_lex_state = 5}, + [2622] = {.lex_state = 39, .external_lex_state = 2}, + [2623] = {.lex_state = 39, .external_lex_state = 5}, + [2624] = {.lex_state = 39, .external_lex_state = 5}, + [2625] = {.lex_state = 38, .external_lex_state = 5}, + [2626] = {.lex_state = 38, .external_lex_state = 5}, + [2627] = {.lex_state = 38, .external_lex_state = 5}, + [2628] = {.lex_state = 39, .external_lex_state = 2}, + [2629] = {.lex_state = 39, .external_lex_state = 5}, + [2630] = {.lex_state = 39, .external_lex_state = 2}, + [2631] = {.lex_state = 39, .external_lex_state = 2}, + [2632] = {.lex_state = 39, .external_lex_state = 2}, + [2633] = {.lex_state = 39, .external_lex_state = 2}, + [2634] = {.lex_state = 39, .external_lex_state = 5}, + [2635] = {.lex_state = 39, .external_lex_state = 2}, + [2636] = {.lex_state = 39, .external_lex_state = 5}, + [2637] = {.lex_state = 39, .external_lex_state = 2}, + [2638] = {.lex_state = 25, .external_lex_state = 4}, + [2639] = {.lex_state = 25, .external_lex_state = 4}, + [2640] = {.lex_state = 39, .external_lex_state = 5}, + [2641] = {.lex_state = 39, .external_lex_state = 2}, + [2642] = {.lex_state = 39, .external_lex_state = 5}, + [2643] = {.lex_state = 39, .external_lex_state = 5}, + [2644] = {.lex_state = 39, .external_lex_state = 2}, + [2645] = {.lex_state = 39, .external_lex_state = 2}, + [2646] = {.lex_state = 39, .external_lex_state = 2}, + [2647] = {.lex_state = 39, .external_lex_state = 5}, + [2648] = {.lex_state = 39, .external_lex_state = 2}, + [2649] = {.lex_state = 39, .external_lex_state = 5}, + [2650] = {.lex_state = 39, .external_lex_state = 5}, + [2651] = {.lex_state = 39, .external_lex_state = 5}, + [2652] = {.lex_state = 39, .external_lex_state = 5}, + [2653] = {.lex_state = 39, .external_lex_state = 5}, + [2654] = {.lex_state = 39, .external_lex_state = 2}, + [2655] = {.lex_state = 39, .external_lex_state = 5}, + [2656] = {.lex_state = 39, .external_lex_state = 5}, + [2657] = {.lex_state = 39, .external_lex_state = 5}, + [2658] = {.lex_state = 39, .external_lex_state = 2}, + [2659] = {.lex_state = 39, .external_lex_state = 5}, + [2660] = {.lex_state = 39, .external_lex_state = 5}, + [2661] = {.lex_state = 39, .external_lex_state = 5}, + [2662] = {.lex_state = 39, .external_lex_state = 5}, + [2663] = {.lex_state = 39, .external_lex_state = 5}, + [2664] = {.lex_state = 39, .external_lex_state = 5}, + [2665] = {.lex_state = 39, .external_lex_state = 5}, + [2666] = {.lex_state = 39, .external_lex_state = 5}, + [2667] = {.lex_state = 39, .external_lex_state = 5}, + [2668] = {.lex_state = 39, .external_lex_state = 5}, + [2669] = {.lex_state = 39, .external_lex_state = 5}, + [2670] = {.lex_state = 54, .external_lex_state = 5}, + [2671] = {.lex_state = 39, .external_lex_state = 5}, + [2672] = {.lex_state = 39, .external_lex_state = 2}, + [2673] = {.lex_state = 54, .external_lex_state = 5}, + [2674] = {.lex_state = 39, .external_lex_state = 2}, + [2675] = {.lex_state = 39, .external_lex_state = 5}, + [2676] = {.lex_state = 39, .external_lex_state = 2}, + [2677] = {.lex_state = 39, .external_lex_state = 2}, + [2678] = {.lex_state = 39, .external_lex_state = 5}, + [2679] = {.lex_state = 39, .external_lex_state = 5}, + [2680] = {.lex_state = 39, .external_lex_state = 5}, + [2681] = {.lex_state = 39, .external_lex_state = 5}, + [2682] = {.lex_state = 39, .external_lex_state = 5}, + [2683] = {.lex_state = 39, .external_lex_state = 5}, + [2684] = {.lex_state = 39, .external_lex_state = 2}, + [2685] = {.lex_state = 39, .external_lex_state = 2}, + [2686] = {.lex_state = 39, .external_lex_state = 5}, + [2687] = {.lex_state = 39, .external_lex_state = 5}, + [2688] = {.lex_state = 39, .external_lex_state = 5}, + [2689] = {.lex_state = 39, .external_lex_state = 5}, + [2690] = {.lex_state = 39, .external_lex_state = 5}, + [2691] = {.lex_state = 39, .external_lex_state = 5}, + [2692] = {.lex_state = 39, .external_lex_state = 5}, + [2693] = {.lex_state = 39, .external_lex_state = 5}, + [2694] = {.lex_state = 39, .external_lex_state = 5}, + [2695] = {.lex_state = 39, .external_lex_state = 2}, + [2696] = {.lex_state = 39, .external_lex_state = 5}, + [2697] = {.lex_state = 39, .external_lex_state = 5}, + [2698] = {.lex_state = 39, .external_lex_state = 5}, + [2699] = {.lex_state = 39, .external_lex_state = 5}, + [2700] = {.lex_state = 39, .external_lex_state = 5}, + [2701] = {.lex_state = 39, .external_lex_state = 5}, + [2702] = {.lex_state = 39, .external_lex_state = 5}, + [2703] = {.lex_state = 39, .external_lex_state = 5}, + [2704] = {.lex_state = 39, .external_lex_state = 5}, + [2705] = {.lex_state = 39, .external_lex_state = 5}, + [2706] = {.lex_state = 25, .external_lex_state = 3}, + [2707] = {.lex_state = 39, .external_lex_state = 2}, + [2708] = {.lex_state = 39, .external_lex_state = 5}, + [2709] = {.lex_state = 39, .external_lex_state = 5}, + [2710] = {.lex_state = 39, .external_lex_state = 2}, + [2711] = {.lex_state = 39, .external_lex_state = 2}, + [2712] = {.lex_state = 39, .external_lex_state = 5}, + [2713] = {.lex_state = 39, .external_lex_state = 2}, + [2714] = {.lex_state = 39, .external_lex_state = 5}, + [2715] = {.lex_state = 39, .external_lex_state = 5}, + [2716] = {.lex_state = 39, .external_lex_state = 2}, + [2717] = {.lex_state = 25, .external_lex_state = 3}, + [2718] = {.lex_state = 39, .external_lex_state = 2}, + [2719] = {.lex_state = 39, .external_lex_state = 5}, + [2720] = {.lex_state = 39, .external_lex_state = 2}, + [2721] = {.lex_state = 25, .external_lex_state = 3}, + [2722] = {.lex_state = 25, .external_lex_state = 3}, + [2723] = {.lex_state = 39, .external_lex_state = 5}, + [2724] = {.lex_state = 39, .external_lex_state = 5}, + [2725] = {.lex_state = 39, .external_lex_state = 5}, + [2726] = {.lex_state = 25, .external_lex_state = 3}, + [2727] = {.lex_state = 39, .external_lex_state = 5}, + [2728] = {.lex_state = 39, .external_lex_state = 5}, + [2729] = {.lex_state = 39, .external_lex_state = 5}, + [2730] = {.lex_state = 39, .external_lex_state = 5}, + [2731] = {.lex_state = 39, .external_lex_state = 5}, + [2732] = {.lex_state = 39, .external_lex_state = 5}, + [2733] = {.lex_state = 39, .external_lex_state = 5}, + [2734] = {.lex_state = 39, .external_lex_state = 5}, + [2735] = {.lex_state = 39, .external_lex_state = 5}, + [2736] = {.lex_state = 39, .external_lex_state = 5}, + [2737] = {.lex_state = 39, .external_lex_state = 5}, + [2738] = {.lex_state = 39, .external_lex_state = 5}, + [2739] = {.lex_state = 39, .external_lex_state = 2}, + [2740] = {.lex_state = 39, .external_lex_state = 2}, + [2741] = {.lex_state = 39, .external_lex_state = 2}, + [2742] = {.lex_state = 39, .external_lex_state = 5}, + [2743] = {.lex_state = 25, .external_lex_state = 3}, + [2744] = {.lex_state = 39, .external_lex_state = 5}, + [2745] = {.lex_state = 25, .external_lex_state = 4}, + [2746] = {.lex_state = 25, .external_lex_state = 4}, + [2747] = {.lex_state = 25, .external_lex_state = 4}, + [2748] = {.lex_state = 39, .external_lex_state = 5}, + [2749] = {.lex_state = 25, .external_lex_state = 3}, + [2750] = {.lex_state = 38, .external_lex_state = 5}, + [2751] = {.lex_state = 39, .external_lex_state = 2}, + [2752] = {.lex_state = 39, .external_lex_state = 2}, + [2753] = {.lex_state = 39, .external_lex_state = 5}, + [2754] = {.lex_state = 25, .external_lex_state = 3}, + [2755] = {.lex_state = 39, .external_lex_state = 2}, + [2756] = {.lex_state = 25, .external_lex_state = 3}, + [2757] = {.lex_state = 38, .external_lex_state = 5}, + [2758] = {.lex_state = 25, .external_lex_state = 3}, + [2759] = {.lex_state = 39, .external_lex_state = 2}, + [2760] = {.lex_state = 25, .external_lex_state = 3}, + [2761] = {.lex_state = 38, .external_lex_state = 5}, + [2762] = {.lex_state = 38, .external_lex_state = 2}, + [2763] = {.lex_state = 38, .external_lex_state = 5}, + [2764] = {.lex_state = 39, .external_lex_state = 5}, + [2765] = {.lex_state = 38, .external_lex_state = 5}, + [2766] = {.lex_state = 39, .external_lex_state = 5}, + [2767] = {.lex_state = 39, .external_lex_state = 5}, + [2768] = {.lex_state = 38, .external_lex_state = 5}, + [2769] = {.lex_state = 25, .external_lex_state = 3}, + [2770] = {.lex_state = 39, .external_lex_state = 2}, + [2771] = {.lex_state = 25, .external_lex_state = 4}, + [2772] = {.lex_state = 25, .external_lex_state = 3}, + [2773] = {.lex_state = 25, .external_lex_state = 3}, + [2774] = {.lex_state = 25, .external_lex_state = 3}, + [2775] = {.lex_state = 25, .external_lex_state = 3}, + [2776] = {.lex_state = 25, .external_lex_state = 3}, + [2777] = {.lex_state = 25, .external_lex_state = 3}, + [2778] = {.lex_state = 25, .external_lex_state = 3}, + [2779] = {.lex_state = 25, .external_lex_state = 3}, + [2780] = {.lex_state = 25, .external_lex_state = 3}, + [2781] = {.lex_state = 25, .external_lex_state = 3}, + [2782] = {.lex_state = 25, .external_lex_state = 3}, + [2783] = {.lex_state = 25, .external_lex_state = 3}, + [2784] = {.lex_state = 25, .external_lex_state = 3}, + [2785] = {.lex_state = 25, .external_lex_state = 3}, + [2786] = {.lex_state = 25, .external_lex_state = 3}, + [2787] = {.lex_state = 25, .external_lex_state = 3}, + [2788] = {.lex_state = 25, .external_lex_state = 3}, + [2789] = {.lex_state = 25, .external_lex_state = 3}, + [2790] = {.lex_state = 25, .external_lex_state = 4}, + [2791] = {.lex_state = 25, .external_lex_state = 3}, + [2792] = {.lex_state = 25, .external_lex_state = 3}, + [2793] = {.lex_state = 25, .external_lex_state = 3}, + [2794] = {.lex_state = 25, .external_lex_state = 3}, + [2795] = {.lex_state = 25, .external_lex_state = 3}, + [2796] = {.lex_state = 25, .external_lex_state = 4}, + [2797] = {.lex_state = 25, .external_lex_state = 3}, + [2798] = {.lex_state = 25, .external_lex_state = 3}, + [2799] = {.lex_state = 25, .external_lex_state = 3}, + [2800] = {.lex_state = 39, .external_lex_state = 2}, + [2801] = {.lex_state = 39, .external_lex_state = 2}, + [2802] = {.lex_state = 25, .external_lex_state = 3}, + [2803] = {.lex_state = 25, .external_lex_state = 3}, + [2804] = {.lex_state = 25, .external_lex_state = 3}, + [2805] = {.lex_state = 25, .external_lex_state = 3}, + [2806] = {.lex_state = 25, .external_lex_state = 3}, + [2807] = {.lex_state = 25, .external_lex_state = 3}, + [2808] = {.lex_state = 25, .external_lex_state = 3}, + [2809] = {.lex_state = 25, .external_lex_state = 3}, + [2810] = {.lex_state = 25, .external_lex_state = 3}, + [2811] = {.lex_state = 25, .external_lex_state = 3}, + [2812] = {.lex_state = 25, .external_lex_state = 3}, + [2813] = {.lex_state = 39, .external_lex_state = 5}, + [2814] = {.lex_state = 25, .external_lex_state = 3}, + [2815] = {.lex_state = 25, .external_lex_state = 3}, + [2816] = {.lex_state = 25, .external_lex_state = 3}, + [2817] = {.lex_state = 25, .external_lex_state = 3}, + [2818] = {.lex_state = 25, .external_lex_state = 3}, + [2819] = {.lex_state = 39, .external_lex_state = 5}, + [2820] = {.lex_state = 25, .external_lex_state = 3}, + [2821] = {.lex_state = 39, .external_lex_state = 5}, + [2822] = {.lex_state = 25, .external_lex_state = 3}, + [2823] = {.lex_state = 25, .external_lex_state = 3}, + [2824] = {.lex_state = 25, .external_lex_state = 3}, + [2825] = {.lex_state = 39, .external_lex_state = 5}, + [2826] = {.lex_state = 25, .external_lex_state = 3}, + [2827] = {.lex_state = 39, .external_lex_state = 5}, + [2828] = {.lex_state = 25, .external_lex_state = 3}, + [2829] = {.lex_state = 25, .external_lex_state = 3}, + [2830] = {.lex_state = 25, .external_lex_state = 3}, + [2831] = {.lex_state = 25, .external_lex_state = 3}, + [2832] = {.lex_state = 25, .external_lex_state = 3}, + [2833] = {.lex_state = 25, .external_lex_state = 3}, + [2834] = {.lex_state = 25, .external_lex_state = 3}, + [2835] = {.lex_state = 25, .external_lex_state = 3}, + [2836] = {.lex_state = 25, .external_lex_state = 3}, + [2837] = {.lex_state = 25, .external_lex_state = 3}, + [2838] = {.lex_state = 25, .external_lex_state = 3}, + [2839] = {.lex_state = 25, .external_lex_state = 3}, + [2840] = {.lex_state = 25, .external_lex_state = 3}, + [2841] = {.lex_state = 25, .external_lex_state = 3}, + [2842] = {.lex_state = 25, .external_lex_state = 3}, + [2843] = {.lex_state = 25, .external_lex_state = 3}, + [2844] = {.lex_state = 25, .external_lex_state = 3}, + [2845] = {.lex_state = 39, .external_lex_state = 5}, + [2846] = {.lex_state = 39, .external_lex_state = 2}, + [2847] = {.lex_state = 25, .external_lex_state = 3}, + [2848] = {.lex_state = 39, .external_lex_state = 5}, + [2849] = {.lex_state = 39, .external_lex_state = 2}, + [2850] = {.lex_state = 25, .external_lex_state = 3}, + [2851] = {.lex_state = 39, .external_lex_state = 2}, + [2852] = {.lex_state = 25, .external_lex_state = 3}, + [2853] = {.lex_state = 25, .external_lex_state = 3}, + [2854] = {.lex_state = 39, .external_lex_state = 5}, + [2855] = {.lex_state = 25, .external_lex_state = 3}, + [2856] = {.lex_state = 25, .external_lex_state = 3}, + [2857] = {.lex_state = 39, .external_lex_state = 5}, + [2858] = {.lex_state = 25, .external_lex_state = 3}, + [2859] = {.lex_state = 25, .external_lex_state = 3}, + [2860] = {.lex_state = 25, .external_lex_state = 3}, + [2861] = {.lex_state = 25, .external_lex_state = 3}, + [2862] = {.lex_state = 25, .external_lex_state = 3}, + [2863] = {.lex_state = 39, .external_lex_state = 2}, + [2864] = {.lex_state = 39, .external_lex_state = 2}, + [2865] = {.lex_state = 25, .external_lex_state = 3}, + [2866] = {.lex_state = 25, .external_lex_state = 3}, + [2867] = {.lex_state = 25, .external_lex_state = 3}, + [2868] = {.lex_state = 25, .external_lex_state = 3}, + [2869] = {.lex_state = 39, .external_lex_state = 5}, + [2870] = {.lex_state = 25, .external_lex_state = 3}, + [2871] = {.lex_state = 25, .external_lex_state = 3}, + [2872] = {.lex_state = 39, .external_lex_state = 5}, + [2873] = {.lex_state = 25, .external_lex_state = 3}, + [2874] = {.lex_state = 25, .external_lex_state = 3}, + [2875] = {.lex_state = 25, .external_lex_state = 3}, + [2876] = {.lex_state = 25, .external_lex_state = 3}, + [2877] = {.lex_state = 25, .external_lex_state = 3}, + [2878] = {.lex_state = 25, .external_lex_state = 3}, + [2879] = {.lex_state = 25, .external_lex_state = 3}, + [2880] = {.lex_state = 25, .external_lex_state = 3}, + [2881] = {.lex_state = 25, .external_lex_state = 3}, + [2882] = {.lex_state = 39, .external_lex_state = 2}, + [2883] = {.lex_state = 25, .external_lex_state = 3}, + [2884] = {.lex_state = 25, .external_lex_state = 3}, + [2885] = {.lex_state = 39, .external_lex_state = 2}, + [2886] = {.lex_state = 39, .external_lex_state = 5}, + [2887] = {.lex_state = 25, .external_lex_state = 3}, + [2888] = {.lex_state = 25, .external_lex_state = 3}, + [2889] = {.lex_state = 25, .external_lex_state = 3}, + [2890] = {.lex_state = 25, .external_lex_state = 3}, + [2891] = {.lex_state = 25, .external_lex_state = 3}, + [2892] = {.lex_state = 25, .external_lex_state = 3}, + [2893] = {.lex_state = 25, .external_lex_state = 3}, + [2894] = {.lex_state = 25, .external_lex_state = 3}, + [2895] = {.lex_state = 39, .external_lex_state = 5}, + [2896] = {.lex_state = 25, .external_lex_state = 3}, + [2897] = {.lex_state = 25, .external_lex_state = 3}, + [2898] = {.lex_state = 25, .external_lex_state = 3}, + [2899] = {.lex_state = 39, .external_lex_state = 5}, + [2900] = {.lex_state = 25, .external_lex_state = 3}, + [2901] = {.lex_state = 25, .external_lex_state = 3}, + [2902] = {.lex_state = 25, .external_lex_state = 3}, + [2903] = {.lex_state = 25, .external_lex_state = 3}, + [2904] = {.lex_state = 25, .external_lex_state = 3}, + [2905] = {.lex_state = 25, .external_lex_state = 3}, + [2906] = {.lex_state = 25, .external_lex_state = 3}, + [2907] = {.lex_state = 25, .external_lex_state = 3}, + [2908] = {.lex_state = 25, .external_lex_state = 3}, + [2909] = {.lex_state = 25, .external_lex_state = 3}, + [2910] = {.lex_state = 39, .external_lex_state = 2}, + [2911] = {.lex_state = 25, .external_lex_state = 3}, + [2912] = {.lex_state = 25, .external_lex_state = 3}, + [2913] = {.lex_state = 25, .external_lex_state = 3}, + [2914] = {.lex_state = 25, .external_lex_state = 3}, + [2915] = {.lex_state = 25, .external_lex_state = 3}, + [2916] = {.lex_state = 39, .external_lex_state = 5}, + [2917] = {.lex_state = 39, .external_lex_state = 5}, + [2918] = {.lex_state = 25, .external_lex_state = 3}, + [2919] = {.lex_state = 25, .external_lex_state = 3}, + [2920] = {.lex_state = 25, .external_lex_state = 4}, + [2921] = {.lex_state = 25, .external_lex_state = 4}, + [2922] = {.lex_state = 25, .external_lex_state = 3}, + [2923] = {.lex_state = 25, .external_lex_state = 3}, + [2924] = {.lex_state = 25, .external_lex_state = 3}, + [2925] = {.lex_state = 25, .external_lex_state = 3}, + [2926] = {.lex_state = 25, .external_lex_state = 3}, + [2927] = {.lex_state = 25, .external_lex_state = 3}, + [2928] = {.lex_state = 39, .external_lex_state = 5}, + [2929] = {.lex_state = 25, .external_lex_state = 3}, + [2930] = {.lex_state = 25, .external_lex_state = 3}, + [2931] = {.lex_state = 25, .external_lex_state = 3}, + [2932] = {.lex_state = 25, .external_lex_state = 3}, + [2933] = {.lex_state = 25, .external_lex_state = 3}, + [2934] = {.lex_state = 25, .external_lex_state = 3}, + [2935] = {.lex_state = 25, .external_lex_state = 3}, + [2936] = {.lex_state = 25, .external_lex_state = 3}, + [2937] = {.lex_state = 25, .external_lex_state = 3}, + [2938] = {.lex_state = 25, .external_lex_state = 3}, + [2939] = {.lex_state = 39, .external_lex_state = 2}, + [2940] = {.lex_state = 39, .external_lex_state = 2}, + [2941] = {.lex_state = 39, .external_lex_state = 2}, + [2942] = {.lex_state = 39, .external_lex_state = 2}, + [2943] = {.lex_state = 39, .external_lex_state = 2}, + [2944] = {.lex_state = 39, .external_lex_state = 2}, + [2945] = {.lex_state = 25, .external_lex_state = 3}, + [2946] = {.lex_state = 25, .external_lex_state = 3}, + [2947] = {.lex_state = 25, .external_lex_state = 3}, + [2948] = {.lex_state = 25, .external_lex_state = 3}, + [2949] = {.lex_state = 25, .external_lex_state = 3}, + [2950] = {.lex_state = 25, .external_lex_state = 3}, + [2951] = {.lex_state = 25, .external_lex_state = 3}, + [2952] = {.lex_state = 25, .external_lex_state = 3}, + [2953] = {.lex_state = 25, .external_lex_state = 3}, + [2954] = {.lex_state = 25, .external_lex_state = 3}, + [2955] = {.lex_state = 25, .external_lex_state = 3}, + [2956] = {.lex_state = 25, .external_lex_state = 3}, + [2957] = {.lex_state = 25, .external_lex_state = 3}, + [2958] = {.lex_state = 25, .external_lex_state = 3}, + [2959] = {.lex_state = 25, .external_lex_state = 3}, + [2960] = {.lex_state = 25, .external_lex_state = 3}, + [2961] = {.lex_state = 25, .external_lex_state = 3}, + [2962] = {.lex_state = 25, .external_lex_state = 3}, + [2963] = {.lex_state = 25, .external_lex_state = 3}, + [2964] = {.lex_state = 25, .external_lex_state = 3}, + [2965] = {.lex_state = 25, .external_lex_state = 3}, + [2966] = {.lex_state = 39, .external_lex_state = 2}, + [2967] = {.lex_state = 25, .external_lex_state = 3}, + [2968] = {.lex_state = 25, .external_lex_state = 3}, + [2969] = {.lex_state = 39, .external_lex_state = 2}, + [2970] = {.lex_state = 25, .external_lex_state = 3}, + [2971] = {.lex_state = 25, .external_lex_state = 4}, + [2972] = {.lex_state = 25, .external_lex_state = 3}, + [2973] = {.lex_state = 25, .external_lex_state = 3}, + [2974] = {.lex_state = 25, .external_lex_state = 4}, + [2975] = {.lex_state = 25, .external_lex_state = 4}, + [2976] = {.lex_state = 25, .external_lex_state = 4}, + [2977] = {.lex_state = 25, .external_lex_state = 4}, + [2978] = {.lex_state = 25, .external_lex_state = 4}, + [2979] = {.lex_state = 25, .external_lex_state = 4}, + [2980] = {.lex_state = 25, .external_lex_state = 4}, + [2981] = {.lex_state = 25, .external_lex_state = 4}, + [2982] = {.lex_state = 25, .external_lex_state = 4}, + [2983] = {.lex_state = 25, .external_lex_state = 4}, + [2984] = {.lex_state = 25, .external_lex_state = 4}, + [2985] = {.lex_state = 25, .external_lex_state = 4}, + [2986] = {.lex_state = 25, .external_lex_state = 4}, + [2987] = {.lex_state = 25, .external_lex_state = 4}, + [2988] = {.lex_state = 25, .external_lex_state = 3}, + [2989] = {.lex_state = 25, .external_lex_state = 3}, + [2990] = {.lex_state = 39, .external_lex_state = 2}, + [2991] = {.lex_state = 25, .external_lex_state = 4}, + [2992] = {.lex_state = 25, .external_lex_state = 3}, + [2993] = {.lex_state = 25, .external_lex_state = 4}, + [2994] = {.lex_state = 25, .external_lex_state = 4}, + [2995] = {.lex_state = 25, .external_lex_state = 4}, + [2996] = {.lex_state = 25, .external_lex_state = 4}, + [2997] = {.lex_state = 25, .external_lex_state = 4}, + [2998] = {.lex_state = 25, .external_lex_state = 4}, + [2999] = {.lex_state = 25, .external_lex_state = 4}, + [3000] = {.lex_state = 25, .external_lex_state = 3}, + [3001] = {.lex_state = 25, .external_lex_state = 3}, + [3002] = {.lex_state = 25, .external_lex_state = 3}, + [3003] = {.lex_state = 25, .external_lex_state = 3}, + [3004] = {.lex_state = 25, .external_lex_state = 3}, + [3005] = {.lex_state = 25, .external_lex_state = 4}, + [3006] = {.lex_state = 25, .external_lex_state = 4}, + [3007] = {.lex_state = 25, .external_lex_state = 4}, + [3008] = {.lex_state = 25, .external_lex_state = 4}, + [3009] = {.lex_state = 25, .external_lex_state = 4}, + [3010] = {.lex_state = 25, .external_lex_state = 4}, + [3011] = {.lex_state = 25, .external_lex_state = 4}, + [3012] = {.lex_state = 25, .external_lex_state = 4}, + [3013] = {.lex_state = 25, .external_lex_state = 4}, + [3014] = {.lex_state = 25, .external_lex_state = 4}, + [3015] = {.lex_state = 25, .external_lex_state = 4}, + [3016] = {.lex_state = 25, .external_lex_state = 3}, + [3017] = {.lex_state = 25, .external_lex_state = 4}, + [3018] = {.lex_state = 25, .external_lex_state = 3}, + [3019] = {.lex_state = 25, .external_lex_state = 3}, + [3020] = {.lex_state = 25, .external_lex_state = 3}, + [3021] = {.lex_state = 25, .external_lex_state = 3}, + [3022] = {.lex_state = 25, .external_lex_state = 3}, + [3023] = {.lex_state = 25, .external_lex_state = 3}, + [3024] = {.lex_state = 25, .external_lex_state = 3}, + [3025] = {.lex_state = 25, .external_lex_state = 4}, + [3026] = {.lex_state = 25, .external_lex_state = 4}, + [3027] = {.lex_state = 25, .external_lex_state = 3}, + [3028] = {.lex_state = 25, .external_lex_state = 3}, + [3029] = {.lex_state = 25, .external_lex_state = 3}, + [3030] = {.lex_state = 25, .external_lex_state = 3}, + [3031] = {.lex_state = 25, .external_lex_state = 4}, + [3032] = {.lex_state = 25, .external_lex_state = 4}, + [3033] = {.lex_state = 25, .external_lex_state = 3}, + [3034] = {.lex_state = 25, .external_lex_state = 3}, + [3035] = {.lex_state = 25, .external_lex_state = 3}, + [3036] = {.lex_state = 25, .external_lex_state = 3}, + [3037] = {.lex_state = 25, .external_lex_state = 4}, + [3038] = {.lex_state = 25, .external_lex_state = 4}, + [3039] = {.lex_state = 25, .external_lex_state = 4}, + [3040] = {.lex_state = 25, .external_lex_state = 4}, + [3041] = {.lex_state = 25, .external_lex_state = 4}, + [3042] = {.lex_state = 25, .external_lex_state = 4}, + [3043] = {.lex_state = 25, .external_lex_state = 4}, + [3044] = {.lex_state = 25, .external_lex_state = 4}, + [3045] = {.lex_state = 25, .external_lex_state = 3}, + [3046] = {.lex_state = 25, .external_lex_state = 4}, + [3047] = {.lex_state = 25, .external_lex_state = 4}, + [3048] = {.lex_state = 25, .external_lex_state = 4}, + [3049] = {.lex_state = 25, .external_lex_state = 4}, + [3050] = {.lex_state = 25, .external_lex_state = 3}, + [3051] = {.lex_state = 25, .external_lex_state = 3}, + [3052] = {.lex_state = 25, .external_lex_state = 3}, + [3053] = {.lex_state = 25, .external_lex_state = 3}, + [3054] = {.lex_state = 25, .external_lex_state = 3}, + [3055] = {.lex_state = 25, .external_lex_state = 4}, + [3056] = {.lex_state = 25, .external_lex_state = 3}, + [3057] = {.lex_state = 25, .external_lex_state = 3}, + [3058] = {.lex_state = 25, .external_lex_state = 3}, + [3059] = {.lex_state = 25, .external_lex_state = 3}, + [3060] = {.lex_state = 25, .external_lex_state = 4}, + [3061] = {.lex_state = 25, .external_lex_state = 4}, + [3062] = {.lex_state = 25, .external_lex_state = 4}, + [3063] = {.lex_state = 25, .external_lex_state = 4}, + [3064] = {.lex_state = 25, .external_lex_state = 4}, + [3065] = {.lex_state = 25, .external_lex_state = 4}, + [3066] = {.lex_state = 25, .external_lex_state = 4}, + [3067] = {.lex_state = 25, .external_lex_state = 4}, + [3068] = {.lex_state = 25, .external_lex_state = 3}, + [3069] = {.lex_state = 25, .external_lex_state = 3}, + [3070] = {.lex_state = 25, .external_lex_state = 3}, + [3071] = {.lex_state = 25, .external_lex_state = 4}, + [3072] = {.lex_state = 25, .external_lex_state = 3}, + [3073] = {.lex_state = 25, .external_lex_state = 3}, + [3074] = {.lex_state = 25, .external_lex_state = 4}, + [3075] = {.lex_state = 25, .external_lex_state = 4}, + [3076] = {.lex_state = 25, .external_lex_state = 4}, + [3077] = {.lex_state = 25, .external_lex_state = 4}, + [3078] = {.lex_state = 25, .external_lex_state = 4}, + [3079] = {.lex_state = 25, .external_lex_state = 4}, + [3080] = {.lex_state = 25, .external_lex_state = 4}, + [3081] = {.lex_state = 25, .external_lex_state = 4}, + [3082] = {.lex_state = 25, .external_lex_state = 3}, + [3083] = {.lex_state = 25, .external_lex_state = 4}, + [3084] = {.lex_state = 25, .external_lex_state = 3}, + [3085] = {.lex_state = 25, .external_lex_state = 4}, + [3086] = {.lex_state = 25, .external_lex_state = 4}, + [3087] = {.lex_state = 25, .external_lex_state = 3}, + [3088] = {.lex_state = 25, .external_lex_state = 4}, + [3089] = {.lex_state = 25, .external_lex_state = 3}, + [3090] = {.lex_state = 25, .external_lex_state = 4}, + [3091] = {.lex_state = 25, .external_lex_state = 3}, + [3092] = {.lex_state = 25, .external_lex_state = 4}, + [3093] = {.lex_state = 25, .external_lex_state = 4}, + [3094] = {.lex_state = 25, .external_lex_state = 4}, + [3095] = {.lex_state = 25, .external_lex_state = 4}, + [3096] = {.lex_state = 25, .external_lex_state = 3}, + [3097] = {.lex_state = 25, .external_lex_state = 4}, + [3098] = {.lex_state = 25, .external_lex_state = 3}, + [3099] = {.lex_state = 25, .external_lex_state = 4}, + [3100] = {.lex_state = 25, .external_lex_state = 3}, + [3101] = {.lex_state = 25, .external_lex_state = 3}, + [3102] = {.lex_state = 25, .external_lex_state = 3}, + [3103] = {.lex_state = 25, .external_lex_state = 4}, + [3104] = {.lex_state = 25, .external_lex_state = 4}, + [3105] = {.lex_state = 25, .external_lex_state = 4}, + [3106] = {.lex_state = 25, .external_lex_state = 3}, + [3107] = {.lex_state = 25, .external_lex_state = 3}, + [3108] = {.lex_state = 25, .external_lex_state = 3}, + [3109] = {.lex_state = 25, .external_lex_state = 3}, + [3110] = {.lex_state = 25, .external_lex_state = 4}, + [3111] = {.lex_state = 25, .external_lex_state = 4}, + [3112] = {.lex_state = 25, .external_lex_state = 3}, + [3113] = {.lex_state = 25, .external_lex_state = 4}, + [3114] = {.lex_state = 25, .external_lex_state = 3}, + [3115] = {.lex_state = 25, .external_lex_state = 3}, + [3116] = {.lex_state = 25, .external_lex_state = 3}, + [3117] = {.lex_state = 25, .external_lex_state = 3}, + [3118] = {.lex_state = 25, .external_lex_state = 3}, + [3119] = {.lex_state = 25, .external_lex_state = 4}, + [3120] = {.lex_state = 25, .external_lex_state = 4}, + [3121] = {.lex_state = 25, .external_lex_state = 3}, + [3122] = {.lex_state = 25, .external_lex_state = 4}, + [3123] = {.lex_state = 25, .external_lex_state = 4}, + [3124] = {.lex_state = 25, .external_lex_state = 4}, + [3125] = {.lex_state = 25, .external_lex_state = 4}, + [3126] = {.lex_state = 25, .external_lex_state = 3}, + [3127] = {.lex_state = 25, .external_lex_state = 3}, + [3128] = {.lex_state = 25, .external_lex_state = 3}, + [3129] = {.lex_state = 25, .external_lex_state = 4}, + [3130] = {.lex_state = 25, .external_lex_state = 4}, + [3131] = {.lex_state = 25, .external_lex_state = 4}, + [3132] = {.lex_state = 25, .external_lex_state = 4}, + [3133] = {.lex_state = 25, .external_lex_state = 3}, + [3134] = {.lex_state = 25, .external_lex_state = 4}, + [3135] = {.lex_state = 25, .external_lex_state = 4}, + [3136] = {.lex_state = 25, .external_lex_state = 4}, + [3137] = {.lex_state = 25, .external_lex_state = 4}, + [3138] = {.lex_state = 25, .external_lex_state = 3}, + [3139] = {.lex_state = 25, .external_lex_state = 3}, + [3140] = {.lex_state = 25, .external_lex_state = 4}, + [3141] = {.lex_state = 38, .external_lex_state = 5}, + [3142] = {.lex_state = 25, .external_lex_state = 3}, + [3143] = {.lex_state = 25, .external_lex_state = 3}, + [3144] = {.lex_state = 25, .external_lex_state = 4}, + [3145] = {.lex_state = 25, .external_lex_state = 3}, + [3146] = {.lex_state = 38, .external_lex_state = 5}, + [3147] = {.lex_state = 25, .external_lex_state = 4}, + [3148] = {.lex_state = 25, .external_lex_state = 3}, + [3149] = {.lex_state = 38, .external_lex_state = 5}, + [3150] = {.lex_state = 25, .external_lex_state = 3}, + [3151] = {.lex_state = 25, .external_lex_state = 3}, + [3152] = {.lex_state = 38, .external_lex_state = 5}, + [3153] = {.lex_state = 25, .external_lex_state = 3}, + [3154] = {.lex_state = 39, .external_lex_state = 2}, + [3155] = {.lex_state = 25, .external_lex_state = 3}, + [3156] = {.lex_state = 39, .external_lex_state = 2}, + [3157] = {.lex_state = 25, .external_lex_state = 3}, + [3158] = {.lex_state = 25, .external_lex_state = 3}, + [3159] = {.lex_state = 25, .external_lex_state = 4}, + [3160] = {.lex_state = 25, .external_lex_state = 3}, + [3161] = {.lex_state = 25, .external_lex_state = 4}, + [3162] = {.lex_state = 25, .external_lex_state = 3}, + [3163] = {.lex_state = 38, .external_lex_state = 5}, + [3164] = {.lex_state = 38, .external_lex_state = 5}, + [3165] = {.lex_state = 25, .external_lex_state = 3}, + [3166] = {.lex_state = 25, .external_lex_state = 3}, + [3167] = {.lex_state = 25, .external_lex_state = 4}, + [3168] = {.lex_state = 25, .external_lex_state = 3}, + [3169] = {.lex_state = 25, .external_lex_state = 4}, + [3170] = {.lex_state = 38, .external_lex_state = 5}, + [3171] = {.lex_state = 38, .external_lex_state = 5}, + [3172] = {.lex_state = 25, .external_lex_state = 3}, + [3173] = {.lex_state = 38, .external_lex_state = 5}, + [3174] = {.lex_state = 38, .external_lex_state = 5}, + [3175] = {.lex_state = 25, .external_lex_state = 4}, + [3176] = {.lex_state = 38, .external_lex_state = 5}, + [3177] = {.lex_state = 25, .external_lex_state = 3}, + [3178] = {.lex_state = 25, .external_lex_state = 4}, + [3179] = {.lex_state = 38, .external_lex_state = 5}, + [3180] = {.lex_state = 25, .external_lex_state = 4}, + [3181] = {.lex_state = 38, .external_lex_state = 5}, + [3182] = {.lex_state = 38, .external_lex_state = 5}, + [3183] = {.lex_state = 38, .external_lex_state = 5}, + [3184] = {.lex_state = 25, .external_lex_state = 4}, + [3185] = {.lex_state = 25, .external_lex_state = 3}, + [3186] = {.lex_state = 25, .external_lex_state = 3}, + [3187] = {.lex_state = 25, .external_lex_state = 3}, + [3188] = {.lex_state = 25, .external_lex_state = 3}, + [3189] = {.lex_state = 25, .external_lex_state = 3}, + [3190] = {.lex_state = 38, .external_lex_state = 5}, + [3191] = {.lex_state = 38, .external_lex_state = 5}, + [3192] = {.lex_state = 25, .external_lex_state = 3}, + [3193] = {.lex_state = 25, .external_lex_state = 3}, + [3194] = {.lex_state = 25, .external_lex_state = 3}, + [3195] = {.lex_state = 38, .external_lex_state = 5}, + [3196] = {.lex_state = 25, .external_lex_state = 3}, + [3197] = {.lex_state = 38, .external_lex_state = 5}, + [3198] = {.lex_state = 25, .external_lex_state = 3}, + [3199] = {.lex_state = 25, .external_lex_state = 3}, + [3200] = {.lex_state = 25, .external_lex_state = 3}, + [3201] = {.lex_state = 25, .external_lex_state = 3}, + [3202] = {.lex_state = 25, .external_lex_state = 3}, + [3203] = {.lex_state = 25, .external_lex_state = 3}, + [3204] = {.lex_state = 25, .external_lex_state = 3}, + [3205] = {.lex_state = 38, .external_lex_state = 5}, + [3206] = {.lex_state = 25, .external_lex_state = 3}, + [3207] = {.lex_state = 25, .external_lex_state = 3}, + [3208] = {.lex_state = 25, .external_lex_state = 3}, + [3209] = {.lex_state = 25, .external_lex_state = 3}, + [3210] = {.lex_state = 38, .external_lex_state = 5}, + [3211] = {.lex_state = 25, .external_lex_state = 3}, + [3212] = {.lex_state = 25, .external_lex_state = 4}, + [3213] = {.lex_state = 25, .external_lex_state = 4}, + [3214] = {.lex_state = 38, .external_lex_state = 5}, + [3215] = {.lex_state = 38, .external_lex_state = 5}, + [3216] = {.lex_state = 38, .external_lex_state = 5}, + [3217] = {.lex_state = 25, .external_lex_state = 4}, + [3218] = {.lex_state = 38, .external_lex_state = 5}, + [3219] = {.lex_state = 38, .external_lex_state = 5}, + [3220] = {.lex_state = 25, .external_lex_state = 3}, + [3221] = {.lex_state = 25, .external_lex_state = 3}, + [3222] = {.lex_state = 38, .external_lex_state = 5}, + [3223] = {.lex_state = 39, .external_lex_state = 2}, + [3224] = {.lex_state = 25, .external_lex_state = 3}, + [3225] = {.lex_state = 25, .external_lex_state = 3}, + [3226] = {.lex_state = 25, .external_lex_state = 4}, + [3227] = {.lex_state = 38, .external_lex_state = 5}, + [3228] = {.lex_state = 38, .external_lex_state = 5}, + [3229] = {.lex_state = 38, .external_lex_state = 5}, + [3230] = {.lex_state = 25, .external_lex_state = 3}, + [3231] = {.lex_state = 38, .external_lex_state = 5}, + [3232] = {.lex_state = 25, .external_lex_state = 3}, + [3233] = {.lex_state = 25, .external_lex_state = 3}, + [3234] = {.lex_state = 25, .external_lex_state = 3}, + [3235] = {.lex_state = 25, .external_lex_state = 3}, + [3236] = {.lex_state = 25, .external_lex_state = 4}, + [3237] = {.lex_state = 25, .external_lex_state = 4}, + [3238] = {.lex_state = 25, .external_lex_state = 3}, + [3239] = {.lex_state = 25, .external_lex_state = 3}, + [3240] = {.lex_state = 25, .external_lex_state = 3}, + [3241] = {.lex_state = 38, .external_lex_state = 5}, + [3242] = {.lex_state = 25, .external_lex_state = 3}, + [3243] = {.lex_state = 25, .external_lex_state = 3}, + [3244] = {.lex_state = 25, .external_lex_state = 4}, + [3245] = {.lex_state = 25, .external_lex_state = 3}, + [3246] = {.lex_state = 38, .external_lex_state = 5}, + [3247] = {.lex_state = 38, .external_lex_state = 5}, + [3248] = {.lex_state = 25, .external_lex_state = 3}, + [3249] = {.lex_state = 38, .external_lex_state = 5}, + [3250] = {.lex_state = 25, .external_lex_state = 3}, + [3251] = {.lex_state = 38, .external_lex_state = 5}, + [3252] = {.lex_state = 25, .external_lex_state = 3}, + [3253] = {.lex_state = 25, .external_lex_state = 3}, + [3254] = {.lex_state = 38, .external_lex_state = 5}, + [3255] = {.lex_state = 25, .external_lex_state = 4}, + [3256] = {.lex_state = 38, .external_lex_state = 5}, + [3257] = {.lex_state = 38, .external_lex_state = 5}, + [3258] = {.lex_state = 38, .external_lex_state = 5}, + [3259] = {.lex_state = 25, .external_lex_state = 3}, + [3260] = {.lex_state = 25, .external_lex_state = 3}, + [3261] = {.lex_state = 25, .external_lex_state = 4}, + [3262] = {.lex_state = 38, .external_lex_state = 5}, + [3263] = {.lex_state = 38, .external_lex_state = 5}, + [3264] = {.lex_state = 25, .external_lex_state = 4}, + [3265] = {.lex_state = 25, .external_lex_state = 4}, + [3266] = {.lex_state = 38, .external_lex_state = 5}, + [3267] = {.lex_state = 25, .external_lex_state = 3}, + [3268] = {.lex_state = 38, .external_lex_state = 5}, + [3269] = {.lex_state = 25, .external_lex_state = 4}, + [3270] = {.lex_state = 38, .external_lex_state = 5}, + [3271] = {.lex_state = 38, .external_lex_state = 5}, + [3272] = {.lex_state = 25, .external_lex_state = 3}, + [3273] = {.lex_state = 25, .external_lex_state = 3}, + [3274] = {.lex_state = 25, .external_lex_state = 3}, + [3275] = {.lex_state = 25, .external_lex_state = 3}, + [3276] = {.lex_state = 25, .external_lex_state = 3}, + [3277] = {.lex_state = 38, .external_lex_state = 5}, + [3278] = {.lex_state = 25, .external_lex_state = 3}, + [3279] = {.lex_state = 25, .external_lex_state = 3}, + [3280] = {.lex_state = 39, .external_lex_state = 2}, + [3281] = {.lex_state = 39, .external_lex_state = 2}, + [3282] = {.lex_state = 38, .external_lex_state = 5}, + [3283] = {.lex_state = 25, .external_lex_state = 4}, + [3284] = {.lex_state = 25, .external_lex_state = 3}, + [3285] = {.lex_state = 25, .external_lex_state = 4}, + [3286] = {.lex_state = 25, .external_lex_state = 3}, + [3287] = {.lex_state = 25, .external_lex_state = 3}, + [3288] = {.lex_state = 25, .external_lex_state = 4}, + [3289] = {.lex_state = 38, .external_lex_state = 5}, + [3290] = {.lex_state = 38, .external_lex_state = 5}, + [3291] = {.lex_state = 25, .external_lex_state = 3}, + [3292] = {.lex_state = 25, .external_lex_state = 3}, + [3293] = {.lex_state = 38, .external_lex_state = 5}, + [3294] = {.lex_state = 38, .external_lex_state = 5}, + [3295] = {.lex_state = 25, .external_lex_state = 3}, + [3296] = {.lex_state = 39, .external_lex_state = 2}, + [3297] = {.lex_state = 25, .external_lex_state = 3}, + [3298] = {.lex_state = 25, .external_lex_state = 3}, + [3299] = {.lex_state = 25, .external_lex_state = 3}, + [3300] = {.lex_state = 25, .external_lex_state = 4}, + [3301] = {.lex_state = 25, .external_lex_state = 4}, + [3302] = {.lex_state = 25, .external_lex_state = 4}, + [3303] = {.lex_state = 25, .external_lex_state = 4}, + [3304] = {.lex_state = 25, .external_lex_state = 4}, + [3305] = {.lex_state = 25, .external_lex_state = 4}, + [3306] = {.lex_state = 25, .external_lex_state = 4}, + [3307] = {.lex_state = 39, .external_lex_state = 2}, + [3308] = {.lex_state = 39, .external_lex_state = 2}, + [3309] = {.lex_state = 25, .external_lex_state = 4}, + [3310] = {.lex_state = 25, .external_lex_state = 4}, + [3311] = {.lex_state = 25, .external_lex_state = 4}, + [3312] = {.lex_state = 39, .external_lex_state = 2}, + [3313] = {.lex_state = 25, .external_lex_state = 4}, + [3314] = {.lex_state = 25, .external_lex_state = 4}, + [3315] = {.lex_state = 39, .external_lex_state = 2}, + [3316] = {.lex_state = 25, .external_lex_state = 4}, + [3317] = {.lex_state = 25, .external_lex_state = 3}, + [3318] = {.lex_state = 25, .external_lex_state = 4}, + [3319] = {.lex_state = 25, .external_lex_state = 4}, + [3320] = {.lex_state = 25, .external_lex_state = 4}, + [3321] = {.lex_state = 25, .external_lex_state = 4}, + [3322] = {.lex_state = 25, .external_lex_state = 4}, + [3323] = {.lex_state = 25, .external_lex_state = 4}, + [3324] = {.lex_state = 25, .external_lex_state = 4}, + [3325] = {.lex_state = 25, .external_lex_state = 4}, + [3326] = {.lex_state = 25, .external_lex_state = 4}, + [3327] = {.lex_state = 25, .external_lex_state = 4}, + [3328] = {.lex_state = 25, .external_lex_state = 4}, + [3329] = {.lex_state = 25, .external_lex_state = 4}, + [3330] = {.lex_state = 25, .external_lex_state = 4}, + [3331] = {.lex_state = 25, .external_lex_state = 4}, + [3332] = {.lex_state = 25, .external_lex_state = 4}, + [3333] = {.lex_state = 25, .external_lex_state = 4}, + [3334] = {.lex_state = 25, .external_lex_state = 4}, + [3335] = {.lex_state = 25, .external_lex_state = 4}, + [3336] = {.lex_state = 25, .external_lex_state = 4}, + [3337] = {.lex_state = 25, .external_lex_state = 4}, + [3338] = {.lex_state = 25, .external_lex_state = 4}, + [3339] = {.lex_state = 25, .external_lex_state = 4}, + [3340] = {.lex_state = 25, .external_lex_state = 4}, + [3341] = {.lex_state = 25, .external_lex_state = 4}, + [3342] = {.lex_state = 25, .external_lex_state = 4}, + [3343] = {.lex_state = 25, .external_lex_state = 4}, + [3344] = {.lex_state = 25, .external_lex_state = 4}, + [3345] = {.lex_state = 25, .external_lex_state = 4}, + [3346] = {.lex_state = 25, .external_lex_state = 4}, + [3347] = {.lex_state = 25, .external_lex_state = 4}, + [3348] = {.lex_state = 25, .external_lex_state = 4}, + [3349] = {.lex_state = 25, .external_lex_state = 4}, + [3350] = {.lex_state = 25, .external_lex_state = 4}, + [3351] = {.lex_state = 25, .external_lex_state = 4}, + [3352] = {.lex_state = 25, .external_lex_state = 4}, + [3353] = {.lex_state = 25, .external_lex_state = 4}, + [3354] = {.lex_state = 25, .external_lex_state = 4}, + [3355] = {.lex_state = 25, .external_lex_state = 4}, + [3356] = {.lex_state = 25, .external_lex_state = 4}, + [3357] = {.lex_state = 25, .external_lex_state = 4}, + [3358] = {.lex_state = 25, .external_lex_state = 4}, + [3359] = {.lex_state = 38, .external_lex_state = 2}, + [3360] = {.lex_state = 25, .external_lex_state = 4}, + [3361] = {.lex_state = 25, .external_lex_state = 4}, + [3362] = {.lex_state = 25, .external_lex_state = 4}, + [3363] = {.lex_state = 25, .external_lex_state = 4}, + [3364] = {.lex_state = 25, .external_lex_state = 4}, + [3365] = {.lex_state = 25, .external_lex_state = 4}, + [3366] = {.lex_state = 25, .external_lex_state = 4}, + [3367] = {.lex_state = 25, .external_lex_state = 4}, + [3368] = {.lex_state = 25, .external_lex_state = 4}, + [3369] = {.lex_state = 25, .external_lex_state = 4}, + [3370] = {.lex_state = 25, .external_lex_state = 4}, + [3371] = {.lex_state = 25, .external_lex_state = 4}, + [3372] = {.lex_state = 25, .external_lex_state = 4}, + [3373] = {.lex_state = 25, .external_lex_state = 4}, + [3374] = {.lex_state = 38, .external_lex_state = 2}, + [3375] = {.lex_state = 25, .external_lex_state = 4}, + [3376] = {.lex_state = 25, .external_lex_state = 4}, + [3377] = {.lex_state = 25, .external_lex_state = 4}, + [3378] = {.lex_state = 25, .external_lex_state = 4}, + [3379] = {.lex_state = 25, .external_lex_state = 4}, + [3380] = {.lex_state = 25, .external_lex_state = 4}, + [3381] = {.lex_state = 25, .external_lex_state = 4}, + [3382] = {.lex_state = 25, .external_lex_state = 4}, + [3383] = {.lex_state = 25, .external_lex_state = 4}, + [3384] = {.lex_state = 25, .external_lex_state = 4}, + [3385] = {.lex_state = 25, .external_lex_state = 4}, + [3386] = {.lex_state = 25, .external_lex_state = 4}, + [3387] = {.lex_state = 25, .external_lex_state = 4}, + [3388] = {.lex_state = 25, .external_lex_state = 4}, + [3389] = {.lex_state = 25, .external_lex_state = 4}, + [3390] = {.lex_state = 25, .external_lex_state = 4}, + [3391] = {.lex_state = 25, .external_lex_state = 4}, + [3392] = {.lex_state = 25, .external_lex_state = 4}, + [3393] = {.lex_state = 25, .external_lex_state = 4}, + [3394] = {.lex_state = 25, .external_lex_state = 4}, + [3395] = {.lex_state = 25, .external_lex_state = 4}, + [3396] = {.lex_state = 25, .external_lex_state = 4}, + [3397] = {.lex_state = 25, .external_lex_state = 4}, + [3398] = {.lex_state = 25, .external_lex_state = 4}, + [3399] = {.lex_state = 25, .external_lex_state = 4}, + [3400] = {.lex_state = 25, .external_lex_state = 4}, + [3401] = {.lex_state = 25, .external_lex_state = 4}, + [3402] = {.lex_state = 25, .external_lex_state = 4}, + [3403] = {.lex_state = 25, .external_lex_state = 4}, + [3404] = {.lex_state = 25, .external_lex_state = 3}, + [3405] = {.lex_state = 25, .external_lex_state = 4}, + [3406] = {.lex_state = 25, .external_lex_state = 4}, + [3407] = {.lex_state = 25, .external_lex_state = 4}, + [3408] = {.lex_state = 25, .external_lex_state = 4}, + [3409] = {.lex_state = 25, .external_lex_state = 3}, + [3410] = {.lex_state = 25, .external_lex_state = 3}, + [3411] = {.lex_state = 38, .external_lex_state = 2}, + [3412] = {.lex_state = 25, .external_lex_state = 4}, + [3413] = {.lex_state = 25, .external_lex_state = 4}, + [3414] = {.lex_state = 25, .external_lex_state = 4}, + [3415] = {.lex_state = 25, .external_lex_state = 4}, + [3416] = {.lex_state = 25, .external_lex_state = 4}, + [3417] = {.lex_state = 25, .external_lex_state = 4}, + [3418] = {.lex_state = 25, .external_lex_state = 4}, + [3419] = {.lex_state = 25, .external_lex_state = 4}, + [3420] = {.lex_state = 25, .external_lex_state = 4}, + [3421] = {.lex_state = 25, .external_lex_state = 4}, + [3422] = {.lex_state = 39, .external_lex_state = 2}, + [3423] = {.lex_state = 25, .external_lex_state = 3}, + [3424] = {.lex_state = 25, .external_lex_state = 3}, + [3425] = {.lex_state = 25, .external_lex_state = 4}, + [3426] = {.lex_state = 23, .external_lex_state = 3}, + [3427] = {.lex_state = 25, .external_lex_state = 4}, + [3428] = {.lex_state = 38, .external_lex_state = 2}, + [3429] = {.lex_state = 25, .external_lex_state = 3}, + [3430] = {.lex_state = 38, .external_lex_state = 2}, + [3431] = {.lex_state = 25, .external_lex_state = 3}, + [3432] = {.lex_state = 25, .external_lex_state = 4}, + [3433] = {.lex_state = 25, .external_lex_state = 4}, + [3434] = {.lex_state = 25, .external_lex_state = 4}, + [3435] = {.lex_state = 25, .external_lex_state = 3}, + [3436] = {.lex_state = 25, .external_lex_state = 3}, + [3437] = {.lex_state = 38, .external_lex_state = 2}, + [3438] = {.lex_state = 25, .external_lex_state = 4}, + [3439] = {.lex_state = 25, .external_lex_state = 4}, + [3440] = {.lex_state = 38, .external_lex_state = 2}, + [3441] = {.lex_state = 25, .external_lex_state = 4}, + [3442] = {.lex_state = 25, .external_lex_state = 4}, + [3443] = {.lex_state = 25, .external_lex_state = 4}, + [3444] = {.lex_state = 25, .external_lex_state = 4}, + [3445] = {.lex_state = 25, .external_lex_state = 4}, + [3446] = {.lex_state = 25, .external_lex_state = 3}, + [3447] = {.lex_state = 25, .external_lex_state = 4}, + [3448] = {.lex_state = 25, .external_lex_state = 4}, + [3449] = {.lex_state = 25, .external_lex_state = 4}, + [3450] = {.lex_state = 25, .external_lex_state = 4}, + [3451] = {.lex_state = 25, .external_lex_state = 4}, + [3452] = {.lex_state = 25, .external_lex_state = 4}, + [3453] = {.lex_state = 25, .external_lex_state = 4}, + [3454] = {.lex_state = 25, .external_lex_state = 4}, + [3455] = {.lex_state = 25, .external_lex_state = 4}, + [3456] = {.lex_state = 25, .external_lex_state = 4}, + [3457] = {.lex_state = 25, .external_lex_state = 4}, + [3458] = {.lex_state = 25, .external_lex_state = 4}, + [3459] = {.lex_state = 25, .external_lex_state = 4}, + [3460] = {.lex_state = 25, .external_lex_state = 4}, + [3461] = {.lex_state = 25, .external_lex_state = 4}, + [3462] = {.lex_state = 25, .external_lex_state = 4}, + [3463] = {.lex_state = 25, .external_lex_state = 3}, + [3464] = {.lex_state = 25, .external_lex_state = 4}, + [3465] = {.lex_state = 25, .external_lex_state = 4}, + [3466] = {.lex_state = 25, .external_lex_state = 4}, + [3467] = {.lex_state = 25, .external_lex_state = 4}, + [3468] = {.lex_state = 25, .external_lex_state = 4}, + [3469] = {.lex_state = 25, .external_lex_state = 4}, + [3470] = {.lex_state = 25, .external_lex_state = 3}, + [3471] = {.lex_state = 25, .external_lex_state = 4}, + [3472] = {.lex_state = 25, .external_lex_state = 4}, + [3473] = {.lex_state = 25, .external_lex_state = 4}, + [3474] = {.lex_state = 25, .external_lex_state = 4}, + [3475] = {.lex_state = 25, .external_lex_state = 4}, + [3476] = {.lex_state = 25, .external_lex_state = 4}, + [3477] = {.lex_state = 25, .external_lex_state = 4}, + [3478] = {.lex_state = 25, .external_lex_state = 4}, + [3479] = {.lex_state = 25, .external_lex_state = 4}, + [3480] = {.lex_state = 25, .external_lex_state = 4}, + [3481] = {.lex_state = 25, .external_lex_state = 4}, + [3482] = {.lex_state = 25, .external_lex_state = 4}, + [3483] = {.lex_state = 25, .external_lex_state = 4}, + [3484] = {.lex_state = 39, .external_lex_state = 2}, + [3485] = {.lex_state = 25, .external_lex_state = 4}, + [3486] = {.lex_state = 25, .external_lex_state = 4}, + [3487] = {.lex_state = 39, .external_lex_state = 2}, + [3488] = {.lex_state = 25, .external_lex_state = 4}, + [3489] = {.lex_state = 25, .external_lex_state = 4}, + [3490] = {.lex_state = 25, .external_lex_state = 4}, + [3491] = {.lex_state = 25, .external_lex_state = 4}, + [3492] = {.lex_state = 25, .external_lex_state = 4}, + [3493] = {.lex_state = 25, .external_lex_state = 3}, + [3494] = {.lex_state = 25, .external_lex_state = 4}, + [3495] = {.lex_state = 25, .external_lex_state = 4}, + [3496] = {.lex_state = 25, .external_lex_state = 4}, + [3497] = {.lex_state = 25, .external_lex_state = 4}, + [3498] = {.lex_state = 39, .external_lex_state = 2}, + [3499] = {.lex_state = 25, .external_lex_state = 4}, + [3500] = {.lex_state = 39, .external_lex_state = 2}, + [3501] = {.lex_state = 25, .external_lex_state = 3}, + [3502] = {.lex_state = 25, .external_lex_state = 3}, + [3503] = {.lex_state = 25, .external_lex_state = 4}, + [3504] = {.lex_state = 25, .external_lex_state = 4}, + [3505] = {.lex_state = 25, .external_lex_state = 3}, + [3506] = {.lex_state = 25, .external_lex_state = 3}, + [3507] = {.lex_state = 25, .external_lex_state = 4}, + [3508] = {.lex_state = 25, .external_lex_state = 3}, + [3509] = {.lex_state = 39, .external_lex_state = 2}, + [3510] = {.lex_state = 25, .external_lex_state = 3}, + [3511] = {.lex_state = 25, .external_lex_state = 3}, + [3512] = {.lex_state = 39, .external_lex_state = 2}, + [3513] = {.lex_state = 25, .external_lex_state = 4}, + [3514] = {.lex_state = 25, .external_lex_state = 4}, + [3515] = {.lex_state = 25, .external_lex_state = 3}, + [3516] = {.lex_state = 39, .external_lex_state = 2}, + [3517] = {.lex_state = 25, .external_lex_state = 4}, + [3518] = {.lex_state = 25, .external_lex_state = 4}, + [3519] = {.lex_state = 25, .external_lex_state = 4}, + [3520] = {.lex_state = 25, .external_lex_state = 3}, + [3521] = {.lex_state = 39, .external_lex_state = 2}, + [3522] = {.lex_state = 25, .external_lex_state = 4}, + [3523] = {.lex_state = 25, .external_lex_state = 3}, + [3524] = {.lex_state = 25, .external_lex_state = 4}, + [3525] = {.lex_state = 39, .external_lex_state = 2}, + [3526] = {.lex_state = 39, .external_lex_state = 2}, + [3527] = {.lex_state = 25, .external_lex_state = 3}, + [3528] = {.lex_state = 39, .external_lex_state = 2}, + [3529] = {.lex_state = 26, .external_lex_state = 4}, + [3530] = {.lex_state = 25, .external_lex_state = 4}, + [3531] = {.lex_state = 25, .external_lex_state = 4}, + [3532] = {.lex_state = 25, .external_lex_state = 4}, + [3533] = {.lex_state = 25, .external_lex_state = 4}, + [3534] = {.lex_state = 25, .external_lex_state = 4}, + [3535] = {.lex_state = 25, .external_lex_state = 3}, + [3536] = {.lex_state = 25, .external_lex_state = 4}, + [3537] = {.lex_state = 25, .external_lex_state = 4}, + [3538] = {.lex_state = 39, .external_lex_state = 2}, + [3539] = {.lex_state = 25, .external_lex_state = 4}, + [3540] = {.lex_state = 25, .external_lex_state = 4}, + [3541] = {.lex_state = 25, .external_lex_state = 4}, + [3542] = {.lex_state = 25, .external_lex_state = 3}, + [3543] = {.lex_state = 25, .external_lex_state = 3}, + [3544] = {.lex_state = 25, .external_lex_state = 3}, + [3545] = {.lex_state = 25, .external_lex_state = 3}, + [3546] = {.lex_state = 39, .external_lex_state = 2}, + [3547] = {.lex_state = 25, .external_lex_state = 3}, + [3548] = {.lex_state = 25, .external_lex_state = 3}, + [3549] = {.lex_state = 25, .external_lex_state = 4}, + [3550] = {.lex_state = 25, .external_lex_state = 4}, + [3551] = {.lex_state = 23, .external_lex_state = 4}, + [3552] = {.lex_state = 39, .external_lex_state = 2}, + [3553] = {.lex_state = 25, .external_lex_state = 4}, + [3554] = {.lex_state = 25, .external_lex_state = 4}, + [3555] = {.lex_state = 25, .external_lex_state = 4}, + [3556] = {.lex_state = 25, .external_lex_state = 4}, + [3557] = {.lex_state = 25, .external_lex_state = 4}, + [3558] = {.lex_state = 25, .external_lex_state = 4}, + [3559] = {.lex_state = 25, .external_lex_state = 4}, + [3560] = {.lex_state = 25, .external_lex_state = 4}, + [3561] = {.lex_state = 25, .external_lex_state = 4}, + [3562] = {.lex_state = 25, .external_lex_state = 4}, + [3563] = {.lex_state = 39, .external_lex_state = 2}, + [3564] = {.lex_state = 25, .external_lex_state = 4}, + [3565] = {.lex_state = 25, .external_lex_state = 3}, + [3566] = {.lex_state = 25, .external_lex_state = 3}, + [3567] = {.lex_state = 25, .external_lex_state = 4}, + [3568] = {.lex_state = 25, .external_lex_state = 4}, + [3569] = {.lex_state = 25, .external_lex_state = 3}, + [3570] = {.lex_state = 25, .external_lex_state = 3}, + [3571] = {.lex_state = 25, .external_lex_state = 3}, + [3572] = {.lex_state = 25, .external_lex_state = 3}, + [3573] = {.lex_state = 25, .external_lex_state = 3}, + [3574] = {.lex_state = 25, .external_lex_state = 3}, + [3575] = {.lex_state = 25, .external_lex_state = 3}, + [3576] = {.lex_state = 39, .external_lex_state = 2}, + [3577] = {.lex_state = 25, .external_lex_state = 3}, + [3578] = {.lex_state = 25, .external_lex_state = 3}, + [3579] = {.lex_state = 25, .external_lex_state = 3}, + [3580] = {.lex_state = 25, .external_lex_state = 3}, + [3581] = {.lex_state = 25, .external_lex_state = 3}, + [3582] = {.lex_state = 25, .external_lex_state = 4}, + [3583] = {.lex_state = 25, .external_lex_state = 4}, + [3584] = {.lex_state = 25, .external_lex_state = 4}, + [3585] = {.lex_state = 39, .external_lex_state = 2}, + [3586] = {.lex_state = 25, .external_lex_state = 3}, + [3587] = {.lex_state = 25, .external_lex_state = 4}, + [3588] = {.lex_state = 25, .external_lex_state = 3}, + [3589] = {.lex_state = 38, .external_lex_state = 2}, + [3590] = {.lex_state = 25, .external_lex_state = 4}, + [3591] = {.lex_state = 39, .external_lex_state = 2}, + [3592] = {.lex_state = 25, .external_lex_state = 3}, + [3593] = {.lex_state = 25, .external_lex_state = 3}, + [3594] = {.lex_state = 39, .external_lex_state = 2}, + [3595] = {.lex_state = 25, .external_lex_state = 4}, + [3596] = {.lex_state = 25, .external_lex_state = 3}, + [3597] = {.lex_state = 25, .external_lex_state = 3}, + [3598] = {.lex_state = 25, .external_lex_state = 3}, + [3599] = {.lex_state = 25, .external_lex_state = 3}, + [3600] = {.lex_state = 25, .external_lex_state = 4}, + [3601] = {.lex_state = 25, .external_lex_state = 4}, + [3602] = {.lex_state = 25, .external_lex_state = 3}, + [3603] = {.lex_state = 25, .external_lex_state = 3}, + [3604] = {.lex_state = 25, .external_lex_state = 3}, + [3605] = {.lex_state = 25, .external_lex_state = 3}, + [3606] = {.lex_state = 25, .external_lex_state = 3}, + [3607] = {.lex_state = 25, .external_lex_state = 3}, + [3608] = {.lex_state = 25, .external_lex_state = 3}, + [3609] = {.lex_state = 25, .external_lex_state = 3}, + [3610] = {.lex_state = 25, .external_lex_state = 3}, + [3611] = {.lex_state = 25, .external_lex_state = 3}, + [3612] = {.lex_state = 25, .external_lex_state = 4}, + [3613] = {.lex_state = 39, .external_lex_state = 2}, + [3614] = {.lex_state = 25, .external_lex_state = 4}, + [3615] = {.lex_state = 39, .external_lex_state = 2}, + [3616] = {.lex_state = 39, .external_lex_state = 2}, + [3617] = {.lex_state = 25, .external_lex_state = 3}, + [3618] = {.lex_state = 25, .external_lex_state = 4}, + [3619] = {.lex_state = 25, .external_lex_state = 4}, + [3620] = {.lex_state = 25, .external_lex_state = 4}, + [3621] = {.lex_state = 25, .external_lex_state = 3}, + [3622] = {.lex_state = 25, .external_lex_state = 3}, + [3623] = {.lex_state = 25, .external_lex_state = 3}, + [3624] = {.lex_state = 25, .external_lex_state = 3}, + [3625] = {.lex_state = 25, .external_lex_state = 3}, + [3626] = {.lex_state = 25, .external_lex_state = 3}, + [3627] = {.lex_state = 25, .external_lex_state = 4}, + [3628] = {.lex_state = 25, .external_lex_state = 3}, + [3629] = {.lex_state = 25, .external_lex_state = 4}, + [3630] = {.lex_state = 25, .external_lex_state = 3}, + [3631] = {.lex_state = 25, .external_lex_state = 4}, + [3632] = {.lex_state = 25, .external_lex_state = 3}, + [3633] = {.lex_state = 25, .external_lex_state = 3}, + [3634] = {.lex_state = 25, .external_lex_state = 4}, + [3635] = {.lex_state = 39, .external_lex_state = 2}, + [3636] = {.lex_state = 25, .external_lex_state = 3}, + [3637] = {.lex_state = 25, .external_lex_state = 4}, + [3638] = {.lex_state = 25, .external_lex_state = 4}, + [3639] = {.lex_state = 25, .external_lex_state = 4}, + [3640] = {.lex_state = 38, .external_lex_state = 2}, + [3641] = {.lex_state = 25, .external_lex_state = 4}, + [3642] = {.lex_state = 25, .external_lex_state = 4}, + [3643] = {.lex_state = 25, .external_lex_state = 4}, + [3644] = {.lex_state = 25, .external_lex_state = 3}, + [3645] = {.lex_state = 25, .external_lex_state = 3}, + [3646] = {.lex_state = 25, .external_lex_state = 4}, + [3647] = {.lex_state = 25, .external_lex_state = 3}, + [3648] = {.lex_state = 25, .external_lex_state = 4}, + [3649] = {.lex_state = 25, .external_lex_state = 3}, + [3650] = {.lex_state = 25, .external_lex_state = 4}, + [3651] = {.lex_state = 38, .external_lex_state = 2}, + [3652] = {.lex_state = 25, .external_lex_state = 3}, + [3653] = {.lex_state = 25, .external_lex_state = 3}, + [3654] = {.lex_state = 25, .external_lex_state = 3}, + [3655] = {.lex_state = 25, .external_lex_state = 4}, + [3656] = {.lex_state = 25, .external_lex_state = 3}, + [3657] = {.lex_state = 25, .external_lex_state = 4}, + [3658] = {.lex_state = 25, .external_lex_state = 3}, + [3659] = {.lex_state = 25, .external_lex_state = 4}, + [3660] = {.lex_state = 25, .external_lex_state = 4}, + [3661] = {.lex_state = 39, .external_lex_state = 2}, + [3662] = {.lex_state = 25, .external_lex_state = 4}, + [3663] = {.lex_state = 39, .external_lex_state = 2}, + [3664] = {.lex_state = 25, .external_lex_state = 4}, + [3665] = {.lex_state = 25, .external_lex_state = 4}, + [3666] = {.lex_state = 25, .external_lex_state = 4}, + [3667] = {.lex_state = 25, .external_lex_state = 3}, + [3668] = {.lex_state = 39, .external_lex_state = 2}, + [3669] = {.lex_state = 25, .external_lex_state = 3}, + [3670] = {.lex_state = 25, .external_lex_state = 3}, + [3671] = {.lex_state = 25, .external_lex_state = 4}, + [3672] = {.lex_state = 25, .external_lex_state = 3}, + [3673] = {.lex_state = 25, .external_lex_state = 3}, + [3674] = {.lex_state = 25, .external_lex_state = 3}, + [3675] = {.lex_state = 25, .external_lex_state = 3}, + [3676] = {.lex_state = 25, .external_lex_state = 3}, + [3677] = {.lex_state = 25, .external_lex_state = 3}, + [3678] = {.lex_state = 25, .external_lex_state = 3}, + [3679] = {.lex_state = 25, .external_lex_state = 3}, + [3680] = {.lex_state = 25, .external_lex_state = 3}, + [3681] = {.lex_state = 25, .external_lex_state = 3}, + [3682] = {.lex_state = 25, .external_lex_state = 3}, + [3683] = {.lex_state = 25, .external_lex_state = 3}, + [3684] = {.lex_state = 25, .external_lex_state = 4}, + [3685] = {.lex_state = 39, .external_lex_state = 2}, + [3686] = {.lex_state = 25, .external_lex_state = 3}, + [3687] = {.lex_state = 25, .external_lex_state = 3}, + [3688] = {.lex_state = 25, .external_lex_state = 3}, + [3689] = {.lex_state = 25, .external_lex_state = 3}, + [3690] = {.lex_state = 25, .external_lex_state = 3}, + [3691] = {.lex_state = 25, .external_lex_state = 3}, + [3692] = {.lex_state = 25, .external_lex_state = 4}, + [3693] = {.lex_state = 25, .external_lex_state = 3}, + [3694] = {.lex_state = 25, .external_lex_state = 4}, + [3695] = {.lex_state = 25, .external_lex_state = 3}, + [3696] = {.lex_state = 25, .external_lex_state = 3}, + [3697] = {.lex_state = 25, .external_lex_state = 3}, + [3698] = {.lex_state = 25, .external_lex_state = 3}, + [3699] = {.lex_state = 25, .external_lex_state = 3}, + [3700] = {.lex_state = 25, .external_lex_state = 3}, + [3701] = {.lex_state = 25, .external_lex_state = 3}, + [3702] = {.lex_state = 25, .external_lex_state = 3}, + [3703] = {.lex_state = 39, .external_lex_state = 2}, + [3704] = {.lex_state = 25, .external_lex_state = 3}, + [3705] = {.lex_state = 25, .external_lex_state = 3}, + [3706] = {.lex_state = 25, .external_lex_state = 3}, + [3707] = {.lex_state = 25, .external_lex_state = 3}, + [3708] = {.lex_state = 25, .external_lex_state = 3}, + [3709] = {.lex_state = 25, .external_lex_state = 3}, + [3710] = {.lex_state = 25, .external_lex_state = 3}, + [3711] = {.lex_state = 25, .external_lex_state = 3}, + [3712] = {.lex_state = 25, .external_lex_state = 4}, + [3713] = {.lex_state = 25, .external_lex_state = 3}, + [3714] = {.lex_state = 25, .external_lex_state = 4}, + [3715] = {.lex_state = 39, .external_lex_state = 2}, + [3716] = {.lex_state = 25, .external_lex_state = 3}, + [3717] = {.lex_state = 25, .external_lex_state = 4}, + [3718] = {.lex_state = 25, .external_lex_state = 4}, + [3719] = {.lex_state = 25, .external_lex_state = 3}, + [3720] = {.lex_state = 25, .external_lex_state = 4}, + [3721] = {.lex_state = 25, .external_lex_state = 4}, + [3722] = {.lex_state = 25, .external_lex_state = 4}, + [3723] = {.lex_state = 25, .external_lex_state = 3}, + [3724] = {.lex_state = 39, .external_lex_state = 2}, + [3725] = {.lex_state = 25, .external_lex_state = 4}, + [3726] = {.lex_state = 25, .external_lex_state = 3}, + [3727] = {.lex_state = 25, .external_lex_state = 3}, + [3728] = {.lex_state = 25, .external_lex_state = 3}, + [3729] = {.lex_state = 25, .external_lex_state = 3}, + [3730] = {.lex_state = 25, .external_lex_state = 3}, + [3731] = {.lex_state = 25, .external_lex_state = 4}, + [3732] = {.lex_state = 25, .external_lex_state = 3}, + [3733] = {.lex_state = 25, .external_lex_state = 3}, + [3734] = {.lex_state = 25, .external_lex_state = 4}, + [3735] = {.lex_state = 25, .external_lex_state = 4}, + [3736] = {.lex_state = 25, .external_lex_state = 4}, + [3737] = {.lex_state = 25, .external_lex_state = 4}, + [3738] = {.lex_state = 25, .external_lex_state = 3}, + [3739] = {.lex_state = 25, .external_lex_state = 3}, + [3740] = {.lex_state = 25, .external_lex_state = 4}, + [3741] = {.lex_state = 25, .external_lex_state = 3}, + [3742] = {.lex_state = 25, .external_lex_state = 3}, + [3743] = {.lex_state = 25, .external_lex_state = 3}, + [3744] = {.lex_state = 25, .external_lex_state = 4}, + [3745] = {.lex_state = 39, .external_lex_state = 2}, + [3746] = {.lex_state = 25, .external_lex_state = 3}, + [3747] = {.lex_state = 25, .external_lex_state = 3}, + [3748] = {.lex_state = 25, .external_lex_state = 3}, + [3749] = {.lex_state = 25, .external_lex_state = 4}, + [3750] = {.lex_state = 25, .external_lex_state = 3}, + [3751] = {.lex_state = 25, .external_lex_state = 3}, + [3752] = {.lex_state = 25, .external_lex_state = 4}, + [3753] = {.lex_state = 25, .external_lex_state = 3}, + [3754] = {.lex_state = 39, .external_lex_state = 2}, + [3755] = {.lex_state = 25, .external_lex_state = 3}, + [3756] = {.lex_state = 25, .external_lex_state = 3}, + [3757] = {.lex_state = 25, .external_lex_state = 3}, + [3758] = {.lex_state = 25, .external_lex_state = 4}, + [3759] = {.lex_state = 39, .external_lex_state = 2}, + [3760] = {.lex_state = 25, .external_lex_state = 3}, + [3761] = {.lex_state = 25, .external_lex_state = 3}, + [3762] = {.lex_state = 39, .external_lex_state = 2}, + [3763] = {.lex_state = 25, .external_lex_state = 4}, + [3764] = {.lex_state = 39, .external_lex_state = 2}, + [3765] = {.lex_state = 39, .external_lex_state = 2}, + [3766] = {.lex_state = 25, .external_lex_state = 3}, + [3767] = {.lex_state = 25, .external_lex_state = 3}, + [3768] = {.lex_state = 39, .external_lex_state = 2}, + [3769] = {.lex_state = 25, .external_lex_state = 3}, + [3770] = {.lex_state = 25, .external_lex_state = 3}, + [3771] = {.lex_state = 39, .external_lex_state = 2}, + [3772] = {.lex_state = 39, .external_lex_state = 2}, + [3773] = {.lex_state = 39, .external_lex_state = 2}, + [3774] = {.lex_state = 66, .external_lex_state = 2}, + [3775] = {.lex_state = 25, .external_lex_state = 3}, + [3776] = {.lex_state = 38, .external_lex_state = 2}, + [3777] = {.lex_state = 25, .external_lex_state = 3}, + [3778] = {.lex_state = 39, .external_lex_state = 2}, + [3779] = {.lex_state = 39, .external_lex_state = 2}, + [3780] = {.lex_state = 39, .external_lex_state = 2}, + [3781] = {.lex_state = 39, .external_lex_state = 2}, + [3782] = {.lex_state = 39, .external_lex_state = 2}, + [3783] = {.lex_state = 38, .external_lex_state = 2}, + [3784] = {.lex_state = 66, .external_lex_state = 2}, + [3785] = {.lex_state = 39, .external_lex_state = 2}, + [3786] = {.lex_state = 39, .external_lex_state = 2}, + [3787] = {.lex_state = 25, .external_lex_state = 3}, + [3788] = {.lex_state = 25, .external_lex_state = 3}, + [3789] = {.lex_state = 30, .external_lex_state = 3}, + [3790] = {.lex_state = 25, .external_lex_state = 3}, + [3791] = {.lex_state = 25, .external_lex_state = 3}, + [3792] = {.lex_state = 66, .external_lex_state = 2}, + [3793] = {.lex_state = 25, .external_lex_state = 3}, + [3794] = {.lex_state = 39, .external_lex_state = 2}, + [3795] = {.lex_state = 25, .external_lex_state = 3}, + [3796] = {.lex_state = 85, .external_lex_state = 2}, + [3797] = {.lex_state = 25, .external_lex_state = 3}, + [3798] = {.lex_state = 25, .external_lex_state = 3}, + [3799] = {.lex_state = 25, .external_lex_state = 3}, + [3800] = {.lex_state = 39, .external_lex_state = 2}, + [3801] = {.lex_state = 39, .external_lex_state = 2}, + [3802] = {.lex_state = 39, .external_lex_state = 2}, + [3803] = {.lex_state = 39, .external_lex_state = 2}, + [3804] = {.lex_state = 39, .external_lex_state = 2}, + [3805] = {.lex_state = 25, .external_lex_state = 3}, + [3806] = {.lex_state = 39, .external_lex_state = 2}, + [3807] = {.lex_state = 39, .external_lex_state = 2}, + [3808] = {.lex_state = 39, .external_lex_state = 2}, + [3809] = {.lex_state = 25, .external_lex_state = 3}, + [3810] = {.lex_state = 25, .external_lex_state = 3}, + [3811] = {.lex_state = 25, .external_lex_state = 3}, + [3812] = {.lex_state = 25, .external_lex_state = 4}, + [3813] = {.lex_state = 25, .external_lex_state = 3}, + [3814] = {.lex_state = 25, .external_lex_state = 3}, + [3815] = {.lex_state = 25, .external_lex_state = 3}, + [3816] = {.lex_state = 25, .external_lex_state = 3}, + [3817] = {.lex_state = 25, .external_lex_state = 3}, + [3818] = {.lex_state = 25, .external_lex_state = 3}, + [3819] = {.lex_state = 39, .external_lex_state = 2}, + [3820] = {.lex_state = 25, .external_lex_state = 3}, + [3821] = {.lex_state = 39, .external_lex_state = 2}, + [3822] = {.lex_state = 39, .external_lex_state = 2}, + [3823] = {.lex_state = 39, .external_lex_state = 2}, + [3824] = {.lex_state = 25, .external_lex_state = 3}, + [3825] = {.lex_state = 39, .external_lex_state = 2}, + [3826] = {.lex_state = 25, .external_lex_state = 3}, + [3827] = {.lex_state = 38, .external_lex_state = 2}, + [3828] = {.lex_state = 39, .external_lex_state = 2}, + [3829] = {.lex_state = 39, .external_lex_state = 2}, + [3830] = {.lex_state = 39, .external_lex_state = 2}, + [3831] = {.lex_state = 39, .external_lex_state = 2}, + [3832] = {.lex_state = 39, .external_lex_state = 2}, + [3833] = {.lex_state = 25, .external_lex_state = 3}, + [3834] = {.lex_state = 25, .external_lex_state = 3}, + [3835] = {.lex_state = 39, .external_lex_state = 2}, + [3836] = {.lex_state = 25, .external_lex_state = 3}, + [3837] = {.lex_state = 39, .external_lex_state = 2}, + [3838] = {.lex_state = 25, .external_lex_state = 3}, + [3839] = {.lex_state = 39, .external_lex_state = 2}, + [3840] = {.lex_state = 25, .external_lex_state = 3}, + [3841] = {.lex_state = 39, .external_lex_state = 2}, + [3842] = {.lex_state = 25, .external_lex_state = 4}, + [3843] = {.lex_state = 39, .external_lex_state = 2}, + [3844] = {.lex_state = 39, .external_lex_state = 2}, + [3845] = {.lex_state = 39, .external_lex_state = 2}, + [3846] = {.lex_state = 25, .external_lex_state = 3}, + [3847] = {.lex_state = 25, .external_lex_state = 3}, + [3848] = {.lex_state = 39, .external_lex_state = 2}, + [3849] = {.lex_state = 38, .external_lex_state = 2}, + [3850] = {.lex_state = 25, .external_lex_state = 3}, + [3851] = {.lex_state = 39, .external_lex_state = 2}, + [3852] = {.lex_state = 25, .external_lex_state = 3}, + [3853] = {.lex_state = 25, .external_lex_state = 3}, + [3854] = {.lex_state = 25, .external_lex_state = 3}, + [3855] = {.lex_state = 25, .external_lex_state = 3}, + [3856] = {.lex_state = 39, .external_lex_state = 2}, + [3857] = {.lex_state = 25, .external_lex_state = 3}, + [3858] = {.lex_state = 39, .external_lex_state = 2}, + [3859] = {.lex_state = 39, .external_lex_state = 2}, + [3860] = {.lex_state = 39, .external_lex_state = 2}, + [3861] = {.lex_state = 39, .external_lex_state = 2}, + [3862] = {.lex_state = 25, .external_lex_state = 3}, + [3863] = {.lex_state = 85, .external_lex_state = 5}, + [3864] = {.lex_state = 39, .external_lex_state = 2}, + [3865] = {.lex_state = 39, .external_lex_state = 2}, + [3866] = {.lex_state = 39, .external_lex_state = 2}, + [3867] = {.lex_state = 39, .external_lex_state = 2}, + [3868] = {.lex_state = 25, .external_lex_state = 3}, + [3869] = {.lex_state = 39, .external_lex_state = 2}, + [3870] = {.lex_state = 39, .external_lex_state = 2}, + [3871] = {.lex_state = 25, .external_lex_state = 3}, + [3872] = {.lex_state = 25, .external_lex_state = 3}, + [3873] = {.lex_state = 39, .external_lex_state = 2}, + [3874] = {.lex_state = 25, .external_lex_state = 3}, + [3875] = {.lex_state = 25, .external_lex_state = 3}, + [3876] = {.lex_state = 85, .external_lex_state = 5}, + [3877] = {.lex_state = 25, .external_lex_state = 3}, + [3878] = {.lex_state = 25, .external_lex_state = 3}, + [3879] = {.lex_state = 39, .external_lex_state = 2}, + [3880] = {.lex_state = 25, .external_lex_state = 3}, + [3881] = {.lex_state = 25, .external_lex_state = 3}, + [3882] = {.lex_state = 39, .external_lex_state = 2}, + [3883] = {.lex_state = 25, .external_lex_state = 4}, + [3884] = {.lex_state = 39, .external_lex_state = 2}, + [3885] = {.lex_state = 39, .external_lex_state = 2}, + [3886] = {.lex_state = 25, .external_lex_state = 3}, + [3887] = {.lex_state = 25, .external_lex_state = 4}, + [3888] = {.lex_state = 25, .external_lex_state = 3}, + [3889] = {.lex_state = 25, .external_lex_state = 3}, + [3890] = {.lex_state = 39, .external_lex_state = 2}, + [3891] = {.lex_state = 81, .external_lex_state = 2}, + [3892] = {.lex_state = 25, .external_lex_state = 3}, + [3893] = {.lex_state = 39, .external_lex_state = 2}, + [3894] = {.lex_state = 25, .external_lex_state = 3}, + [3895] = {.lex_state = 81, .external_lex_state = 2}, + [3896] = {.lex_state = 84, .external_lex_state = 2}, + [3897] = {.lex_state = 39, .external_lex_state = 2}, + [3898] = {.lex_state = 39, .external_lex_state = 2}, + [3899] = {.lex_state = 39, .external_lex_state = 2}, + [3900] = {.lex_state = 39, .external_lex_state = 2}, + [3901] = {.lex_state = 39, .external_lex_state = 2}, + [3902] = {.lex_state = 39, .external_lex_state = 2}, + [3903] = {.lex_state = 25, .external_lex_state = 3}, + [3904] = {.lex_state = 87, .external_lex_state = 2}, + [3905] = {.lex_state = 39, .external_lex_state = 2}, + [3906] = {.lex_state = 81, .external_lex_state = 2}, + [3907] = {.lex_state = 39, .external_lex_state = 2}, + [3908] = {.lex_state = 39, .external_lex_state = 2}, + [3909] = {.lex_state = 38, .external_lex_state = 2}, + [3910] = {.lex_state = 39, .external_lex_state = 2}, + [3911] = {.lex_state = 39, .external_lex_state = 2}, + [3912] = {.lex_state = 39, .external_lex_state = 2}, + [3913] = {.lex_state = 39, .external_lex_state = 2}, + [3914] = {.lex_state = 39, .external_lex_state = 2}, + [3915] = {.lex_state = 39, .external_lex_state = 2}, + [3916] = {.lex_state = 39, .external_lex_state = 2}, + [3917] = {.lex_state = 87, .external_lex_state = 5}, + [3918] = {.lex_state = 81, .external_lex_state = 2}, + [3919] = {.lex_state = 25, .external_lex_state = 3}, + [3920] = {.lex_state = 84, .external_lex_state = 5}, + [3921] = {.lex_state = 39, .external_lex_state = 2}, + [3922] = {.lex_state = 39, .external_lex_state = 2}, + [3923] = {.lex_state = 39, .external_lex_state = 2}, + [3924] = {.lex_state = 39, .external_lex_state = 2}, + [3925] = {.lex_state = 38, .external_lex_state = 2}, + [3926] = {.lex_state = 39, .external_lex_state = 2}, + [3927] = {.lex_state = 39, .external_lex_state = 2}, + [3928] = {.lex_state = 39, .external_lex_state = 2}, + [3929] = {.lex_state = 39, .external_lex_state = 2}, + [3930] = {.lex_state = 39, .external_lex_state = 2}, + [3931] = {.lex_state = 39, .external_lex_state = 2}, + [3932] = {.lex_state = 39, .external_lex_state = 2}, + [3933] = {.lex_state = 39, .external_lex_state = 2}, + [3934] = {.lex_state = 39, .external_lex_state = 2}, + [3935] = {.lex_state = 39, .external_lex_state = 2}, + [3936] = {.lex_state = 38, .external_lex_state = 2}, + [3937] = {.lex_state = 39, .external_lex_state = 2}, + [3938] = {.lex_state = 38, .external_lex_state = 2}, + [3939] = {.lex_state = 85, .external_lex_state = 2}, + [3940] = {.lex_state = 39, .external_lex_state = 2}, + [3941] = {.lex_state = 39, .external_lex_state = 2}, + [3942] = {.lex_state = 39, .external_lex_state = 2}, + [3943] = {.lex_state = 85, .external_lex_state = 2}, + [3944] = {.lex_state = 25, .external_lex_state = 3}, + [3945] = {.lex_state = 39, .external_lex_state = 2}, + [3946] = {.lex_state = 80, .external_lex_state = 2}, + [3947] = {.lex_state = 39, .external_lex_state = 2}, + [3948] = {.lex_state = 81, .external_lex_state = 2}, + [3949] = {.lex_state = 39, .external_lex_state = 2}, + [3950] = {.lex_state = 38, .external_lex_state = 2}, + [3951] = {.lex_state = 39, .external_lex_state = 2}, + [3952] = {.lex_state = 39, .external_lex_state = 2}, + [3953] = {.lex_state = 39, .external_lex_state = 2}, + [3954] = {.lex_state = 80, .external_lex_state = 2}, + [3955] = {.lex_state = 39, .external_lex_state = 2}, + [3956] = {.lex_state = 39, .external_lex_state = 2}, + [3957] = {.lex_state = 39, .external_lex_state = 2}, + [3958] = {.lex_state = 39, .external_lex_state = 2}, + [3959] = {.lex_state = 39, .external_lex_state = 2}, + [3960] = {.lex_state = 39, .external_lex_state = 2}, + [3961] = {.lex_state = 39, .external_lex_state = 2}, + [3962] = {.lex_state = 39, .external_lex_state = 2}, + [3963] = {.lex_state = 25, .external_lex_state = 3}, + [3964] = {.lex_state = 39, .external_lex_state = 2}, + [3965] = {.lex_state = 25, .external_lex_state = 3}, + [3966] = {.lex_state = 39, .external_lex_state = 2}, + [3967] = {.lex_state = 25, .external_lex_state = 3}, + [3968] = {.lex_state = 39, .external_lex_state = 2}, + [3969] = {.lex_state = 39, .external_lex_state = 2}, + [3970] = {.lex_state = 25, .external_lex_state = 3}, + [3971] = {.lex_state = 25, .external_lex_state = 3}, + [3972] = {.lex_state = 39, .external_lex_state = 2}, + [3973] = {.lex_state = 38, .external_lex_state = 2}, + [3974] = {.lex_state = 39, .external_lex_state = 2}, + [3975] = {.lex_state = 84, .external_lex_state = 5}, + [3976] = {.lex_state = 87, .external_lex_state = 5}, + [3977] = {.lex_state = 26, .external_lex_state = 3}, + [3978] = {.lex_state = 39, .external_lex_state = 2}, + [3979] = {.lex_state = 39, .external_lex_state = 2}, + [3980] = {.lex_state = 39, .external_lex_state = 2}, + [3981] = {.lex_state = 39, .external_lex_state = 2}, + [3982] = {.lex_state = 81, .external_lex_state = 5}, + [3983] = {.lex_state = 81, .external_lex_state = 5}, + [3984] = {.lex_state = 81, .external_lex_state = 5}, + [3985] = {.lex_state = 81, .external_lex_state = 5}, + [3986] = {.lex_state = 81, .external_lex_state = 5}, + [3987] = {.lex_state = 81, .external_lex_state = 5}, + [3988] = {.lex_state = 86, .external_lex_state = 2}, + [3989] = {.lex_state = 81, .external_lex_state = 5}, + [3990] = {.lex_state = 80, .external_lex_state = 2}, + [3991] = {.lex_state = 81, .external_lex_state = 5}, + [3992] = {.lex_state = 81, .external_lex_state = 5}, + [3993] = {.lex_state = 25, .external_lex_state = 3}, + [3994] = {.lex_state = 81, .external_lex_state = 2}, + [3995] = {.lex_state = 84, .external_lex_state = 2}, + [3996] = {.lex_state = 84, .external_lex_state = 2}, + [3997] = {.lex_state = 25, .external_lex_state = 3}, + [3998] = {.lex_state = 87, .external_lex_state = 2}, + [3999] = {.lex_state = 25, .external_lex_state = 3}, + [4000] = {.lex_state = 25, .external_lex_state = 3}, + [4001] = {.lex_state = 86, .external_lex_state = 5}, + [4002] = {.lex_state = 25, .external_lex_state = 3}, + [4003] = {.lex_state = 81, .external_lex_state = 5}, + [4004] = {.lex_state = 87, .external_lex_state = 2}, + [4005] = {.lex_state = 25, .external_lex_state = 3}, + [4006] = {.lex_state = 81, .external_lex_state = 5}, + [4007] = {.lex_state = 80, .external_lex_state = 2}, + [4008] = {.lex_state = 86, .external_lex_state = 5}, + [4009] = {.lex_state = 80, .external_lex_state = 2}, + [4010] = {.lex_state = 87, .external_lex_state = 2}, + [4011] = {.lex_state = 81, .external_lex_state = 5}, + [4012] = {.lex_state = 87, .external_lex_state = 2}, + [4013] = {.lex_state = 81, .external_lex_state = 5}, + [4014] = {.lex_state = 81, .external_lex_state = 5}, + [4015] = {.lex_state = 25, .external_lex_state = 3}, + [4016] = {.lex_state = 81, .external_lex_state = 5}, + [4017] = {.lex_state = 81, .external_lex_state = 5}, + [4018] = {.lex_state = 81, .external_lex_state = 2}, + [4019] = {.lex_state = 81, .external_lex_state = 2}, + [4020] = {.lex_state = 25, .external_lex_state = 3}, + [4021] = {.lex_state = 81, .external_lex_state = 5}, + [4022] = {.lex_state = 87, .external_lex_state = 2}, + [4023] = {.lex_state = 81, .external_lex_state = 5}, + [4024] = {.lex_state = 81, .external_lex_state = 5}, + [4025] = {.lex_state = 25, .external_lex_state = 3}, + [4026] = {.lex_state = 81, .external_lex_state = 2}, + [4027] = {.lex_state = 81, .external_lex_state = 5}, + [4028] = {.lex_state = 80, .external_lex_state = 5}, + [4029] = {.lex_state = 81, .external_lex_state = 2}, + [4030] = {.lex_state = 81, .external_lex_state = 2}, + [4031] = {.lex_state = 81, .external_lex_state = 2}, + [4032] = {.lex_state = 81, .external_lex_state = 2}, + [4033] = {.lex_state = 80, .external_lex_state = 5}, + [4034] = {.lex_state = 80, .external_lex_state = 5}, + [4035] = {.lex_state = 80, .external_lex_state = 5}, + [4036] = {.lex_state = 81, .external_lex_state = 2}, + [4037] = {.lex_state = 81, .external_lex_state = 2}, + [4038] = {.lex_state = 81, .external_lex_state = 2}, + [4039] = {.lex_state = 81, .external_lex_state = 2}, + [4040] = {.lex_state = 81, .external_lex_state = 2}, + [4041] = {.lex_state = 81, .external_lex_state = 2}, + [4042] = {.lex_state = 81, .external_lex_state = 2}, + [4043] = {.lex_state = 81, .external_lex_state = 2}, + [4044] = {.lex_state = 81, .external_lex_state = 2}, + [4045] = {.lex_state = 81, .external_lex_state = 2}, + [4046] = {.lex_state = 81, .external_lex_state = 2}, + [4047] = {.lex_state = 81, .external_lex_state = 2}, + [4048] = {.lex_state = 81, .external_lex_state = 2}, + [4049] = {.lex_state = 81, .external_lex_state = 2}, + [4050] = {.lex_state = 81, .external_lex_state = 2}, + [4051] = {.lex_state = 81, .external_lex_state = 2}, + [4052] = {.lex_state = 81, .external_lex_state = 2}, + [4053] = {.lex_state = 81, .external_lex_state = 2}, + [4054] = {.lex_state = 81, .external_lex_state = 2}, + [4055] = {.lex_state = 81, .external_lex_state = 2}, + [4056] = {.lex_state = 81, .external_lex_state = 2}, + [4057] = {.lex_state = 81, .external_lex_state = 2}, + [4058] = {.lex_state = 81, .external_lex_state = 2}, + [4059] = {.lex_state = 81, .external_lex_state = 2}, + [4060] = {.lex_state = 81, .external_lex_state = 2}, + [4061] = {.lex_state = 81, .external_lex_state = 2}, + [4062] = {.lex_state = 81, .external_lex_state = 2}, + [4063] = {.lex_state = 81, .external_lex_state = 2}, + [4064] = {.lex_state = 81, .external_lex_state = 2}, + [4065] = {.lex_state = 80, .external_lex_state = 5}, + [4066] = {.lex_state = 81, .external_lex_state = 2}, + [4067] = {.lex_state = 81, .external_lex_state = 2}, + [4068] = {.lex_state = 81, .external_lex_state = 2}, + [4069] = {.lex_state = 81, .external_lex_state = 2}, + [4070] = {.lex_state = 81, .external_lex_state = 2}, + [4071] = {.lex_state = 81, .external_lex_state = 2}, + [4072] = {.lex_state = 81, .external_lex_state = 2}, + [4073] = {.lex_state = 81, .external_lex_state = 2}, + [4074] = {.lex_state = 81, .external_lex_state = 2}, + [4075] = {.lex_state = 81, .external_lex_state = 2}, + [4076] = {.lex_state = 81, .external_lex_state = 2}, + [4077] = {.lex_state = 81, .external_lex_state = 2}, + [4078] = {.lex_state = 81, .external_lex_state = 2}, + [4079] = {.lex_state = 81, .external_lex_state = 2}, + [4080] = {.lex_state = 81, .external_lex_state = 2}, + [4081] = {.lex_state = 81, .external_lex_state = 2}, + [4082] = {.lex_state = 81, .external_lex_state = 2}, + [4083] = {.lex_state = 81, .external_lex_state = 2}, + [4084] = {.lex_state = 81, .external_lex_state = 2}, + [4085] = {.lex_state = 81, .external_lex_state = 2}, + [4086] = {.lex_state = 81, .external_lex_state = 2}, + [4087] = {.lex_state = 81, .external_lex_state = 2}, + [4088] = {.lex_state = 81, .external_lex_state = 2}, + [4089] = {.lex_state = 81, .external_lex_state = 2}, + [4090] = {.lex_state = 81, .external_lex_state = 2}, + [4091] = {.lex_state = 81, .external_lex_state = 2}, + [4092] = {.lex_state = 81, .external_lex_state = 2}, + [4093] = {.lex_state = 81, .external_lex_state = 2}, + [4094] = {.lex_state = 81, .external_lex_state = 2}, + [4095] = {.lex_state = 81, .external_lex_state = 2}, + [4096] = {.lex_state = 80, .external_lex_state = 5}, + [4097] = {.lex_state = 81, .external_lex_state = 2}, + [4098] = {.lex_state = 81, .external_lex_state = 2}, + [4099] = {.lex_state = 86, .external_lex_state = 2}, + [4100] = {.lex_state = 81, .external_lex_state = 2}, + [4101] = {.lex_state = 81, .external_lex_state = 2}, + [4102] = {.lex_state = 81, .external_lex_state = 2}, + [4103] = {.lex_state = 81, .external_lex_state = 2}, + [4104] = {.lex_state = 81, .external_lex_state = 2}, + [4105] = {.lex_state = 81, .external_lex_state = 2}, + [4106] = {.lex_state = 86, .external_lex_state = 2}, + [4107] = {.lex_state = 81, .external_lex_state = 2}, + [4108] = {.lex_state = 81, .external_lex_state = 2}, + [4109] = {.lex_state = 81, .external_lex_state = 2}, + [4110] = {.lex_state = 81, .external_lex_state = 2}, + [4111] = {.lex_state = 81, .external_lex_state = 2}, + [4112] = {.lex_state = 81, .external_lex_state = 2}, + [4113] = {.lex_state = 81, .external_lex_state = 2}, + [4114] = {.lex_state = 86, .external_lex_state = 2}, + [4115] = {.lex_state = 81, .external_lex_state = 2}, + [4116] = {.lex_state = 81, .external_lex_state = 2}, + [4117] = {.lex_state = 81, .external_lex_state = 2}, + [4118] = {.lex_state = 81, .external_lex_state = 2}, + [4119] = {.lex_state = 81, .external_lex_state = 2}, + [4120] = {.lex_state = 81, .external_lex_state = 2}, + [4121] = {.lex_state = 81, .external_lex_state = 2}, + [4122] = {.lex_state = 81, .external_lex_state = 2}, + [4123] = {.lex_state = 81, .external_lex_state = 2}, + [4124] = {.lex_state = 80, .external_lex_state = 2}, + [4125] = {.lex_state = 81, .external_lex_state = 2}, + [4126] = {.lex_state = 80, .external_lex_state = 2}, + [4127] = {.lex_state = 81, .external_lex_state = 2}, + [4128] = {.lex_state = 80, .external_lex_state = 5}, + [4129] = {.lex_state = 80, .external_lex_state = 5}, + [4130] = {.lex_state = 81, .external_lex_state = 2}, + [4131] = {.lex_state = 81, .external_lex_state = 2}, + [4132] = {.lex_state = 81, .external_lex_state = 2}, + [4133] = {.lex_state = 80, .external_lex_state = 5}, + [4134] = {.lex_state = 81, .external_lex_state = 2}, + [4135] = {.lex_state = 81, .external_lex_state = 2}, + [4136] = {.lex_state = 81, .external_lex_state = 2}, + [4137] = {.lex_state = 81, .external_lex_state = 2}, + [4138] = {.lex_state = 81, .external_lex_state = 2}, + [4139] = {.lex_state = 81, .external_lex_state = 2}, + [4140] = {.lex_state = 81, .external_lex_state = 2}, + [4141] = {.lex_state = 81, .external_lex_state = 2}, + [4142] = {.lex_state = 81, .external_lex_state = 2}, + [4143] = {.lex_state = 81, .external_lex_state = 2}, + [4144] = {.lex_state = 81, .external_lex_state = 2}, + [4145] = {.lex_state = 81, .external_lex_state = 2}, + [4146] = {.lex_state = 81, .external_lex_state = 2}, + [4147] = {.lex_state = 81, .external_lex_state = 2}, + [4148] = {.lex_state = 81, .external_lex_state = 2}, + [4149] = {.lex_state = 81, .external_lex_state = 2}, + [4150] = {.lex_state = 81, .external_lex_state = 2}, + [4151] = {.lex_state = 81, .external_lex_state = 2}, + [4152] = {.lex_state = 81, .external_lex_state = 2}, + [4153] = {.lex_state = 81, .external_lex_state = 2}, + [4154] = {.lex_state = 81, .external_lex_state = 2}, + [4155] = {.lex_state = 81, .external_lex_state = 2}, + [4156] = {.lex_state = 81, .external_lex_state = 2}, + [4157] = {.lex_state = 81, .external_lex_state = 2}, + [4158] = {.lex_state = 81, .external_lex_state = 2}, + [4159] = {.lex_state = 81, .external_lex_state = 2}, + [4160] = {.lex_state = 81, .external_lex_state = 2}, + [4161] = {.lex_state = 81, .external_lex_state = 2}, + [4162] = {.lex_state = 81, .external_lex_state = 2}, + [4163] = {.lex_state = 81, .external_lex_state = 2}, + [4164] = {.lex_state = 81, .external_lex_state = 2}, + [4165] = {.lex_state = 80, .external_lex_state = 5}, + [4166] = {.lex_state = 81, .external_lex_state = 2}, + [4167] = {.lex_state = 81, .external_lex_state = 2}, + [4168] = {.lex_state = 81, .external_lex_state = 2}, + [4169] = {.lex_state = 81, .external_lex_state = 2}, + [4170] = {.lex_state = 86, .external_lex_state = 2}, + [4171] = {.lex_state = 81, .external_lex_state = 2}, + [4172] = {.lex_state = 81, .external_lex_state = 2}, + [4173] = {.lex_state = 81, .external_lex_state = 2}, + [4174] = {.lex_state = 81, .external_lex_state = 2}, + [4175] = {.lex_state = 80, .external_lex_state = 2}, + [4176] = {.lex_state = 81, .external_lex_state = 2}, + [4177] = {.lex_state = 81, .external_lex_state = 2}, + [4178] = {.lex_state = 81, .external_lex_state = 2}, + [4179] = {.lex_state = 81, .external_lex_state = 2}, + [4180] = {.lex_state = 80, .external_lex_state = 5}, + [4181] = {.lex_state = 81, .external_lex_state = 2}, + [4182] = {.lex_state = 80, .external_lex_state = 5}, + [4183] = {.lex_state = 81, .external_lex_state = 2}, + [4184] = {.lex_state = 81, .external_lex_state = 2}, + [4185] = {.lex_state = 81, .external_lex_state = 2}, + [4186] = {.lex_state = 81, .external_lex_state = 2}, + [4187] = {.lex_state = 81, .external_lex_state = 2}, + [4188] = {.lex_state = 81, .external_lex_state = 2}, + [4189] = {.lex_state = 81, .external_lex_state = 2}, + [4190] = {.lex_state = 80, .external_lex_state = 5}, + [4191] = {.lex_state = 81, .external_lex_state = 2}, + [4192] = {.lex_state = 80, .external_lex_state = 5}, + [4193] = {.lex_state = 80, .external_lex_state = 5}, + [4194] = {.lex_state = 81, .external_lex_state = 2}, + [4195] = {.lex_state = 81, .external_lex_state = 2}, + [4196] = {.lex_state = 80, .external_lex_state = 5}, + [4197] = {.lex_state = 86, .external_lex_state = 2}, + [4198] = {.lex_state = 81, .external_lex_state = 2}, + [4199] = {.lex_state = 81, .external_lex_state = 2}, + [4200] = {.lex_state = 81, .external_lex_state = 2}, + [4201] = {.lex_state = 81, .external_lex_state = 2}, + [4202] = {.lex_state = 81, .external_lex_state = 2}, + [4203] = {.lex_state = 80, .external_lex_state = 5}, + [4204] = {.lex_state = 81, .external_lex_state = 2}, + [4205] = {.lex_state = 80, .external_lex_state = 5}, + [4206] = {.lex_state = 80, .external_lex_state = 5}, + [4207] = {.lex_state = 80, .external_lex_state = 5}, + [4208] = {.lex_state = 81, .external_lex_state = 2}, + [4209] = {.lex_state = 81, .external_lex_state = 2}, + [4210] = {.lex_state = 81, .external_lex_state = 2}, + [4211] = {.lex_state = 81, .external_lex_state = 2}, + [4212] = {.lex_state = 81, .external_lex_state = 2}, + [4213] = {.lex_state = 81, .external_lex_state = 2}, + [4214] = {.lex_state = 81, .external_lex_state = 2}, + [4215] = {.lex_state = 81, .external_lex_state = 2}, + [4216] = {.lex_state = 81, .external_lex_state = 2}, + [4217] = {.lex_state = 81, .external_lex_state = 2}, + [4218] = {.lex_state = 81, .external_lex_state = 2}, + [4219] = {.lex_state = 81, .external_lex_state = 2}, + [4220] = {.lex_state = 80, .external_lex_state = 2}, + [4221] = {.lex_state = 80, .external_lex_state = 2}, + [4222] = {.lex_state = 80, .external_lex_state = 2}, + [4223] = {.lex_state = 80, .external_lex_state = 2}, + [4224] = {.lex_state = 80, .external_lex_state = 2}, + [4225] = {.lex_state = 80, .external_lex_state = 2}, + [4226] = {.lex_state = 80, .external_lex_state = 2}, + [4227] = {.lex_state = 80, .external_lex_state = 2}, + [4228] = {.lex_state = 80, .external_lex_state = 2}, + [4229] = {.lex_state = 80, .external_lex_state = 2}, + [4230] = {.lex_state = 80, .external_lex_state = 2}, + [4231] = {.lex_state = 80, .external_lex_state = 2}, + [4232] = {.lex_state = 80, .external_lex_state = 2}, + [4233] = {.lex_state = 80, .external_lex_state = 2}, + [4234] = {.lex_state = 80, .external_lex_state = 2}, + [4235] = {.lex_state = 80, .external_lex_state = 2}, + [4236] = {.lex_state = 80, .external_lex_state = 2}, + [4237] = {.lex_state = 80, .external_lex_state = 2}, + [4238] = {.lex_state = 80, .external_lex_state = 2}, + [4239] = {.lex_state = 80, .external_lex_state = 2}, + [4240] = {.lex_state = 80, .external_lex_state = 2}, + [4241] = {.lex_state = 80, .external_lex_state = 2}, + [4242] = {.lex_state = 80, .external_lex_state = 2}, + [4243] = {.lex_state = 80, .external_lex_state = 2}, + [4244] = {.lex_state = 80, .external_lex_state = 2}, + [4245] = {.lex_state = 80, .external_lex_state = 2}, + [4246] = {.lex_state = 80, .external_lex_state = 2}, + [4247] = {.lex_state = 80, .external_lex_state = 2}, + [4248] = {.lex_state = 80, .external_lex_state = 2}, + [4249] = {.lex_state = 80, .external_lex_state = 2}, + [4250] = {.lex_state = 80, .external_lex_state = 2}, + [4251] = {.lex_state = 80, .external_lex_state = 2}, + [4252] = {.lex_state = 80, .external_lex_state = 2}, + [4253] = {.lex_state = 80, .external_lex_state = 2}, + [4254] = {.lex_state = 80, .external_lex_state = 2}, + [4255] = {.lex_state = 80, .external_lex_state = 2}, + [4256] = {.lex_state = 80, .external_lex_state = 2}, + [4257] = {.lex_state = 80, .external_lex_state = 2}, + [4258] = {.lex_state = 80, .external_lex_state = 2}, + [4259] = {.lex_state = 80, .external_lex_state = 2}, + [4260] = {.lex_state = 80, .external_lex_state = 2}, + [4261] = {.lex_state = 80, .external_lex_state = 2}, + [4262] = {.lex_state = 80, .external_lex_state = 2}, + [4263] = {.lex_state = 80, .external_lex_state = 2}, + [4264] = {.lex_state = 80, .external_lex_state = 2}, + [4265] = {.lex_state = 80, .external_lex_state = 2}, + [4266] = {.lex_state = 80, .external_lex_state = 2}, + [4267] = {.lex_state = 80, .external_lex_state = 2}, + [4268] = {.lex_state = 80, .external_lex_state = 2}, + [4269] = {.lex_state = 80, .external_lex_state = 2}, + [4270] = {.lex_state = 80, .external_lex_state = 2}, + [4271] = {.lex_state = 80, .external_lex_state = 2}, + [4272] = {.lex_state = 80, .external_lex_state = 2}, + [4273] = {.lex_state = 80, .external_lex_state = 2}, + [4274] = {.lex_state = 80, .external_lex_state = 2}, + [4275] = {.lex_state = 80, .external_lex_state = 2}, + [4276] = {.lex_state = 80, .external_lex_state = 2}, + [4277] = {.lex_state = 80, .external_lex_state = 2}, + [4278] = {.lex_state = 80, .external_lex_state = 2}, + [4279] = {.lex_state = 80, .external_lex_state = 2}, + [4280] = {.lex_state = 80, .external_lex_state = 2}, + [4281] = {.lex_state = 80, .external_lex_state = 2}, + [4282] = {.lex_state = 80, .external_lex_state = 2}, + [4283] = {.lex_state = 80, .external_lex_state = 2}, + [4284] = {.lex_state = 80, .external_lex_state = 2}, + [4285] = {.lex_state = 80, .external_lex_state = 2}, + [4286] = {.lex_state = 80, .external_lex_state = 2}, + [4287] = {.lex_state = 80, .external_lex_state = 2}, + [4288] = {.lex_state = 80, .external_lex_state = 2}, + [4289] = {.lex_state = 80, .external_lex_state = 2}, + [4290] = {.lex_state = 80, .external_lex_state = 2}, + [4291] = {.lex_state = 80, .external_lex_state = 2}, + [4292] = {.lex_state = 80, .external_lex_state = 2}, + [4293] = {.lex_state = 80, .external_lex_state = 2}, + [4294] = {.lex_state = 80, .external_lex_state = 2}, + [4295] = {.lex_state = 80, .external_lex_state = 2}, + [4296] = {.lex_state = 80, .external_lex_state = 2}, + [4297] = {.lex_state = 80, .external_lex_state = 2}, + [4298] = {.lex_state = 80, .external_lex_state = 2}, + [4299] = {.lex_state = 80, .external_lex_state = 2}, + [4300] = {.lex_state = 80, .external_lex_state = 2}, + [4301] = {.lex_state = 80, .external_lex_state = 2}, + [4302] = {.lex_state = 80, .external_lex_state = 2}, + [4303] = {.lex_state = 80, .external_lex_state = 2}, + [4304] = {.lex_state = 80, .external_lex_state = 2}, + [4305] = {.lex_state = 80, .external_lex_state = 2}, + [4306] = {.lex_state = 80, .external_lex_state = 2}, + [4307] = {.lex_state = 80, .external_lex_state = 2}, + [4308] = {.lex_state = 80, .external_lex_state = 2}, + [4309] = {.lex_state = 80, .external_lex_state = 2}, + [4310] = {.lex_state = 80, .external_lex_state = 2}, + [4311] = {.lex_state = 80, .external_lex_state = 2}, + [4312] = {.lex_state = 80, .external_lex_state = 2}, + [4313] = {.lex_state = 80, .external_lex_state = 2}, + [4314] = {.lex_state = 66, .external_lex_state = 2}, + [4315] = {.lex_state = 80, .external_lex_state = 2}, + [4316] = {.lex_state = 80, .external_lex_state = 2}, + [4317] = {.lex_state = 80, .external_lex_state = 2}, + [4318] = {.lex_state = 80, .external_lex_state = 2}, + [4319] = {.lex_state = 80, .external_lex_state = 2}, + [4320] = {.lex_state = 80, .external_lex_state = 2}, + [4321] = {.lex_state = 80, .external_lex_state = 2}, + [4322] = {.lex_state = 80, .external_lex_state = 2}, + [4323] = {.lex_state = 80, .external_lex_state = 2}, + [4324] = {.lex_state = 80, .external_lex_state = 2}, + [4325] = {.lex_state = 80, .external_lex_state = 2}, + [4326] = {.lex_state = 80, .external_lex_state = 2}, + [4327] = {.lex_state = 80, .external_lex_state = 2}, + [4328] = {.lex_state = 80, .external_lex_state = 2}, + [4329] = {.lex_state = 80, .external_lex_state = 2}, + [4330] = {.lex_state = 80, .external_lex_state = 2}, + [4331] = {.lex_state = 80, .external_lex_state = 2}, + [4332] = {.lex_state = 80, .external_lex_state = 2}, + [4333] = {.lex_state = 80, .external_lex_state = 2}, + [4334] = {.lex_state = 80, .external_lex_state = 2}, + [4335] = {.lex_state = 80, .external_lex_state = 2}, + [4336] = {.lex_state = 80, .external_lex_state = 2}, + [4337] = {.lex_state = 80, .external_lex_state = 2}, + [4338] = {.lex_state = 80, .external_lex_state = 2}, + [4339] = {.lex_state = 80, .external_lex_state = 2}, + [4340] = {.lex_state = 80, .external_lex_state = 2}, + [4341] = {.lex_state = 80, .external_lex_state = 2}, + [4342] = {.lex_state = 80, .external_lex_state = 2}, + [4343] = {.lex_state = 80, .external_lex_state = 2}, + [4344] = {.lex_state = 80, .external_lex_state = 2}, + [4345] = {.lex_state = 80, .external_lex_state = 2}, + [4346] = {.lex_state = 80, .external_lex_state = 2}, + [4347] = {.lex_state = 80, .external_lex_state = 2}, + [4348] = {.lex_state = 80, .external_lex_state = 2}, + [4349] = {.lex_state = 80, .external_lex_state = 2}, + [4350] = {.lex_state = 80, .external_lex_state = 2}, + [4351] = {.lex_state = 80, .external_lex_state = 2}, + [4352] = {.lex_state = 80, .external_lex_state = 2}, + [4353] = {.lex_state = 80, .external_lex_state = 2}, + [4354] = {.lex_state = 80, .external_lex_state = 2}, + [4355] = {.lex_state = 80, .external_lex_state = 2}, + [4356] = {.lex_state = 80, .external_lex_state = 2}, + [4357] = {.lex_state = 80, .external_lex_state = 2}, + [4358] = {.lex_state = 80, .external_lex_state = 2}, + [4359] = {.lex_state = 80, .external_lex_state = 2}, + [4360] = {.lex_state = 80, .external_lex_state = 2}, + [4361] = {.lex_state = 80, .external_lex_state = 2}, + [4362] = {.lex_state = 80, .external_lex_state = 2}, + [4363] = {.lex_state = 80, .external_lex_state = 2}, + [4364] = {.lex_state = 80, .external_lex_state = 2}, + [4365] = {.lex_state = 80, .external_lex_state = 2}, + [4366] = {.lex_state = 80, .external_lex_state = 2}, + [4367] = {.lex_state = 80, .external_lex_state = 2}, + [4368] = {.lex_state = 80, .external_lex_state = 2}, + [4369] = {.lex_state = 80, .external_lex_state = 2}, + [4370] = {.lex_state = 80, .external_lex_state = 2}, + [4371] = {.lex_state = 80, .external_lex_state = 2}, + [4372] = {.lex_state = 80, .external_lex_state = 2}, + [4373] = {.lex_state = 80, .external_lex_state = 2}, + [4374] = {.lex_state = 80, .external_lex_state = 2}, + [4375] = {.lex_state = 80, .external_lex_state = 2}, + [4376] = {.lex_state = 80, .external_lex_state = 2}, + [4377] = {.lex_state = 80, .external_lex_state = 2}, + [4378] = {.lex_state = 80, .external_lex_state = 2}, + [4379] = {.lex_state = 80, .external_lex_state = 2}, + [4380] = {.lex_state = 80, .external_lex_state = 2}, + [4381] = {.lex_state = 80, .external_lex_state = 2}, + [4382] = {.lex_state = 80, .external_lex_state = 2}, + [4383] = {.lex_state = 80, .external_lex_state = 2}, + [4384] = {.lex_state = 80, .external_lex_state = 2}, + [4385] = {.lex_state = 80, .external_lex_state = 2}, + [4386] = {.lex_state = 80, .external_lex_state = 2}, + [4387] = {.lex_state = 80, .external_lex_state = 2}, + [4388] = {.lex_state = 80, .external_lex_state = 2}, + [4389] = {.lex_state = 80, .external_lex_state = 2}, + [4390] = {.lex_state = 80, .external_lex_state = 2}, + [4391] = {.lex_state = 80, .external_lex_state = 2}, + [4392] = {.lex_state = 80, .external_lex_state = 2}, + [4393] = {.lex_state = 80, .external_lex_state = 2}, + [4394] = {.lex_state = 80, .external_lex_state = 2}, + [4395] = {.lex_state = 80, .external_lex_state = 2}, + [4396] = {.lex_state = 80, .external_lex_state = 2}, + [4397] = {.lex_state = 80, .external_lex_state = 2}, + [4398] = {.lex_state = 80, .external_lex_state = 2}, + [4399] = {.lex_state = 80, .external_lex_state = 2}, + [4400] = {.lex_state = 80, .external_lex_state = 2}, + [4401] = {.lex_state = 80, .external_lex_state = 2}, + [4402] = {.lex_state = 80, .external_lex_state = 2}, + [4403] = {.lex_state = 80, .external_lex_state = 2}, + [4404] = {.lex_state = 80, .external_lex_state = 2}, + [4405] = {.lex_state = 80, .external_lex_state = 2}, + [4406] = {.lex_state = 80, .external_lex_state = 2}, + [4407] = {.lex_state = 80, .external_lex_state = 2}, + [4408] = {.lex_state = 80, .external_lex_state = 2}, + [4409] = {.lex_state = 80, .external_lex_state = 2}, + [4410] = {.lex_state = 80, .external_lex_state = 2}, + [4411] = {.lex_state = 80, .external_lex_state = 2}, + [4412] = {.lex_state = 80, .external_lex_state = 2}, + [4413] = {.lex_state = 80, .external_lex_state = 2}, + [4414] = {.lex_state = 80, .external_lex_state = 2}, + [4415] = {.lex_state = 80, .external_lex_state = 2}, + [4416] = {.lex_state = 80, .external_lex_state = 2}, + [4417] = {.lex_state = 80, .external_lex_state = 2}, + [4418] = {.lex_state = 80, .external_lex_state = 2}, + [4419] = {.lex_state = 80, .external_lex_state = 2}, + [4420] = {.lex_state = 80, .external_lex_state = 2}, + [4421] = {.lex_state = 80, .external_lex_state = 2}, + [4422] = {.lex_state = 80, .external_lex_state = 2}, + [4423] = {.lex_state = 80, .external_lex_state = 2}, + [4424] = {.lex_state = 80, .external_lex_state = 2}, + [4425] = {.lex_state = 80, .external_lex_state = 2}, + [4426] = {.lex_state = 80, .external_lex_state = 2}, + [4427] = {.lex_state = 80, .external_lex_state = 2}, + [4428] = {.lex_state = 80, .external_lex_state = 2}, + [4429] = {.lex_state = 80, .external_lex_state = 2}, + [4430] = {.lex_state = 80, .external_lex_state = 2}, + [4431] = {.lex_state = 80, .external_lex_state = 2}, + [4432] = {.lex_state = 80, .external_lex_state = 2}, + [4433] = {.lex_state = 80, .external_lex_state = 2}, + [4434] = {.lex_state = 80, .external_lex_state = 2}, + [4435] = {.lex_state = 80, .external_lex_state = 2}, + [4436] = {.lex_state = 80, .external_lex_state = 2}, + [4437] = {.lex_state = 80, .external_lex_state = 2}, + [4438] = {.lex_state = 80, .external_lex_state = 2}, + [4439] = {.lex_state = 80, .external_lex_state = 2}, + [4440] = {.lex_state = 80, .external_lex_state = 2}, + [4441] = {.lex_state = 80, .external_lex_state = 2}, + [4442] = {.lex_state = 80, .external_lex_state = 2}, + [4443] = {.lex_state = 80, .external_lex_state = 2}, + [4444] = {.lex_state = 64, .external_lex_state = 2}, + [4445] = {.lex_state = 80, .external_lex_state = 2}, + [4446] = {.lex_state = 78, .external_lex_state = 2}, + [4447] = {.lex_state = 80, .external_lex_state = 2}, + [4448] = {.lex_state = 380, .external_lex_state = 2}, + [4449] = {.lex_state = 380, .external_lex_state = 2}, + [4450] = {.lex_state = 380, .external_lex_state = 2}, + [4451] = {.lex_state = 380, .external_lex_state = 2}, + [4452] = {.lex_state = 380, .external_lex_state = 2}, + [4453] = {.lex_state = 380, .external_lex_state = 2}, + [4454] = {.lex_state = 380, .external_lex_state = 2}, + [4455] = {.lex_state = 380, .external_lex_state = 2}, + [4456] = {.lex_state = 380, .external_lex_state = 2}, + [4457] = {.lex_state = 64, .external_lex_state = 2}, + [4458] = {.lex_state = 380, .external_lex_state = 2}, + [4459] = {.lex_state = 380, .external_lex_state = 2}, + [4460] = {.lex_state = 380, .external_lex_state = 2}, + [4461] = {.lex_state = 380, .external_lex_state = 2}, + [4462] = {.lex_state = 380, .external_lex_state = 2}, + [4463] = {.lex_state = 380, .external_lex_state = 2}, + [4464] = {.lex_state = 380, .external_lex_state = 2}, + [4465] = {.lex_state = 66, .external_lex_state = 2}, + [4466] = {.lex_state = 66, .external_lex_state = 2}, + [4467] = {.lex_state = 66, .external_lex_state = 2}, + [4468] = {.lex_state = 64, .external_lex_state = 2}, + [4469] = {.lex_state = 66, .external_lex_state = 2}, + [4470] = {.lex_state = 66, .external_lex_state = 2}, + [4471] = {.lex_state = 64, .external_lex_state = 5}, + [4472] = {.lex_state = 66, .external_lex_state = 2}, + [4473] = {.lex_state = 66, .external_lex_state = 2}, + [4474] = {.lex_state = 66, .external_lex_state = 2}, + [4475] = {.lex_state = 66, .external_lex_state = 2}, + [4476] = {.lex_state = 66, .external_lex_state = 2}, + [4477] = {.lex_state = 66, .external_lex_state = 2}, + [4478] = {.lex_state = 66, .external_lex_state = 2}, + [4479] = {.lex_state = 66, .external_lex_state = 2}, + [4480] = {.lex_state = 64, .external_lex_state = 2}, + [4481] = {.lex_state = 64, .external_lex_state = 2}, + [4482] = {.lex_state = 89, .external_lex_state = 2}, + [4483] = {.lex_state = 64, .external_lex_state = 2}, + [4484] = {.lex_state = 64, .external_lex_state = 2}, + [4485] = {.lex_state = 64, .external_lex_state = 2}, + [4486] = {.lex_state = 64, .external_lex_state = 2}, + [4487] = {.lex_state = 64, .external_lex_state = 2}, + [4488] = {.lex_state = 64, .external_lex_state = 2}, + [4489] = {.lex_state = 64, .external_lex_state = 2}, + [4490] = {.lex_state = 64, .external_lex_state = 2}, + [4491] = {.lex_state = 64, .external_lex_state = 2}, + [4492] = {.lex_state = 64, .external_lex_state = 2}, + [4493] = {.lex_state = 64, .external_lex_state = 2}, + [4494] = {.lex_state = 64, .external_lex_state = 2}, + [4495] = {.lex_state = 64, .external_lex_state = 2}, + [4496] = {.lex_state = 64, .external_lex_state = 2}, + [4497] = {.lex_state = 57, .external_lex_state = 2}, + [4498] = {.lex_state = 57, .external_lex_state = 2}, + [4499] = {.lex_state = 57, .external_lex_state = 2}, + [4500] = {.lex_state = 57, .external_lex_state = 2}, + [4501] = {.lex_state = 57, .external_lex_state = 2}, + [4502] = {.lex_state = 57, .external_lex_state = 2}, + [4503] = {.lex_state = 56, .external_lex_state = 2}, + [4504] = {.lex_state = 56, .external_lex_state = 2}, + [4505] = {.lex_state = 57, .external_lex_state = 2}, + [4506] = {.lex_state = 57, .external_lex_state = 2}, + [4507] = {.lex_state = 57, .external_lex_state = 2}, + [4508] = {.lex_state = 57, .external_lex_state = 2}, + [4509] = {.lex_state = 57, .external_lex_state = 2}, + [4510] = {.lex_state = 57, .external_lex_state = 2}, + [4511] = {.lex_state = 57, .external_lex_state = 2}, + [4512] = {.lex_state = 56, .external_lex_state = 5}, + [4513] = {.lex_state = 57, .external_lex_state = 2}, + [4514] = {.lex_state = 57, .external_lex_state = 2}, + [4515] = {.lex_state = 57, .external_lex_state = 2}, + [4516] = {.lex_state = 57, .external_lex_state = 2}, + [4517] = {.lex_state = 57, .external_lex_state = 2}, + [4518] = {.lex_state = 57, .external_lex_state = 2}, + [4519] = {.lex_state = 57, .external_lex_state = 2}, + [4520] = {.lex_state = 56, .external_lex_state = 5}, + [4521] = {.lex_state = 57, .external_lex_state = 2}, + [4522] = {.lex_state = 57, .external_lex_state = 2}, + [4523] = {.lex_state = 57, .external_lex_state = 2}, + [4524] = {.lex_state = 57, .external_lex_state = 2}, + [4525] = {.lex_state = 57, .external_lex_state = 2}, + [4526] = {.lex_state = 57, .external_lex_state = 2}, + [4527] = {.lex_state = 57, .external_lex_state = 2}, + [4528] = {.lex_state = 57, .external_lex_state = 2}, + [4529] = {.lex_state = 57, .external_lex_state = 2}, + [4530] = {.lex_state = 57, .external_lex_state = 2}, + [4531] = {.lex_state = 57, .external_lex_state = 2}, + [4532] = {.lex_state = 57, .external_lex_state = 2}, + [4533] = {.lex_state = 57, .external_lex_state = 2}, + [4534] = {.lex_state = 56, .external_lex_state = 2}, + [4535] = {.lex_state = 57, .external_lex_state = 2}, + [4536] = {.lex_state = 57, .external_lex_state = 2}, + [4537] = {.lex_state = 57, .external_lex_state = 2}, + [4538] = {.lex_state = 57, .external_lex_state = 2}, + [4539] = {.lex_state = 57, .external_lex_state = 2}, + [4540] = {.lex_state = 57, .external_lex_state = 2}, + [4541] = {.lex_state = 57, .external_lex_state = 2}, + [4542] = {.lex_state = 61, .external_lex_state = 2}, + [4543] = {.lex_state = 61, .external_lex_state = 2}, + [4544] = {.lex_state = 61, .external_lex_state = 2}, + [4545] = {.lex_state = 61, .external_lex_state = 2}, + [4546] = {.lex_state = 61, .external_lex_state = 2}, + [4547] = {.lex_state = 56, .external_lex_state = 2}, + [4548] = {.lex_state = 61, .external_lex_state = 2}, + [4549] = {.lex_state = 61, .external_lex_state = 2}, + [4550] = {.lex_state = 56, .external_lex_state = 2}, + [4551] = {.lex_state = 56, .external_lex_state = 2}, + [4552] = {.lex_state = 56, .external_lex_state = 2}, + [4553] = {.lex_state = 56, .external_lex_state = 2}, + [4554] = {.lex_state = 56, .external_lex_state = 2}, + [4555] = {.lex_state = 57, .external_lex_state = 2}, + [4556] = {.lex_state = 56, .external_lex_state = 2}, + [4557] = {.lex_state = 56, .external_lex_state = 2}, + [4558] = {.lex_state = 57, .external_lex_state = 2}, + [4559] = {.lex_state = 56, .external_lex_state = 2}, + [4560] = {.lex_state = 56, .external_lex_state = 2}, + [4561] = {.lex_state = 57, .external_lex_state = 2}, + [4562] = {.lex_state = 56, .external_lex_state = 2}, + [4563] = {.lex_state = 56, .external_lex_state = 2}, + [4564] = {.lex_state = 57, .external_lex_state = 2}, + [4565] = {.lex_state = 56, .external_lex_state = 2}, + [4566] = {.lex_state = 56, .external_lex_state = 2}, + [4567] = {.lex_state = 56, .external_lex_state = 2}, + [4568] = {.lex_state = 57, .external_lex_state = 5}, + [4569] = {.lex_state = 56, .external_lex_state = 2}, + [4570] = {.lex_state = 56, .external_lex_state = 2}, + [4571] = {.lex_state = 57, .external_lex_state = 5}, + [4572] = {.lex_state = 57, .external_lex_state = 5}, + [4573] = {.lex_state = 56, .external_lex_state = 2}, + [4574] = {.lex_state = 56, .external_lex_state = 2}, + [4575] = {.lex_state = 56, .external_lex_state = 2}, + [4576] = {.lex_state = 56, .external_lex_state = 2}, + [4577] = {.lex_state = 56, .external_lex_state = 2}, + [4578] = {.lex_state = 56, .external_lex_state = 2}, + [4579] = {.lex_state = 56, .external_lex_state = 2}, + [4580] = {.lex_state = 56, .external_lex_state = 2}, + [4581] = {.lex_state = 57, .external_lex_state = 5}, + [4582] = {.lex_state = 56, .external_lex_state = 2}, + [4583] = {.lex_state = 56, .external_lex_state = 2}, + [4584] = {.lex_state = 56, .external_lex_state = 2}, + [4585] = {.lex_state = 57, .external_lex_state = 5}, + [4586] = {.lex_state = 56, .external_lex_state = 2}, + [4587] = {.lex_state = 54, .external_lex_state = 2}, + [4588] = {.lex_state = 54, .external_lex_state = 2}, + [4589] = {.lex_state = 56, .external_lex_state = 2}, + [4590] = {.lex_state = 54, .external_lex_state = 2}, + [4591] = {.lex_state = 54, .external_lex_state = 2}, + [4592] = {.lex_state = 56, .external_lex_state = 2}, + [4593] = {.lex_state = 54, .external_lex_state = 2}, + [4594] = {.lex_state = 54, .external_lex_state = 2}, + [4595] = {.lex_state = 380, .external_lex_state = 2}, + [4596] = {.lex_state = 54, .external_lex_state = 2}, + [4597] = {.lex_state = 56, .external_lex_state = 2}, + [4598] = {.lex_state = 56, .external_lex_state = 2}, + [4599] = {.lex_state = 380, .external_lex_state = 2}, + [4600] = {.lex_state = 56, .external_lex_state = 2}, + [4601] = {.lex_state = 54, .external_lex_state = 2}, + [4602] = {.lex_state = 54, .external_lex_state = 2}, + [4603] = {.lex_state = 56, .external_lex_state = 2}, + [4604] = {.lex_state = 54, .external_lex_state = 2}, + [4605] = {.lex_state = 56, .external_lex_state = 2}, + [4606] = {.lex_state = 56, .external_lex_state = 2}, + [4607] = {.lex_state = 56, .external_lex_state = 2}, + [4608] = {.lex_state = 56, .external_lex_state = 2}, + [4609] = {.lex_state = 56, .external_lex_state = 2}, + [4610] = {.lex_state = 56, .external_lex_state = 2}, + [4611] = {.lex_state = 56, .external_lex_state = 2}, + [4612] = {.lex_state = 54, .external_lex_state = 2}, + [4613] = {.lex_state = 57, .external_lex_state = 5}, + [4614] = {.lex_state = 57, .external_lex_state = 5}, + [4615] = {.lex_state = 57, .external_lex_state = 5}, + [4616] = {.lex_state = 57, .external_lex_state = 5}, + [4617] = {.lex_state = 57, .external_lex_state = 5}, + [4618] = {.lex_state = 57, .external_lex_state = 5}, + [4619] = {.lex_state = 57, .external_lex_state = 6}, + [4620] = {.lex_state = 56, .external_lex_state = 2}, + [4621] = {.lex_state = 57, .external_lex_state = 6}, + [4622] = {.lex_state = 57, .external_lex_state = 6}, + [4623] = {.lex_state = 57, .external_lex_state = 5}, + [4624] = {.lex_state = 57, .external_lex_state = 5}, + [4625] = {.lex_state = 57, .external_lex_state = 5}, + [4626] = {.lex_state = 57, .external_lex_state = 5}, + [4627] = {.lex_state = 57, .external_lex_state = 5}, + [4628] = {.lex_state = 57, .external_lex_state = 5}, + [4629] = {.lex_state = 57, .external_lex_state = 5}, + [4630] = {.lex_state = 57, .external_lex_state = 5}, + [4631] = {.lex_state = 56, .external_lex_state = 2}, + [4632] = {.lex_state = 57, .external_lex_state = 5}, + [4633] = {.lex_state = 56, .external_lex_state = 2}, + [4634] = {.lex_state = 56, .external_lex_state = 2}, + [4635] = {.lex_state = 56, .external_lex_state = 2}, + [4636] = {.lex_state = 57, .external_lex_state = 5}, + [4637] = {.lex_state = 57, .external_lex_state = 5}, + [4638] = {.lex_state = 56, .external_lex_state = 2}, + [4639] = {.lex_state = 56, .external_lex_state = 2}, + [4640] = {.lex_state = 56, .external_lex_state = 2}, + [4641] = {.lex_state = 56, .external_lex_state = 2}, + [4642] = {.lex_state = 56, .external_lex_state = 2}, + [4643] = {.lex_state = 56, .external_lex_state = 2}, + [4644] = {.lex_state = 57, .external_lex_state = 5}, + [4645] = {.lex_state = 57, .external_lex_state = 5}, + [4646] = {.lex_state = 56, .external_lex_state = 2}, + [4647] = {.lex_state = 57, .external_lex_state = 5}, + [4648] = {.lex_state = 380, .external_lex_state = 2}, + [4649] = {.lex_state = 56, .external_lex_state = 2}, + [4650] = {.lex_state = 380, .external_lex_state = 2}, + [4651] = {.lex_state = 57, .external_lex_state = 5}, + [4652] = {.lex_state = 57, .external_lex_state = 5}, + [4653] = {.lex_state = 56, .external_lex_state = 2}, + [4654] = {.lex_state = 380, .external_lex_state = 2}, + [4655] = {.lex_state = 54, .external_lex_state = 2}, + [4656] = {.lex_state = 56, .external_lex_state = 2}, + [4657] = {.lex_state = 56, .external_lex_state = 2}, + [4658] = {.lex_state = 56, .external_lex_state = 2}, + [4659] = {.lex_state = 57, .external_lex_state = 5}, + [4660] = {.lex_state = 57, .external_lex_state = 5}, + [4661] = {.lex_state = 57, .external_lex_state = 5}, + [4662] = {.lex_state = 56, .external_lex_state = 2}, + [4663] = {.lex_state = 56, .external_lex_state = 2}, + [4664] = {.lex_state = 57, .external_lex_state = 5}, + [4665] = {.lex_state = 57, .external_lex_state = 5}, + [4666] = {.lex_state = 56, .external_lex_state = 2}, + [4667] = {.lex_state = 57, .external_lex_state = 5}, + [4668] = {.lex_state = 57, .external_lex_state = 5}, + [4669] = {.lex_state = 57, .external_lex_state = 5}, + [4670] = {.lex_state = 56, .external_lex_state = 2}, + [4671] = {.lex_state = 56, .external_lex_state = 2}, + [4672] = {.lex_state = 54, .external_lex_state = 2}, + [4673] = {.lex_state = 57, .external_lex_state = 5}, + [4674] = {.lex_state = 57, .external_lex_state = 5}, + [4675] = {.lex_state = 380, .external_lex_state = 2}, + [4676] = {.lex_state = 56, .external_lex_state = 2}, + [4677] = {.lex_state = 54, .external_lex_state = 2}, + [4678] = {.lex_state = 54, .external_lex_state = 2}, + [4679] = {.lex_state = 54, .external_lex_state = 2}, + [4680] = {.lex_state = 54, .external_lex_state = 2}, + [4681] = {.lex_state = 56, .external_lex_state = 2}, + [4682] = {.lex_state = 56, .external_lex_state = 2}, + [4683] = {.lex_state = 54, .external_lex_state = 2}, + [4684] = {.lex_state = 56, .external_lex_state = 2}, + [4685] = {.lex_state = 380, .external_lex_state = 2}, + [4686] = {.lex_state = 380, .external_lex_state = 2}, + [4687] = {.lex_state = 57, .external_lex_state = 5}, + [4688] = {.lex_state = 54, .external_lex_state = 2}, + [4689] = {.lex_state = 380, .external_lex_state = 2}, + [4690] = {.lex_state = 56, .external_lex_state = 2}, + [4691] = {.lex_state = 54, .external_lex_state = 2}, + [4692] = {.lex_state = 54, .external_lex_state = 5}, + [4693] = {.lex_state = 54, .external_lex_state = 5}, + [4694] = {.lex_state = 54, .external_lex_state = 5}, + [4695] = {.lex_state = 54, .external_lex_state = 5}, + [4696] = {.lex_state = 62, .external_lex_state = 2}, + [4697] = {.lex_state = 54, .external_lex_state = 5}, + [4698] = {.lex_state = 90, .external_lex_state = 2}, + [4699] = {.lex_state = 57, .external_lex_state = 5}, + [4700] = {.lex_state = 54, .external_lex_state = 5}, + [4701] = {.lex_state = 54, .external_lex_state = 5}, + [4702] = {.lex_state = 54, .external_lex_state = 5}, + [4703] = {.lex_state = 62, .external_lex_state = 2}, + [4704] = {.lex_state = 54, .external_lex_state = 5}, + [4705] = {.lex_state = 54, .external_lex_state = 5}, + [4706] = {.lex_state = 62, .external_lex_state = 2}, + [4707] = {.lex_state = 54, .external_lex_state = 5}, + [4708] = {.lex_state = 62, .external_lex_state = 2}, + [4709] = {.lex_state = 54, .external_lex_state = 2}, + [4710] = {.lex_state = 54, .external_lex_state = 5}, + [4711] = {.lex_state = 54, .external_lex_state = 5}, + [4712] = {.lex_state = 54, .external_lex_state = 5}, + [4713] = {.lex_state = 90, .external_lex_state = 2}, + [4714] = {.lex_state = 54, .external_lex_state = 5}, + [4715] = {.lex_state = 54, .external_lex_state = 5}, + [4716] = {.lex_state = 54, .external_lex_state = 5}, + [4717] = {.lex_state = 54, .external_lex_state = 5}, + [4718] = {.lex_state = 54, .external_lex_state = 5}, + [4719] = {.lex_state = 54, .external_lex_state = 5}, + [4720] = {.lex_state = 54, .external_lex_state = 5}, + [4721] = {.lex_state = 54, .external_lex_state = 5}, + [4722] = {.lex_state = 62, .external_lex_state = 2}, + [4723] = {.lex_state = 62, .external_lex_state = 2}, + [4724] = {.lex_state = 90, .external_lex_state = 2}, + [4725] = {.lex_state = 54, .external_lex_state = 5}, + [4726] = {.lex_state = 54, .external_lex_state = 5}, + [4727] = {.lex_state = 54, .external_lex_state = 5}, + [4728] = {.lex_state = 90, .external_lex_state = 2}, + [4729] = {.lex_state = 54, .external_lex_state = 5}, + [4730] = {.lex_state = 54, .external_lex_state = 5}, + [4731] = {.lex_state = 62, .external_lex_state = 2}, + [4732] = {.lex_state = 54, .external_lex_state = 5}, + [4733] = {.lex_state = 54, .external_lex_state = 5}, + [4734] = {.lex_state = 90, .external_lex_state = 2}, + [4735] = {.lex_state = 57, .external_lex_state = 6}, + [4736] = {.lex_state = 54, .external_lex_state = 5}, + [4737] = {.lex_state = 57, .external_lex_state = 6}, + [4738] = {.lex_state = 57, .external_lex_state = 6}, + [4739] = {.lex_state = 57, .external_lex_state = 6}, + [4740] = {.lex_state = 57, .external_lex_state = 6}, + [4741] = {.lex_state = 57, .external_lex_state = 6}, + [4742] = {.lex_state = 57, .external_lex_state = 5}, + [4743] = {.lex_state = 54, .external_lex_state = 5}, + [4744] = {.lex_state = 54, .external_lex_state = 5}, + [4745] = {.lex_state = 54, .external_lex_state = 5}, + [4746] = {.lex_state = 57, .external_lex_state = 5}, + [4747] = {.lex_state = 54, .external_lex_state = 5}, + [4748] = {.lex_state = 54, .external_lex_state = 5}, + [4749] = {.lex_state = 54, .external_lex_state = 5}, + [4750] = {.lex_state = 54, .external_lex_state = 5}, + [4751] = {.lex_state = 57, .external_lex_state = 5}, + [4752] = {.lex_state = 54, .external_lex_state = 5}, + [4753] = {.lex_state = 57, .external_lex_state = 6}, + [4754] = {.lex_state = 57, .external_lex_state = 6}, + [4755] = {.lex_state = 57, .external_lex_state = 6}, + [4756] = {.lex_state = 54, .external_lex_state = 5}, + [4757] = {.lex_state = 57, .external_lex_state = 6}, + [4758] = {.lex_state = 57, .external_lex_state = 6}, + [4759] = {.lex_state = 57, .external_lex_state = 6}, + [4760] = {.lex_state = 57, .external_lex_state = 6}, + [4761] = {.lex_state = 57, .external_lex_state = 5}, + [4762] = {.lex_state = 54, .external_lex_state = 5}, + [4763] = {.lex_state = 54, .external_lex_state = 5}, + [4764] = {.lex_state = 54, .external_lex_state = 5}, + [4765] = {.lex_state = 54, .external_lex_state = 5}, + [4766] = {.lex_state = 57, .external_lex_state = 5}, + [4767] = {.lex_state = 57, .external_lex_state = 5}, + [4768] = {.lex_state = 57, .external_lex_state = 6}, + [4769] = {.lex_state = 54, .external_lex_state = 5}, + [4770] = {.lex_state = 57, .external_lex_state = 5}, + [4771] = {.lex_state = 54, .external_lex_state = 5}, + [4772] = {.lex_state = 57, .external_lex_state = 5}, + [4773] = {.lex_state = 57, .external_lex_state = 6}, + [4774] = {.lex_state = 57, .external_lex_state = 6}, + [4775] = {.lex_state = 54, .external_lex_state = 5}, + [4776] = {.lex_state = 57, .external_lex_state = 6}, + [4777] = {.lex_state = 57, .external_lex_state = 6}, + [4778] = {.lex_state = 57, .external_lex_state = 6}, + [4779] = {.lex_state = 57, .external_lex_state = 6}, + [4780] = {.lex_state = 57, .external_lex_state = 6}, + [4781] = {.lex_state = 57, .external_lex_state = 6}, + [4782] = {.lex_state = 57, .external_lex_state = 6}, + [4783] = {.lex_state = 57, .external_lex_state = 6}, + [4784] = {.lex_state = 57, .external_lex_state = 6}, + [4785] = {.lex_state = 57, .external_lex_state = 6}, + [4786] = {.lex_state = 57, .external_lex_state = 6}, + [4787] = {.lex_state = 57, .external_lex_state = 6}, + [4788] = {.lex_state = 57, .external_lex_state = 6}, + [4789] = {.lex_state = 57, .external_lex_state = 6}, + [4790] = {.lex_state = 54, .external_lex_state = 5}, + [4791] = {.lex_state = 54, .external_lex_state = 5}, + [4792] = {.lex_state = 54, .external_lex_state = 5}, + [4793] = {.lex_state = 57, .external_lex_state = 6}, + [4794] = {.lex_state = 57, .external_lex_state = 6}, + [4795] = {.lex_state = 57, .external_lex_state = 6}, + [4796] = {.lex_state = 54, .external_lex_state = 5}, + [4797] = {.lex_state = 57, .external_lex_state = 6}, + [4798] = {.lex_state = 54, .external_lex_state = 5}, + [4799] = {.lex_state = 57, .external_lex_state = 6}, + [4800] = {.lex_state = 54, .external_lex_state = 5}, + [4801] = {.lex_state = 57, .external_lex_state = 2}, + [4802] = {.lex_state = 57, .external_lex_state = 5}, + [4803] = {.lex_state = 61, .external_lex_state = 2}, + [4804] = {.lex_state = 54, .external_lex_state = 5}, + [4805] = {.lex_state = 54, .external_lex_state = 5}, + [4806] = {.lex_state = 54, .external_lex_state = 5}, + [4807] = {.lex_state = 54, .external_lex_state = 5}, + [4808] = {.lex_state = 54, .external_lex_state = 5}, + [4809] = {.lex_state = 54, .external_lex_state = 5}, + [4810] = {.lex_state = 54, .external_lex_state = 5}, + [4811] = {.lex_state = 54, .external_lex_state = 5}, + [4812] = {.lex_state = 61, .external_lex_state = 2}, + [4813] = {.lex_state = 54, .external_lex_state = 5}, + [4814] = {.lex_state = 54, .external_lex_state = 5}, + [4815] = {.lex_state = 54, .external_lex_state = 5}, + [4816] = {.lex_state = 54, .external_lex_state = 5}, + [4817] = {.lex_state = 54, .external_lex_state = 5}, + [4818] = {.lex_state = 54, .external_lex_state = 5}, + [4819] = {.lex_state = 54, .external_lex_state = 5}, + [4820] = {.lex_state = 54, .external_lex_state = 5}, + [4821] = {.lex_state = 54, .external_lex_state = 5}, + [4822] = {.lex_state = 54, .external_lex_state = 5}, + [4823] = {.lex_state = 61, .external_lex_state = 2}, + [4824] = {.lex_state = 54, .external_lex_state = 5}, + [4825] = {.lex_state = 54, .external_lex_state = 5}, + [4826] = {.lex_state = 61, .external_lex_state = 2}, + [4827] = {.lex_state = 54, .external_lex_state = 5}, + [4828] = {.lex_state = 54, .external_lex_state = 5}, + [4829] = {.lex_state = 54, .external_lex_state = 5}, + [4830] = {.lex_state = 54, .external_lex_state = 5}, + [4831] = {.lex_state = 54, .external_lex_state = 5}, + [4832] = {.lex_state = 61, .external_lex_state = 2}, + [4833] = {.lex_state = 54, .external_lex_state = 5}, + [4834] = {.lex_state = 54, .external_lex_state = 5}, + [4835] = {.lex_state = 61, .external_lex_state = 2}, + [4836] = {.lex_state = 54, .external_lex_state = 5}, + [4837] = {.lex_state = 61, .external_lex_state = 2}, + [4838] = {.lex_state = 56, .external_lex_state = 2}, + [4839] = {.lex_state = 54, .external_lex_state = 5}, + [4840] = {.lex_state = 54, .external_lex_state = 5}, + [4841] = {.lex_state = 54, .external_lex_state = 5}, + [4842] = {.lex_state = 54, .external_lex_state = 5}, + [4843] = {.lex_state = 54, .external_lex_state = 5}, + [4844] = {.lex_state = 54, .external_lex_state = 5}, + [4845] = {.lex_state = 54, .external_lex_state = 5}, + [4846] = {.lex_state = 54, .external_lex_state = 5}, + [4847] = {.lex_state = 54, .external_lex_state = 5}, + [4848] = {.lex_state = 57, .external_lex_state = 6}, + [4849] = {.lex_state = 54, .external_lex_state = 5}, + [4850] = {.lex_state = 54, .external_lex_state = 5}, + [4851] = {.lex_state = 54, .external_lex_state = 5}, + [4852] = {.lex_state = 54, .external_lex_state = 5}, + [4853] = {.lex_state = 54, .external_lex_state = 5}, + [4854] = {.lex_state = 54, .external_lex_state = 5}, + [4855] = {.lex_state = 54, .external_lex_state = 5}, + [4856] = {.lex_state = 54, .external_lex_state = 5}, + [4857] = {.lex_state = 54, .external_lex_state = 5}, + [4858] = {.lex_state = 54, .external_lex_state = 5}, + [4859] = {.lex_state = 54, .external_lex_state = 5}, + [4860] = {.lex_state = 57, .external_lex_state = 6}, + [4861] = {.lex_state = 57, .external_lex_state = 6}, + [4862] = {.lex_state = 61, .external_lex_state = 2}, + [4863] = {.lex_state = 54, .external_lex_state = 5}, + [4864] = {.lex_state = 54, .external_lex_state = 5}, + [4865] = {.lex_state = 54, .external_lex_state = 5}, + [4866] = {.lex_state = 54, .external_lex_state = 5}, + [4867] = {.lex_state = 54, .external_lex_state = 5}, + [4868] = {.lex_state = 54, .external_lex_state = 5}, + [4869] = {.lex_state = 54, .external_lex_state = 5}, + [4870] = {.lex_state = 54, .external_lex_state = 5}, + [4871] = {.lex_state = 54, .external_lex_state = 5}, + [4872] = {.lex_state = 54, .external_lex_state = 6}, + [4873] = {.lex_state = 54, .external_lex_state = 5}, + [4874] = {.lex_state = 54, .external_lex_state = 5}, + [4875] = {.lex_state = 57, .external_lex_state = 6}, + [4876] = {.lex_state = 54, .external_lex_state = 5}, + [4877] = {.lex_state = 54, .external_lex_state = 5}, + [4878] = {.lex_state = 54, .external_lex_state = 5}, + [4879] = {.lex_state = 54, .external_lex_state = 5}, + [4880] = {.lex_state = 54, .external_lex_state = 5}, + [4881] = {.lex_state = 57, .external_lex_state = 6}, + [4882] = {.lex_state = 54, .external_lex_state = 5}, + [4883] = {.lex_state = 57, .external_lex_state = 6}, + [4884] = {.lex_state = 57, .external_lex_state = 6}, + [4885] = {.lex_state = 54, .external_lex_state = 5}, + [4886] = {.lex_state = 54, .external_lex_state = 5}, + [4887] = {.lex_state = 54, .external_lex_state = 5}, + [4888] = {.lex_state = 54, .external_lex_state = 5}, + [4889] = {.lex_state = 54, .external_lex_state = 5}, + [4890] = {.lex_state = 54, .external_lex_state = 5}, + [4891] = {.lex_state = 54, .external_lex_state = 5}, + [4892] = {.lex_state = 54, .external_lex_state = 5}, + [4893] = {.lex_state = 54, .external_lex_state = 5}, + [4894] = {.lex_state = 57, .external_lex_state = 6}, + [4895] = {.lex_state = 57, .external_lex_state = 6}, + [4896] = {.lex_state = 54, .external_lex_state = 5}, + [4897] = {.lex_state = 57, .external_lex_state = 6}, + [4898] = {.lex_state = 54, .external_lex_state = 5}, + [4899] = {.lex_state = 54, .external_lex_state = 5}, + [4900] = {.lex_state = 54, .external_lex_state = 5}, + [4901] = {.lex_state = 54, .external_lex_state = 5}, + [4902] = {.lex_state = 54, .external_lex_state = 5}, + [4903] = {.lex_state = 54, .external_lex_state = 5}, + [4904] = {.lex_state = 54, .external_lex_state = 5}, + [4905] = {.lex_state = 54, .external_lex_state = 5}, + [4906] = {.lex_state = 54, .external_lex_state = 5}, + [4907] = {.lex_state = 54, .external_lex_state = 5}, + [4908] = {.lex_state = 54, .external_lex_state = 5}, + [4909] = {.lex_state = 54, .external_lex_state = 5}, + [4910] = {.lex_state = 54, .external_lex_state = 5}, + [4911] = {.lex_state = 54, .external_lex_state = 5}, + [4912] = {.lex_state = 54, .external_lex_state = 5}, + [4913] = {.lex_state = 54, .external_lex_state = 5}, + [4914] = {.lex_state = 54, .external_lex_state = 5}, + [4915] = {.lex_state = 54, .external_lex_state = 5}, + [4916] = {.lex_state = 54, .external_lex_state = 5}, + [4917] = {.lex_state = 54, .external_lex_state = 5}, + [4918] = {.lex_state = 54, .external_lex_state = 5}, + [4919] = {.lex_state = 54, .external_lex_state = 5}, + [4920] = {.lex_state = 54, .external_lex_state = 5}, + [4921] = {.lex_state = 79, .external_lex_state = 2}, + [4922] = {.lex_state = 380, .external_lex_state = 5}, + [4923] = {.lex_state = 82, .external_lex_state = 2}, + [4924] = {.lex_state = 57, .external_lex_state = 5}, + [4925] = {.lex_state = 82, .external_lex_state = 2}, + [4926] = {.lex_state = 82, .external_lex_state = 2}, + [4927] = {.lex_state = 82, .external_lex_state = 2}, + [4928] = {.lex_state = 54, .external_lex_state = 6}, + [4929] = {.lex_state = 54, .external_lex_state = 6}, + [4930] = {.lex_state = 82, .external_lex_state = 2}, + [4931] = {.lex_state = 82, .external_lex_state = 2}, + [4932] = {.lex_state = 61, .external_lex_state = 2}, + [4933] = {.lex_state = 54, .external_lex_state = 5}, + [4934] = {.lex_state = 57, .external_lex_state = 5}, + [4935] = {.lex_state = 82, .external_lex_state = 2}, + [4936] = {.lex_state = 82, .external_lex_state = 2}, + [4937] = {.lex_state = 54, .external_lex_state = 5}, + [4938] = {.lex_state = 54, .external_lex_state = 2}, + [4939] = {.lex_state = 63, .external_lex_state = 2}, + [4940] = {.lex_state = 54, .external_lex_state = 6}, + [4941] = {.lex_state = 380, .external_lex_state = 5}, + [4942] = {.lex_state = 54, .external_lex_state = 6}, + [4943] = {.lex_state = 82, .external_lex_state = 2}, + [4944] = {.lex_state = 61, .external_lex_state = 2}, + [4945] = {.lex_state = 380, .external_lex_state = 5}, + [4946] = {.lex_state = 82, .external_lex_state = 2}, + [4947] = {.lex_state = 82, .external_lex_state = 2}, + [4948] = {.lex_state = 82, .external_lex_state = 2}, + [4949] = {.lex_state = 82, .external_lex_state = 2}, + [4950] = {.lex_state = 82, .external_lex_state = 2}, + [4951] = {.lex_state = 82, .external_lex_state = 2}, + [4952] = {.lex_state = 61, .external_lex_state = 2}, + [4953] = {.lex_state = 82, .external_lex_state = 2}, + [4954] = {.lex_state = 82, .external_lex_state = 2}, + [4955] = {.lex_state = 82, .external_lex_state = 2}, + [4956] = {.lex_state = 82, .external_lex_state = 2}, + [4957] = {.lex_state = 82, .external_lex_state = 2}, + [4958] = {.lex_state = 82, .external_lex_state = 2}, + [4959] = {.lex_state = 54, .external_lex_state = 6}, + [4960] = {.lex_state = 54, .external_lex_state = 6}, + [4961] = {.lex_state = 54, .external_lex_state = 6}, + [4962] = {.lex_state = 54, .external_lex_state = 6}, + [4963] = {.lex_state = 54, .external_lex_state = 2}, + [4964] = {.lex_state = 54, .external_lex_state = 6}, + [4965] = {.lex_state = 54, .external_lex_state = 2}, + [4966] = {.lex_state = 54, .external_lex_state = 6}, + [4967] = {.lex_state = 54, .external_lex_state = 2}, + [4968] = {.lex_state = 54, .external_lex_state = 2}, + [4969] = {.lex_state = 54, .external_lex_state = 6}, + [4970] = {.lex_state = 57, .external_lex_state = 2}, + [4971] = {.lex_state = 61, .external_lex_state = 2}, + [4972] = {.lex_state = 54, .external_lex_state = 6}, + [4973] = {.lex_state = 54, .external_lex_state = 5}, + [4974] = {.lex_state = 57, .external_lex_state = 2}, + [4975] = {.lex_state = 54, .external_lex_state = 5}, + [4976] = {.lex_state = 54, .external_lex_state = 2}, + [4977] = {.lex_state = 54, .external_lex_state = 5}, + [4978] = {.lex_state = 54, .external_lex_state = 6}, + [4979] = {.lex_state = 54, .external_lex_state = 6}, + [4980] = {.lex_state = 54, .external_lex_state = 6}, + [4981] = {.lex_state = 56, .external_lex_state = 2}, + [4982] = {.lex_state = 54, .external_lex_state = 6}, + [4983] = {.lex_state = 54, .external_lex_state = 5}, + [4984] = {.lex_state = 54, .external_lex_state = 6}, + [4985] = {.lex_state = 54, .external_lex_state = 6}, + [4986] = {.lex_state = 54, .external_lex_state = 6}, + [4987] = {.lex_state = 54, .external_lex_state = 6}, + [4988] = {.lex_state = 54, .external_lex_state = 6}, + [4989] = {.lex_state = 56, .external_lex_state = 2}, + [4990] = {.lex_state = 54, .external_lex_state = 2}, + [4991] = {.lex_state = 56, .external_lex_state = 2}, + [4992] = {.lex_state = 54, .external_lex_state = 6}, + [4993] = {.lex_state = 54, .external_lex_state = 6}, + [4994] = {.lex_state = 54, .external_lex_state = 6}, + [4995] = {.lex_state = 54, .external_lex_state = 5}, + [4996] = {.lex_state = 54, .external_lex_state = 6}, + [4997] = {.lex_state = 54, .external_lex_state = 5}, + [4998] = {.lex_state = 54, .external_lex_state = 6}, + [4999] = {.lex_state = 54, .external_lex_state = 6}, + [5000] = {.lex_state = 54, .external_lex_state = 6}, + [5001] = {.lex_state = 54, .external_lex_state = 6}, + [5002] = {.lex_state = 54, .external_lex_state = 6}, + [5003] = {.lex_state = 54, .external_lex_state = 6}, + [5004] = {.lex_state = 54, .external_lex_state = 6}, + [5005] = {.lex_state = 54, .external_lex_state = 6}, + [5006] = {.lex_state = 54, .external_lex_state = 6}, + [5007] = {.lex_state = 54, .external_lex_state = 6}, + [5008] = {.lex_state = 54, .external_lex_state = 6}, + [5009] = {.lex_state = 54, .external_lex_state = 5}, + [5010] = {.lex_state = 54, .external_lex_state = 2}, + [5011] = {.lex_state = 54, .external_lex_state = 5}, + [5012] = {.lex_state = 54, .external_lex_state = 2}, + [5013] = {.lex_state = 54, .external_lex_state = 5}, + [5014] = {.lex_state = 54, .external_lex_state = 5}, + [5015] = {.lex_state = 54, .external_lex_state = 2}, + [5016] = {.lex_state = 54, .external_lex_state = 2}, + [5017] = {.lex_state = 54, .external_lex_state = 2}, + [5018] = {.lex_state = 54, .external_lex_state = 2}, + [5019] = {.lex_state = 54, .external_lex_state = 2}, + [5020] = {.lex_state = 54, .external_lex_state = 5}, + [5021] = {.lex_state = 54, .external_lex_state = 2}, + [5022] = {.lex_state = 54, .external_lex_state = 5}, + [5023] = {.lex_state = 54, .external_lex_state = 2}, + [5024] = {.lex_state = 54, .external_lex_state = 6}, + [5025] = {.lex_state = 54, .external_lex_state = 6}, + [5026] = {.lex_state = 54, .external_lex_state = 5}, + [5027] = {.lex_state = 54, .external_lex_state = 5}, + [5028] = {.lex_state = 380, .external_lex_state = 6}, + [5029] = {.lex_state = 54, .external_lex_state = 5}, + [5030] = {.lex_state = 54, .external_lex_state = 5}, + [5031] = {.lex_state = 57, .external_lex_state = 2}, + [5032] = {.lex_state = 54, .external_lex_state = 2}, + [5033] = {.lex_state = 57, .external_lex_state = 2}, + [5034] = {.lex_state = 54, .external_lex_state = 5}, + [5035] = {.lex_state = 54, .external_lex_state = 5}, + [5036] = {.lex_state = 57, .external_lex_state = 5}, + [5037] = {.lex_state = 57, .external_lex_state = 5}, + [5038] = {.lex_state = 54, .external_lex_state = 2}, + [5039] = {.lex_state = 54, .external_lex_state = 2}, + [5040] = {.lex_state = 54, .external_lex_state = 2}, + [5041] = {.lex_state = 54, .external_lex_state = 2}, + [5042] = {.lex_state = 57, .external_lex_state = 2}, + [5043] = {.lex_state = 57, .external_lex_state = 2}, + [5044] = {.lex_state = 54, .external_lex_state = 2}, + [5045] = {.lex_state = 54, .external_lex_state = 2}, + [5046] = {.lex_state = 54, .external_lex_state = 2}, + [5047] = {.lex_state = 54, .external_lex_state = 5}, + [5048] = {.lex_state = 54, .external_lex_state = 6}, + [5049] = {.lex_state = 54, .external_lex_state = 2}, + [5050] = {.lex_state = 54, .external_lex_state = 2}, + [5051] = {.lex_state = 54, .external_lex_state = 2}, + [5052] = {.lex_state = 54, .external_lex_state = 2}, + [5053] = {.lex_state = 54, .external_lex_state = 2}, + [5054] = {.lex_state = 380, .external_lex_state = 5}, + [5055] = {.lex_state = 54, .external_lex_state = 6}, + [5056] = {.lex_state = 54, .external_lex_state = 6}, + [5057] = {.lex_state = 54, .external_lex_state = 6}, + [5058] = {.lex_state = 54, .external_lex_state = 6}, + [5059] = {.lex_state = 54, .external_lex_state = 6}, + [5060] = {.lex_state = 380, .external_lex_state = 5}, + [5061] = {.lex_state = 54, .external_lex_state = 6}, + [5062] = {.lex_state = 54, .external_lex_state = 2}, + [5063] = {.lex_state = 54, .external_lex_state = 2}, + [5064] = {.lex_state = 54, .external_lex_state = 5}, + [5065] = {.lex_state = 54, .external_lex_state = 6}, + [5066] = {.lex_state = 54, .external_lex_state = 6}, + [5067] = {.lex_state = 54, .external_lex_state = 5}, + [5068] = {.lex_state = 54, .external_lex_state = 6}, + [5069] = {.lex_state = 54, .external_lex_state = 2}, + [5070] = {.lex_state = 54, .external_lex_state = 6}, + [5071] = {.lex_state = 56, .external_lex_state = 2}, + [5072] = {.lex_state = 61, .external_lex_state = 2}, + [5073] = {.lex_state = 54, .external_lex_state = 5}, + [5074] = {.lex_state = 57, .external_lex_state = 2}, + [5075] = {.lex_state = 54, .external_lex_state = 2}, + [5076] = {.lex_state = 54, .external_lex_state = 2}, + [5077] = {.lex_state = 54, .external_lex_state = 6}, + [5078] = {.lex_state = 380, .external_lex_state = 5}, + [5079] = {.lex_state = 380, .external_lex_state = 5}, + [5080] = {.lex_state = 54, .external_lex_state = 2}, + [5081] = {.lex_state = 54, .external_lex_state = 2}, + [5082] = {.lex_state = 54, .external_lex_state = 5}, + [5083] = {.lex_state = 54, .external_lex_state = 2}, + [5084] = {.lex_state = 54, .external_lex_state = 2}, + [5085] = {.lex_state = 54, .external_lex_state = 5}, + [5086] = {.lex_state = 380, .external_lex_state = 5}, + [5087] = {.lex_state = 380, .external_lex_state = 5}, + [5088] = {.lex_state = 61, .external_lex_state = 2}, + [5089] = {.lex_state = 54, .external_lex_state = 2}, + [5090] = {.lex_state = 54, .external_lex_state = 2}, + [5091] = {.lex_state = 54, .external_lex_state = 6}, + [5092] = {.lex_state = 54, .external_lex_state = 6}, + [5093] = {.lex_state = 54, .external_lex_state = 6}, + [5094] = {.lex_state = 54, .external_lex_state = 6}, + [5095] = {.lex_state = 380, .external_lex_state = 2}, + [5096] = {.lex_state = 56, .external_lex_state = 2}, + [5097] = {.lex_state = 54, .external_lex_state = 5}, + [5098] = {.lex_state = 54, .external_lex_state = 2}, + [5099] = {.lex_state = 54, .external_lex_state = 6}, + [5100] = {.lex_state = 54, .external_lex_state = 6}, + [5101] = {.lex_state = 57, .external_lex_state = 2}, + [5102] = {.lex_state = 57, .external_lex_state = 2}, + [5103] = {.lex_state = 54, .external_lex_state = 5}, + [5104] = {.lex_state = 54, .external_lex_state = 2}, + [5105] = {.lex_state = 56, .external_lex_state = 2}, + [5106] = {.lex_state = 380, .external_lex_state = 2}, + [5107] = {.lex_state = 54, .external_lex_state = 6}, + [5108] = {.lex_state = 54, .external_lex_state = 2}, + [5109] = {.lex_state = 57, .external_lex_state = 2}, + [5110] = {.lex_state = 57, .external_lex_state = 2}, + [5111] = {.lex_state = 54, .external_lex_state = 6}, + [5112] = {.lex_state = 54, .external_lex_state = 6}, + [5113] = {.lex_state = 54, .external_lex_state = 6}, + [5114] = {.lex_state = 54, .external_lex_state = 6}, + [5115] = {.lex_state = 54, .external_lex_state = 2}, + [5116] = {.lex_state = 54, .external_lex_state = 2}, + [5117] = {.lex_state = 57, .external_lex_state = 2}, + [5118] = {.lex_state = 57, .external_lex_state = 2}, + [5119] = {.lex_state = 54, .external_lex_state = 2}, + [5120] = {.lex_state = 54, .external_lex_state = 5}, + [5121] = {.lex_state = 54, .external_lex_state = 5}, + [5122] = {.lex_state = 54, .external_lex_state = 2}, + [5123] = {.lex_state = 54, .external_lex_state = 2}, + [5124] = {.lex_state = 57, .external_lex_state = 2}, + [5125] = {.lex_state = 54, .external_lex_state = 6}, + [5126] = {.lex_state = 57, .external_lex_state = 2}, + [5127] = {.lex_state = 57, .external_lex_state = 2}, + [5128] = {.lex_state = 54, .external_lex_state = 5}, + [5129] = {.lex_state = 54, .external_lex_state = 2}, + [5130] = {.lex_state = 54, .external_lex_state = 5}, + [5131] = {.lex_state = 54, .external_lex_state = 5}, + [5132] = {.lex_state = 54, .external_lex_state = 6}, + [5133] = {.lex_state = 57, .external_lex_state = 2}, + [5134] = {.lex_state = 54, .external_lex_state = 5}, + [5135] = {.lex_state = 54, .external_lex_state = 5}, + [5136] = {.lex_state = 54, .external_lex_state = 5}, + [5137] = {.lex_state = 54, .external_lex_state = 5}, + [5138] = {.lex_state = 54, .external_lex_state = 5}, + [5139] = {.lex_state = 54, .external_lex_state = 6}, + [5140] = {.lex_state = 54, .external_lex_state = 5}, + [5141] = {.lex_state = 54, .external_lex_state = 2}, + [5142] = {.lex_state = 54, .external_lex_state = 6}, + [5143] = {.lex_state = 54, .external_lex_state = 2}, + [5144] = {.lex_state = 54, .external_lex_state = 6}, + [5145] = {.lex_state = 54, .external_lex_state = 5}, + [5146] = {.lex_state = 54, .external_lex_state = 2}, + [5147] = {.lex_state = 54, .external_lex_state = 5}, + [5148] = {.lex_state = 54, .external_lex_state = 5}, + [5149] = {.lex_state = 54, .external_lex_state = 2}, + [5150] = {.lex_state = 54, .external_lex_state = 2}, + [5151] = {.lex_state = 54, .external_lex_state = 2}, + [5152] = {.lex_state = 54, .external_lex_state = 2}, + [5153] = {.lex_state = 57, .external_lex_state = 2}, + [5154] = {.lex_state = 54, .external_lex_state = 6}, + [5155] = {.lex_state = 54, .external_lex_state = 2}, + [5156] = {.lex_state = 54, .external_lex_state = 2}, + [5157] = {.lex_state = 54, .external_lex_state = 5}, + [5158] = {.lex_state = 380, .external_lex_state = 6}, + [5159] = {.lex_state = 54, .external_lex_state = 2}, + [5160] = {.lex_state = 57, .external_lex_state = 2}, + [5161] = {.lex_state = 54, .external_lex_state = 2}, + [5162] = {.lex_state = 54, .external_lex_state = 5}, + [5163] = {.lex_state = 54, .external_lex_state = 2}, + [5164] = {.lex_state = 54, .external_lex_state = 5}, + [5165] = {.lex_state = 54, .external_lex_state = 5}, + [5166] = {.lex_state = 54, .external_lex_state = 2}, + [5167] = {.lex_state = 72, .external_lex_state = 2}, + [5168] = {.lex_state = 72, .external_lex_state = 2}, + [5169] = {.lex_state = 380, .external_lex_state = 7}, + [5170] = {.lex_state = 72, .external_lex_state = 2}, + [5171] = {.lex_state = 72, .external_lex_state = 2}, + [5172] = {.lex_state = 54, .external_lex_state = 5}, + [5173] = {.lex_state = 72, .external_lex_state = 2}, + [5174] = {.lex_state = 54, .external_lex_state = 5}, + [5175] = {.lex_state = 54, .external_lex_state = 5}, + [5176] = {.lex_state = 57, .external_lex_state = 2}, + [5177] = {.lex_state = 72, .external_lex_state = 2}, + [5178] = {.lex_state = 57, .external_lex_state = 2}, + [5179] = {.lex_state = 72, .external_lex_state = 2}, + [5180] = {.lex_state = 380, .external_lex_state = 7}, + [5181] = {.lex_state = 88, .external_lex_state = 2}, + [5182] = {.lex_state = 380, .external_lex_state = 7}, + [5183] = {.lex_state = 72, .external_lex_state = 2}, + [5184] = {.lex_state = 72, .external_lex_state = 2}, + [5185] = {.lex_state = 54, .external_lex_state = 6}, + [5186] = {.lex_state = 380, .external_lex_state = 6}, + [5187] = {.lex_state = 380, .external_lex_state = 7}, + [5188] = {.lex_state = 88, .external_lex_state = 2}, + [5189] = {.lex_state = 88, .external_lex_state = 2}, + [5190] = {.lex_state = 54, .external_lex_state = 5}, + [5191] = {.lex_state = 380, .external_lex_state = 7}, + [5192] = {.lex_state = 88, .external_lex_state = 2}, + [5193] = {.lex_state = 88, .external_lex_state = 2}, + [5194] = {.lex_state = 88, .external_lex_state = 2}, + [5195] = {.lex_state = 380, .external_lex_state = 5}, + [5196] = {.lex_state = 88, .external_lex_state = 2}, + [5197] = {.lex_state = 380, .external_lex_state = 7}, + [5198] = {.lex_state = 88, .external_lex_state = 2}, + [5199] = {.lex_state = 61, .external_lex_state = 2}, + [5200] = {.lex_state = 380, .external_lex_state = 5}, + [5201] = {.lex_state = 380, .external_lex_state = 5}, + [5202] = {.lex_state = 380, .external_lex_state = 5}, + [5203] = {.lex_state = 380, .external_lex_state = 7}, + [5204] = {.lex_state = 380, .external_lex_state = 7}, + [5205] = {.lex_state = 380, .external_lex_state = 5}, + [5206] = {.lex_state = 58, .external_lex_state = 2}, + [5207] = {.lex_state = 380, .external_lex_state = 5}, + [5208] = {.lex_state = 58, .external_lex_state = 2}, + [5209] = {.lex_state = 380, .external_lex_state = 5}, + [5210] = {.lex_state = 380, .external_lex_state = 5}, + [5211] = {.lex_state = 380, .external_lex_state = 5}, + [5212] = {.lex_state = 380, .external_lex_state = 5}, + [5213] = {.lex_state = 380, .external_lex_state = 5}, + [5214] = {.lex_state = 380, .external_lex_state = 5}, + [5215] = {.lex_state = 380, .external_lex_state = 5}, + [5216] = {.lex_state = 380, .external_lex_state = 5}, + [5217] = {.lex_state = 380, .external_lex_state = 5}, + [5218] = {.lex_state = 380, .external_lex_state = 2}, + [5219] = {.lex_state = 380, .external_lex_state = 5}, + [5220] = {.lex_state = 380, .external_lex_state = 5}, + [5221] = {.lex_state = 380, .external_lex_state = 5}, + [5222] = {.lex_state = 380, .external_lex_state = 6}, + [5223] = {.lex_state = 380, .external_lex_state = 5}, + [5224] = {.lex_state = 58, .external_lex_state = 2}, + [5225] = {.lex_state = 380, .external_lex_state = 5}, + [5226] = {.lex_state = 380, .external_lex_state = 6}, + [5227] = {.lex_state = 380, .external_lex_state = 6}, + [5228] = {.lex_state = 57, .external_lex_state = 5}, + [5229] = {.lex_state = 380, .external_lex_state = 5}, + [5230] = {.lex_state = 380, .external_lex_state = 5}, + [5231] = {.lex_state = 380, .external_lex_state = 5}, + [5232] = {.lex_state = 380, .external_lex_state = 5}, + [5233] = {.lex_state = 380, .external_lex_state = 5}, + [5234] = {.lex_state = 58, .external_lex_state = 2}, + [5235] = {.lex_state = 380, .external_lex_state = 2}, + [5236] = {.lex_state = 380, .external_lex_state = 5}, + [5237] = {.lex_state = 72, .external_lex_state = 2}, + [5238] = {.lex_state = 380, .external_lex_state = 5}, + [5239] = {.lex_state = 54, .external_lex_state = 2}, + [5240] = {.lex_state = 380, .external_lex_state = 5}, + [5241] = {.lex_state = 380, .external_lex_state = 5}, + [5242] = {.lex_state = 380, .external_lex_state = 5}, + [5243] = {.lex_state = 380, .external_lex_state = 6}, + [5244] = {.lex_state = 380, .external_lex_state = 5}, + [5245] = {.lex_state = 54, .external_lex_state = 2}, + [5246] = {.lex_state = 380, .external_lex_state = 5}, + [5247] = {.lex_state = 58, .external_lex_state = 2}, + [5248] = {.lex_state = 380, .external_lex_state = 2}, + [5249] = {.lex_state = 380, .external_lex_state = 5}, + [5250] = {.lex_state = 380, .external_lex_state = 5}, + [5251] = {.lex_state = 380, .external_lex_state = 6}, + [5252] = {.lex_state = 57, .external_lex_state = 5}, + [5253] = {.lex_state = 58, .external_lex_state = 2}, + [5254] = {.lex_state = 58, .external_lex_state = 2}, + [5255] = {.lex_state = 54, .external_lex_state = 2}, + [5256] = {.lex_state = 380, .external_lex_state = 5}, + [5257] = {.lex_state = 72, .external_lex_state = 2}, + [5258] = {.lex_state = 380, .external_lex_state = 2}, + [5259] = {.lex_state = 380, .external_lex_state = 5}, + [5260] = {.lex_state = 380, .external_lex_state = 2}, + [5261] = {.lex_state = 380, .external_lex_state = 5}, + [5262] = {.lex_state = 380, .external_lex_state = 5}, + [5263] = {.lex_state = 380, .external_lex_state = 5}, + [5264] = {.lex_state = 380, .external_lex_state = 5}, + [5265] = {.lex_state = 380, .external_lex_state = 2}, + [5266] = {.lex_state = 380, .external_lex_state = 5}, + [5267] = {.lex_state = 58, .external_lex_state = 2}, + [5268] = {.lex_state = 380, .external_lex_state = 2}, + [5269] = {.lex_state = 380, .external_lex_state = 5}, + [5270] = {.lex_state = 58, .external_lex_state = 2}, + [5271] = {.lex_state = 380, .external_lex_state = 2}, + [5272] = {.lex_state = 380, .external_lex_state = 5}, + [5273] = {.lex_state = 380, .external_lex_state = 2}, + [5274] = {.lex_state = 380, .external_lex_state = 5}, + [5275] = {.lex_state = 91, .external_lex_state = 2}, + [5276] = {.lex_state = 58, .external_lex_state = 2}, + [5277] = {.lex_state = 380, .external_lex_state = 5}, + [5278] = {.lex_state = 380, .external_lex_state = 2}, + [5279] = {.lex_state = 380, .external_lex_state = 5}, + [5280] = {.lex_state = 380, .external_lex_state = 5}, + [5281] = {.lex_state = 380, .external_lex_state = 5}, + [5282] = {.lex_state = 380, .external_lex_state = 2}, + [5283] = {.lex_state = 380, .external_lex_state = 5}, + [5284] = {.lex_state = 380, .external_lex_state = 2}, + [5285] = {.lex_state = 380, .external_lex_state = 5}, + [5286] = {.lex_state = 380, .external_lex_state = 5}, + [5287] = {.lex_state = 380, .external_lex_state = 2}, + [5288] = {.lex_state = 58, .external_lex_state = 2}, + [5289] = {.lex_state = 380, .external_lex_state = 5}, + [5290] = {.lex_state = 58, .external_lex_state = 2}, + [5291] = {.lex_state = 380, .external_lex_state = 2}, + [5292] = {.lex_state = 58, .external_lex_state = 2}, + [5293] = {.lex_state = 380, .external_lex_state = 2}, + [5294] = {.lex_state = 58, .external_lex_state = 2}, + [5295] = {.lex_state = 58, .external_lex_state = 2}, + [5296] = {.lex_state = 380, .external_lex_state = 2}, + [5297] = {.lex_state = 380, .external_lex_state = 2}, + [5298] = {.lex_state = 380, .external_lex_state = 2}, + [5299] = {.lex_state = 380, .external_lex_state = 5}, + [5300] = {.lex_state = 380, .external_lex_state = 5}, + [5301] = {.lex_state = 380, .external_lex_state = 2}, + [5302] = {.lex_state = 380, .external_lex_state = 5}, + [5303] = {.lex_state = 380, .external_lex_state = 5}, + [5304] = {.lex_state = 91, .external_lex_state = 2}, + [5305] = {.lex_state = 380, .external_lex_state = 5}, + [5306] = {.lex_state = 58, .external_lex_state = 2}, + [5307] = {.lex_state = 58, .external_lex_state = 2}, + [5308] = {.lex_state = 58, .external_lex_state = 2}, + [5309] = {.lex_state = 380, .external_lex_state = 2}, + [5310] = {.lex_state = 380, .external_lex_state = 2}, + [5311] = {.lex_state = 380, .external_lex_state = 2}, + [5312] = {.lex_state = 380, .external_lex_state = 2}, + [5313] = {.lex_state = 380, .external_lex_state = 5}, + [5314] = {.lex_state = 380, .external_lex_state = 2}, + [5315] = {.lex_state = 72, .external_lex_state = 2}, + [5316] = {.lex_state = 380, .external_lex_state = 5}, + [5317] = {.lex_state = 91, .external_lex_state = 2}, + [5318] = {.lex_state = 380, .external_lex_state = 2}, + [5319] = {.lex_state = 380, .external_lex_state = 2}, + [5320] = {.lex_state = 380, .external_lex_state = 2}, + [5321] = {.lex_state = 380, .external_lex_state = 5}, + [5322] = {.lex_state = 58, .external_lex_state = 2}, + [5323] = {.lex_state = 380, .external_lex_state = 2}, + [5324] = {.lex_state = 380, .external_lex_state = 5}, + [5325] = {.lex_state = 380, .external_lex_state = 5}, + [5326] = {.lex_state = 380, .external_lex_state = 5}, + [5327] = {.lex_state = 380, .external_lex_state = 5}, + [5328] = {.lex_state = 380, .external_lex_state = 5}, + [5329] = {.lex_state = 380, .external_lex_state = 5}, + [5330] = {.lex_state = 380, .external_lex_state = 5}, + [5331] = {.lex_state = 380, .external_lex_state = 5}, + [5332] = {.lex_state = 380, .external_lex_state = 2}, + [5333] = {.lex_state = 380, .external_lex_state = 5}, + [5334] = {.lex_state = 54, .external_lex_state = 2}, + [5335] = {.lex_state = 380, .external_lex_state = 5}, + [5336] = {.lex_state = 380, .external_lex_state = 5}, + [5337] = {.lex_state = 380, .external_lex_state = 2}, + [5338] = {.lex_state = 380, .external_lex_state = 5}, + [5339] = {.lex_state = 380, .external_lex_state = 5}, + [5340] = {.lex_state = 380, .external_lex_state = 5}, + [5341] = {.lex_state = 380, .external_lex_state = 2}, + [5342] = {.lex_state = 380, .external_lex_state = 5}, + [5343] = {.lex_state = 58, .external_lex_state = 2}, + [5344] = {.lex_state = 54, .external_lex_state = 2}, + [5345] = {.lex_state = 380, .external_lex_state = 2}, + [5346] = {.lex_state = 72, .external_lex_state = 2}, + [5347] = {.lex_state = 380, .external_lex_state = 2}, + [5348] = {.lex_state = 57, .external_lex_state = 5}, + [5349] = {.lex_state = 380, .external_lex_state = 5}, + [5350] = {.lex_state = 380, .external_lex_state = 5}, + [5351] = {.lex_state = 54, .external_lex_state = 2}, + [5352] = {.lex_state = 380, .external_lex_state = 5}, + [5353] = {.lex_state = 380, .external_lex_state = 5}, + [5354] = {.lex_state = 380, .external_lex_state = 5}, + [5355] = {.lex_state = 380, .external_lex_state = 5}, + [5356] = {.lex_state = 380, .external_lex_state = 5}, + [5357] = {.lex_state = 380, .external_lex_state = 2}, + [5358] = {.lex_state = 380, .external_lex_state = 2}, + [5359] = {.lex_state = 54, .external_lex_state = 2}, + [5360] = {.lex_state = 58, .external_lex_state = 2}, + [5361] = {.lex_state = 58, .external_lex_state = 2}, + [5362] = {.lex_state = 380, .external_lex_state = 5}, + [5363] = {.lex_state = 380, .external_lex_state = 2}, + [5364] = {.lex_state = 380, .external_lex_state = 5}, + [5365] = {.lex_state = 380, .external_lex_state = 2}, + [5366] = {.lex_state = 54, .external_lex_state = 2}, + [5367] = {.lex_state = 72, .external_lex_state = 2}, + [5368] = {.lex_state = 380, .external_lex_state = 2}, + [5369] = {.lex_state = 380, .external_lex_state = 5}, + [5370] = {.lex_state = 380, .external_lex_state = 5}, + [5371] = {.lex_state = 58, .external_lex_state = 2}, + [5372] = {.lex_state = 57, .external_lex_state = 5}, + [5373] = {.lex_state = 380, .external_lex_state = 6}, + [5374] = {.lex_state = 380, .external_lex_state = 5}, + [5375] = {.lex_state = 380, .external_lex_state = 2}, + [5376] = {.lex_state = 380, .external_lex_state = 2}, + [5377] = {.lex_state = 380, .external_lex_state = 5}, + [5378] = {.lex_state = 380, .external_lex_state = 5}, + [5379] = {.lex_state = 61, .external_lex_state = 2}, + [5380] = {.lex_state = 380, .external_lex_state = 5}, + [5381] = {.lex_state = 380, .external_lex_state = 5}, + [5382] = {.lex_state = 380, .external_lex_state = 2}, + [5383] = {.lex_state = 380, .external_lex_state = 5}, + [5384] = {.lex_state = 58, .external_lex_state = 2}, + [5385] = {.lex_state = 58, .external_lex_state = 2}, + [5386] = {.lex_state = 58, .external_lex_state = 2}, + [5387] = {.lex_state = 380, .external_lex_state = 5}, + [5388] = {.lex_state = 380, .external_lex_state = 2}, + [5389] = {.lex_state = 380, .external_lex_state = 5}, + [5390] = {.lex_state = 380, .external_lex_state = 5}, + [5391] = {.lex_state = 380, .external_lex_state = 5}, + [5392] = {.lex_state = 380, .external_lex_state = 5}, + [5393] = {.lex_state = 58, .external_lex_state = 2}, + [5394] = {.lex_state = 72, .external_lex_state = 2}, + [5395] = {.lex_state = 380, .external_lex_state = 2}, + [5396] = {.lex_state = 380, .external_lex_state = 5}, + [5397] = {.lex_state = 380, .external_lex_state = 5}, + [5398] = {.lex_state = 58, .external_lex_state = 2}, + [5399] = {.lex_state = 58, .external_lex_state = 2}, + [5400] = {.lex_state = 58, .external_lex_state = 2}, + [5401] = {.lex_state = 54, .external_lex_state = 2}, + [5402] = {.lex_state = 380, .external_lex_state = 5}, + [5403] = {.lex_state = 380, .external_lex_state = 5}, + [5404] = {.lex_state = 57, .external_lex_state = 5}, + [5405] = {.lex_state = 91, .external_lex_state = 2}, + [5406] = {.lex_state = 67, .external_lex_state = 2}, + [5407] = {.lex_state = 380, .external_lex_state = 5}, + [5408] = {.lex_state = 380, .external_lex_state = 2}, + [5409] = {.lex_state = 58, .external_lex_state = 2}, + [5410] = {.lex_state = 380, .external_lex_state = 2}, + [5411] = {.lex_state = 72, .external_lex_state = 2}, + [5412] = {.lex_state = 380, .external_lex_state = 5}, + [5413] = {.lex_state = 54, .external_lex_state = 2}, + [5414] = {.lex_state = 58, .external_lex_state = 2}, + [5415] = {.lex_state = 380, .external_lex_state = 5}, + [5416] = {.lex_state = 380, .external_lex_state = 5}, + [5417] = {.lex_state = 380, .external_lex_state = 5}, + [5418] = {.lex_state = 380, .external_lex_state = 2}, + [5419] = {.lex_state = 72, .external_lex_state = 2}, + [5420] = {.lex_state = 380, .external_lex_state = 5}, + [5421] = {.lex_state = 54, .external_lex_state = 2}, + [5422] = {.lex_state = 58, .external_lex_state = 2}, + [5423] = {.lex_state = 380, .external_lex_state = 5}, + [5424] = {.lex_state = 380, .external_lex_state = 2}, + [5425] = {.lex_state = 380, .external_lex_state = 5}, + [5426] = {.lex_state = 380, .external_lex_state = 2}, + [5427] = {.lex_state = 380, .external_lex_state = 5}, + [5428] = {.lex_state = 58, .external_lex_state = 2}, + [5429] = {.lex_state = 380, .external_lex_state = 5}, + [5430] = {.lex_state = 380, .external_lex_state = 5}, + [5431] = {.lex_state = 58, .external_lex_state = 2}, + [5432] = {.lex_state = 380, .external_lex_state = 2}, + [5433] = {.lex_state = 380, .external_lex_state = 5}, + [5434] = {.lex_state = 58, .external_lex_state = 2}, + [5435] = {.lex_state = 380, .external_lex_state = 5}, + [5436] = {.lex_state = 380, .external_lex_state = 5}, + [5437] = {.lex_state = 380, .external_lex_state = 5}, + [5438] = {.lex_state = 380, .external_lex_state = 5}, + [5439] = {.lex_state = 380, .external_lex_state = 5}, + [5440] = {.lex_state = 380, .external_lex_state = 5}, + [5441] = {.lex_state = 380, .external_lex_state = 5}, + [5442] = {.lex_state = 58, .external_lex_state = 2}, + [5443] = {.lex_state = 380, .external_lex_state = 2}, + [5444] = {.lex_state = 380, .external_lex_state = 5}, + [5445] = {.lex_state = 380, .external_lex_state = 5}, + [5446] = {.lex_state = 380, .external_lex_state = 5}, + [5447] = {.lex_state = 380, .external_lex_state = 5}, + [5448] = {.lex_state = 380, .external_lex_state = 5}, + [5449] = {.lex_state = 380, .external_lex_state = 2}, + [5450] = {.lex_state = 380, .external_lex_state = 5}, + [5451] = {.lex_state = 57, .external_lex_state = 5}, + [5452] = {.lex_state = 380, .external_lex_state = 2}, + [5453] = {.lex_state = 58, .external_lex_state = 2}, + [5454] = {.lex_state = 380, .external_lex_state = 5}, + [5455] = {.lex_state = 380, .external_lex_state = 5}, + [5456] = {.lex_state = 54, .external_lex_state = 2}, + [5457] = {.lex_state = 54, .external_lex_state = 2}, + [5458] = {.lex_state = 57, .external_lex_state = 5}, + [5459] = {.lex_state = 380, .external_lex_state = 5}, + [5460] = {.lex_state = 380, .external_lex_state = 5}, + [5461] = {.lex_state = 380, .external_lex_state = 2}, + [5462] = {.lex_state = 380, .external_lex_state = 2}, + [5463] = {.lex_state = 58, .external_lex_state = 2}, + [5464] = {.lex_state = 91, .external_lex_state = 2}, + [5465] = {.lex_state = 58, .external_lex_state = 2}, + [5466] = {.lex_state = 380, .external_lex_state = 5}, + [5467] = {.lex_state = 380, .external_lex_state = 2}, + [5468] = {.lex_state = 58, .external_lex_state = 2}, + [5469] = {.lex_state = 380, .external_lex_state = 5}, + [5470] = {.lex_state = 380, .external_lex_state = 5}, + [5471] = {.lex_state = 57, .external_lex_state = 5}, + [5472] = {.lex_state = 58, .external_lex_state = 2}, + [5473] = {.lex_state = 57, .external_lex_state = 5}, + [5474] = {.lex_state = 58, .external_lex_state = 2}, + [5475] = {.lex_state = 380, .external_lex_state = 5}, + [5476] = {.lex_state = 58, .external_lex_state = 2}, + [5477] = {.lex_state = 58, .external_lex_state = 2}, + [5478] = {.lex_state = 380, .external_lex_state = 5}, + [5479] = {.lex_state = 380, .external_lex_state = 5}, + [5480] = {.lex_state = 380, .external_lex_state = 2}, + [5481] = {.lex_state = 380, .external_lex_state = 5}, + [5482] = {.lex_state = 380, .external_lex_state = 5}, + [5483] = {.lex_state = 380, .external_lex_state = 5}, + [5484] = {.lex_state = 380, .external_lex_state = 2}, + [5485] = {.lex_state = 58, .external_lex_state = 2}, + [5486] = {.lex_state = 380, .external_lex_state = 5}, + [5487] = {.lex_state = 380, .external_lex_state = 5}, + [5488] = {.lex_state = 380, .external_lex_state = 2}, + [5489] = {.lex_state = 380, .external_lex_state = 2}, + [5490] = {.lex_state = 72, .external_lex_state = 2}, + [5491] = {.lex_state = 380, .external_lex_state = 2}, + [5492] = {.lex_state = 58, .external_lex_state = 2}, + [5493] = {.lex_state = 58, .external_lex_state = 2}, + [5494] = {.lex_state = 58, .external_lex_state = 2}, + [5495] = {.lex_state = 380, .external_lex_state = 5}, + [5496] = {.lex_state = 380, .external_lex_state = 5}, + [5497] = {.lex_state = 380, .external_lex_state = 5}, + [5498] = {.lex_state = 380, .external_lex_state = 5}, + [5499] = {.lex_state = 380, .external_lex_state = 5}, + [5500] = {.lex_state = 380, .external_lex_state = 5}, + [5501] = {.lex_state = 380, .external_lex_state = 2}, + [5502] = {.lex_state = 58, .external_lex_state = 2}, + [5503] = {.lex_state = 54, .external_lex_state = 2}, + [5504] = {.lex_state = 380, .external_lex_state = 2}, + [5505] = {.lex_state = 58, .external_lex_state = 2}, + [5506] = {.lex_state = 58, .external_lex_state = 2}, + [5507] = {.lex_state = 54, .external_lex_state = 2}, + [5508] = {.lex_state = 54, .external_lex_state = 2}, + [5509] = {.lex_state = 380, .external_lex_state = 2}, + [5510] = {.lex_state = 380, .external_lex_state = 5}, + [5511] = {.lex_state = 380, .external_lex_state = 7}, + [5512] = {.lex_state = 380, .external_lex_state = 5}, + [5513] = {.lex_state = 58, .external_lex_state = 2}, + [5514] = {.lex_state = 380, .external_lex_state = 6}, + [5515] = {.lex_state = 54, .external_lex_state = 2}, + [5516] = {.lex_state = 54, .external_lex_state = 2}, + [5517] = {.lex_state = 380, .external_lex_state = 2}, + [5518] = {.lex_state = 380, .external_lex_state = 6}, + [5519] = {.lex_state = 380, .external_lex_state = 6}, + [5520] = {.lex_state = 380, .external_lex_state = 2}, + [5521] = {.lex_state = 57, .external_lex_state = 2}, + [5522] = {.lex_state = 380, .external_lex_state = 2}, + [5523] = {.lex_state = 58, .external_lex_state = 2}, + [5524] = {.lex_state = 380, .external_lex_state = 5}, + [5525] = {.lex_state = 380, .external_lex_state = 5}, + [5526] = {.lex_state = 380, .external_lex_state = 5}, + [5527] = {.lex_state = 380, .external_lex_state = 6}, + [5528] = {.lex_state = 380, .external_lex_state = 5}, + [5529] = {.lex_state = 58, .external_lex_state = 2}, + [5530] = {.lex_state = 380, .external_lex_state = 5}, + [5531] = {.lex_state = 58, .external_lex_state = 2}, + [5532] = {.lex_state = 380, .external_lex_state = 2}, + [5533] = {.lex_state = 380, .external_lex_state = 5}, + [5534] = {.lex_state = 58, .external_lex_state = 2}, + [5535] = {.lex_state = 380, .external_lex_state = 6}, + [5536] = {.lex_state = 58, .external_lex_state = 2}, + [5537] = {.lex_state = 380, .external_lex_state = 6}, + [5538] = {.lex_state = 58, .external_lex_state = 2}, + [5539] = {.lex_state = 380, .external_lex_state = 6}, + [5540] = {.lex_state = 380, .external_lex_state = 5}, + [5541] = {.lex_state = 54, .external_lex_state = 2}, + [5542] = {.lex_state = 380, .external_lex_state = 2}, + [5543] = {.lex_state = 54, .external_lex_state = 2}, + [5544] = {.lex_state = 58, .external_lex_state = 2}, + [5545] = {.lex_state = 54, .external_lex_state = 2}, + [5546] = {.lex_state = 58, .external_lex_state = 2}, + [5547] = {.lex_state = 380, .external_lex_state = 2}, + [5548] = {.lex_state = 380, .external_lex_state = 5}, + [5549] = {.lex_state = 54, .external_lex_state = 2}, + [5550] = {.lex_state = 58, .external_lex_state = 2}, + [5551] = {.lex_state = 380, .external_lex_state = 2}, + [5552] = {.lex_state = 54, .external_lex_state = 2}, + [5553] = {.lex_state = 58, .external_lex_state = 2}, + [5554] = {.lex_state = 57, .external_lex_state = 2}, + [5555] = {.lex_state = 58, .external_lex_state = 2}, + [5556] = {.lex_state = 380, .external_lex_state = 6}, + [5557] = {.lex_state = 380, .external_lex_state = 2}, + [5558] = {.lex_state = 380, .external_lex_state = 5}, + [5559] = {.lex_state = 380, .external_lex_state = 5}, + [5560] = {.lex_state = 380, .external_lex_state = 5}, + [5561] = {.lex_state = 380, .external_lex_state = 2}, + [5562] = {.lex_state = 380, .external_lex_state = 2}, + [5563] = {.lex_state = 54, .external_lex_state = 2}, + [5564] = {.lex_state = 58, .external_lex_state = 2}, + [5565] = {.lex_state = 58, .external_lex_state = 2}, + [5566] = {.lex_state = 58, .external_lex_state = 2}, + [5567] = {.lex_state = 380, .external_lex_state = 5}, + [5568] = {.lex_state = 380, .external_lex_state = 6}, + [5569] = {.lex_state = 57, .external_lex_state = 2}, + [5570] = {.lex_state = 380, .external_lex_state = 2}, + [5571] = {.lex_state = 54, .external_lex_state = 2}, + [5572] = {.lex_state = 54, .external_lex_state = 2}, + [5573] = {.lex_state = 54, .external_lex_state = 2}, + [5574] = {.lex_state = 380, .external_lex_state = 5}, + [5575] = {.lex_state = 380, .external_lex_state = 5}, + [5576] = {.lex_state = 380, .external_lex_state = 5}, + [5577] = {.lex_state = 380, .external_lex_state = 5}, + [5578] = {.lex_state = 58, .external_lex_state = 2}, + [5579] = {.lex_state = 54, .external_lex_state = 2}, + [5580] = {.lex_state = 380, .external_lex_state = 7}, + [5581] = {.lex_state = 58, .external_lex_state = 2}, + [5582] = {.lex_state = 58, .external_lex_state = 2}, + [5583] = {.lex_state = 58, .external_lex_state = 2}, + [5584] = {.lex_state = 72, .external_lex_state = 2}, + [5585] = {.lex_state = 21, .external_lex_state = 5}, + [5586] = {.lex_state = 380, .external_lex_state = 5}, + [5587] = {.lex_state = 380, .external_lex_state = 5}, + [5588] = {.lex_state = 380, .external_lex_state = 5}, + [5589] = {.lex_state = 380, .external_lex_state = 6}, + [5590] = {.lex_state = 57, .external_lex_state = 2}, + [5591] = {.lex_state = 380, .external_lex_state = 5}, + [5592] = {.lex_state = 380, .external_lex_state = 5}, + [5593] = {.lex_state = 380, .external_lex_state = 5}, + [5594] = {.lex_state = 58, .external_lex_state = 2}, + [5595] = {.lex_state = 380, .external_lex_state = 5}, + [5596] = {.lex_state = 380, .external_lex_state = 5}, + [5597] = {.lex_state = 380, .external_lex_state = 6}, + [5598] = {.lex_state = 380, .external_lex_state = 2}, + [5599] = {.lex_state = 54, .external_lex_state = 2}, + [5600] = {.lex_state = 54, .external_lex_state = 2}, + [5601] = {.lex_state = 58, .external_lex_state = 2}, + [5602] = {.lex_state = 54, .external_lex_state = 2}, + [5603] = {.lex_state = 380, .external_lex_state = 5}, + [5604] = {.lex_state = 380, .external_lex_state = 7}, + [5605] = {.lex_state = 380, .external_lex_state = 2}, + [5606] = {.lex_state = 54, .external_lex_state = 2}, + [5607] = {.lex_state = 54, .external_lex_state = 2}, + [5608] = {.lex_state = 380, .external_lex_state = 5}, + [5609] = {.lex_state = 54, .external_lex_state = 2}, + [5610] = {.lex_state = 21, .external_lex_state = 5}, + [5611] = {.lex_state = 380, .external_lex_state = 6}, + [5612] = {.lex_state = 58, .external_lex_state = 2}, + [5613] = {.lex_state = 380, .external_lex_state = 6}, + [5614] = {.lex_state = 380, .external_lex_state = 6}, + [5615] = {.lex_state = 58, .external_lex_state = 2}, + [5616] = {.lex_state = 58, .external_lex_state = 2}, + [5617] = {.lex_state = 58, .external_lex_state = 2}, + [5618] = {.lex_state = 380, .external_lex_state = 6}, + [5619] = {.lex_state = 58, .external_lex_state = 2}, + [5620] = {.lex_state = 54, .external_lex_state = 2}, + [5621] = {.lex_state = 380, .external_lex_state = 6}, + [5622] = {.lex_state = 380, .external_lex_state = 5}, + [5623] = {.lex_state = 380, .external_lex_state = 5}, + [5624] = {.lex_state = 380, .external_lex_state = 5}, + [5625] = {.lex_state = 58, .external_lex_state = 2}, + [5626] = {.lex_state = 58, .external_lex_state = 2}, + [5627] = {.lex_state = 380, .external_lex_state = 5}, + [5628] = {.lex_state = 380, .external_lex_state = 5}, + [5629] = {.lex_state = 58, .external_lex_state = 2}, + [5630] = {.lex_state = 380, .external_lex_state = 5}, + [5631] = {.lex_state = 380, .external_lex_state = 2}, + [5632] = {.lex_state = 79, .external_lex_state = 2}, + [5633] = {.lex_state = 380, .external_lex_state = 5}, + [5634] = {.lex_state = 54, .external_lex_state = 2}, + [5635] = {.lex_state = 380, .external_lex_state = 2}, + [5636] = {.lex_state = 54, .external_lex_state = 2}, + [5637] = {.lex_state = 380, .external_lex_state = 6}, + [5638] = {.lex_state = 380, .external_lex_state = 2}, + [5639] = {.lex_state = 58, .external_lex_state = 2}, + [5640] = {.lex_state = 380, .external_lex_state = 2}, + [5641] = {.lex_state = 380, .external_lex_state = 6}, + [5642] = {.lex_state = 380, .external_lex_state = 2}, + [5643] = {.lex_state = 380, .external_lex_state = 2}, + [5644] = {.lex_state = 54, .external_lex_state = 2}, + [5645] = {.lex_state = 380, .external_lex_state = 5}, + [5646] = {.lex_state = 380, .external_lex_state = 6}, + [5647] = {.lex_state = 79, .external_lex_state = 2}, + [5648] = {.lex_state = 380, .external_lex_state = 2}, + [5649] = {.lex_state = 380, .external_lex_state = 5}, + [5650] = {.lex_state = 380, .external_lex_state = 6}, + [5651] = {.lex_state = 380, .external_lex_state = 2}, + [5652] = {.lex_state = 54, .external_lex_state = 2}, + [5653] = {.lex_state = 54, .external_lex_state = 2}, + [5654] = {.lex_state = 54, .external_lex_state = 2}, + [5655] = {.lex_state = 58, .external_lex_state = 2}, + [5656] = {.lex_state = 380, .external_lex_state = 6}, + [5657] = {.lex_state = 58, .external_lex_state = 2}, + [5658] = {.lex_state = 57, .external_lex_state = 2}, + [5659] = {.lex_state = 57, .external_lex_state = 2}, + [5660] = {.lex_state = 54, .external_lex_state = 2}, + [5661] = {.lex_state = 380, .external_lex_state = 2}, + [5662] = {.lex_state = 380, .external_lex_state = 6}, + [5663] = {.lex_state = 54, .external_lex_state = 2}, + [5664] = {.lex_state = 380, .external_lex_state = 5}, + [5665] = {.lex_state = 54, .external_lex_state = 2}, + [5666] = {.lex_state = 58, .external_lex_state = 2}, + [5667] = {.lex_state = 380, .external_lex_state = 5}, + [5668] = {.lex_state = 380, .external_lex_state = 6}, + [5669] = {.lex_state = 58, .external_lex_state = 2}, + [5670] = {.lex_state = 58, .external_lex_state = 2}, + [5671] = {.lex_state = 54, .external_lex_state = 2}, + [5672] = {.lex_state = 54, .external_lex_state = 2}, + [5673] = {.lex_state = 54, .external_lex_state = 2}, + [5674] = {.lex_state = 380, .external_lex_state = 7}, + [5675] = {.lex_state = 380, .external_lex_state = 5}, + [5676] = {.lex_state = 380, .external_lex_state = 6}, + [5677] = {.lex_state = 380, .external_lex_state = 5}, + [5678] = {.lex_state = 54, .external_lex_state = 2}, + [5679] = {.lex_state = 54, .external_lex_state = 2}, + [5680] = {.lex_state = 57, .external_lex_state = 2}, + [5681] = {.lex_state = 380, .external_lex_state = 2}, + [5682] = {.lex_state = 380, .external_lex_state = 7}, + [5683] = {.lex_state = 58, .external_lex_state = 2}, + [5684] = {.lex_state = 380, .external_lex_state = 5}, + [5685] = {.lex_state = 380, .external_lex_state = 5}, + [5686] = {.lex_state = 72, .external_lex_state = 2}, + [5687] = {.lex_state = 380, .external_lex_state = 6}, + [5688] = {.lex_state = 58, .external_lex_state = 2}, + [5689] = {.lex_state = 58, .external_lex_state = 2}, + [5690] = {.lex_state = 54, .external_lex_state = 2}, + [5691] = {.lex_state = 58, .external_lex_state = 2}, + [5692] = {.lex_state = 380, .external_lex_state = 6}, + [5693] = {.lex_state = 54, .external_lex_state = 2}, + [5694] = {.lex_state = 380, .external_lex_state = 5}, + [5695] = {.lex_state = 58, .external_lex_state = 2}, + [5696] = {.lex_state = 58, .external_lex_state = 2}, + [5697] = {.lex_state = 380, .external_lex_state = 2}, + [5698] = {.lex_state = 380, .external_lex_state = 2}, + [5699] = {.lex_state = 380, .external_lex_state = 2}, + [5700] = {.lex_state = 380, .external_lex_state = 6}, + [5701] = {.lex_state = 54, .external_lex_state = 2}, + [5702] = {.lex_state = 58, .external_lex_state = 2}, + [5703] = {.lex_state = 58, .external_lex_state = 2}, + [5704] = {.lex_state = 58, .external_lex_state = 2}, + [5705] = {.lex_state = 54, .external_lex_state = 2}, + [5706] = {.lex_state = 380, .external_lex_state = 6}, + [5707] = {.lex_state = 380, .external_lex_state = 2}, + [5708] = {.lex_state = 380, .external_lex_state = 2}, + [5709] = {.lex_state = 58, .external_lex_state = 2}, + [5710] = {.lex_state = 380, .external_lex_state = 2}, + [5711] = {.lex_state = 58, .external_lex_state = 2}, + [5712] = {.lex_state = 380, .external_lex_state = 2}, + [5713] = {.lex_state = 380, .external_lex_state = 2}, + [5714] = {.lex_state = 380, .external_lex_state = 5}, + [5715] = {.lex_state = 58, .external_lex_state = 2}, + [5716] = {.lex_state = 380, .external_lex_state = 6}, + [5717] = {.lex_state = 58, .external_lex_state = 2}, + [5718] = {.lex_state = 380, .external_lex_state = 2}, + [5719] = {.lex_state = 380, .external_lex_state = 5}, + [5720] = {.lex_state = 54, .external_lex_state = 2}, + [5721] = {.lex_state = 54, .external_lex_state = 2}, + [5722] = {.lex_state = 54, .external_lex_state = 2}, + [5723] = {.lex_state = 380, .external_lex_state = 5}, + [5724] = {.lex_state = 54, .external_lex_state = 2}, + [5725] = {.lex_state = 380, .external_lex_state = 5}, + [5726] = {.lex_state = 380, .external_lex_state = 5}, + [5727] = {.lex_state = 58, .external_lex_state = 2}, + [5728] = {.lex_state = 58, .external_lex_state = 2}, + [5729] = {.lex_state = 54, .external_lex_state = 2}, + [5730] = {.lex_state = 380, .external_lex_state = 6}, + [5731] = {.lex_state = 380, .external_lex_state = 5}, + [5732] = {.lex_state = 380, .external_lex_state = 6}, + [5733] = {.lex_state = 380, .external_lex_state = 5}, + [5734] = {.lex_state = 380, .external_lex_state = 5}, + [5735] = {.lex_state = 380, .external_lex_state = 2}, + [5736] = {.lex_state = 380, .external_lex_state = 5}, + [5737] = {.lex_state = 380, .external_lex_state = 6}, + [5738] = {.lex_state = 54, .external_lex_state = 5}, + [5739] = {.lex_state = 380, .external_lex_state = 6}, + [5740] = {.lex_state = 54, .external_lex_state = 5}, + [5741] = {.lex_state = 380, .external_lex_state = 5}, + [5742] = {.lex_state = 54, .external_lex_state = 2}, + [5743] = {.lex_state = 72, .external_lex_state = 2}, + [5744] = {.lex_state = 380, .external_lex_state = 6}, + [5745] = {.lex_state = 54, .external_lex_state = 5}, + [5746] = {.lex_state = 72, .external_lex_state = 2}, + [5747] = {.lex_state = 54, .external_lex_state = 5}, + [5748] = {.lex_state = 21, .external_lex_state = 5}, + [5749] = {.lex_state = 21, .external_lex_state = 5}, + [5750] = {.lex_state = 380, .external_lex_state = 5}, + [5751] = {.lex_state = 57, .external_lex_state = 2}, + [5752] = {.lex_state = 57, .external_lex_state = 2}, + [5753] = {.lex_state = 380, .external_lex_state = 5}, + [5754] = {.lex_state = 380, .external_lex_state = 5}, + [5755] = {.lex_state = 380, .external_lex_state = 5}, + [5756] = {.lex_state = 380, .external_lex_state = 5}, + [5757] = {.lex_state = 380, .external_lex_state = 5}, + [5758] = {.lex_state = 380, .external_lex_state = 2}, + [5759] = {.lex_state = 380, .external_lex_state = 5}, + [5760] = {.lex_state = 380, .external_lex_state = 5}, + [5761] = {.lex_state = 54, .external_lex_state = 2}, + [5762] = {.lex_state = 380, .external_lex_state = 5}, + [5763] = {.lex_state = 380, .external_lex_state = 2}, + [5764] = {.lex_state = 380, .external_lex_state = 5}, + [5765] = {.lex_state = 380, .external_lex_state = 2}, + [5766] = {.lex_state = 380, .external_lex_state = 2}, + [5767] = {.lex_state = 54, .external_lex_state = 2}, + [5768] = {.lex_state = 380, .external_lex_state = 5}, + [5769] = {.lex_state = 380, .external_lex_state = 5}, + [5770] = {.lex_state = 380, .external_lex_state = 5}, + [5771] = {.lex_state = 57, .external_lex_state = 2}, + [5772] = {.lex_state = 380, .external_lex_state = 8}, + [5773] = {.lex_state = 380, .external_lex_state = 5}, + [5774] = {.lex_state = 54, .external_lex_state = 2}, + [5775] = {.lex_state = 380, .external_lex_state = 8}, + [5776] = {.lex_state = 380, .external_lex_state = 5}, + [5777] = {.lex_state = 380, .external_lex_state = 5}, + [5778] = {.lex_state = 380, .external_lex_state = 5}, + [5779] = {.lex_state = 380, .external_lex_state = 5}, + [5780] = {.lex_state = 380, .external_lex_state = 5}, + [5781] = {.lex_state = 380, .external_lex_state = 5}, + [5782] = {.lex_state = 380, .external_lex_state = 2}, + [5783] = {.lex_state = 380, .external_lex_state = 5}, + [5784] = {.lex_state = 380, .external_lex_state = 5}, + [5785] = {.lex_state = 380, .external_lex_state = 5}, + [5786] = {.lex_state = 380, .external_lex_state = 5}, + [5787] = {.lex_state = 380, .external_lex_state = 5}, + [5788] = {.lex_state = 380, .external_lex_state = 5}, + [5789] = {.lex_state = 380, .external_lex_state = 5}, + [5790] = {.lex_state = 380, .external_lex_state = 5}, + [5791] = {.lex_state = 380, .external_lex_state = 5}, + [5792] = {.lex_state = 380, .external_lex_state = 6}, + [5793] = {.lex_state = 72, .external_lex_state = 2}, + [5794] = {.lex_state = 380, .external_lex_state = 5}, + [5795] = {.lex_state = 380, .external_lex_state = 5}, + [5796] = {.lex_state = 380, .external_lex_state = 5}, + [5797] = {.lex_state = 380, .external_lex_state = 6}, + [5798] = {.lex_state = 54, .external_lex_state = 5}, + [5799] = {.lex_state = 380, .external_lex_state = 5}, + [5800] = {.lex_state = 380, .external_lex_state = 6}, + [5801] = {.lex_state = 54, .external_lex_state = 2}, + [5802] = {.lex_state = 380, .external_lex_state = 5}, + [5803] = {.lex_state = 54, .external_lex_state = 5}, + [5804] = {.lex_state = 380, .external_lex_state = 2}, + [5805] = {.lex_state = 380, .external_lex_state = 6}, + [5806] = {.lex_state = 54, .external_lex_state = 5}, + [5807] = {.lex_state = 380, .external_lex_state = 5}, + [5808] = {.lex_state = 380, .external_lex_state = 5}, + [5809] = {.lex_state = 380, .external_lex_state = 5}, + [5810] = {.lex_state = 380, .external_lex_state = 8}, + [5811] = {.lex_state = 380, .external_lex_state = 2}, + [5812] = {.lex_state = 54, .external_lex_state = 5}, + [5813] = {.lex_state = 54, .external_lex_state = 5}, + [5814] = {.lex_state = 380, .external_lex_state = 6}, + [5815] = {.lex_state = 380, .external_lex_state = 5}, + [5816] = {.lex_state = 380, .external_lex_state = 5}, + [5817] = {.lex_state = 380, .external_lex_state = 5}, + [5818] = {.lex_state = 380, .external_lex_state = 2}, + [5819] = {.lex_state = 380, .external_lex_state = 5}, + [5820] = {.lex_state = 380, .external_lex_state = 6}, + [5821] = {.lex_state = 380, .external_lex_state = 5}, + [5822] = {.lex_state = 54, .external_lex_state = 5}, + [5823] = {.lex_state = 380, .external_lex_state = 6}, + [5824] = {.lex_state = 380, .external_lex_state = 5}, + [5825] = {.lex_state = 380, .external_lex_state = 6}, + [5826] = {.lex_state = 380, .external_lex_state = 5}, + [5827] = {.lex_state = 72, .external_lex_state = 2}, + [5828] = {.lex_state = 380, .external_lex_state = 5}, + [5829] = {.lex_state = 380, .external_lex_state = 5}, + [5830] = {.lex_state = 380, .external_lex_state = 5}, + [5831] = {.lex_state = 380, .external_lex_state = 2}, + [5832] = {.lex_state = 380, .external_lex_state = 6}, + [5833] = {.lex_state = 380, .external_lex_state = 5}, + [5834] = {.lex_state = 54, .external_lex_state = 5}, + [5835] = {.lex_state = 380, .external_lex_state = 6}, + [5836] = {.lex_state = 380, .external_lex_state = 2}, + [5837] = {.lex_state = 380, .external_lex_state = 2}, + [5838] = {.lex_state = 72, .external_lex_state = 2}, + [5839] = {.lex_state = 380, .external_lex_state = 5}, + [5840] = {.lex_state = 380, .external_lex_state = 2}, + [5841] = {.lex_state = 380, .external_lex_state = 6}, + [5842] = {.lex_state = 380, .external_lex_state = 6}, + [5843] = {.lex_state = 380, .external_lex_state = 5}, + [5844] = {.lex_state = 54, .external_lex_state = 5}, + [5845] = {.lex_state = 54, .external_lex_state = 5}, + [5846] = {.lex_state = 54, .external_lex_state = 2}, + [5847] = {.lex_state = 380, .external_lex_state = 5}, + [5848] = {.lex_state = 380, .external_lex_state = 8}, + [5849] = {.lex_state = 380, .external_lex_state = 5}, + [5850] = {.lex_state = 380, .external_lex_state = 5}, + [5851] = {.lex_state = 54, .external_lex_state = 2}, + [5852] = {.lex_state = 380, .external_lex_state = 5}, + [5853] = {.lex_state = 380, .external_lex_state = 5}, + [5854] = {.lex_state = 380, .external_lex_state = 5}, + [5855] = {.lex_state = 380, .external_lex_state = 5}, + [5856] = {.lex_state = 380, .external_lex_state = 5}, + [5857] = {.lex_state = 380, .external_lex_state = 2}, + [5858] = {.lex_state = 380, .external_lex_state = 5}, + [5859] = {.lex_state = 54, .external_lex_state = 2}, + [5860] = {.lex_state = 380, .external_lex_state = 5}, + [5861] = {.lex_state = 380, .external_lex_state = 5}, + [5862] = {.lex_state = 380, .external_lex_state = 2}, + [5863] = {.lex_state = 380, .external_lex_state = 5}, + [5864] = {.lex_state = 380, .external_lex_state = 5}, + [5865] = {.lex_state = 21, .external_lex_state = 5}, + [5866] = {.lex_state = 380, .external_lex_state = 5}, + [5867] = {.lex_state = 380, .external_lex_state = 8}, + [5868] = {.lex_state = 380, .external_lex_state = 5}, + [5869] = {.lex_state = 54, .external_lex_state = 2}, + [5870] = {.lex_state = 380, .external_lex_state = 5}, + [5871] = {.lex_state = 54, .external_lex_state = 2}, + [5872] = {.lex_state = 380, .external_lex_state = 5}, + [5873] = {.lex_state = 380, .external_lex_state = 5}, + [5874] = {.lex_state = 380, .external_lex_state = 5}, + [5875] = {.lex_state = 380, .external_lex_state = 5}, + [5876] = {.lex_state = 380, .external_lex_state = 2}, + [5877] = {.lex_state = 380, .external_lex_state = 5}, + [5878] = {.lex_state = 380, .external_lex_state = 5}, + [5879] = {.lex_state = 380, .external_lex_state = 5}, + [5880] = {.lex_state = 380, .external_lex_state = 5}, + [5881] = {.lex_state = 380, .external_lex_state = 8}, + [5882] = {.lex_state = 380, .external_lex_state = 5}, + [5883] = {.lex_state = 54, .external_lex_state = 2}, + [5884] = {.lex_state = 380, .external_lex_state = 5}, + [5885] = {.lex_state = 380, .external_lex_state = 5}, + [5886] = {.lex_state = 380, .external_lex_state = 5}, + [5887] = {.lex_state = 380, .external_lex_state = 5}, + [5888] = {.lex_state = 380, .external_lex_state = 5}, + [5889] = {.lex_state = 380, .external_lex_state = 5}, + [5890] = {.lex_state = 54, .external_lex_state = 2}, + [5891] = {.lex_state = 54, .external_lex_state = 2}, + [5892] = {.lex_state = 380, .external_lex_state = 5}, + [5893] = {.lex_state = 380, .external_lex_state = 5}, + [5894] = {.lex_state = 380, .external_lex_state = 5}, + [5895] = {.lex_state = 54, .external_lex_state = 5}, + [5896] = {.lex_state = 380, .external_lex_state = 5}, + [5897] = {.lex_state = 380, .external_lex_state = 5}, + [5898] = {.lex_state = 380, .external_lex_state = 5}, + [5899] = {.lex_state = 380, .external_lex_state = 5}, + [5900] = {.lex_state = 380, .external_lex_state = 5}, + [5901] = {.lex_state = 380, .external_lex_state = 5}, + [5902] = {.lex_state = 380, .external_lex_state = 5}, + [5903] = {.lex_state = 380, .external_lex_state = 5}, + [5904] = {.lex_state = 380, .external_lex_state = 5}, + [5905] = {.lex_state = 56, .external_lex_state = 2}, + [5906] = {.lex_state = 380, .external_lex_state = 5}, + [5907] = {.lex_state = 54, .external_lex_state = 2}, + [5908] = {.lex_state = 54, .external_lex_state = 5}, + [5909] = {.lex_state = 380, .external_lex_state = 5}, + [5910] = {.lex_state = 380, .external_lex_state = 2}, + [5911] = {.lex_state = 380, .external_lex_state = 6}, + [5912] = {.lex_state = 380, .external_lex_state = 5}, + [5913] = {.lex_state = 380, .external_lex_state = 5}, + [5914] = {.lex_state = 58, .external_lex_state = 2}, + [5915] = {.lex_state = 380, .external_lex_state = 6}, + [5916] = {.lex_state = 380, .external_lex_state = 5}, + [5917] = {.lex_state = 380, .external_lex_state = 5}, + [5918] = {.lex_state = 380, .external_lex_state = 5}, + [5919] = {.lex_state = 380, .external_lex_state = 2}, + [5920] = {.lex_state = 380, .external_lex_state = 5}, + [5921] = {.lex_state = 54, .external_lex_state = 2}, + [5922] = {.lex_state = 380, .external_lex_state = 5}, + [5923] = {.lex_state = 58, .external_lex_state = 2}, + [5924] = {.lex_state = 380, .external_lex_state = 2}, + [5925] = {.lex_state = 380, .external_lex_state = 5}, + [5926] = {.lex_state = 380, .external_lex_state = 6}, + [5927] = {.lex_state = 57, .external_lex_state = 2}, + [5928] = {.lex_state = 54, .external_lex_state = 5}, + [5929] = {.lex_state = 380, .external_lex_state = 6}, + [5930] = {.lex_state = 380, .external_lex_state = 5}, + [5931] = {.lex_state = 380, .external_lex_state = 5}, + [5932] = {.lex_state = 380, .external_lex_state = 2}, + [5933] = {.lex_state = 380, .external_lex_state = 5}, + [5934] = {.lex_state = 380, .external_lex_state = 5}, + [5935] = {.lex_state = 380, .external_lex_state = 6}, + [5936] = {.lex_state = 380, .external_lex_state = 5}, + [5937] = {.lex_state = 380, .external_lex_state = 6}, + [5938] = {.lex_state = 380, .external_lex_state = 6}, + [5939] = {.lex_state = 54, .external_lex_state = 2}, + [5940] = {.lex_state = 380, .external_lex_state = 5}, + [5941] = {.lex_state = 58, .external_lex_state = 2}, + [5942] = {.lex_state = 380, .external_lex_state = 5}, + [5943] = {.lex_state = 72, .external_lex_state = 2}, + [5944] = {.lex_state = 380, .external_lex_state = 5}, + [5945] = {.lex_state = 54, .external_lex_state = 2}, + [5946] = {.lex_state = 380, .external_lex_state = 6}, + [5947] = {.lex_state = 380, .external_lex_state = 5}, + [5948] = {.lex_state = 54, .external_lex_state = 2}, + [5949] = {.lex_state = 380, .external_lex_state = 5}, + [5950] = {.lex_state = 380, .external_lex_state = 6}, + [5951] = {.lex_state = 380, .external_lex_state = 2}, + [5952] = {.lex_state = 54, .external_lex_state = 2}, + [5953] = {.lex_state = 72, .external_lex_state = 2}, + [5954] = {.lex_state = 54, .external_lex_state = 2}, + [5955] = {.lex_state = 380, .external_lex_state = 5}, + [5956] = {.lex_state = 54, .external_lex_state = 2}, + [5957] = {.lex_state = 54, .external_lex_state = 2}, + [5958] = {.lex_state = 54, .external_lex_state = 2}, + [5959] = {.lex_state = 54, .external_lex_state = 2}, + [5960] = {.lex_state = 380, .external_lex_state = 5}, + [5961] = {.lex_state = 54, .external_lex_state = 2}, + [5962] = {.lex_state = 380, .external_lex_state = 5}, + [5963] = {.lex_state = 380, .external_lex_state = 8}, + [5964] = {.lex_state = 380, .external_lex_state = 5}, + [5965] = {.lex_state = 54, .external_lex_state = 2}, + [5966] = {.lex_state = 54, .external_lex_state = 2}, + [5967] = {.lex_state = 380, .external_lex_state = 5}, + [5968] = {.lex_state = 54, .external_lex_state = 2}, + [5969] = {.lex_state = 54, .external_lex_state = 2}, + [5970] = {.lex_state = 380, .external_lex_state = 5}, + [5971] = {.lex_state = 54, .external_lex_state = 2}, + [5972] = {.lex_state = 54, .external_lex_state = 2}, + [5973] = {.lex_state = 380, .external_lex_state = 2}, + [5974] = {.lex_state = 54, .external_lex_state = 2}, + [5975] = {.lex_state = 54, .external_lex_state = 2}, + [5976] = {.lex_state = 380, .external_lex_state = 5}, + [5977] = {.lex_state = 54, .external_lex_state = 2}, + [5978] = {.lex_state = 380, .external_lex_state = 5}, + [5979] = {.lex_state = 380, .external_lex_state = 5}, + [5980] = {.lex_state = 380, .external_lex_state = 5}, + [5981] = {.lex_state = 380, .external_lex_state = 2}, + [5982] = {.lex_state = 54, .external_lex_state = 2}, + [5983] = {.lex_state = 54, .external_lex_state = 2}, + [5984] = {.lex_state = 57, .external_lex_state = 5}, + [5985] = {.lex_state = 380, .external_lex_state = 5}, + [5986] = {.lex_state = 57, .external_lex_state = 5}, + [5987] = {.lex_state = 380, .external_lex_state = 5}, + [5988] = {.lex_state = 54, .external_lex_state = 2}, + [5989] = {.lex_state = 54, .external_lex_state = 2}, + [5990] = {.lex_state = 380, .external_lex_state = 2}, + [5991] = {.lex_state = 380, .external_lex_state = 2}, + [5992] = {.lex_state = 54, .external_lex_state = 2}, + [5993] = {.lex_state = 54, .external_lex_state = 2}, + [5994] = {.lex_state = 380, .external_lex_state = 5}, + [5995] = {.lex_state = 380, .external_lex_state = 8}, + [5996] = {.lex_state = 54, .external_lex_state = 2}, + [5997] = {.lex_state = 54, .external_lex_state = 2}, + [5998] = {.lex_state = 54, .external_lex_state = 2}, + [5999] = {.lex_state = 54, .external_lex_state = 2}, + [6000] = {.lex_state = 380, .external_lex_state = 5}, + [6001] = {.lex_state = 54, .external_lex_state = 2}, + [6002] = {.lex_state = 54, .external_lex_state = 2}, + [6003] = {.lex_state = 54, .external_lex_state = 5}, + [6004] = {.lex_state = 54, .external_lex_state = 2}, + [6005] = {.lex_state = 380, .external_lex_state = 5}, + [6006] = {.lex_state = 54, .external_lex_state = 2}, + [6007] = {.lex_state = 380, .external_lex_state = 6}, + [6008] = {.lex_state = 54, .external_lex_state = 2}, + [6009] = {.lex_state = 54, .external_lex_state = 2}, + [6010] = {.lex_state = 380, .external_lex_state = 5}, + [6011] = {.lex_state = 380, .external_lex_state = 5}, + [6012] = {.lex_state = 380, .external_lex_state = 5}, + [6013] = {.lex_state = 380, .external_lex_state = 5}, + [6014] = {.lex_state = 380, .external_lex_state = 6}, + [6015] = {.lex_state = 380, .external_lex_state = 5}, + [6016] = {.lex_state = 58, .external_lex_state = 2}, + [6017] = {.lex_state = 54, .external_lex_state = 5}, + [6018] = {.lex_state = 54, .external_lex_state = 2}, + [6019] = {.lex_state = 54, .external_lex_state = 2}, + [6020] = {.lex_state = 54, .external_lex_state = 2}, + [6021] = {.lex_state = 380, .external_lex_state = 5}, + [6022] = {.lex_state = 380, .external_lex_state = 5}, + [6023] = {.lex_state = 380, .external_lex_state = 5}, + [6024] = {.lex_state = 380, .external_lex_state = 2}, + [6025] = {.lex_state = 72, .external_lex_state = 2}, + [6026] = {.lex_state = 380, .external_lex_state = 5}, + [6027] = {.lex_state = 380, .external_lex_state = 5}, + [6028] = {.lex_state = 380, .external_lex_state = 6}, + [6029] = {.lex_state = 380, .external_lex_state = 5}, + [6030] = {.lex_state = 380, .external_lex_state = 5}, + [6031] = {.lex_state = 380, .external_lex_state = 5}, + [6032] = {.lex_state = 54, .external_lex_state = 2}, + [6033] = {.lex_state = 380, .external_lex_state = 2}, + [6034] = {.lex_state = 380, .external_lex_state = 2}, + [6035] = {.lex_state = 54, .external_lex_state = 2}, + [6036] = {.lex_state = 380, .external_lex_state = 5}, + [6037] = {.lex_state = 54, .external_lex_state = 2}, + [6038] = {.lex_state = 54, .external_lex_state = 2}, + [6039] = {.lex_state = 54, .external_lex_state = 2}, + [6040] = {.lex_state = 54, .external_lex_state = 2}, + [6041] = {.lex_state = 54, .external_lex_state = 2}, + [6042] = {.lex_state = 380, .external_lex_state = 5}, + [6043] = {.lex_state = 54, .external_lex_state = 2}, + [6044] = {.lex_state = 54, .external_lex_state = 2}, + [6045] = {.lex_state = 380, .external_lex_state = 5}, + [6046] = {.lex_state = 54, .external_lex_state = 2}, + [6047] = {.lex_state = 380, .external_lex_state = 2}, + [6048] = {.lex_state = 380, .external_lex_state = 5}, + [6049] = {.lex_state = 54, .external_lex_state = 2}, + [6050] = {.lex_state = 54, .external_lex_state = 2}, + [6051] = {.lex_state = 54, .external_lex_state = 2}, + [6052] = {.lex_state = 380, .external_lex_state = 5}, + [6053] = {.lex_state = 54, .external_lex_state = 2}, + [6054] = {.lex_state = 380, .external_lex_state = 5}, + [6055] = {.lex_state = 380, .external_lex_state = 2}, + [6056] = {.lex_state = 380, .external_lex_state = 2}, + [6057] = {.lex_state = 380, .external_lex_state = 2}, + [6058] = {.lex_state = 380, .external_lex_state = 5}, + [6059] = {.lex_state = 380, .external_lex_state = 5}, + [6060] = {.lex_state = 380, .external_lex_state = 5}, + [6061] = {.lex_state = 380, .external_lex_state = 6}, + [6062] = {.lex_state = 380, .external_lex_state = 5}, + [6063] = {.lex_state = 380, .external_lex_state = 5}, + [6064] = {.lex_state = 54, .external_lex_state = 5}, + [6065] = {.lex_state = 380, .external_lex_state = 5}, + [6066] = {.lex_state = 380, .external_lex_state = 5}, + [6067] = {.lex_state = 54, .external_lex_state = 2}, + [6068] = {.lex_state = 380, .external_lex_state = 5}, + [6069] = {.lex_state = 54, .external_lex_state = 2}, + [6070] = {.lex_state = 380, .external_lex_state = 5}, + [6071] = {.lex_state = 380, .external_lex_state = 5}, + [6072] = {.lex_state = 380, .external_lex_state = 5}, + [6073] = {.lex_state = 54, .external_lex_state = 2}, + [6074] = {.lex_state = 380, .external_lex_state = 5}, + [6075] = {.lex_state = 72, .external_lex_state = 2}, + [6076] = {.lex_state = 380, .external_lex_state = 5}, + [6077] = {.lex_state = 380, .external_lex_state = 5}, + [6078] = {.lex_state = 380, .external_lex_state = 5}, + [6079] = {.lex_state = 72, .external_lex_state = 2}, + [6080] = {.lex_state = 380, .external_lex_state = 5}, + [6081] = {.lex_state = 54, .external_lex_state = 2}, + [6082] = {.lex_state = 54, .external_lex_state = 2}, + [6083] = {.lex_state = 54, .external_lex_state = 2}, + [6084] = {.lex_state = 380, .external_lex_state = 5}, + [6085] = {.lex_state = 380, .external_lex_state = 5}, + [6086] = {.lex_state = 54, .external_lex_state = 2}, + [6087] = {.lex_state = 380, .external_lex_state = 5}, + [6088] = {.lex_state = 380, .external_lex_state = 5}, + [6089] = {.lex_state = 380, .external_lex_state = 5}, + [6090] = {.lex_state = 380, .external_lex_state = 5}, + [6091] = {.lex_state = 54, .external_lex_state = 2}, + [6092] = {.lex_state = 380, .external_lex_state = 5}, + [6093] = {.lex_state = 380, .external_lex_state = 5}, + [6094] = {.lex_state = 380, .external_lex_state = 5}, + [6095] = {.lex_state = 54, .external_lex_state = 2}, + [6096] = {.lex_state = 54, .external_lex_state = 2}, + [6097] = {.lex_state = 54, .external_lex_state = 2}, + [6098] = {.lex_state = 380, .external_lex_state = 5}, + [6099] = {.lex_state = 54, .external_lex_state = 5}, + [6100] = {.lex_state = 380, .external_lex_state = 5}, + [6101] = {.lex_state = 54, .external_lex_state = 2}, + [6102] = {.lex_state = 380, .external_lex_state = 5}, + [6103] = {.lex_state = 54, .external_lex_state = 2}, + [6104] = {.lex_state = 54, .external_lex_state = 2}, + [6105] = {.lex_state = 380, .external_lex_state = 2}, + [6106] = {.lex_state = 54, .external_lex_state = 2}, + [6107] = {.lex_state = 380, .external_lex_state = 5}, + [6108] = {.lex_state = 54, .external_lex_state = 2}, + [6109] = {.lex_state = 380, .external_lex_state = 5}, + [6110] = {.lex_state = 54, .external_lex_state = 2}, + [6111] = {.lex_state = 380, .external_lex_state = 5}, + [6112] = {.lex_state = 54, .external_lex_state = 2}, + [6113] = {.lex_state = 380, .external_lex_state = 5}, + [6114] = {.lex_state = 380, .external_lex_state = 5}, + [6115] = {.lex_state = 54, .external_lex_state = 2}, + [6116] = {.lex_state = 380, .external_lex_state = 5}, + [6117] = {.lex_state = 380, .external_lex_state = 5}, + [6118] = {.lex_state = 380, .external_lex_state = 5}, + [6119] = {.lex_state = 380, .external_lex_state = 5}, + [6120] = {.lex_state = 380, .external_lex_state = 2}, + [6121] = {.lex_state = 380, .external_lex_state = 5}, + [6122] = {.lex_state = 54, .external_lex_state = 2}, + [6123] = {.lex_state = 380, .external_lex_state = 5}, + [6124] = {.lex_state = 380, .external_lex_state = 2}, + [6125] = {.lex_state = 380, .external_lex_state = 5}, + [6126] = {.lex_state = 380, .external_lex_state = 5}, + [6127] = {.lex_state = 380, .external_lex_state = 5}, + [6128] = {.lex_state = 380, .external_lex_state = 5}, + [6129] = {.lex_state = 380, .external_lex_state = 5}, + [6130] = {.lex_state = 54, .external_lex_state = 5}, + [6131] = {.lex_state = 54, .external_lex_state = 2}, + [6132] = {.lex_state = 54, .external_lex_state = 2}, + [6133] = {.lex_state = 380, .external_lex_state = 5}, + [6134] = {.lex_state = 54, .external_lex_state = 2}, + [6135] = {.lex_state = 380, .external_lex_state = 5}, + [6136] = {.lex_state = 54, .external_lex_state = 2}, + [6137] = {.lex_state = 380, .external_lex_state = 5}, + [6138] = {.lex_state = 380, .external_lex_state = 5}, + [6139] = {.lex_state = 380, .external_lex_state = 5}, + [6140] = {.lex_state = 380, .external_lex_state = 5}, + [6141] = {.lex_state = 380, .external_lex_state = 5}, + [6142] = {.lex_state = 380, .external_lex_state = 5}, + [6143] = {.lex_state = 380, .external_lex_state = 5}, + [6144] = {.lex_state = 54, .external_lex_state = 2}, + [6145] = {.lex_state = 54, .external_lex_state = 2}, + [6146] = {.lex_state = 380, .external_lex_state = 5}, + [6147] = {.lex_state = 380, .external_lex_state = 5}, + [6148] = {.lex_state = 380, .external_lex_state = 5}, + [6149] = {.lex_state = 380, .external_lex_state = 5}, + [6150] = {.lex_state = 380, .external_lex_state = 5}, + [6151] = {.lex_state = 380, .external_lex_state = 5}, + [6152] = {.lex_state = 380, .external_lex_state = 5}, + [6153] = {.lex_state = 380, .external_lex_state = 5}, + [6154] = {.lex_state = 54, .external_lex_state = 5}, + [6155] = {.lex_state = 380, .external_lex_state = 6}, + [6156] = {.lex_state = 380, .external_lex_state = 5}, + [6157] = {.lex_state = 380, .external_lex_state = 5}, + [6158] = {.lex_state = 380, .external_lex_state = 2}, + [6159] = {.lex_state = 57, .external_lex_state = 2}, + [6160] = {.lex_state = 54, .external_lex_state = 2}, + [6161] = {.lex_state = 380, .external_lex_state = 2}, + [6162] = {.lex_state = 380, .external_lex_state = 5}, + [6163] = {.lex_state = 380, .external_lex_state = 5}, + [6164] = {.lex_state = 54, .external_lex_state = 2}, + [6165] = {.lex_state = 54, .external_lex_state = 2}, + [6166] = {.lex_state = 380, .external_lex_state = 2}, + [6167] = {.lex_state = 54, .external_lex_state = 2}, + [6168] = {.lex_state = 380, .external_lex_state = 5}, + [6169] = {.lex_state = 54, .external_lex_state = 2}, + [6170] = {.lex_state = 54, .external_lex_state = 2}, + [6171] = {.lex_state = 54, .external_lex_state = 2}, + [6172] = {.lex_state = 54, .external_lex_state = 2}, + [6173] = {.lex_state = 54, .external_lex_state = 2}, + [6174] = {.lex_state = 380, .external_lex_state = 2}, + [6175] = {.lex_state = 380, .external_lex_state = 8}, + [6176] = {.lex_state = 54, .external_lex_state = 2}, + [6177] = {.lex_state = 380, .external_lex_state = 5}, + [6178] = {.lex_state = 380, .external_lex_state = 5}, + [6179] = {.lex_state = 54, .external_lex_state = 2}, + [6180] = {.lex_state = 380, .external_lex_state = 6}, + [6181] = {.lex_state = 380, .external_lex_state = 5}, + [6182] = {.lex_state = 57, .external_lex_state = 2}, + [6183] = {.lex_state = 380, .external_lex_state = 5}, + [6184] = {.lex_state = 380, .external_lex_state = 5}, + [6185] = {.lex_state = 54, .external_lex_state = 5}, + [6186] = {.lex_state = 380, .external_lex_state = 5}, + [6187] = {.lex_state = 380, .external_lex_state = 6}, + [6188] = {.lex_state = 380, .external_lex_state = 5}, + [6189] = {.lex_state = 380, .external_lex_state = 5}, + [6190] = {.lex_state = 54, .external_lex_state = 2}, + [6191] = {.lex_state = 380, .external_lex_state = 2}, + [6192] = {.lex_state = 380, .external_lex_state = 5}, + [6193] = {.lex_state = 54, .external_lex_state = 2}, + [6194] = {.lex_state = 380, .external_lex_state = 2}, + [6195] = {.lex_state = 54, .external_lex_state = 2}, + [6196] = {.lex_state = 380, .external_lex_state = 5}, + [6197] = {.lex_state = 380, .external_lex_state = 5}, + [6198] = {.lex_state = 380, .external_lex_state = 5}, + [6199] = {.lex_state = 380, .external_lex_state = 5}, + [6200] = {.lex_state = 380, .external_lex_state = 5}, + [6201] = {.lex_state = 380, .external_lex_state = 5}, + [6202] = {.lex_state = 380, .external_lex_state = 5}, + [6203] = {.lex_state = 380, .external_lex_state = 5}, + [6204] = {.lex_state = 380, .external_lex_state = 5}, + [6205] = {.lex_state = 380, .external_lex_state = 5}, + [6206] = {.lex_state = 380, .external_lex_state = 5}, + [6207] = {.lex_state = 380, .external_lex_state = 5}, + [6208] = {.lex_state = 380, .external_lex_state = 5}, + [6209] = {.lex_state = 380, .external_lex_state = 5}, + [6210] = {.lex_state = 380, .external_lex_state = 5}, + [6211] = {.lex_state = 54, .external_lex_state = 2}, + [6212] = {.lex_state = 380, .external_lex_state = 5}, + [6213] = {.lex_state = 380, .external_lex_state = 5}, + [6214] = {.lex_state = 380, .external_lex_state = 5}, + [6215] = {.lex_state = 380, .external_lex_state = 5}, + [6216] = {.lex_state = 380, .external_lex_state = 5}, + [6217] = {.lex_state = 380, .external_lex_state = 5}, + [6218] = {.lex_state = 54, .external_lex_state = 2}, + [6219] = {.lex_state = 380, .external_lex_state = 5}, + [6220] = {.lex_state = 54, .external_lex_state = 2}, + [6221] = {.lex_state = 380, .external_lex_state = 5}, + [6222] = {.lex_state = 380, .external_lex_state = 5}, + [6223] = {.lex_state = 380, .external_lex_state = 5}, + [6224] = {.lex_state = 380, .external_lex_state = 2}, + [6225] = {.lex_state = 380, .external_lex_state = 5}, + [6226] = {.lex_state = 54, .external_lex_state = 2}, + [6227] = {.lex_state = 380, .external_lex_state = 5}, + [6228] = {.lex_state = 380, .external_lex_state = 5}, + [6229] = {.lex_state = 72, .external_lex_state = 2}, + [6230] = {.lex_state = 380, .external_lex_state = 5}, + [6231] = {.lex_state = 380, .external_lex_state = 6}, + [6232] = {.lex_state = 380, .external_lex_state = 6}, + [6233] = {.lex_state = 54, .external_lex_state = 2}, + [6234] = {.lex_state = 380, .external_lex_state = 5}, + [6235] = {.lex_state = 54, .external_lex_state = 2}, + [6236] = {.lex_state = 380, .external_lex_state = 5}, + [6237] = {.lex_state = 380, .external_lex_state = 5}, + [6238] = {.lex_state = 380, .external_lex_state = 5}, + [6239] = {.lex_state = 380, .external_lex_state = 5}, + [6240] = {.lex_state = 54, .external_lex_state = 2}, + [6241] = {.lex_state = 380, .external_lex_state = 5}, + [6242] = {.lex_state = 380, .external_lex_state = 5}, + [6243] = {.lex_state = 380, .external_lex_state = 5}, + [6244] = {.lex_state = 380, .external_lex_state = 5}, + [6245] = {.lex_state = 380, .external_lex_state = 5}, + [6246] = {.lex_state = 380, .external_lex_state = 5}, + [6247] = {.lex_state = 54, .external_lex_state = 2}, + [6248] = {.lex_state = 54, .external_lex_state = 2}, + [6249] = {.lex_state = 54, .external_lex_state = 2}, + [6250] = {.lex_state = 380, .external_lex_state = 5}, + [6251] = {.lex_state = 54, .external_lex_state = 2}, + [6252] = {.lex_state = 380, .external_lex_state = 5}, + [6253] = {.lex_state = 380, .external_lex_state = 5}, + [6254] = {.lex_state = 380, .external_lex_state = 5}, + [6255] = {.lex_state = 54, .external_lex_state = 2}, + [6256] = {.lex_state = 380, .external_lex_state = 2}, + [6257] = {.lex_state = 380, .external_lex_state = 5}, + [6258] = {.lex_state = 380, .external_lex_state = 5}, + [6259] = {.lex_state = 380, .external_lex_state = 5}, + [6260] = {.lex_state = 380, .external_lex_state = 5}, + [6261] = {.lex_state = 58, .external_lex_state = 2}, + [6262] = {.lex_state = 380, .external_lex_state = 5}, + [6263] = {.lex_state = 380, .external_lex_state = 8}, + [6264] = {.lex_state = 54, .external_lex_state = 2}, + [6265] = {.lex_state = 380, .external_lex_state = 5}, + [6266] = {.lex_state = 380, .external_lex_state = 5}, + [6267] = {.lex_state = 380, .external_lex_state = 5}, + [6268] = {.lex_state = 380, .external_lex_state = 5}, + [6269] = {.lex_state = 54, .external_lex_state = 2}, + [6270] = {.lex_state = 380, .external_lex_state = 5}, + [6271] = {.lex_state = 380, .external_lex_state = 5}, + [6272] = {.lex_state = 380, .external_lex_state = 5}, + [6273] = {.lex_state = 380, .external_lex_state = 5}, + [6274] = {.lex_state = 380, .external_lex_state = 5}, + [6275] = {.lex_state = 380, .external_lex_state = 5}, + [6276] = {.lex_state = 380, .external_lex_state = 5}, + [6277] = {.lex_state = 380, .external_lex_state = 5}, + [6278] = {.lex_state = 380, .external_lex_state = 5}, + [6279] = {.lex_state = 380, .external_lex_state = 5}, + [6280] = {.lex_state = 54, .external_lex_state = 2}, + [6281] = {.lex_state = 380, .external_lex_state = 5}, + [6282] = {.lex_state = 380, .external_lex_state = 5}, + [6283] = {.lex_state = 380, .external_lex_state = 5}, + [6284] = {.lex_state = 380, .external_lex_state = 5}, + [6285] = {.lex_state = 380, .external_lex_state = 5}, + [6286] = {.lex_state = 380, .external_lex_state = 8}, + [6287] = {.lex_state = 380, .external_lex_state = 5}, + [6288] = {.lex_state = 380, .external_lex_state = 5}, + [6289] = {.lex_state = 380, .external_lex_state = 6}, + [6290] = {.lex_state = 380, .external_lex_state = 5}, + [6291] = {.lex_state = 54, .external_lex_state = 2}, + [6292] = {.lex_state = 380, .external_lex_state = 5}, + [6293] = {.lex_state = 380, .external_lex_state = 5}, + [6294] = {.lex_state = 54, .external_lex_state = 5}, + [6295] = {.lex_state = 380, .external_lex_state = 5}, + [6296] = {.lex_state = 58, .external_lex_state = 2}, + [6297] = {.lex_state = 54, .external_lex_state = 2}, + [6298] = {.lex_state = 380, .external_lex_state = 5}, + [6299] = {.lex_state = 380, .external_lex_state = 5}, + [6300] = {.lex_state = 54, .external_lex_state = 2}, + [6301] = {.lex_state = 65, .external_lex_state = 9}, + [6302] = {.lex_state = 380, .external_lex_state = 5}, + [6303] = {.lex_state = 54, .external_lex_state = 2}, + [6304] = {.lex_state = 380, .external_lex_state = 5}, + [6305] = {.lex_state = 380, .external_lex_state = 2}, + [6306] = {.lex_state = 54, .external_lex_state = 2}, + [6307] = {.lex_state = 65, .external_lex_state = 9}, + [6308] = {.lex_state = 54, .external_lex_state = 2}, + [6309] = {.lex_state = 380, .external_lex_state = 5}, + [6310] = {.lex_state = 58, .external_lex_state = 2}, + [6311] = {.lex_state = 380, .external_lex_state = 5}, + [6312] = {.lex_state = 380, .external_lex_state = 5}, + [6313] = {.lex_state = 380, .external_lex_state = 5}, + [6314] = {.lex_state = 380, .external_lex_state = 5}, + [6315] = {.lex_state = 65, .external_lex_state = 9}, + [6316] = {.lex_state = 68, .external_lex_state = 9}, + [6317] = {.lex_state = 380, .external_lex_state = 5}, + [6318] = {.lex_state = 57, .external_lex_state = 2}, + [6319] = {.lex_state = 65, .external_lex_state = 9}, + [6320] = {.lex_state = 68, .external_lex_state = 9}, + [6321] = {.lex_state = 380, .external_lex_state = 5}, + [6322] = {.lex_state = 380, .external_lex_state = 5}, + [6323] = {.lex_state = 57, .external_lex_state = 2}, + [6324] = {.lex_state = 380, .external_lex_state = 2}, + [6325] = {.lex_state = 380, .external_lex_state = 5}, + [6326] = {.lex_state = 380, .external_lex_state = 5}, + [6327] = {.lex_state = 23, .external_lex_state = 2}, + [6328] = {.lex_state = 380, .external_lex_state = 5}, + [6329] = {.lex_state = 380, .external_lex_state = 5}, + [6330] = {.lex_state = 380, .external_lex_state = 5}, + [6331] = {.lex_state = 380, .external_lex_state = 2}, + [6332] = {.lex_state = 57, .external_lex_state = 2}, + [6333] = {.lex_state = 380, .external_lex_state = 5}, + [6334] = {.lex_state = 380, .external_lex_state = 5}, + [6335] = {.lex_state = 380, .external_lex_state = 5}, + [6336] = {.lex_state = 380, .external_lex_state = 5}, + [6337] = {.lex_state = 380, .external_lex_state = 5}, + [6338] = {.lex_state = 1, .external_lex_state = 2}, + [6339] = {.lex_state = 1, .external_lex_state = 2}, + [6340] = {.lex_state = 380, .external_lex_state = 7}, + [6341] = {.lex_state = 57, .external_lex_state = 2}, + [6342] = {.lex_state = 380, .external_lex_state = 5}, + [6343] = {.lex_state = 380, .external_lex_state = 5}, + [6344] = {.lex_state = 54, .external_lex_state = 2}, + [6345] = {.lex_state = 380, .external_lex_state = 7}, + [6346] = {.lex_state = 380, .external_lex_state = 5}, + [6347] = {.lex_state = 380, .external_lex_state = 5}, + [6348] = {.lex_state = 57, .external_lex_state = 2}, + [6349] = {.lex_state = 380, .external_lex_state = 5}, + [6350] = {.lex_state = 380, .external_lex_state = 2}, + [6351] = {.lex_state = 54, .external_lex_state = 2}, + [6352] = {.lex_state = 380, .external_lex_state = 5}, + [6353] = {.lex_state = 54, .external_lex_state = 2}, + [6354] = {.lex_state = 54, .external_lex_state = 2}, + [6355] = {.lex_state = 380, .external_lex_state = 5}, + [6356] = {.lex_state = 68, .external_lex_state = 9}, + [6357] = {.lex_state = 54, .external_lex_state = 2}, + [6358] = {.lex_state = 54, .external_lex_state = 2}, + [6359] = {.lex_state = 65, .external_lex_state = 9}, + [6360] = {.lex_state = 68, .external_lex_state = 9}, + [6361] = {.lex_state = 65, .external_lex_state = 9}, + [6362] = {.lex_state = 380, .external_lex_state = 2}, + [6363] = {.lex_state = 380, .external_lex_state = 5}, + [6364] = {.lex_state = 54, .external_lex_state = 2}, + [6365] = {.lex_state = 380, .external_lex_state = 2}, + [6366] = {.lex_state = 380, .external_lex_state = 5}, + [6367] = {.lex_state = 380, .external_lex_state = 5}, + [6368] = {.lex_state = 380, .external_lex_state = 5}, + [6369] = {.lex_state = 380, .external_lex_state = 5}, + [6370] = {.lex_state = 380, .external_lex_state = 5}, + [6371] = {.lex_state = 380, .external_lex_state = 5}, + [6372] = {.lex_state = 68, .external_lex_state = 9}, + [6373] = {.lex_state = 65, .external_lex_state = 9}, + [6374] = {.lex_state = 380, .external_lex_state = 5}, + [6375] = {.lex_state = 68, .external_lex_state = 9}, + [6376] = {.lex_state = 380, .external_lex_state = 5}, + [6377] = {.lex_state = 54, .external_lex_state = 2}, + [6378] = {.lex_state = 65, .external_lex_state = 9}, + [6379] = {.lex_state = 380, .external_lex_state = 5}, + [6380] = {.lex_state = 68, .external_lex_state = 9}, + [6381] = {.lex_state = 54, .external_lex_state = 2}, + [6382] = {.lex_state = 65, .external_lex_state = 9}, + [6383] = {.lex_state = 68, .external_lex_state = 9}, + [6384] = {.lex_state = 380, .external_lex_state = 5}, + [6385] = {.lex_state = 54, .external_lex_state = 2}, + [6386] = {.lex_state = 380, .external_lex_state = 5}, + [6387] = {.lex_state = 54, .external_lex_state = 2}, + [6388] = {.lex_state = 54, .external_lex_state = 2}, + [6389] = {.lex_state = 380, .external_lex_state = 5}, + [6390] = {.lex_state = 380, .external_lex_state = 5}, + [6391] = {.lex_state = 380, .external_lex_state = 5}, + [6392] = {.lex_state = 54, .external_lex_state = 2}, + [6393] = {.lex_state = 380, .external_lex_state = 5}, + [6394] = {.lex_state = 380, .external_lex_state = 5}, + [6395] = {.lex_state = 54, .external_lex_state = 2}, + [6396] = {.lex_state = 380, .external_lex_state = 5}, + [6397] = {.lex_state = 380, .external_lex_state = 5}, + [6398] = {.lex_state = 380, .external_lex_state = 5}, + [6399] = {.lex_state = 380, .external_lex_state = 5}, + [6400] = {.lex_state = 380, .external_lex_state = 5}, + [6401] = {.lex_state = 380, .external_lex_state = 5}, + [6402] = {.lex_state = 380, .external_lex_state = 5}, + [6403] = {.lex_state = 380, .external_lex_state = 5}, + [6404] = {.lex_state = 380, .external_lex_state = 5}, + [6405] = {.lex_state = 54, .external_lex_state = 2}, + [6406] = {.lex_state = 380, .external_lex_state = 5}, + [6407] = {.lex_state = 380, .external_lex_state = 2}, + [6408] = {.lex_state = 83, .external_lex_state = 2}, + [6409] = {.lex_state = 380, .external_lex_state = 5}, + [6410] = {.lex_state = 68, .external_lex_state = 9}, + [6411] = {.lex_state = 380, .external_lex_state = 2}, + [6412] = {.lex_state = 65, .external_lex_state = 9}, + [6413] = {.lex_state = 54, .external_lex_state = 2}, + [6414] = {.lex_state = 65, .external_lex_state = 9}, + [6415] = {.lex_state = 68, .external_lex_state = 9}, + [6416] = {.lex_state = 65, .external_lex_state = 9}, + [6417] = {.lex_state = 23, .external_lex_state = 2}, + [6418] = {.lex_state = 380, .external_lex_state = 5}, + [6419] = {.lex_state = 380, .external_lex_state = 5}, + [6420] = {.lex_state = 380, .external_lex_state = 5}, + [6421] = {.lex_state = 380, .external_lex_state = 5}, + [6422] = {.lex_state = 380, .external_lex_state = 5}, + [6423] = {.lex_state = 65, .external_lex_state = 9}, + [6424] = {.lex_state = 68, .external_lex_state = 9}, + [6425] = {.lex_state = 65, .external_lex_state = 9}, + [6426] = {.lex_state = 68, .external_lex_state = 9}, + [6427] = {.lex_state = 65, .external_lex_state = 9}, + [6428] = {.lex_state = 68, .external_lex_state = 9}, + [6429] = {.lex_state = 380, .external_lex_state = 5}, + [6430] = {.lex_state = 380, .external_lex_state = 5}, + [6431] = {.lex_state = 1, .external_lex_state = 2}, + [6432] = {.lex_state = 380, .external_lex_state = 5}, + [6433] = {.lex_state = 380, .external_lex_state = 5}, + [6434] = {.lex_state = 380, .external_lex_state = 7}, + [6435] = {.lex_state = 54, .external_lex_state = 2}, + [6436] = {.lex_state = 54, .external_lex_state = 2}, + [6437] = {.lex_state = 380, .external_lex_state = 5}, + [6438] = {.lex_state = 54, .external_lex_state = 2}, + [6439] = {.lex_state = 54, .external_lex_state = 2}, + [6440] = {.lex_state = 68, .external_lex_state = 9}, + [6441] = {.lex_state = 83, .external_lex_state = 2}, + [6442] = {.lex_state = 65, .external_lex_state = 9}, + [6443] = {.lex_state = 68, .external_lex_state = 9}, + [6444] = {.lex_state = 54, .external_lex_state = 2}, + [6445] = {.lex_state = 65, .external_lex_state = 9}, + [6446] = {.lex_state = 68, .external_lex_state = 9}, + [6447] = {.lex_state = 54, .external_lex_state = 2}, + [6448] = {.lex_state = 380, .external_lex_state = 2}, + [6449] = {.lex_state = 380, .external_lex_state = 5}, + [6450] = {.lex_state = 380, .external_lex_state = 5}, + [6451] = {.lex_state = 380, .external_lex_state = 5}, + [6452] = {.lex_state = 380, .external_lex_state = 5}, + [6453] = {.lex_state = 380, .external_lex_state = 5}, + [6454] = {.lex_state = 380, .external_lex_state = 5}, + [6455] = {.lex_state = 65, .external_lex_state = 9}, + [6456] = {.lex_state = 68, .external_lex_state = 9}, + [6457] = {.lex_state = 65, .external_lex_state = 9}, + [6458] = {.lex_state = 68, .external_lex_state = 9}, + [6459] = {.lex_state = 57, .external_lex_state = 2}, + [6460] = {.lex_state = 54, .external_lex_state = 2}, + [6461] = {.lex_state = 54, .external_lex_state = 2}, + [6462] = {.lex_state = 65, .external_lex_state = 9}, + [6463] = {.lex_state = 68, .external_lex_state = 9}, + [6464] = {.lex_state = 68, .external_lex_state = 9}, + [6465] = {.lex_state = 54, .external_lex_state = 2}, + [6466] = {.lex_state = 54, .external_lex_state = 2}, + [6467] = {.lex_state = 380, .external_lex_state = 5}, + [6468] = {.lex_state = 68, .external_lex_state = 9}, + [6469] = {.lex_state = 65, .external_lex_state = 9}, + [6470] = {.lex_state = 68, .external_lex_state = 9}, + [6471] = {.lex_state = 65, .external_lex_state = 9}, + [6472] = {.lex_state = 68, .external_lex_state = 9}, + [6473] = {.lex_state = 65, .external_lex_state = 9}, + [6474] = {.lex_state = 380, .external_lex_state = 7}, + [6475] = {.lex_state = 68, .external_lex_state = 9}, + [6476] = {.lex_state = 65, .external_lex_state = 9}, + [6477] = {.lex_state = 68, .external_lex_state = 9}, + [6478] = {.lex_state = 380, .external_lex_state = 5}, + [6479] = {.lex_state = 65, .external_lex_state = 9}, + [6480] = {.lex_state = 68, .external_lex_state = 9}, + [6481] = {.lex_state = 65, .external_lex_state = 9}, + [6482] = {.lex_state = 68, .external_lex_state = 9}, + [6483] = {.lex_state = 54, .external_lex_state = 2}, + [6484] = {.lex_state = 380, .external_lex_state = 5}, + [6485] = {.lex_state = 68, .external_lex_state = 9}, + [6486] = {.lex_state = 65, .external_lex_state = 9}, + [6487] = {.lex_state = 68, .external_lex_state = 9}, + [6488] = {.lex_state = 65, .external_lex_state = 9}, + [6489] = {.lex_state = 65, .external_lex_state = 9}, + [6490] = {.lex_state = 68, .external_lex_state = 9}, + [6491] = {.lex_state = 65, .external_lex_state = 9}, + [6492] = {.lex_state = 68, .external_lex_state = 9}, + [6493] = {.lex_state = 65, .external_lex_state = 9}, + [6494] = {.lex_state = 68, .external_lex_state = 9}, + [6495] = {.lex_state = 54, .external_lex_state = 2}, + [6496] = {.lex_state = 65, .external_lex_state = 9}, + [6497] = {.lex_state = 68, .external_lex_state = 9}, + [6498] = {.lex_state = 380, .external_lex_state = 2}, + [6499] = {.lex_state = 83, .external_lex_state = 2}, + [6500] = {.lex_state = 54, .external_lex_state = 2}, + [6501] = {.lex_state = 380, .external_lex_state = 2}, + [6502] = {.lex_state = 58, .external_lex_state = 2}, + [6503] = {.lex_state = 21, .external_lex_state = 2}, + [6504] = {.lex_state = 65, .external_lex_state = 9}, + [6505] = {.lex_state = 380, .external_lex_state = 5}, + [6506] = {.lex_state = 58, .external_lex_state = 2}, + [6507] = {.lex_state = 380, .external_lex_state = 2}, + [6508] = {.lex_state = 54, .external_lex_state = 2}, + [6509] = {.lex_state = 380, .external_lex_state = 5}, + [6510] = {.lex_state = 380, .external_lex_state = 2}, + [6511] = {.lex_state = 54, .external_lex_state = 2}, + [6512] = {.lex_state = 380, .external_lex_state = 5}, + [6513] = {.lex_state = 54, .external_lex_state = 2}, + [6514] = {.lex_state = 54, .external_lex_state = 2}, + [6515] = {.lex_state = 1, .external_lex_state = 2}, + [6516] = {.lex_state = 54, .external_lex_state = 2}, + [6517] = {.lex_state = 380, .external_lex_state = 5}, + [6518] = {.lex_state = 380, .external_lex_state = 2}, + [6519] = {.lex_state = 380, .external_lex_state = 5}, + [6520] = {.lex_state = 380, .external_lex_state = 2}, + [6521] = {.lex_state = 380, .external_lex_state = 5}, + [6522] = {.lex_state = 380, .external_lex_state = 5}, + [6523] = {.lex_state = 54, .external_lex_state = 2}, + [6524] = {.lex_state = 380, .external_lex_state = 5}, + [6525] = {.lex_state = 380, .external_lex_state = 5}, + [6526] = {.lex_state = 380, .external_lex_state = 5}, + [6527] = {.lex_state = 380, .external_lex_state = 5}, + [6528] = {.lex_state = 380, .external_lex_state = 5}, + [6529] = {.lex_state = 380, .external_lex_state = 5}, + [6530] = {.lex_state = 23, .external_lex_state = 2}, + [6531] = {.lex_state = 380, .external_lex_state = 5}, + [6532] = {.lex_state = 380, .external_lex_state = 5}, + [6533] = {.lex_state = 380, .external_lex_state = 2}, + [6534] = {.lex_state = 380, .external_lex_state = 2}, + [6535] = {.lex_state = 380, .external_lex_state = 5}, + [6536] = {.lex_state = 54, .external_lex_state = 2}, + [6537] = {.lex_state = 23, .external_lex_state = 2}, + [6538] = {.lex_state = 58, .external_lex_state = 2}, + [6539] = {.lex_state = 380, .external_lex_state = 2}, + [6540] = {.lex_state = 380, .external_lex_state = 5}, + [6541] = {.lex_state = 54, .external_lex_state = 2}, + [6542] = {.lex_state = 54, .external_lex_state = 2}, + [6543] = {.lex_state = 21, .external_lex_state = 5}, + [6544] = {.lex_state = 23, .external_lex_state = 2}, + [6545] = {.lex_state = 380, .external_lex_state = 5}, + [6546] = {.lex_state = 54, .external_lex_state = 2}, + [6547] = {.lex_state = 380, .external_lex_state = 5}, + [6548] = {.lex_state = 380, .external_lex_state = 5}, + [6549] = {.lex_state = 380, .external_lex_state = 5}, + [6550] = {.lex_state = 380, .external_lex_state = 2}, + [6551] = {.lex_state = 380, .external_lex_state = 5}, + [6552] = {.lex_state = 57, .external_lex_state = 2}, + [6553] = {.lex_state = 380, .external_lex_state = 2}, + [6554] = {.lex_state = 54, .external_lex_state = 2}, + [6555] = {.lex_state = 380, .external_lex_state = 5}, + [6556] = {.lex_state = 54, .external_lex_state = 2}, + [6557] = {.lex_state = 380, .external_lex_state = 2}, + [6558] = {.lex_state = 380, .external_lex_state = 6}, + [6559] = {.lex_state = 54, .external_lex_state = 2}, + [6560] = {.lex_state = 57, .external_lex_state = 2}, + [6561] = {.lex_state = 380, .external_lex_state = 2}, + [6562] = {.lex_state = 54, .external_lex_state = 2}, + [6563] = {.lex_state = 83, .external_lex_state = 2}, + [6564] = {.lex_state = 58, .external_lex_state = 2}, + [6565] = {.lex_state = 380, .external_lex_state = 5}, + [6566] = {.lex_state = 380, .external_lex_state = 2}, + [6567] = {.lex_state = 380, .external_lex_state = 2}, + [6568] = {.lex_state = 380, .external_lex_state = 5}, + [6569] = {.lex_state = 380, .external_lex_state = 5}, + [6570] = {.lex_state = 68, .external_lex_state = 9}, + [6571] = {.lex_state = 65, .external_lex_state = 9}, + [6572] = {.lex_state = 68, .external_lex_state = 9}, + [6573] = {.lex_state = 380, .external_lex_state = 5}, + [6574] = {.lex_state = 65, .external_lex_state = 9}, + [6575] = {.lex_state = 54, .external_lex_state = 2}, + [6576] = {.lex_state = 380, .external_lex_state = 2}, + [6577] = {.lex_state = 54, .external_lex_state = 2}, + [6578] = {.lex_state = 380, .external_lex_state = 2}, + [6579] = {.lex_state = 380, .external_lex_state = 2}, + [6580] = {.lex_state = 54, .external_lex_state = 2}, + [6581] = {.lex_state = 380, .external_lex_state = 5}, + [6582] = {.lex_state = 380, .external_lex_state = 5}, + [6583] = {.lex_state = 380, .external_lex_state = 5}, + [6584] = {.lex_state = 380, .external_lex_state = 5}, + [6585] = {.lex_state = 380, .external_lex_state = 5}, + [6586] = {.lex_state = 380, .external_lex_state = 5}, + [6587] = {.lex_state = 380, .external_lex_state = 2}, + [6588] = {.lex_state = 380, .external_lex_state = 5}, + [6589] = {.lex_state = 380, .external_lex_state = 5}, + [6590] = {.lex_state = 380, .external_lex_state = 5}, + [6591] = {.lex_state = 380, .external_lex_state = 5}, + [6592] = {.lex_state = 380, .external_lex_state = 5}, + [6593] = {.lex_state = 380, .external_lex_state = 2}, + [6594] = {.lex_state = 380, .external_lex_state = 5}, + [6595] = {.lex_state = 380, .external_lex_state = 5}, + [6596] = {.lex_state = 380, .external_lex_state = 8}, + [6597] = {.lex_state = 380, .external_lex_state = 2}, + [6598] = {.lex_state = 380, .external_lex_state = 2}, + [6599] = {.lex_state = 380, .external_lex_state = 2}, + [6600] = {.lex_state = 380, .external_lex_state = 5}, + [6601] = {.lex_state = 380, .external_lex_state = 5}, + [6602] = {.lex_state = 380, .external_lex_state = 5}, + [6603] = {.lex_state = 380, .external_lex_state = 2}, + [6604] = {.lex_state = 380, .external_lex_state = 5}, + [6605] = {.lex_state = 380, .external_lex_state = 5}, + [6606] = {.lex_state = 21, .external_lex_state = 2}, + [6607] = {.lex_state = 58, .external_lex_state = 2}, + [6608] = {.lex_state = 380, .external_lex_state = 5}, + [6609] = {.lex_state = 380, .external_lex_state = 5}, + [6610] = {.lex_state = 92, .external_lex_state = 2}, + [6611] = {.lex_state = 380, .external_lex_state = 2}, + [6612] = {.lex_state = 380, .external_lex_state = 5}, + [6613] = {.lex_state = 380, .external_lex_state = 5}, + [6614] = {.lex_state = 380, .external_lex_state = 5}, + [6615] = {.lex_state = 380, .external_lex_state = 2}, + [6616] = {.lex_state = 380, .external_lex_state = 5}, + [6617] = {.lex_state = 380, .external_lex_state = 5}, + [6618] = {.lex_state = 380, .external_lex_state = 5}, + [6619] = {.lex_state = 380, .external_lex_state = 5}, + [6620] = {.lex_state = 83, .external_lex_state = 2}, + [6621] = {.lex_state = 380, .external_lex_state = 2}, + [6622] = {.lex_state = 58, .external_lex_state = 5}, + [6623] = {.lex_state = 58, .external_lex_state = 5}, + [6624] = {.lex_state = 380, .external_lex_state = 2}, + [6625] = {.lex_state = 380, .external_lex_state = 5}, + [6626] = {.lex_state = 380, .external_lex_state = 5}, + [6627] = {.lex_state = 23, .external_lex_state = 2}, + [6628] = {.lex_state = 380, .external_lex_state = 5}, + [6629] = {.lex_state = 380, .external_lex_state = 2}, + [6630] = {.lex_state = 23, .external_lex_state = 2}, + [6631] = {.lex_state = 58, .external_lex_state = 2}, + [6632] = {.lex_state = 380, .external_lex_state = 5}, + [6633] = {.lex_state = 380, .external_lex_state = 5}, + [6634] = {.lex_state = 380, .external_lex_state = 5}, + [6635] = {.lex_state = 380, .external_lex_state = 5}, + [6636] = {.lex_state = 380, .external_lex_state = 5}, + [6637] = {.lex_state = 380, .external_lex_state = 5}, + [6638] = {.lex_state = 21, .external_lex_state = 2}, + [6639] = {.lex_state = 380, .external_lex_state = 5}, + [6640] = {.lex_state = 380, .external_lex_state = 2}, + [6641] = {.lex_state = 380, .external_lex_state = 5}, + [6642] = {.lex_state = 380, .external_lex_state = 2}, + [6643] = {.lex_state = 380, .external_lex_state = 5}, + [6644] = {.lex_state = 380, .external_lex_state = 5}, + [6645] = {.lex_state = 58, .external_lex_state = 2}, + [6646] = {.lex_state = 380, .external_lex_state = 5}, + [6647] = {.lex_state = 380, .external_lex_state = 5}, + [6648] = {.lex_state = 380, .external_lex_state = 5}, + [6649] = {.lex_state = 380, .external_lex_state = 2}, + [6650] = {.lex_state = 380, .external_lex_state = 5}, + [6651] = {.lex_state = 380, .external_lex_state = 5}, + [6652] = {.lex_state = 92, .external_lex_state = 2}, + [6653] = {.lex_state = 61, .external_lex_state = 2}, + [6654] = {.lex_state = 380, .external_lex_state = 2}, + [6655] = {.lex_state = 380, .external_lex_state = 5}, + [6656] = {.lex_state = 380, .external_lex_state = 5}, + [6657] = {.lex_state = 380, .external_lex_state = 5}, + [6658] = {.lex_state = 380, .external_lex_state = 2}, + [6659] = {.lex_state = 380, .external_lex_state = 2}, + [6660] = {.lex_state = 57, .external_lex_state = 2}, + [6661] = {.lex_state = 380, .external_lex_state = 5}, + [6662] = {.lex_state = 380, .external_lex_state = 5}, + [6663] = {.lex_state = 380, .external_lex_state = 2}, + [6664] = {.lex_state = 61, .external_lex_state = 2}, + [6665] = {.lex_state = 380, .external_lex_state = 2}, + [6666] = {.lex_state = 380, .external_lex_state = 5}, + [6667] = {.lex_state = 380, .external_lex_state = 5}, + [6668] = {.lex_state = 380, .external_lex_state = 5}, + [6669] = {.lex_state = 380, .external_lex_state = 5}, + [6670] = {.lex_state = 380, .external_lex_state = 5}, + [6671] = {.lex_state = 380, .external_lex_state = 2}, + [6672] = {.lex_state = 380, .external_lex_state = 2}, + [6673] = {.lex_state = 380, .external_lex_state = 5}, + [6674] = {.lex_state = 58, .external_lex_state = 2}, + [6675] = {.lex_state = 92, .external_lex_state = 2}, + [6676] = {.lex_state = 92, .external_lex_state = 2}, + [6677] = {.lex_state = 380, .external_lex_state = 5}, + [6678] = {.lex_state = 380, .external_lex_state = 2}, + [6679] = {.lex_state = 380, .external_lex_state = 2}, + [6680] = {.lex_state = 380, .external_lex_state = 2}, + [6681] = {.lex_state = 92, .external_lex_state = 2}, + [6682] = {.lex_state = 380, .external_lex_state = 5}, + [6683] = {.lex_state = 380, .external_lex_state = 2}, + [6684] = {.lex_state = 380, .external_lex_state = 5}, + [6685] = {.lex_state = 380, .external_lex_state = 2}, + [6686] = {.lex_state = 380, .external_lex_state = 5}, + [6687] = {.lex_state = 380, .external_lex_state = 5}, + [6688] = {.lex_state = 380, .external_lex_state = 2}, + [6689] = {.lex_state = 380, .external_lex_state = 2}, + [6690] = {.lex_state = 380, .external_lex_state = 5}, + [6691] = {.lex_state = 380, .external_lex_state = 5}, + [6692] = {.lex_state = 380, .external_lex_state = 5}, + [6693] = {.lex_state = 58, .external_lex_state = 2}, + [6694] = {.lex_state = 58, .external_lex_state = 2}, + [6695] = {.lex_state = 380, .external_lex_state = 2}, + [6696] = {.lex_state = 58, .external_lex_state = 2}, + [6697] = {.lex_state = 380, .external_lex_state = 5}, + [6698] = {.lex_state = 21, .external_lex_state = 2}, + [6699] = {.lex_state = 380, .external_lex_state = 5}, + [6700] = {.lex_state = 58, .external_lex_state = 2}, + [6701] = {.lex_state = 380, .external_lex_state = 5}, + [6702] = {.lex_state = 380, .external_lex_state = 2}, + [6703] = {.lex_state = 58, .external_lex_state = 2}, + [6704] = {.lex_state = 380, .external_lex_state = 5}, + [6705] = {.lex_state = 380, .external_lex_state = 2}, + [6706] = {.lex_state = 21, .external_lex_state = 2}, + [6707] = {.lex_state = 380, .external_lex_state = 5}, + [6708] = {.lex_state = 21, .external_lex_state = 2}, + [6709] = {.lex_state = 380, .external_lex_state = 5}, + [6710] = {.lex_state = 54, .external_lex_state = 2}, + [6711] = {.lex_state = 380, .external_lex_state = 5}, + [6712] = {.lex_state = 380, .external_lex_state = 5}, + [6713] = {.lex_state = 380, .external_lex_state = 5}, + [6714] = {.lex_state = 380, .external_lex_state = 5}, + [6715] = {.lex_state = 380, .external_lex_state = 2}, + [6716] = {.lex_state = 380, .external_lex_state = 2}, + [6717] = {.lex_state = 380, .external_lex_state = 2}, + [6718] = {.lex_state = 380, .external_lex_state = 2}, + [6719] = {.lex_state = 380, .external_lex_state = 5}, + [6720] = {.lex_state = 380, .external_lex_state = 5}, + [6721] = {.lex_state = 54, .external_lex_state = 2}, + [6722] = {.lex_state = 380, .external_lex_state = 5}, + [6723] = {.lex_state = 54, .external_lex_state = 2}, + [6724] = {.lex_state = 380, .external_lex_state = 5}, + [6725] = {.lex_state = 54, .external_lex_state = 2}, + [6726] = {.lex_state = 380, .external_lex_state = 5}, + [6727] = {.lex_state = 54, .external_lex_state = 2}, + [6728] = {.lex_state = 58, .external_lex_state = 2}, + [6729] = {.lex_state = 380, .external_lex_state = 2}, + [6730] = {.lex_state = 380, .external_lex_state = 5}, + [6731] = {.lex_state = 380, .external_lex_state = 2}, + [6732] = {.lex_state = 380, .external_lex_state = 2}, + [6733] = {.lex_state = 380, .external_lex_state = 5}, + [6734] = {.lex_state = 380, .external_lex_state = 2}, + [6735] = {.lex_state = 58, .external_lex_state = 2}, + [6736] = {.lex_state = 21, .external_lex_state = 2}, + [6737] = {.lex_state = 380, .external_lex_state = 5}, + [6738] = {.lex_state = 380, .external_lex_state = 5}, + [6739] = {.lex_state = 380, .external_lex_state = 5}, + [6740] = {.lex_state = 380, .external_lex_state = 2}, + [6741] = {.lex_state = 23, .external_lex_state = 2}, + [6742] = {.lex_state = 380, .external_lex_state = 2}, + [6743] = {.lex_state = 380, .external_lex_state = 2}, + [6744] = {.lex_state = 380, .external_lex_state = 5}, + [6745] = {.lex_state = 83, .external_lex_state = 2}, + [6746] = {.lex_state = 23, .external_lex_state = 2}, + [6747] = {.lex_state = 380, .external_lex_state = 5}, + [6748] = {.lex_state = 380, .external_lex_state = 5}, + [6749] = {.lex_state = 380, .external_lex_state = 5}, + [6750] = {.lex_state = 380, .external_lex_state = 2}, + [6751] = {.lex_state = 54, .external_lex_state = 2}, + [6752] = {.lex_state = 380, .external_lex_state = 2}, + [6753] = {.lex_state = 380, .external_lex_state = 5}, + [6754] = {.lex_state = 380, .external_lex_state = 5}, + [6755] = {.lex_state = 58, .external_lex_state = 2}, + [6756] = {.lex_state = 380, .external_lex_state = 5}, + [6757] = {.lex_state = 380, .external_lex_state = 5}, + [6758] = {.lex_state = 380, .external_lex_state = 2}, + [6759] = {.lex_state = 23, .external_lex_state = 2}, + [6760] = {.lex_state = 380, .external_lex_state = 5}, + [6761] = {.lex_state = 380, .external_lex_state = 5}, + [6762] = {.lex_state = 380, .external_lex_state = 2}, + [6763] = {.lex_state = 23, .external_lex_state = 2}, + [6764] = {.lex_state = 380, .external_lex_state = 5}, + [6765] = {.lex_state = 380, .external_lex_state = 5}, + [6766] = {.lex_state = 380, .external_lex_state = 2}, + [6767] = {.lex_state = 380, .external_lex_state = 5}, + [6768] = {.lex_state = 380, .external_lex_state = 5}, + [6769] = {.lex_state = 380, .external_lex_state = 5}, + [6770] = {.lex_state = 380, .external_lex_state = 5}, + [6771] = {.lex_state = 380, .external_lex_state = 5}, + [6772] = {.lex_state = 380, .external_lex_state = 5}, + [6773] = {.lex_state = 380, .external_lex_state = 5}, + [6774] = {.lex_state = 380, .external_lex_state = 5}, + [6775] = {.lex_state = 380, .external_lex_state = 5}, + [6776] = {.lex_state = 23, .external_lex_state = 2}, + [6777] = {.lex_state = 380, .external_lex_state = 2}, + [6778] = {.lex_state = 380, .external_lex_state = 5}, + [6779] = {.lex_state = 380, .external_lex_state = 2}, + [6780] = {.lex_state = 380, .external_lex_state = 2}, + [6781] = {.lex_state = 380, .external_lex_state = 5}, + [6782] = {.lex_state = 380, .external_lex_state = 5}, + [6783] = {.lex_state = 380, .external_lex_state = 5}, + [6784] = {.lex_state = 380, .external_lex_state = 2}, + [6785] = {.lex_state = 21, .external_lex_state = 2}, + [6786] = {.lex_state = 380, .external_lex_state = 2}, + [6787] = {.lex_state = 380, .external_lex_state = 2}, + [6788] = {.lex_state = 380, .external_lex_state = 5}, + [6789] = {.lex_state = 380, .external_lex_state = 5}, + [6790] = {.lex_state = 21, .external_lex_state = 2}, + [6791] = {.lex_state = 380, .external_lex_state = 5}, + [6792] = {.lex_state = 21, .external_lex_state = 5}, + [6793] = {.lex_state = 380, .external_lex_state = 5}, + [6794] = {.lex_state = 380, .external_lex_state = 2}, + [6795] = {.lex_state = 380, .external_lex_state = 5}, + [6796] = {.lex_state = 380, .external_lex_state = 2}, + [6797] = {.lex_state = 380, .external_lex_state = 2}, + [6798] = {.lex_state = 380, .external_lex_state = 5}, + [6799] = {.lex_state = 380, .external_lex_state = 2}, + [6800] = {.lex_state = 380, .external_lex_state = 5}, + [6801] = {.lex_state = 380, .external_lex_state = 5}, + [6802] = {.lex_state = 380, .external_lex_state = 5}, + [6803] = {.lex_state = 380, .external_lex_state = 5}, + [6804] = {.lex_state = 380, .external_lex_state = 5}, + [6805] = {.lex_state = 380, .external_lex_state = 5}, + [6806] = {.lex_state = 380, .external_lex_state = 5}, + [6807] = {.lex_state = 83, .external_lex_state = 2}, + [6808] = {.lex_state = 21, .external_lex_state = 5}, + [6809] = {.lex_state = 23, .external_lex_state = 2}, + [6810] = {.lex_state = 380, .external_lex_state = 5}, + [6811] = {.lex_state = 380, .external_lex_state = 2}, + [6812] = {.lex_state = 380, .external_lex_state = 5}, + [6813] = {.lex_state = 380, .external_lex_state = 5}, + [6814] = {.lex_state = 58, .external_lex_state = 2}, + [6815] = {.lex_state = 58, .external_lex_state = 2}, + [6816] = {.lex_state = 58, .external_lex_state = 2}, + [6817] = {.lex_state = 380, .external_lex_state = 2}, + [6818] = {.lex_state = 380, .external_lex_state = 5}, + [6819] = {.lex_state = 380, .external_lex_state = 2}, + [6820] = {.lex_state = 380, .external_lex_state = 5}, + [6821] = {.lex_state = 65, .external_lex_state = 9}, + [6822] = {.lex_state = 380, .external_lex_state = 5}, + [6823] = {.lex_state = 58, .external_lex_state = 2}, + [6824] = {.lex_state = 380, .external_lex_state = 5}, + [6825] = {.lex_state = 380, .external_lex_state = 5}, + [6826] = {.lex_state = 380, .external_lex_state = 5}, + [6827] = {.lex_state = 380, .external_lex_state = 5}, + [6828] = {.lex_state = 380, .external_lex_state = 5}, + [6829] = {.lex_state = 380, .external_lex_state = 2}, + [6830] = {.lex_state = 380, .external_lex_state = 5}, + [6831] = {.lex_state = 380, .external_lex_state = 2}, + [6832] = {.lex_state = 380, .external_lex_state = 2}, + [6833] = {.lex_state = 380, .external_lex_state = 2}, + [6834] = {.lex_state = 54, .external_lex_state = 2}, + [6835] = {.lex_state = 58, .external_lex_state = 5}, + [6836] = {.lex_state = 380, .external_lex_state = 2}, + [6837] = {.lex_state = 58, .external_lex_state = 5}, + [6838] = {.lex_state = 380, .external_lex_state = 5}, + [6839] = {.lex_state = 380, .external_lex_state = 5}, + [6840] = {.lex_state = 380, .external_lex_state = 2}, + [6841] = {.lex_state = 380, .external_lex_state = 5}, + [6842] = {.lex_state = 380, .external_lex_state = 2}, + [6843] = {.lex_state = 380, .external_lex_state = 5}, + [6844] = {.lex_state = 380, .external_lex_state = 5}, + [6845] = {.lex_state = 380, .external_lex_state = 2}, + [6846] = {.lex_state = 380, .external_lex_state = 2}, + [6847] = {.lex_state = 380, .external_lex_state = 5}, + [6848] = {.lex_state = 380, .external_lex_state = 5}, + [6849] = {.lex_state = 380, .external_lex_state = 5}, + [6850] = {.lex_state = 380, .external_lex_state = 5}, + [6851] = {.lex_state = 380, .external_lex_state = 5}, + [6852] = {.lex_state = 380, .external_lex_state = 5}, + [6853] = {.lex_state = 380, .external_lex_state = 2}, + [6854] = {.lex_state = 380, .external_lex_state = 5}, + [6855] = {.lex_state = 380, .external_lex_state = 2}, + [6856] = {.lex_state = 380, .external_lex_state = 5}, + [6857] = {.lex_state = 380, .external_lex_state = 2}, + [6858] = {.lex_state = 58, .external_lex_state = 2}, + [6859] = {.lex_state = 380, .external_lex_state = 5}, + [6860] = {.lex_state = 58, .external_lex_state = 2}, + [6861] = {.lex_state = 380, .external_lex_state = 5}, + [6862] = {.lex_state = 380, .external_lex_state = 5}, + [6863] = {.lex_state = 380, .external_lex_state = 5}, + [6864] = {.lex_state = 380, .external_lex_state = 5}, + [6865] = {.lex_state = 54, .external_lex_state = 2}, + [6866] = {.lex_state = 380, .external_lex_state = 5}, + [6867] = {.lex_state = 380, .external_lex_state = 5}, + [6868] = {.lex_state = 380, .external_lex_state = 5}, + [6869] = {.lex_state = 380, .external_lex_state = 5}, + [6870] = {.lex_state = 380, .external_lex_state = 5}, + [6871] = {.lex_state = 380, .external_lex_state = 5}, + [6872] = {.lex_state = 380, .external_lex_state = 5}, + [6873] = {.lex_state = 380, .external_lex_state = 5}, + [6874] = {.lex_state = 380, .external_lex_state = 2}, + [6875] = {.lex_state = 380, .external_lex_state = 5}, + [6876] = {.lex_state = 54, .external_lex_state = 2}, + [6877] = {.lex_state = 380, .external_lex_state = 5}, + [6878] = {.lex_state = 380, .external_lex_state = 5}, + [6879] = {.lex_state = 380, .external_lex_state = 5}, + [6880] = {.lex_state = 380, .external_lex_state = 5}, + [6881] = {.lex_state = 54, .external_lex_state = 2}, + [6882] = {.lex_state = 380, .external_lex_state = 5}, + [6883] = {.lex_state = 380, .external_lex_state = 5}, + [6884] = {.lex_state = 380, .external_lex_state = 5}, + [6885] = {.lex_state = 380, .external_lex_state = 2}, + [6886] = {.lex_state = 380, .external_lex_state = 2}, + [6887] = {.lex_state = 380, .external_lex_state = 5}, + [6888] = {.lex_state = 380, .external_lex_state = 2}, + [6889] = {.lex_state = 380, .external_lex_state = 5}, + [6890] = {.lex_state = 380, .external_lex_state = 5}, + [6891] = {.lex_state = 54, .external_lex_state = 2}, + [6892] = {.lex_state = 380, .external_lex_state = 5}, + [6893] = {.lex_state = 380, .external_lex_state = 5}, + [6894] = {.lex_state = 23, .external_lex_state = 2}, + [6895] = {.lex_state = 380, .external_lex_state = 5}, + [6896] = {.lex_state = 380, .external_lex_state = 5}, + [6897] = {.lex_state = 23, .external_lex_state = 2}, + [6898] = {.lex_state = 23, .external_lex_state = 2}, + [6899] = {.lex_state = 380, .external_lex_state = 5}, + [6900] = {.lex_state = 23, .external_lex_state = 2}, + [6901] = {.lex_state = 380, .external_lex_state = 5}, + [6902] = {.lex_state = 380, .external_lex_state = 5}, + [6903] = {.lex_state = 380, .external_lex_state = 5}, + [6904] = {.lex_state = 380, .external_lex_state = 5}, + [6905] = {.lex_state = 380, .external_lex_state = 2}, + [6906] = {.lex_state = 380, .external_lex_state = 5}, + [6907] = {.lex_state = 54, .external_lex_state = 2}, + [6908] = {.lex_state = 23, .external_lex_state = 2}, + [6909] = {.lex_state = 380, .external_lex_state = 2}, + [6910] = {.lex_state = 380, .external_lex_state = 5}, + [6911] = {.lex_state = 380, .external_lex_state = 2}, + [6912] = {.lex_state = 380, .external_lex_state = 5}, + [6913] = {.lex_state = 380, .external_lex_state = 5}, + [6914] = {.lex_state = 380, .external_lex_state = 5}, + [6915] = {.lex_state = 380, .external_lex_state = 5}, + [6916] = {.lex_state = 380, .external_lex_state = 2}, + [6917] = {.lex_state = 380, .external_lex_state = 2}, + [6918] = {.lex_state = 68, .external_lex_state = 9}, + [6919] = {.lex_state = 380, .external_lex_state = 2}, + [6920] = {.lex_state = 58, .external_lex_state = 5}, + [6921] = {.lex_state = 58, .external_lex_state = 5}, + [6922] = {.lex_state = 380, .external_lex_state = 5}, + [6923] = {.lex_state = 380, .external_lex_state = 2}, + [6924] = {.lex_state = 380, .external_lex_state = 2}, + [6925] = {.lex_state = 380, .external_lex_state = 2}, + [6926] = {.lex_state = 380, .external_lex_state = 5}, + [6927] = {.lex_state = 380, .external_lex_state = 5}, + [6928] = {.lex_state = 380, .external_lex_state = 5}, + [6929] = {.lex_state = 380, .external_lex_state = 5}, + [6930] = {.lex_state = 380, .external_lex_state = 5}, + [6931] = {.lex_state = 380, .external_lex_state = 5}, + [6932] = {.lex_state = 380, .external_lex_state = 5}, + [6933] = {.lex_state = 380, .external_lex_state = 2}, + [6934] = {.lex_state = 380, .external_lex_state = 2}, + [6935] = {.lex_state = 380, .external_lex_state = 5}, + [6936] = {.lex_state = 380, .external_lex_state = 5}, + [6937] = {.lex_state = 380, .external_lex_state = 5}, + [6938] = {.lex_state = 380, .external_lex_state = 5}, + [6939] = {.lex_state = 380, .external_lex_state = 5}, + [6940] = {.lex_state = 380, .external_lex_state = 5}, + [6941] = {.lex_state = 380, .external_lex_state = 5}, + [6942] = {.lex_state = 380, .external_lex_state = 2}, + [6943] = {.lex_state = 380, .external_lex_state = 5}, + [6944] = {.lex_state = 380, .external_lex_state = 5}, + [6945] = {.lex_state = 23, .external_lex_state = 2}, + [6946] = {.lex_state = 380, .external_lex_state = 2}, + [6947] = {.lex_state = 380, .external_lex_state = 5}, + [6948] = {.lex_state = 380, .external_lex_state = 5}, + [6949] = {.lex_state = 380, .external_lex_state = 5}, + [6950] = {.lex_state = 380, .external_lex_state = 5}, + [6951] = {.lex_state = 72, .external_lex_state = 2}, + [6952] = {.lex_state = 380, .external_lex_state = 2}, + [6953] = {.lex_state = 380, .external_lex_state = 5}, + [6954] = {.lex_state = 380, .external_lex_state = 2}, + [6955] = {.lex_state = 380, .external_lex_state = 5}, + [6956] = {.lex_state = 380, .external_lex_state = 2}, + [6957] = {.lex_state = 380, .external_lex_state = 5}, + [6958] = {.lex_state = 380, .external_lex_state = 2}, + [6959] = {.lex_state = 380, .external_lex_state = 2}, + [6960] = {.lex_state = 380, .external_lex_state = 5}, + [6961] = {.lex_state = 380, .external_lex_state = 5}, + [6962] = {.lex_state = 21, .external_lex_state = 2}, + [6963] = {.lex_state = 58, .external_lex_state = 2}, + [6964] = {.lex_state = 380, .external_lex_state = 5}, + [6965] = {.lex_state = 380, .external_lex_state = 5}, + [6966] = {.lex_state = 380, .external_lex_state = 5}, + [6967] = {.lex_state = 380, .external_lex_state = 5}, + [6968] = {.lex_state = 380, .external_lex_state = 5}, + [6969] = {.lex_state = 380, .external_lex_state = 5}, + [6970] = {.lex_state = 380, .external_lex_state = 5}, + [6971] = {.lex_state = 380, .external_lex_state = 5}, + [6972] = {.lex_state = 23, .external_lex_state = 2}, + [6973] = {.lex_state = 380, .external_lex_state = 5}, + [6974] = {.lex_state = 23, .external_lex_state = 2}, + [6975] = {.lex_state = 380, .external_lex_state = 2}, + [6976] = {.lex_state = 380, .external_lex_state = 2}, + [6977] = {.lex_state = 380, .external_lex_state = 2}, + [6978] = {.lex_state = 54, .external_lex_state = 2}, + [6979] = {.lex_state = 380, .external_lex_state = 2}, + [6980] = {.lex_state = 380, .external_lex_state = 2}, + [6981] = {.lex_state = 380, .external_lex_state = 2}, + [6982] = {.lex_state = 23, .external_lex_state = 2}, + [6983] = {.lex_state = 380, .external_lex_state = 5}, + [6984] = {.lex_state = 380, .external_lex_state = 5}, + [6985] = {.lex_state = 380, .external_lex_state = 5}, + [6986] = {.lex_state = 380, .external_lex_state = 5}, + [6987] = {.lex_state = 380, .external_lex_state = 5}, + [6988] = {.lex_state = 380, .external_lex_state = 5}, + [6989] = {.lex_state = 380, .external_lex_state = 5}, + [6990] = {.lex_state = 380, .external_lex_state = 5}, + [6991] = {.lex_state = 380, .external_lex_state = 2}, + [6992] = {.lex_state = 380, .external_lex_state = 2}, + [6993] = {.lex_state = 380, .external_lex_state = 5}, + [6994] = {.lex_state = 380, .external_lex_state = 5}, + [6995] = {.lex_state = 380, .external_lex_state = 5}, + [6996] = {.lex_state = 380, .external_lex_state = 2}, + [6997] = {.lex_state = 54, .external_lex_state = 2}, + [6998] = {.lex_state = 380, .external_lex_state = 5}, + [6999] = {.lex_state = 380, .external_lex_state = 5}, + [7000] = {.lex_state = 380, .external_lex_state = 5}, + [7001] = {.lex_state = 380, .external_lex_state = 5}, + [7002] = {.lex_state = 380, .external_lex_state = 5}, + [7003] = {.lex_state = 380, .external_lex_state = 2}, + [7004] = {.lex_state = 380, .external_lex_state = 2}, + [7005] = {.lex_state = 380, .external_lex_state = 5}, + [7006] = {.lex_state = 1, .external_lex_state = 2}, + [7007] = {.lex_state = 54, .external_lex_state = 2}, + [7008] = {.lex_state = 380, .external_lex_state = 5}, + [7009] = {.lex_state = 54, .external_lex_state = 2}, + [7010] = {.lex_state = 380, .external_lex_state = 2}, + [7011] = {.lex_state = 54, .external_lex_state = 2}, + [7012] = {.lex_state = 380, .external_lex_state = 5}, + [7013] = {.lex_state = 54, .external_lex_state = 2}, + [7014] = {.lex_state = 380, .external_lex_state = 2}, + [7015] = {.lex_state = 380, .external_lex_state = 5}, + [7016] = {.lex_state = 380, .external_lex_state = 5}, + [7017] = {.lex_state = 380, .external_lex_state = 2}, + [7018] = {.lex_state = 380, .external_lex_state = 2}, + [7019] = {.lex_state = 380, .external_lex_state = 5}, + [7020] = {.lex_state = 380, .external_lex_state = 5}, + [7021] = {.lex_state = 23, .external_lex_state = 2}, + [7022] = {.lex_state = 23, .external_lex_state = 2}, + [7023] = {.lex_state = 92, .external_lex_state = 2}, + [7024] = {.lex_state = 380, .external_lex_state = 5}, + [7025] = {.lex_state = 380, .external_lex_state = 5}, + [7026] = {.lex_state = 380, .external_lex_state = 2}, + [7027] = {.lex_state = 380, .external_lex_state = 5}, + [7028] = {.lex_state = 380, .external_lex_state = 5}, + [7029] = {.lex_state = 380, .external_lex_state = 5}, + [7030] = {.lex_state = 380, .external_lex_state = 2}, + [7031] = {.lex_state = 380, .external_lex_state = 5}, + [7032] = {.lex_state = 380, .external_lex_state = 5}, + [7033] = {.lex_state = 380, .external_lex_state = 2}, + [7034] = {.lex_state = 380, .external_lex_state = 2}, + [7035] = {.lex_state = 380, .external_lex_state = 2}, + [7036] = {.lex_state = 380, .external_lex_state = 5}, + [7037] = {.lex_state = 380, .external_lex_state = 2}, + [7038] = {.lex_state = 23, .external_lex_state = 2}, + [7039] = {.lex_state = 380, .external_lex_state = 5}, + [7040] = {.lex_state = 380, .external_lex_state = 5}, + [7041] = {.lex_state = 380, .external_lex_state = 5}, + [7042] = {.lex_state = 380, .external_lex_state = 5}, + [7043] = {.lex_state = 380, .external_lex_state = 2}, + [7044] = {.lex_state = 380, .external_lex_state = 2}, + [7045] = {.lex_state = 23, .external_lex_state = 2}, + [7046] = {.lex_state = 380, .external_lex_state = 5}, + [7047] = {.lex_state = 380, .external_lex_state = 5}, + [7048] = {.lex_state = 380, .external_lex_state = 5}, + [7049] = {.lex_state = 380, .external_lex_state = 2}, + [7050] = {.lex_state = 380, .external_lex_state = 2}, + [7051] = {.lex_state = 23, .external_lex_state = 2}, + [7052] = {.lex_state = 380, .external_lex_state = 5}, + [7053] = {.lex_state = 380, .external_lex_state = 5}, + [7054] = {.lex_state = 380, .external_lex_state = 5}, + [7055] = {.lex_state = 58, .external_lex_state = 2}, + [7056] = {.lex_state = 380, .external_lex_state = 5}, + [7057] = {.lex_state = 58, .external_lex_state = 2}, + [7058] = {.lex_state = 54, .external_lex_state = 2}, + [7059] = {.lex_state = 58, .external_lex_state = 2}, + [7060] = {.lex_state = 380, .external_lex_state = 5}, + [7061] = {.lex_state = 58, .external_lex_state = 2}, + [7062] = {.lex_state = 380, .external_lex_state = 2}, + [7063] = {.lex_state = 54, .external_lex_state = 2}, + [7064] = {.lex_state = 380, .external_lex_state = 5}, + [7065] = {.lex_state = 23, .external_lex_state = 2}, + [7066] = {.lex_state = 380, .external_lex_state = 5}, + [7067] = {.lex_state = 380, .external_lex_state = 5}, + [7068] = {.lex_state = 380, .external_lex_state = 5}, + [7069] = {.lex_state = 380, .external_lex_state = 5}, + [7070] = {.lex_state = 380, .external_lex_state = 2}, + [7071] = {.lex_state = 380, .external_lex_state = 5}, + [7072] = {.lex_state = 54, .external_lex_state = 2}, + [7073] = {.lex_state = 380, .external_lex_state = 5}, + [7074] = {.lex_state = 23, .external_lex_state = 2}, + [7075] = {.lex_state = 58, .external_lex_state = 2}, + [7076] = {.lex_state = 380, .external_lex_state = 2}, + [7077] = {.lex_state = 380, .external_lex_state = 2}, + [7078] = {.lex_state = 380, .external_lex_state = 5}, + [7079] = {.lex_state = 54, .external_lex_state = 2}, + [7080] = {.lex_state = 54, .external_lex_state = 2}, + [7081] = {.lex_state = 380, .external_lex_state = 2}, + [7082] = {.lex_state = 380, .external_lex_state = 5}, + [7083] = {.lex_state = 72, .external_lex_state = 2}, + [7084] = {.lex_state = 380, .external_lex_state = 5}, + [7085] = {.lex_state = 380, .external_lex_state = 5}, + [7086] = {.lex_state = 58, .external_lex_state = 2}, + [7087] = {.lex_state = 380, .external_lex_state = 5}, + [7088] = {.lex_state = 54, .external_lex_state = 2}, + [7089] = {.lex_state = 380, .external_lex_state = 5}, + [7090] = {.lex_state = 380, .external_lex_state = 5}, + [7091] = {.lex_state = 380, .external_lex_state = 5}, + [7092] = {.lex_state = 380, .external_lex_state = 5}, + [7093] = {.lex_state = 380, .external_lex_state = 5}, + [7094] = {.lex_state = 380, .external_lex_state = 2}, + [7095] = {.lex_state = 380, .external_lex_state = 5}, + [7096] = {.lex_state = 380, .external_lex_state = 5}, + [7097] = {.lex_state = 21, .external_lex_state = 5}, + [7098] = {.lex_state = 380, .external_lex_state = 5}, + [7099] = {.lex_state = 23, .external_lex_state = 2}, + [7100] = {.lex_state = 380, .external_lex_state = 2}, + [7101] = {.lex_state = 380, .external_lex_state = 2}, + [7102] = {.lex_state = 380, .external_lex_state = 5}, + [7103] = {.lex_state = 380, .external_lex_state = 5}, + [7104] = {.lex_state = 380, .external_lex_state = 5}, + [7105] = {.lex_state = 380, .external_lex_state = 5}, + [7106] = {.lex_state = 380, .external_lex_state = 5}, + [7107] = {.lex_state = 380, .external_lex_state = 2}, + [7108] = {.lex_state = 380, .external_lex_state = 5}, + [7109] = {.lex_state = 92, .external_lex_state = 2}, + [7110] = {.lex_state = 380, .external_lex_state = 5}, + [7111] = {.lex_state = 380, .external_lex_state = 5}, + [7112] = {.lex_state = 380, .external_lex_state = 5}, + [7113] = {.lex_state = 380, .external_lex_state = 5}, + [7114] = {.lex_state = 380, .external_lex_state = 5}, + [7115] = {.lex_state = 380, .external_lex_state = 5}, + [7116] = {.lex_state = 380, .external_lex_state = 5}, + [7117] = {.lex_state = 380, .external_lex_state = 5}, + [7118] = {.lex_state = 380, .external_lex_state = 5}, + [7119] = {.lex_state = 380, .external_lex_state = 5}, + [7120] = {.lex_state = 380, .external_lex_state = 5}, + [7121] = {.lex_state = 54, .external_lex_state = 2}, + [7122] = {.lex_state = 380, .external_lex_state = 2}, + [7123] = {.lex_state = 380, .external_lex_state = 2}, + [7124] = {.lex_state = 380, .external_lex_state = 2}, + [7125] = {.lex_state = 58, .external_lex_state = 5}, + [7126] = {.lex_state = 380, .external_lex_state = 5}, + [7127] = {.lex_state = 380, .external_lex_state = 5}, + [7128] = {.lex_state = 380, .external_lex_state = 5}, + [7129] = {.lex_state = 380, .external_lex_state = 5}, + [7130] = {.lex_state = 380, .external_lex_state = 2}, + [7131] = {.lex_state = 380, .external_lex_state = 5}, + [7132] = {.lex_state = 380, .external_lex_state = 2}, + [7133] = {.lex_state = 380, .external_lex_state = 2}, + [7134] = {.lex_state = 380, .external_lex_state = 5}, + [7135] = {.lex_state = 380, .external_lex_state = 5}, + [7136] = {.lex_state = 380, .external_lex_state = 2}, + [7137] = {.lex_state = 380, .external_lex_state = 8}, + [7138] = {.lex_state = 54, .external_lex_state = 2}, + [7139] = {.lex_state = 380, .external_lex_state = 2}, + [7140] = {.lex_state = 380, .external_lex_state = 5}, + [7141] = {.lex_state = 380, .external_lex_state = 2}, + [7142] = {.lex_state = 380, .external_lex_state = 5}, + [7143] = {.lex_state = 380, .external_lex_state = 5}, + [7144] = {.lex_state = 380, .external_lex_state = 5}, + [7145] = {.lex_state = 380, .external_lex_state = 5}, + [7146] = {.lex_state = 380, .external_lex_state = 5}, + [7147] = {.lex_state = 380, .external_lex_state = 2}, + [7148] = {.lex_state = 54, .external_lex_state = 2}, + [7149] = {.lex_state = 380, .external_lex_state = 5}, + [7150] = {.lex_state = 23, .external_lex_state = 2}, + [7151] = {.lex_state = 380, .external_lex_state = 2}, + [7152] = {.lex_state = 380, .external_lex_state = 2}, + [7153] = {.lex_state = 380, .external_lex_state = 2}, + [7154] = {.lex_state = 380, .external_lex_state = 5}, + [7155] = {.lex_state = 380, .external_lex_state = 5}, + [7156] = {.lex_state = 380, .external_lex_state = 5}, + [7157] = {.lex_state = 380, .external_lex_state = 2}, + [7158] = {.lex_state = 58, .external_lex_state = 5}, + [7159] = {.lex_state = 380, .external_lex_state = 2}, + [7160] = {.lex_state = 380, .external_lex_state = 5}, + [7161] = {.lex_state = 54, .external_lex_state = 2}, + [7162] = {.lex_state = 380, .external_lex_state = 2}, + [7163] = {.lex_state = 380, .external_lex_state = 2}, + [7164] = {.lex_state = 380, .external_lex_state = 5}, + [7165] = {.lex_state = 380, .external_lex_state = 5}, + [7166] = {.lex_state = 380, .external_lex_state = 5}, + [7167] = {.lex_state = 380, .external_lex_state = 5}, + [7168] = {.lex_state = 380, .external_lex_state = 5}, + [7169] = {.lex_state = 380, .external_lex_state = 5}, + [7170] = {.lex_state = 380, .external_lex_state = 2}, + [7171] = {.lex_state = 380, .external_lex_state = 5}, + [7172] = {.lex_state = 23, .external_lex_state = 2}, + [7173] = {.lex_state = 380, .external_lex_state = 5}, + [7174] = {.lex_state = 58, .external_lex_state = 2}, + [7175] = {.lex_state = 54, .external_lex_state = 2}, + [7176] = {.lex_state = 380, .external_lex_state = 2}, + [7177] = {.lex_state = 380, .external_lex_state = 5}, + [7178] = {.lex_state = 54, .external_lex_state = 2}, + [7179] = {.lex_state = 380, .external_lex_state = 5}, + [7180] = {.lex_state = 380, .external_lex_state = 5}, + [7181] = {.lex_state = 380, .external_lex_state = 5}, + [7182] = {.lex_state = 380, .external_lex_state = 2}, + [7183] = {.lex_state = 380, .external_lex_state = 5}, + [7184] = {.lex_state = 380, .external_lex_state = 5}, + [7185] = {.lex_state = 380, .external_lex_state = 2}, + [7186] = {.lex_state = 380, .external_lex_state = 2}, + [7187] = {.lex_state = 380, .external_lex_state = 2}, + [7188] = {.lex_state = 57, .external_lex_state = 2}, + [7189] = {.lex_state = 380, .external_lex_state = 5}, + [7190] = {.lex_state = 380, .external_lex_state = 2}, + [7191] = {.lex_state = 380, .external_lex_state = 5}, + [7192] = {.lex_state = 380, .external_lex_state = 5}, + [7193] = {.lex_state = 380, .external_lex_state = 5}, + [7194] = {.lex_state = 54, .external_lex_state = 2}, + [7195] = {.lex_state = 380, .external_lex_state = 5}, + [7196] = {.lex_state = 54, .external_lex_state = 2}, + [7197] = {.lex_state = 380, .external_lex_state = 5}, + [7198] = {.lex_state = 54, .external_lex_state = 2}, + [7199] = {.lex_state = 380, .external_lex_state = 5}, + [7200] = {.lex_state = 380, .external_lex_state = 5}, + [7201] = {.lex_state = 380, .external_lex_state = 2}, + [7202] = {.lex_state = 380, .external_lex_state = 5}, + [7203] = {.lex_state = 380, .external_lex_state = 5}, + [7204] = {.lex_state = 380, .external_lex_state = 5}, + [7205] = {.lex_state = 380, .external_lex_state = 5}, + [7206] = {.lex_state = 58, .external_lex_state = 2}, + [7207] = {.lex_state = 380, .external_lex_state = 2}, + [7208] = {.lex_state = 380, .external_lex_state = 2}, + [7209] = {.lex_state = 380, .external_lex_state = 5}, + [7210] = {.lex_state = 58, .external_lex_state = 5}, + [7211] = {.lex_state = 58, .external_lex_state = 5}, + [7212] = {.lex_state = 380, .external_lex_state = 5}, + [7213] = {.lex_state = 380, .external_lex_state = 2}, + [7214] = {.lex_state = 61, .external_lex_state = 2}, + [7215] = {.lex_state = 54, .external_lex_state = 2}, + [7216] = {.lex_state = 380, .external_lex_state = 5}, + [7217] = {.lex_state = 380, .external_lex_state = 5}, + [7218] = {.lex_state = 380, .external_lex_state = 5}, + [7219] = {.lex_state = 380, .external_lex_state = 5}, + [7220] = {.lex_state = 72, .external_lex_state = 2}, + [7221] = {.lex_state = 380, .external_lex_state = 5}, + [7222] = {.lex_state = 380, .external_lex_state = 5}, + [7223] = {.lex_state = 380, .external_lex_state = 5}, + [7224] = {.lex_state = 380, .external_lex_state = 5}, + [7225] = {.lex_state = 380, .external_lex_state = 5}, + [7226] = {.lex_state = 380, .external_lex_state = 2}, + [7227] = {.lex_state = 380, .external_lex_state = 5}, + [7228] = {.lex_state = 54, .external_lex_state = 2}, + [7229] = {.lex_state = 380, .external_lex_state = 5}, + [7230] = {.lex_state = 380, .external_lex_state = 2}, + [7231] = {.lex_state = 380, .external_lex_state = 2}, + [7232] = {.lex_state = 380, .external_lex_state = 5}, + [7233] = {.lex_state = 380, .external_lex_state = 2}, + [7234] = {.lex_state = 380, .external_lex_state = 5}, + [7235] = {.lex_state = 380, .external_lex_state = 5}, + [7236] = {.lex_state = 380, .external_lex_state = 5}, + [7237] = {.lex_state = 380, .external_lex_state = 5}, + [7238] = {.lex_state = 380, .external_lex_state = 5}, + [7239] = {.lex_state = 380, .external_lex_state = 5}, + [7240] = {.lex_state = 380, .external_lex_state = 5}, + [7241] = {.lex_state = 380, .external_lex_state = 2}, + [7242] = {.lex_state = 380, .external_lex_state = 5}, + [7243] = {.lex_state = 380, .external_lex_state = 5}, + [7244] = {.lex_state = 380, .external_lex_state = 5}, + [7245] = {.lex_state = 380, .external_lex_state = 5}, + [7246] = {.lex_state = 380, .external_lex_state = 5}, + [7247] = {.lex_state = 380, .external_lex_state = 5}, + [7248] = {.lex_state = 58, .external_lex_state = 2}, + [7249] = {.lex_state = 54, .external_lex_state = 2}, + [7250] = {.lex_state = 61, .external_lex_state = 2}, + [7251] = {.lex_state = 380, .external_lex_state = 5}, + [7252] = {.lex_state = 21, .external_lex_state = 2}, + [7253] = {.lex_state = 380, .external_lex_state = 2}, + [7254] = {.lex_state = 380, .external_lex_state = 5}, + [7255] = {.lex_state = 380, .external_lex_state = 5}, + [7256] = {.lex_state = 380, .external_lex_state = 5}, + [7257] = {.lex_state = 380, .external_lex_state = 5}, + [7258] = {.lex_state = 380, .external_lex_state = 5}, + [7259] = {.lex_state = 380, .external_lex_state = 5}, + [7260] = {.lex_state = 380, .external_lex_state = 5}, + [7261] = {.lex_state = 380, .external_lex_state = 5}, + [7262] = {.lex_state = 380, .external_lex_state = 5}, + [7263] = {.lex_state = 380, .external_lex_state = 5}, + [7264] = {.lex_state = 380, .external_lex_state = 5}, + [7265] = {.lex_state = 54, .external_lex_state = 2}, + [7266] = {.lex_state = 380, .external_lex_state = 2}, + [7267] = {.lex_state = 380, .external_lex_state = 2}, + [7268] = {.lex_state = 380, .external_lex_state = 5}, + [7269] = {.lex_state = 380, .external_lex_state = 2}, + [7270] = {.lex_state = 57, .external_lex_state = 2}, + [7271] = {.lex_state = 54, .external_lex_state = 2}, + [7272] = {.lex_state = 380, .external_lex_state = 2}, + [7273] = {.lex_state = 58, .external_lex_state = 5}, + [7274] = {.lex_state = 380, .external_lex_state = 2}, + [7275] = {.lex_state = 58, .external_lex_state = 5}, + [7276] = {.lex_state = 380, .external_lex_state = 5}, + [7277] = {.lex_state = 380, .external_lex_state = 2}, + [7278] = {.lex_state = 380, .external_lex_state = 2}, + [7279] = {.lex_state = 380, .external_lex_state = 5}, + [7280] = {.lex_state = 380, .external_lex_state = 5}, + [7281] = {.lex_state = 380, .external_lex_state = 5}, + [7282] = {.lex_state = 380, .external_lex_state = 2}, + [7283] = {.lex_state = 380, .external_lex_state = 5}, + [7284] = {.lex_state = 54, .external_lex_state = 2}, + [7285] = {.lex_state = 380, .external_lex_state = 5}, + [7286] = {.lex_state = 54, .external_lex_state = 2}, + [7287] = {.lex_state = 380, .external_lex_state = 5}, + [7288] = {.lex_state = 54, .external_lex_state = 2}, + [7289] = {.lex_state = 380, .external_lex_state = 5}, + [7290] = {.lex_state = 380, .external_lex_state = 2}, + [7291] = {.lex_state = 380, .external_lex_state = 2}, + [7292] = {.lex_state = 380, .external_lex_state = 2}, + [7293] = {.lex_state = 380, .external_lex_state = 5}, + [7294] = {.lex_state = 380, .external_lex_state = 5}, + [7295] = {.lex_state = 380, .external_lex_state = 2}, + [7296] = {.lex_state = 380, .external_lex_state = 2}, + [7297] = {.lex_state = 380, .external_lex_state = 2}, + [7298] = {.lex_state = 380, .external_lex_state = 5}, + [7299] = {.lex_state = 380, .external_lex_state = 2}, + [7300] = {.lex_state = 380, .external_lex_state = 5}, + [7301] = {.lex_state = 380, .external_lex_state = 5}, + [7302] = {.lex_state = 380, .external_lex_state = 2}, + [7303] = {.lex_state = 380, .external_lex_state = 5}, + [7304] = {.lex_state = 380, .external_lex_state = 2}, + [7305] = {.lex_state = 21, .external_lex_state = 2}, + [7306] = {.lex_state = 380, .external_lex_state = 5}, + [7307] = {.lex_state = 380, .external_lex_state = 5}, + [7308] = {.lex_state = 380, .external_lex_state = 5}, + [7309] = {.lex_state = 380, .external_lex_state = 5}, + [7310] = {.lex_state = 380, .external_lex_state = 5}, + [7311] = {.lex_state = 380, .external_lex_state = 5}, + [7312] = {.lex_state = 380, .external_lex_state = 5}, + [7313] = {.lex_state = 23, .external_lex_state = 2}, + [7314] = {.lex_state = 380, .external_lex_state = 5}, + [7315] = {.lex_state = 23, .external_lex_state = 2}, + [7316] = {.lex_state = 380, .external_lex_state = 2}, + [7317] = {.lex_state = 380, .external_lex_state = 5}, + [7318] = {.lex_state = 380, .external_lex_state = 2}, + [7319] = {.lex_state = 380, .external_lex_state = 5}, + [7320] = {.lex_state = 380, .external_lex_state = 5}, + [7321] = {.lex_state = 380, .external_lex_state = 5}, + [7322] = {.lex_state = 380, .external_lex_state = 5}, + [7323] = {.lex_state = 380, .external_lex_state = 5}, + [7324] = {.lex_state = 380, .external_lex_state = 5}, + [7325] = {.lex_state = 380, .external_lex_state = 5}, + [7326] = {.lex_state = 380, .external_lex_state = 5}, + [7327] = {.lex_state = 380, .external_lex_state = 2}, + [7328] = {.lex_state = 380, .external_lex_state = 2}, + [7329] = {.lex_state = 380, .external_lex_state = 5}, + [7330] = {.lex_state = 380, .external_lex_state = 2}, + [7331] = {.lex_state = 380, .external_lex_state = 5}, + [7332] = {.lex_state = 380, .external_lex_state = 5}, + [7333] = {.lex_state = 380, .external_lex_state = 5}, + [7334] = {.lex_state = 58, .external_lex_state = 5}, + [7335] = {.lex_state = 21, .external_lex_state = 2}, + [7336] = {.lex_state = 380, .external_lex_state = 5}, + [7337] = {.lex_state = 380, .external_lex_state = 5}, + [7338] = {.lex_state = 380, .external_lex_state = 5}, + [7339] = {.lex_state = 58, .external_lex_state = 5}, + [7340] = {.lex_state = 380, .external_lex_state = 2}, + [7341] = {.lex_state = 23, .external_lex_state = 2}, + [7342] = {.lex_state = 380, .external_lex_state = 2}, + [7343] = {.lex_state = 380, .external_lex_state = 2}, + [7344] = {.lex_state = 380, .external_lex_state = 5}, + [7345] = {.lex_state = 380, .external_lex_state = 2}, + [7346] = {.lex_state = 380, .external_lex_state = 5}, + [7347] = {.lex_state = 380, .external_lex_state = 5}, + [7348] = {.lex_state = 380, .external_lex_state = 5}, + [7349] = {.lex_state = 58, .external_lex_state = 2}, + [7350] = {.lex_state = 380, .external_lex_state = 2}, + [7351] = {.lex_state = 380, .external_lex_state = 2}, + [7352] = {.lex_state = 380, .external_lex_state = 2}, + [7353] = {.lex_state = 380, .external_lex_state = 2}, + [7354] = {.lex_state = 380, .external_lex_state = 2}, + [7355] = {.lex_state = 380, .external_lex_state = 5}, + [7356] = {.lex_state = 380, .external_lex_state = 5}, + [7357] = {.lex_state = 380, .external_lex_state = 2}, + [7358] = {.lex_state = 380, .external_lex_state = 5}, + [7359] = {.lex_state = 380, .external_lex_state = 2}, + [7360] = {.lex_state = 380, .external_lex_state = 2}, + [7361] = {.lex_state = 380, .external_lex_state = 2}, + [7362] = {.lex_state = 380, .external_lex_state = 5}, + [7363] = {.lex_state = 380, .external_lex_state = 2}, + [7364] = {.lex_state = 380, .external_lex_state = 2}, + [7365] = {.lex_state = 380, .external_lex_state = 5}, + [7366] = {.lex_state = 380, .external_lex_state = 5}, + [7367] = {.lex_state = 380, .external_lex_state = 2}, + [7368] = {.lex_state = 380, .external_lex_state = 2}, + [7369] = {.lex_state = 380, .external_lex_state = 2}, + [7370] = {.lex_state = 380, .external_lex_state = 2}, + [7371] = {.lex_state = 380, .external_lex_state = 2}, + [7372] = {.lex_state = 380, .external_lex_state = 2}, + [7373] = {.lex_state = 380, .external_lex_state = 2}, + [7374] = {.lex_state = 380, .external_lex_state = 2}, + [7375] = {.lex_state = 380, .external_lex_state = 2}, + [7376] = {.lex_state = 380, .external_lex_state = 2}, + [7377] = {.lex_state = 380, .external_lex_state = 5}, + [7378] = {.lex_state = 380, .external_lex_state = 2}, + [7379] = {.lex_state = 380, .external_lex_state = 2}, + [7380] = {.lex_state = 380, .external_lex_state = 5}, + [7381] = {.lex_state = 380, .external_lex_state = 5}, + [7382] = {.lex_state = 380, .external_lex_state = 5}, + [7383] = {.lex_state = 380, .external_lex_state = 5}, + [7384] = {.lex_state = 380, .external_lex_state = 2}, + [7385] = {.lex_state = 380, .external_lex_state = 2}, + [7386] = {.lex_state = 380, .external_lex_state = 2}, + [7387] = {.lex_state = 380, .external_lex_state = 2}, + [7388] = {.lex_state = 380, .external_lex_state = 5}, + [7389] = {.lex_state = 380, .external_lex_state = 5}, + [7390] = {.lex_state = 380, .external_lex_state = 5}, + [7391] = {.lex_state = 57, .external_lex_state = 2}, + [7392] = {.lex_state = 380, .external_lex_state = 2}, + [7393] = {.lex_state = 380, .external_lex_state = 2}, + [7394] = {.lex_state = 380, .external_lex_state = 2}, + [7395] = {.lex_state = 380, .external_lex_state = 2}, + [7396] = {.lex_state = 380, .external_lex_state = 2}, + [7397] = {.lex_state = 380, .external_lex_state = 5}, + [7398] = {.lex_state = 58, .external_lex_state = 2}, + [7399] = {.lex_state = 380, .external_lex_state = 2}, + [7400] = {.lex_state = 380, .external_lex_state = 2}, + [7401] = {.lex_state = 380, .external_lex_state = 2}, + [7402] = {.lex_state = 380, .external_lex_state = 2}, + [7403] = {.lex_state = 380, .external_lex_state = 5}, + [7404] = {.lex_state = 380, .external_lex_state = 5}, + [7405] = {.lex_state = 380, .external_lex_state = 5}, + [7406] = {.lex_state = 380, .external_lex_state = 5}, + [7407] = {.lex_state = 380, .external_lex_state = 2}, + [7408] = {.lex_state = 380, .external_lex_state = 2}, + [7409] = {.lex_state = 380, .external_lex_state = 2}, + [7410] = {.lex_state = 58, .external_lex_state = 2}, + [7411] = {.lex_state = 380, .external_lex_state = 2}, + [7412] = {.lex_state = 380, .external_lex_state = 2}, + [7413] = {.lex_state = 380, .external_lex_state = 2}, + [7414] = {.lex_state = 380, .external_lex_state = 2}, + [7415] = {.lex_state = 380, .external_lex_state = 2}, + [7416] = {.lex_state = 380, .external_lex_state = 2}, + [7417] = {.lex_state = 380, .external_lex_state = 2}, + [7418] = {.lex_state = 380, .external_lex_state = 2}, + [7419] = {.lex_state = 58, .external_lex_state = 2}, + [7420] = {.lex_state = 380, .external_lex_state = 2}, + [7421] = {.lex_state = 380, .external_lex_state = 2}, + [7422] = {.lex_state = 380, .external_lex_state = 2}, + [7423] = {.lex_state = 380, .external_lex_state = 2}, + [7424] = {.lex_state = 380, .external_lex_state = 2}, + [7425] = {.lex_state = 380, .external_lex_state = 2}, + [7426] = {.lex_state = 380, .external_lex_state = 5}, + [7427] = {.lex_state = 380, .external_lex_state = 5}, + [7428] = {.lex_state = 380, .external_lex_state = 5}, + [7429] = {.lex_state = 380, .external_lex_state = 2}, + [7430] = {.lex_state = 380, .external_lex_state = 5}, + [7431] = {.lex_state = 58, .external_lex_state = 2}, + [7432] = {.lex_state = 380, .external_lex_state = 5}, + [7433] = {.lex_state = 380, .external_lex_state = 2}, + [7434] = {.lex_state = 380, .external_lex_state = 2}, + [7435] = {.lex_state = 380, .external_lex_state = 2}, + [7436] = {.lex_state = 380, .external_lex_state = 2}, + [7437] = {.lex_state = 380, .external_lex_state = 2}, + [7438] = {.lex_state = 58, .external_lex_state = 2}, + [7439] = {.lex_state = 380, .external_lex_state = 5}, + [7440] = {.lex_state = 380, .external_lex_state = 2}, + [7441] = {.lex_state = 380, .external_lex_state = 5}, + [7442] = {.lex_state = 380, .external_lex_state = 2}, + [7443] = {.lex_state = 58, .external_lex_state = 2}, + [7444] = {.lex_state = 380, .external_lex_state = 2}, + [7445] = {.lex_state = 380, .external_lex_state = 5}, + [7446] = {.lex_state = 58, .external_lex_state = 2}, + [7447] = {.lex_state = 380, .external_lex_state = 2}, + [7448] = {.lex_state = 380, .external_lex_state = 2}, + [7449] = {.lex_state = 58, .external_lex_state = 2}, + [7450] = {.lex_state = 380, .external_lex_state = 2}, + [7451] = {.lex_state = 380, .external_lex_state = 2}, + [7452] = {.lex_state = 380, .external_lex_state = 2}, + [7453] = {.lex_state = 58, .external_lex_state = 2}, + [7454] = {.lex_state = 380, .external_lex_state = 2}, + [7455] = {.lex_state = 380, .external_lex_state = 2}, + [7456] = {.lex_state = 380, .external_lex_state = 2}, + [7457] = {.lex_state = 380, .external_lex_state = 2}, + [7458] = {.lex_state = 380, .external_lex_state = 2}, + [7459] = {.lex_state = 380, .external_lex_state = 2}, + [7460] = {.lex_state = 380, .external_lex_state = 5}, + [7461] = {.lex_state = 380, .external_lex_state = 2}, + [7462] = {.lex_state = 380, .external_lex_state = 2}, + [7463] = {.lex_state = 380, .external_lex_state = 2}, + [7464] = {.lex_state = 380, .external_lex_state = 2}, + [7465] = {.lex_state = 380, .external_lex_state = 2}, + [7466] = {.lex_state = 380, .external_lex_state = 5}, + [7467] = {.lex_state = 380, .external_lex_state = 5}, + [7468] = {.lex_state = 380, .external_lex_state = 2}, + [7469] = {.lex_state = 380, .external_lex_state = 2}, + [7470] = {.lex_state = 380, .external_lex_state = 2}, + [7471] = {.lex_state = 380, .external_lex_state = 5}, + [7472] = {.lex_state = 380, .external_lex_state = 5}, + [7473] = {.lex_state = 380, .external_lex_state = 2}, + [7474] = {.lex_state = 380, .external_lex_state = 2}, + [7475] = {.lex_state = 380, .external_lex_state = 2}, + [7476] = {.lex_state = 380, .external_lex_state = 2}, + [7477] = {.lex_state = 380, .external_lex_state = 2}, + [7478] = {.lex_state = 380, .external_lex_state = 2}, + [7479] = {.lex_state = 380, .external_lex_state = 2}, + [7480] = {.lex_state = 380, .external_lex_state = 2}, + [7481] = {.lex_state = 380, .external_lex_state = 2}, + [7482] = {.lex_state = 380, .external_lex_state = 2}, + [7483] = {.lex_state = 380, .external_lex_state = 2}, + [7484] = {.lex_state = 380, .external_lex_state = 2}, + [7485] = {.lex_state = 380, .external_lex_state = 2}, + [7486] = {.lex_state = 380, .external_lex_state = 2}, + [7487] = {.lex_state = 380, .external_lex_state = 2}, + [7488] = {.lex_state = 380, .external_lex_state = 2}, + [7489] = {.lex_state = 58, .external_lex_state = 2}, + [7490] = {.lex_state = 58, .external_lex_state = 2}, + [7491] = {.lex_state = 380, .external_lex_state = 2}, + [7492] = {.lex_state = 380, .external_lex_state = 5}, + [7493] = {.lex_state = 380, .external_lex_state = 5}, + [7494] = {.lex_state = 380, .external_lex_state = 2}, + [7495] = {.lex_state = 380, .external_lex_state = 2}, + [7496] = {.lex_state = 380, .external_lex_state = 2}, + [7497] = {.lex_state = 380, .external_lex_state = 2}, + [7498] = {.lex_state = 380, .external_lex_state = 2}, + [7499] = {.lex_state = 380, .external_lex_state = 2}, + [7500] = {.lex_state = 380, .external_lex_state = 5}, + [7501] = {.lex_state = 380, .external_lex_state = 5}, + [7502] = {.lex_state = 380, .external_lex_state = 2}, + [7503] = {.lex_state = 380, .external_lex_state = 2}, + [7504] = {.lex_state = 380, .external_lex_state = 5}, + [7505] = {.lex_state = 380, .external_lex_state = 2}, + [7506] = {.lex_state = 380, .external_lex_state = 2}, + [7507] = {.lex_state = 380, .external_lex_state = 2}, + [7508] = {.lex_state = 380, .external_lex_state = 2}, + [7509] = {.lex_state = 380, .external_lex_state = 2}, + [7510] = {.lex_state = 380, .external_lex_state = 5}, + [7511] = {.lex_state = 380, .external_lex_state = 2}, + [7512] = {.lex_state = 380, .external_lex_state = 2}, + [7513] = {.lex_state = 380, .external_lex_state = 2}, + [7514] = {.lex_state = 380, .external_lex_state = 2}, + [7515] = {.lex_state = 58, .external_lex_state = 2}, + [7516] = {.lex_state = 380, .external_lex_state = 2}, + [7517] = {.lex_state = 380, .external_lex_state = 2}, + [7518] = {.lex_state = 58, .external_lex_state = 2}, + [7519] = {.lex_state = 380, .external_lex_state = 2}, + [7520] = {.lex_state = 54, .external_lex_state = 2}, + [7521] = {.lex_state = 380, .external_lex_state = 2}, + [7522] = {.lex_state = 58, .external_lex_state = 2}, + [7523] = {.lex_state = 380, .external_lex_state = 2}, + [7524] = {.lex_state = 380, .external_lex_state = 5}, + [7525] = {.lex_state = 380, .external_lex_state = 2}, + [7526] = {.lex_state = 380, .external_lex_state = 2}, + [7527] = {.lex_state = 58, .external_lex_state = 2}, + [7528] = {.lex_state = 380, .external_lex_state = 2}, + [7529] = {.lex_state = 380, .external_lex_state = 2}, + [7530] = {.lex_state = 380, .external_lex_state = 2}, + [7531] = {.lex_state = 380, .external_lex_state = 2}, + [7532] = {.lex_state = 380, .external_lex_state = 2}, + [7533] = {.lex_state = 380, .external_lex_state = 2}, + [7534] = {.lex_state = 380, .external_lex_state = 2}, + [7535] = {.lex_state = 380, .external_lex_state = 2}, + [7536] = {.lex_state = 380, .external_lex_state = 2}, + [7537] = {.lex_state = 380, .external_lex_state = 2}, + [7538] = {.lex_state = 380, .external_lex_state = 2}, + [7539] = {.lex_state = 380, .external_lex_state = 2}, + [7540] = {.lex_state = 380, .external_lex_state = 2}, + [7541] = {.lex_state = 380, .external_lex_state = 2}, + [7542] = {.lex_state = 380, .external_lex_state = 2}, + [7543] = {.lex_state = 380, .external_lex_state = 2}, + [7544] = {.lex_state = 380, .external_lex_state = 5}, + [7545] = {.lex_state = 380, .external_lex_state = 2}, + [7546] = {.lex_state = 380, .external_lex_state = 2}, + [7547] = {.lex_state = 380, .external_lex_state = 2}, + [7548] = {.lex_state = 58, .external_lex_state = 2}, + [7549] = {.lex_state = 380, .external_lex_state = 5}, + [7550] = {.lex_state = 380, .external_lex_state = 2}, + [7551] = {.lex_state = 58, .external_lex_state = 2}, + [7552] = {.lex_state = 380, .external_lex_state = 2}, + [7553] = {.lex_state = 380, .external_lex_state = 2}, + [7554] = {.lex_state = 380, .external_lex_state = 5}, + [7555] = {.lex_state = 380, .external_lex_state = 5}, + [7556] = {.lex_state = 58, .external_lex_state = 2}, + [7557] = {.lex_state = 380, .external_lex_state = 5}, + [7558] = {.lex_state = 380, .external_lex_state = 5}, + [7559] = {.lex_state = 380, .external_lex_state = 2}, + [7560] = {.lex_state = 380, .external_lex_state = 2}, + [7561] = {.lex_state = 380, .external_lex_state = 2}, + [7562] = {.lex_state = 380, .external_lex_state = 2}, + [7563] = {.lex_state = 380, .external_lex_state = 2}, + [7564] = {.lex_state = 58, .external_lex_state = 2}, + [7565] = {.lex_state = 380, .external_lex_state = 2}, + [7566] = {.lex_state = 380, .external_lex_state = 2}, + [7567] = {.lex_state = 380, .external_lex_state = 2}, + [7568] = {.lex_state = 380, .external_lex_state = 2}, + [7569] = {.lex_state = 380, .external_lex_state = 2}, + [7570] = {.lex_state = 380, .external_lex_state = 2}, + [7571] = {.lex_state = 380, .external_lex_state = 2}, + [7572] = {.lex_state = 380, .external_lex_state = 2}, + [7573] = {.lex_state = 380, .external_lex_state = 2}, + [7574] = {.lex_state = 380, .external_lex_state = 2}, + [7575] = {.lex_state = 380, .external_lex_state = 2}, + [7576] = {.lex_state = 380, .external_lex_state = 2}, + [7577] = {.lex_state = 380, .external_lex_state = 2}, + [7578] = {.lex_state = 380, .external_lex_state = 2}, + [7579] = {.lex_state = 380, .external_lex_state = 2}, + [7580] = {.lex_state = 380, .external_lex_state = 2}, + [7581] = {.lex_state = 380, .external_lex_state = 2}, + [7582] = {.lex_state = 380, .external_lex_state = 5}, + [7583] = {.lex_state = 380, .external_lex_state = 2}, + [7584] = {.lex_state = 380, .external_lex_state = 5}, + [7585] = {.lex_state = 380, .external_lex_state = 5}, + [7586] = {.lex_state = 380, .external_lex_state = 5}, + [7587] = {.lex_state = 380, .external_lex_state = 2}, + [7588] = {.lex_state = 380, .external_lex_state = 5}, + [7589] = {.lex_state = 380, .external_lex_state = 5}, + [7590] = {.lex_state = 380, .external_lex_state = 2}, + [7591] = {.lex_state = 380, .external_lex_state = 2}, + [7592] = {.lex_state = 380, .external_lex_state = 2}, + [7593] = {.lex_state = 380, .external_lex_state = 5}, + [7594] = {.lex_state = 380, .external_lex_state = 5}, + [7595] = {.lex_state = 380, .external_lex_state = 2}, + [7596] = {.lex_state = 58, .external_lex_state = 2}, + [7597] = {.lex_state = 380, .external_lex_state = 2}, + [7598] = {.lex_state = 380, .external_lex_state = 2}, + [7599] = {.lex_state = 380, .external_lex_state = 2}, + [7600] = {.lex_state = 380, .external_lex_state = 2}, + [7601] = {.lex_state = 380, .external_lex_state = 2}, + [7602] = {.lex_state = 380, .external_lex_state = 2}, + [7603] = {.lex_state = 380, .external_lex_state = 5}, + [7604] = {.lex_state = 380, .external_lex_state = 5}, + [7605] = {.lex_state = 380, .external_lex_state = 2}, + [7606] = {.lex_state = 380, .external_lex_state = 2}, + [7607] = {.lex_state = 380, .external_lex_state = 2}, + [7608] = {.lex_state = 380, .external_lex_state = 2}, + [7609] = {.lex_state = 58, .external_lex_state = 2}, + [7610] = {.lex_state = 58, .external_lex_state = 2}, + [7611] = {.lex_state = 58, .external_lex_state = 2}, + [7612] = {.lex_state = 380, .external_lex_state = 2}, + [7613] = {.lex_state = 58, .external_lex_state = 2}, + [7614] = {.lex_state = 380, .external_lex_state = 2}, + [7615] = {.lex_state = 380, .external_lex_state = 2}, + [7616] = {.lex_state = 380, .external_lex_state = 2}, + [7617] = {.lex_state = 380, .external_lex_state = 2}, + [7618] = {.lex_state = 380, .external_lex_state = 2}, + [7619] = {.lex_state = 380, .external_lex_state = 2}, + [7620] = {.lex_state = 380, .external_lex_state = 2}, + [7621] = {.lex_state = 380, .external_lex_state = 2}, + [7622] = {.lex_state = 1, .external_lex_state = 2}, + [7623] = {.lex_state = 380, .external_lex_state = 2}, + [7624] = {.lex_state = 380, .external_lex_state = 2}, + [7625] = {.lex_state = 380, .external_lex_state = 2}, + [7626] = {.lex_state = 380, .external_lex_state = 2}, + [7627] = {.lex_state = 380, .external_lex_state = 2}, + [7628] = {.lex_state = 380, .external_lex_state = 2}, + [7629] = {.lex_state = 380, .external_lex_state = 2}, + [7630] = {.lex_state = 380, .external_lex_state = 2}, + [7631] = {.lex_state = 380, .external_lex_state = 2}, + [7632] = {.lex_state = 380, .external_lex_state = 2}, + [7633] = {.lex_state = 380, .external_lex_state = 2}, + [7634] = {.lex_state = 380, .external_lex_state = 5}, + [7635] = {.lex_state = 380, .external_lex_state = 5}, + [7636] = {.lex_state = 380, .external_lex_state = 5}, + [7637] = {.lex_state = 380, .external_lex_state = 2}, + [7638] = {.lex_state = 380, .external_lex_state = 2}, + [7639] = {.lex_state = 380, .external_lex_state = 5}, + [7640] = {.lex_state = 380, .external_lex_state = 2}, + [7641] = {.lex_state = 380, .external_lex_state = 2}, + [7642] = {.lex_state = 380, .external_lex_state = 2}, + [7643] = {.lex_state = 380, .external_lex_state = 2}, + [7644] = {.lex_state = 380, .external_lex_state = 2}, + [7645] = {.lex_state = 380, .external_lex_state = 2}, + [7646] = {.lex_state = 380, .external_lex_state = 2}, + [7647] = {.lex_state = 380, .external_lex_state = 5}, + [7648] = {.lex_state = 380, .external_lex_state = 2}, + [7649] = {.lex_state = 380, .external_lex_state = 2}, + [7650] = {.lex_state = 380, .external_lex_state = 2}, + [7651] = {.lex_state = 380, .external_lex_state = 2}, + [7652] = {.lex_state = 380, .external_lex_state = 2}, + [7653] = {.lex_state = 58, .external_lex_state = 2}, + [7654] = {.lex_state = 380, .external_lex_state = 2}, + [7655] = {.lex_state = 380, .external_lex_state = 2}, + [7656] = {.lex_state = 380, .external_lex_state = 2}, + [7657] = {.lex_state = 380, .external_lex_state = 2}, + [7658] = {.lex_state = 380, .external_lex_state = 2}, + [7659] = {.lex_state = 380, .external_lex_state = 2}, + [7660] = {.lex_state = 380, .external_lex_state = 2}, + [7661] = {.lex_state = 380, .external_lex_state = 2}, + [7662] = {.lex_state = 380, .external_lex_state = 2}, + [7663] = {.lex_state = 380, .external_lex_state = 2}, + [7664] = {.lex_state = 380, .external_lex_state = 2}, + [7665] = {.lex_state = 380, .external_lex_state = 2}, + [7666] = {.lex_state = 380, .external_lex_state = 2}, + [7667] = {.lex_state = 380, .external_lex_state = 2}, + [7668] = {.lex_state = 380, .external_lex_state = 2}, + [7669] = {.lex_state = 380, .external_lex_state = 2}, + [7670] = {.lex_state = 380, .external_lex_state = 2}, + [7671] = {.lex_state = 380, .external_lex_state = 2}, + [7672] = {.lex_state = 380, .external_lex_state = 2}, + [7673] = {.lex_state = 380, .external_lex_state = 2}, + [7674] = {.lex_state = 380, .external_lex_state = 2}, + [7675] = {.lex_state = 380, .external_lex_state = 2}, + [7676] = {.lex_state = 380, .external_lex_state = 2}, + [7677] = {.lex_state = 380, .external_lex_state = 2}, + [7678] = {.lex_state = 380, .external_lex_state = 2}, + [7679] = {.lex_state = 380, .external_lex_state = 5}, + [7680] = {.lex_state = 380, .external_lex_state = 2}, + [7681] = {.lex_state = 380, .external_lex_state = 2}, + [7682] = {.lex_state = 380, .external_lex_state = 5}, + [7683] = {.lex_state = 380, .external_lex_state = 2}, + [7684] = {.lex_state = 380, .external_lex_state = 2}, + [7685] = {.lex_state = 58, .external_lex_state = 2}, + [7686] = {.lex_state = 58, .external_lex_state = 2}, + [7687] = {.lex_state = 380, .external_lex_state = 2}, + [7688] = {.lex_state = 380, .external_lex_state = 2}, + [7689] = {.lex_state = 380, .external_lex_state = 2}, + [7690] = {.lex_state = 380, .external_lex_state = 5}, + [7691] = {.lex_state = 380, .external_lex_state = 5}, + [7692] = {.lex_state = 380, .external_lex_state = 2}, + [7693] = {.lex_state = 380, .external_lex_state = 2}, + [7694] = {.lex_state = 380, .external_lex_state = 2}, + [7695] = {.lex_state = 380, .external_lex_state = 2}, + [7696] = {.lex_state = 380, .external_lex_state = 2}, + [7697] = {.lex_state = 380, .external_lex_state = 2}, + [7698] = {.lex_state = 380, .external_lex_state = 2}, + [7699] = {.lex_state = 380, .external_lex_state = 2}, + [7700] = {.lex_state = 380, .external_lex_state = 5}, + [7701] = {.lex_state = 380, .external_lex_state = 2}, + [7702] = {.lex_state = 380, .external_lex_state = 2}, + [7703] = {.lex_state = 380, .external_lex_state = 2}, + [7704] = {.lex_state = 380, .external_lex_state = 2}, + [7705] = {.lex_state = 380, .external_lex_state = 2}, + [7706] = {.lex_state = 380, .external_lex_state = 2}, + [7707] = {.lex_state = 58, .external_lex_state = 2}, + [7708] = {.lex_state = 380, .external_lex_state = 5}, + [7709] = {.lex_state = 380, .external_lex_state = 2}, + [7710] = {.lex_state = 380, .external_lex_state = 2}, + [7711] = {.lex_state = 380, .external_lex_state = 5}, + [7712] = {.lex_state = 380, .external_lex_state = 2}, + [7713] = {.lex_state = 380, .external_lex_state = 2}, + [7714] = {.lex_state = 380, .external_lex_state = 2}, + [7715] = {.lex_state = 380, .external_lex_state = 2}, + [7716] = {.lex_state = 58, .external_lex_state = 2}, + [7717] = {.lex_state = 380, .external_lex_state = 5}, + [7718] = {.lex_state = 380, .external_lex_state = 5}, + [7719] = {.lex_state = 380, .external_lex_state = 2}, + [7720] = {.lex_state = 380, .external_lex_state = 2}, + [7721] = {.lex_state = 380, .external_lex_state = 2}, + [7722] = {.lex_state = 380, .external_lex_state = 2}, + [7723] = {.lex_state = 380, .external_lex_state = 2}, + [7724] = {.lex_state = 380, .external_lex_state = 2}, + [7725] = {.lex_state = 380, .external_lex_state = 2}, + [7726] = {.lex_state = 380, .external_lex_state = 5}, + [7727] = {.lex_state = 380, .external_lex_state = 2}, + [7728] = {.lex_state = 380, .external_lex_state = 2}, + [7729] = {.lex_state = 380, .external_lex_state = 2}, + [7730] = {.lex_state = 58, .external_lex_state = 2}, + [7731] = {.lex_state = 380, .external_lex_state = 2}, + [7732] = {.lex_state = 58, .external_lex_state = 2}, + [7733] = {.lex_state = 380, .external_lex_state = 2}, + [7734] = {.lex_state = 380, .external_lex_state = 2}, + [7735] = {.lex_state = 380, .external_lex_state = 5}, + [7736] = {.lex_state = 380, .external_lex_state = 2}, + [7737] = {.lex_state = 380, .external_lex_state = 2}, + [7738] = {.lex_state = 380, .external_lex_state = 2}, + [7739] = {.lex_state = 380, .external_lex_state = 2}, + [7740] = {.lex_state = 380, .external_lex_state = 2}, + [7741] = {.lex_state = 380, .external_lex_state = 5}, + [7742] = {.lex_state = 380, .external_lex_state = 2}, + [7743] = {.lex_state = 380, .external_lex_state = 5}, + [7744] = {.lex_state = 380, .external_lex_state = 2}, + [7745] = {.lex_state = 380, .external_lex_state = 5}, + [7746] = {.lex_state = 58, .external_lex_state = 2}, + [7747] = {.lex_state = 380, .external_lex_state = 5}, + [7748] = {.lex_state = 380, .external_lex_state = 2}, + [7749] = {.lex_state = 380, .external_lex_state = 2}, + [7750] = {.lex_state = 380, .external_lex_state = 5}, + [7751] = {.lex_state = 380, .external_lex_state = 2}, + [7752] = {.lex_state = 380, .external_lex_state = 2}, + [7753] = {.lex_state = 380, .external_lex_state = 2}, + [7754] = {.lex_state = 380, .external_lex_state = 2}, + [7755] = {.lex_state = 380, .external_lex_state = 2}, + [7756] = {.lex_state = 380, .external_lex_state = 5}, + [7757] = {.lex_state = 380, .external_lex_state = 5}, + [7758] = {.lex_state = 380, .external_lex_state = 2}, + [7759] = {.lex_state = 380, .external_lex_state = 2}, + [7760] = {.lex_state = 380, .external_lex_state = 2}, + [7761] = {.lex_state = 380, .external_lex_state = 2}, + [7762] = {.lex_state = 380, .external_lex_state = 2}, + [7763] = {.lex_state = 380, .external_lex_state = 2}, + [7764] = {.lex_state = 380, .external_lex_state = 2}, + [7765] = {.lex_state = 380, .external_lex_state = 2}, + [7766] = {.lex_state = 380, .external_lex_state = 2}, + [7767] = {.lex_state = 380, .external_lex_state = 5}, + [7768] = {.lex_state = 380, .external_lex_state = 2}, + [7769] = {.lex_state = 380, .external_lex_state = 2}, + [7770] = {.lex_state = 380, .external_lex_state = 2}, + [7771] = {.lex_state = 380, .external_lex_state = 2}, + [7772] = {.lex_state = 380, .external_lex_state = 2}, + [7773] = {.lex_state = 380, .external_lex_state = 2}, + [7774] = {.lex_state = 380, .external_lex_state = 2}, + [7775] = {.lex_state = 380, .external_lex_state = 2}, + [7776] = {.lex_state = 380, .external_lex_state = 5}, + [7777] = {.lex_state = 380, .external_lex_state = 2}, + [7778] = {.lex_state = 380, .external_lex_state = 2}, + [7779] = {.lex_state = 380, .external_lex_state = 5}, + [7780] = {.lex_state = 380, .external_lex_state = 5}, + [7781] = {.lex_state = 380, .external_lex_state = 2}, + [7782] = {.lex_state = 380, .external_lex_state = 2}, + [7783] = {.lex_state = 380, .external_lex_state = 2}, + [7784] = {.lex_state = 380, .external_lex_state = 2}, + [7785] = {.lex_state = 380, .external_lex_state = 2}, + [7786] = {.lex_state = 380, .external_lex_state = 2}, + [7787] = {.lex_state = 380, .external_lex_state = 2}, + [7788] = {.lex_state = 57, .external_lex_state = 2}, + [7789] = {.lex_state = 380, .external_lex_state = 2}, + [7790] = {.lex_state = 380, .external_lex_state = 2}, + [7791] = {.lex_state = 380, .external_lex_state = 2}, + [7792] = {.lex_state = 380, .external_lex_state = 5}, + [7793] = {.lex_state = 380, .external_lex_state = 5}, + [7794] = {.lex_state = 380, .external_lex_state = 2}, + [7795] = {.lex_state = 380, .external_lex_state = 2}, + [7796] = {.lex_state = 58, .external_lex_state = 2}, + [7797] = {.lex_state = 380, .external_lex_state = 2}, + [7798] = {.lex_state = 380, .external_lex_state = 2}, + [7799] = {.lex_state = 380, .external_lex_state = 2}, + [7800] = {.lex_state = 380, .external_lex_state = 2}, + [7801] = {.lex_state = 380, .external_lex_state = 2}, + [7802] = {.lex_state = 380, .external_lex_state = 2}, + [7803] = {.lex_state = 380, .external_lex_state = 2}, + [7804] = {.lex_state = 58, .external_lex_state = 2}, + [7805] = {.lex_state = 380, .external_lex_state = 2}, + [7806] = {.lex_state = 380, .external_lex_state = 2}, + [7807] = {.lex_state = 380, .external_lex_state = 2}, + [7808] = {.lex_state = 380, .external_lex_state = 2}, + [7809] = {.lex_state = 380, .external_lex_state = 2}, + [7810] = {.lex_state = 380, .external_lex_state = 2}, + [7811] = {.lex_state = 380, .external_lex_state = 2}, + [7812] = {.lex_state = 380, .external_lex_state = 2}, + [7813] = {.lex_state = 380, .external_lex_state = 2}, + [7814] = {.lex_state = 380, .external_lex_state = 5}, + [7815] = {.lex_state = 380, .external_lex_state = 5}, + [7816] = {.lex_state = 380, .external_lex_state = 2}, + [7817] = {.lex_state = 380, .external_lex_state = 2}, + [7818] = {.lex_state = 58, .external_lex_state = 2}, + [7819] = {.lex_state = 380, .external_lex_state = 2}, + [7820] = {.lex_state = 380, .external_lex_state = 2}, + [7821] = {.lex_state = 58, .external_lex_state = 2}, + [7822] = {.lex_state = 58, .external_lex_state = 2}, + [7823] = {.lex_state = 380, .external_lex_state = 2}, + [7824] = {.lex_state = 58, .external_lex_state = 2}, + [7825] = {.lex_state = 380, .external_lex_state = 2}, + [7826] = {.lex_state = 380, .external_lex_state = 2}, + [7827] = {.lex_state = 380, .external_lex_state = 2}, + [7828] = {.lex_state = 380, .external_lex_state = 2}, + [7829] = {.lex_state = 380, .external_lex_state = 2}, + [7830] = {.lex_state = 380, .external_lex_state = 5}, + [7831] = {.lex_state = 380, .external_lex_state = 2}, + [7832] = {.lex_state = 380, .external_lex_state = 2}, + [7833] = {.lex_state = 58, .external_lex_state = 2}, + [7834] = {.lex_state = 380, .external_lex_state = 2}, + [7835] = {.lex_state = 58, .external_lex_state = 2}, + [7836] = {.lex_state = 380, .external_lex_state = 2}, + [7837] = {.lex_state = 380, .external_lex_state = 2}, + [7838] = {.lex_state = 380, .external_lex_state = 2}, + [7839] = {.lex_state = 380, .external_lex_state = 5}, + [7840] = {.lex_state = 380, .external_lex_state = 2}, + [7841] = {.lex_state = 380, .external_lex_state = 2}, + [7842] = {.lex_state = 380, .external_lex_state = 2}, + [7843] = {.lex_state = 380, .external_lex_state = 2}, + [7844] = {.lex_state = 380, .external_lex_state = 2}, + [7845] = {.lex_state = 380, .external_lex_state = 5}, + [7846] = {.lex_state = 380, .external_lex_state = 5}, + [7847] = {.lex_state = 380, .external_lex_state = 2}, + [7848] = {.lex_state = 380, .external_lex_state = 2}, + [7849] = {.lex_state = 380, .external_lex_state = 5}, + [7850] = {.lex_state = 380, .external_lex_state = 2}, + [7851] = {.lex_state = 380, .external_lex_state = 2}, + [7852] = {.lex_state = 380, .external_lex_state = 5}, + [7853] = {.lex_state = 380, .external_lex_state = 5}, + [7854] = {.lex_state = 380, .external_lex_state = 2}, + [7855] = {.lex_state = 58, .external_lex_state = 2}, + [7856] = {.lex_state = 380, .external_lex_state = 2}, + [7857] = {.lex_state = 380, .external_lex_state = 2}, + [7858] = {.lex_state = 380, .external_lex_state = 5}, + [7859] = {.lex_state = 380, .external_lex_state = 2}, + [7860] = {.lex_state = 380, .external_lex_state = 2}, + [7861] = {.lex_state = 380, .external_lex_state = 2}, + [7862] = {.lex_state = 58, .external_lex_state = 2}, + [7863] = {.lex_state = 58, .external_lex_state = 2}, + [7864] = {.lex_state = 58, .external_lex_state = 2}, + [7865] = {.lex_state = 380, .external_lex_state = 2}, + [7866] = {.lex_state = 58, .external_lex_state = 2}, + [7867] = {.lex_state = 58, .external_lex_state = 2}, + [7868] = {.lex_state = 380, .external_lex_state = 2}, + [7869] = {.lex_state = 380, .external_lex_state = 5}, + [7870] = {.lex_state = 380, .external_lex_state = 5}, + [7871] = {.lex_state = 380, .external_lex_state = 2}, + [7872] = {.lex_state = 380, .external_lex_state = 2}, + [7873] = {.lex_state = 380, .external_lex_state = 2}, + [7874] = {.lex_state = 380, .external_lex_state = 2}, + [7875] = {.lex_state = 380, .external_lex_state = 5}, + [7876] = {.lex_state = 380, .external_lex_state = 5}, + [7877] = {.lex_state = 380, .external_lex_state = 2}, + [7878] = {.lex_state = 380, .external_lex_state = 2}, + [7879] = {.lex_state = 380, .external_lex_state = 2}, + [7880] = {.lex_state = 380, .external_lex_state = 2}, + [7881] = {.lex_state = 380, .external_lex_state = 2}, + [7882] = {.lex_state = 380, .external_lex_state = 5}, + [7883] = {.lex_state = 380, .external_lex_state = 2}, + [7884] = {.lex_state = 380, .external_lex_state = 5}, + [7885] = {.lex_state = 380, .external_lex_state = 5}, + [7886] = {.lex_state = 380, .external_lex_state = 5}, + [7887] = {.lex_state = 380, .external_lex_state = 2}, + [7888] = {.lex_state = 380, .external_lex_state = 5}, + [7889] = {.lex_state = 380, .external_lex_state = 2}, + [7890] = {.lex_state = 380, .external_lex_state = 2}, + [7891] = {.lex_state = 380, .external_lex_state = 2}, + [7892] = {.lex_state = 380, .external_lex_state = 2}, + [7893] = {.lex_state = 380, .external_lex_state = 2}, + [7894] = {.lex_state = 380, .external_lex_state = 2}, + [7895] = {.lex_state = 380, .external_lex_state = 5}, + [7896] = {.lex_state = 380, .external_lex_state = 2}, + [7897] = {.lex_state = 380, .external_lex_state = 2}, + [7898] = {.lex_state = 380, .external_lex_state = 2}, + [7899] = {.lex_state = 380, .external_lex_state = 5}, + [7900] = {.lex_state = 380, .external_lex_state = 2}, + [7901] = {.lex_state = 380, .external_lex_state = 2}, + [7902] = {.lex_state = 380, .external_lex_state = 2}, + [7903] = {.lex_state = 380, .external_lex_state = 5}, + [7904] = {.lex_state = 380, .external_lex_state = 5}, + [7905] = {.lex_state = 380, .external_lex_state = 2}, + [7906] = {.lex_state = 380, .external_lex_state = 2}, + [7907] = {.lex_state = 380, .external_lex_state = 2}, + [7908] = {.lex_state = 380, .external_lex_state = 2}, + [7909] = {.lex_state = 380, .external_lex_state = 2}, + [7910] = {.lex_state = 380, .external_lex_state = 2}, + [7911] = {.lex_state = 380, .external_lex_state = 2}, + [7912] = {.lex_state = 380, .external_lex_state = 2}, + [7913] = {.lex_state = 380, .external_lex_state = 2}, + [7914] = {.lex_state = 380, .external_lex_state = 5}, + [7915] = {.lex_state = 380, .external_lex_state = 5}, + [7916] = {.lex_state = 380, .external_lex_state = 5}, + [7917] = {.lex_state = 380, .external_lex_state = 5}, + [7918] = {.lex_state = 380, .external_lex_state = 2}, + [7919] = {.lex_state = 380, .external_lex_state = 5}, + [7920] = {.lex_state = 380, .external_lex_state = 2}, + [7921] = {.lex_state = 380, .external_lex_state = 2}, + [7922] = {.lex_state = 380, .external_lex_state = 5}, + [7923] = {.lex_state = 380, .external_lex_state = 2}, + [7924] = {.lex_state = 380, .external_lex_state = 2}, + [7925] = {.lex_state = 380, .external_lex_state = 2}, + [7926] = {.lex_state = 380, .external_lex_state = 2}, + [7927] = {.lex_state = 380, .external_lex_state = 2}, + [7928] = {.lex_state = 57, .external_lex_state = 2}, + [7929] = {.lex_state = 380, .external_lex_state = 2}, + [7930] = {.lex_state = 380, .external_lex_state = 2}, + [7931] = {.lex_state = 380, .external_lex_state = 2}, + [7932] = {.lex_state = 380, .external_lex_state = 2}, + [7933] = {.lex_state = 380, .external_lex_state = 2}, + [7934] = {.lex_state = 380, .external_lex_state = 2}, + [7935] = {.lex_state = 380, .external_lex_state = 2}, + [7936] = {.lex_state = 58, .external_lex_state = 2}, + [7937] = {.lex_state = 380, .external_lex_state = 5}, + [7938] = {.lex_state = 380, .external_lex_state = 2}, + [7939] = {.lex_state = 380, .external_lex_state = 2}, + [7940] = {.lex_state = 380, .external_lex_state = 2}, + [7941] = {.lex_state = 58, .external_lex_state = 2}, + [7942] = {.lex_state = 58, .external_lex_state = 2}, + [7943] = {.lex_state = 380, .external_lex_state = 2}, + [7944] = {.lex_state = 380, .external_lex_state = 2}, + [7945] = {.lex_state = 380, .external_lex_state = 2}, + [7946] = {.lex_state = 380, .external_lex_state = 2}, + [7947] = {.lex_state = 380, .external_lex_state = 2}, + [7948] = {.lex_state = 380, .external_lex_state = 2}, + [7949] = {.lex_state = 58, .external_lex_state = 2}, + [7950] = {.lex_state = 380, .external_lex_state = 2}, + [7951] = {.lex_state = 380, .external_lex_state = 2}, + [7952] = {.lex_state = 380, .external_lex_state = 2}, + [7953] = {.lex_state = 380, .external_lex_state = 2}, + [7954] = {.lex_state = 380, .external_lex_state = 2}, + [7955] = {.lex_state = 380, .external_lex_state = 5}, + [7956] = {.lex_state = 380, .external_lex_state = 2}, + [7957] = {.lex_state = 380, .external_lex_state = 2}, + [7958] = {.lex_state = 380, .external_lex_state = 2}, + [7959] = {.lex_state = 380, .external_lex_state = 2}, + [7960] = {.lex_state = 380, .external_lex_state = 2}, + [7961] = {.lex_state = 380, .external_lex_state = 2}, + [7962] = {.lex_state = 380, .external_lex_state = 2}, + [7963] = {.lex_state = 380, .external_lex_state = 5}, + [7964] = {.lex_state = 380, .external_lex_state = 2}, + [7965] = {.lex_state = 57, .external_lex_state = 2}, + [7966] = {.lex_state = 380, .external_lex_state = 2}, + [7967] = {.lex_state = 380, .external_lex_state = 2}, + [7968] = {.lex_state = 380, .external_lex_state = 2}, + [7969] = {.lex_state = 380, .external_lex_state = 2}, + [7970] = {.lex_state = 380, .external_lex_state = 2}, + [7971] = {.lex_state = 380, .external_lex_state = 2}, + [7972] = {.lex_state = 380, .external_lex_state = 2}, + [7973] = {.lex_state = 380, .external_lex_state = 2}, + [7974] = {.lex_state = 380, .external_lex_state = 2}, + [7975] = {.lex_state = 380, .external_lex_state = 2}, + [7976] = {.lex_state = 380, .external_lex_state = 5}, + [7977] = {.lex_state = 380, .external_lex_state = 2}, + [7978] = {.lex_state = 380, .external_lex_state = 2}, + [7979] = {.lex_state = 380, .external_lex_state = 2}, + [7980] = {.lex_state = 380, .external_lex_state = 5}, + [7981] = {.lex_state = 380, .external_lex_state = 2}, + [7982] = {.lex_state = 380, .external_lex_state = 2}, + [7983] = {.lex_state = 380, .external_lex_state = 2}, + [7984] = {.lex_state = 380, .external_lex_state = 2}, + [7985] = {.lex_state = 380, .external_lex_state = 2}, + [7986] = {.lex_state = 380, .external_lex_state = 2}, + [7987] = {.lex_state = 380, .external_lex_state = 2}, + [7988] = {.lex_state = 380, .external_lex_state = 5}, + [7989] = {.lex_state = 380, .external_lex_state = 2}, + [7990] = {.lex_state = 54, .external_lex_state = 2}, + [7991] = {.lex_state = 380, .external_lex_state = 2}, + [7992] = {.lex_state = 58, .external_lex_state = 2}, + [7993] = {.lex_state = 380, .external_lex_state = 2}, + [7994] = {.lex_state = 380, .external_lex_state = 2}, + [7995] = {.lex_state = 380, .external_lex_state = 2}, + [7996] = {.lex_state = 58, .external_lex_state = 2}, + [7997] = {.lex_state = 380, .external_lex_state = 2}, + [7998] = {.lex_state = 380, .external_lex_state = 2}, + [7999] = {.lex_state = 380, .external_lex_state = 2}, + [8000] = {.lex_state = 380, .external_lex_state = 2}, + [8001] = {.lex_state = 380, .external_lex_state = 2}, + [8002] = {.lex_state = 380, .external_lex_state = 2}, + [8003] = {.lex_state = 380, .external_lex_state = 2}, + [8004] = {.lex_state = 380, .external_lex_state = 2}, + [8005] = {.lex_state = 380, .external_lex_state = 2}, + [8006] = {.lex_state = 380, .external_lex_state = 2}, + [8007] = {.lex_state = 380, .external_lex_state = 2}, + [8008] = {.lex_state = 380, .external_lex_state = 2}, + [8009] = {.lex_state = 380, .external_lex_state = 2}, + [8010] = {.lex_state = 380, .external_lex_state = 2}, + [8011] = {.lex_state = 58, .external_lex_state = 2}, + [8012] = {.lex_state = 380, .external_lex_state = 2}, + [8013] = {.lex_state = 380, .external_lex_state = 2}, + [8014] = {.lex_state = 380, .external_lex_state = 2}, + [8015] = {.lex_state = 380, .external_lex_state = 5}, + [8016] = {.lex_state = 380, .external_lex_state = 2}, + [8017] = {.lex_state = 380, .external_lex_state = 2}, + [8018] = {.lex_state = 380, .external_lex_state = 2}, + [8019] = {.lex_state = 380, .external_lex_state = 2}, + [8020] = {.lex_state = 380, .external_lex_state = 2}, + [8021] = {.lex_state = 380, .external_lex_state = 2}, + [8022] = {.lex_state = 380, .external_lex_state = 2}, + [8023] = {.lex_state = 380, .external_lex_state = 2}, + [8024] = {.lex_state = 380, .external_lex_state = 2}, + [8025] = {.lex_state = 380, .external_lex_state = 2}, + [8026] = {.lex_state = 380, .external_lex_state = 2}, + [8027] = {.lex_state = 380, .external_lex_state = 2}, + [8028] = {.lex_state = 380, .external_lex_state = 2}, + [8029] = {.lex_state = 380, .external_lex_state = 2}, + [8030] = {.lex_state = 380, .external_lex_state = 2}, + [8031] = {.lex_state = 380, .external_lex_state = 2}, + [8032] = {.lex_state = 380, .external_lex_state = 2}, + [8033] = {.lex_state = 380, .external_lex_state = 2}, + [8034] = {.lex_state = 380, .external_lex_state = 2}, + [8035] = {.lex_state = 380, .external_lex_state = 2}, + [8036] = {.lex_state = 58, .external_lex_state = 2}, + [8037] = {.lex_state = 58, .external_lex_state = 2}, + [8038] = {.lex_state = 1, .external_lex_state = 2}, + [8039] = {.lex_state = 380, .external_lex_state = 2}, + [8040] = {.lex_state = 380, .external_lex_state = 2}, + [8041] = {.lex_state = 58, .external_lex_state = 2}, + [8042] = {.lex_state = 58, .external_lex_state = 2}, + [8043] = {.lex_state = 54, .external_lex_state = 2}, + [8044] = {.lex_state = 380, .external_lex_state = 2}, + [8045] = {.lex_state = 380, .external_lex_state = 2}, + [8046] = {.lex_state = 380, .external_lex_state = 2}, + [8047] = {.lex_state = 380, .external_lex_state = 5}, + [8048] = {.lex_state = 380, .external_lex_state = 2}, + [8049] = {.lex_state = 380, .external_lex_state = 2}, + [8050] = {.lex_state = 380, .external_lex_state = 2}, + [8051] = {.lex_state = 380, .external_lex_state = 2}, + [8052] = {.lex_state = 380, .external_lex_state = 2}, + [8053] = {.lex_state = 380, .external_lex_state = 2}, + [8054] = {.lex_state = 380, .external_lex_state = 2}, + [8055] = {.lex_state = 380, .external_lex_state = 2}, + [8056] = {.lex_state = 380, .external_lex_state = 2}, + [8057] = {.lex_state = 380, .external_lex_state = 5}, + [8058] = {.lex_state = 380, .external_lex_state = 2}, + [8059] = {.lex_state = 380, .external_lex_state = 2}, + [8060] = {.lex_state = 380, .external_lex_state = 2}, + [8061] = {.lex_state = 380, .external_lex_state = 2}, + [8062] = {.lex_state = 54, .external_lex_state = 2}, + [8063] = {.lex_state = 380, .external_lex_state = 2}, + [8064] = {.lex_state = 380, .external_lex_state = 2}, + [8065] = {.lex_state = 380, .external_lex_state = 2}, + [8066] = {.lex_state = 380, .external_lex_state = 2}, + [8067] = {.lex_state = 380, .external_lex_state = 2}, + [8068] = {.lex_state = 380, .external_lex_state = 5}, + [8069] = {.lex_state = 54, .external_lex_state = 2}, + [8070] = {.lex_state = 58, .external_lex_state = 2}, + [8071] = {.lex_state = 58, .external_lex_state = 2}, + [8072] = {.lex_state = 380, .external_lex_state = 2}, + [8073] = {.lex_state = 380, .external_lex_state = 2}, + [8074] = {.lex_state = 380, .external_lex_state = 2}, + [8075] = {.lex_state = 380, .external_lex_state = 2}, + [8076] = {.lex_state = 380, .external_lex_state = 2}, + [8077] = {.lex_state = 380, .external_lex_state = 2}, + [8078] = {.lex_state = 380, .external_lex_state = 2}, + [8079] = {.lex_state = 380, .external_lex_state = 2}, + [8080] = {.lex_state = 380, .external_lex_state = 2}, + [8081] = {.lex_state = 380, .external_lex_state = 2}, + [8082] = {.lex_state = 380, .external_lex_state = 2}, + [8083] = {.lex_state = 380, .external_lex_state = 5}, + [8084] = {.lex_state = 380, .external_lex_state = 2}, + [8085] = {.lex_state = 380, .external_lex_state = 2}, + [8086] = {.lex_state = 380, .external_lex_state = 2}, + [8087] = {.lex_state = 380, .external_lex_state = 2}, + [8088] = {.lex_state = 58, .external_lex_state = 2}, + [8089] = {.lex_state = 380, .external_lex_state = 2}, + [8090] = {.lex_state = 380, .external_lex_state = 2}, + [8091] = {.lex_state = 380, .external_lex_state = 5}, + [8092] = {.lex_state = 380, .external_lex_state = 2}, + [8093] = {.lex_state = 380, .external_lex_state = 2}, + [8094] = {.lex_state = 380, .external_lex_state = 2}, + [8095] = {.lex_state = 380, .external_lex_state = 5}, + [8096] = {.lex_state = 380, .external_lex_state = 5}, + [8097] = {.lex_state = 380, .external_lex_state = 2}, + [8098] = {.lex_state = 380, .external_lex_state = 2}, + [8099] = {.lex_state = 380, .external_lex_state = 5}, + [8100] = {.lex_state = 58, .external_lex_state = 2}, + [8101] = {.lex_state = 380, .external_lex_state = 2}, + [8102] = {.lex_state = 380, .external_lex_state = 5}, + [8103] = {.lex_state = 380, .external_lex_state = 2}, + [8104] = {.lex_state = 380, .external_lex_state = 2}, + [8105] = {.lex_state = 58, .external_lex_state = 2}, + [8106] = {.lex_state = 380, .external_lex_state = 2}, + [8107] = {.lex_state = 380, .external_lex_state = 2}, + [8108] = {.lex_state = 380, .external_lex_state = 2}, + [8109] = {.lex_state = 380, .external_lex_state = 5}, + [8110] = {.lex_state = 380, .external_lex_state = 2}, + [8111] = {.lex_state = 380, .external_lex_state = 5}, + [8112] = {.lex_state = 380, .external_lex_state = 2}, + [8113] = {.lex_state = 380, .external_lex_state = 2}, + [8114] = {.lex_state = 380, .external_lex_state = 2}, + [8115] = {.lex_state = 380, .external_lex_state = 2}, + [8116] = {.lex_state = 58, .external_lex_state = 2}, + [8117] = {.lex_state = 58, .external_lex_state = 2}, + [8118] = {.lex_state = 58, .external_lex_state = 2}, + [8119] = {.lex_state = 380, .external_lex_state = 2}, + [8120] = {.lex_state = 380, .external_lex_state = 2}, + [8121] = {.lex_state = 58, .external_lex_state = 2}, + [8122] = {.lex_state = 58, .external_lex_state = 2}, + [8123] = {.lex_state = 380, .external_lex_state = 2}, + [8124] = {.lex_state = 380, .external_lex_state = 2}, + [8125] = {.lex_state = 380, .external_lex_state = 2}, + [8126] = {.lex_state = 380, .external_lex_state = 2}, + [8127] = {.lex_state = 380, .external_lex_state = 2}, + [8128] = {.lex_state = 380, .external_lex_state = 2}, + [8129] = {.lex_state = 380, .external_lex_state = 2}, + [8130] = {.lex_state = 380, .external_lex_state = 5}, + [8131] = {.lex_state = 380, .external_lex_state = 5}, + [8132] = {.lex_state = 380, .external_lex_state = 5}, + [8133] = {.lex_state = 380, .external_lex_state = 2}, + [8134] = {.lex_state = 380, .external_lex_state = 5}, + [8135] = {.lex_state = 380, .external_lex_state = 2}, + [8136] = {.lex_state = 380, .external_lex_state = 2}, + [8137] = {.lex_state = 380, .external_lex_state = 2}, + [8138] = {.lex_state = 380, .external_lex_state = 2}, + [8139] = {.lex_state = 380, .external_lex_state = 5}, + [8140] = {.lex_state = 380, .external_lex_state = 5}, + [8141] = {.lex_state = 380, .external_lex_state = 2}, + [8142] = {.lex_state = 380, .external_lex_state = 2}, + [8143] = {.lex_state = 380, .external_lex_state = 5}, + [8144] = {.lex_state = 380, .external_lex_state = 5}, + [8145] = {.lex_state = 380, .external_lex_state = 5}, + [8146] = {.lex_state = 380, .external_lex_state = 5}, + [8147] = {.lex_state = 380, .external_lex_state = 5}, + [8148] = {.lex_state = 380, .external_lex_state = 5}, + [8149] = {.lex_state = 380, .external_lex_state = 2}, + [8150] = {.lex_state = 58, .external_lex_state = 2}, + [8151] = {.lex_state = 380, .external_lex_state = 2}, + [8152] = {.lex_state = 380, .external_lex_state = 2}, + [8153] = {.lex_state = 58, .external_lex_state = 2}, + [8154] = {.lex_state = 380, .external_lex_state = 5}, + [8155] = {.lex_state = 380, .external_lex_state = 5}, + [8156] = {.lex_state = 380, .external_lex_state = 2}, + [8157] = {.lex_state = 380, .external_lex_state = 2}, + [8158] = {.lex_state = 380, .external_lex_state = 2}, + [8159] = {.lex_state = 380, .external_lex_state = 5}, + [8160] = {.lex_state = 380, .external_lex_state = 2}, + [8161] = {.lex_state = 380, .external_lex_state = 2}, + [8162] = {.lex_state = 380, .external_lex_state = 2}, + [8163] = {.lex_state = 380, .external_lex_state = 2}, + [8164] = {.lex_state = 380, .external_lex_state = 2}, + [8165] = {.lex_state = 380, .external_lex_state = 5}, + [8166] = {.lex_state = 380, .external_lex_state = 5}, + [8167] = {.lex_state = 380, .external_lex_state = 2}, + [8168] = {.lex_state = 380, .external_lex_state = 2}, + [8169] = {.lex_state = 380, .external_lex_state = 2}, + [8170] = {.lex_state = 380, .external_lex_state = 2}, + [8171] = {.lex_state = 380, .external_lex_state = 2}, + [8172] = {.lex_state = 380, .external_lex_state = 2}, + [8173] = {.lex_state = 380, .external_lex_state = 2}, + [8174] = {.lex_state = 380, .external_lex_state = 2}, + [8175] = {.lex_state = 380, .external_lex_state = 5}, + [8176] = {.lex_state = 380, .external_lex_state = 5}, + [8177] = {.lex_state = 380, .external_lex_state = 5}, + [8178] = {.lex_state = 380, .external_lex_state = 5}, + [8179] = {.lex_state = 380, .external_lex_state = 2}, + [8180] = {.lex_state = 380, .external_lex_state = 5}, + [8181] = {.lex_state = 380, .external_lex_state = 5}, + [8182] = {.lex_state = 58, .external_lex_state = 2}, + [8183] = {.lex_state = 380, .external_lex_state = 5}, + [8184] = {.lex_state = 58, .external_lex_state = 2}, + [8185] = {.lex_state = 380, .external_lex_state = 2}, + [8186] = {.lex_state = 380, .external_lex_state = 2}, + [8187] = {.lex_state = 380, .external_lex_state = 2}, + [8188] = {.lex_state = 380, .external_lex_state = 2}, + [8189] = {.lex_state = 380, .external_lex_state = 2}, + [8190] = {.lex_state = 380, .external_lex_state = 2}, + [8191] = {.lex_state = 21, .external_lex_state = 2}, + [8192] = {.lex_state = 380, .external_lex_state = 2}, + [8193] = {.lex_state = 380, .external_lex_state = 2}, + [8194] = {.lex_state = 380, .external_lex_state = 2}, + [8195] = {.lex_state = 57, .external_lex_state = 2}, + [8196] = {.lex_state = 58, .external_lex_state = 2}, + [8197] = {.lex_state = 58, .external_lex_state = 2}, + [8198] = {.lex_state = 58, .external_lex_state = 2}, + [8199] = {.lex_state = 54, .external_lex_state = 2}, + [8200] = {.lex_state = 380, .external_lex_state = 2}, + [8201] = {.lex_state = 380, .external_lex_state = 2}, + [8202] = {.lex_state = 380, .external_lex_state = 2}, + [8203] = {.lex_state = 380, .external_lex_state = 2}, + [8204] = {.lex_state = 2, .external_lex_state = 2}, + [8205] = {.lex_state = 380, .external_lex_state = 2}, + [8206] = {.lex_state = 21, .external_lex_state = 2}, + [8207] = {.lex_state = 380, .external_lex_state = 2}, + [8208] = {.lex_state = 380, .external_lex_state = 2}, + [8209] = {.lex_state = 380, .external_lex_state = 2}, + [8210] = {.lex_state = 58, .external_lex_state = 2}, + [8211] = {.lex_state = 54, .external_lex_state = 2}, + [8212] = {.lex_state = 58, .external_lex_state = 2}, + [8213] = {.lex_state = 58, .external_lex_state = 2}, + [8214] = {.lex_state = 58, .external_lex_state = 2}, + [8215] = {.lex_state = 380, .external_lex_state = 2}, + [8216] = {.lex_state = 54, .external_lex_state = 2}, + [8217] = {.lex_state = 380, .external_lex_state = 2}, + [8218] = {.lex_state = 380, .external_lex_state = 2}, + [8219] = {.lex_state = 380, .external_lex_state = 2}, + [8220] = {.lex_state = 380, .external_lex_state = 2}, + [8221] = {.lex_state = 380, .external_lex_state = 2}, + [8222] = {.lex_state = 58, .external_lex_state = 2}, + [8223] = {.lex_state = 380, .external_lex_state = 2}, + [8224] = {.lex_state = 380, .external_lex_state = 2}, + [8225] = {.lex_state = 58, .external_lex_state = 2}, + [8226] = {.lex_state = 380, .external_lex_state = 2}, + [8227] = {.lex_state = 380, .external_lex_state = 2}, + [8228] = {.lex_state = 380, .external_lex_state = 2}, + [8229] = {.lex_state = 58, .external_lex_state = 2}, + [8230] = {.lex_state = 58, .external_lex_state = 2}, + [8231] = {.lex_state = 380, .external_lex_state = 2}, + [8232] = {.lex_state = 380, .external_lex_state = 2}, + [8233] = {.lex_state = 380, .external_lex_state = 2}, + [8234] = {.lex_state = 380, .external_lex_state = 2}, + [8235] = {.lex_state = 58, .external_lex_state = 2}, + [8236] = {.lex_state = 380, .external_lex_state = 2}, + [8237] = {.lex_state = 58, .external_lex_state = 2}, + [8238] = {.lex_state = 380, .external_lex_state = 2}, + [8239] = {.lex_state = 380, .external_lex_state = 2}, + [8240] = {.lex_state = 58, .external_lex_state = 2}, + [8241] = {.lex_state = 54, .external_lex_state = 2}, + [8242] = {.lex_state = 58, .external_lex_state = 2}, + [8243] = {.lex_state = 58, .external_lex_state = 2}, + [8244] = {.lex_state = 380, .external_lex_state = 2}, + [8245] = {.lex_state = 58, .external_lex_state = 2}, + [8246] = {.lex_state = 58, .external_lex_state = 2}, + [8247] = {.lex_state = 58, .external_lex_state = 2}, + [8248] = {.lex_state = 58, .external_lex_state = 2}, + [8249] = {.lex_state = 58, .external_lex_state = 2}, + [8250] = {.lex_state = 380, .external_lex_state = 2}, + [8251] = {.lex_state = 58, .external_lex_state = 2}, + [8252] = {.lex_state = 21, .external_lex_state = 2}, + [8253] = {.lex_state = 380, .external_lex_state = 2}, + [8254] = {.lex_state = 58, .external_lex_state = 2}, + [8255] = {.lex_state = 58, .external_lex_state = 2}, + [8256] = {.lex_state = 380, .external_lex_state = 2}, + [8257] = {.lex_state = 58, .external_lex_state = 2}, + [8258] = {.lex_state = 58, .external_lex_state = 2}, + [8259] = {.lex_state = 380, .external_lex_state = 2}, + [8260] = {.lex_state = 58, .external_lex_state = 2}, + [8261] = {.lex_state = 380, .external_lex_state = 2}, + [8262] = {.lex_state = 57, .external_lex_state = 2}, + [8263] = {.lex_state = 58, .external_lex_state = 2}, + [8264] = {.lex_state = 58, .external_lex_state = 2}, + [8265] = {.lex_state = 380, .external_lex_state = 2}, + [8266] = {.lex_state = 380, .external_lex_state = 2}, + [8267] = {.lex_state = 58, .external_lex_state = 2}, + [8268] = {.lex_state = 58, .external_lex_state = 2}, + [8269] = {.lex_state = 380, .external_lex_state = 2}, + [8270] = {.lex_state = 380, .external_lex_state = 2}, + [8271] = {.lex_state = 380, .external_lex_state = 2}, + [8272] = {.lex_state = 380, .external_lex_state = 2}, + [8273] = {.lex_state = 380, .external_lex_state = 2}, + [8274] = {.lex_state = 380, .external_lex_state = 2}, + [8275] = {.lex_state = 380, .external_lex_state = 2}, + [8276] = {.lex_state = 380, .external_lex_state = 2}, + [8277] = {.lex_state = 380, .external_lex_state = 2}, + [8278] = {.lex_state = 380, .external_lex_state = 2}, + [8279] = {.lex_state = 380, .external_lex_state = 2}, + [8280] = {.lex_state = 380, .external_lex_state = 2}, + [8281] = {.lex_state = 380, .external_lex_state = 2}, + [8282] = {.lex_state = 380, .external_lex_state = 2}, + [8283] = {.lex_state = 2, .external_lex_state = 2}, + [8284] = {.lex_state = 380, .external_lex_state = 2}, + [8285] = {.lex_state = 2, .external_lex_state = 2}, + [8286] = {.lex_state = 380, .external_lex_state = 2}, + [8287] = {.lex_state = 380, .external_lex_state = 2}, + [8288] = {.lex_state = 380, .external_lex_state = 2}, + [8289] = {.lex_state = 380, .external_lex_state = 2}, + [8290] = {.lex_state = 380, .external_lex_state = 2}, + [8291] = {.lex_state = 380, .external_lex_state = 2}, + [8292] = {.lex_state = 380, .external_lex_state = 2}, + [8293] = {.lex_state = 58, .external_lex_state = 2}, + [8294] = {.lex_state = 58, .external_lex_state = 2}, + [8295] = {.lex_state = 380, .external_lex_state = 2}, + [8296] = {.lex_state = 380, .external_lex_state = 2}, + [8297] = {.lex_state = 380, .external_lex_state = 2}, + [8298] = {.lex_state = 380, .external_lex_state = 2}, + [8299] = {.lex_state = 380, .external_lex_state = 2}, + [8300] = {.lex_state = 380, .external_lex_state = 2}, + [8301] = {.lex_state = 57, .external_lex_state = 2}, + [8302] = {.lex_state = 380, .external_lex_state = 2}, + [8303] = {.lex_state = 380, .external_lex_state = 2}, + [8304] = {.lex_state = 380, .external_lex_state = 2}, + [8305] = {.lex_state = 380, .external_lex_state = 2}, + [8306] = {.lex_state = 58, .external_lex_state = 2}, + [8307] = {.lex_state = 380, .external_lex_state = 2}, + [8308] = {.lex_state = 2, .external_lex_state = 2}, + [8309] = {.lex_state = 380, .external_lex_state = 2}, + [8310] = {.lex_state = 380, .external_lex_state = 2}, + [8311] = {.lex_state = 58, .external_lex_state = 2}, + [8312] = {.lex_state = 380, .external_lex_state = 2}, + [8313] = {.lex_state = 57, .external_lex_state = 2}, + [8314] = {.lex_state = 380, .external_lex_state = 2}, + [8315] = {.lex_state = 380, .external_lex_state = 2}, + [8316] = {.lex_state = 380, .external_lex_state = 2}, + [8317] = {.lex_state = 58, .external_lex_state = 2}, + [8318] = {.lex_state = 380, .external_lex_state = 2}, + [8319] = {.lex_state = 380, .external_lex_state = 2}, + [8320] = {.lex_state = 380, .external_lex_state = 2}, + [8321] = {.lex_state = 58, .external_lex_state = 2}, + [8322] = {.lex_state = 380, .external_lex_state = 2}, + [8323] = {.lex_state = 380, .external_lex_state = 2}, + [8324] = {.lex_state = 58, .external_lex_state = 2}, + [8325] = {.lex_state = 58, .external_lex_state = 2}, + [8326] = {.lex_state = 380, .external_lex_state = 2}, + [8327] = {.lex_state = 58, .external_lex_state = 2}, + [8328] = {.lex_state = 380, .external_lex_state = 2}, + [8329] = {.lex_state = 58, .external_lex_state = 2}, + [8330] = {.lex_state = 58, .external_lex_state = 2}, + [8331] = {.lex_state = 380, .external_lex_state = 2}, + [8332] = {.lex_state = 380, .external_lex_state = 2}, + [8333] = {.lex_state = 380, .external_lex_state = 2}, + [8334] = {.lex_state = 380, .external_lex_state = 2}, + [8335] = {.lex_state = 380, .external_lex_state = 2}, + [8336] = {.lex_state = 58, .external_lex_state = 2}, + [8337] = {.lex_state = 380, .external_lex_state = 2}, + [8338] = {.lex_state = 380, .external_lex_state = 2}, + [8339] = {.lex_state = 380, .external_lex_state = 2}, + [8340] = {.lex_state = 380, .external_lex_state = 2}, + [8341] = {.lex_state = 380, .external_lex_state = 2}, + [8342] = {.lex_state = 380, .external_lex_state = 2}, + [8343] = {.lex_state = 380, .external_lex_state = 2}, + [8344] = {.lex_state = 380, .external_lex_state = 2}, + [8345] = {.lex_state = 380, .external_lex_state = 2}, + [8346] = {.lex_state = 380, .external_lex_state = 2}, + [8347] = {.lex_state = 380, .external_lex_state = 2}, + [8348] = {.lex_state = 380, .external_lex_state = 2}, + [8349] = {.lex_state = 380, .external_lex_state = 2}, + [8350] = {.lex_state = 380, .external_lex_state = 2}, + [8351] = {.lex_state = 380, .external_lex_state = 2}, + [8352] = {.lex_state = 380, .external_lex_state = 2}, + [8353] = {.lex_state = 380, .external_lex_state = 2}, + [8354] = {.lex_state = 380, .external_lex_state = 2}, + [8355] = {.lex_state = 380, .external_lex_state = 2}, + [8356] = {.lex_state = 380, .external_lex_state = 2}, + [8357] = {.lex_state = 57, .external_lex_state = 2}, + [8358] = {.lex_state = 380, .external_lex_state = 2}, + [8359] = {.lex_state = 58, .external_lex_state = 2}, + [8360] = {.lex_state = 58, .external_lex_state = 2}, + [8361] = {.lex_state = 58, .external_lex_state = 2}, + [8362] = {.lex_state = 380, .external_lex_state = 2}, + [8363] = {.lex_state = 380, .external_lex_state = 2}, + [8364] = {.lex_state = 58, .external_lex_state = 2}, + [8365] = {.lex_state = 58, .external_lex_state = 2}, + [8366] = {.lex_state = 380, .external_lex_state = 2}, + [8367] = {.lex_state = 380, .external_lex_state = 2}, + [8368] = {.lex_state = 54, .external_lex_state = 2}, + [8369] = {.lex_state = 380, .external_lex_state = 2}, + [8370] = {.lex_state = 380, .external_lex_state = 2}, + [8371] = {.lex_state = 380, .external_lex_state = 2}, + [8372] = {.lex_state = 380, .external_lex_state = 2}, + [8373] = {.lex_state = 58, .external_lex_state = 2}, + [8374] = {.lex_state = 58, .external_lex_state = 2}, + [8375] = {.lex_state = 380, .external_lex_state = 2}, + [8376] = {.lex_state = 380, .external_lex_state = 2}, + [8377] = {.lex_state = 380, .external_lex_state = 2}, + [8378] = {.lex_state = 380, .external_lex_state = 2}, + [8379] = {.lex_state = 380, .external_lex_state = 2}, + [8380] = {.lex_state = 380, .external_lex_state = 2}, + [8381] = {.lex_state = 380, .external_lex_state = 2}, + [8382] = {.lex_state = 54, .external_lex_state = 2}, + [8383] = {.lex_state = 58, .external_lex_state = 2}, + [8384] = {.lex_state = 54, .external_lex_state = 2}, + [8385] = {.lex_state = 380, .external_lex_state = 2}, + [8386] = {.lex_state = 58, .external_lex_state = 2}, + [8387] = {.lex_state = 380, .external_lex_state = 2}, + [8388] = {.lex_state = 58, .external_lex_state = 2}, + [8389] = {.lex_state = 380, .external_lex_state = 2}, + [8390] = {.lex_state = 380, .external_lex_state = 2}, + [8391] = {.lex_state = 58, .external_lex_state = 2}, + [8392] = {.lex_state = 380, .external_lex_state = 2}, + [8393] = {.lex_state = 380, .external_lex_state = 2}, + [8394] = {.lex_state = 380, .external_lex_state = 2}, + [8395] = {.lex_state = 58, .external_lex_state = 2}, + [8396] = {.lex_state = 380, .external_lex_state = 2}, + [8397] = {.lex_state = 58, .external_lex_state = 2}, + [8398] = {.lex_state = 380, .external_lex_state = 2}, + [8399] = {.lex_state = 380, .external_lex_state = 2}, + [8400] = {.lex_state = 380, .external_lex_state = 2}, + [8401] = {.lex_state = 58, .external_lex_state = 2}, + [8402] = {.lex_state = 380, .external_lex_state = 2}, + [8403] = {.lex_state = 380, .external_lex_state = 2}, + [8404] = {.lex_state = 58, .external_lex_state = 2}, + [8405] = {.lex_state = 58, .external_lex_state = 2}, + [8406] = {.lex_state = 380, .external_lex_state = 2}, + [8407] = {.lex_state = 380, .external_lex_state = 2}, + [8408] = {.lex_state = 58, .external_lex_state = 2}, + [8409] = {.lex_state = 380, .external_lex_state = 2}, + [8410] = {.lex_state = 380, .external_lex_state = 2}, + [8411] = {.lex_state = 380, .external_lex_state = 2}, + [8412] = {.lex_state = 380, .external_lex_state = 2}, + [8413] = {.lex_state = 58, .external_lex_state = 2}, + [8414] = {.lex_state = 380, .external_lex_state = 2}, + [8415] = {.lex_state = 58, .external_lex_state = 2}, + [8416] = {.lex_state = 380, .external_lex_state = 2}, + [8417] = {.lex_state = 380, .external_lex_state = 2}, + [8418] = {.lex_state = 380, .external_lex_state = 2}, + [8419] = {.lex_state = 58, .external_lex_state = 2}, + [8420] = {.lex_state = 58, .external_lex_state = 2}, + [8421] = {.lex_state = 380, .external_lex_state = 2}, + [8422] = {.lex_state = 58, .external_lex_state = 2}, + [8423] = {.lex_state = 58, .external_lex_state = 2}, + [8424] = {.lex_state = 58, .external_lex_state = 2}, + [8425] = {.lex_state = 380, .external_lex_state = 2}, + [8426] = {.lex_state = 380, .external_lex_state = 2}, + [8427] = {.lex_state = 380, .external_lex_state = 2}, + [8428] = {.lex_state = 58, .external_lex_state = 2}, + [8429] = {.lex_state = 380, .external_lex_state = 2}, + [8430] = {.lex_state = 58, .external_lex_state = 2}, + [8431] = {.lex_state = 58, .external_lex_state = 2}, + [8432] = {.lex_state = 58, .external_lex_state = 2}, + [8433] = {.lex_state = 380, .external_lex_state = 2}, + [8434] = {.lex_state = 58, .external_lex_state = 2}, + [8435] = {.lex_state = 58, .external_lex_state = 2}, + [8436] = {.lex_state = 58, .external_lex_state = 2}, + [8437] = {.lex_state = 380, .external_lex_state = 2}, + [8438] = {.lex_state = 380, .external_lex_state = 2}, + [8439] = {.lex_state = 58, .external_lex_state = 2}, + [8440] = {.lex_state = 380, .external_lex_state = 2}, + [8441] = {.lex_state = 380, .external_lex_state = 2}, + [8442] = {.lex_state = 58, .external_lex_state = 2}, + [8443] = {.lex_state = 380, .external_lex_state = 2}, + [8444] = {.lex_state = 58, .external_lex_state = 2}, + [8445] = {.lex_state = 380, .external_lex_state = 2}, + [8446] = {.lex_state = 58, .external_lex_state = 2}, + [8447] = {.lex_state = 380, .external_lex_state = 2}, + [8448] = {.lex_state = 58, .external_lex_state = 2}, + [8449] = {.lex_state = 380, .external_lex_state = 2}, + [8450] = {.lex_state = 58, .external_lex_state = 2}, + [8451] = {.lex_state = 380, .external_lex_state = 2}, + [8452] = {.lex_state = 2, .external_lex_state = 2}, + [8453] = {.lex_state = 380, .external_lex_state = 2}, + [8454] = {.lex_state = 380, .external_lex_state = 2}, + [8455] = {.lex_state = 380, .external_lex_state = 2}, + [8456] = {.lex_state = 380, .external_lex_state = 2}, + [8457] = {.lex_state = 380, .external_lex_state = 2}, + [8458] = {.lex_state = 380, .external_lex_state = 2}, + [8459] = {.lex_state = 380, .external_lex_state = 2}, + [8460] = {.lex_state = 380, .external_lex_state = 2}, + [8461] = {.lex_state = 380, .external_lex_state = 2}, + [8462] = {.lex_state = 380, .external_lex_state = 2}, + [8463] = {.lex_state = 380, .external_lex_state = 2}, + [8464] = {.lex_state = 380, .external_lex_state = 2}, + [8465] = {.lex_state = 58, .external_lex_state = 2}, + [8466] = {.lex_state = 58, .external_lex_state = 2}, + [8467] = {.lex_state = 380, .external_lex_state = 2}, + [8468] = {.lex_state = 380, .external_lex_state = 2}, + [8469] = {.lex_state = 21, .external_lex_state = 2}, + [8470] = {.lex_state = 380, .external_lex_state = 2}, + [8471] = {.lex_state = 380, .external_lex_state = 2}, + [8472] = {.lex_state = 58, .external_lex_state = 2}, + [8473] = {.lex_state = 380, .external_lex_state = 2}, + [8474] = {.lex_state = 58, .external_lex_state = 2}, + [8475] = {.lex_state = 58, .external_lex_state = 2}, + [8476] = {.lex_state = 58, .external_lex_state = 2}, + [8477] = {.lex_state = 58, .external_lex_state = 2}, + [8478] = {.lex_state = 380, .external_lex_state = 2}, + [8479] = {.lex_state = 58, .external_lex_state = 2}, + [8480] = {.lex_state = 380, .external_lex_state = 2}, + [8481] = {.lex_state = 58, .external_lex_state = 2}, + [8482] = {.lex_state = 380, .external_lex_state = 2}, + [8483] = {.lex_state = 380, .external_lex_state = 2}, + [8484] = {.lex_state = 58, .external_lex_state = 2}, + [8485] = {.lex_state = 58, .external_lex_state = 2}, + [8486] = {.lex_state = 380, .external_lex_state = 2}, + [8487] = {.lex_state = 380, .external_lex_state = 2}, + [8488] = {.lex_state = 57, .external_lex_state = 2}, + [8489] = {.lex_state = 380, .external_lex_state = 2}, + [8490] = {.lex_state = 58, .external_lex_state = 2}, + [8491] = {.lex_state = 380, .external_lex_state = 2}, + [8492] = {.lex_state = 380, .external_lex_state = 2}, + [8493] = {.lex_state = 380, .external_lex_state = 2}, + [8494] = {.lex_state = 380, .external_lex_state = 2}, + [8495] = {.lex_state = 380, .external_lex_state = 2}, + [8496] = {.lex_state = 58, .external_lex_state = 2}, + [8497] = {.lex_state = 58, .external_lex_state = 2}, + [8498] = {.lex_state = 380, .external_lex_state = 2}, + [8499] = {.lex_state = 380, .external_lex_state = 2}, + [8500] = {.lex_state = 58, .external_lex_state = 2}, + [8501] = {.lex_state = 58, .external_lex_state = 2}, + [8502] = {.lex_state = 58, .external_lex_state = 2}, + [8503] = {.lex_state = 57, .external_lex_state = 2}, + [8504] = {.lex_state = 58, .external_lex_state = 2}, + [8505] = {.lex_state = 380, .external_lex_state = 2}, + [8506] = {.lex_state = 380, .external_lex_state = 2}, + [8507] = {.lex_state = 380, .external_lex_state = 2}, + [8508] = {.lex_state = 380, .external_lex_state = 2}, + [8509] = {.lex_state = 58, .external_lex_state = 2}, + [8510] = {.lex_state = 380, .external_lex_state = 2}, + [8511] = {.lex_state = 58, .external_lex_state = 2}, + [8512] = {.lex_state = 380, .external_lex_state = 2}, + [8513] = {.lex_state = 380, .external_lex_state = 2}, + [8514] = {.lex_state = 58, .external_lex_state = 2}, + [8515] = {.lex_state = 380, .external_lex_state = 2}, + [8516] = {.lex_state = 380, .external_lex_state = 2}, + [8517] = {.lex_state = 380, .external_lex_state = 2}, + [8518] = {.lex_state = 58, .external_lex_state = 2}, + [8519] = {.lex_state = 58, .external_lex_state = 2}, + [8520] = {.lex_state = 380, .external_lex_state = 2}, + [8521] = {.lex_state = 380, .external_lex_state = 2}, + [8522] = {.lex_state = 58, .external_lex_state = 2}, + [8523] = {.lex_state = 58, .external_lex_state = 2}, + [8524] = {.lex_state = 58, .external_lex_state = 2}, + [8525] = {.lex_state = 380, .external_lex_state = 2}, + [8526] = {.lex_state = 380, .external_lex_state = 2}, + [8527] = {.lex_state = 380, .external_lex_state = 2}, + [8528] = {.lex_state = 380, .external_lex_state = 2}, + [8529] = {.lex_state = 380, .external_lex_state = 2}, + [8530] = {.lex_state = 380, .external_lex_state = 2}, + [8531] = {.lex_state = 380, .external_lex_state = 2}, + [8532] = {.lex_state = 380, .external_lex_state = 2}, + [8533] = {.lex_state = 380, .external_lex_state = 2}, + [8534] = {.lex_state = 58, .external_lex_state = 2}, + [8535] = {.lex_state = 58, .external_lex_state = 2}, + [8536] = {.lex_state = 58, .external_lex_state = 2}, + [8537] = {.lex_state = 58, .external_lex_state = 2}, + [8538] = {.lex_state = 380, .external_lex_state = 2}, + [8539] = {.lex_state = 380, .external_lex_state = 2}, + [8540] = {.lex_state = 54, .external_lex_state = 2}, + [8541] = {.lex_state = 54, .external_lex_state = 2}, + [8542] = {.lex_state = 380, .external_lex_state = 2}, + [8543] = {.lex_state = 58, .external_lex_state = 2}, + [8544] = {.lex_state = 380, .external_lex_state = 2}, + [8545] = {.lex_state = 380, .external_lex_state = 2}, + [8546] = {.lex_state = 380, .external_lex_state = 2}, + [8547] = {.lex_state = 58, .external_lex_state = 2}, + [8548] = {.lex_state = 58, .external_lex_state = 2}, + [8549] = {.lex_state = 58, .external_lex_state = 2}, + [8550] = {.lex_state = 380, .external_lex_state = 2}, + [8551] = {.lex_state = 58, .external_lex_state = 2}, + [8552] = {.lex_state = 380, .external_lex_state = 2}, + [8553] = {.lex_state = 380, .external_lex_state = 2}, + [8554] = {.lex_state = 380, .external_lex_state = 2}, + [8555] = {.lex_state = 58, .external_lex_state = 2}, + [8556] = {.lex_state = 380, .external_lex_state = 2}, + [8557] = {.lex_state = 380, .external_lex_state = 2}, + [8558] = {.lex_state = 380, .external_lex_state = 2}, + [8559] = {.lex_state = 380, .external_lex_state = 2}, + [8560] = {.lex_state = 58, .external_lex_state = 2}, + [8561] = {.lex_state = 380, .external_lex_state = 2}, + [8562] = {.lex_state = 380, .external_lex_state = 2}, + [8563] = {.lex_state = 380, .external_lex_state = 2}, + [8564] = {.lex_state = 58, .external_lex_state = 2}, + [8565] = {.lex_state = 58, .external_lex_state = 2}, + [8566] = {.lex_state = 58, .external_lex_state = 2}, + [8567] = {.lex_state = 58, .external_lex_state = 2}, + [8568] = {.lex_state = 380, .external_lex_state = 2}, + [8569] = {.lex_state = 380, .external_lex_state = 2}, + [8570] = {.lex_state = 380, .external_lex_state = 2}, + [8571] = {.lex_state = 380, .external_lex_state = 2}, + [8572] = {.lex_state = 380, .external_lex_state = 2}, + [8573] = {.lex_state = 380, .external_lex_state = 2}, + [8574] = {.lex_state = 380, .external_lex_state = 2}, + [8575] = {.lex_state = 380, .external_lex_state = 2}, + [8576] = {.lex_state = 380, .external_lex_state = 2}, + [8577] = {.lex_state = 380, .external_lex_state = 2}, + [8578] = {.lex_state = 380, .external_lex_state = 2}, + [8579] = {.lex_state = 380, .external_lex_state = 2}, + [8580] = {.lex_state = 58, .external_lex_state = 2}, + [8581] = {.lex_state = 380, .external_lex_state = 2}, + [8582] = {.lex_state = 380, .external_lex_state = 2}, + [8583] = {.lex_state = 380, .external_lex_state = 2}, + [8584] = {.lex_state = 380, .external_lex_state = 2}, + [8585] = {.lex_state = 380, .external_lex_state = 2}, + [8586] = {.lex_state = 380, .external_lex_state = 2}, + [8587] = {.lex_state = 380, .external_lex_state = 2}, + [8588] = {.lex_state = 380, .external_lex_state = 2}, + [8589] = {.lex_state = 380, .external_lex_state = 2}, + [8590] = {.lex_state = 380, .external_lex_state = 2}, + [8591] = {.lex_state = 380, .external_lex_state = 2}, + [8592] = {.lex_state = 58, .external_lex_state = 2}, + [8593] = {.lex_state = 58, .external_lex_state = 2}, + [8594] = {.lex_state = 58, .external_lex_state = 2}, + [8595] = {.lex_state = 58, .external_lex_state = 2}, + [8596] = {.lex_state = 380, .external_lex_state = 2}, + [8597] = {.lex_state = 380, .external_lex_state = 2}, + [8598] = {.lex_state = 380, .external_lex_state = 2}, + [8599] = {.lex_state = 380, .external_lex_state = 2}, + [8600] = {.lex_state = 380, .external_lex_state = 2}, + [8601] = {.lex_state = 58, .external_lex_state = 2}, + [8602] = {.lex_state = 380, .external_lex_state = 2}, + [8603] = {.lex_state = 380, .external_lex_state = 2}, + [8604] = {.lex_state = 380, .external_lex_state = 2}, + [8605] = {.lex_state = 380, .external_lex_state = 2}, + [8606] = {.lex_state = 58, .external_lex_state = 2}, + [8607] = {.lex_state = 380, .external_lex_state = 2}, + [8608] = {.lex_state = 380, .external_lex_state = 2}, + [8609] = {.lex_state = 380, .external_lex_state = 2}, + [8610] = {.lex_state = 58, .external_lex_state = 2}, + [8611] = {.lex_state = 380, .external_lex_state = 2}, + [8612] = {.lex_state = 58, .external_lex_state = 2}, + [8613] = {.lex_state = 380, .external_lex_state = 2}, + [8614] = {.lex_state = 58, .external_lex_state = 2}, + [8615] = {.lex_state = 380, .external_lex_state = 2}, + [8616] = {.lex_state = 380, .external_lex_state = 2}, + [8617] = {.lex_state = 380, .external_lex_state = 2}, + [8618] = {.lex_state = 58, .external_lex_state = 2}, + [8619] = {.lex_state = 58, .external_lex_state = 2}, + [8620] = {.lex_state = 380, .external_lex_state = 2}, + [8621] = {.lex_state = 380, .external_lex_state = 2}, + [8622] = {.lex_state = 380, .external_lex_state = 2}, + [8623] = {.lex_state = 380, .external_lex_state = 2}, + [8624] = {.lex_state = 380, .external_lex_state = 2}, + [8625] = {.lex_state = 380, .external_lex_state = 2}, + [8626] = {.lex_state = 58, .external_lex_state = 2}, + [8627] = {.lex_state = 58, .external_lex_state = 2}, + [8628] = {.lex_state = 380, .external_lex_state = 2}, + [8629] = {.lex_state = 380, .external_lex_state = 2}, + [8630] = {.lex_state = 380, .external_lex_state = 2}, + [8631] = {.lex_state = 58, .external_lex_state = 2}, + [8632] = {.lex_state = 380, .external_lex_state = 2}, + [8633] = {.lex_state = 58, .external_lex_state = 2}, + [8634] = {.lex_state = 380, .external_lex_state = 2}, + [8635] = {.lex_state = 380, .external_lex_state = 2}, + [8636] = {.lex_state = 380, .external_lex_state = 2}, + [8637] = {.lex_state = 380, .external_lex_state = 2}, + [8638] = {.lex_state = 58, .external_lex_state = 2}, + [8639] = {.lex_state = 380, .external_lex_state = 2}, + [8640] = {.lex_state = 380, .external_lex_state = 2}, + [8641] = {.lex_state = 380, .external_lex_state = 2}, + [8642] = {.lex_state = 380, .external_lex_state = 2}, + [8643] = {.lex_state = 58, .external_lex_state = 2}, + [8644] = {.lex_state = 58, .external_lex_state = 2}, + [8645] = {.lex_state = 54, .external_lex_state = 2}, + [8646] = {.lex_state = 380, .external_lex_state = 2}, + [8647] = {.lex_state = 380, .external_lex_state = 2}, + [8648] = {.lex_state = 380, .external_lex_state = 2}, + [8649] = {.lex_state = 57, .external_lex_state = 2}, + [8650] = {.lex_state = 380, .external_lex_state = 2}, + [8651] = {.lex_state = 380, .external_lex_state = 2}, + [8652] = {.lex_state = 380, .external_lex_state = 2}, + [8653] = {.lex_state = 380, .external_lex_state = 2}, + [8654] = {.lex_state = 58, .external_lex_state = 2}, + [8655] = {.lex_state = 58, .external_lex_state = 2}, + [8656] = {.lex_state = 380, .external_lex_state = 2}, + [8657] = {.lex_state = 54, .external_lex_state = 2}, + [8658] = {.lex_state = 57, .external_lex_state = 2}, + [8659] = {.lex_state = 380, .external_lex_state = 2}, + [8660] = {.lex_state = 380, .external_lex_state = 2}, + [8661] = {.lex_state = 380, .external_lex_state = 2}, + [8662] = {.lex_state = 54, .external_lex_state = 2}, + [8663] = {.lex_state = 380, .external_lex_state = 2}, + [8664] = {.lex_state = 380, .external_lex_state = 2}, + [8665] = {.lex_state = 58, .external_lex_state = 2}, + [8666] = {.lex_state = 58, .external_lex_state = 2}, + [8667] = {.lex_state = 380, .external_lex_state = 2}, + [8668] = {.lex_state = 380, .external_lex_state = 2}, + [8669] = {.lex_state = 380, .external_lex_state = 2}, + [8670] = {.lex_state = 380, .external_lex_state = 2}, + [8671] = {.lex_state = 54, .external_lex_state = 2}, + [8672] = {.lex_state = 380, .external_lex_state = 2}, + [8673] = {.lex_state = 58, .external_lex_state = 2}, + [8674] = {.lex_state = 58, .external_lex_state = 2}, + [8675] = {.lex_state = 380, .external_lex_state = 2}, + [8676] = {.lex_state = 380, .external_lex_state = 2}, + [8677] = {.lex_state = 58, .external_lex_state = 2}, + [8678] = {.lex_state = 380, .external_lex_state = 2}, + [8679] = {.lex_state = 380, .external_lex_state = 2}, + [8680] = {.lex_state = 380, .external_lex_state = 2}, + [8681] = {.lex_state = 380, .external_lex_state = 2}, + [8682] = {.lex_state = 380, .external_lex_state = 2}, + [8683] = {.lex_state = 380, .external_lex_state = 2}, + [8684] = {.lex_state = 380, .external_lex_state = 2}, + [8685] = {.lex_state = 58, .external_lex_state = 2}, + [8686] = {.lex_state = 58, .external_lex_state = 2}, + [8687] = {.lex_state = 380, .external_lex_state = 2}, + [8688] = {.lex_state = 380, .external_lex_state = 2}, + [8689] = {.lex_state = 380, .external_lex_state = 2}, + [8690] = {.lex_state = 380, .external_lex_state = 2}, + [8691] = {.lex_state = 380, .external_lex_state = 2}, + [8692] = {.lex_state = 380, .external_lex_state = 2}, + [8693] = {.lex_state = 380, .external_lex_state = 2}, + [8694] = {.lex_state = 58, .external_lex_state = 2}, + [8695] = {.lex_state = 58, .external_lex_state = 2}, + [8696] = {.lex_state = 380, .external_lex_state = 2}, + [8697] = {.lex_state = 380, .external_lex_state = 2}, + [8698] = {.lex_state = 58, .external_lex_state = 2}, + [8699] = {.lex_state = 380, .external_lex_state = 2}, + [8700] = {.lex_state = 58, .external_lex_state = 2}, + [8701] = {.lex_state = 380, .external_lex_state = 2}, + [8702] = {.lex_state = 58, .external_lex_state = 2}, + [8703] = {.lex_state = 380, .external_lex_state = 2}, + [8704] = {.lex_state = 58, .external_lex_state = 2}, + [8705] = {.lex_state = 380, .external_lex_state = 2}, + [8706] = {.lex_state = 58, .external_lex_state = 2}, + [8707] = {.lex_state = 58, .external_lex_state = 2}, + [8708] = {.lex_state = 380, .external_lex_state = 2}, + [8709] = {.lex_state = 58, .external_lex_state = 2}, + [8710] = {.lex_state = 58, .external_lex_state = 2}, + [8711] = {.lex_state = 380, .external_lex_state = 2}, + [8712] = {.lex_state = 58, .external_lex_state = 2}, + [8713] = {.lex_state = 380, .external_lex_state = 2}, + [8714] = {.lex_state = 380, .external_lex_state = 2}, + [8715] = {.lex_state = 58, .external_lex_state = 2}, + [8716] = {.lex_state = 58, .external_lex_state = 2}, + [8717] = {.lex_state = 58, .external_lex_state = 2}, + [8718] = {.lex_state = 380, .external_lex_state = 2}, + [8719] = {.lex_state = 380, .external_lex_state = 2}, + [8720] = {.lex_state = 58, .external_lex_state = 2}, + [8721] = {.lex_state = 380, .external_lex_state = 2}, + [8722] = {.lex_state = 380, .external_lex_state = 2}, + [8723] = {.lex_state = 380, .external_lex_state = 2}, + [8724] = {.lex_state = 380, .external_lex_state = 2}, + [8725] = {.lex_state = 58, .external_lex_state = 2}, + [8726] = {.lex_state = 58, .external_lex_state = 2}, + [8727] = {.lex_state = 380, .external_lex_state = 2}, + [8728] = {.lex_state = 380, .external_lex_state = 2}, + [8729] = {.lex_state = 380, .external_lex_state = 2}, + [8730] = {.lex_state = 380, .external_lex_state = 2}, + [8731] = {.lex_state = 58, .external_lex_state = 2}, + [8732] = {.lex_state = 58, .external_lex_state = 2}, + [8733] = {.lex_state = 380, .external_lex_state = 2}, + [8734] = {.lex_state = 380, .external_lex_state = 2}, + [8735] = {.lex_state = 58, .external_lex_state = 2}, + [8736] = {.lex_state = 58, .external_lex_state = 2}, + [8737] = {.lex_state = 380, .external_lex_state = 2}, + [8738] = {.lex_state = 380, .external_lex_state = 2}, + [8739] = {.lex_state = 58, .external_lex_state = 2}, + [8740] = {.lex_state = 58, .external_lex_state = 2}, + [8741] = {.lex_state = 380, .external_lex_state = 2}, + [8742] = {.lex_state = 58, .external_lex_state = 2}, + [8743] = {(TSStateId)(-1)}, +}; + +enum { + 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__function_signature_automatic_semicolon = 6, +}; + +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__function_signature_automatic_semicolon] = sym__function_signature_automatic_semicolon, +}; + +static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__automatic_semicolon] = true, + [ts_external_token__template_chars] = true, + [ts_external_token__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, + }, + [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, + }, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [sym_comment] = STATE(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_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), + [anon_sym_LTtemplate_GT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_DOT] = 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_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), + [aux_sym_comment_token1] = 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_property] = ACTIONS(1), + [anon_sym_signal] = ACTIONS(1), + [anon_sym_on] = ACTIONS(1), + [anon_sym_required] = ACTIONS(1), + [anon_sym_component] = ACTIONS(1), + [anon_sym_abstract] = 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), + [anon_sym_pragma] = ACTIONS(1), + [aux_sym_ui_version_specifier_token1] = ACTIONS(1), + [anon_sym_list] = 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), + }, + [1] = { + [sym_program] = STATE(8703), + [sym_comment] = STATE(1), + [sym_ui_pragma] = STATE(4475), + [sym_ui_import] = STATE(4475), + [sym_ui_object_definition] = STATE(8667), + [sym_ui_annotated_object] = STATE(8667), + [sym_ui_annotation] = STATE(4483), + [sym_ui_nested_identifier] = STATE(7330), + [aux_sym_program_repeat1] = STATE(3774), + [aux_sym_ui_annotated_object_repeat1] = STATE(4444), + [sym_identifier] = ACTIONS(7), + [sym_hash_bang_line] = ACTIONS(9), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(11), + [anon_sym_namespace] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_from] = ACTIONS(11), + [anon_sym_let] = ACTIONS(11), + [anon_sym_of] = ACTIONS(11), + [anon_sym_async] = ACTIONS(11), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_AT] = ACTIONS(15), + [anon_sym_static] = ACTIONS(11), + [anon_sym_readonly] = ACTIONS(11), + [anon_sym_get] = ACTIONS(11), + [anon_sym_set] = ACTIONS(11), + [anon_sym_declare] = ACTIONS(11), + [anon_sym_public] = ACTIONS(11), + [anon_sym_private] = ACTIONS(11), + [anon_sym_protected] = ACTIONS(11), + [anon_sym_override] = ACTIONS(11), + [anon_sym_module] = ACTIONS(11), + [anon_sym_any] = ACTIONS(11), + [anon_sym_number] = ACTIONS(11), + [anon_sym_boolean] = ACTIONS(11), + [anon_sym_string] = ACTIONS(11), + [anon_sym_symbol] = ACTIONS(11), + [anon_sym_object] = ACTIONS(11), + [anon_sym_property] = ACTIONS(11), + [anon_sym_signal] = ACTIONS(11), + [anon_sym_on] = ACTIONS(11), + [anon_sym_required] = ACTIONS(11), + [anon_sym_component] = ACTIONS(11), + [anon_sym_pragma] = ACTIONS(17), + [sym_html_comment] = ACTIONS(5), + }, + [2] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(2), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(6164), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(727), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(32), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(34), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(21), + [anon_sym_COLON] = ACTIONS(34), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(52), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(68), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(80), + [anon_sym_DASH] = ACTIONS(80), + [anon_sym_SLASH] = ACTIONS(82), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(89), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(91), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(100), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(104), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(108), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(112), + [anon_sym_number] = ACTIONS(112), + [anon_sym_boolean] = ACTIONS(112), + [anon_sym_string] = ACTIONS(112), + [anon_sym_symbol] = ACTIONS(112), + [anon_sym_object] = ACTIONS(112), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [3] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(3), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(6164), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(727), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(32), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(21), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(52), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(68), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(80), + [anon_sym_DASH] = ACTIONS(80), + [anon_sym_SLASH] = ACTIONS(82), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(89), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(91), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(100), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(104), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(108), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(112), + [anon_sym_number] = ACTIONS(112), + [anon_sym_boolean] = ACTIONS(112), + [anon_sym_string] = ACTIONS(112), + [anon_sym_symbol] = ACTIONS(112), + [anon_sym_object] = ACTIONS(112), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [4] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8478), + [sym_spread_element] = STATE(7345), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3725), + [sym_comment] = STATE(4), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(7345), + [sym_pair] = STATE(7345), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(5413), + [sym_computed_property_name] = STATE(5344), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_accessibility_modifier] = STATE(3779), + [sym_override_modifier] = STATE(3869), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(37), + [aux_sym_object_repeat1] = STATE(7340), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(135), + [anon_sym_export] = ACTIONS(137), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_type] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(143), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(155), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(161), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(155), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(203), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(207), + [anon_sym_using] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(219), + [sym_private_property_identifier] = ACTIONS(221), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(227), + [anon_sym_readonly] = ACTIONS(229), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(231), + [anon_sym_declare] = ACTIONS(233), + [anon_sym_public] = ACTIONS(235), + [anon_sym_private] = ACTIONS(235), + [anon_sym_protected] = ACTIONS(235), + [anon_sym_override] = ACTIONS(237), + [anon_sym_module] = ACTIONS(239), + [anon_sym_any] = ACTIONS(155), + [anon_sym_number] = ACTIONS(155), + [anon_sym_boolean] = ACTIONS(155), + [anon_sym_string] = ACTIONS(155), + [anon_sym_symbol] = ACTIONS(155), + [anon_sym_object] = ACTIONS(155), + [anon_sym_property] = ACTIONS(155), + [anon_sym_signal] = ACTIONS(155), + [anon_sym_on] = ACTIONS(155), + [anon_sym_required] = ACTIONS(155), + [anon_sym_component] = ACTIONS(155), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [5] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8478), + [sym_spread_element] = STATE(7345), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3725), + [sym_comment] = STATE(5), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(7345), + [sym_pair] = STATE(7345), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(5413), + [sym_computed_property_name] = STATE(5344), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_accessibility_modifier] = STATE(3779), + [sym_override_modifier] = STATE(3869), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(37), + [aux_sym_object_repeat1] = STATE(7340), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(247), + [anon_sym_export] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_type] = ACTIONS(251), + [anon_sym_namespace] = ACTIONS(253), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(255), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(257), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(255), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(259), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(261), + [anon_sym_using] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(219), + [sym_private_property_identifier] = ACTIONS(221), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(263), + [anon_sym_readonly] = ACTIONS(265), + [anon_sym_get] = ACTIONS(267), + [anon_sym_set] = ACTIONS(267), + [anon_sym_declare] = ACTIONS(269), + [anon_sym_public] = ACTIONS(271), + [anon_sym_private] = ACTIONS(271), + [anon_sym_protected] = ACTIONS(271), + [anon_sym_override] = ACTIONS(273), + [anon_sym_module] = ACTIONS(275), + [anon_sym_any] = ACTIONS(255), + [anon_sym_number] = ACTIONS(255), + [anon_sym_boolean] = ACTIONS(255), + [anon_sym_string] = ACTIONS(255), + [anon_sym_symbol] = ACTIONS(255), + [anon_sym_object] = ACTIONS(255), + [anon_sym_property] = ACTIONS(255), + [anon_sym_signal] = ACTIONS(255), + [anon_sym_on] = ACTIONS(255), + [anon_sym_required] = ACTIONS(255), + [anon_sym_component] = ACTIONS(255), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [6] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8478), + [sym_spread_element] = STATE(6846), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3725), + [sym_comment] = STATE(6), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(6846), + [sym_pair] = STATE(6846), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(5413), + [sym_computed_property_name] = STATE(5344), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_accessibility_modifier] = STATE(3779), + [sym_override_modifier] = STATE(3869), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(22), + [aux_sym_object_repeat1] = STATE(6853), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(277), + [anon_sym_export] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_type] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(287), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(289), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(287), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(291), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(293), + [anon_sym_using] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(219), + [sym_private_property_identifier] = ACTIONS(221), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [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(287), + [anon_sym_number] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_string] = ACTIONS(287), + [anon_sym_symbol] = ACTIONS(287), + [anon_sym_object] = ACTIONS(287), + [anon_sym_property] = ACTIONS(287), + [anon_sym_signal] = ACTIONS(287), + [anon_sym_on] = ACTIONS(287), + [anon_sym_required] = ACTIONS(287), + [anon_sym_component] = ACTIONS(287), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [7] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8478), + [sym_spread_element] = STATE(6846), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3725), + [sym_comment] = STATE(7), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(6846), + [sym_pair] = STATE(6846), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(5413), + [sym_computed_property_name] = STATE(5344), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_accessibility_modifier] = STATE(3779), + [sym_override_modifier] = STATE(3869), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(80), + [aux_sym_object_repeat1] = STATE(6853), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(277), + [anon_sym_export] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_type] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(287), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(289), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(287), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(291), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(293), + [anon_sym_using] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(219), + [sym_private_property_identifier] = ACTIONS(221), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [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(287), + [anon_sym_number] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_string] = ACTIONS(287), + [anon_sym_symbol] = ACTIONS(287), + [anon_sym_object] = ACTIONS(287), + [anon_sym_property] = ACTIONS(287), + [anon_sym_signal] = ACTIONS(287), + [anon_sym_on] = ACTIONS(287), + [anon_sym_required] = ACTIONS(287), + [anon_sym_component] = ACTIONS(287), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [8] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8478), + [sym_spread_element] = STATE(6846), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3725), + [sym_comment] = STATE(8), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(6846), + [sym_pair] = STATE(6846), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(5413), + [sym_computed_property_name] = STATE(5344), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_accessibility_modifier] = STATE(3779), + [sym_override_modifier] = STATE(3869), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(23), + [aux_sym_object_repeat1] = STATE(6853), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(277), + [anon_sym_export] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_type] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(287), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(289), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(287), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(291), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(293), + [anon_sym_using] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(219), + [sym_private_property_identifier] = ACTIONS(221), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [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(287), + [anon_sym_number] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_string] = ACTIONS(287), + [anon_sym_symbol] = ACTIONS(287), + [anon_sym_object] = ACTIONS(287), + [anon_sym_property] = ACTIONS(287), + [anon_sym_signal] = ACTIONS(287), + [anon_sym_on] = ACTIONS(287), + [anon_sym_required] = ACTIONS(287), + [anon_sym_component] = ACTIONS(287), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [9] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8478), + [sym_spread_element] = STATE(6846), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3725), + [sym_comment] = STATE(9), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(6846), + [sym_pair] = STATE(6846), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(5413), + [sym_computed_property_name] = STATE(5344), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_accessibility_modifier] = STATE(3779), + [sym_override_modifier] = STATE(3869), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(30), + [aux_sym_object_repeat1] = STATE(6853), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(277), + [anon_sym_export] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_type] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(287), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(289), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(287), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(291), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(293), + [anon_sym_using] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(219), + [sym_private_property_identifier] = ACTIONS(221), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [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(287), + [anon_sym_number] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_string] = ACTIONS(287), + [anon_sym_symbol] = ACTIONS(287), + [anon_sym_object] = ACTIONS(287), + [anon_sym_property] = ACTIONS(287), + [anon_sym_signal] = ACTIONS(287), + [anon_sym_on] = ACTIONS(287), + [anon_sym_required] = ACTIONS(287), + [anon_sym_component] = ACTIONS(287), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [10] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8478), + [sym_spread_element] = STATE(6846), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3725), + [sym_comment] = STATE(10), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(6846), + [sym_pair] = STATE(6846), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(5413), + [sym_computed_property_name] = STATE(5344), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_accessibility_modifier] = STATE(3779), + [sym_override_modifier] = STATE(3869), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(31), + [aux_sym_object_repeat1] = STATE(6853), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(277), + [anon_sym_export] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_type] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(287), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(289), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(287), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(291), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(293), + [anon_sym_using] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(219), + [sym_private_property_identifier] = ACTIONS(221), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [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(287), + [anon_sym_number] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_string] = ACTIONS(287), + [anon_sym_symbol] = ACTIONS(287), + [anon_sym_object] = ACTIONS(287), + [anon_sym_property] = ACTIONS(287), + [anon_sym_signal] = ACTIONS(287), + [anon_sym_on] = ACTIONS(287), + [anon_sym_required] = ACTIONS(287), + [anon_sym_component] = ACTIONS(287), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [11] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8478), + [sym_spread_element] = STATE(6846), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3725), + [sym_comment] = STATE(11), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(6846), + [sym_pair] = STATE(6846), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(5413), + [sym_computed_property_name] = STATE(5344), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_accessibility_modifier] = STATE(3779), + [sym_override_modifier] = STATE(3869), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(69), + [aux_sym_object_repeat1] = STATE(6853), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(277), + [anon_sym_export] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_type] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(287), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(289), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(287), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(291), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(293), + [anon_sym_using] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(219), + [sym_private_property_identifier] = ACTIONS(221), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [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(287), + [anon_sym_number] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_string] = ACTIONS(287), + [anon_sym_symbol] = ACTIONS(287), + [anon_sym_object] = ACTIONS(287), + [anon_sym_property] = ACTIONS(287), + [anon_sym_signal] = ACTIONS(287), + [anon_sym_on] = ACTIONS(287), + [anon_sym_required] = ACTIONS(287), + [anon_sym_component] = ACTIONS(287), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [12] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8478), + [sym_spread_element] = STATE(6846), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3725), + [sym_comment] = STATE(12), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(6846), + [sym_pair] = STATE(6846), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(5413), + [sym_computed_property_name] = STATE(5344), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_accessibility_modifier] = STATE(3779), + [sym_override_modifier] = STATE(3869), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(54), + [aux_sym_object_repeat1] = STATE(6853), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(277), + [anon_sym_export] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_type] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(287), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(289), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(287), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(291), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(293), + [anon_sym_using] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(219), + [sym_private_property_identifier] = ACTIONS(221), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [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(287), + [anon_sym_number] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_string] = ACTIONS(287), + [anon_sym_symbol] = ACTIONS(287), + [anon_sym_object] = ACTIONS(287), + [anon_sym_property] = ACTIONS(287), + [anon_sym_signal] = ACTIONS(287), + [anon_sym_on] = ACTIONS(287), + [anon_sym_required] = ACTIONS(287), + [anon_sym_component] = ACTIONS(287), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [13] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8478), + [sym_spread_element] = STATE(7345), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3725), + [sym_comment] = STATE(13), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(7345), + [sym_pair] = STATE(7345), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(5413), + [sym_computed_property_name] = STATE(5344), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_accessibility_modifier] = STATE(3779), + [sym_override_modifier] = STATE(3869), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(37), + [aux_sym_object_repeat1] = STATE(7340), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(321), + [anon_sym_export] = ACTIONS(323), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_type] = ACTIONS(325), + [anon_sym_namespace] = ACTIONS(327), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(149), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(329), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(331), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(329), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(333), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(335), + [anon_sym_using] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(219), + [sym_private_property_identifier] = ACTIONS(221), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(337), + [anon_sym_readonly] = ACTIONS(339), + [anon_sym_get] = ACTIONS(341), + [anon_sym_set] = ACTIONS(341), + [anon_sym_declare] = ACTIONS(343), + [anon_sym_public] = ACTIONS(345), + [anon_sym_private] = ACTIONS(345), + [anon_sym_protected] = ACTIONS(345), + [anon_sym_override] = ACTIONS(347), + [anon_sym_module] = ACTIONS(349), + [anon_sym_any] = ACTIONS(329), + [anon_sym_number] = ACTIONS(329), + [anon_sym_boolean] = ACTIONS(329), + [anon_sym_string] = ACTIONS(329), + [anon_sym_symbol] = ACTIONS(329), + [anon_sym_object] = ACTIONS(329), + [anon_sym_property] = ACTIONS(329), + [anon_sym_signal] = ACTIONS(329), + [anon_sym_on] = ACTIONS(329), + [anon_sym_required] = ACTIONS(329), + [anon_sym_component] = ACTIONS(329), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [14] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8478), + [sym_spread_element] = STATE(6846), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3725), + [sym_comment] = STATE(14), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(6846), + [sym_pair] = STATE(6846), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(5413), + [sym_computed_property_name] = STATE(5344), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_accessibility_modifier] = STATE(3779), + [sym_override_modifier] = STATE(3869), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(58), + [aux_sym_object_repeat1] = STATE(6853), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(277), + [anon_sym_export] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_type] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(351), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(287), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(289), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(287), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(291), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(293), + [anon_sym_using] = ACTIONS(209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(219), + [sym_private_property_identifier] = ACTIONS(221), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [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(287), + [anon_sym_number] = ACTIONS(287), + [anon_sym_boolean] = ACTIONS(287), + [anon_sym_string] = ACTIONS(287), + [anon_sym_symbol] = ACTIONS(287), + [anon_sym_object] = ACTIONS(287), + [anon_sym_property] = ACTIONS(287), + [anon_sym_signal] = ACTIONS(287), + [anon_sym_on] = ACTIONS(287), + [anon_sym_required] = ACTIONS(287), + [anon_sym_component] = ACTIONS(287), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [15] = { + [sym_export_statement] = STATE(1311), + [sym_declaration] = STATE(1311), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1311), + [sym_expression_statement] = STATE(1311), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_statement_block] = STATE(1311), + [sym_if_statement] = STATE(1311), + [sym_switch_statement] = STATE(1311), + [sym_for_statement] = STATE(1311), + [sym_for_in_statement] = STATE(1311), + [sym_while_statement] = STATE(1311), + [sym_do_statement] = STATE(1311), + [sym_try_statement] = STATE(1311), + [sym_with_statement] = STATE(1311), + [sym_break_statement] = STATE(1311), + [sym_continue_statement] = STATE(1311), + [sym_debugger_statement] = STATE(1311), + [sym_return_statement] = STATE(1311), + [sym_throw_statement] = STATE(1311), + [sym_empty_statement] = STATE(1311), + [sym_labeled_statement] = STATE(1311), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7389), + [sym_string] = STATE(3558), + [sym_comment] = STATE(15), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_statement_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(353), + [anon_sym_export] = ACTIONS(356), + [anon_sym_default] = ACTIONS(359), + [anon_sym_type] = ACTIONS(361), + [anon_sym_namespace] = ACTIONS(364), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_RBRACE] = ACTIONS(359), + [anon_sym_typeof] = ACTIONS(370), + [anon_sym_import] = ACTIONS(373), + [anon_sym_from] = ACTIONS(376), + [anon_sym_with] = ACTIONS(379), + [anon_sym_var] = ACTIONS(382), + [anon_sym_let] = ACTIONS(385), + [anon_sym_const] = ACTIONS(388), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_if] = ACTIONS(391), + [anon_sym_switch] = ACTIONS(394), + [anon_sym_for] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym_await] = ACTIONS(403), + [anon_sym_of] = ACTIONS(376), + [anon_sym_while] = ACTIONS(406), + [anon_sym_do] = ACTIONS(409), + [anon_sym_try] = ACTIONS(412), + [anon_sym_break] = ACTIONS(415), + [anon_sym_continue] = ACTIONS(418), + [anon_sym_debugger] = ACTIONS(421), + [anon_sym_return] = ACTIONS(424), + [anon_sym_throw] = ACTIONS(427), + [anon_sym_SEMI] = ACTIONS(430), + [anon_sym_case] = ACTIONS(359), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_LTtemplate_GT] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(442), + [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_class] = ACTIONS(448), + [anon_sym_async] = ACTIONS(451), + [anon_sym_function] = ACTIONS(454), + [anon_sym_new] = ACTIONS(457), + [anon_sym_using] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(370), + [anon_sym_DASH] = ACTIONS(370), + [anon_sym_SLASH] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_void] = ACTIONS(370), + [anon_sym_delete] = ACTIONS(370), + [anon_sym_PLUS_PLUS] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(469), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(472), + [sym_number] = ACTIONS(475), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(475), + [sym_super] = ACTIONS(475), + [sym_true] = ACTIONS(475), + [sym_false] = ACTIONS(475), + [sym_null] = ACTIONS(475), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_static] = ACTIONS(376), + [anon_sym_readonly] = ACTIONS(376), + [anon_sym_get] = ACTIONS(376), + [anon_sym_set] = ACTIONS(376), + [anon_sym_declare] = ACTIONS(487), + [anon_sym_public] = ACTIONS(376), + [anon_sym_private] = ACTIONS(376), + [anon_sym_protected] = ACTIONS(376), + [anon_sym_override] = ACTIONS(376), + [anon_sym_module] = ACTIONS(490), + [anon_sym_any] = ACTIONS(376), + [anon_sym_number] = ACTIONS(376), + [anon_sym_boolean] = ACTIONS(376), + [anon_sym_string] = ACTIONS(376), + [anon_sym_symbol] = ACTIONS(376), + [anon_sym_object] = ACTIONS(376), + [anon_sym_property] = ACTIONS(376), + [anon_sym_signal] = ACTIONS(376), + [anon_sym_on] = ACTIONS(376), + [anon_sym_required] = ACTIONS(376), + [anon_sym_component] = ACTIONS(376), + [anon_sym_abstract] = ACTIONS(493), + [anon_sym_interface] = ACTIONS(496), + [anon_sym_enum] = ACTIONS(499), + [sym_html_comment] = ACTIONS(5), + }, + [16] = { + [sym_export_statement] = STATE(1311), + [sym_declaration] = STATE(1311), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1311), + [sym_expression_statement] = STATE(1311), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_statement_block] = STATE(1311), + [sym_if_statement] = STATE(1311), + [sym_switch_statement] = STATE(1311), + [sym_for_statement] = STATE(1311), + [sym_for_in_statement] = STATE(1311), + [sym_while_statement] = STATE(1311), + [sym_do_statement] = STATE(1311), + [sym_try_statement] = STATE(1311), + [sym_with_statement] = STATE(1311), + [sym_break_statement] = STATE(1311), + [sym_continue_statement] = STATE(1311), + [sym_debugger_statement] = STATE(1311), + [sym_return_statement] = STATE(1311), + [sym_throw_statement] = STATE(1311), + [sym_empty_statement] = STATE(1311), + [sym_labeled_statement] = STATE(1311), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7389), + [sym_string] = STATE(3558), + [sym_comment] = STATE(16), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_statement_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(502), + [anon_sym_export] = ACTIONS(504), + [anon_sym_default] = ACTIONS(506), + [anon_sym_type] = ACTIONS(508), + [anon_sym_namespace] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(506), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(514), + [anon_sym_from] = ACTIONS(516), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_const] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_for] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(516), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(534), + [anon_sym_try] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_debugger] = ACTIONS(542), + [anon_sym_return] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_case] = ACTIONS(506), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(552), + [anon_sym_async] = ACTIONS(554), + [anon_sym_function] = ACTIONS(556), + [anon_sym_new] = ACTIONS(558), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(516), + [anon_sym_readonly] = ACTIONS(516), + [anon_sym_get] = ACTIONS(516), + [anon_sym_set] = ACTIONS(516), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_override] = ACTIONS(516), + [anon_sym_module] = ACTIONS(564), + [anon_sym_any] = ACTIONS(516), + [anon_sym_number] = ACTIONS(516), + [anon_sym_boolean] = ACTIONS(516), + [anon_sym_string] = ACTIONS(516), + [anon_sym_symbol] = ACTIONS(516), + [anon_sym_object] = ACTIONS(516), + [anon_sym_property] = ACTIONS(516), + [anon_sym_signal] = ACTIONS(516), + [anon_sym_on] = ACTIONS(516), + [anon_sym_required] = ACTIONS(516), + [anon_sym_component] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [17] = { + [sym_export_statement] = STATE(1311), + [sym_declaration] = STATE(1311), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1311), + [sym_expression_statement] = STATE(1311), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_statement_block] = STATE(1311), + [sym_if_statement] = STATE(1311), + [sym_switch_statement] = STATE(1311), + [sym_for_statement] = STATE(1311), + [sym_for_in_statement] = STATE(1311), + [sym_while_statement] = STATE(1311), + [sym_do_statement] = STATE(1311), + [sym_try_statement] = STATE(1311), + [sym_with_statement] = STATE(1311), + [sym_break_statement] = STATE(1311), + [sym_continue_statement] = STATE(1311), + [sym_debugger_statement] = STATE(1311), + [sym_return_statement] = STATE(1311), + [sym_throw_statement] = STATE(1311), + [sym_empty_statement] = STATE(1311), + [sym_labeled_statement] = STATE(1311), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7389), + [sym_string] = STATE(3558), + [sym_comment] = STATE(17), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_statement_block_repeat1] = STATE(18), + [sym_identifier] = ACTIONS(502), + [anon_sym_export] = ACTIONS(504), + [anon_sym_default] = ACTIONS(572), + [anon_sym_type] = ACTIONS(508), + [anon_sym_namespace] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(572), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(514), + [anon_sym_from] = ACTIONS(516), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_const] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_for] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(516), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(534), + [anon_sym_try] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_debugger] = ACTIONS(542), + [anon_sym_return] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_case] = ACTIONS(572), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(552), + [anon_sym_async] = ACTIONS(554), + [anon_sym_function] = ACTIONS(556), + [anon_sym_new] = ACTIONS(558), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(516), + [anon_sym_readonly] = ACTIONS(516), + [anon_sym_get] = ACTIONS(516), + [anon_sym_set] = ACTIONS(516), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_override] = ACTIONS(516), + [anon_sym_module] = ACTIONS(564), + [anon_sym_any] = ACTIONS(516), + [anon_sym_number] = ACTIONS(516), + [anon_sym_boolean] = ACTIONS(516), + [anon_sym_string] = ACTIONS(516), + [anon_sym_symbol] = ACTIONS(516), + [anon_sym_object] = ACTIONS(516), + [anon_sym_property] = ACTIONS(516), + [anon_sym_signal] = ACTIONS(516), + [anon_sym_on] = ACTIONS(516), + [anon_sym_required] = ACTIONS(516), + [anon_sym_component] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [18] = { + [sym_export_statement] = STATE(1311), + [sym_declaration] = STATE(1311), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1311), + [sym_expression_statement] = STATE(1311), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_statement_block] = STATE(1311), + [sym_if_statement] = STATE(1311), + [sym_switch_statement] = STATE(1311), + [sym_for_statement] = STATE(1311), + [sym_for_in_statement] = STATE(1311), + [sym_while_statement] = STATE(1311), + [sym_do_statement] = STATE(1311), + [sym_try_statement] = STATE(1311), + [sym_with_statement] = STATE(1311), + [sym_break_statement] = STATE(1311), + [sym_continue_statement] = STATE(1311), + [sym_debugger_statement] = STATE(1311), + [sym_return_statement] = STATE(1311), + [sym_throw_statement] = STATE(1311), + [sym_empty_statement] = STATE(1311), + [sym_labeled_statement] = STATE(1311), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7389), + [sym_string] = STATE(3558), + [sym_comment] = STATE(18), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_statement_block_repeat1] = STATE(15), + [sym_identifier] = ACTIONS(502), + [anon_sym_export] = ACTIONS(504), + [anon_sym_default] = ACTIONS(574), + [anon_sym_type] = ACTIONS(508), + [anon_sym_namespace] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(574), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(514), + [anon_sym_from] = ACTIONS(516), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_const] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_for] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(516), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(534), + [anon_sym_try] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_debugger] = ACTIONS(542), + [anon_sym_return] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_case] = ACTIONS(574), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(552), + [anon_sym_async] = ACTIONS(554), + [anon_sym_function] = ACTIONS(556), + [anon_sym_new] = ACTIONS(558), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(516), + [anon_sym_readonly] = ACTIONS(516), + [anon_sym_get] = ACTIONS(516), + [anon_sym_set] = ACTIONS(516), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_override] = ACTIONS(516), + [anon_sym_module] = ACTIONS(564), + [anon_sym_any] = ACTIONS(516), + [anon_sym_number] = ACTIONS(516), + [anon_sym_boolean] = ACTIONS(516), + [anon_sym_string] = ACTIONS(516), + [anon_sym_symbol] = ACTIONS(516), + [anon_sym_object] = ACTIONS(516), + [anon_sym_property] = ACTIONS(516), + [anon_sym_signal] = ACTIONS(516), + [anon_sym_on] = ACTIONS(516), + [anon_sym_required] = ACTIONS(516), + [anon_sym_component] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [19] = { + [sym_export_statement] = STATE(1311), + [sym_declaration] = STATE(1311), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1311), + [sym_expression_statement] = STATE(1311), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_statement_block] = STATE(1311), + [sym_if_statement] = STATE(1311), + [sym_switch_statement] = STATE(1311), + [sym_for_statement] = STATE(1311), + [sym_for_in_statement] = STATE(1311), + [sym_while_statement] = STATE(1311), + [sym_do_statement] = STATE(1311), + [sym_try_statement] = STATE(1311), + [sym_with_statement] = STATE(1311), + [sym_break_statement] = STATE(1311), + [sym_continue_statement] = STATE(1311), + [sym_debugger_statement] = STATE(1311), + [sym_return_statement] = STATE(1311), + [sym_throw_statement] = STATE(1311), + [sym_empty_statement] = STATE(1311), + [sym_labeled_statement] = STATE(1311), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7389), + [sym_string] = STATE(3558), + [sym_comment] = STATE(19), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5504), + [aux_sym_statement_block_repeat1] = STATE(16), + [sym_identifier] = ACTIONS(502), + [anon_sym_export] = ACTIONS(504), + [anon_sym_default] = ACTIONS(576), + [anon_sym_type] = ACTIONS(508), + [anon_sym_namespace] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(514), + [anon_sym_from] = ACTIONS(516), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_const] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_for] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(516), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(534), + [anon_sym_try] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_debugger] = ACTIONS(542), + [anon_sym_return] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_case] = ACTIONS(576), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(552), + [anon_sym_async] = ACTIONS(554), + [anon_sym_function] = ACTIONS(556), + [anon_sym_new] = ACTIONS(558), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(516), + [anon_sym_readonly] = ACTIONS(516), + [anon_sym_get] = ACTIONS(516), + [anon_sym_set] = ACTIONS(516), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_override] = ACTIONS(516), + [anon_sym_module] = ACTIONS(564), + [anon_sym_any] = ACTIONS(516), + [anon_sym_number] = ACTIONS(516), + [anon_sym_boolean] = ACTIONS(516), + [anon_sym_string] = ACTIONS(516), + [anon_sym_symbol] = ACTIONS(516), + [anon_sym_object] = ACTIONS(516), + [anon_sym_property] = ACTIONS(516), + [anon_sym_signal] = ACTIONS(516), + [anon_sym_on] = ACTIONS(516), + [anon_sym_required] = ACTIONS(516), + [anon_sym_component] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [20] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(20), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [21] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(21), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(20), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [22] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(22), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [23] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(23), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [24] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(24), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(54), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [25] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(25), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(44), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [26] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(26), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [27] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(27), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(56), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [28] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(28), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(614), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [29] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(29), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(616), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [30] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(30), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(618), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [31] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(31), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [32] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(32), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(28), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [33] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(33), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [34] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(34), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(22), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(626), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [35] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(35), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(33), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [36] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(36), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [37] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(37), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [38] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(38), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(634), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [39] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(39), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(38), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [40] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(40), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(638), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [41] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(41), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [42] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(42), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(41), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [43] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(43), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [44] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(44), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(646), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [45] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(45), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(78), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [46] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(46), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(43), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [47] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(47), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [48] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(48), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(47), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [49] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(49), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [50] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(50), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(49), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(658), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [51] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(51), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [52] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(52), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(75), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [53] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(53), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [54] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(54), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [55] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(55), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(53), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [56] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(56), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [57] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(57), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [58] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(58), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(674), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [59] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(59), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(65), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [60] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(60), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(36), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [61] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(61), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(680), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [62] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(62), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [63] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(63), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(73), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [64] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(64), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [65] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(65), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [66] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(66), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(690), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [67] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(67), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [68] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(68), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [69] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(69), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(696), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [70] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(70), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [71] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(71), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(23), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(700), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [72] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(72), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [73] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(73), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [74] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(74), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(26), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [75] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(75), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [76] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(76), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(30), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [77] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(77), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(85), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(712), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [78] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(78), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [79] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(79), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(89), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(716), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [80] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(80), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [81] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(81), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(31), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [82] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(82), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [83] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(83), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(37), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [84] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(84), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [85] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(85), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [86] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(86), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [87] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(87), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(732), + [anon_sym_export] = ACTIONS(735), + [anon_sym_type] = ACTIONS(738), + [anon_sym_namespace] = ACTIONS(741), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(359), + [anon_sym_typeof] = ACTIONS(370), + [anon_sym_import] = ACTIONS(747), + [anon_sym_from] = ACTIONS(750), + [anon_sym_with] = ACTIONS(753), + [anon_sym_var] = ACTIONS(756), + [anon_sym_let] = ACTIONS(759), + [anon_sym_const] = ACTIONS(762), + [anon_sym_BANG] = ACTIONS(370), + [anon_sym_if] = ACTIONS(765), + [anon_sym_switch] = ACTIONS(768), + [anon_sym_for] = ACTIONS(771), + [anon_sym_LPAREN] = ACTIONS(400), + [anon_sym_await] = ACTIONS(403), + [anon_sym_of] = ACTIONS(750), + [anon_sym_while] = ACTIONS(774), + [anon_sym_do] = ACTIONS(777), + [anon_sym_try] = ACTIONS(780), + [anon_sym_break] = ACTIONS(783), + [anon_sym_continue] = ACTIONS(786), + [anon_sym_debugger] = ACTIONS(789), + [anon_sym_return] = ACTIONS(792), + [anon_sym_throw] = ACTIONS(795), + [anon_sym_SEMI] = ACTIONS(798), + [anon_sym_yield] = ACTIONS(433), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_LTtemplate_GT] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(442), + [anon_sym_SQUOTE] = ACTIONS(445), + [anon_sym_class] = ACTIONS(801), + [anon_sym_async] = ACTIONS(804), + [anon_sym_function] = ACTIONS(807), + [anon_sym_new] = ACTIONS(810), + [anon_sym_using] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(370), + [anon_sym_DASH] = ACTIONS(370), + [anon_sym_SLASH] = ACTIONS(463), + [anon_sym_LT] = ACTIONS(466), + [anon_sym_TILDE] = ACTIONS(370), + [anon_sym_void] = ACTIONS(370), + [anon_sym_delete] = ACTIONS(370), + [anon_sym_PLUS_PLUS] = ACTIONS(469), + [anon_sym_DASH_DASH] = ACTIONS(469), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(472), + [sym_number] = ACTIONS(475), + [sym_private_property_identifier] = ACTIONS(478), + [sym_this] = ACTIONS(475), + [sym_super] = ACTIONS(475), + [sym_true] = ACTIONS(475), + [sym_false] = ACTIONS(475), + [sym_null] = ACTIONS(475), + [sym_undefined] = ACTIONS(481), + [anon_sym_AT] = ACTIONS(484), + [anon_sym_static] = ACTIONS(750), + [anon_sym_readonly] = ACTIONS(750), + [anon_sym_get] = ACTIONS(750), + [anon_sym_set] = ACTIONS(750), + [anon_sym_declare] = ACTIONS(813), + [anon_sym_public] = ACTIONS(750), + [anon_sym_private] = ACTIONS(750), + [anon_sym_protected] = ACTIONS(750), + [anon_sym_override] = ACTIONS(750), + [anon_sym_module] = ACTIONS(816), + [anon_sym_any] = ACTIONS(750), + [anon_sym_number] = ACTIONS(750), + [anon_sym_boolean] = ACTIONS(750), + [anon_sym_string] = ACTIONS(750), + [anon_sym_symbol] = ACTIONS(750), + [anon_sym_object] = ACTIONS(750), + [anon_sym_property] = ACTIONS(750), + [anon_sym_signal] = ACTIONS(750), + [anon_sym_on] = ACTIONS(750), + [anon_sym_required] = ACTIONS(750), + [anon_sym_component] = ACTIONS(750), + [anon_sym_abstract] = ACTIONS(819), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(825), + [sym_html_comment] = ACTIONS(5), + }, + [88] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(88), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(51), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [89] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(89), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(830), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [90] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(90), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [91] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(91), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(90), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [92] = { + [sym_export_statement] = STATE(1712), + [sym_declaration] = STATE(1712), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1712), + [sym_expression_statement] = STATE(1712), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1712), + [sym_if_statement] = STATE(1712), + [sym_switch_statement] = STATE(1712), + [sym_for_statement] = STATE(1712), + [sym_for_in_statement] = STATE(1712), + [sym_while_statement] = STATE(1712), + [sym_do_statement] = STATE(1712), + [sym_try_statement] = STATE(1712), + [sym_with_statement] = STATE(1712), + [sym_break_statement] = STATE(1712), + [sym_continue_statement] = STATE(1712), + [sym_debugger_statement] = STATE(1712), + [sym_return_statement] = STATE(1712), + [sym_throw_statement] = STATE(1712), + [sym_empty_statement] = STATE(1712), + [sym_labeled_statement] = STATE(1712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(92), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [aux_sym_statement_block_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [93] = { + [sym_export_statement] = STATE(1749), + [sym_declaration] = STATE(1749), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1749), + [sym_expression_statement] = STATE(1749), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1749), + [sym_if_statement] = STATE(1749), + [sym_switch_statement] = STATE(1749), + [sym_for_statement] = STATE(1749), + [sym_for_in_statement] = STATE(1749), + [sym_while_statement] = STATE(1749), + [sym_do_statement] = STATE(1749), + [sym_try_statement] = STATE(1749), + [sym_with_statement] = STATE(1749), + [sym_break_statement] = STATE(1749), + [sym_continue_statement] = STATE(1749), + [sym_debugger_statement] = STATE(1749), + [sym_return_statement] = STATE(1749), + [sym_throw_statement] = STATE(1749), + [sym_empty_statement] = STATE(1749), + [sym_labeled_statement] = STATE(1749), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(93), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [94] = { + [sym_export_statement] = STATE(3994), + [sym_declaration] = STATE(3994), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(3994), + [sym_expression_statement] = STATE(3994), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_statement_block] = STATE(3994), + [sym_if_statement] = STATE(3994), + [sym_switch_statement] = STATE(3994), + [sym_for_statement] = STATE(3994), + [sym_for_in_statement] = STATE(3994), + [sym_while_statement] = STATE(3994), + [sym_do_statement] = STATE(3994), + [sym_try_statement] = STATE(3994), + [sym_with_statement] = STATE(3994), + [sym_break_statement] = STATE(3994), + [sym_continue_statement] = STATE(3994), + [sym_debugger_statement] = STATE(3994), + [sym_return_statement] = STATE(3994), + [sym_throw_statement] = STATE(3994), + [sym_empty_statement] = STATE(3994), + [sym_labeled_statement] = STATE(3994), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4084), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4084), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4084), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7980), + [sym_string] = STATE(3558), + [sym_comment] = STATE(94), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4084), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(1875), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5651), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [95] = { + [sym_export_statement] = STATE(1037), + [sym_declaration] = STATE(1037), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1037), + [sym_expression_statement] = STATE(1037), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_statement_block] = STATE(1037), + [sym_if_statement] = STATE(1037), + [sym_switch_statement] = STATE(1037), + [sym_for_statement] = STATE(1037), + [sym_for_in_statement] = STATE(1037), + [sym_while_statement] = STATE(1037), + [sym_do_statement] = STATE(1037), + [sym_try_statement] = STATE(1037), + [sym_with_statement] = STATE(1037), + [sym_break_statement] = STATE(1037), + [sym_continue_statement] = STATE(1037), + [sym_debugger_statement] = STATE(1037), + [sym_return_statement] = STATE(1037), + [sym_throw_statement] = STATE(1037), + [sym_empty_statement] = STATE(1037), + [sym_labeled_statement] = STATE(1037), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1105), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1105), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1105), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7549), + [sym_string] = STATE(3558), + [sym_comment] = STATE(95), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1105), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(371), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(902), + [anon_sym_export] = ACTIONS(904), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(912), + [anon_sym_from] = ACTIONS(914), + [anon_sym_with] = ACTIONS(916), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(920), + [anon_sym_const] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_for] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(914), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(932), + [anon_sym_try] = ACTIONS(934), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_debugger] = ACTIONS(940), + [anon_sym_return] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(914), + [anon_sym_readonly] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(914), + [anon_sym_number] = ACTIONS(914), + [anon_sym_boolean] = ACTIONS(914), + [anon_sym_string] = ACTIONS(914), + [anon_sym_symbol] = ACTIONS(914), + [anon_sym_object] = ACTIONS(914), + [anon_sym_property] = ACTIONS(914), + [anon_sym_signal] = ACTIONS(914), + [anon_sym_on] = ACTIONS(914), + [anon_sym_required] = ACTIONS(914), + [anon_sym_component] = ACTIONS(914), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), + [sym_html_comment] = ACTIONS(5), + }, + [96] = { + [sym_export_statement] = STATE(4367), + [sym_declaration] = STATE(4372), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4374), + [sym_expression_statement] = STATE(4379), + [sym_variable_declaration] = STATE(4253), + [sym_lexical_declaration] = STATE(4253), + [sym_statement_block] = STATE(4354), + [sym_if_statement] = STATE(4383), + [sym_switch_statement] = STATE(4399), + [sym_for_statement] = STATE(4400), + [sym_for_in_statement] = STATE(4405), + [sym_while_statement] = STATE(4406), + [sym_do_statement] = STATE(4443), + [sym_try_statement] = STATE(4442), + [sym_with_statement] = STATE(4441), + [sym_break_statement] = STATE(4440), + [sym_continue_statement] = STATE(4439), + [sym_debugger_statement] = STATE(4438), + [sym_return_statement] = STATE(4437), + [sym_throw_statement] = STATE(4436), + [sym_empty_statement] = STATE(4432), + [sym_labeled_statement] = STATE(4420), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4253), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4253), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4253), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(96), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4253), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4253), + [sym_abstract_class_declaration] = STATE(4253), + [sym_module] = STATE(4253), + [sym_internal_module] = STATE(1893), + [sym_import_alias] = STATE(4253), + [sym_interface_declaration] = STATE(4253), + [sym_enum_declaration] = STATE(4253), + [sym_type_alias_declaration] = STATE(4253), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5509), + [sym_identifier] = ACTIONS(966), + [anon_sym_export] = ACTIONS(968), + [anon_sym_type] = ACTIONS(970), + [anon_sym_namespace] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(976), + [anon_sym_from] = ACTIONS(978), + [anon_sym_with] = ACTIONS(980), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(984), + [anon_sym_const] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_for] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(978), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(996), + [anon_sym_try] = ACTIONS(998), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_debugger] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_throw] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(1014), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(978), + [anon_sym_readonly] = ACTIONS(978), + [anon_sym_get] = ACTIONS(978), + [anon_sym_set] = ACTIONS(978), + [anon_sym_declare] = ACTIONS(1020), + [anon_sym_public] = ACTIONS(978), + [anon_sym_private] = ACTIONS(978), + [anon_sym_protected] = ACTIONS(978), + [anon_sym_override] = ACTIONS(978), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_any] = ACTIONS(978), + [anon_sym_number] = ACTIONS(978), + [anon_sym_boolean] = ACTIONS(978), + [anon_sym_string] = ACTIONS(978), + [anon_sym_symbol] = ACTIONS(978), + [anon_sym_object] = ACTIONS(978), + [anon_sym_property] = ACTIONS(978), + [anon_sym_signal] = ACTIONS(978), + [anon_sym_on] = ACTIONS(978), + [anon_sym_required] = ACTIONS(978), + [anon_sym_component] = ACTIONS(978), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), + [sym_html_comment] = ACTIONS(5), + }, + [97] = { + [sym_export_statement] = STATE(4019), + [sym_declaration] = STATE(4019), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4019), + [sym_expression_statement] = STATE(4019), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_statement_block] = STATE(4019), + [sym_if_statement] = STATE(4019), + [sym_switch_statement] = STATE(4019), + [sym_for_statement] = STATE(4019), + [sym_for_in_statement] = STATE(4019), + [sym_while_statement] = STATE(4019), + [sym_do_statement] = STATE(4019), + [sym_try_statement] = STATE(4019), + [sym_with_statement] = STATE(4019), + [sym_break_statement] = STATE(4019), + [sym_continue_statement] = STATE(4019), + [sym_debugger_statement] = STATE(4019), + [sym_return_statement] = STATE(4019), + [sym_throw_statement] = STATE(4019), + [sym_empty_statement] = STATE(4019), + [sym_labeled_statement] = STATE(4019), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4084), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4084), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4084), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7980), + [sym_string] = STATE(3558), + [sym_comment] = STATE(97), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4084), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(1875), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5651), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [98] = { + [sym_export_statement] = STATE(4146), + [sym_declaration] = STATE(4146), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4146), + [sym_expression_statement] = STATE(4146), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_statement_block] = STATE(4146), + [sym_if_statement] = STATE(4146), + [sym_switch_statement] = STATE(4146), + [sym_for_statement] = STATE(4146), + [sym_for_in_statement] = STATE(4146), + [sym_while_statement] = STATE(4146), + [sym_do_statement] = STATE(4146), + [sym_try_statement] = STATE(4146), + [sym_with_statement] = STATE(4146), + [sym_break_statement] = STATE(4146), + [sym_continue_statement] = STATE(4146), + [sym_debugger_statement] = STATE(4146), + [sym_return_statement] = STATE(4146), + [sym_throw_statement] = STATE(4146), + [sym_empty_statement] = STATE(4146), + [sym_labeled_statement] = STATE(4146), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4084), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4084), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4084), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7980), + [sym_string] = STATE(3558), + [sym_comment] = STATE(98), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4084), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(1875), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5651), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [99] = { + [sym_export_statement] = STATE(4233), + [sym_declaration] = STATE(4233), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4233), + [sym_expression_statement] = STATE(4233), + [sym_variable_declaration] = STATE(4253), + [sym_lexical_declaration] = STATE(4253), + [sym_statement_block] = STATE(4233), + [sym_if_statement] = STATE(4233), + [sym_switch_statement] = STATE(4233), + [sym_for_statement] = STATE(4233), + [sym_for_in_statement] = STATE(4233), + [sym_while_statement] = STATE(4233), + [sym_do_statement] = STATE(4233), + [sym_try_statement] = STATE(4233), + [sym_with_statement] = STATE(4233), + [sym_break_statement] = STATE(4233), + [sym_continue_statement] = STATE(4233), + [sym_debugger_statement] = STATE(4233), + [sym_return_statement] = STATE(4233), + [sym_throw_statement] = STATE(4233), + [sym_empty_statement] = STATE(4233), + [sym_labeled_statement] = STATE(4233), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4253), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4253), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4253), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(99), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4253), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4253), + [sym_abstract_class_declaration] = STATE(4253), + [sym_module] = STATE(4253), + [sym_internal_module] = STATE(1893), + [sym_import_alias] = STATE(4253), + [sym_interface_declaration] = STATE(4253), + [sym_enum_declaration] = STATE(4253), + [sym_type_alias_declaration] = STATE(4253), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5509), + [sym_identifier] = ACTIONS(966), + [anon_sym_export] = ACTIONS(968), + [anon_sym_type] = ACTIONS(970), + [anon_sym_namespace] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(976), + [anon_sym_from] = ACTIONS(978), + [anon_sym_with] = ACTIONS(980), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(984), + [anon_sym_const] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_for] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(978), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(996), + [anon_sym_try] = ACTIONS(998), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_debugger] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_throw] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(1014), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(978), + [anon_sym_readonly] = ACTIONS(978), + [anon_sym_get] = ACTIONS(978), + [anon_sym_set] = ACTIONS(978), + [anon_sym_declare] = ACTIONS(1020), + [anon_sym_public] = ACTIONS(978), + [anon_sym_private] = ACTIONS(978), + [anon_sym_protected] = ACTIONS(978), + [anon_sym_override] = ACTIONS(978), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_any] = ACTIONS(978), + [anon_sym_number] = ACTIONS(978), + [anon_sym_boolean] = ACTIONS(978), + [anon_sym_string] = ACTIONS(978), + [anon_sym_symbol] = ACTIONS(978), + [anon_sym_object] = ACTIONS(978), + [anon_sym_property] = ACTIONS(978), + [anon_sym_signal] = ACTIONS(978), + [anon_sym_on] = ACTIONS(978), + [anon_sym_required] = ACTIONS(978), + [anon_sym_component] = ACTIONS(978), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), + [sym_html_comment] = ACTIONS(5), + }, + [100] = { + [sym_export_statement] = STATE(4105), + [sym_declaration] = STATE(4105), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4105), + [sym_expression_statement] = STATE(4105), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_statement_block] = STATE(4105), + [sym_if_statement] = STATE(4105), + [sym_switch_statement] = STATE(4105), + [sym_for_statement] = STATE(4105), + [sym_for_in_statement] = STATE(4105), + [sym_while_statement] = STATE(4105), + [sym_do_statement] = STATE(4105), + [sym_try_statement] = STATE(4105), + [sym_with_statement] = STATE(4105), + [sym_break_statement] = STATE(4105), + [sym_continue_statement] = STATE(4105), + [sym_debugger_statement] = STATE(4105), + [sym_return_statement] = STATE(4105), + [sym_throw_statement] = STATE(4105), + [sym_empty_statement] = STATE(4105), + [sym_labeled_statement] = STATE(4105), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4084), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4084), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4084), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7980), + [sym_string] = STATE(3558), + [sym_comment] = STATE(100), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4084), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(1875), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5651), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [101] = { + [sym_export_statement] = STATE(7900), + [sym_declaration] = STATE(7900), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(7900), + [sym_expression_statement] = STATE(7900), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(7900), + [sym_if_statement] = STATE(7900), + [sym_switch_statement] = STATE(7900), + [sym_for_statement] = STATE(7900), + [sym_for_in_statement] = STATE(7900), + [sym_while_statement] = STATE(7900), + [sym_do_statement] = STATE(7900), + [sym_try_statement] = STATE(7900), + [sym_with_statement] = STATE(7900), + [sym_break_statement] = STATE(7900), + [sym_continue_statement] = STATE(7900), + [sym_debugger_statement] = STATE(7900), + [sym_return_statement] = STATE(7900), + [sym_throw_statement] = STATE(7900), + [sym_empty_statement] = STATE(7900), + [sym_labeled_statement] = STATE(7900), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(101), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [102] = { + [sym_export_statement] = STATE(8189), + [sym_declaration] = STATE(8189), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(8189), + [sym_expression_statement] = STATE(8189), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(8189), + [sym_if_statement] = STATE(8189), + [sym_switch_statement] = STATE(8189), + [sym_for_statement] = STATE(8189), + [sym_for_in_statement] = STATE(8189), + [sym_while_statement] = STATE(8189), + [sym_do_statement] = STATE(8189), + [sym_try_statement] = STATE(8189), + [sym_with_statement] = STATE(8189), + [sym_break_statement] = STATE(8189), + [sym_continue_statement] = STATE(8189), + [sym_debugger_statement] = STATE(8189), + [sym_return_statement] = STATE(8189), + [sym_throw_statement] = STATE(8189), + [sym_empty_statement] = STATE(8189), + [sym_labeled_statement] = STATE(8189), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(102), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [103] = { + [sym_export_statement] = STATE(1184), + [sym_declaration] = STATE(1184), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1184), + [sym_expression_statement] = STATE(1184), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_statement_block] = STATE(1184), + [sym_if_statement] = STATE(1184), + [sym_switch_statement] = STATE(1184), + [sym_for_statement] = STATE(1184), + [sym_for_in_statement] = STATE(1184), + [sym_while_statement] = STATE(1184), + [sym_do_statement] = STATE(1184), + [sym_try_statement] = STATE(1184), + [sym_with_statement] = STATE(1184), + [sym_break_statement] = STATE(1184), + [sym_continue_statement] = STATE(1184), + [sym_debugger_statement] = STATE(1184), + [sym_return_statement] = STATE(1184), + [sym_throw_statement] = STATE(1184), + [sym_empty_statement] = STATE(1184), + [sym_labeled_statement] = STATE(1184), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1105), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1105), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1105), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7549), + [sym_string] = STATE(3558), + [sym_comment] = STATE(103), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1105), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(371), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(902), + [anon_sym_export] = ACTIONS(904), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(912), + [anon_sym_from] = ACTIONS(914), + [anon_sym_with] = ACTIONS(916), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(920), + [anon_sym_const] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_for] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(914), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(932), + [anon_sym_try] = ACTIONS(934), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_debugger] = ACTIONS(940), + [anon_sym_return] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(914), + [anon_sym_readonly] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(914), + [anon_sym_number] = ACTIONS(914), + [anon_sym_boolean] = ACTIONS(914), + [anon_sym_string] = ACTIONS(914), + [anon_sym_symbol] = ACTIONS(914), + [anon_sym_object] = ACTIONS(914), + [anon_sym_property] = ACTIONS(914), + [anon_sym_signal] = ACTIONS(914), + [anon_sym_on] = ACTIONS(914), + [anon_sym_required] = ACTIONS(914), + [anon_sym_component] = ACTIONS(914), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), + [sym_html_comment] = ACTIONS(5), + }, + [104] = { + [sym_export_statement] = STATE(1179), + [sym_declaration] = STATE(1179), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1179), + [sym_expression_statement] = STATE(1179), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_statement_block] = STATE(1179), + [sym_if_statement] = STATE(1179), + [sym_switch_statement] = STATE(1179), + [sym_for_statement] = STATE(1179), + [sym_for_in_statement] = STATE(1179), + [sym_while_statement] = STATE(1179), + [sym_do_statement] = STATE(1179), + [sym_try_statement] = STATE(1179), + [sym_with_statement] = STATE(1179), + [sym_break_statement] = STATE(1179), + [sym_continue_statement] = STATE(1179), + [sym_debugger_statement] = STATE(1179), + [sym_return_statement] = STATE(1179), + [sym_throw_statement] = STATE(1179), + [sym_empty_statement] = STATE(1179), + [sym_labeled_statement] = STATE(1179), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1105), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1105), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1105), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7549), + [sym_string] = STATE(3558), + [sym_comment] = STATE(104), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1105), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(371), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(902), + [anon_sym_export] = ACTIONS(904), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(912), + [anon_sym_from] = ACTIONS(914), + [anon_sym_with] = ACTIONS(916), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(920), + [anon_sym_const] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_for] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(914), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(932), + [anon_sym_try] = ACTIONS(934), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_debugger] = ACTIONS(940), + [anon_sym_return] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(914), + [anon_sym_readonly] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(914), + [anon_sym_number] = ACTIONS(914), + [anon_sym_boolean] = ACTIONS(914), + [anon_sym_string] = ACTIONS(914), + [anon_sym_symbol] = ACTIONS(914), + [anon_sym_object] = ACTIONS(914), + [anon_sym_property] = ACTIONS(914), + [anon_sym_signal] = ACTIONS(914), + [anon_sym_on] = ACTIONS(914), + [anon_sym_required] = ACTIONS(914), + [anon_sym_component] = ACTIONS(914), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), + [sym_html_comment] = ACTIONS(5), + }, + [105] = { + [sym_export_statement] = STATE(4067), + [sym_declaration] = STATE(4066), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4064), + [sym_expression_statement] = STATE(4053), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_statement_block] = STATE(4052), + [sym_if_statement] = STATE(4051), + [sym_switch_statement] = STATE(4050), + [sym_for_statement] = STATE(4049), + [sym_for_in_statement] = STATE(4048), + [sym_while_statement] = STATE(4047), + [sym_do_statement] = STATE(4046), + [sym_try_statement] = STATE(4045), + [sym_with_statement] = STATE(4044), + [sym_break_statement] = STATE(4043), + [sym_continue_statement] = STATE(4042), + [sym_debugger_statement] = STATE(4041), + [sym_return_statement] = STATE(4040), + [sym_throw_statement] = STATE(4039), + [sym_empty_statement] = STATE(4038), + [sym_labeled_statement] = STATE(4037), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4084), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4084), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4084), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7980), + [sym_string] = STATE(3558), + [sym_comment] = STATE(105), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4084), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(1875), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5651), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [106] = { + [sym_export_statement] = STATE(4336), + [sym_declaration] = STATE(4336), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4336), + [sym_expression_statement] = STATE(4336), + [sym_variable_declaration] = STATE(4253), + [sym_lexical_declaration] = STATE(4253), + [sym_statement_block] = STATE(4336), + [sym_if_statement] = STATE(4336), + [sym_switch_statement] = STATE(4336), + [sym_for_statement] = STATE(4336), + [sym_for_in_statement] = STATE(4336), + [sym_while_statement] = STATE(4336), + [sym_do_statement] = STATE(4336), + [sym_try_statement] = STATE(4336), + [sym_with_statement] = STATE(4336), + [sym_break_statement] = STATE(4336), + [sym_continue_statement] = STATE(4336), + [sym_debugger_statement] = STATE(4336), + [sym_return_statement] = STATE(4336), + [sym_throw_statement] = STATE(4336), + [sym_empty_statement] = STATE(4336), + [sym_labeled_statement] = STATE(4336), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4253), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4253), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4253), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(106), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4253), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4253), + [sym_abstract_class_declaration] = STATE(4253), + [sym_module] = STATE(4253), + [sym_internal_module] = STATE(1893), + [sym_import_alias] = STATE(4253), + [sym_interface_declaration] = STATE(4253), + [sym_enum_declaration] = STATE(4253), + [sym_type_alias_declaration] = STATE(4253), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5509), + [sym_identifier] = ACTIONS(966), + [anon_sym_export] = ACTIONS(968), + [anon_sym_type] = ACTIONS(970), + [anon_sym_namespace] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(976), + [anon_sym_from] = ACTIONS(978), + [anon_sym_with] = ACTIONS(980), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(984), + [anon_sym_const] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_for] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(978), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(996), + [anon_sym_try] = ACTIONS(998), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_debugger] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_throw] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(1014), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(978), + [anon_sym_readonly] = ACTIONS(978), + [anon_sym_get] = ACTIONS(978), + [anon_sym_set] = ACTIONS(978), + [anon_sym_declare] = ACTIONS(1020), + [anon_sym_public] = ACTIONS(978), + [anon_sym_private] = ACTIONS(978), + [anon_sym_protected] = ACTIONS(978), + [anon_sym_override] = ACTIONS(978), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_any] = ACTIONS(978), + [anon_sym_number] = ACTIONS(978), + [anon_sym_boolean] = ACTIONS(978), + [anon_sym_string] = ACTIONS(978), + [anon_sym_symbol] = ACTIONS(978), + [anon_sym_object] = ACTIONS(978), + [anon_sym_property] = ACTIONS(978), + [anon_sym_signal] = ACTIONS(978), + [anon_sym_on] = ACTIONS(978), + [anon_sym_required] = ACTIONS(978), + [anon_sym_component] = ACTIONS(978), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), + [sym_html_comment] = ACTIONS(5), + }, + [107] = { + [sym_export_statement] = STATE(4320), + [sym_declaration] = STATE(4320), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4320), + [sym_expression_statement] = STATE(4320), + [sym_variable_declaration] = STATE(4253), + [sym_lexical_declaration] = STATE(4253), + [sym_statement_block] = STATE(4320), + [sym_if_statement] = STATE(4320), + [sym_switch_statement] = STATE(4320), + [sym_for_statement] = STATE(4320), + [sym_for_in_statement] = STATE(4320), + [sym_while_statement] = STATE(4320), + [sym_do_statement] = STATE(4320), + [sym_try_statement] = STATE(4320), + [sym_with_statement] = STATE(4320), + [sym_break_statement] = STATE(4320), + [sym_continue_statement] = STATE(4320), + [sym_debugger_statement] = STATE(4320), + [sym_return_statement] = STATE(4320), + [sym_throw_statement] = STATE(4320), + [sym_empty_statement] = STATE(4320), + [sym_labeled_statement] = STATE(4320), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4253), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4253), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4253), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(107), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4253), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4253), + [sym_abstract_class_declaration] = STATE(4253), + [sym_module] = STATE(4253), + [sym_internal_module] = STATE(1893), + [sym_import_alias] = STATE(4253), + [sym_interface_declaration] = STATE(4253), + [sym_enum_declaration] = STATE(4253), + [sym_type_alias_declaration] = STATE(4253), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5509), + [sym_identifier] = ACTIONS(966), + [anon_sym_export] = ACTIONS(968), + [anon_sym_type] = ACTIONS(970), + [anon_sym_namespace] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(976), + [anon_sym_from] = ACTIONS(978), + [anon_sym_with] = ACTIONS(980), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(984), + [anon_sym_const] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_for] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(978), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(996), + [anon_sym_try] = ACTIONS(998), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_debugger] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_throw] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(1014), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(978), + [anon_sym_readonly] = ACTIONS(978), + [anon_sym_get] = ACTIONS(978), + [anon_sym_set] = ACTIONS(978), + [anon_sym_declare] = ACTIONS(1020), + [anon_sym_public] = ACTIONS(978), + [anon_sym_private] = ACTIONS(978), + [anon_sym_protected] = ACTIONS(978), + [anon_sym_override] = ACTIONS(978), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_any] = ACTIONS(978), + [anon_sym_number] = ACTIONS(978), + [anon_sym_boolean] = ACTIONS(978), + [anon_sym_string] = ACTIONS(978), + [anon_sym_symbol] = ACTIONS(978), + [anon_sym_object] = ACTIONS(978), + [anon_sym_property] = ACTIONS(978), + [anon_sym_signal] = ACTIONS(978), + [anon_sym_on] = ACTIONS(978), + [anon_sym_required] = ACTIONS(978), + [anon_sym_component] = ACTIONS(978), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), + [sym_html_comment] = ACTIONS(5), + }, + [108] = { + [sym_export_statement] = STATE(1120), + [sym_declaration] = STATE(1120), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1120), + [sym_expression_statement] = STATE(1120), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_statement_block] = STATE(1120), + [sym_if_statement] = STATE(1120), + [sym_switch_statement] = STATE(1120), + [sym_for_statement] = STATE(1120), + [sym_for_in_statement] = STATE(1120), + [sym_while_statement] = STATE(1120), + [sym_do_statement] = STATE(1120), + [sym_try_statement] = STATE(1120), + [sym_with_statement] = STATE(1120), + [sym_break_statement] = STATE(1120), + [sym_continue_statement] = STATE(1120), + [sym_debugger_statement] = STATE(1120), + [sym_return_statement] = STATE(1120), + [sym_throw_statement] = STATE(1120), + [sym_empty_statement] = STATE(1120), + [sym_labeled_statement] = STATE(1120), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1105), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1105), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1105), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7549), + [sym_string] = STATE(3558), + [sym_comment] = STATE(108), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1105), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(371), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(902), + [anon_sym_export] = ACTIONS(904), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(912), + [anon_sym_from] = ACTIONS(914), + [anon_sym_with] = ACTIONS(916), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(920), + [anon_sym_const] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_for] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(914), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(932), + [anon_sym_try] = ACTIONS(934), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_debugger] = ACTIONS(940), + [anon_sym_return] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(914), + [anon_sym_readonly] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(914), + [anon_sym_number] = ACTIONS(914), + [anon_sym_boolean] = ACTIONS(914), + [anon_sym_string] = ACTIONS(914), + [anon_sym_symbol] = ACTIONS(914), + [anon_sym_object] = ACTIONS(914), + [anon_sym_property] = ACTIONS(914), + [anon_sym_signal] = ACTIONS(914), + [anon_sym_on] = ACTIONS(914), + [anon_sym_required] = ACTIONS(914), + [anon_sym_component] = ACTIONS(914), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), + [sym_html_comment] = ACTIONS(5), + }, + [109] = { + [sym_export_statement] = STATE(1136), + [sym_declaration] = STATE(1136), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1136), + [sym_expression_statement] = STATE(1136), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_statement_block] = STATE(1136), + [sym_if_statement] = STATE(1136), + [sym_switch_statement] = STATE(1136), + [sym_for_statement] = STATE(1136), + [sym_for_in_statement] = STATE(1136), + [sym_while_statement] = STATE(1136), + [sym_do_statement] = STATE(1136), + [sym_try_statement] = STATE(1136), + [sym_with_statement] = STATE(1136), + [sym_break_statement] = STATE(1136), + [sym_continue_statement] = STATE(1136), + [sym_debugger_statement] = STATE(1136), + [sym_return_statement] = STATE(1136), + [sym_throw_statement] = STATE(1136), + [sym_empty_statement] = STATE(1136), + [sym_labeled_statement] = STATE(1136), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1105), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1105), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1105), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7549), + [sym_string] = STATE(3558), + [sym_comment] = STATE(109), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1105), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(371), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(902), + [anon_sym_export] = ACTIONS(904), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(912), + [anon_sym_from] = ACTIONS(914), + [anon_sym_with] = ACTIONS(916), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(920), + [anon_sym_const] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_for] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(914), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(932), + [anon_sym_try] = ACTIONS(934), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_debugger] = ACTIONS(940), + [anon_sym_return] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(914), + [anon_sym_readonly] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(914), + [anon_sym_number] = ACTIONS(914), + [anon_sym_boolean] = ACTIONS(914), + [anon_sym_string] = ACTIONS(914), + [anon_sym_symbol] = ACTIONS(914), + [anon_sym_object] = ACTIONS(914), + [anon_sym_property] = ACTIONS(914), + [anon_sym_signal] = ACTIONS(914), + [anon_sym_on] = ACTIONS(914), + [anon_sym_required] = ACTIONS(914), + [anon_sym_component] = ACTIONS(914), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), + [sym_html_comment] = ACTIONS(5), + }, + [110] = { + [sym_export_statement] = STATE(1214), + [sym_declaration] = STATE(1213), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1212), + [sym_expression_statement] = STATE(1211), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_statement_block] = STATE(1210), + [sym_if_statement] = STATE(1209), + [sym_switch_statement] = STATE(1208), + [sym_for_statement] = STATE(1207), + [sym_for_in_statement] = STATE(1206), + [sym_while_statement] = STATE(1205), + [sym_do_statement] = STATE(1204), + [sym_try_statement] = STATE(1203), + [sym_with_statement] = STATE(1202), + [sym_break_statement] = STATE(1201), + [sym_continue_statement] = STATE(1200), + [sym_debugger_statement] = STATE(1199), + [sym_return_statement] = STATE(1198), + [sym_throw_statement] = STATE(1197), + [sym_empty_statement] = STATE(1196), + [sym_labeled_statement] = STATE(1195), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1105), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1105), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1105), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7549), + [sym_string] = STATE(3558), + [sym_comment] = STATE(110), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1105), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(371), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(902), + [anon_sym_export] = ACTIONS(904), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(912), + [anon_sym_from] = ACTIONS(914), + [anon_sym_with] = ACTIONS(916), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(920), + [anon_sym_const] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_for] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(914), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(932), + [anon_sym_try] = ACTIONS(934), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_debugger] = ACTIONS(940), + [anon_sym_return] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(914), + [anon_sym_readonly] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(914), + [anon_sym_number] = ACTIONS(914), + [anon_sym_boolean] = ACTIONS(914), + [anon_sym_string] = ACTIONS(914), + [anon_sym_symbol] = ACTIONS(914), + [anon_sym_object] = ACTIONS(914), + [anon_sym_property] = ACTIONS(914), + [anon_sym_signal] = ACTIONS(914), + [anon_sym_on] = ACTIONS(914), + [anon_sym_required] = ACTIONS(914), + [anon_sym_component] = ACTIONS(914), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), + [sym_html_comment] = ACTIONS(5), + }, + [111] = { + [sym_export_statement] = STATE(6817), + [sym_declaration] = STATE(6817), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(6817), + [sym_expression_statement] = STATE(6817), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(6817), + [sym_if_statement] = STATE(6817), + [sym_switch_statement] = STATE(6817), + [sym_for_statement] = STATE(6817), + [sym_for_in_statement] = STATE(6817), + [sym_while_statement] = STATE(6817), + [sym_do_statement] = STATE(6817), + [sym_try_statement] = STATE(6817), + [sym_with_statement] = STATE(6817), + [sym_break_statement] = STATE(6817), + [sym_continue_statement] = STATE(6817), + [sym_debugger_statement] = STATE(6817), + [sym_return_statement] = STATE(6817), + [sym_throw_statement] = STATE(6817), + [sym_empty_statement] = STATE(6817), + [sym_labeled_statement] = STATE(6817), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(111), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [112] = { + [sym_export_statement] = STATE(1691), + [sym_declaration] = STATE(1691), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1691), + [sym_expression_statement] = STATE(1691), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1691), + [sym_if_statement] = STATE(1691), + [sym_switch_statement] = STATE(1691), + [sym_for_statement] = STATE(1691), + [sym_for_in_statement] = STATE(1691), + [sym_while_statement] = STATE(1691), + [sym_do_statement] = STATE(1691), + [sym_try_statement] = STATE(1691), + [sym_with_statement] = STATE(1691), + [sym_break_statement] = STATE(1691), + [sym_continue_statement] = STATE(1691), + [sym_debugger_statement] = STATE(1691), + [sym_return_statement] = STATE(1691), + [sym_throw_statement] = STATE(1691), + [sym_empty_statement] = STATE(1691), + [sym_labeled_statement] = STATE(1691), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(112), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [113] = { + [sym_export_statement] = STATE(7486), + [sym_declaration] = STATE(7486), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(7486), + [sym_expression_statement] = STATE(7486), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(7486), + [sym_if_statement] = STATE(7486), + [sym_switch_statement] = STATE(7486), + [sym_for_statement] = STATE(7486), + [sym_for_in_statement] = STATE(7486), + [sym_while_statement] = STATE(7486), + [sym_do_statement] = STATE(7486), + [sym_try_statement] = STATE(7486), + [sym_with_statement] = STATE(7486), + [sym_break_statement] = STATE(7486), + [sym_continue_statement] = STATE(7486), + [sym_debugger_statement] = STATE(7486), + [sym_return_statement] = STATE(7486), + [sym_throw_statement] = STATE(7486), + [sym_empty_statement] = STATE(7486), + [sym_labeled_statement] = STATE(7486), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(113), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [114] = { + [sym_export_statement] = STATE(7457), + [sym_declaration] = STATE(7458), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(7401), + [sym_expression_statement] = STATE(7462), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(7463), + [sym_if_statement] = STATE(7464), + [sym_switch_statement] = STATE(7465), + [sym_for_statement] = STATE(7468), + [sym_for_in_statement] = STATE(7469), + [sym_while_statement] = STATE(7470), + [sym_do_statement] = STATE(7473), + [sym_try_statement] = STATE(7477), + [sym_with_statement] = STATE(7478), + [sym_break_statement] = STATE(7479), + [sym_continue_statement] = STATE(7480), + [sym_debugger_statement] = STATE(7481), + [sym_return_statement] = STATE(7482), + [sym_throw_statement] = STATE(7483), + [sym_empty_statement] = STATE(7484), + [sym_labeled_statement] = STATE(7485), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(114), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [115] = { + [sym_export_statement] = STATE(7444), + [sym_declaration] = STATE(7444), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(7444), + [sym_expression_statement] = STATE(7444), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(7444), + [sym_if_statement] = STATE(7444), + [sym_switch_statement] = STATE(7444), + [sym_for_statement] = STATE(7444), + [sym_for_in_statement] = STATE(7444), + [sym_while_statement] = STATE(7444), + [sym_do_statement] = STATE(7444), + [sym_try_statement] = STATE(7444), + [sym_with_statement] = STATE(7444), + [sym_break_statement] = STATE(7444), + [sym_continue_statement] = STATE(7444), + [sym_debugger_statement] = STATE(7444), + [sym_return_statement] = STATE(7444), + [sym_throw_statement] = STATE(7444), + [sym_empty_statement] = STATE(7444), + [sym_labeled_statement] = STATE(7444), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(115), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [116] = { + [sym_export_statement] = STATE(4212), + [sym_declaration] = STATE(4212), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4212), + [sym_expression_statement] = STATE(4212), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_statement_block] = STATE(4212), + [sym_if_statement] = STATE(4212), + [sym_switch_statement] = STATE(4212), + [sym_for_statement] = STATE(4212), + [sym_for_in_statement] = STATE(4212), + [sym_while_statement] = STATE(4212), + [sym_do_statement] = STATE(4212), + [sym_try_statement] = STATE(4212), + [sym_with_statement] = STATE(4212), + [sym_break_statement] = STATE(4212), + [sym_continue_statement] = STATE(4212), + [sym_debugger_statement] = STATE(4212), + [sym_return_statement] = STATE(4212), + [sym_throw_statement] = STATE(4212), + [sym_empty_statement] = STATE(4212), + [sym_labeled_statement] = STATE(4212), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4084), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4084), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4084), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7980), + [sym_string] = STATE(3558), + [sym_comment] = STATE(116), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4084), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(1875), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5651), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [117] = { + [sym_export_statement] = STATE(4217), + [sym_declaration] = STATE(4218), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4219), + [sym_expression_statement] = STATE(4204), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_statement_block] = STATE(4187), + [sym_if_statement] = STATE(4181), + [sym_switch_statement] = STATE(4179), + [sym_for_statement] = STATE(4178), + [sym_for_in_statement] = STATE(4176), + [sym_while_statement] = STATE(4174), + [sym_do_statement] = STATE(4173), + [sym_try_statement] = STATE(4172), + [sym_with_statement] = STATE(4171), + [sym_break_statement] = STATE(4168), + [sym_continue_statement] = STATE(4162), + [sym_debugger_statement] = STATE(4161), + [sym_return_statement] = STATE(4160), + [sym_throw_statement] = STATE(4159), + [sym_empty_statement] = STATE(4158), + [sym_labeled_statement] = STATE(4157), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4084), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4084), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4084), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7980), + [sym_string] = STATE(3558), + [sym_comment] = STATE(117), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4084), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(1875), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5651), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [118] = { + [sym_export_statement] = STATE(7601), + [sym_declaration] = STATE(7602), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(7606), + [sym_expression_statement] = STATE(7607), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(7608), + [sym_if_statement] = STATE(7616), + [sym_switch_statement] = STATE(7617), + [sym_for_statement] = STATE(7618), + [sym_for_in_statement] = STATE(7619), + [sym_while_statement] = STATE(7620), + [sym_do_statement] = STATE(7623), + [sym_try_statement] = STATE(7624), + [sym_with_statement] = STATE(7625), + [sym_break_statement] = STATE(7630), + [sym_continue_statement] = STATE(7640), + [sym_debugger_statement] = STATE(7642), + [sym_return_statement] = STATE(7643), + [sym_throw_statement] = STATE(7644), + [sym_empty_statement] = STATE(7646), + [sym_labeled_statement] = STATE(7649), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(118), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [119] = { + [sym_export_statement] = STATE(4156), + [sym_declaration] = STATE(4156), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4156), + [sym_expression_statement] = STATE(4156), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_statement_block] = STATE(4156), + [sym_if_statement] = STATE(4156), + [sym_switch_statement] = STATE(4156), + [sym_for_statement] = STATE(4156), + [sym_for_in_statement] = STATE(4156), + [sym_while_statement] = STATE(4156), + [sym_do_statement] = STATE(4156), + [sym_try_statement] = STATE(4156), + [sym_with_statement] = STATE(4156), + [sym_break_statement] = STATE(4156), + [sym_continue_statement] = STATE(4156), + [sym_debugger_statement] = STATE(4156), + [sym_return_statement] = STATE(4156), + [sym_throw_statement] = STATE(4156), + [sym_empty_statement] = STATE(4156), + [sym_labeled_statement] = STATE(4156), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4084), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4084), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4084), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7980), + [sym_string] = STATE(3558), + [sym_comment] = STATE(119), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4084), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(1875), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5651), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [120] = { + [sym_export_statement] = STATE(4141), + [sym_declaration] = STATE(4141), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4141), + [sym_expression_statement] = STATE(4141), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_statement_block] = STATE(4141), + [sym_if_statement] = STATE(4141), + [sym_switch_statement] = STATE(4141), + [sym_for_statement] = STATE(4141), + [sym_for_in_statement] = STATE(4141), + [sym_while_statement] = STATE(4141), + [sym_do_statement] = STATE(4141), + [sym_try_statement] = STATE(4141), + [sym_with_statement] = STATE(4141), + [sym_break_statement] = STATE(4141), + [sym_continue_statement] = STATE(4141), + [sym_debugger_statement] = STATE(4141), + [sym_return_statement] = STATE(4141), + [sym_throw_statement] = STATE(4141), + [sym_empty_statement] = STATE(4141), + [sym_labeled_statement] = STATE(4141), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4084), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4084), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4084), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7980), + [sym_string] = STATE(3558), + [sym_comment] = STATE(120), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4084), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(1875), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5651), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [121] = { + [sym_export_statement] = STATE(1711), + [sym_declaration] = STATE(1711), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1711), + [sym_expression_statement] = STATE(1711), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1711), + [sym_if_statement] = STATE(1711), + [sym_switch_statement] = STATE(1711), + [sym_for_statement] = STATE(1711), + [sym_for_in_statement] = STATE(1711), + [sym_while_statement] = STATE(1711), + [sym_do_statement] = STATE(1711), + [sym_try_statement] = STATE(1711), + [sym_with_statement] = STATE(1711), + [sym_break_statement] = STATE(1711), + [sym_continue_statement] = STATE(1711), + [sym_debugger_statement] = STATE(1711), + [sym_return_statement] = STATE(1711), + [sym_throw_statement] = STATE(1711), + [sym_empty_statement] = STATE(1711), + [sym_labeled_statement] = STATE(1711), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(121), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [122] = { + [sym_export_statement] = STATE(1361), + [sym_declaration] = STATE(1361), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1361), + [sym_expression_statement] = STATE(1361), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_statement_block] = STATE(1361), + [sym_if_statement] = STATE(1361), + [sym_switch_statement] = STATE(1361), + [sym_for_statement] = STATE(1361), + [sym_for_in_statement] = STATE(1361), + [sym_while_statement] = STATE(1361), + [sym_do_statement] = STATE(1361), + [sym_try_statement] = STATE(1361), + [sym_with_statement] = STATE(1361), + [sym_break_statement] = STATE(1361), + [sym_continue_statement] = STATE(1361), + [sym_debugger_statement] = STATE(1361), + [sym_return_statement] = STATE(1361), + [sym_throw_statement] = STATE(1361), + [sym_empty_statement] = STATE(1361), + [sym_labeled_statement] = STATE(1361), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3103), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1503), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1503), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1503), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7745), + [sym_string] = STATE(3558), + [sym_comment] = STATE(122), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1503), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(452), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5699), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), + [sym_html_comment] = ACTIONS(5), + }, + [123] = { + [sym_export_statement] = STATE(1731), + [sym_declaration] = STATE(1728), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1718), + [sym_expression_statement] = STATE(1715), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1706), + [sym_if_statement] = STATE(1687), + [sym_switch_statement] = STATE(1686), + [sym_for_statement] = STATE(1679), + [sym_for_in_statement] = STATE(1677), + [sym_while_statement] = STATE(1656), + [sym_do_statement] = STATE(1732), + [sym_try_statement] = STATE(1654), + [sym_with_statement] = STATE(1653), + [sym_break_statement] = STATE(1705), + [sym_continue_statement] = STATE(1665), + [sym_debugger_statement] = STATE(1668), + [sym_return_statement] = STATE(1669), + [sym_throw_statement] = STATE(1670), + [sym_empty_statement] = STATE(1672), + [sym_labeled_statement] = STATE(1797), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(123), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [124] = { + [sym_export_statement] = STATE(1787), + [sym_declaration] = STATE(1787), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1787), + [sym_expression_statement] = STATE(1787), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1787), + [sym_if_statement] = STATE(1787), + [sym_switch_statement] = STATE(1787), + [sym_for_statement] = STATE(1787), + [sym_for_in_statement] = STATE(1787), + [sym_while_statement] = STATE(1787), + [sym_do_statement] = STATE(1787), + [sym_try_statement] = STATE(1787), + [sym_with_statement] = STATE(1787), + [sym_break_statement] = STATE(1787), + [sym_continue_statement] = STATE(1787), + [sym_debugger_statement] = STATE(1787), + [sym_return_statement] = STATE(1787), + [sym_throw_statement] = STATE(1787), + [sym_empty_statement] = STATE(1787), + [sym_labeled_statement] = STATE(1787), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(124), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [125] = { + [sym_export_statement] = STATE(1412), + [sym_declaration] = STATE(1412), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1412), + [sym_expression_statement] = STATE(1412), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_statement_block] = STATE(1412), + [sym_if_statement] = STATE(1412), + [sym_switch_statement] = STATE(1412), + [sym_for_statement] = STATE(1412), + [sym_for_in_statement] = STATE(1412), + [sym_while_statement] = STATE(1412), + [sym_do_statement] = STATE(1412), + [sym_try_statement] = STATE(1412), + [sym_with_statement] = STATE(1412), + [sym_break_statement] = STATE(1412), + [sym_continue_statement] = STATE(1412), + [sym_debugger_statement] = STATE(1412), + [sym_return_statement] = STATE(1412), + [sym_throw_statement] = STATE(1412), + [sym_empty_statement] = STATE(1412), + [sym_labeled_statement] = STATE(1412), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7389), + [sym_string] = STATE(3558), + [sym_comment] = STATE(125), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(502), + [anon_sym_export] = ACTIONS(504), + [anon_sym_type] = ACTIONS(508), + [anon_sym_namespace] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(514), + [anon_sym_from] = ACTIONS(516), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_const] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_for] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(516), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(534), + [anon_sym_try] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_debugger] = ACTIONS(542), + [anon_sym_return] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(552), + [anon_sym_async] = ACTIONS(554), + [anon_sym_function] = ACTIONS(556), + [anon_sym_new] = ACTIONS(558), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(516), + [anon_sym_readonly] = ACTIONS(516), + [anon_sym_get] = ACTIONS(516), + [anon_sym_set] = ACTIONS(516), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_override] = ACTIONS(516), + [anon_sym_module] = ACTIONS(564), + [anon_sym_any] = ACTIONS(516), + [anon_sym_number] = ACTIONS(516), + [anon_sym_boolean] = ACTIONS(516), + [anon_sym_string] = ACTIONS(516), + [anon_sym_symbol] = ACTIONS(516), + [anon_sym_object] = ACTIONS(516), + [anon_sym_property] = ACTIONS(516), + [anon_sym_signal] = ACTIONS(516), + [anon_sym_on] = ACTIONS(516), + [anon_sym_required] = ACTIONS(516), + [anon_sym_component] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [126] = { + [sym_export_statement] = STATE(1597), + [sym_declaration] = STATE(1596), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1595), + [sym_expression_statement] = STATE(1594), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_statement_block] = STATE(1593), + [sym_if_statement] = STATE(1592), + [sym_switch_statement] = STATE(1591), + [sym_for_statement] = STATE(1590), + [sym_for_in_statement] = STATE(1589), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1587), + [sym_try_statement] = STATE(1553), + [sym_with_statement] = STATE(1585), + [sym_break_statement] = STATE(1584), + [sym_continue_statement] = STATE(1583), + [sym_debugger_statement] = STATE(1582), + [sym_return_statement] = STATE(1581), + [sym_throw_statement] = STATE(1580), + [sym_empty_statement] = STATE(1579), + [sym_labeled_statement] = STATE(1578), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3103), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1503), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1503), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1503), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7745), + [sym_string] = STATE(3558), + [sym_comment] = STATE(126), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1503), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(452), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5699), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), + [sym_html_comment] = ACTIONS(5), + }, + [127] = { + [sym_export_statement] = STATE(1411), + [sym_declaration] = STATE(1417), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1423), + [sym_expression_statement] = STATE(1427), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_statement_block] = STATE(1430), + [sym_if_statement] = STATE(1431), + [sym_switch_statement] = STATE(1434), + [sym_for_statement] = STATE(1453), + [sym_for_in_statement] = STATE(1254), + [sym_while_statement] = STATE(1451), + [sym_do_statement] = STATE(1450), + [sym_try_statement] = STATE(1449), + [sym_with_statement] = STATE(1447), + [sym_break_statement] = STATE(1443), + [sym_continue_statement] = STATE(1422), + [sym_debugger_statement] = STATE(1421), + [sym_return_statement] = STATE(1420), + [sym_throw_statement] = STATE(1415), + [sym_empty_statement] = STATE(1414), + [sym_labeled_statement] = STATE(1413), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7389), + [sym_string] = STATE(3558), + [sym_comment] = STATE(127), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(502), + [anon_sym_export] = ACTIONS(504), + [anon_sym_type] = ACTIONS(508), + [anon_sym_namespace] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(514), + [anon_sym_from] = ACTIONS(516), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_const] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_for] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(516), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(534), + [anon_sym_try] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_debugger] = ACTIONS(542), + [anon_sym_return] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(552), + [anon_sym_async] = ACTIONS(554), + [anon_sym_function] = ACTIONS(556), + [anon_sym_new] = ACTIONS(558), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(516), + [anon_sym_readonly] = ACTIONS(516), + [anon_sym_get] = ACTIONS(516), + [anon_sym_set] = ACTIONS(516), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_override] = ACTIONS(516), + [anon_sym_module] = ACTIONS(564), + [anon_sym_any] = ACTIONS(516), + [anon_sym_number] = ACTIONS(516), + [anon_sym_boolean] = ACTIONS(516), + [anon_sym_string] = ACTIONS(516), + [anon_sym_symbol] = ACTIONS(516), + [anon_sym_object] = ACTIONS(516), + [anon_sym_property] = ACTIONS(516), + [anon_sym_signal] = ACTIONS(516), + [anon_sym_on] = ACTIONS(516), + [anon_sym_required] = ACTIONS(516), + [anon_sym_component] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [128] = { + [sym_export_statement] = STATE(1407), + [sym_declaration] = STATE(1407), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1407), + [sym_expression_statement] = STATE(1407), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_statement_block] = STATE(1407), + [sym_if_statement] = STATE(1407), + [sym_switch_statement] = STATE(1407), + [sym_for_statement] = STATE(1407), + [sym_for_in_statement] = STATE(1407), + [sym_while_statement] = STATE(1407), + [sym_do_statement] = STATE(1407), + [sym_try_statement] = STATE(1407), + [sym_with_statement] = STATE(1407), + [sym_break_statement] = STATE(1407), + [sym_continue_statement] = STATE(1407), + [sym_debugger_statement] = STATE(1407), + [sym_return_statement] = STATE(1407), + [sym_throw_statement] = STATE(1407), + [sym_empty_statement] = STATE(1407), + [sym_labeled_statement] = STATE(1407), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7389), + [sym_string] = STATE(3558), + [sym_comment] = STATE(128), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(502), + [anon_sym_export] = ACTIONS(504), + [anon_sym_type] = ACTIONS(508), + [anon_sym_namespace] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(514), + [anon_sym_from] = ACTIONS(516), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_const] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_for] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(516), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(534), + [anon_sym_try] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_debugger] = ACTIONS(542), + [anon_sym_return] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(552), + [anon_sym_async] = ACTIONS(554), + [anon_sym_function] = ACTIONS(556), + [anon_sym_new] = ACTIONS(558), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(516), + [anon_sym_readonly] = ACTIONS(516), + [anon_sym_get] = ACTIONS(516), + [anon_sym_set] = ACTIONS(516), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_override] = ACTIONS(516), + [anon_sym_module] = ACTIONS(564), + [anon_sym_any] = ACTIONS(516), + [anon_sym_number] = ACTIONS(516), + [anon_sym_boolean] = ACTIONS(516), + [anon_sym_string] = ACTIONS(516), + [anon_sym_symbol] = ACTIONS(516), + [anon_sym_object] = ACTIONS(516), + [anon_sym_property] = ACTIONS(516), + [anon_sym_signal] = ACTIONS(516), + [anon_sym_on] = ACTIONS(516), + [anon_sym_required] = ACTIONS(516), + [anon_sym_component] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [129] = { + [sym_export_statement] = STATE(1531), + [sym_declaration] = STATE(1531), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1531), + [sym_expression_statement] = STATE(1531), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_statement_block] = STATE(1531), + [sym_if_statement] = STATE(1531), + [sym_switch_statement] = STATE(1531), + [sym_for_statement] = STATE(1531), + [sym_for_in_statement] = STATE(1531), + [sym_while_statement] = STATE(1531), + [sym_do_statement] = STATE(1531), + [sym_try_statement] = STATE(1531), + [sym_with_statement] = STATE(1531), + [sym_break_statement] = STATE(1531), + [sym_continue_statement] = STATE(1531), + [sym_debugger_statement] = STATE(1531), + [sym_return_statement] = STATE(1531), + [sym_throw_statement] = STATE(1531), + [sym_empty_statement] = STATE(1531), + [sym_labeled_statement] = STATE(1531), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3103), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1503), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1503), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1503), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7745), + [sym_string] = STATE(3558), + [sym_comment] = STATE(129), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1503), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(452), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5699), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), + [sym_html_comment] = ACTIONS(5), + }, + [130] = { + [sym_export_statement] = STATE(1514), + [sym_declaration] = STATE(1514), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1514), + [sym_expression_statement] = STATE(1514), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_statement_block] = STATE(1514), + [sym_if_statement] = STATE(1514), + [sym_switch_statement] = STATE(1514), + [sym_for_statement] = STATE(1514), + [sym_for_in_statement] = STATE(1514), + [sym_while_statement] = STATE(1514), + [sym_do_statement] = STATE(1514), + [sym_try_statement] = STATE(1514), + [sym_with_statement] = STATE(1514), + [sym_break_statement] = STATE(1514), + [sym_continue_statement] = STATE(1514), + [sym_debugger_statement] = STATE(1514), + [sym_return_statement] = STATE(1514), + [sym_throw_statement] = STATE(1514), + [sym_empty_statement] = STATE(1514), + [sym_labeled_statement] = STATE(1514), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3103), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1503), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1503), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1503), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7745), + [sym_string] = STATE(3558), + [sym_comment] = STATE(130), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1503), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(452), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5699), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), + [sym_html_comment] = ACTIONS(5), + }, + [131] = { + [sym_export_statement] = STATE(4189), + [sym_declaration] = STATE(4189), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4189), + [sym_expression_statement] = STATE(4189), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_statement_block] = STATE(4189), + [sym_if_statement] = STATE(4189), + [sym_switch_statement] = STATE(4189), + [sym_for_statement] = STATE(4189), + [sym_for_in_statement] = STATE(4189), + [sym_while_statement] = STATE(4189), + [sym_do_statement] = STATE(4189), + [sym_try_statement] = STATE(4189), + [sym_with_statement] = STATE(4189), + [sym_break_statement] = STATE(4189), + [sym_continue_statement] = STATE(4189), + [sym_debugger_statement] = STATE(4189), + [sym_return_statement] = STATE(4189), + [sym_throw_statement] = STATE(4189), + [sym_empty_statement] = STATE(4189), + [sym_labeled_statement] = STATE(4189), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4084), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4084), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4084), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7980), + [sym_string] = STATE(3558), + [sym_comment] = STATE(131), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4084), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(1875), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5651), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [132] = { + [sym_export_statement] = STATE(1562), + [sym_declaration] = STATE(1562), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1562), + [sym_expression_statement] = STATE(1562), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_statement_block] = STATE(1562), + [sym_if_statement] = STATE(1562), + [sym_switch_statement] = STATE(1562), + [sym_for_statement] = STATE(1562), + [sym_for_in_statement] = STATE(1562), + [sym_while_statement] = STATE(1562), + [sym_do_statement] = STATE(1562), + [sym_try_statement] = STATE(1562), + [sym_with_statement] = STATE(1562), + [sym_break_statement] = STATE(1562), + [sym_continue_statement] = STATE(1562), + [sym_debugger_statement] = STATE(1562), + [sym_return_statement] = STATE(1562), + [sym_throw_statement] = STATE(1562), + [sym_empty_statement] = STATE(1562), + [sym_labeled_statement] = STATE(1562), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3103), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1503), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1503), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1503), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7745), + [sym_string] = STATE(3558), + [sym_comment] = STATE(132), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1503), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(452), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5699), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), + [sym_html_comment] = ACTIONS(5), + }, + [133] = { + [sym_export_statement] = STATE(4251), + [sym_declaration] = STATE(4251), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4251), + [sym_expression_statement] = STATE(4251), + [sym_variable_declaration] = STATE(4253), + [sym_lexical_declaration] = STATE(4253), + [sym_statement_block] = STATE(4251), + [sym_if_statement] = STATE(4251), + [sym_switch_statement] = STATE(4251), + [sym_for_statement] = STATE(4251), + [sym_for_in_statement] = STATE(4251), + [sym_while_statement] = STATE(4251), + [sym_do_statement] = STATE(4251), + [sym_try_statement] = STATE(4251), + [sym_with_statement] = STATE(4251), + [sym_break_statement] = STATE(4251), + [sym_continue_statement] = STATE(4251), + [sym_debugger_statement] = STATE(4251), + [sym_return_statement] = STATE(4251), + [sym_throw_statement] = STATE(4251), + [sym_empty_statement] = STATE(4251), + [sym_labeled_statement] = STATE(4251), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4253), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4253), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4253), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(133), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4253), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4253), + [sym_abstract_class_declaration] = STATE(4253), + [sym_module] = STATE(4253), + [sym_internal_module] = STATE(1893), + [sym_import_alias] = STATE(4253), + [sym_interface_declaration] = STATE(4253), + [sym_enum_declaration] = STATE(4253), + [sym_type_alias_declaration] = STATE(4253), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5509), + [sym_identifier] = ACTIONS(966), + [anon_sym_export] = ACTIONS(968), + [anon_sym_type] = ACTIONS(970), + [anon_sym_namespace] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(976), + [anon_sym_from] = ACTIONS(978), + [anon_sym_with] = ACTIONS(980), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(984), + [anon_sym_const] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_for] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(978), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(996), + [anon_sym_try] = ACTIONS(998), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_debugger] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_throw] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(1014), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(978), + [anon_sym_readonly] = ACTIONS(978), + [anon_sym_get] = ACTIONS(978), + [anon_sym_set] = ACTIONS(978), + [anon_sym_declare] = ACTIONS(1020), + [anon_sym_public] = ACTIONS(978), + [anon_sym_private] = ACTIONS(978), + [anon_sym_protected] = ACTIONS(978), + [anon_sym_override] = ACTIONS(978), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_any] = ACTIONS(978), + [anon_sym_number] = ACTIONS(978), + [anon_sym_boolean] = ACTIONS(978), + [anon_sym_string] = ACTIONS(978), + [anon_sym_symbol] = ACTIONS(978), + [anon_sym_object] = ACTIONS(978), + [anon_sym_property] = ACTIONS(978), + [anon_sym_signal] = ACTIONS(978), + [anon_sym_on] = ACTIONS(978), + [anon_sym_required] = ACTIONS(978), + [anon_sym_component] = ACTIONS(978), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), + [sym_html_comment] = ACTIONS(5), + }, + [134] = { + [sym_export_statement] = STATE(1709), + [sym_declaration] = STATE(1709), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1709), + [sym_expression_statement] = STATE(1709), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1709), + [sym_if_statement] = STATE(1709), + [sym_switch_statement] = STATE(1709), + [sym_for_statement] = STATE(1709), + [sym_for_in_statement] = STATE(1709), + [sym_while_statement] = STATE(1709), + [sym_do_statement] = STATE(1709), + [sym_try_statement] = STATE(1709), + [sym_with_statement] = STATE(1709), + [sym_break_statement] = STATE(1709), + [sym_continue_statement] = STATE(1709), + [sym_debugger_statement] = STATE(1709), + [sym_return_statement] = STATE(1709), + [sym_throw_statement] = STATE(1709), + [sym_empty_statement] = STATE(1709), + [sym_labeled_statement] = STATE(1709), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(134), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [135] = { + [sym_export_statement] = STATE(1564), + [sym_declaration] = STATE(1564), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1564), + [sym_expression_statement] = STATE(1564), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_statement_block] = STATE(1564), + [sym_if_statement] = STATE(1564), + [sym_switch_statement] = STATE(1564), + [sym_for_statement] = STATE(1564), + [sym_for_in_statement] = STATE(1564), + [sym_while_statement] = STATE(1564), + [sym_do_statement] = STATE(1564), + [sym_try_statement] = STATE(1564), + [sym_with_statement] = STATE(1564), + [sym_break_statement] = STATE(1564), + [sym_continue_statement] = STATE(1564), + [sym_debugger_statement] = STATE(1564), + [sym_return_statement] = STATE(1564), + [sym_throw_statement] = STATE(1564), + [sym_empty_statement] = STATE(1564), + [sym_labeled_statement] = STATE(1564), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3103), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1503), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1503), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1503), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7745), + [sym_string] = STATE(3558), + [sym_comment] = STATE(135), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1503), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(452), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5699), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), + [sym_html_comment] = ACTIONS(5), + }, + [136] = { + [sym_export_statement] = STATE(1013), + [sym_declaration] = STATE(1013), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1013), + [sym_expression_statement] = STATE(1013), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_statement_block] = STATE(1013), + [sym_if_statement] = STATE(1013), + [sym_switch_statement] = STATE(1013), + [sym_for_statement] = STATE(1013), + [sym_for_in_statement] = STATE(1013), + [sym_while_statement] = STATE(1013), + [sym_do_statement] = STATE(1013), + [sym_try_statement] = STATE(1013), + [sym_with_statement] = STATE(1013), + [sym_break_statement] = STATE(1013), + [sym_continue_statement] = STATE(1013), + [sym_debugger_statement] = STATE(1013), + [sym_return_statement] = STATE(1013), + [sym_throw_statement] = STATE(1013), + [sym_empty_statement] = STATE(1013), + [sym_labeled_statement] = STATE(1013), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1105), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1105), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1105), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7549), + [sym_string] = STATE(3558), + [sym_comment] = STATE(136), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1105), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(371), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(902), + [anon_sym_export] = ACTIONS(904), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(912), + [anon_sym_from] = ACTIONS(914), + [anon_sym_with] = ACTIONS(916), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(920), + [anon_sym_const] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_for] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(914), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(932), + [anon_sym_try] = ACTIONS(934), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_debugger] = ACTIONS(940), + [anon_sym_return] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(914), + [anon_sym_readonly] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(914), + [anon_sym_number] = ACTIONS(914), + [anon_sym_boolean] = ACTIONS(914), + [anon_sym_string] = ACTIONS(914), + [anon_sym_symbol] = ACTIONS(914), + [anon_sym_object] = ACTIONS(914), + [anon_sym_property] = ACTIONS(914), + [anon_sym_signal] = ACTIONS(914), + [anon_sym_on] = ACTIONS(914), + [anon_sym_required] = ACTIONS(914), + [anon_sym_component] = ACTIONS(914), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), + [sym_html_comment] = ACTIONS(5), + }, + [137] = { + [sym_export_statement] = STATE(1385), + [sym_declaration] = STATE(1385), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1385), + [sym_expression_statement] = STATE(1385), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_statement_block] = STATE(1385), + [sym_if_statement] = STATE(1385), + [sym_switch_statement] = STATE(1385), + [sym_for_statement] = STATE(1385), + [sym_for_in_statement] = STATE(1385), + [sym_while_statement] = STATE(1385), + [sym_do_statement] = STATE(1385), + [sym_try_statement] = STATE(1385), + [sym_with_statement] = STATE(1385), + [sym_break_statement] = STATE(1385), + [sym_continue_statement] = STATE(1385), + [sym_debugger_statement] = STATE(1385), + [sym_return_statement] = STATE(1385), + [sym_throw_statement] = STATE(1385), + [sym_empty_statement] = STATE(1385), + [sym_labeled_statement] = STATE(1385), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7389), + [sym_string] = STATE(3558), + [sym_comment] = STATE(137), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(502), + [anon_sym_export] = ACTIONS(504), + [anon_sym_type] = ACTIONS(508), + [anon_sym_namespace] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(514), + [anon_sym_from] = ACTIONS(516), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_const] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_for] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(516), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(534), + [anon_sym_try] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_debugger] = ACTIONS(542), + [anon_sym_return] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(552), + [anon_sym_async] = ACTIONS(554), + [anon_sym_function] = ACTIONS(556), + [anon_sym_new] = ACTIONS(558), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(516), + [anon_sym_readonly] = ACTIONS(516), + [anon_sym_get] = ACTIONS(516), + [anon_sym_set] = ACTIONS(516), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_override] = ACTIONS(516), + [anon_sym_module] = ACTIONS(564), + [anon_sym_any] = ACTIONS(516), + [anon_sym_number] = ACTIONS(516), + [anon_sym_boolean] = ACTIONS(516), + [anon_sym_string] = ACTIONS(516), + [anon_sym_symbol] = ACTIONS(516), + [anon_sym_object] = ACTIONS(516), + [anon_sym_property] = ACTIONS(516), + [anon_sym_signal] = ACTIONS(516), + [anon_sym_on] = ACTIONS(516), + [anon_sym_required] = ACTIONS(516), + [anon_sym_component] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [138] = { + [sym_export_statement] = STATE(8426), + [sym_declaration] = STATE(8426), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(8426), + [sym_expression_statement] = STATE(8426), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(8426), + [sym_if_statement] = STATE(8426), + [sym_switch_statement] = STATE(8426), + [sym_for_statement] = STATE(8426), + [sym_for_in_statement] = STATE(8426), + [sym_while_statement] = STATE(8426), + [sym_do_statement] = STATE(8426), + [sym_try_statement] = STATE(8426), + [sym_with_statement] = STATE(8426), + [sym_break_statement] = STATE(8426), + [sym_continue_statement] = STATE(8426), + [sym_debugger_statement] = STATE(8426), + [sym_return_statement] = STATE(8426), + [sym_throw_statement] = STATE(8426), + [sym_empty_statement] = STATE(8426), + [sym_labeled_statement] = STATE(8426), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(138), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [139] = { + [sym_export_statement] = STATE(1345), + [sym_declaration] = STATE(1345), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1345), + [sym_expression_statement] = STATE(1345), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_statement_block] = STATE(1345), + [sym_if_statement] = STATE(1345), + [sym_switch_statement] = STATE(1345), + [sym_for_statement] = STATE(1345), + [sym_for_in_statement] = STATE(1345), + [sym_while_statement] = STATE(1345), + [sym_do_statement] = STATE(1345), + [sym_try_statement] = STATE(1345), + [sym_with_statement] = STATE(1345), + [sym_break_statement] = STATE(1345), + [sym_continue_statement] = STATE(1345), + [sym_debugger_statement] = STATE(1345), + [sym_return_statement] = STATE(1345), + [sym_throw_statement] = STATE(1345), + [sym_empty_statement] = STATE(1345), + [sym_labeled_statement] = STATE(1345), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7389), + [sym_string] = STATE(3558), + [sym_comment] = STATE(139), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(502), + [anon_sym_export] = ACTIONS(504), + [anon_sym_type] = ACTIONS(508), + [anon_sym_namespace] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(514), + [anon_sym_from] = ACTIONS(516), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_const] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_for] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(516), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(534), + [anon_sym_try] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_debugger] = ACTIONS(542), + [anon_sym_return] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(552), + [anon_sym_async] = ACTIONS(554), + [anon_sym_function] = ACTIONS(556), + [anon_sym_new] = ACTIONS(558), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(516), + [anon_sym_readonly] = ACTIONS(516), + [anon_sym_get] = ACTIONS(516), + [anon_sym_set] = ACTIONS(516), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_override] = ACTIONS(516), + [anon_sym_module] = ACTIONS(564), + [anon_sym_any] = ACTIONS(516), + [anon_sym_number] = ACTIONS(516), + [anon_sym_boolean] = ACTIONS(516), + [anon_sym_string] = ACTIONS(516), + [anon_sym_symbol] = ACTIONS(516), + [anon_sym_object] = ACTIONS(516), + [anon_sym_property] = ACTIONS(516), + [anon_sym_signal] = ACTIONS(516), + [anon_sym_on] = ACTIONS(516), + [anon_sym_required] = ACTIONS(516), + [anon_sym_component] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [140] = { + [sym_export_statement] = STATE(1798), + [sym_declaration] = STATE(1800), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1807), + [sym_expression_statement] = STATE(1808), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1806), + [sym_if_statement] = STATE(1805), + [sym_switch_statement] = STATE(1804), + [sym_for_statement] = STATE(1803), + [sym_for_in_statement] = STATE(1802), + [sym_while_statement] = STATE(1801), + [sym_do_statement] = STATE(1762), + [sym_try_statement] = STATE(1758), + [sym_with_statement] = STATE(1757), + [sym_break_statement] = STATE(1752), + [sym_continue_statement] = STATE(1746), + [sym_debugger_statement] = STATE(1745), + [sym_return_statement] = STATE(1674), + [sym_throw_statement] = STATE(1651), + [sym_empty_statement] = STATE(1743), + [sym_labeled_statement] = STATE(1742), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(140), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [141] = { + [sym_export_statement] = STATE(8256), + [sym_declaration] = STATE(8256), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(8256), + [sym_expression_statement] = STATE(8256), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(8256), + [sym_if_statement] = STATE(8256), + [sym_switch_statement] = STATE(8256), + [sym_for_statement] = STATE(8256), + [sym_for_in_statement] = STATE(8256), + [sym_while_statement] = STATE(8256), + [sym_do_statement] = STATE(8256), + [sym_try_statement] = STATE(8256), + [sym_with_statement] = STATE(8256), + [sym_break_statement] = STATE(8256), + [sym_continue_statement] = STATE(8256), + [sym_debugger_statement] = STATE(8256), + [sym_return_statement] = STATE(8256), + [sym_throw_statement] = STATE(8256), + [sym_empty_statement] = STATE(8256), + [sym_labeled_statement] = STATE(8256), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(141), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [142] = { + [sym_export_statement] = STATE(8437), + [sym_declaration] = STATE(8437), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(8437), + [sym_expression_statement] = STATE(8437), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(8437), + [sym_if_statement] = STATE(8437), + [sym_switch_statement] = STATE(8437), + [sym_for_statement] = STATE(8437), + [sym_for_in_statement] = STATE(8437), + [sym_while_statement] = STATE(8437), + [sym_do_statement] = STATE(8437), + [sym_try_statement] = STATE(8437), + [sym_with_statement] = STATE(8437), + [sym_break_statement] = STATE(8437), + [sym_continue_statement] = STATE(8437), + [sym_debugger_statement] = STATE(8437), + [sym_return_statement] = STATE(8437), + [sym_throw_statement] = STATE(8437), + [sym_empty_statement] = STATE(8437), + [sym_labeled_statement] = STATE(8437), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(142), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [143] = { + [sym_export_statement] = STATE(1189), + [sym_declaration] = STATE(1189), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1189), + [sym_expression_statement] = STATE(1189), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_statement_block] = STATE(1189), + [sym_if_statement] = STATE(1189), + [sym_switch_statement] = STATE(1189), + [sym_for_statement] = STATE(1189), + [sym_for_in_statement] = STATE(1189), + [sym_while_statement] = STATE(1189), + [sym_do_statement] = STATE(1189), + [sym_try_statement] = STATE(1189), + [sym_with_statement] = STATE(1189), + [sym_break_statement] = STATE(1189), + [sym_continue_statement] = STATE(1189), + [sym_debugger_statement] = STATE(1189), + [sym_return_statement] = STATE(1189), + [sym_throw_statement] = STATE(1189), + [sym_empty_statement] = STATE(1189), + [sym_labeled_statement] = STATE(1189), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1105), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1105), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1105), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7549), + [sym_string] = STATE(3558), + [sym_comment] = STATE(143), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1105), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(371), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(902), + [anon_sym_export] = ACTIONS(904), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(912), + [anon_sym_from] = ACTIONS(914), + [anon_sym_with] = ACTIONS(916), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(920), + [anon_sym_const] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_for] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(914), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(932), + [anon_sym_try] = ACTIONS(934), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_debugger] = ACTIONS(940), + [anon_sym_return] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(914), + [anon_sym_readonly] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(914), + [anon_sym_number] = ACTIONS(914), + [anon_sym_boolean] = ACTIONS(914), + [anon_sym_string] = ACTIONS(914), + [anon_sym_symbol] = ACTIONS(914), + [anon_sym_object] = ACTIONS(914), + [anon_sym_property] = ACTIONS(914), + [anon_sym_signal] = ACTIONS(914), + [anon_sym_on] = ACTIONS(914), + [anon_sym_required] = ACTIONS(914), + [anon_sym_component] = ACTIONS(914), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), + [sym_html_comment] = ACTIONS(5), + }, + [144] = { + [sym_export_statement] = STATE(4403), + [sym_declaration] = STATE(4403), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4403), + [sym_expression_statement] = STATE(4403), + [sym_variable_declaration] = STATE(4253), + [sym_lexical_declaration] = STATE(4253), + [sym_statement_block] = STATE(4403), + [sym_if_statement] = STATE(4403), + [sym_switch_statement] = STATE(4403), + [sym_for_statement] = STATE(4403), + [sym_for_in_statement] = STATE(4403), + [sym_while_statement] = STATE(4403), + [sym_do_statement] = STATE(4403), + [sym_try_statement] = STATE(4403), + [sym_with_statement] = STATE(4403), + [sym_break_statement] = STATE(4403), + [sym_continue_statement] = STATE(4403), + [sym_debugger_statement] = STATE(4403), + [sym_return_statement] = STATE(4403), + [sym_throw_statement] = STATE(4403), + [sym_empty_statement] = STATE(4403), + [sym_labeled_statement] = STATE(4403), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4253), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4253), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4253), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(144), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4253), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4253), + [sym_abstract_class_declaration] = STATE(4253), + [sym_module] = STATE(4253), + [sym_internal_module] = STATE(1893), + [sym_import_alias] = STATE(4253), + [sym_interface_declaration] = STATE(4253), + [sym_enum_declaration] = STATE(4253), + [sym_type_alias_declaration] = STATE(4253), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5509), + [sym_identifier] = ACTIONS(966), + [anon_sym_export] = ACTIONS(968), + [anon_sym_type] = ACTIONS(970), + [anon_sym_namespace] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(976), + [anon_sym_from] = ACTIONS(978), + [anon_sym_with] = ACTIONS(980), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(984), + [anon_sym_const] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_for] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(978), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(996), + [anon_sym_try] = ACTIONS(998), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_debugger] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_throw] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(1014), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(978), + [anon_sym_readonly] = ACTIONS(978), + [anon_sym_get] = ACTIONS(978), + [anon_sym_set] = ACTIONS(978), + [anon_sym_declare] = ACTIONS(1020), + [anon_sym_public] = ACTIONS(978), + [anon_sym_private] = ACTIONS(978), + [anon_sym_protected] = ACTIONS(978), + [anon_sym_override] = ACTIONS(978), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_any] = ACTIONS(978), + [anon_sym_number] = ACTIONS(978), + [anon_sym_boolean] = ACTIONS(978), + [anon_sym_string] = ACTIONS(978), + [anon_sym_symbol] = ACTIONS(978), + [anon_sym_object] = ACTIONS(978), + [anon_sym_property] = ACTIONS(978), + [anon_sym_signal] = ACTIONS(978), + [anon_sym_on] = ACTIONS(978), + [anon_sym_required] = ACTIONS(978), + [anon_sym_component] = ACTIONS(978), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), + [sym_html_comment] = ACTIONS(5), + }, + [145] = { + [sym_export_statement] = STATE(8238), + [sym_declaration] = STATE(8238), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(8238), + [sym_expression_statement] = STATE(8238), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(8238), + [sym_if_statement] = STATE(8238), + [sym_switch_statement] = STATE(8238), + [sym_for_statement] = STATE(8238), + [sym_for_in_statement] = STATE(8238), + [sym_while_statement] = STATE(8238), + [sym_do_statement] = STATE(8238), + [sym_try_statement] = STATE(8238), + [sym_with_statement] = STATE(8238), + [sym_break_statement] = STATE(8238), + [sym_continue_statement] = STATE(8238), + [sym_debugger_statement] = STATE(8238), + [sym_return_statement] = STATE(8238), + [sym_throw_statement] = STATE(8238), + [sym_empty_statement] = STATE(8238), + [sym_labeled_statement] = STATE(8238), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(145), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [146] = { + [sym_export_statement] = STATE(1692), + [sym_declaration] = STATE(1692), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1692), + [sym_expression_statement] = STATE(1692), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_statement_block] = STATE(1692), + [sym_if_statement] = STATE(1692), + [sym_switch_statement] = STATE(1692), + [sym_for_statement] = STATE(1692), + [sym_for_in_statement] = STATE(1692), + [sym_while_statement] = STATE(1692), + [sym_do_statement] = STATE(1692), + [sym_try_statement] = STATE(1692), + [sym_with_statement] = STATE(1692), + [sym_break_statement] = STATE(1692), + [sym_continue_statement] = STATE(1692), + [sym_debugger_statement] = STATE(1692), + [sym_return_statement] = STATE(1692), + [sym_throw_statement] = STATE(1692), + [sym_empty_statement] = STATE(1692), + [sym_labeled_statement] = STATE(1692), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7441), + [sym_string] = STATE(3558), + [sym_comment] = STATE(146), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5561), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [147] = { + [sym_export_statement] = STATE(1321), + [sym_declaration] = STATE(1321), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1321), + [sym_expression_statement] = STATE(1321), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_statement_block] = STATE(1321), + [sym_if_statement] = STATE(1321), + [sym_switch_statement] = STATE(1321), + [sym_for_statement] = STATE(1321), + [sym_for_in_statement] = STATE(1321), + [sym_while_statement] = STATE(1321), + [sym_do_statement] = STATE(1321), + [sym_try_statement] = STATE(1321), + [sym_with_statement] = STATE(1321), + [sym_break_statement] = STATE(1321), + [sym_continue_statement] = STATE(1321), + [sym_debugger_statement] = STATE(1321), + [sym_return_statement] = STATE(1321), + [sym_throw_statement] = STATE(1321), + [sym_empty_statement] = STATE(1321), + [sym_labeled_statement] = STATE(1321), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7389), + [sym_string] = STATE(3558), + [sym_comment] = STATE(147), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(502), + [anon_sym_export] = ACTIONS(504), + [anon_sym_type] = ACTIONS(508), + [anon_sym_namespace] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(514), + [anon_sym_from] = ACTIONS(516), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_const] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_for] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(516), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(534), + [anon_sym_try] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_debugger] = ACTIONS(542), + [anon_sym_return] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(552), + [anon_sym_async] = ACTIONS(554), + [anon_sym_function] = ACTIONS(556), + [anon_sym_new] = ACTIONS(558), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(516), + [anon_sym_readonly] = ACTIONS(516), + [anon_sym_get] = ACTIONS(516), + [anon_sym_set] = ACTIONS(516), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_override] = ACTIONS(516), + [anon_sym_module] = ACTIONS(564), + [anon_sym_any] = ACTIONS(516), + [anon_sym_number] = ACTIONS(516), + [anon_sym_boolean] = ACTIONS(516), + [anon_sym_string] = ACTIONS(516), + [anon_sym_symbol] = ACTIONS(516), + [anon_sym_object] = ACTIONS(516), + [anon_sym_property] = ACTIONS(516), + [anon_sym_signal] = ACTIONS(516), + [anon_sym_on] = ACTIONS(516), + [anon_sym_required] = ACTIONS(516), + [anon_sym_component] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [148] = { + [sym_export_statement] = STATE(1436), + [sym_declaration] = STATE(1436), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1436), + [sym_expression_statement] = STATE(1436), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_statement_block] = STATE(1436), + [sym_if_statement] = STATE(1436), + [sym_switch_statement] = STATE(1436), + [sym_for_statement] = STATE(1436), + [sym_for_in_statement] = STATE(1436), + [sym_while_statement] = STATE(1436), + [sym_do_statement] = STATE(1436), + [sym_try_statement] = STATE(1436), + [sym_with_statement] = STATE(1436), + [sym_break_statement] = STATE(1436), + [sym_continue_statement] = STATE(1436), + [sym_debugger_statement] = STATE(1436), + [sym_return_statement] = STATE(1436), + [sym_throw_statement] = STATE(1436), + [sym_empty_statement] = STATE(1436), + [sym_labeled_statement] = STATE(1436), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3103), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1503), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1503), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1503), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7745), + [sym_string] = STATE(3558), + [sym_comment] = STATE(148), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1503), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(452), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5699), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), + [sym_html_comment] = ACTIONS(5), + }, + [149] = { + [sym_export_statement] = STATE(8319), + [sym_declaration] = STATE(8319), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(8319), + [sym_expression_statement] = STATE(8319), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(8319), + [sym_if_statement] = STATE(8319), + [sym_switch_statement] = STATE(8319), + [sym_for_statement] = STATE(8319), + [sym_for_in_statement] = STATE(8319), + [sym_while_statement] = STATE(8319), + [sym_do_statement] = STATE(8319), + [sym_try_statement] = STATE(8319), + [sym_with_statement] = STATE(8319), + [sym_break_statement] = STATE(8319), + [sym_continue_statement] = STATE(8319), + [sym_debugger_statement] = STATE(8319), + [sym_return_statement] = STATE(8319), + [sym_throw_statement] = STATE(8319), + [sym_empty_statement] = STATE(8319), + [sym_labeled_statement] = STATE(8319), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(149), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [150] = { + [sym_export_statement] = STATE(1324), + [sym_declaration] = STATE(1324), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1324), + [sym_expression_statement] = STATE(1324), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_statement_block] = STATE(1324), + [sym_if_statement] = STATE(1324), + [sym_switch_statement] = STATE(1324), + [sym_for_statement] = STATE(1324), + [sym_for_in_statement] = STATE(1324), + [sym_while_statement] = STATE(1324), + [sym_do_statement] = STATE(1324), + [sym_try_statement] = STATE(1324), + [sym_with_statement] = STATE(1324), + [sym_break_statement] = STATE(1324), + [sym_continue_statement] = STATE(1324), + [sym_debugger_statement] = STATE(1324), + [sym_return_statement] = STATE(1324), + [sym_throw_statement] = STATE(1324), + [sym_empty_statement] = STATE(1324), + [sym_labeled_statement] = STATE(1324), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7389), + [sym_string] = STATE(3558), + [sym_comment] = STATE(150), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(502), + [anon_sym_export] = ACTIONS(504), + [anon_sym_type] = ACTIONS(508), + [anon_sym_namespace] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(514), + [anon_sym_from] = ACTIONS(516), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_const] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_for] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(516), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(534), + [anon_sym_try] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_debugger] = ACTIONS(542), + [anon_sym_return] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(552), + [anon_sym_async] = ACTIONS(554), + [anon_sym_function] = ACTIONS(556), + [anon_sym_new] = ACTIONS(558), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(516), + [anon_sym_readonly] = ACTIONS(516), + [anon_sym_get] = ACTIONS(516), + [anon_sym_set] = ACTIONS(516), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_override] = ACTIONS(516), + [anon_sym_module] = ACTIONS(564), + [anon_sym_any] = ACTIONS(516), + [anon_sym_number] = ACTIONS(516), + [anon_sym_boolean] = ACTIONS(516), + [anon_sym_string] = ACTIONS(516), + [anon_sym_symbol] = ACTIONS(516), + [anon_sym_object] = ACTIONS(516), + [anon_sym_property] = ACTIONS(516), + [anon_sym_signal] = ACTIONS(516), + [anon_sym_on] = ACTIONS(516), + [anon_sym_required] = ACTIONS(516), + [anon_sym_component] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [151] = { + [sym_export_statement] = STATE(7871), + [sym_declaration] = STATE(7871), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(7871), + [sym_expression_statement] = STATE(7871), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(7871), + [sym_if_statement] = STATE(7871), + [sym_switch_statement] = STATE(7871), + [sym_for_statement] = STATE(7871), + [sym_for_in_statement] = STATE(7871), + [sym_while_statement] = STATE(7871), + [sym_do_statement] = STATE(7871), + [sym_try_statement] = STATE(7871), + [sym_with_statement] = STATE(7871), + [sym_break_statement] = STATE(7871), + [sym_continue_statement] = STATE(7871), + [sym_debugger_statement] = STATE(7871), + [sym_return_statement] = STATE(7871), + [sym_throw_statement] = STATE(7871), + [sym_empty_statement] = STATE(7871), + [sym_labeled_statement] = STATE(7871), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(151), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [152] = { + [sym_export_statement] = STATE(4434), + [sym_declaration] = STATE(4435), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4381), + [sym_expression_statement] = STATE(4326), + [sym_variable_declaration] = STATE(4253), + [sym_lexical_declaration] = STATE(4253), + [sym_statement_block] = STATE(4321), + [sym_if_statement] = STATE(4304), + [sym_switch_statement] = STATE(4256), + [sym_for_statement] = STATE(4254), + [sym_for_in_statement] = STATE(4243), + [sym_while_statement] = STATE(4238), + [sym_do_statement] = STATE(4237), + [sym_try_statement] = STATE(4427), + [sym_with_statement] = STATE(4423), + [sym_break_statement] = STATE(4409), + [sym_continue_statement] = STATE(4401), + [sym_debugger_statement] = STATE(4310), + [sym_return_statement] = STATE(4308), + [sym_throw_statement] = STATE(4306), + [sym_empty_statement] = STATE(4288), + [sym_labeled_statement] = STATE(4285), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4253), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4253), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4253), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(152), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4253), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4253), + [sym_abstract_class_declaration] = STATE(4253), + [sym_module] = STATE(4253), + [sym_internal_module] = STATE(1893), + [sym_import_alias] = STATE(4253), + [sym_interface_declaration] = STATE(4253), + [sym_enum_declaration] = STATE(4253), + [sym_type_alias_declaration] = STATE(4253), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5509), + [sym_identifier] = ACTIONS(966), + [anon_sym_export] = ACTIONS(968), + [anon_sym_type] = ACTIONS(970), + [anon_sym_namespace] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(976), + [anon_sym_from] = ACTIONS(978), + [anon_sym_with] = ACTIONS(980), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(984), + [anon_sym_const] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_for] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(978), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(996), + [anon_sym_try] = ACTIONS(998), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_debugger] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_throw] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(1014), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(978), + [anon_sym_readonly] = ACTIONS(978), + [anon_sym_get] = ACTIONS(978), + [anon_sym_set] = ACTIONS(978), + [anon_sym_declare] = ACTIONS(1020), + [anon_sym_public] = ACTIONS(978), + [anon_sym_private] = ACTIONS(978), + [anon_sym_protected] = ACTIONS(978), + [anon_sym_override] = ACTIONS(978), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_any] = ACTIONS(978), + [anon_sym_number] = ACTIONS(978), + [anon_sym_boolean] = ACTIONS(978), + [anon_sym_string] = ACTIONS(978), + [anon_sym_symbol] = ACTIONS(978), + [anon_sym_object] = ACTIONS(978), + [anon_sym_property] = ACTIONS(978), + [anon_sym_signal] = ACTIONS(978), + [anon_sym_on] = ACTIONS(978), + [anon_sym_required] = ACTIONS(978), + [anon_sym_component] = ACTIONS(978), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), + [sym_html_comment] = ACTIONS(5), + }, + [153] = { + [sym_export_statement] = STATE(4284), + [sym_declaration] = STATE(4284), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(4284), + [sym_expression_statement] = STATE(4284), + [sym_variable_declaration] = STATE(4253), + [sym_lexical_declaration] = STATE(4253), + [sym_statement_block] = STATE(4284), + [sym_if_statement] = STATE(4284), + [sym_switch_statement] = STATE(4284), + [sym_for_statement] = STATE(4284), + [sym_for_in_statement] = STATE(4284), + [sym_while_statement] = STATE(4284), + [sym_do_statement] = STATE(4284), + [sym_try_statement] = STATE(4284), + [sym_with_statement] = STATE(4284), + [sym_break_statement] = STATE(4284), + [sym_continue_statement] = STATE(4284), + [sym_debugger_statement] = STATE(4284), + [sym_return_statement] = STATE(4284), + [sym_throw_statement] = STATE(4284), + [sym_empty_statement] = STATE(4284), + [sym_labeled_statement] = STATE(4284), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4253), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4253), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4253), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(153), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(4253), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4253), + [sym_abstract_class_declaration] = STATE(4253), + [sym_module] = STATE(4253), + [sym_internal_module] = STATE(1893), + [sym_import_alias] = STATE(4253), + [sym_interface_declaration] = STATE(4253), + [sym_enum_declaration] = STATE(4253), + [sym_type_alias_declaration] = STATE(4253), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5509), + [sym_identifier] = ACTIONS(966), + [anon_sym_export] = ACTIONS(968), + [anon_sym_type] = ACTIONS(970), + [anon_sym_namespace] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(976), + [anon_sym_from] = ACTIONS(978), + [anon_sym_with] = ACTIONS(980), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(984), + [anon_sym_const] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_for] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(978), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(996), + [anon_sym_try] = ACTIONS(998), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_debugger] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_throw] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(1014), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(978), + [anon_sym_readonly] = ACTIONS(978), + [anon_sym_get] = ACTIONS(978), + [anon_sym_set] = ACTIONS(978), + [anon_sym_declare] = ACTIONS(1020), + [anon_sym_public] = ACTIONS(978), + [anon_sym_private] = ACTIONS(978), + [anon_sym_protected] = ACTIONS(978), + [anon_sym_override] = ACTIONS(978), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_any] = ACTIONS(978), + [anon_sym_number] = ACTIONS(978), + [anon_sym_boolean] = ACTIONS(978), + [anon_sym_string] = ACTIONS(978), + [anon_sym_symbol] = ACTIONS(978), + [anon_sym_object] = ACTIONS(978), + [anon_sym_property] = ACTIONS(978), + [anon_sym_signal] = ACTIONS(978), + [anon_sym_on] = ACTIONS(978), + [anon_sym_required] = ACTIONS(978), + [anon_sym_component] = ACTIONS(978), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), + [sym_html_comment] = ACTIONS(5), + }, + [154] = { + [sym_export_statement] = STATE(1648), + [sym_declaration] = STATE(1648), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1648), + [sym_expression_statement] = STATE(1648), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_statement_block] = STATE(1648), + [sym_if_statement] = STATE(1648), + [sym_switch_statement] = STATE(1648), + [sym_for_statement] = STATE(1648), + [sym_for_in_statement] = STATE(1648), + [sym_while_statement] = STATE(1648), + [sym_do_statement] = STATE(1648), + [sym_try_statement] = STATE(1648), + [sym_with_statement] = STATE(1648), + [sym_break_statement] = STATE(1648), + [sym_continue_statement] = STATE(1648), + [sym_debugger_statement] = STATE(1648), + [sym_return_statement] = STATE(1648), + [sym_throw_statement] = STATE(1648), + [sym_empty_statement] = STATE(1648), + [sym_labeled_statement] = STATE(1648), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3103), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1503), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1503), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1503), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7745), + [sym_string] = STATE(3558), + [sym_comment] = STATE(154), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1503), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(452), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5699), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), + [sym_html_comment] = ACTIONS(5), + }, + [155] = { + [sym_export_statement] = STATE(1644), + [sym_declaration] = STATE(1643), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1642), + [sym_expression_statement] = STATE(1641), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_statement_block] = STATE(1640), + [sym_if_statement] = STATE(1639), + [sym_switch_statement] = STATE(1638), + [sym_for_statement] = STATE(1637), + [sym_for_in_statement] = STATE(1636), + [sym_while_statement] = STATE(1635), + [sym_do_statement] = STATE(1634), + [sym_try_statement] = STATE(1633), + [sym_with_statement] = STATE(1632), + [sym_break_statement] = STATE(1631), + [sym_continue_statement] = STATE(1630), + [sym_debugger_statement] = STATE(1629), + [sym_return_statement] = STATE(1628), + [sym_throw_statement] = STATE(1627), + [sym_empty_statement] = STATE(1626), + [sym_labeled_statement] = STATE(1625), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3103), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1503), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1503), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1503), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7745), + [sym_string] = STATE(3558), + [sym_comment] = STATE(155), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1503), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(452), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5699), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), + [sym_html_comment] = ACTIONS(5), + }, + [156] = { + [sym_export_statement] = STATE(1624), + [sym_declaration] = STATE(1624), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1624), + [sym_expression_statement] = STATE(1624), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_statement_block] = STATE(1624), + [sym_if_statement] = STATE(1624), + [sym_switch_statement] = STATE(1624), + [sym_for_statement] = STATE(1624), + [sym_for_in_statement] = STATE(1624), + [sym_while_statement] = STATE(1624), + [sym_do_statement] = STATE(1624), + [sym_try_statement] = STATE(1624), + [sym_with_statement] = STATE(1624), + [sym_break_statement] = STATE(1624), + [sym_continue_statement] = STATE(1624), + [sym_debugger_statement] = STATE(1624), + [sym_return_statement] = STATE(1624), + [sym_throw_statement] = STATE(1624), + [sym_empty_statement] = STATE(1624), + [sym_labeled_statement] = STATE(1624), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3103), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1503), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1503), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1503), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7745), + [sym_string] = STATE(3558), + [sym_comment] = STATE(156), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1503), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(452), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5699), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), + [sym_html_comment] = ACTIONS(5), + }, + [157] = { + [sym_export_statement] = STATE(7734), + [sym_declaration] = STATE(7734), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(7734), + [sym_expression_statement] = STATE(7734), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(7734), + [sym_if_statement] = STATE(7734), + [sym_switch_statement] = STATE(7734), + [sym_for_statement] = STATE(7734), + [sym_for_in_statement] = STATE(7734), + [sym_while_statement] = STATE(7734), + [sym_do_statement] = STATE(7734), + [sym_try_statement] = STATE(7734), + [sym_with_statement] = STATE(7734), + [sym_break_statement] = STATE(7734), + [sym_continue_statement] = STATE(7734), + [sym_debugger_statement] = STATE(7734), + [sym_return_statement] = STATE(7734), + [sym_throw_statement] = STATE(7734), + [sym_empty_statement] = STATE(7734), + [sym_labeled_statement] = STATE(7734), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(157), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [158] = { + [sym_export_statement] = STATE(8389), + [sym_declaration] = STATE(8389), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(8389), + [sym_expression_statement] = STATE(8389), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(8389), + [sym_if_statement] = STATE(8389), + [sym_switch_statement] = STATE(8389), + [sym_for_statement] = STATE(8389), + [sym_for_in_statement] = STATE(8389), + [sym_while_statement] = STATE(8389), + [sym_do_statement] = STATE(8389), + [sym_try_statement] = STATE(8389), + [sym_with_statement] = STATE(8389), + [sym_break_statement] = STATE(8389), + [sym_continue_statement] = STATE(8389), + [sym_debugger_statement] = STATE(8389), + [sym_return_statement] = STATE(8389), + [sym_throw_statement] = STATE(8389), + [sym_empty_statement] = STATE(8389), + [sym_labeled_statement] = STATE(8389), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(158), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [159] = { + [sym_export_statement] = STATE(1372), + [sym_declaration] = STATE(1370), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1369), + [sym_expression_statement] = STATE(1368), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_statement_block] = STATE(1367), + [sym_if_statement] = STATE(1366), + [sym_switch_statement] = STATE(1365), + [sym_for_statement] = STATE(1364), + [sym_for_in_statement] = STATE(1363), + [sym_while_statement] = STATE(1362), + [sym_do_statement] = STATE(1357), + [sym_try_statement] = STATE(1356), + [sym_with_statement] = STATE(1355), + [sym_break_statement] = STATE(1354), + [sym_continue_statement] = STATE(1353), + [sym_debugger_statement] = STATE(1352), + [sym_return_statement] = STATE(1351), + [sym_throw_statement] = STATE(1350), + [sym_empty_statement] = STATE(1349), + [sym_labeled_statement] = STATE(1348), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7389), + [sym_string] = STATE(3558), + [sym_comment] = STATE(159), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5504), + [sym_identifier] = ACTIONS(502), + [anon_sym_export] = ACTIONS(504), + [anon_sym_type] = ACTIONS(508), + [anon_sym_namespace] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(514), + [anon_sym_from] = ACTIONS(516), + [anon_sym_with] = ACTIONS(518), + [anon_sym_var] = ACTIONS(520), + [anon_sym_let] = ACTIONS(522), + [anon_sym_const] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_for] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(516), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(534), + [anon_sym_try] = ACTIONS(536), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(540), + [anon_sym_debugger] = ACTIONS(542), + [anon_sym_return] = ACTIONS(544), + [anon_sym_throw] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(552), + [anon_sym_async] = ACTIONS(554), + [anon_sym_function] = ACTIONS(556), + [anon_sym_new] = ACTIONS(558), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(516), + [anon_sym_readonly] = ACTIONS(516), + [anon_sym_get] = ACTIONS(516), + [anon_sym_set] = ACTIONS(516), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(516), + [anon_sym_private] = ACTIONS(516), + [anon_sym_protected] = ACTIONS(516), + [anon_sym_override] = ACTIONS(516), + [anon_sym_module] = ACTIONS(564), + [anon_sym_any] = ACTIONS(516), + [anon_sym_number] = ACTIONS(516), + [anon_sym_boolean] = ACTIONS(516), + [anon_sym_string] = ACTIONS(516), + [anon_sym_symbol] = ACTIONS(516), + [anon_sym_object] = ACTIONS(516), + [anon_sym_property] = ACTIONS(516), + [anon_sym_signal] = ACTIONS(516), + [anon_sym_on] = ACTIONS(516), + [anon_sym_required] = ACTIONS(516), + [anon_sym_component] = ACTIONS(516), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [160] = { + [sym_export_statement] = STATE(7765), + [sym_declaration] = STATE(7765), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(7765), + [sym_expression_statement] = STATE(7765), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_statement_block] = STATE(7765), + [sym_if_statement] = STATE(7765), + [sym_switch_statement] = STATE(7765), + [sym_for_statement] = STATE(7765), + [sym_for_in_statement] = STATE(7765), + [sym_while_statement] = STATE(7765), + [sym_do_statement] = STATE(7765), + [sym_try_statement] = STATE(7765), + [sym_with_statement] = STATE(7765), + [sym_break_statement] = STATE(7765), + [sym_continue_statement] = STATE(7765), + [sym_debugger_statement] = STATE(7765), + [sym_return_statement] = STATE(7765), + [sym_throw_statement] = STATE(7765), + [sym_empty_statement] = STATE(7765), + [sym_labeled_statement] = STATE(7765), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8083), + [sym_string] = STATE(3558), + [sym_comment] = STATE(160), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5551), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [161] = { + [sym_export_statement] = STATE(1234), + [sym_declaration] = STATE(1234), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1234), + [sym_expression_statement] = STATE(1234), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_statement_block] = STATE(1234), + [sym_if_statement] = STATE(1234), + [sym_switch_statement] = STATE(1234), + [sym_for_statement] = STATE(1234), + [sym_for_in_statement] = STATE(1234), + [sym_while_statement] = STATE(1234), + [sym_do_statement] = STATE(1234), + [sym_try_statement] = STATE(1234), + [sym_with_statement] = STATE(1234), + [sym_break_statement] = STATE(1234), + [sym_continue_statement] = STATE(1234), + [sym_debugger_statement] = STATE(1234), + [sym_return_statement] = STATE(1234), + [sym_throw_statement] = STATE(1234), + [sym_empty_statement] = STATE(1234), + [sym_labeled_statement] = STATE(1234), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1105), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1105), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1105), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7549), + [sym_string] = STATE(3558), + [sym_comment] = STATE(161), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1105), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(371), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(902), + [anon_sym_export] = ACTIONS(904), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(912), + [anon_sym_from] = ACTIONS(914), + [anon_sym_with] = ACTIONS(916), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(920), + [anon_sym_const] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_for] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(914), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(932), + [anon_sym_try] = ACTIONS(934), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_debugger] = ACTIONS(940), + [anon_sym_return] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(914), + [anon_sym_readonly] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(914), + [anon_sym_number] = ACTIONS(914), + [anon_sym_boolean] = ACTIONS(914), + [anon_sym_string] = ACTIONS(914), + [anon_sym_symbol] = ACTIONS(914), + [anon_sym_object] = ACTIONS(914), + [anon_sym_property] = ACTIONS(914), + [anon_sym_signal] = ACTIONS(914), + [anon_sym_on] = ACTIONS(914), + [anon_sym_required] = ACTIONS(914), + [anon_sym_component] = ACTIONS(914), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), + [sym_html_comment] = ACTIONS(5), + }, + [162] = { + [sym_export_statement] = STATE(1193), + [sym_declaration] = STATE(1051), + [sym_import] = STATE(5074), + [sym_import_statement] = STATE(1252), + [sym_expression_statement] = STATE(1251), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_statement_block] = STATE(1250), + [sym_if_statement] = STATE(1249), + [sym_switch_statement] = STATE(1248), + [sym_for_statement] = STATE(1247), + [sym_for_in_statement] = STATE(1246), + [sym_while_statement] = STATE(1245), + [sym_do_statement] = STATE(1244), + [sym_try_statement] = STATE(1243), + [sym_with_statement] = STATE(1242), + [sym_break_statement] = STATE(1241), + [sym_continue_statement] = STATE(1240), + [sym_debugger_statement] = STATE(1239), + [sym_return_statement] = STATE(1238), + [sym_throw_statement] = STATE(1237), + [sym_empty_statement] = STATE(1236), + [sym_labeled_statement] = STATE(1235), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1105), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1105), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1105), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7549), + [sym_string] = STATE(3558), + [sym_comment] = STATE(162), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_function_signature] = STATE(1105), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(371), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5640), + [sym_identifier] = ACTIONS(902), + [anon_sym_export] = ACTIONS(904), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(912), + [anon_sym_from] = ACTIONS(914), + [anon_sym_with] = ACTIONS(916), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(920), + [anon_sym_const] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_for] = ACTIONS(928), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(914), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(932), + [anon_sym_try] = ACTIONS(934), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_debugger] = ACTIONS(940), + [anon_sym_return] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(914), + [anon_sym_readonly] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(914), + [anon_sym_number] = ACTIONS(914), + [anon_sym_boolean] = ACTIONS(914), + [anon_sym_string] = ACTIONS(914), + [anon_sym_symbol] = ACTIONS(914), + [anon_sym_object] = ACTIONS(914), + [anon_sym_property] = ACTIONS(914), + [anon_sym_signal] = ACTIONS(914), + [anon_sym_on] = ACTIONS(914), + [anon_sym_required] = ACTIONS(914), + [anon_sym_component] = ACTIONS(914), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), + [sym_html_comment] = ACTIONS(5), + }, + [163] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(163), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1177), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [164] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7295), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(164), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(6158), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7151), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7282), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(1191), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1211), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1231), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1235), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1237), + [anon_sym_number] = ACTIONS(1237), + [anon_sym_boolean] = ACTIONS(1237), + [anon_sym_string] = ACTIONS(1237), + [anon_sym_symbol] = ACTIONS(1237), + [anon_sym_object] = ACTIONS(1237), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [165] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7295), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(165), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(6158), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(6925), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7282), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(1191), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(1239), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1241), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1231), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1235), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1237), + [anon_sym_number] = ACTIONS(1237), + [anon_sym_boolean] = ACTIONS(1237), + [anon_sym_string] = ACTIONS(1237), + [anon_sym_symbol] = ACTIONS(1237), + [anon_sym_object] = ACTIONS(1237), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [166] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3165), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7094), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(166), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(6158), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7151), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(6959), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(1191), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1243), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1231), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1235), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1237), + [anon_sym_number] = ACTIONS(1237), + [anon_sym_boolean] = ACTIONS(1237), + [anon_sym_string] = ACTIONS(1237), + [anon_sym_symbol] = ACTIONS(1237), + [anon_sym_object] = ACTIONS(1237), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [167] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7295), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(167), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(6158), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7151), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7282), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(1191), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1245), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1231), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1235), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1237), + [anon_sym_number] = ACTIONS(1237), + [anon_sym_boolean] = ACTIONS(1237), + [anon_sym_string] = ACTIONS(1237), + [anon_sym_symbol] = ACTIONS(1237), + [anon_sym_object] = ACTIONS(1237), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [168] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(168), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [aux_sym_object_repeat1] = STATE(6742), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1177), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [169] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(169), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1177), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [170] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7295), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(170), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(6158), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7151), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7282), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(1191), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1251), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1231), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1235), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1237), + [anon_sym_number] = ACTIONS(1237), + [anon_sym_boolean] = ACTIONS(1237), + [anon_sym_string] = ACTIONS(1237), + [anon_sym_symbol] = ACTIONS(1237), + [anon_sym_object] = ACTIONS(1237), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [171] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7295), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(171), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(6158), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7151), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7282), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(1191), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1253), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1231), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1235), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1237), + [anon_sym_number] = ACTIONS(1237), + [anon_sym_boolean] = ACTIONS(1237), + [anon_sym_string] = ACTIONS(1237), + [anon_sym_symbol] = ACTIONS(1237), + [anon_sym_object] = ACTIONS(1237), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [172] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7295), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(172), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(6158), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7151), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7282), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(1191), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1255), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1231), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1235), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1237), + [anon_sym_number] = ACTIONS(1237), + [anon_sym_boolean] = ACTIONS(1237), + [anon_sym_string] = ACTIONS(1237), + [anon_sym_symbol] = ACTIONS(1237), + [anon_sym_object] = ACTIONS(1237), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [173] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7295), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(173), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(6158), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7151), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7282), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(1191), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1231), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1235), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1237), + [anon_sym_number] = ACTIONS(1237), + [anon_sym_boolean] = ACTIONS(1237), + [anon_sym_string] = ACTIONS(1237), + [anon_sym_symbol] = ACTIONS(1237), + [anon_sym_object] = ACTIONS(1237), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [174] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3165), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7094), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(174), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(6158), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7151), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(6959), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(1191), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1259), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1231), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1235), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1237), + [anon_sym_number] = ACTIONS(1237), + [anon_sym_boolean] = ACTIONS(1237), + [anon_sym_string] = ACTIONS(1237), + [anon_sym_symbol] = ACTIONS(1237), + [anon_sym_object] = ACTIONS(1237), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [175] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7295), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(175), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(6158), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7151), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7282), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(1191), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1197), + [anon_sym_COMMA] = ACTIONS(1199), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1231), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1235), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1237), + [anon_sym_number] = ACTIONS(1237), + [anon_sym_boolean] = ACTIONS(1237), + [anon_sym_string] = ACTIONS(1237), + [anon_sym_symbol] = ACTIONS(1237), + [anon_sym_object] = ACTIONS(1237), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [176] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(176), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1177), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [177] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(177), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(5890), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(21), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_SLASH] = ACTIONS(82), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(91), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1280), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1283), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [178] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(178), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6172), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(21), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_SLASH] = ACTIONS(82), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(91), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1280), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1287), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [179] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(179), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6193), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(21), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_SLASH] = ACTIONS(82), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(91), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1280), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1289), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [180] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(180), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6164), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(34), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(21), + [anon_sym_COLON] = ACTIONS(34), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_SLASH] = ACTIONS(82), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(91), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1280), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1291), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [181] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(181), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6164), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(21), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_SLASH] = ACTIONS(82), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(91), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1280), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1291), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [182] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(182), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6169), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(21), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_SLASH] = ACTIONS(82), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(91), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1280), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1293), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [183] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(183), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6073), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(21), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_SLASH] = ACTIONS(82), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(91), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1280), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1295), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [184] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(184), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6040), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(43), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(21), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(43), + [anon_sym_DASH] = ACTIONS(43), + [anon_sym_SLASH] = ACTIONS(82), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(91), + [anon_sym_DASH_DASH] = ACTIONS(91), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1280), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1297), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [185] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(185), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [186] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(186), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1321), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(1321), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1321), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [187] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(187), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1323), + [anon_sym_export] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(34), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(34), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1325), + [anon_sym_COLON] = ACTIONS(34), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1333), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1335), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1325), + [anon_sym_set] = ACTIONS(1325), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(1325), + [anon_sym_public] = ACTIONS(1325), + [anon_sym_private] = ACTIONS(1325), + [anon_sym_protected] = ACTIONS(1325), + [anon_sym_override] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_any] = ACTIONS(1325), + [anon_sym_number] = ACTIONS(1325), + [anon_sym_boolean] = ACTIONS(1325), + [anon_sym_string] = ACTIONS(1325), + [anon_sym_symbol] = ACTIONS(1325), + [anon_sym_object] = ACTIONS(1325), + [anon_sym_property] = ACTIONS(1325), + [anon_sym_signal] = ACTIONS(1325), + [anon_sym_on] = ACTIONS(1325), + [anon_sym_required] = ACTIONS(1325), + [anon_sym_component] = ACTIONS(1325), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [188] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2956), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym__formal_parameter] = STATE(6885), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8499), + [sym_string] = STATE(3645), + [sym_comment] = STATE(188), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym__type] = STATE(6395), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1337), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_typeof] = ACTIONS(1341), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1349), + [sym_number] = ACTIONS(1351), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1353), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [sym_null] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1355), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1361), + [anon_sym_private] = ACTIONS(1361), + [anon_sym_protected] = ACTIONS(1361), + [anon_sym_override] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1365), + [anon_sym_number] = ACTIONS(1365), + [anon_sym_boolean] = ACTIONS(1365), + [anon_sym_string] = ACTIONS(1365), + [anon_sym_symbol] = ACTIONS(1365), + [anon_sym_object] = ACTIONS(1365), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [189] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2842), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym__formal_parameter] = STATE(6885), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8708), + [sym_string] = STATE(3645), + [sym_comment] = STATE(189), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym__type] = STATE(6465), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1337), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_typeof] = ACTIONS(1341), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1349), + [sym_number] = ACTIONS(1351), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1353), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [sym_null] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1355), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1361), + [anon_sym_private] = ACTIONS(1361), + [anon_sym_protected] = ACTIONS(1361), + [anon_sym_override] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1365), + [anon_sym_number] = ACTIONS(1365), + [anon_sym_boolean] = ACTIONS(1365), + [anon_sym_string] = ACTIONS(1365), + [anon_sym_symbol] = ACTIONS(1365), + [anon_sym_object] = ACTIONS(1365), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [190] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(190), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(6161), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8045), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1323), + [anon_sym_export] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(28), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1325), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1333), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1335), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1325), + [anon_sym_set] = ACTIONS(1325), + [anon_sym_declare] = ACTIONS(1325), + [anon_sym_public] = ACTIONS(1325), + [anon_sym_private] = ACTIONS(1325), + [anon_sym_protected] = ACTIONS(1325), + [anon_sym_override] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_any] = ACTIONS(1325), + [anon_sym_number] = ACTIONS(1325), + [anon_sym_boolean] = ACTIONS(1325), + [anon_sym_string] = ACTIONS(1325), + [anon_sym_symbol] = ACTIONS(1325), + [anon_sym_object] = ACTIONS(1325), + [anon_sym_property] = ACTIONS(1325), + [anon_sym_signal] = ACTIONS(1325), + [anon_sym_on] = ACTIONS(1325), + [anon_sym_required] = ACTIONS(1325), + [anon_sym_component] = ACTIONS(1325), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [191] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(191), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1323), + [anon_sym_export] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(28), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1325), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1333), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1335), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1325), + [anon_sym_set] = ACTIONS(1325), + [anon_sym_declare] = ACTIONS(1325), + [anon_sym_public] = ACTIONS(1325), + [anon_sym_private] = ACTIONS(1325), + [anon_sym_protected] = ACTIONS(1325), + [anon_sym_override] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_any] = ACTIONS(1325), + [anon_sym_number] = ACTIONS(1325), + [anon_sym_boolean] = ACTIONS(1325), + [anon_sym_string] = ACTIONS(1325), + [anon_sym_symbol] = ACTIONS(1325), + [anon_sym_object] = ACTIONS(1325), + [anon_sym_property] = ACTIONS(1325), + [anon_sym_signal] = ACTIONS(1325), + [anon_sym_on] = ACTIONS(1325), + [anon_sym_required] = ACTIONS(1325), + [anon_sym_component] = ACTIONS(1325), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [192] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(192), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(6161), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8045), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1323), + [anon_sym_export] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(34), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1325), + [anon_sym_COLON] = ACTIONS(34), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1333), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1335), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1325), + [anon_sym_set] = ACTIONS(1325), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(1325), + [anon_sym_public] = ACTIONS(1325), + [anon_sym_private] = ACTIONS(1325), + [anon_sym_protected] = ACTIONS(1325), + [anon_sym_override] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_any] = ACTIONS(1325), + [anon_sym_number] = ACTIONS(1325), + [anon_sym_boolean] = ACTIONS(1325), + [anon_sym_string] = ACTIONS(1325), + [anon_sym_symbol] = ACTIONS(1325), + [anon_sym_object] = ACTIONS(1325), + [anon_sym_property] = ACTIONS(1325), + [anon_sym_signal] = ACTIONS(1325), + [anon_sym_on] = ACTIONS(1325), + [anon_sym_required] = ACTIONS(1325), + [anon_sym_component] = ACTIONS(1325), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [193] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(193), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(28), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [194] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2842), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym__formal_parameter] = STATE(6885), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8708), + [sym_string] = STATE(3645), + [sym_comment] = STATE(194), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym__type] = STATE(6395), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1337), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_typeof] = ACTIONS(1341), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1215), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1349), + [sym_number] = ACTIONS(1351), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1353), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [sym_null] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1355), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1359), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1361), + [anon_sym_private] = ACTIONS(1361), + [anon_sym_protected] = ACTIONS(1361), + [anon_sym_override] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1365), + [anon_sym_number] = ACTIONS(1365), + [anon_sym_boolean] = ACTIONS(1365), + [anon_sym_string] = ACTIONS(1365), + [anon_sym_symbol] = ACTIONS(1365), + [anon_sym_object] = ACTIONS(1365), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [195] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(195), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1371), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1177), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [196] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(196), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1373), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1177), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [197] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(197), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1375), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1177), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [198] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(198), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1177), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [199] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(199), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1177), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [200] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(200), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(6161), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8045), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1177), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [201] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3279), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8406), + [sym_string] = STATE(3056), + [sym_comment] = STATE(201), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(82), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1280), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [202] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(6885), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(202), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym__type] = STATE(6465), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(727), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(32), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(52), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(68), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(80), + [anon_sym_DASH] = ACTIONS(80), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(89), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1400), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(104), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(1402), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(112), + [anon_sym_number] = ACTIONS(112), + [anon_sym_boolean] = ACTIONS(112), + [anon_sym_string] = ACTIONS(112), + [anon_sym_symbol] = ACTIONS(112), + [anon_sym_object] = ACTIONS(112), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [203] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(203), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1408), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1177), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [204] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(6885), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(204), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym__type] = STATE(6395), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(727), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(32), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(52), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(68), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(80), + [anon_sym_DASH] = ACTIONS(80), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(89), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1400), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(104), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(1402), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(112), + [anon_sym_number] = ACTIONS(112), + [anon_sym_boolean] = ACTIONS(112), + [anon_sym_string] = ACTIONS(112), + [anon_sym_symbol] = ACTIONS(112), + [anon_sym_object] = ACTIONS(112), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [205] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(205), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1410), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1177), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [206] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(6885), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(206), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym__type] = STATE(6536), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(727), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(32), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(52), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(68), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(80), + [anon_sym_DASH] = ACTIONS(80), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(89), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1400), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(104), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(1402), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(112), + [anon_sym_number] = ACTIONS(112), + [anon_sym_boolean] = ACTIONS(112), + [anon_sym_string] = ACTIONS(112), + [anon_sym_symbol] = ACTIONS(112), + [anon_sym_object] = ACTIONS(112), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [207] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(207), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [208] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(208), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(6161), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8045), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [209] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(209), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1412), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1177), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [210] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(6885), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(210), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym__type] = STATE(6436), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(727), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(32), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(52), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(68), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(80), + [anon_sym_DASH] = ACTIONS(80), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(89), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1400), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(104), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(1402), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(112), + [anon_sym_number] = ACTIONS(112), + [anon_sym_boolean] = ACTIONS(112), + [anon_sym_string] = ACTIONS(112), + [anon_sym_symbol] = ACTIONS(112), + [anon_sym_object] = ACTIONS(112), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [211] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(6885), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(211), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5765), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym__type] = STATE(6364), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(727), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(32), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(52), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(68), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(80), + [anon_sym_DASH] = ACTIONS(80), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(89), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1400), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(104), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(1402), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(112), + [anon_sym_number] = ACTIONS(112), + [anon_sym_boolean] = ACTIONS(112), + [anon_sym_string] = ACTIONS(112), + [anon_sym_symbol] = ACTIONS(112), + [anon_sym_object] = ACTIONS(112), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [212] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(212), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1414), + [anon_sym_export] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1418), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1425), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_readonly] = ACTIONS(1416), + [anon_sym_get] = ACTIONS(1416), + [anon_sym_set] = ACTIONS(1416), + [anon_sym_declare] = ACTIONS(1416), + [anon_sym_public] = ACTIONS(1416), + [anon_sym_private] = ACTIONS(1416), + [anon_sym_protected] = ACTIONS(1416), + [anon_sym_override] = ACTIONS(1416), + [anon_sym_module] = ACTIONS(1416), + [anon_sym_any] = ACTIONS(1416), + [anon_sym_number] = ACTIONS(1416), + [anon_sym_boolean] = ACTIONS(1416), + [anon_sym_string] = ACTIONS(1416), + [anon_sym_symbol] = ACTIONS(1416), + [anon_sym_object] = ACTIONS(1416), + [anon_sym_property] = ACTIONS(1416), + [anon_sym_signal] = ACTIONS(1416), + [anon_sym_on] = ACTIONS(1416), + [anon_sym_required] = ACTIONS(1416), + [anon_sym_component] = ACTIONS(1416), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [213] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(213), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1323), + [anon_sym_export] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1325), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(1431), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1333), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1335), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1325), + [anon_sym_set] = ACTIONS(1325), + [anon_sym_declare] = ACTIONS(1325), + [anon_sym_public] = ACTIONS(1325), + [anon_sym_private] = ACTIONS(1325), + [anon_sym_protected] = ACTIONS(1325), + [anon_sym_override] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_any] = ACTIONS(1325), + [anon_sym_number] = ACTIONS(1325), + [anon_sym_boolean] = ACTIONS(1325), + [anon_sym_string] = ACTIONS(1325), + [anon_sym_symbol] = ACTIONS(1325), + [anon_sym_object] = ACTIONS(1325), + [anon_sym_property] = ACTIONS(1325), + [anon_sym_signal] = ACTIONS(1325), + [anon_sym_on] = ACTIONS(1325), + [anon_sym_required] = ACTIONS(1325), + [anon_sym_component] = ACTIONS(1325), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [214] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(214), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1164), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(1434), + [anon_sym_of] = ACTIONS(1437), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1177), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1183), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [215] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(215), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1439), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1449), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1451), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), + [anon_sym_property] = ACTIONS(1441), + [anon_sym_signal] = ACTIONS(1441), + [anon_sym_on] = ACTIONS(1441), + [anon_sym_required] = ACTIONS(1441), + [anon_sym_component] = ACTIONS(1441), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [216] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(216), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1449), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [217] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(217), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(6161), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8045), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1323), + [anon_sym_export] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1325), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(1431), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1333), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1335), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1325), + [anon_sym_set] = ACTIONS(1325), + [anon_sym_declare] = ACTIONS(1325), + [anon_sym_public] = ACTIONS(1325), + [anon_sym_private] = ACTIONS(1325), + [anon_sym_protected] = ACTIONS(1325), + [anon_sym_override] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_any] = ACTIONS(1325), + [anon_sym_number] = ACTIONS(1325), + [anon_sym_boolean] = ACTIONS(1325), + [anon_sym_string] = ACTIONS(1325), + [anon_sym_symbol] = ACTIONS(1325), + [anon_sym_object] = ACTIONS(1325), + [anon_sym_property] = ACTIONS(1325), + [anon_sym_signal] = ACTIONS(1325), + [anon_sym_on] = ACTIONS(1325), + [anon_sym_required] = ACTIONS(1325), + [anon_sym_component] = ACTIONS(1325), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [218] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(218), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(6161), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8045), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1439), + [anon_sym_export] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1449), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1451), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), + [anon_sym_property] = ACTIONS(1441), + [anon_sym_signal] = ACTIONS(1441), + [anon_sym_on] = ACTIONS(1441), + [anon_sym_required] = ACTIONS(1441), + [anon_sym_component] = ACTIONS(1441), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [219] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(219), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_implements] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [220] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(220), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1414), + [anon_sym_export] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1425), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_readonly] = ACTIONS(1416), + [anon_sym_get] = ACTIONS(1416), + [anon_sym_set] = ACTIONS(1416), + [anon_sym_declare] = ACTIONS(1416), + [anon_sym_public] = ACTIONS(1416), + [anon_sym_private] = ACTIONS(1416), + [anon_sym_protected] = ACTIONS(1416), + [anon_sym_override] = ACTIONS(1416), + [anon_sym_module] = ACTIONS(1416), + [anon_sym_any] = ACTIONS(1416), + [anon_sym_number] = ACTIONS(1416), + [anon_sym_boolean] = ACTIONS(1416), + [anon_sym_string] = ACTIONS(1416), + [anon_sym_symbol] = ACTIONS(1416), + [anon_sym_object] = ACTIONS(1416), + [anon_sym_property] = ACTIONS(1416), + [anon_sym_signal] = ACTIONS(1416), + [anon_sym_on] = ACTIONS(1416), + [anon_sym_required] = ACTIONS(1416), + [anon_sym_component] = ACTIONS(1416), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [221] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(221), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1414), + [anon_sym_export] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1459), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1425), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_readonly] = ACTIONS(1416), + [anon_sym_get] = ACTIONS(1416), + [anon_sym_set] = ACTIONS(1416), + [anon_sym_declare] = ACTIONS(1416), + [anon_sym_public] = ACTIONS(1416), + [anon_sym_private] = ACTIONS(1416), + [anon_sym_protected] = ACTIONS(1416), + [anon_sym_override] = ACTIONS(1416), + [anon_sym_module] = ACTIONS(1416), + [anon_sym_any] = ACTIONS(1416), + [anon_sym_number] = ACTIONS(1416), + [anon_sym_boolean] = ACTIONS(1416), + [anon_sym_string] = ACTIONS(1416), + [anon_sym_symbol] = ACTIONS(1416), + [anon_sym_object] = ACTIONS(1416), + [anon_sym_property] = ACTIONS(1416), + [anon_sym_signal] = ACTIONS(1416), + [anon_sym_on] = ACTIONS(1416), + [anon_sym_required] = ACTIONS(1416), + [anon_sym_component] = ACTIONS(1416), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [222] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(222), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1463), + [anon_sym_let] = ACTIONS(1463), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1463), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1469), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1463), + [anon_sym_readonly] = ACTIONS(1463), + [anon_sym_get] = ACTIONS(1463), + [anon_sym_set] = ACTIONS(1463), + [anon_sym_declare] = ACTIONS(1463), + [anon_sym_public] = ACTIONS(1463), + [anon_sym_private] = ACTIONS(1463), + [anon_sym_protected] = ACTIONS(1463), + [anon_sym_override] = ACTIONS(1463), + [anon_sym_module] = ACTIONS(1463), + [anon_sym_any] = ACTIONS(1463), + [anon_sym_number] = ACTIONS(1463), + [anon_sym_boolean] = ACTIONS(1463), + [anon_sym_string] = ACTIONS(1463), + [anon_sym_symbol] = ACTIONS(1463), + [anon_sym_object] = ACTIONS(1463), + [anon_sym_property] = ACTIONS(1463), + [anon_sym_signal] = ACTIONS(1463), + [anon_sym_on] = ACTIONS(1463), + [anon_sym_required] = ACTIONS(1463), + [anon_sym_component] = ACTIONS(1463), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_implements] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [223] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(223), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5990), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(7945), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1323), + [anon_sym_export] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(34), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1325), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1333), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1335), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1325), + [anon_sym_set] = ACTIONS(1325), + [anon_sym_declare] = ACTIONS(1325), + [anon_sym_public] = ACTIONS(1325), + [anon_sym_private] = ACTIONS(1325), + [anon_sym_protected] = ACTIONS(1325), + [anon_sym_override] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_any] = ACTIONS(1325), + [anon_sym_number] = ACTIONS(1325), + [anon_sym_boolean] = ACTIONS(1325), + [anon_sym_string] = ACTIONS(1325), + [anon_sym_symbol] = ACTIONS(1325), + [anon_sym_object] = ACTIONS(1325), + [anon_sym_property] = ACTIONS(1325), + [anon_sym_signal] = ACTIONS(1325), + [anon_sym_on] = ACTIONS(1325), + [anon_sym_required] = ACTIONS(1325), + [anon_sym_component] = ACTIONS(1325), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [224] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(224), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(6161), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8045), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1477), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1477), + [anon_sym_let] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1483), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_readonly] = ACTIONS(1477), + [anon_sym_get] = ACTIONS(1477), + [anon_sym_set] = ACTIONS(1477), + [anon_sym_declare] = ACTIONS(1477), + [anon_sym_public] = ACTIONS(1477), + [anon_sym_private] = ACTIONS(1477), + [anon_sym_protected] = ACTIONS(1477), + [anon_sym_override] = ACTIONS(1477), + [anon_sym_module] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_number] = ACTIONS(1477), + [anon_sym_boolean] = ACTIONS(1477), + [anon_sym_string] = ACTIONS(1477), + [anon_sym_symbol] = ACTIONS(1477), + [anon_sym_object] = ACTIONS(1477), + [anon_sym_property] = ACTIONS(1477), + [anon_sym_signal] = ACTIONS(1477), + [anon_sym_on] = ACTIONS(1477), + [anon_sym_required] = ACTIONS(1477), + [anon_sym_component] = ACTIONS(1477), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [225] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2422), + [sym_expression] = STATE(3826), + [sym_primary_expression] = STATE(3067), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2422), + [sym_subscript_expression] = STATE(2422), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3558), + [sym_comment] = STATE(225), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2422), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1475), + [anon_sym_export] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1477), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1481), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1477), + [anon_sym_let] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1483), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1487), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1187), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_readonly] = ACTIONS(1477), + [anon_sym_get] = ACTIONS(1477), + [anon_sym_set] = ACTIONS(1477), + [anon_sym_declare] = ACTIONS(1477), + [anon_sym_public] = ACTIONS(1477), + [anon_sym_private] = ACTIONS(1477), + [anon_sym_protected] = ACTIONS(1477), + [anon_sym_override] = ACTIONS(1477), + [anon_sym_module] = ACTIONS(1477), + [anon_sym_any] = ACTIONS(1477), + [anon_sym_number] = ACTIONS(1477), + [anon_sym_boolean] = ACTIONS(1477), + [anon_sym_string] = ACTIONS(1477), + [anon_sym_symbol] = ACTIONS(1477), + [anon_sym_object] = ACTIONS(1477), + [anon_sym_property] = ACTIONS(1477), + [anon_sym_signal] = ACTIONS(1477), + [anon_sym_on] = ACTIONS(1477), + [anon_sym_required] = ACTIONS(1477), + [anon_sym_component] = ACTIONS(1477), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [226] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(226), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(6161), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8045), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1461), + [anon_sym_export] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1463), + [anon_sym_let] = ACTIONS(1463), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1463), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1469), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1463), + [anon_sym_readonly] = ACTIONS(1463), + [anon_sym_get] = ACTIONS(1463), + [anon_sym_set] = ACTIONS(1463), + [anon_sym_declare] = ACTIONS(1463), + [anon_sym_public] = ACTIONS(1463), + [anon_sym_private] = ACTIONS(1463), + [anon_sym_protected] = ACTIONS(1463), + [anon_sym_override] = ACTIONS(1463), + [anon_sym_module] = ACTIONS(1463), + [anon_sym_any] = ACTIONS(1463), + [anon_sym_number] = ACTIONS(1463), + [anon_sym_boolean] = ACTIONS(1463), + [anon_sym_string] = ACTIONS(1463), + [anon_sym_symbol] = ACTIONS(1463), + [anon_sym_object] = ACTIONS(1463), + [anon_sym_property] = ACTIONS(1463), + [anon_sym_signal] = ACTIONS(1463), + [anon_sym_on] = ACTIONS(1463), + [anon_sym_required] = ACTIONS(1463), + [anon_sym_component] = ACTIONS(1463), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_implements] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [227] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(227), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1414), + [anon_sym_export] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1418), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1416), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1425), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_readonly] = ACTIONS(1416), + [anon_sym_get] = ACTIONS(1416), + [anon_sym_set] = ACTIONS(1416), + [anon_sym_declare] = ACTIONS(1416), + [anon_sym_public] = ACTIONS(1416), + [anon_sym_private] = ACTIONS(1416), + [anon_sym_protected] = ACTIONS(1416), + [anon_sym_override] = ACTIONS(1416), + [anon_sym_module] = ACTIONS(1416), + [anon_sym_any] = ACTIONS(1416), + [anon_sym_number] = ACTIONS(1416), + [anon_sym_boolean] = ACTIONS(1416), + [anon_sym_string] = ACTIONS(1416), + [anon_sym_symbol] = ACTIONS(1416), + [anon_sym_object] = ACTIONS(1416), + [anon_sym_property] = ACTIONS(1416), + [anon_sym_signal] = ACTIONS(1416), + [anon_sym_on] = ACTIONS(1416), + [anon_sym_required] = ACTIONS(1416), + [anon_sym_component] = ACTIONS(1416), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [228] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(228), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1173), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [229] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(229), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(6161), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8045), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1489), + [anon_sym_export] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1491), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1501), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1503), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1505), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1491), + [anon_sym_readonly] = ACTIONS(1491), + [anon_sym_get] = ACTIONS(1491), + [anon_sym_set] = ACTIONS(1491), + [anon_sym_declare] = ACTIONS(1491), + [anon_sym_public] = ACTIONS(1491), + [anon_sym_private] = ACTIONS(1491), + [anon_sym_protected] = ACTIONS(1491), + [anon_sym_override] = ACTIONS(1491), + [anon_sym_module] = ACTIONS(1491), + [anon_sym_any] = ACTIONS(1491), + [anon_sym_number] = ACTIONS(1491), + [anon_sym_boolean] = ACTIONS(1491), + [anon_sym_string] = ACTIONS(1491), + [anon_sym_symbol] = ACTIONS(1491), + [anon_sym_object] = ACTIONS(1491), + [anon_sym_property] = ACTIONS(1491), + [anon_sym_signal] = ACTIONS(1491), + [anon_sym_on] = ACTIONS(1491), + [anon_sym_required] = ACTIONS(1491), + [anon_sym_component] = ACTIONS(1491), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [230] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(230), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(6161), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8045), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [231] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(231), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1489), + [anon_sym_export] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1491), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1501), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1503), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1505), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1491), + [anon_sym_readonly] = ACTIONS(1491), + [anon_sym_get] = ACTIONS(1491), + [anon_sym_set] = ACTIONS(1491), + [anon_sym_declare] = ACTIONS(1491), + [anon_sym_public] = ACTIONS(1491), + [anon_sym_private] = ACTIONS(1491), + [anon_sym_protected] = ACTIONS(1491), + [anon_sym_override] = ACTIONS(1491), + [anon_sym_module] = ACTIONS(1491), + [anon_sym_any] = ACTIONS(1491), + [anon_sym_number] = ACTIONS(1491), + [anon_sym_boolean] = ACTIONS(1491), + [anon_sym_string] = ACTIONS(1491), + [anon_sym_symbol] = ACTIONS(1491), + [anon_sym_object] = ACTIONS(1491), + [anon_sym_property] = ACTIONS(1491), + [anon_sym_signal] = ACTIONS(1491), + [anon_sym_on] = ACTIONS(1491), + [anon_sym_required] = ACTIONS(1491), + [anon_sym_component] = ACTIONS(1491), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [232] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(232), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(6161), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8045), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1414), + [anon_sym_export] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1416), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1425), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_readonly] = ACTIONS(1416), + [anon_sym_get] = ACTIONS(1416), + [anon_sym_set] = ACTIONS(1416), + [anon_sym_declare] = ACTIONS(1416), + [anon_sym_public] = ACTIONS(1416), + [anon_sym_private] = ACTIONS(1416), + [anon_sym_protected] = ACTIONS(1416), + [anon_sym_override] = ACTIONS(1416), + [anon_sym_module] = ACTIONS(1416), + [anon_sym_any] = ACTIONS(1416), + [anon_sym_number] = ACTIONS(1416), + [anon_sym_boolean] = ACTIONS(1416), + [anon_sym_string] = ACTIONS(1416), + [anon_sym_symbol] = ACTIONS(1416), + [anon_sym_object] = ACTIONS(1416), + [anon_sym_property] = ACTIONS(1416), + [anon_sym_signal] = ACTIONS(1416), + [anon_sym_on] = ACTIONS(1416), + [anon_sym_required] = ACTIONS(1416), + [anon_sym_component] = ACTIONS(1416), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [233] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3279), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8406), + [sym_string] = STATE(3056), + [sym_comment] = STATE(233), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1388), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_SLASH] = ACTIONS(82), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_DASH_DASH] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1280), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [234] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(234), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [235] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(235), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1414), + [anon_sym_export] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1416), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1425), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_readonly] = ACTIONS(1416), + [anon_sym_get] = ACTIONS(1416), + [anon_sym_set] = ACTIONS(1416), + [anon_sym_declare] = ACTIONS(1416), + [anon_sym_public] = ACTIONS(1416), + [anon_sym_private] = ACTIONS(1416), + [anon_sym_protected] = ACTIONS(1416), + [anon_sym_override] = ACTIONS(1416), + [anon_sym_module] = ACTIONS(1416), + [anon_sym_any] = ACTIONS(1416), + [anon_sym_number] = ACTIONS(1416), + [anon_sym_boolean] = ACTIONS(1416), + [anon_sym_string] = ACTIONS(1416), + [anon_sym_symbol] = ACTIONS(1416), + [anon_sym_object] = ACTIONS(1416), + [anon_sym_property] = ACTIONS(1416), + [anon_sym_signal] = ACTIONS(1416), + [anon_sym_on] = ACTIONS(1416), + [anon_sym_required] = ACTIONS(1416), + [anon_sym_component] = ACTIONS(1416), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [236] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(236), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1503), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [237] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(237), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [238] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(238), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [239] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(239), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1511), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [240] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(240), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [241] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(241), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(1434), + [anon_sym_of] = ACTIONS(1515), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [242] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(242), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [243] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(243), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(6161), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8045), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [244] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(244), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [245] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(245), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1521), + [anon_sym_EQ] = ACTIONS(1523), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1521), + [anon_sym_let] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1527), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1529), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1521), + [anon_sym_get] = ACTIONS(1521), + [anon_sym_set] = ACTIONS(1521), + [anon_sym_declare] = ACTIONS(1521), + [anon_sym_public] = ACTIONS(1521), + [anon_sym_private] = ACTIONS(1521), + [anon_sym_protected] = ACTIONS(1521), + [anon_sym_override] = ACTIONS(1521), + [anon_sym_module] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_number] = ACTIONS(1521), + [anon_sym_boolean] = ACTIONS(1521), + [anon_sym_string] = ACTIONS(1521), + [anon_sym_symbol] = ACTIONS(1521), + [anon_sym_object] = ACTIONS(1521), + [anon_sym_property] = ACTIONS(1521), + [anon_sym_signal] = ACTIONS(1521), + [anon_sym_on] = ACTIONS(1521), + [anon_sym_required] = ACTIONS(1521), + [anon_sym_component] = ACTIONS(1521), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [246] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(246), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1529), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [247] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(247), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1535), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [248] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(248), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1537), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [249] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(249), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1539), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [250] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(250), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(6161), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8045), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1519), + [anon_sym_export] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1521), + [anon_sym_EQ] = ACTIONS(1523), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1521), + [anon_sym_let] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1527), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1529), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1531), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_readonly] = ACTIONS(1521), + [anon_sym_get] = ACTIONS(1521), + [anon_sym_set] = ACTIONS(1521), + [anon_sym_declare] = ACTIONS(1521), + [anon_sym_public] = ACTIONS(1521), + [anon_sym_private] = ACTIONS(1521), + [anon_sym_protected] = ACTIONS(1521), + [anon_sym_override] = ACTIONS(1521), + [anon_sym_module] = ACTIONS(1521), + [anon_sym_any] = ACTIONS(1521), + [anon_sym_number] = ACTIONS(1521), + [anon_sym_boolean] = ACTIONS(1521), + [anon_sym_string] = ACTIONS(1521), + [anon_sym_symbol] = ACTIONS(1521), + [anon_sym_object] = ACTIONS(1521), + [anon_sym_property] = ACTIONS(1521), + [anon_sym_signal] = ACTIONS(1521), + [anon_sym_on] = ACTIONS(1521), + [anon_sym_required] = ACTIONS(1521), + [anon_sym_component] = ACTIONS(1521), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [251] = { + [sym_import] = STATE(5153), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3317), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7663), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8287), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3488), + [sym_comment] = STATE(251), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5876), + [sym_pattern] = STATE(6946), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4922), + [sym__type_query_call_expression_in_type_annotation] = STATE(5195), + [sym__type] = STATE(4937), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7920), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1541), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_typeof] = ACTIONS(1547), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1553), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1555), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1563), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1565), + [sym_number] = ACTIONS(1567), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1569), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(1567), + [sym_false] = ACTIONS(1567), + [sym_null] = ACTIONS(1567), + [sym_undefined] = ACTIONS(1571), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1573), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1577), + [anon_sym_number] = ACTIONS(1577), + [anon_sym_boolean] = ACTIONS(1577), + [anon_sym_string] = ACTIONS(1577), + [anon_sym_symbol] = ACTIONS(1577), + [anon_sym_object] = ACTIONS(1577), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [252] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2706), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(252), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1591), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [253] = { + [sym_import] = STATE(4970), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3702), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3728), + [sym_comment] = STATE(253), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5658), + [sym__type_query_call_expression_in_type_annotation] = STATE(6560), + [sym__type] = STATE(5652), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(845), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1593), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1613), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1617), + [anon_sym_DASH] = ACTIONS(1617), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1619), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_number] = ACTIONS(1625), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(1629), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), + [sym_null] = ACTIONS(1625), + [sym_undefined] = ACTIONS(1631), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1633), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1635), + [anon_sym_number] = ACTIONS(1635), + [anon_sym_boolean] = ACTIONS(1635), + [anon_sym_string] = ACTIONS(1635), + [anon_sym_symbol] = ACTIONS(1635), + [anon_sym_object] = ACTIONS(1635), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [254] = { + [sym_import] = STATE(4970), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3820), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3728), + [sym_comment] = STATE(254), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5658), + [sym__type_query_call_expression_in_type_annotation] = STATE(6560), + [sym__type] = STATE(5652), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(727), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1637), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1641), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1643), + [anon_sym_using] = ACTIONS(70), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(89), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_number] = ACTIONS(1625), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1629), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), + [sym_null] = ACTIONS(1625), + [sym_undefined] = ACTIONS(1647), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1649), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1651), + [anon_sym_number] = ACTIONS(1651), + [anon_sym_boolean] = ACTIONS(1651), + [anon_sym_string] = ACTIONS(1651), + [anon_sym_symbol] = ACTIONS(1651), + [anon_sym_object] = ACTIONS(1651), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [255] = { + [sym_import] = STATE(5033), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2847), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3003), + [sym_comment] = STATE(255), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5658), + [sym__type_query_call_expression_in_type_annotation] = STATE(6560), + [sym__type] = STATE(5652), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1653), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(1657), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1661), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1667), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1669), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1671), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1673), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [256] = { + [sym_import] = STATE(5043), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2995), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3432), + [sym_comment] = STATE(256), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5521), + [sym__type_query_call_expression_in_type_annotation] = STATE(6318), + [sym__type] = STATE(5516), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(763), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1677), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(1685), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1699), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1705), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1709), + [sym_number] = ACTIONS(1711), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(1715), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_null] = ACTIONS(1711), + [sym_undefined] = ACTIONS(1717), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1721), + [anon_sym_number] = ACTIONS(1721), + [anon_sym_boolean] = ACTIONS(1721), + [anon_sym_string] = ACTIONS(1721), + [anon_sym_symbol] = ACTIONS(1721), + [anon_sym_object] = ACTIONS(1721), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [257] = { + [sym_import] = STATE(4970), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3750), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3728), + [sym_comment] = STATE(257), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5658), + [sym__type_query_call_expression_in_type_annotation] = STATE(6560), + [sym__type] = STATE(5652), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(715), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1723), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_typeof] = ACTIONS(1729), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1739), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1745), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_number] = ACTIONS(1625), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(1629), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), + [sym_null] = ACTIONS(1625), + [sym_undefined] = ACTIONS(1751), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1753), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1755), + [anon_sym_number] = ACTIONS(1755), + [anon_sym_boolean] = ACTIONS(1755), + [anon_sym_string] = ACTIONS(1755), + [anon_sym_symbol] = ACTIONS(1755), + [anon_sym_object] = ACTIONS(1755), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [258] = { + [sym_import] = STATE(5043), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3042), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3432), + [sym_comment] = STATE(258), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5521), + [sym__type_query_call_expression_in_type_annotation] = STATE(6318), + [sym__type] = STATE(5516), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(838), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1757), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_typeof] = ACTIONS(1763), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(1695), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1767), + [anon_sym_using] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(1771), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1709), + [sym_number] = ACTIONS(1711), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(1715), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(1711), + [sym_false] = ACTIONS(1711), + [sym_null] = ACTIONS(1711), + [sym_undefined] = ACTIONS(1773), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1775), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1777), + [anon_sym_number] = ACTIONS(1777), + [anon_sym_boolean] = ACTIONS(1777), + [anon_sym_string] = ACTIONS(1777), + [anon_sym_symbol] = ACTIONS(1777), + [anon_sym_object] = ACTIONS(1777), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [259] = { + [sym_import] = STATE(5110), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3465), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3842), + [sym_comment] = STATE(259), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5521), + [sym__type_query_call_expression_in_type_annotation] = STATE(6318), + [sym__type] = STATE(5516), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(738), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1779), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_typeof] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1799), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1805), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1809), + [sym_number] = ACTIONS(1811), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(1815), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(1811), + [sym_false] = ACTIONS(1811), + [sym_null] = ACTIONS(1811), + [sym_undefined] = ACTIONS(1817), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1819), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_QMARK] = ACTIONS(110), + [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(1821), + [anon_sym_number] = ACTIONS(1821), + [anon_sym_boolean] = ACTIONS(1821), + [anon_sym_string] = ACTIONS(1821), + [anon_sym_symbol] = ACTIONS(1821), + [anon_sym_object] = ACTIONS(1821), + [anon_sym_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [260] = { + [sym_import] = STATE(5033), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3185), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3003), + [sym_comment] = STATE(260), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5658), + [sym__type_query_call_expression_in_type_annotation] = STATE(6560), + [sym__type] = STATE(5652), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(829), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1823), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_typeof] = ACTIONS(1829), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1659), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1839), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1845), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1665), + [sym_number] = ACTIONS(1667), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(1669), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(1667), + [sym_false] = ACTIONS(1667), + [sym_null] = ACTIONS(1667), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1853), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1855), + [anon_sym_number] = ACTIONS(1855), + [anon_sym_boolean] = ACTIONS(1855), + [anon_sym_string] = ACTIONS(1855), + [anon_sym_symbol] = ACTIONS(1855), + [anon_sym_object] = ACTIONS(1855), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [261] = { + [sym_import] = STATE(4970), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3602), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3728), + [sym_comment] = STATE(261), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5658), + [sym__type_query_call_expression_in_type_annotation] = STATE(6560), + [sym__type] = STATE(5652), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(639), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1857), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_typeof] = ACTIONS(1865), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1881), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_number] = ACTIONS(1625), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(1629), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), + [sym_null] = ACTIONS(1625), + [sym_undefined] = ACTIONS(1887), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1889), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1891), + [anon_sym_number] = ACTIONS(1891), + [anon_sym_boolean] = ACTIONS(1891), + [anon_sym_string] = ACTIONS(1891), + [anon_sym_symbol] = ACTIONS(1891), + [anon_sym_object] = ACTIONS(1891), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [262] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3272), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8605), + [sym_string] = STATE(3645), + [sym_comment] = STATE(262), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(7121), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(6173), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(6466), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1893), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_typeof] = ACTIONS(1341), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1661), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1349), + [sym_number] = ACTIONS(1351), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1899), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(1351), + [sym_false] = ACTIONS(1351), + [sym_null] = ACTIONS(1351), + [sym_undefined] = ACTIONS(1901), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1673), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1903), + [anon_sym_number] = ACTIONS(1903), + [anon_sym_boolean] = ACTIONS(1903), + [anon_sym_string] = ACTIONS(1903), + [anon_sym_symbol] = ACTIONS(1903), + [anon_sym_object] = ACTIONS(1903), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [263] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3114), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2441), + [sym_subscript_expression] = STATE(2441), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5951), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3508), + [sym_comment] = STATE(263), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_non_null_expression] = STATE(2441), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6167), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(684), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1905), + [anon_sym_export] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1907), + [anon_sym_namespace] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_typeof] = ACTIONS(1201), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1907), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1209), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1913), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1915), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1225), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(1231), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(1917), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_readonly] = ACTIONS(1919), + [anon_sym_get] = ACTIONS(1907), + [anon_sym_set] = ACTIONS(1907), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1907), + [anon_sym_public] = ACTIONS(1907), + [anon_sym_private] = ACTIONS(1907), + [anon_sym_protected] = ACTIONS(1907), + [anon_sym_override] = ACTIONS(1907), + [anon_sym_module] = ACTIONS(1907), + [anon_sym_any] = ACTIONS(1921), + [anon_sym_number] = ACTIONS(1921), + [anon_sym_boolean] = ACTIONS(1921), + [anon_sym_string] = ACTIONS(1921), + [anon_sym_symbol] = ACTIONS(1921), + [anon_sym_object] = ACTIONS(1921), + [anon_sym_property] = ACTIONS(1907), + [anon_sym_signal] = ACTIONS(1907), + [anon_sym_on] = ACTIONS(1907), + [anon_sym_required] = ACTIONS(1907), + [anon_sym_component] = ACTIONS(1907), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [264] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_nested_identifier] = STATE(8459), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2354), + [sym_subscript_expression] = STATE(2354), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5401), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3877), + [sym_comment] = STATE(264), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5765), + [sym_non_null_expression] = STATE(2354), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6167), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_type_arguments] = STATE(727), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7447), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1923), + [anon_sym_export] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1925), + [anon_sym_namespace] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_typeof] = ACTIONS(1931), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1925), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1925), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1933), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1935), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1937), + [anon_sym_using] = ACTIONS(70), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(89), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1941), + [sym_number] = ACTIONS(1943), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1945), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(1943), + [sym_false] = ACTIONS(1943), + [sym_null] = ACTIONS(1943), + [sym_undefined] = ACTIONS(1947), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_readonly] = ACTIONS(1949), + [anon_sym_get] = ACTIONS(1925), + [anon_sym_set] = ACTIONS(1925), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1925), + [anon_sym_public] = ACTIONS(1925), + [anon_sym_private] = ACTIONS(1925), + [anon_sym_protected] = ACTIONS(1925), + [anon_sym_override] = ACTIONS(1925), + [anon_sym_module] = ACTIONS(1925), + [anon_sym_any] = ACTIONS(1951), + [anon_sym_number] = ACTIONS(1951), + [anon_sym_boolean] = ACTIONS(1951), + [anon_sym_string] = ACTIONS(1951), + [anon_sym_symbol] = ACTIONS(1951), + [anon_sym_object] = ACTIONS(1951), + [anon_sym_property] = ACTIONS(1925), + [anon_sym_signal] = ACTIONS(1925), + [anon_sym_on] = ACTIONS(1925), + [anon_sym_required] = ACTIONS(1925), + [anon_sym_component] = ACTIONS(1925), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [265] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2902), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(265), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1953), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_as] = ACTIONS(1955), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_in] = ACTIONS(1955), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_COLON] = ACTIONS(1955), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(1955), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_QMARK_DOT] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1955), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_instanceof] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [anon_sym_satisfies] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1957), + [sym_html_comment] = ACTIONS(5), + }, + [266] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3131), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(266), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_STAR] = ACTIONS(1961), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_as] = ACTIONS(1955), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1955), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_in] = ACTIONS(1955), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_QMARK_DOT] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1955), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_instanceof] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [anon_sym_satisfies] = ACTIONS(1955), + [sym__automatic_semicolon] = ACTIONS(1957), + [sym__ternary_qmark] = ACTIONS(1957), + [sym_html_comment] = ACTIONS(5), + }, + [267] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2986), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(267), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_as] = ACTIONS(1955), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_in] = ACTIONS(1955), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_QMARK_DOT] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1955), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_instanceof] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [anon_sym_satisfies] = ACTIONS(1955), + [sym__automatic_semicolon] = ACTIONS(1957), + [sym__ternary_qmark] = ACTIONS(1957), + [sym_html_comment] = ACTIONS(5), + }, + [268] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3310), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(268), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_as] = ACTIONS(1955), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_in] = ACTIONS(1955), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_QMARK_DOT] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1955), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_instanceof] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_satisfies] = ACTIONS(1955), + [sym__automatic_semicolon] = ACTIONS(1957), + [sym__ternary_qmark] = ACTIONS(1957), + [sym_html_comment] = ACTIONS(5), + }, + [269] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3240), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(269), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_STAR] = ACTIONS(1983), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_as] = ACTIONS(1955), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_in] = ACTIONS(1955), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_QMARK_DOT] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1955), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_instanceof] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [anon_sym_satisfies] = ACTIONS(1955), + [anon_sym_implements] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1957), + [sym_html_comment] = ACTIONS(5), + }, + [270] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3705), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(270), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1991), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1955), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_in] = ACTIONS(1955), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_COLON] = ACTIONS(1955), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_QMARK_DOT] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1955), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_instanceof] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [anon_sym_satisfies] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1957), + [sym_html_comment] = ACTIONS(5), + }, + [271] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3626), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(271), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_as] = ACTIONS(1955), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_in] = ACTIONS(1955), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(1955), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_QMARK_DOT] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1955), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_instanceof] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [anon_sym_satisfies] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1957), + [sym_html_comment] = ACTIONS(5), + }, + [272] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3824), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(272), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(2005), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_as] = ACTIONS(1955), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(1955), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_QMARK_DOT] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1955), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_instanceof] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1957), + [sym_html_comment] = ACTIONS(5), + }, + [273] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3603), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(273), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_STAR] = ACTIONS(2009), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_as] = ACTIONS(1955), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_in] = ACTIONS(1955), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_QMARK_DOT] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1955), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_instanceof] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [anon_sym_satisfies] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1957), + [sym_html_comment] = ACTIONS(5), + }, + [274] = { + [sym_declaration] = STATE(1685), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3480), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(274), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5919), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2015), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2019), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(2023), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2025), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2027), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [275] = { + [sym_declaration] = STATE(4211), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3408), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4084), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4084), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4084), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(275), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(4084), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(1875), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6256), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2029), + [anon_sym_namespace] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2033), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(2037), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2039), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2041), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [276] = { + [sym_declaration] = STATE(4186), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3464), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4084), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4084), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4084), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(276), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(4084), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(1875), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6256), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2029), + [anon_sym_namespace] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2033), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(2037), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2039), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2041), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [277] = { + [sym_declaration] = STATE(4402), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(4253), + [sym_lexical_declaration] = STATE(4253), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3489), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4253), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4253), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4253), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(277), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(4253), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4253), + [sym_abstract_class_declaration] = STATE(4253), + [sym_module] = STATE(4253), + [sym_internal_module] = STATE(1893), + [sym_import_alias] = STATE(4253), + [sym_interface_declaration] = STATE(4253), + [sym_enum_declaration] = STATE(4253), + [sym_type_alias_declaration] = STATE(4253), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6194), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2047), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(2051), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2053), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2055), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), + [sym_html_comment] = ACTIONS(5), + }, + [278] = { + [sym_declaration] = STATE(1714), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3483), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1713), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1713), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1713), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(278), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(1713), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(489), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5919), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2015), + [anon_sym_namespace] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2019), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(2023), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2025), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2027), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [279] = { + [sym_declaration] = STATE(1279), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3341), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(279), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5862), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2061), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(520), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_const] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(552), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_function] = ACTIONS(556), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2069), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [280] = { + [sym_declaration] = STATE(1083), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3451), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1105), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1105), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1105), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(280), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(1105), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(371), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5840), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2071), + [anon_sym_namespace] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2075), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(2079), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2081), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2083), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), + [sym_html_comment] = ACTIONS(5), + }, + [281] = { + [sym_declaration] = STATE(1473), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3385), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1503), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1503), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1503), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(281), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(1503), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(452), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6047), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2089), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2095), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2097), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), + [sym_html_comment] = ACTIONS(5), + }, + [282] = { + [sym_declaration] = STATE(6109), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(6178), + [sym_lexical_declaration] = STATE(6178), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3357), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(6178), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(6178), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(6178), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(282), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(6178), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(6178), + [sym_abstract_class_declaration] = STATE(6178), + [sym_module] = STATE(6178), + [sym_internal_module] = STATE(3671), + [sym_import_alias] = STATE(6178), + [sym_interface_declaration] = STATE(6178), + [sym_enum_declaration] = STATE(6178), + [sym_type_alias_declaration] = STATE(6178), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6105), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2101), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2115), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2117), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(2119), + [anon_sym_interface] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2123), + [sym_html_comment] = ACTIONS(5), + }, + [283] = { + [sym_declaration] = STATE(6059), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(6178), + [sym_lexical_declaration] = STATE(6178), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3382), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(6178), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(6178), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(6178), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(283), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(6178), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(6178), + [sym_abstract_class_declaration] = STATE(6178), + [sym_module] = STATE(6178), + [sym_internal_module] = STATE(3671), + [sym_import_alias] = STATE(6178), + [sym_interface_declaration] = STATE(6178), + [sym_enum_declaration] = STATE(6178), + [sym_type_alias_declaration] = STATE(6178), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6105), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2101), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2115), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2117), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(2119), + [anon_sym_interface] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2123), + [sym_html_comment] = ACTIONS(5), + }, + [284] = { + [sym_declaration] = STATE(7670), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(284), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5981), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2127), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(2131), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2133), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2135), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [285] = { + [sym_declaration] = STATE(1222), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3492), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1105), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1105), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1105), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(285), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(1105), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(371), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5840), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2071), + [anon_sym_namespace] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2075), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(2079), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2081), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2083), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), + [sym_html_comment] = ACTIONS(5), + }, + [286] = { + [sym_declaration] = STATE(4407), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(4253), + [sym_lexical_declaration] = STATE(4253), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3471), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(4253), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(4253), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(4253), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(286), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(4253), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(4253), + [sym_abstract_class_declaration] = STATE(4253), + [sym_module] = STATE(4253), + [sym_internal_module] = STATE(1893), + [sym_import_alias] = STATE(4253), + [sym_interface_declaration] = STATE(4253), + [sym_enum_declaration] = STATE(4253), + [sym_type_alias_declaration] = STATE(4253), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6194), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2047), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(2051), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2053), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2055), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), + [sym_html_comment] = ACTIONS(5), + }, + [287] = { + [sym_declaration] = STATE(7511), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3417), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(7395), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(7395), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(7395), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(287), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(7395), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(3503), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5981), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2127), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(2131), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2133), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2135), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), + [sym_html_comment] = ACTIONS(5), + }, + [288] = { + [sym_declaration] = STATE(1284), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3360), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1314), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1314), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1314), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(288), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(1314), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(404), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(5862), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2061), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(520), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_const] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(552), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_function] = ACTIONS(556), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2069), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(566), + [anon_sym_interface] = ACTIONS(568), + [anon_sym_enum] = ACTIONS(570), + [sym_html_comment] = ACTIONS(5), + }, + [289] = { + [sym_declaration] = STATE(1499), + [sym_import] = STATE(5074), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3433), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_class_declaration] = STATE(1503), + [sym_function_expression] = STATE(3558), + [sym_function_declaration] = STATE(1503), + [sym_generator_function] = STATE(3558), + [sym_generator_function_declaration] = STATE(1503), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(289), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_function_signature] = STATE(1503), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(452), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6047), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(2089), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1781), + [anon_sym_readonly] = ACTIONS(1781), + [anon_sym_get] = ACTIONS(1781), + [anon_sym_set] = ACTIONS(1781), + [anon_sym_declare] = ACTIONS(2095), + [anon_sym_public] = ACTIONS(1781), + [anon_sym_private] = ACTIONS(1781), + [anon_sym_protected] = ACTIONS(1781), + [anon_sym_override] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(2097), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), + [sym_html_comment] = ACTIONS(5), + }, + [290] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(4370), + [sym_statement_block] = STATE(4370), + [sym_if_statement] = STATE(4370), + [sym_switch_statement] = STATE(4370), + [sym_try_statement] = STATE(4370), + [sym_with_statement] = STATE(4370), + [sym_empty_statement] = STATE(4370), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(290), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_definition] = STATE(7718), + [sym_ui_object_array] = STATE(7718), + [sym_ui_nested_identifier] = STATE(7037), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(980), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_get] = ACTIONS(2139), + [anon_sym_set] = ACTIONS(2139), + [anon_sym_declare] = ACTIONS(2139), + [anon_sym_public] = ACTIONS(2139), + [anon_sym_private] = ACTIONS(2139), + [anon_sym_protected] = ACTIONS(2139), + [anon_sym_override] = ACTIONS(2139), + [anon_sym_module] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(2139), + [anon_sym_number] = ACTIONS(2139), + [anon_sym_boolean] = ACTIONS(2139), + [anon_sym_string] = ACTIONS(2139), + [anon_sym_symbol] = ACTIONS(2139), + [anon_sym_object] = ACTIONS(2139), + [anon_sym_property] = ACTIONS(2139), + [anon_sym_signal] = ACTIONS(2139), + [anon_sym_on] = ACTIONS(2139), + [anon_sym_required] = ACTIONS(2139), + [anon_sym_component] = ACTIONS(2139), + [sym_html_comment] = ACTIONS(5), + }, + [291] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(4279), + [sym_statement_block] = STATE(4279), + [sym_if_statement] = STATE(4279), + [sym_switch_statement] = STATE(4279), + [sym_try_statement] = STATE(4279), + [sym_with_statement] = STATE(4279), + [sym_empty_statement] = STATE(4279), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(291), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_definition] = STATE(4279), + [sym_ui_object_array] = STATE(4279), + [sym_ui_nested_identifier] = STATE(7153), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2149), + [anon_sym_with] = ACTIONS(980), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_readonly] = ACTIONS(2149), + [anon_sym_get] = ACTIONS(2149), + [anon_sym_set] = ACTIONS(2149), + [anon_sym_declare] = ACTIONS(2149), + [anon_sym_public] = ACTIONS(2149), + [anon_sym_private] = ACTIONS(2149), + [anon_sym_protected] = ACTIONS(2149), + [anon_sym_override] = ACTIONS(2149), + [anon_sym_module] = ACTIONS(2149), + [anon_sym_any] = ACTIONS(2149), + [anon_sym_number] = ACTIONS(2149), + [anon_sym_boolean] = ACTIONS(2149), + [anon_sym_string] = ACTIONS(2149), + [anon_sym_symbol] = ACTIONS(2149), + [anon_sym_object] = ACTIONS(2149), + [anon_sym_property] = ACTIONS(2149), + [anon_sym_signal] = ACTIONS(2149), + [anon_sym_on] = ACTIONS(2149), + [anon_sym_required] = ACTIONS(2149), + [anon_sym_component] = ACTIONS(2149), + [sym_html_comment] = ACTIONS(5), + }, + [292] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(4366), + [sym_statement_block] = STATE(4366), + [sym_if_statement] = STATE(4366), + [sym_switch_statement] = STATE(4366), + [sym_try_statement] = STATE(4366), + [sym_with_statement] = STATE(4366), + [sym_empty_statement] = STATE(4366), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(292), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_definition] = STATE(7717), + [sym_ui_object_array] = STATE(7717), + [sym_ui_nested_identifier] = STATE(7037), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(980), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_get] = ACTIONS(2139), + [anon_sym_set] = ACTIONS(2139), + [anon_sym_declare] = ACTIONS(2139), + [anon_sym_public] = ACTIONS(2139), + [anon_sym_private] = ACTIONS(2139), + [anon_sym_protected] = ACTIONS(2139), + [anon_sym_override] = ACTIONS(2139), + [anon_sym_module] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(2139), + [anon_sym_number] = ACTIONS(2139), + [anon_sym_boolean] = ACTIONS(2139), + [anon_sym_string] = ACTIONS(2139), + [anon_sym_symbol] = ACTIONS(2139), + [anon_sym_object] = ACTIONS(2139), + [anon_sym_property] = ACTIONS(2139), + [anon_sym_signal] = ACTIONS(2139), + [anon_sym_on] = ACTIONS(2139), + [anon_sym_required] = ACTIONS(2139), + [anon_sym_component] = ACTIONS(2139), + [sym_html_comment] = ACTIONS(5), + }, + [293] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(4355), + [sym_statement_block] = STATE(4355), + [sym_if_statement] = STATE(4355), + [sym_switch_statement] = STATE(4355), + [sym_try_statement] = STATE(4355), + [sym_with_statement] = STATE(4355), + [sym_empty_statement] = STATE(4355), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(293), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_definition] = STATE(7708), + [sym_ui_object_array] = STATE(7708), + [sym_ui_nested_identifier] = STATE(7037), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(980), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_get] = ACTIONS(2139), + [anon_sym_set] = ACTIONS(2139), + [anon_sym_declare] = ACTIONS(2139), + [anon_sym_public] = ACTIONS(2139), + [anon_sym_private] = ACTIONS(2139), + [anon_sym_protected] = ACTIONS(2139), + [anon_sym_override] = ACTIONS(2139), + [anon_sym_module] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(2139), + [anon_sym_number] = ACTIONS(2139), + [anon_sym_boolean] = ACTIONS(2139), + [anon_sym_string] = ACTIONS(2139), + [anon_sym_symbol] = ACTIONS(2139), + [anon_sym_object] = ACTIONS(2139), + [anon_sym_property] = ACTIONS(2139), + [anon_sym_signal] = ACTIONS(2139), + [anon_sym_on] = ACTIONS(2139), + [anon_sym_required] = ACTIONS(2139), + [anon_sym_component] = ACTIONS(2139), + [sym_html_comment] = ACTIONS(5), + }, + [294] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(4429), + [sym_statement_block] = STATE(4429), + [sym_if_statement] = STATE(4429), + [sym_switch_statement] = STATE(4429), + [sym_try_statement] = STATE(4429), + [sym_with_statement] = STATE(4429), + [sym_empty_statement] = STATE(4429), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(294), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_definition] = STATE(7700), + [sym_ui_object_array] = STATE(7700), + [sym_ui_nested_identifier] = STATE(7037), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(980), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_get] = ACTIONS(2139), + [anon_sym_set] = ACTIONS(2139), + [anon_sym_declare] = ACTIONS(2139), + [anon_sym_public] = ACTIONS(2139), + [anon_sym_private] = ACTIONS(2139), + [anon_sym_protected] = ACTIONS(2139), + [anon_sym_override] = ACTIONS(2139), + [anon_sym_module] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(2139), + [anon_sym_number] = ACTIONS(2139), + [anon_sym_boolean] = ACTIONS(2139), + [anon_sym_string] = ACTIONS(2139), + [anon_sym_symbol] = ACTIONS(2139), + [anon_sym_object] = ACTIONS(2139), + [anon_sym_property] = ACTIONS(2139), + [anon_sym_signal] = ACTIONS(2139), + [anon_sym_on] = ACTIONS(2139), + [anon_sym_required] = ACTIONS(2139), + [anon_sym_component] = ACTIONS(2139), + [sym_html_comment] = ACTIONS(5), + }, + [295] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(4280), + [sym_statement_block] = STATE(4280), + [sym_if_statement] = STATE(4280), + [sym_switch_statement] = STATE(4280), + [sym_try_statement] = STATE(4280), + [sym_with_statement] = STATE(4280), + [sym_empty_statement] = STATE(4280), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(295), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_definition] = STATE(4280), + [sym_ui_object_array] = STATE(4280), + [sym_ui_nested_identifier] = STATE(7153), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2149), + [anon_sym_with] = ACTIONS(980), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_readonly] = ACTIONS(2149), + [anon_sym_get] = ACTIONS(2149), + [anon_sym_set] = ACTIONS(2149), + [anon_sym_declare] = ACTIONS(2149), + [anon_sym_public] = ACTIONS(2149), + [anon_sym_private] = ACTIONS(2149), + [anon_sym_protected] = ACTIONS(2149), + [anon_sym_override] = ACTIONS(2149), + [anon_sym_module] = ACTIONS(2149), + [anon_sym_any] = ACTIONS(2149), + [anon_sym_number] = ACTIONS(2149), + [anon_sym_boolean] = ACTIONS(2149), + [anon_sym_string] = ACTIONS(2149), + [anon_sym_symbol] = ACTIONS(2149), + [anon_sym_object] = ACTIONS(2149), + [anon_sym_property] = ACTIONS(2149), + [anon_sym_signal] = ACTIONS(2149), + [anon_sym_on] = ACTIONS(2149), + [anon_sym_required] = ACTIONS(2149), + [anon_sym_component] = ACTIONS(2149), + [sym_html_comment] = ACTIONS(5), + }, + [296] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(4301), + [sym_statement_block] = STATE(4301), + [sym_if_statement] = STATE(4301), + [sym_switch_statement] = STATE(4301), + [sym_try_statement] = STATE(4301), + [sym_with_statement] = STATE(4301), + [sym_empty_statement] = STATE(4301), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(296), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_definition] = STATE(8139), + [sym_ui_object_array] = STATE(8139), + [sym_ui_nested_identifier] = STATE(7037), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(980), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_get] = ACTIONS(2139), + [anon_sym_set] = ACTIONS(2139), + [anon_sym_declare] = ACTIONS(2139), + [anon_sym_public] = ACTIONS(2139), + [anon_sym_private] = ACTIONS(2139), + [anon_sym_protected] = ACTIONS(2139), + [anon_sym_override] = ACTIONS(2139), + [anon_sym_module] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(2139), + [anon_sym_number] = ACTIONS(2139), + [anon_sym_boolean] = ACTIONS(2139), + [anon_sym_string] = ACTIONS(2139), + [anon_sym_symbol] = ACTIONS(2139), + [anon_sym_object] = ACTIONS(2139), + [anon_sym_property] = ACTIONS(2139), + [anon_sym_signal] = ACTIONS(2139), + [anon_sym_on] = ACTIONS(2139), + [anon_sym_required] = ACTIONS(2139), + [anon_sym_component] = ACTIONS(2139), + [sym_html_comment] = ACTIONS(5), + }, + [297] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(4297), + [sym_statement_block] = STATE(4297), + [sym_if_statement] = STATE(4297), + [sym_switch_statement] = STATE(4297), + [sym_try_statement] = STATE(4297), + [sym_with_statement] = STATE(4297), + [sym_empty_statement] = STATE(4297), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(297), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_definition] = STATE(8143), + [sym_ui_object_array] = STATE(8143), + [sym_ui_nested_identifier] = STATE(7037), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(980), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_get] = ACTIONS(2139), + [anon_sym_set] = ACTIONS(2139), + [anon_sym_declare] = ACTIONS(2139), + [anon_sym_public] = ACTIONS(2139), + [anon_sym_private] = ACTIONS(2139), + [anon_sym_protected] = ACTIONS(2139), + [anon_sym_override] = ACTIONS(2139), + [anon_sym_module] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(2139), + [anon_sym_number] = ACTIONS(2139), + [anon_sym_boolean] = ACTIONS(2139), + [anon_sym_string] = ACTIONS(2139), + [anon_sym_symbol] = ACTIONS(2139), + [anon_sym_object] = ACTIONS(2139), + [anon_sym_property] = ACTIONS(2139), + [anon_sym_signal] = ACTIONS(2139), + [anon_sym_on] = ACTIONS(2139), + [anon_sym_required] = ACTIONS(2139), + [anon_sym_component] = ACTIONS(2139), + [sym_html_comment] = ACTIONS(5), + }, + [298] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(4292), + [sym_statement_block] = STATE(4292), + [sym_if_statement] = STATE(4292), + [sym_switch_statement] = STATE(4292), + [sym_try_statement] = STATE(4292), + [sym_with_statement] = STATE(4292), + [sym_empty_statement] = STATE(4292), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(298), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_definition] = STATE(8147), + [sym_ui_object_array] = STATE(8147), + [sym_ui_nested_identifier] = STATE(7037), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(980), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_get] = ACTIONS(2139), + [anon_sym_set] = ACTIONS(2139), + [anon_sym_declare] = ACTIONS(2139), + [anon_sym_public] = ACTIONS(2139), + [anon_sym_private] = ACTIONS(2139), + [anon_sym_protected] = ACTIONS(2139), + [anon_sym_override] = ACTIONS(2139), + [anon_sym_module] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(2139), + [anon_sym_number] = ACTIONS(2139), + [anon_sym_boolean] = ACTIONS(2139), + [anon_sym_string] = ACTIONS(2139), + [anon_sym_symbol] = ACTIONS(2139), + [anon_sym_object] = ACTIONS(2139), + [anon_sym_property] = ACTIONS(2139), + [anon_sym_signal] = ACTIONS(2139), + [anon_sym_on] = ACTIONS(2139), + [anon_sym_required] = ACTIONS(2139), + [anon_sym_component] = ACTIONS(2139), + [sym_html_comment] = ACTIONS(5), + }, + [299] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(4273), + [sym_statement_block] = STATE(4273), + [sym_if_statement] = STATE(4273), + [sym_switch_statement] = STATE(4273), + [sym_try_statement] = STATE(4273), + [sym_with_statement] = STATE(4273), + [sym_empty_statement] = STATE(4273), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(3558), + [sym_comment] = STATE(299), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_definition] = STATE(8148), + [sym_ui_object_array] = STATE(8148), + [sym_ui_nested_identifier] = STATE(7037), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(980), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(998), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_get] = ACTIONS(2139), + [anon_sym_set] = ACTIONS(2139), + [anon_sym_declare] = ACTIONS(2139), + [anon_sym_public] = ACTIONS(2139), + [anon_sym_private] = ACTIONS(2139), + [anon_sym_protected] = ACTIONS(2139), + [anon_sym_override] = ACTIONS(2139), + [anon_sym_module] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(2139), + [anon_sym_number] = ACTIONS(2139), + [anon_sym_boolean] = ACTIONS(2139), + [anon_sym_string] = ACTIONS(2139), + [anon_sym_symbol] = ACTIONS(2139), + [anon_sym_object] = ACTIONS(2139), + [anon_sym_property] = ACTIONS(2139), + [anon_sym_signal] = ACTIONS(2139), + [anon_sym_on] = ACTIONS(2139), + [anon_sym_required] = ACTIONS(2139), + [anon_sym_component] = ACTIONS(2139), + [sym_html_comment] = ACTIONS(5), + }, + [300] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2842), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym__formal_parameter] = STATE(6885), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8708), + [sym_string] = STATE(3056), + [sym_comment] = STATE(300), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(2165), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(2169), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1361), + [anon_sym_private] = ACTIONS(1361), + [anon_sym_protected] = ACTIONS(1361), + [anon_sym_override] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1193), + [anon_sym_number] = ACTIONS(1193), + [anon_sym_boolean] = ACTIONS(1193), + [anon_sym_string] = ACTIONS(1193), + [anon_sym_symbol] = ACTIONS(1193), + [anon_sym_object] = ACTIONS(1193), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [sym_html_comment] = ACTIONS(5), + }, + [301] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3165), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7094), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(301), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_definition] = STATE(6958), + [sym_ui_nested_identifier] = STATE(7330), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(6959), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(2171), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2179), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_object] = ACTIONS(2173), + [anon_sym_property] = ACTIONS(2173), + [anon_sym_signal] = ACTIONS(2173), + [anon_sym_on] = ACTIONS(2173), + [anon_sym_required] = ACTIONS(2173), + [anon_sym_component] = ACTIONS(2173), + [sym_html_comment] = ACTIONS(5), + }, + [302] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2956), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym__formal_parameter] = STATE(6885), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8499), + [sym_string] = STATE(3056), + [sym_comment] = STATE(302), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(2165), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(2169), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1361), + [anon_sym_private] = ACTIONS(1361), + [anon_sym_protected] = ACTIONS(1361), + [anon_sym_override] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1193), + [anon_sym_number] = ACTIONS(1193), + [anon_sym_boolean] = ACTIONS(1193), + [anon_sym_string] = ACTIONS(1193), + [anon_sym_symbol] = ACTIONS(1193), + [anon_sym_object] = ACTIONS(1193), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [sym_html_comment] = ACTIONS(5), + }, + [303] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3165), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7094), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(303), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_definition] = STATE(7292), + [sym_ui_nested_identifier] = STATE(7330), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(6959), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(2171), + [anon_sym_export] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2179), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_readonly] = ACTIONS(2173), + [anon_sym_get] = ACTIONS(2173), + [anon_sym_set] = ACTIONS(2173), + [anon_sym_declare] = ACTIONS(2173), + [anon_sym_public] = ACTIONS(2173), + [anon_sym_private] = ACTIONS(2173), + [anon_sym_protected] = ACTIONS(2173), + [anon_sym_override] = ACTIONS(2173), + [anon_sym_module] = ACTIONS(2173), + [anon_sym_any] = ACTIONS(2173), + [anon_sym_number] = ACTIONS(2173), + [anon_sym_boolean] = ACTIONS(2173), + [anon_sym_string] = ACTIONS(2173), + [anon_sym_symbol] = ACTIONS(2173), + [anon_sym_object] = ACTIONS(2173), + [anon_sym_property] = ACTIONS(2173), + [anon_sym_signal] = ACTIONS(2173), + [anon_sym_on] = ACTIONS(2173), + [anon_sym_required] = ACTIONS(2173), + [anon_sym_component] = ACTIONS(2173), + [sym_html_comment] = ACTIONS(5), + }, + [304] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(6885), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(304), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2185), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [305] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(7934), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(305), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2185), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [306] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(7934), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(306), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2189), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2185), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [307] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(7934), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(307), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2191), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2185), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [308] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(7934), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(308), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2193), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2185), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [309] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(7934), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(309), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2185), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [310] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(7253), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(310), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2185), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [311] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(7934), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(311), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2199), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2185), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [312] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(7316), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(312), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2201), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2185), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [313] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7295), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(313), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7282), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2203), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1193), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1193), + [anon_sym_number] = ACTIONS(1193), + [anon_sym_boolean] = ACTIONS(1193), + [anon_sym_string] = ACTIONS(1193), + [anon_sym_symbol] = ACTIONS(1193), + [anon_sym_object] = ACTIONS(1193), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [sym_html_comment] = ACTIONS(5), + }, + [314] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3165), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7094), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(314), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(6959), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1193), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1193), + [anon_sym_number] = ACTIONS(1193), + [anon_sym_boolean] = ACTIONS(1193), + [anon_sym_string] = ACTIONS(1193), + [anon_sym_symbol] = ACTIONS(1193), + [anon_sym_object] = ACTIONS(1193), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [sym_html_comment] = ACTIONS(5), + }, + [315] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7295), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(315), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7282), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2207), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1193), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1193), + [anon_sym_number] = ACTIONS(1193), + [anon_sym_boolean] = ACTIONS(1193), + [anon_sym_string] = ACTIONS(1193), + [anon_sym_symbol] = ACTIONS(1193), + [anon_sym_object] = ACTIONS(1193), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [sym_html_comment] = ACTIONS(5), + }, + [316] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3165), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7094), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(316), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(6959), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2179), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1193), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1193), + [anon_sym_number] = ACTIONS(1193), + [anon_sym_boolean] = ACTIONS(1193), + [anon_sym_string] = ACTIONS(1193), + [anon_sym_symbol] = ACTIONS(1193), + [anon_sym_object] = ACTIONS(1193), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [sym_html_comment] = ACTIONS(5), + }, + [317] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym__formal_parameter] = STATE(7934), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(317), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(5883), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_accessibility_modifier] = STATE(457), + [sym_override_modifier] = STATE(504), + [sym_required_parameter] = STATE(7763), + [sym_optional_parameter] = STATE(7763), + [sym__parameter_name] = STATE(5456), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2185), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [318] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7295), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(318), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7282), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2209), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1193), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1193), + [anon_sym_number] = ACTIONS(1193), + [anon_sym_boolean] = ACTIONS(1193), + [anon_sym_string] = ACTIONS(1193), + [anon_sym_symbol] = ACTIONS(1193), + [anon_sym_object] = ACTIONS(1193), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [sym_html_comment] = ACTIONS(5), + }, + [319] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7295), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(319), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7282), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2211), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1193), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1193), + [anon_sym_number] = ACTIONS(1193), + [anon_sym_boolean] = ACTIONS(1193), + [anon_sym_string] = ACTIONS(1193), + [anon_sym_symbol] = ACTIONS(1193), + [anon_sym_object] = ACTIONS(1193), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [sym_html_comment] = ACTIONS(5), + }, + [320] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3292), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7295), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(320), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7282), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2213), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1193), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1193), + [anon_sym_number] = ACTIONS(1193), + [anon_sym_boolean] = ACTIONS(1193), + [anon_sym_string] = ACTIONS(1193), + [anon_sym_symbol] = ACTIONS(1193), + [anon_sym_object] = ACTIONS(1193), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [sym_html_comment] = ACTIONS(5), + }, + [321] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3201), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(7094), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(321), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(6959), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2179), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1193), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1193), + [anon_sym_number] = ACTIONS(1193), + [anon_sym_boolean] = ACTIONS(1193), + [anon_sym_string] = ACTIONS(1193), + [anon_sym_symbol] = ACTIONS(1193), + [anon_sym_object] = ACTIONS(1193), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [sym_html_comment] = ACTIONS(5), + }, + [322] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(322), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_RBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_QMARK] = ACTIONS(2215), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [anon_sym_extends] = ACTIONS(2215), + [sym_html_comment] = ACTIONS(5), + }, + [323] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(440), + [sym_variable_declaration] = STATE(440), + [sym_lexical_declaration] = STATE(440), + [sym_empty_statement] = STATE(440), + [sym_parenthesized_expression] = STATE(2468), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2468), + [sym_subscript_expression] = STATE(2468), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(6660), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7445), + [sym_string] = STATE(3558), + [sym_comment] = STATE(323), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2468), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2217), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_property] = ACTIONS(2219), + [anon_sym_signal] = ACTIONS(2219), + [anon_sym_on] = ACTIONS(2219), + [anon_sym_required] = ACTIONS(2219), + [anon_sym_component] = ACTIONS(2219), + [sym_html_comment] = ACTIONS(5), + }, + [324] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(465), + [sym_variable_declaration] = STATE(465), + [sym_lexical_declaration] = STATE(465), + [sym_empty_statement] = STATE(465), + [sym_parenthesized_expression] = STATE(2468), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2468), + [sym_subscript_expression] = STATE(2468), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(6660), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7445), + [sym_string] = STATE(3558), + [sym_comment] = STATE(324), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2468), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2217), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_property] = ACTIONS(2219), + [anon_sym_signal] = ACTIONS(2219), + [anon_sym_on] = ACTIONS(2219), + [anon_sym_required] = ACTIONS(2219), + [anon_sym_component] = ACTIONS(2219), + [sym_html_comment] = ACTIONS(5), + }, + [325] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(325), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_RPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [326] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(434), + [sym_variable_declaration] = STATE(434), + [sym_lexical_declaration] = STATE(434), + [sym_empty_statement] = STATE(434), + [sym_parenthesized_expression] = STATE(2468), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2468), + [sym_subscript_expression] = STATE(2468), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(6660), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7445), + [sym_string] = STATE(3558), + [sym_comment] = STATE(326), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2468), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2217), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_property] = ACTIONS(2219), + [anon_sym_signal] = ACTIONS(2219), + [anon_sym_on] = ACTIONS(2219), + [anon_sym_required] = ACTIONS(2219), + [anon_sym_component] = ACTIONS(2219), + [sym_html_comment] = ACTIONS(5), + }, + [327] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(327), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [anon_sym_extends] = ACTIONS(2215), + [anon_sym_PIPE_RBRACE] = ACTIONS(2215), + [sym__automatic_semicolon] = ACTIONS(2267), + [sym_html_comment] = ACTIONS(5), + }, + [328] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(484), + [sym_variable_declaration] = STATE(484), + [sym_lexical_declaration] = STATE(484), + [sym_empty_statement] = STATE(484), + [sym_parenthesized_expression] = STATE(2468), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2468), + [sym_subscript_expression] = STATE(2468), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(6660), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7445), + [sym_string] = STATE(3558), + [sym_comment] = STATE(328), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2468), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2217), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_property] = ACTIONS(2219), + [anon_sym_signal] = ACTIONS(2219), + [anon_sym_on] = ACTIONS(2219), + [anon_sym_required] = ACTIONS(2219), + [anon_sym_component] = ACTIONS(2219), + [sym_html_comment] = ACTIONS(5), + }, + [329] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3535), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2524), + [sym_subscript_expression] = STATE(2524), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(6917), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(329), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2524), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_mapped_type_clause] = STATE(8328), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(2269), + [anon_sym_export] = ACTIONS(2271), + [anon_sym_type] = ACTIONS(2271), + [anon_sym_namespace] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_COMMA] = ACTIONS(2275), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2271), + [anon_sym_let] = ACTIONS(2271), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(2271), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_RBRACK] = ACTIONS(2277), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2279), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2283), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2271), + [anon_sym_readonly] = ACTIONS(2271), + [anon_sym_get] = ACTIONS(2271), + [anon_sym_set] = ACTIONS(2271), + [anon_sym_declare] = ACTIONS(2271), + [anon_sym_public] = ACTIONS(2271), + [anon_sym_private] = ACTIONS(2271), + [anon_sym_protected] = ACTIONS(2271), + [anon_sym_override] = ACTIONS(2271), + [anon_sym_module] = ACTIONS(2271), + [anon_sym_any] = ACTIONS(2271), + [anon_sym_number] = ACTIONS(2271), + [anon_sym_boolean] = ACTIONS(2271), + [anon_sym_string] = ACTIONS(2271), + [anon_sym_symbol] = ACTIONS(2271), + [anon_sym_object] = ACTIONS(2271), + [anon_sym_property] = ACTIONS(2271), + [anon_sym_signal] = ACTIONS(2271), + [anon_sym_on] = ACTIONS(2271), + [anon_sym_required] = ACTIONS(2271), + [anon_sym_component] = ACTIONS(2271), + [sym_html_comment] = ACTIONS(5), + }, + [330] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(453), + [sym_variable_declaration] = STATE(453), + [sym_lexical_declaration] = STATE(453), + [sym_empty_statement] = STATE(453), + [sym_parenthesized_expression] = STATE(2468), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2468), + [sym_subscript_expression] = STATE(2468), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(6660), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7445), + [sym_string] = STATE(3558), + [sym_comment] = STATE(330), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2468), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2217), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_property] = ACTIONS(2219), + [anon_sym_signal] = ACTIONS(2219), + [anon_sym_on] = ACTIONS(2219), + [anon_sym_required] = ACTIONS(2219), + [anon_sym_component] = ACTIONS(2219), + [sym_html_comment] = ACTIONS(5), + }, + [331] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(473), + [sym_variable_declaration] = STATE(473), + [sym_lexical_declaration] = STATE(473), + [sym_empty_statement] = STATE(473), + [sym_parenthesized_expression] = STATE(2468), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2468), + [sym_subscript_expression] = STATE(2468), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(6660), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7445), + [sym_string] = STATE(3558), + [sym_comment] = STATE(331), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2468), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2217), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_property] = ACTIONS(2219), + [anon_sym_signal] = ACTIONS(2219), + [anon_sym_on] = ACTIONS(2219), + [anon_sym_required] = ACTIONS(2219), + [anon_sym_component] = ACTIONS(2219), + [sym_html_comment] = ACTIONS(5), + }, + [332] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(455), + [sym_variable_declaration] = STATE(455), + [sym_lexical_declaration] = STATE(455), + [sym_empty_statement] = STATE(455), + [sym_parenthesized_expression] = STATE(2468), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2468), + [sym_subscript_expression] = STATE(2468), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(6660), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7445), + [sym_string] = STATE(3558), + [sym_comment] = STATE(332), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2468), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2217), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2219), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2227), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(2239), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_override] = ACTIONS(2219), + [anon_sym_module] = ACTIONS(2219), + [anon_sym_any] = ACTIONS(2219), + [anon_sym_number] = ACTIONS(2219), + [anon_sym_boolean] = ACTIONS(2219), + [anon_sym_string] = ACTIONS(2219), + [anon_sym_symbol] = ACTIONS(2219), + [anon_sym_object] = ACTIONS(2219), + [anon_sym_property] = ACTIONS(2219), + [anon_sym_signal] = ACTIONS(2219), + [anon_sym_on] = ACTIONS(2219), + [anon_sym_required] = ACTIONS(2219), + [anon_sym_component] = ACTIONS(2219), + [sym_html_comment] = ACTIONS(5), + }, + [333] = { + [sym_comment] = STATE(333), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_EQ] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_COMMA] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_in] = ACTIONS(2287), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_GT] = ACTIONS(2287), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_QMARK_DOT] = ACTIONS(2287), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2287), + [anon_sym_PIPE_PIPE] = ACTIONS(2287), + [anon_sym_GT_GT] = ACTIONS(2287), + [anon_sym_GT_GT_GT] = ACTIONS(2287), + [anon_sym_LT_LT] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(2287), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2287), + [anon_sym_STAR_STAR] = ACTIONS(2287), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2287), + [anon_sym_EQ_EQ] = ACTIONS(2287), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2287), + [anon_sym_BANG_EQ] = ACTIONS(2287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2287), + [anon_sym_GT_EQ] = ACTIONS(2287), + [anon_sym_QMARK_QMARK] = ACTIONS(2287), + [anon_sym_instanceof] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_satisfies] = ACTIONS(2287), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(2291), + [sym__ternary_qmark] = ACTIONS(2293), + [sym_html_comment] = ACTIONS(5), + }, + [334] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(6659), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(334), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6557), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_pattern_repeat1] = STATE(6689), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(2275), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(2295), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [335] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3238), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7856), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(6797), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(335), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6784), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2297), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2300), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1193), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1193), + [anon_sym_number] = ACTIONS(1193), + [anon_sym_boolean] = ACTIONS(1193), + [anon_sym_string] = ACTIONS(1193), + [anon_sym_symbol] = ACTIONS(1193), + [anon_sym_object] = ACTIONS(1193), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [sym_html_comment] = ACTIONS(5), + }, + [336] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3767), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(336), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2215), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_RBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_extends] = ACTIONS(2215), + [sym_html_comment] = ACTIONS(5), + }, + [337] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3238), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7856), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(6797), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(337), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6784), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2297), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2304), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1193), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1193), + [anon_sym_number] = ACTIONS(1193), + [anon_sym_boolean] = ACTIONS(1193), + [anon_sym_string] = ACTIONS(1193), + [anon_sym_symbol] = ACTIONS(1193), + [anon_sym_object] = ACTIONS(1193), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [sym_html_comment] = ACTIONS(5), + }, + [338] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3238), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7856), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_spread_element] = STATE(6797), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(338), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6784), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_COMMA] = ACTIONS(2297), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_RBRACK] = ACTIONS(2297), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1193), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1193), + [anon_sym_number] = ACTIONS(1193), + [anon_sym_boolean] = ACTIONS(1193), + [anon_sym_string] = ACTIONS(1193), + [anon_sym_symbol] = ACTIONS(1193), + [anon_sym_object] = ACTIONS(1193), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [sym_html_comment] = ACTIONS(5), + }, + [339] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3681), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2524), + [sym_subscript_expression] = STATE(2524), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(6917), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(339), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2524), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(2308), + [anon_sym_export] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2312), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_COMMA] = ACTIONS(2275), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_RBRACK] = ACTIONS(2277), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2316), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2283), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_readonly] = ACTIONS(2310), + [anon_sym_get] = ACTIONS(2310), + [anon_sym_set] = ACTIONS(2310), + [anon_sym_declare] = ACTIONS(2310), + [anon_sym_public] = ACTIONS(2310), + [anon_sym_private] = ACTIONS(2310), + [anon_sym_protected] = ACTIONS(2310), + [anon_sym_override] = ACTIONS(2310), + [anon_sym_module] = ACTIONS(2310), + [anon_sym_any] = ACTIONS(2310), + [anon_sym_number] = ACTIONS(2310), + [anon_sym_boolean] = ACTIONS(2310), + [anon_sym_string] = ACTIONS(2310), + [anon_sym_symbol] = ACTIONS(2310), + [anon_sym_object] = ACTIONS(2310), + [anon_sym_property] = ACTIONS(2310), + [anon_sym_signal] = ACTIONS(2310), + [anon_sym_on] = ACTIONS(2310), + [anon_sym_required] = ACTIONS(2310), + [anon_sym_component] = ACTIONS(2310), + [sym_html_comment] = ACTIONS(5), + }, + [340] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7277), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(340), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6324), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_pattern_repeat1] = STATE(7297), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(2275), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(2277), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [341] = { + [sym_statement_block] = STATE(361), + [sym_comment] = STATE(341), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2322), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [342] = { + [sym_statement_block] = STATE(361), + [sym_comment] = STATE(342), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [343] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(343), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [344] = { + [sym_statement_block] = STATE(361), + [sym_comment] = STATE(344), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [345] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(345), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(1449), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [346] = { + [sym_comment] = STATE(346), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_STAR] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_as] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_COMMA] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_from] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_else] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_in] = ACTIONS(2328), + [anon_sym_of] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_LTtemplate_GT] = ACTIONS(2328), + [anon_sym_GT] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2328), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_QMARK_DOT] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_using] = ACTIONS(2328), + [anon_sym_AMP_AMP] = ACTIONS(2328), + [anon_sym_PIPE_PIPE] = ACTIONS(2328), + [anon_sym_GT_GT] = ACTIONS(2328), + [anon_sym_GT_GT_GT] = ACTIONS(2328), + [anon_sym_LT_LT] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2328), + [anon_sym_CARET] = ACTIONS(2328), + [anon_sym_PIPE] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_PERCENT] = ACTIONS(2328), + [anon_sym_STAR_STAR] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_LT_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2328), + [anon_sym_GT_EQ] = ACTIONS(2328), + [anon_sym_QMARK_QMARK] = ACTIONS(2328), + [anon_sym_instanceof] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2328), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2328), + [sym_number] = ACTIONS(2328), + [sym_private_property_identifier] = ACTIONS(2328), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_property] = ACTIONS(2328), + [anon_sym_signal] = ACTIONS(2328), + [anon_sym_on] = ACTIONS(2328), + [anon_sym_required] = ACTIONS(2328), + [anon_sym_component] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_satisfies] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym__automatic_semicolon] = ACTIONS(2330), + [sym__ternary_qmark] = ACTIONS(2330), + [sym_html_comment] = ACTIONS(5), + }, + [347] = { + [sym_comment] = STATE(347), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_typeof] = ACTIONS(2332), + [anon_sym_import] = ACTIONS(2332), + [anon_sym_from] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_switch] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_await] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2334), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_throw] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_case] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_LTtemplate_GT] = ACTIONS(2332), + [anon_sym_GT] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2332), + [anon_sym_class] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_QMARK_DOT] = ACTIONS(2334), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_using] = ACTIONS(2332), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2334), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_void] = ACTIONS(2332), + [anon_sym_delete] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2332), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2332), + [sym_number] = ACTIONS(2332), + [sym_private_property_identifier] = ACTIONS(2332), + [sym_this] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_undefined] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_property] = ACTIONS(2332), + [anon_sym_signal] = ACTIONS(2332), + [anon_sym_on] = ACTIONS(2332), + [anon_sym_required] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_satisfies] = ACTIONS(2334), + [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(2336), + [sym__ternary_qmark] = ACTIONS(2338), + [sym_html_comment] = ACTIONS(5), + }, + [348] = { + [sym_comment] = STATE(348), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2342), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_case] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_QMARK_DOT] = ACTIONS(2342), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_instanceof] = ACTIONS(2342), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_satisfies] = ACTIONS(2342), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2344), + [sym__ternary_qmark] = ACTIONS(2346), + [sym_html_comment] = ACTIONS(5), + }, + [349] = { + [sym_comment] = STATE(349), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_STAR] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_COMMA] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_case] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_GT] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_QMARK_DOT] = ACTIONS(2350), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_AMP_AMP] = ACTIONS(2350), + [anon_sym_PIPE_PIPE] = ACTIONS(2350), + [anon_sym_GT_GT] = ACTIONS(2350), + [anon_sym_GT_GT_GT] = ACTIONS(2350), + [anon_sym_LT_LT] = ACTIONS(2350), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_PERCENT] = ACTIONS(2350), + [anon_sym_STAR_STAR] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_LT_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), + [anon_sym_GT_EQ] = ACTIONS(2350), + [anon_sym_QMARK_QMARK] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_satisfies] = ACTIONS(2350), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2352), + [sym__ternary_qmark] = ACTIONS(2354), + [sym_html_comment] = ACTIONS(5), + }, + [350] = { + [sym_comment] = STATE(350), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_as] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_COMMA] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_in] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_case] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_GT] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_QMARK_DOT] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2356), + [anon_sym_GT_GT] = ACTIONS(2356), + [anon_sym_GT_GT_GT] = ACTIONS(2356), + [anon_sym_LT_LT] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_CARET] = ACTIONS(2356), + [anon_sym_PIPE] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_PERCENT] = ACTIONS(2356), + [anon_sym_STAR_STAR] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_LT_EQ] = ACTIONS(2356), + [anon_sym_EQ_EQ] = ACTIONS(2356), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2356), + [anon_sym_BANG_EQ] = ACTIONS(2356), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2356), + [anon_sym_GT_EQ] = ACTIONS(2356), + [anon_sym_QMARK_QMARK] = ACTIONS(2356), + [anon_sym_instanceof] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_satisfies] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym__automatic_semicolon] = ACTIONS(2358), + [sym__ternary_qmark] = ACTIONS(2358), + [sym_html_comment] = ACTIONS(5), + }, + [351] = { + [sym_comment] = STATE(351), + [sym_identifier] = ACTIONS(2360), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_default] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_as] = ACTIONS(2362), + [anon_sym_namespace] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_typeof] = ACTIONS(2360), + [anon_sym_import] = ACTIONS(2360), + [anon_sym_from] = ACTIONS(2360), + [anon_sym_with] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_switch] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_await] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2362), + [anon_sym_of] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_debugger] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_throw] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_case] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [anon_sym_LTtemplate_GT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_class] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(2362), + [anon_sym_new] = ACTIONS(2360), + [anon_sym_using] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2362), + [anon_sym_GT_GT] = ACTIONS(2362), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_PIPE] = ACTIONS(2362), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_PERCENT] = ACTIONS(2362), + [anon_sym_STAR_STAR] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2362), + [anon_sym_EQ_EQ] = ACTIONS(2362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2362), + [anon_sym_BANG_EQ] = ACTIONS(2362), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2362), + [anon_sym_GT_EQ] = ACTIONS(2362), + [anon_sym_QMARK_QMARK] = ACTIONS(2362), + [anon_sym_instanceof] = ACTIONS(2362), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_void] = ACTIONS(2360), + [anon_sym_delete] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2360), + [sym_number] = ACTIONS(2360), + [sym_private_property_identifier] = ACTIONS(2360), + [sym_this] = ACTIONS(2360), + [sym_super] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_null] = ACTIONS(2360), + [sym_undefined] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_readonly] = ACTIONS(2360), + [anon_sym_get] = ACTIONS(2360), + [anon_sym_set] = ACTIONS(2360), + [anon_sym_declare] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_protected] = ACTIONS(2360), + [anon_sym_override] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_any] = ACTIONS(2360), + [anon_sym_number] = ACTIONS(2360), + [anon_sym_boolean] = ACTIONS(2360), + [anon_sym_string] = ACTIONS(2360), + [anon_sym_symbol] = ACTIONS(2360), + [anon_sym_object] = ACTIONS(2360), + [anon_sym_property] = ACTIONS(2360), + [anon_sym_signal] = ACTIONS(2360), + [anon_sym_on] = ACTIONS(2360), + [anon_sym_required] = ACTIONS(2360), + [anon_sym_component] = ACTIONS(2360), + [anon_sym_abstract] = ACTIONS(2360), + [anon_sym_satisfies] = ACTIONS(2362), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [sym__automatic_semicolon] = ACTIONS(2364), + [sym__ternary_qmark] = ACTIONS(2366), + [sym_html_comment] = ACTIONS(5), + }, + [352] = { + [sym_comment] = STATE(352), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_as] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_COMMA] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_GT] = ACTIONS(2368), + [anon_sym_DOT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_QMARK_DOT] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2368), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_GT_GT_GT] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_PERCENT] = ACTIONS(2368), + [anon_sym_STAR_STAR] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_LT_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2368), + [anon_sym_GT_EQ] = ACTIONS(2368), + [anon_sym_QMARK_QMARK] = ACTIONS(2368), + [anon_sym_instanceof] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(2370), + [sym__ternary_qmark] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [353] = { + [sym_comment] = STATE(353), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_as] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_COMMA] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_in] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_QMARK_DOT] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_GT_GT_GT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_STAR_STAR] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2285), + [anon_sym_BANG_EQ] = ACTIONS(2285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2285), + [anon_sym_QMARK_QMARK] = ACTIONS(2285), + [anon_sym_instanceof] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_satisfies] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(2372), + [sym__ternary_qmark] = ACTIONS(2374), + [sym_html_comment] = ACTIONS(5), + }, + [354] = { + [sym_comment] = STATE(354), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_in] = ACTIONS(2376), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_case] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2376), + [anon_sym_DOT] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_QMARK_DOT] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_GT_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_AMP] = ACTIONS(2376), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_PIPE] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_PERCENT] = ACTIONS(2376), + [anon_sym_STAR_STAR] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_QMARK_QMARK] = ACTIONS(2376), + [anon_sym_instanceof] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_satisfies] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(2378), + [sym__ternary_qmark] = ACTIONS(2378), + [sym_html_comment] = ACTIONS(5), + }, + [355] = { + [sym_comment] = STATE(355), + [sym_identifier] = ACTIONS(2380), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_as] = ACTIONS(2380), + [anon_sym_namespace] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2380), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_typeof] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2380), + [anon_sym_from] = ACTIONS(2380), + [anon_sym_with] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2380), + [anon_sym_else] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_switch] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_await] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_of] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_debugger] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_case] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_LTtemplate_GT] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2380), + [anon_sym_DOT] = ACTIONS(2380), + [anon_sym_DQUOTE] = ACTIONS(2380), + [anon_sym_SQUOTE] = ACTIONS(2380), + [anon_sym_class] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_QMARK_DOT] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_using] = ACTIONS(2380), + [anon_sym_AMP_AMP] = ACTIONS(2380), + [anon_sym_PIPE_PIPE] = ACTIONS(2380), + [anon_sym_GT_GT] = ACTIONS(2380), + [anon_sym_GT_GT_GT] = ACTIONS(2380), + [anon_sym_LT_LT] = ACTIONS(2380), + [anon_sym_AMP] = ACTIONS(2380), + [anon_sym_CARET] = ACTIONS(2380), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_PERCENT] = ACTIONS(2380), + [anon_sym_STAR_STAR] = ACTIONS(2380), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_QMARK_QMARK] = ACTIONS(2380), + [anon_sym_instanceof] = ACTIONS(2380), + [anon_sym_TILDE] = ACTIONS(2380), + [anon_sym_void] = ACTIONS(2380), + [anon_sym_delete] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2380), + [anon_sym_DASH_DASH] = ACTIONS(2380), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2380), + [sym_number] = ACTIONS(2380), + [sym_private_property_identifier] = ACTIONS(2380), + [sym_this] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_true] = ACTIONS(2380), + [sym_false] = ACTIONS(2380), + [sym_null] = ACTIONS(2380), + [sym_undefined] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_readonly] = ACTIONS(2380), + [anon_sym_get] = ACTIONS(2380), + [anon_sym_set] = ACTIONS(2380), + [anon_sym_declare] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_protected] = ACTIONS(2380), + [anon_sym_override] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_any] = ACTIONS(2380), + [anon_sym_number] = ACTIONS(2380), + [anon_sym_boolean] = ACTIONS(2380), + [anon_sym_string] = ACTIONS(2380), + [anon_sym_symbol] = ACTIONS(2380), + [anon_sym_object] = ACTIONS(2380), + [anon_sym_property] = ACTIONS(2380), + [anon_sym_signal] = ACTIONS(2380), + [anon_sym_on] = ACTIONS(2380), + [anon_sym_required] = ACTIONS(2380), + [anon_sym_component] = ACTIONS(2380), + [anon_sym_abstract] = ACTIONS(2380), + [anon_sym_satisfies] = ACTIONS(2380), + [anon_sym_interface] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [sym__automatic_semicolon] = ACTIONS(2382), + [sym__ternary_qmark] = ACTIONS(2382), + [sym_html_comment] = ACTIONS(5), + }, + [356] = { + [sym_comment] = STATE(356), + [sym_identifier] = ACTIONS(2384), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_as] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_typeof] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2384), + [anon_sym_from] = ACTIONS(2384), + [anon_sym_with] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2384), + [anon_sym_await] = ACTIONS(2384), + [anon_sym_in] = ACTIONS(2384), + [anon_sym_of] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_debugger] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_case] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_LTtemplate_GT] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DQUOTE] = ACTIONS(2384), + [anon_sym_SQUOTE] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_QMARK_DOT] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_using] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_GT_GT_GT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_STAR_STAR] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_QMARK_QMARK] = ACTIONS(2384), + [anon_sym_instanceof] = ACTIONS(2384), + [anon_sym_TILDE] = ACTIONS(2384), + [anon_sym_void] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2384), + [sym_number] = ACTIONS(2384), + [sym_private_property_identifier] = ACTIONS(2384), + [sym_this] = ACTIONS(2384), + [sym_super] = ACTIONS(2384), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_undefined] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_readonly] = ACTIONS(2384), + [anon_sym_get] = ACTIONS(2384), + [anon_sym_set] = ACTIONS(2384), + [anon_sym_declare] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_protected] = ACTIONS(2384), + [anon_sym_override] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_any] = ACTIONS(2384), + [anon_sym_number] = ACTIONS(2384), + [anon_sym_boolean] = ACTIONS(2384), + [anon_sym_string] = ACTIONS(2384), + [anon_sym_symbol] = ACTIONS(2384), + [anon_sym_object] = ACTIONS(2384), + [anon_sym_property] = ACTIONS(2384), + [anon_sym_signal] = ACTIONS(2384), + [anon_sym_on] = ACTIONS(2384), + [anon_sym_required] = ACTIONS(2384), + [anon_sym_component] = ACTIONS(2384), + [anon_sym_abstract] = ACTIONS(2384), + [anon_sym_satisfies] = ACTIONS(2384), + [anon_sym_interface] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [sym__automatic_semicolon] = ACTIONS(2386), + [sym__ternary_qmark] = ACTIONS(2386), + [sym_html_comment] = ACTIONS(5), + }, + [357] = { + [sym_comment] = STATE(357), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(2390), + [anon_sym_default] = ACTIONS(2388), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_as] = ACTIONS(2390), + [anon_sym_namespace] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2388), + [anon_sym_COMMA] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_typeof] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(2388), + [anon_sym_from] = ACTIONS(2388), + [anon_sym_with] = ACTIONS(2388), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_else] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_switch] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2388), + [anon_sym_await] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2390), + [anon_sym_of] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_do] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_debugger] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_throw] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2388), + [anon_sym_case] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2388), + [anon_sym_LTtemplate_GT] = ACTIONS(2388), + [anon_sym_GT] = ACTIONS(2390), + [anon_sym_DOT] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2388), + [anon_sym_SQUOTE] = ACTIONS(2388), + [anon_sym_class] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_QMARK_DOT] = ACTIONS(2390), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_using] = ACTIONS(2388), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2390), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2390), + [anon_sym_CARET] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2390), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_STAR_STAR] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_QMARK_QMARK] = ACTIONS(2390), + [anon_sym_instanceof] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_void] = ACTIONS(2388), + [anon_sym_delete] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(2388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2388), + [sym_number] = ACTIONS(2388), + [sym_private_property_identifier] = ACTIONS(2388), + [sym_this] = ACTIONS(2388), + [sym_super] = ACTIONS(2388), + [sym_true] = ACTIONS(2388), + [sym_false] = ACTIONS(2388), + [sym_null] = ACTIONS(2388), + [sym_undefined] = ACTIONS(2388), + [anon_sym_AT] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_readonly] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_declare] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_protected] = ACTIONS(2388), + [anon_sym_override] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_any] = ACTIONS(2388), + [anon_sym_number] = ACTIONS(2388), + [anon_sym_boolean] = ACTIONS(2388), + [anon_sym_string] = ACTIONS(2388), + [anon_sym_symbol] = ACTIONS(2388), + [anon_sym_object] = ACTIONS(2388), + [anon_sym_property] = ACTIONS(2388), + [anon_sym_signal] = ACTIONS(2388), + [anon_sym_on] = ACTIONS(2388), + [anon_sym_required] = ACTIONS(2388), + [anon_sym_component] = ACTIONS(2388), + [anon_sym_abstract] = ACTIONS(2388), + [anon_sym_satisfies] = ACTIONS(2390), + [anon_sym_interface] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [sym__automatic_semicolon] = ACTIONS(2392), + [sym__ternary_qmark] = ACTIONS(2394), + [sym_html_comment] = ACTIONS(5), + }, + [358] = { + [sym_comment] = STATE(358), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_COMMA] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2396), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_GT] = ACTIONS(2396), + [anon_sym_DOT] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_QMARK_DOT] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_GT_GT_GT] = ACTIONS(2396), + [anon_sym_LT_LT] = ACTIONS(2396), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_CARET] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_PERCENT] = ACTIONS(2396), + [anon_sym_STAR_STAR] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_LT_EQ] = ACTIONS(2396), + [anon_sym_EQ_EQ] = ACTIONS(2396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2396), + [anon_sym_BANG_EQ] = ACTIONS(2396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2396), + [anon_sym_GT_EQ] = ACTIONS(2396), + [anon_sym_QMARK_QMARK] = ACTIONS(2396), + [anon_sym_instanceof] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_satisfies] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2398), + [sym__ternary_qmark] = ACTIONS(2398), + [sym_html_comment] = ACTIONS(5), + }, + [359] = { + [sym_comment] = STATE(359), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_as] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_COMMA] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_GT] = ACTIONS(2368), + [anon_sym_DOT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_QMARK_DOT] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2368), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_GT_GT_GT] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_PERCENT] = ACTIONS(2368), + [anon_sym_STAR_STAR] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_LT_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2368), + [anon_sym_GT_EQ] = ACTIONS(2368), + [anon_sym_QMARK_QMARK] = ACTIONS(2368), + [anon_sym_instanceof] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(2400), + [sym__ternary_qmark] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [360] = { + [sym_comment] = STATE(360), + [sym_identifier] = ACTIONS(2402), + [anon_sym_export] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_type] = ACTIONS(2402), + [anon_sym_as] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_COMMA] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2402), + [anon_sym_import] = ACTIONS(2402), + [anon_sym_from] = ACTIONS(2402), + [anon_sym_with] = ACTIONS(2402), + [anon_sym_var] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_switch] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_await] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2404), + [anon_sym_of] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_debugger] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_throw] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_case] = ACTIONS(2402), + [anon_sym_yield] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LTtemplate_GT] = ACTIONS(2402), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_DOT] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_class] = ACTIONS(2402), + [anon_sym_async] = ACTIONS(2402), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_QMARK_DOT] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2402), + [anon_sym_using] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_GT_GT_GT] = ACTIONS(2404), + [anon_sym_LT_LT] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_SLASH] = ACTIONS(2402), + [anon_sym_PERCENT] = ACTIONS(2404), + [anon_sym_STAR_STAR] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_LT_EQ] = ACTIONS(2404), + [anon_sym_EQ_EQ] = ACTIONS(2404), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2404), + [anon_sym_BANG_EQ] = ACTIONS(2404), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2404), + [anon_sym_GT_EQ] = ACTIONS(2404), + [anon_sym_QMARK_QMARK] = ACTIONS(2404), + [anon_sym_instanceof] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_void] = ACTIONS(2402), + [anon_sym_delete] = ACTIONS(2402), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2402), + [sym_number] = ACTIONS(2402), + [sym_private_property_identifier] = ACTIONS(2402), + [sym_this] = ACTIONS(2402), + [sym_super] = ACTIONS(2402), + [sym_true] = ACTIONS(2402), + [sym_false] = ACTIONS(2402), + [sym_null] = ACTIONS(2402), + [sym_undefined] = ACTIONS(2402), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_readonly] = ACTIONS(2402), + [anon_sym_get] = ACTIONS(2402), + [anon_sym_set] = ACTIONS(2402), + [anon_sym_declare] = ACTIONS(2402), + [anon_sym_public] = ACTIONS(2402), + [anon_sym_private] = ACTIONS(2402), + [anon_sym_protected] = ACTIONS(2402), + [anon_sym_override] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_any] = ACTIONS(2402), + [anon_sym_number] = ACTIONS(2402), + [anon_sym_boolean] = ACTIONS(2402), + [anon_sym_string] = ACTIONS(2402), + [anon_sym_symbol] = ACTIONS(2402), + [anon_sym_object] = ACTIONS(2402), + [anon_sym_property] = ACTIONS(2402), + [anon_sym_signal] = ACTIONS(2402), + [anon_sym_on] = ACTIONS(2402), + [anon_sym_required] = ACTIONS(2402), + [anon_sym_component] = ACTIONS(2402), + [anon_sym_abstract] = ACTIONS(2402), + [anon_sym_satisfies] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [sym__automatic_semicolon] = ACTIONS(2406), + [sym__ternary_qmark] = ACTIONS(2408), + [sym_html_comment] = ACTIONS(5), + }, + [361] = { + [sym_comment] = STATE(361), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_default] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_typeof] = ACTIONS(2410), + [anon_sym_import] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2410), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_debugger] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_throw] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_case] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LTtemplate_GT] = ACTIONS(2410), + [anon_sym_GT] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_class] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_QMARK_DOT] = ACTIONS(2410), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_PIPE_PIPE] = ACTIONS(2410), + [anon_sym_GT_GT] = ACTIONS(2410), + [anon_sym_GT_GT_GT] = ACTIONS(2410), + [anon_sym_LT_LT] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_PERCENT] = ACTIONS(2410), + [anon_sym_STAR_STAR] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_LT_EQ] = ACTIONS(2410), + [anon_sym_EQ_EQ] = ACTIONS(2410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2410), + [anon_sym_BANG_EQ] = ACTIONS(2410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2410), + [anon_sym_GT_EQ] = ACTIONS(2410), + [anon_sym_QMARK_QMARK] = ACTIONS(2410), + [anon_sym_instanceof] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2410), + [anon_sym_delete] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_private_property_identifier] = ACTIONS(2410), + [sym_this] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_true] = ACTIONS(2410), + [sym_false] = ACTIONS(2410), + [sym_null] = ACTIONS(2410), + [sym_undefined] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_abstract] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(2410), + [anon_sym_interface] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2412), + [sym__ternary_qmark] = ACTIONS(2412), + [sym_html_comment] = ACTIONS(5), + }, + [362] = { + [sym_comment] = STATE(362), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_default] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_as] = ACTIONS(2414), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_COMMA] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_typeof] = ACTIONS(2414), + [anon_sym_import] = ACTIONS(2414), + [anon_sym_from] = ACTIONS(2414), + [anon_sym_with] = ACTIONS(2414), + [anon_sym_var] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_switch] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_await] = ACTIONS(2414), + [anon_sym_in] = ACTIONS(2414), + [anon_sym_of] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_debugger] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_throw] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_case] = ACTIONS(2414), + [anon_sym_yield] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_LTtemplate_GT] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2414), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_class] = ACTIONS(2414), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2414), + [anon_sym_QMARK_DOT] = ACTIONS(2414), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_using] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2414), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2414), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_STAR_STAR] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2414), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2414), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_instanceof] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_void] = ACTIONS(2414), + [anon_sym_delete] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2414), + [sym_number] = ACTIONS(2414), + [sym_private_property_identifier] = ACTIONS(2414), + [sym_this] = ACTIONS(2414), + [sym_super] = ACTIONS(2414), + [sym_true] = ACTIONS(2414), + [sym_false] = ACTIONS(2414), + [sym_null] = ACTIONS(2414), + [sym_undefined] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_property] = ACTIONS(2414), + [anon_sym_signal] = ACTIONS(2414), + [anon_sym_on] = ACTIONS(2414), + [anon_sym_required] = ACTIONS(2414), + [anon_sym_component] = ACTIONS(2414), + [anon_sym_abstract] = ACTIONS(2414), + [anon_sym_satisfies] = ACTIONS(2414), + [anon_sym_interface] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [sym__automatic_semicolon] = ACTIONS(2416), + [sym__ternary_qmark] = ACTIONS(2416), + [sym_html_comment] = ACTIONS(5), + }, + [363] = { + [sym_comment] = STATE(363), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_QMARK_DOT] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_GT_GT] = ACTIONS(2418), + [anon_sym_GT_GT_GT] = ACTIONS(2418), + [anon_sym_LT_LT] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_PERCENT] = ACTIONS(2418), + [anon_sym_STAR_STAR] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2418), + [anon_sym_QMARK_QMARK] = ACTIONS(2418), + [anon_sym_instanceof] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_satisfies] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2420), + [sym__ternary_qmark] = ACTIONS(2420), + [sym_html_comment] = ACTIONS(5), + }, + [364] = { + [sym_comment] = STATE(364), + [sym_identifier] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2422), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_as] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_COMMA] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_typeof] = ACTIONS(2422), + [anon_sym_import] = ACTIONS(2422), + [anon_sym_from] = ACTIONS(2422), + [anon_sym_with] = ACTIONS(2422), + [anon_sym_var] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_else] = ACTIONS(2422), + [anon_sym_if] = ACTIONS(2422), + [anon_sym_switch] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_await] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_of] = ACTIONS(2422), + [anon_sym_while] = ACTIONS(2422), + [anon_sym_do] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2422), + [anon_sym_continue] = ACTIONS(2422), + [anon_sym_debugger] = ACTIONS(2422), + [anon_sym_return] = ACTIONS(2422), + [anon_sym_throw] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_case] = ACTIONS(2422), + [anon_sym_yield] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_LTtemplate_GT] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2424), + [anon_sym_DOT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_class] = ACTIONS(2422), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2422), + [anon_sym_QMARK_DOT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_using] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(2424), + [anon_sym_GT_GT] = ACTIONS(2424), + [anon_sym_GT_GT_GT] = ACTIONS(2424), + [anon_sym_LT_LT] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_CARET] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_SLASH] = ACTIONS(2422), + [anon_sym_PERCENT] = ACTIONS(2424), + [anon_sym_STAR_STAR] = ACTIONS(2424), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_LT_EQ] = ACTIONS(2424), + [anon_sym_EQ_EQ] = ACTIONS(2424), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2424), + [anon_sym_BANG_EQ] = ACTIONS(2424), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2424), + [anon_sym_GT_EQ] = ACTIONS(2424), + [anon_sym_QMARK_QMARK] = ACTIONS(2424), + [anon_sym_instanceof] = ACTIONS(2424), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_void] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2422), + [sym_number] = ACTIONS(2422), + [sym_private_property_identifier] = ACTIONS(2422), + [sym_this] = ACTIONS(2422), + [sym_super] = ACTIONS(2422), + [sym_true] = ACTIONS(2422), + [sym_false] = ACTIONS(2422), + [sym_null] = ACTIONS(2422), + [sym_undefined] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_property] = ACTIONS(2422), + [anon_sym_signal] = ACTIONS(2422), + [anon_sym_on] = ACTIONS(2422), + [anon_sym_required] = ACTIONS(2422), + [anon_sym_component] = ACTIONS(2422), + [anon_sym_abstract] = ACTIONS(2422), + [anon_sym_satisfies] = ACTIONS(2424), + [anon_sym_interface] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [sym__automatic_semicolon] = ACTIONS(2426), + [sym__ternary_qmark] = ACTIONS(2428), + [sym_html_comment] = ACTIONS(5), + }, + [365] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(365), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [366] = { + [sym_comment] = STATE(366), + [sym_identifier] = ACTIONS(2430), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_as] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_COMMA] = ACTIONS(2432), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_typeof] = ACTIONS(2430), + [anon_sym_import] = ACTIONS(2430), + [anon_sym_from] = ACTIONS(2430), + [anon_sym_with] = ACTIONS(2430), + [anon_sym_var] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_const] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_else] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_switch] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_await] = ACTIONS(2430), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_of] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2430), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_debugger] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_throw] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_case] = ACTIONS(2430), + [anon_sym_yield] = ACTIONS(2430), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_LTtemplate_GT] = ACTIONS(2430), + [anon_sym_GT] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_class] = ACTIONS(2430), + [anon_sym_async] = ACTIONS(2430), + [anon_sym_function] = ACTIONS(2430), + [anon_sym_QMARK_DOT] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_using] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2432), + [anon_sym_PIPE_PIPE] = ACTIONS(2432), + [anon_sym_GT_GT] = ACTIONS(2432), + [anon_sym_GT_GT_GT] = ACTIONS(2432), + [anon_sym_LT_LT] = ACTIONS(2432), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_CARET] = ACTIONS(2432), + [anon_sym_PIPE] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_SLASH] = ACTIONS(2430), + [anon_sym_PERCENT] = ACTIONS(2432), + [anon_sym_STAR_STAR] = ACTIONS(2432), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_LT_EQ] = ACTIONS(2432), + [anon_sym_EQ_EQ] = ACTIONS(2432), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), + [anon_sym_BANG_EQ] = ACTIONS(2432), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), + [anon_sym_GT_EQ] = ACTIONS(2432), + [anon_sym_QMARK_QMARK] = ACTIONS(2432), + [anon_sym_instanceof] = ACTIONS(2432), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_void] = ACTIONS(2430), + [anon_sym_delete] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_number] = ACTIONS(2430), + [sym_private_property_identifier] = ACTIONS(2430), + [sym_this] = ACTIONS(2430), + [sym_super] = ACTIONS(2430), + [sym_true] = ACTIONS(2430), + [sym_false] = ACTIONS(2430), + [sym_null] = ACTIONS(2430), + [sym_undefined] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2430), + [anon_sym_readonly] = ACTIONS(2430), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_declare] = ACTIONS(2430), + [anon_sym_public] = ACTIONS(2430), + [anon_sym_private] = ACTIONS(2430), + [anon_sym_protected] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_any] = ACTIONS(2430), + [anon_sym_number] = ACTIONS(2430), + [anon_sym_boolean] = ACTIONS(2430), + [anon_sym_string] = ACTIONS(2430), + [anon_sym_symbol] = ACTIONS(2430), + [anon_sym_object] = ACTIONS(2430), + [anon_sym_property] = ACTIONS(2430), + [anon_sym_signal] = ACTIONS(2430), + [anon_sym_on] = ACTIONS(2430), + [anon_sym_required] = ACTIONS(2430), + [anon_sym_component] = ACTIONS(2430), + [anon_sym_abstract] = ACTIONS(2430), + [anon_sym_satisfies] = ACTIONS(2432), + [anon_sym_interface] = ACTIONS(2430), + [anon_sym_enum] = ACTIONS(2430), + [sym__automatic_semicolon] = ACTIONS(2434), + [sym__ternary_qmark] = ACTIONS(2436), + [sym_html_comment] = ACTIONS(5), + }, + [367] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(367), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [368] = { + [sym_comment] = STATE(368), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_EQ] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_COMMA] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_in] = ACTIONS(2287), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_GT] = ACTIONS(2287), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_QMARK_DOT] = ACTIONS(2287), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2287), + [anon_sym_PIPE_PIPE] = ACTIONS(2287), + [anon_sym_GT_GT] = ACTIONS(2287), + [anon_sym_GT_GT_GT] = ACTIONS(2287), + [anon_sym_LT_LT] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(2287), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2287), + [anon_sym_STAR_STAR] = ACTIONS(2287), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2287), + [anon_sym_EQ_EQ] = ACTIONS(2287), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2287), + [anon_sym_BANG_EQ] = ACTIONS(2287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2287), + [anon_sym_GT_EQ] = ACTIONS(2287), + [anon_sym_QMARK_QMARK] = ACTIONS(2287), + [anon_sym_instanceof] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_satisfies] = ACTIONS(2287), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(2438), + [sym__ternary_qmark] = ACTIONS(2293), + [sym_html_comment] = ACTIONS(5), + }, + [369] = { + [sym_comment] = STATE(369), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_as] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_typeof] = ACTIONS(2440), + [anon_sym_import] = ACTIONS(2440), + [anon_sym_from] = ACTIONS(2440), + [anon_sym_with] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_else] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_await] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2442), + [anon_sym_of] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_debugger] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_yield] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_LTtemplate_GT] = ACTIONS(2440), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_DOT] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_SQUOTE] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_QMARK_DOT] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_PIPE_PIPE] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2442), + [anon_sym_GT_GT_GT] = ACTIONS(2442), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2442), + [anon_sym_STAR_STAR] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2442), + [anon_sym_BANG_EQ] = ACTIONS(2442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2442), + [anon_sym_GT_EQ] = ACTIONS(2442), + [anon_sym_QMARK_QMARK] = ACTIONS(2442), + [anon_sym_instanceof] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2440), + [anon_sym_void] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2440), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2440), + [sym_number] = ACTIONS(2440), + [sym_private_property_identifier] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [sym_super] = ACTIONS(2440), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [sym_null] = ACTIONS(2440), + [sym_undefined] = ACTIONS(2440), + [anon_sym_AT] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), + [anon_sym_property] = ACTIONS(2440), + [anon_sym_signal] = ACTIONS(2440), + [anon_sym_on] = ACTIONS(2440), + [anon_sym_required] = ACTIONS(2440), + [anon_sym_component] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_satisfies] = ACTIONS(2442), + [anon_sym_interface] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [sym__automatic_semicolon] = ACTIONS(2444), + [sym__ternary_qmark] = ACTIONS(2446), + [sym_html_comment] = ACTIONS(5), + }, + [370] = { + [sym_comment] = STATE(370), + [sym_identifier] = ACTIONS(2448), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2448), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_as] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_COMMA] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_typeof] = ACTIONS(2448), + [anon_sym_import] = ACTIONS(2448), + [anon_sym_from] = ACTIONS(2448), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_switch] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_await] = ACTIONS(2448), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_of] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_debugger] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_case] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LTtemplate_GT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2450), + [anon_sym_DOT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_class] = ACTIONS(2448), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_QMARK_DOT] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2448), + [anon_sym_using] = ACTIONS(2448), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2450), + [anon_sym_GT_GT_GT] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_SLASH] = ACTIONS(2448), + [anon_sym_PERCENT] = ACTIONS(2450), + [anon_sym_STAR_STAR] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_QMARK_QMARK] = ACTIONS(2450), + [anon_sym_instanceof] = ACTIONS(2450), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_void] = ACTIONS(2448), + [anon_sym_delete] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2448), + [sym_number] = ACTIONS(2448), + [sym_private_property_identifier] = ACTIONS(2448), + [sym_this] = ACTIONS(2448), + [sym_super] = ACTIONS(2448), + [sym_true] = ACTIONS(2448), + [sym_false] = ACTIONS(2448), + [sym_null] = ACTIONS(2448), + [sym_undefined] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_readonly] = ACTIONS(2448), + [anon_sym_get] = ACTIONS(2448), + [anon_sym_set] = ACTIONS(2448), + [anon_sym_declare] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_protected] = ACTIONS(2448), + [anon_sym_override] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_any] = ACTIONS(2448), + [anon_sym_number] = ACTIONS(2448), + [anon_sym_boolean] = ACTIONS(2448), + [anon_sym_string] = ACTIONS(2448), + [anon_sym_symbol] = ACTIONS(2448), + [anon_sym_object] = ACTIONS(2448), + [anon_sym_property] = ACTIONS(2448), + [anon_sym_signal] = ACTIONS(2448), + [anon_sym_on] = ACTIONS(2448), + [anon_sym_required] = ACTIONS(2448), + [anon_sym_component] = ACTIONS(2448), + [anon_sym_abstract] = ACTIONS(2448), + [anon_sym_satisfies] = ACTIONS(2450), + [anon_sym_interface] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [sym__automatic_semicolon] = ACTIONS(2452), + [sym__ternary_qmark] = ACTIONS(2454), + [sym_html_comment] = ACTIONS(5), + }, + [371] = { + [sym_comment] = STATE(371), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_from] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_case] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_LTtemplate_GT] = ACTIONS(2456), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_QMARK_DOT] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_instanceof] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_property] = ACTIONS(2456), + [anon_sym_signal] = ACTIONS(2456), + [anon_sym_on] = ACTIONS(2456), + [anon_sym_required] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_satisfies] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2460), + [sym_html_comment] = ACTIONS(5), + }, + [372] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7856), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(372), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6784), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(2462), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [373] = { + [sym_statement_block] = STATE(380), + [sym_comment] = STATE(373), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [374] = { + [sym_statement_block] = STATE(380), + [sym_comment] = STATE(374), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2468), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [375] = { + [sym_statement_block] = STATE(380), + [sym_comment] = STATE(375), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [376] = { + [sym_comment] = STATE(376), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_as] = ACTIONS(2472), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_COMMA] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2472), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_QMARK_DOT] = ACTIONS(2472), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2472), + [anon_sym_PIPE_PIPE] = ACTIONS(2472), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2472), + [anon_sym_LT_LT] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2472), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_PERCENT] = ACTIONS(2472), + [anon_sym_STAR_STAR] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_LT_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2472), + [anon_sym_GT_EQ] = ACTIONS(2472), + [anon_sym_QMARK_QMARK] = ACTIONS(2472), + [anon_sym_instanceof] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_satisfies] = ACTIONS(2472), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2474), + [sym__ternary_qmark] = ACTIONS(2476), + [sym_html_comment] = ACTIONS(5), + }, + [377] = { + [sym_comment] = STATE(377), + [sym_identifier] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_as] = ACTIONS(2480), + [anon_sym_namespace] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_COMMA] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_import] = ACTIONS(2478), + [anon_sym_from] = ACTIONS(2478), + [anon_sym_with] = ACTIONS(2478), + [anon_sym_var] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_await] = ACTIONS(2478), + [anon_sym_in] = ACTIONS(2480), + [anon_sym_of] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_debugger] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_throw] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_case] = ACTIONS(2478), + [anon_sym_yield] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_LTtemplate_GT] = ACTIONS(2478), + [anon_sym_GT] = ACTIONS(2480), + [anon_sym_DOT] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_class] = ACTIONS(2478), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_QMARK_DOT] = ACTIONS(2480), + [anon_sym_new] = ACTIONS(2478), + [anon_sym_using] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2480), + [anon_sym_PIPE_PIPE] = ACTIONS(2480), + [anon_sym_GT_GT] = ACTIONS(2480), + [anon_sym_GT_GT_GT] = ACTIONS(2480), + [anon_sym_LT_LT] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2480), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_SLASH] = ACTIONS(2478), + [anon_sym_PERCENT] = ACTIONS(2480), + [anon_sym_STAR_STAR] = ACTIONS(2480), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT_EQ] = ACTIONS(2480), + [anon_sym_EQ_EQ] = ACTIONS(2480), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), + [anon_sym_BANG_EQ] = ACTIONS(2480), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), + [anon_sym_GT_EQ] = ACTIONS(2480), + [anon_sym_QMARK_QMARK] = ACTIONS(2480), + [anon_sym_instanceof] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2478), + [sym_number] = ACTIONS(2478), + [sym_private_property_identifier] = ACTIONS(2478), + [sym_this] = ACTIONS(2478), + [sym_super] = ACTIONS(2478), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [sym_null] = ACTIONS(2478), + [sym_undefined] = ACTIONS(2478), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_override] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_any] = ACTIONS(2478), + [anon_sym_number] = ACTIONS(2478), + [anon_sym_boolean] = ACTIONS(2478), + [anon_sym_string] = ACTIONS(2478), + [anon_sym_symbol] = ACTIONS(2478), + [anon_sym_object] = ACTIONS(2478), + [anon_sym_property] = ACTIONS(2478), + [anon_sym_signal] = ACTIONS(2478), + [anon_sym_on] = ACTIONS(2478), + [anon_sym_required] = ACTIONS(2478), + [anon_sym_component] = ACTIONS(2478), + [anon_sym_abstract] = ACTIONS(2478), + [anon_sym_satisfies] = ACTIONS(2480), + [anon_sym_interface] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [sym__automatic_semicolon] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2484), + [sym_html_comment] = ACTIONS(5), + }, + [378] = { + [sym_comment] = STATE(378), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_in] = ACTIONS(2376), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_case] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2376), + [anon_sym_DOT] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_QMARK_DOT] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_GT_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_AMP] = ACTIONS(2376), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_PIPE] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_PERCENT] = ACTIONS(2376), + [anon_sym_STAR_STAR] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_QMARK_QMARK] = ACTIONS(2376), + [anon_sym_instanceof] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_satisfies] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(2378), + [sym__ternary_qmark] = ACTIONS(2378), + [sym_html_comment] = ACTIONS(5), + }, + [379] = { + [sym_comment] = STATE(379), + [sym_identifier] = ACTIONS(2430), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_as] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_COMMA] = ACTIONS(2432), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_typeof] = ACTIONS(2430), + [anon_sym_import] = ACTIONS(2430), + [anon_sym_from] = ACTIONS(2430), + [anon_sym_with] = ACTIONS(2430), + [anon_sym_var] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_const] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_switch] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_await] = ACTIONS(2430), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_of] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2430), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_debugger] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_throw] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_case] = ACTIONS(2430), + [anon_sym_yield] = ACTIONS(2430), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_LTtemplate_GT] = ACTIONS(2430), + [anon_sym_GT] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_class] = ACTIONS(2430), + [anon_sym_async] = ACTIONS(2430), + [anon_sym_function] = ACTIONS(2430), + [anon_sym_QMARK_DOT] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_using] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2432), + [anon_sym_PIPE_PIPE] = ACTIONS(2432), + [anon_sym_GT_GT] = ACTIONS(2432), + [anon_sym_GT_GT_GT] = ACTIONS(2432), + [anon_sym_LT_LT] = ACTIONS(2432), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_CARET] = ACTIONS(2432), + [anon_sym_PIPE] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_SLASH] = ACTIONS(2430), + [anon_sym_PERCENT] = ACTIONS(2432), + [anon_sym_STAR_STAR] = ACTIONS(2432), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_LT_EQ] = ACTIONS(2432), + [anon_sym_EQ_EQ] = ACTIONS(2432), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), + [anon_sym_BANG_EQ] = ACTIONS(2432), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), + [anon_sym_GT_EQ] = ACTIONS(2432), + [anon_sym_QMARK_QMARK] = ACTIONS(2432), + [anon_sym_instanceof] = ACTIONS(2432), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_void] = ACTIONS(2430), + [anon_sym_delete] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_number] = ACTIONS(2430), + [sym_private_property_identifier] = ACTIONS(2430), + [sym_this] = ACTIONS(2430), + [sym_super] = ACTIONS(2430), + [sym_true] = ACTIONS(2430), + [sym_false] = ACTIONS(2430), + [sym_null] = ACTIONS(2430), + [sym_undefined] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2430), + [anon_sym_readonly] = ACTIONS(2430), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_declare] = ACTIONS(2430), + [anon_sym_public] = ACTIONS(2430), + [anon_sym_private] = ACTIONS(2430), + [anon_sym_protected] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_any] = ACTIONS(2430), + [anon_sym_number] = ACTIONS(2430), + [anon_sym_boolean] = ACTIONS(2430), + [anon_sym_string] = ACTIONS(2430), + [anon_sym_symbol] = ACTIONS(2430), + [anon_sym_object] = ACTIONS(2430), + [anon_sym_property] = ACTIONS(2430), + [anon_sym_signal] = ACTIONS(2430), + [anon_sym_on] = ACTIONS(2430), + [anon_sym_required] = ACTIONS(2430), + [anon_sym_component] = ACTIONS(2430), + [anon_sym_abstract] = ACTIONS(2430), + [anon_sym_satisfies] = ACTIONS(2432), + [anon_sym_interface] = ACTIONS(2430), + [anon_sym_enum] = ACTIONS(2430), + [sym__automatic_semicolon] = ACTIONS(2486), + [sym__ternary_qmark] = ACTIONS(2436), + [sym_html_comment] = ACTIONS(5), + }, + [380] = { + [sym_comment] = STATE(380), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_default] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_typeof] = ACTIONS(2410), + [anon_sym_import] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2410), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_debugger] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_throw] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_case] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LTtemplate_GT] = ACTIONS(2410), + [anon_sym_GT] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_class] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_QMARK_DOT] = ACTIONS(2410), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_PIPE_PIPE] = ACTIONS(2410), + [anon_sym_GT_GT] = ACTIONS(2410), + [anon_sym_GT_GT_GT] = ACTIONS(2410), + [anon_sym_LT_LT] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_PERCENT] = ACTIONS(2410), + [anon_sym_STAR_STAR] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_LT_EQ] = ACTIONS(2410), + [anon_sym_EQ_EQ] = ACTIONS(2410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2410), + [anon_sym_BANG_EQ] = ACTIONS(2410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2410), + [anon_sym_GT_EQ] = ACTIONS(2410), + [anon_sym_QMARK_QMARK] = ACTIONS(2410), + [anon_sym_instanceof] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2410), + [anon_sym_delete] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_private_property_identifier] = ACTIONS(2410), + [sym_this] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_true] = ACTIONS(2410), + [sym_false] = ACTIONS(2410), + [sym_null] = ACTIONS(2410), + [sym_undefined] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_abstract] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(2410), + [anon_sym_interface] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2412), + [sym__ternary_qmark] = ACTIONS(2412), + [sym_html_comment] = ACTIONS(5), + }, + [381] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(381), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(4890), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(34), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_in] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(1587), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [382] = { + [sym_comment] = STATE(382), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_COMMA] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2396), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_GT] = ACTIONS(2396), + [anon_sym_DOT] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_QMARK_DOT] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_GT_GT_GT] = ACTIONS(2396), + [anon_sym_LT_LT] = ACTIONS(2396), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_CARET] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_PERCENT] = ACTIONS(2396), + [anon_sym_STAR_STAR] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_LT_EQ] = ACTIONS(2396), + [anon_sym_EQ_EQ] = ACTIONS(2396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2396), + [anon_sym_BANG_EQ] = ACTIONS(2396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2396), + [anon_sym_GT_EQ] = ACTIONS(2396), + [anon_sym_QMARK_QMARK] = ACTIONS(2396), + [anon_sym_instanceof] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_satisfies] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2398), + [sym__ternary_qmark] = ACTIONS(2398), + [sym_html_comment] = ACTIONS(5), + }, + [383] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3245), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(383), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [anon_sym_extends] = ACTIONS(2215), + [sym_html_comment] = ACTIONS(5), + }, + [384] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3713), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(384), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [anon_sym_extends] = ACTIONS(2215), + [sym_html_comment] = ACTIONS(5), + }, + [385] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3316), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(385), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [anon_sym_extends] = ACTIONS(2215), + [sym_html_comment] = ACTIONS(5), + }, + [386] = { + [sym_comment] = STATE(386), + [sym_identifier] = ACTIONS(2384), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_as] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_typeof] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2384), + [anon_sym_from] = ACTIONS(2384), + [anon_sym_with] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2384), + [anon_sym_await] = ACTIONS(2384), + [anon_sym_in] = ACTIONS(2384), + [anon_sym_of] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_debugger] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_case] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_LTtemplate_GT] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DQUOTE] = ACTIONS(2384), + [anon_sym_SQUOTE] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_QMARK_DOT] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_using] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_GT_GT_GT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_STAR_STAR] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_QMARK_QMARK] = ACTIONS(2384), + [anon_sym_instanceof] = ACTIONS(2384), + [anon_sym_TILDE] = ACTIONS(2384), + [anon_sym_void] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2384), + [sym_number] = ACTIONS(2384), + [sym_private_property_identifier] = ACTIONS(2384), + [sym_this] = ACTIONS(2384), + [sym_super] = ACTIONS(2384), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_undefined] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_readonly] = ACTIONS(2384), + [anon_sym_get] = ACTIONS(2384), + [anon_sym_set] = ACTIONS(2384), + [anon_sym_declare] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_protected] = ACTIONS(2384), + [anon_sym_override] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_any] = ACTIONS(2384), + [anon_sym_number] = ACTIONS(2384), + [anon_sym_boolean] = ACTIONS(2384), + [anon_sym_string] = ACTIONS(2384), + [anon_sym_symbol] = ACTIONS(2384), + [anon_sym_object] = ACTIONS(2384), + [anon_sym_property] = ACTIONS(2384), + [anon_sym_signal] = ACTIONS(2384), + [anon_sym_on] = ACTIONS(2384), + [anon_sym_required] = ACTIONS(2384), + [anon_sym_component] = ACTIONS(2384), + [anon_sym_abstract] = ACTIONS(2384), + [anon_sym_satisfies] = ACTIONS(2384), + [anon_sym_interface] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [sym__automatic_semicolon] = ACTIONS(2386), + [sym__ternary_qmark] = ACTIONS(2386), + [sym_html_comment] = ACTIONS(5), + }, + [387] = { + [sym_comment] = STATE(387), + [sym_identifier] = ACTIONS(2380), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_as] = ACTIONS(2380), + [anon_sym_namespace] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2380), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_typeof] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2380), + [anon_sym_from] = ACTIONS(2380), + [anon_sym_with] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_switch] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_await] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_of] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_debugger] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_case] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_LTtemplate_GT] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2380), + [anon_sym_DOT] = ACTIONS(2380), + [anon_sym_DQUOTE] = ACTIONS(2380), + [anon_sym_SQUOTE] = ACTIONS(2380), + [anon_sym_class] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_QMARK_DOT] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_using] = ACTIONS(2380), + [anon_sym_AMP_AMP] = ACTIONS(2380), + [anon_sym_PIPE_PIPE] = ACTIONS(2380), + [anon_sym_GT_GT] = ACTIONS(2380), + [anon_sym_GT_GT_GT] = ACTIONS(2380), + [anon_sym_LT_LT] = ACTIONS(2380), + [anon_sym_AMP] = ACTIONS(2380), + [anon_sym_CARET] = ACTIONS(2380), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_PERCENT] = ACTIONS(2380), + [anon_sym_STAR_STAR] = ACTIONS(2380), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_QMARK_QMARK] = ACTIONS(2380), + [anon_sym_instanceof] = ACTIONS(2380), + [anon_sym_TILDE] = ACTIONS(2380), + [anon_sym_void] = ACTIONS(2380), + [anon_sym_delete] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2380), + [anon_sym_DASH_DASH] = ACTIONS(2380), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2380), + [sym_number] = ACTIONS(2380), + [sym_private_property_identifier] = ACTIONS(2380), + [sym_this] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_true] = ACTIONS(2380), + [sym_false] = ACTIONS(2380), + [sym_null] = ACTIONS(2380), + [sym_undefined] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_readonly] = ACTIONS(2380), + [anon_sym_get] = ACTIONS(2380), + [anon_sym_set] = ACTIONS(2380), + [anon_sym_declare] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_protected] = ACTIONS(2380), + [anon_sym_override] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_any] = ACTIONS(2380), + [anon_sym_number] = ACTIONS(2380), + [anon_sym_boolean] = ACTIONS(2380), + [anon_sym_string] = ACTIONS(2380), + [anon_sym_symbol] = ACTIONS(2380), + [anon_sym_object] = ACTIONS(2380), + [anon_sym_property] = ACTIONS(2380), + [anon_sym_signal] = ACTIONS(2380), + [anon_sym_on] = ACTIONS(2380), + [anon_sym_required] = ACTIONS(2380), + [anon_sym_component] = ACTIONS(2380), + [anon_sym_abstract] = ACTIONS(2380), + [anon_sym_satisfies] = ACTIONS(2380), + [anon_sym_interface] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [sym__automatic_semicolon] = ACTIONS(2382), + [sym__ternary_qmark] = ACTIONS(2382), + [sym_html_comment] = ACTIONS(5), + }, + [388] = { + [sym_comment] = STATE(388), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_as] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_typeof] = ACTIONS(2440), + [anon_sym_import] = ACTIONS(2440), + [anon_sym_from] = ACTIONS(2440), + [anon_sym_with] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_await] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2442), + [anon_sym_of] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_debugger] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_yield] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_LTtemplate_GT] = ACTIONS(2440), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_DOT] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_SQUOTE] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_QMARK_DOT] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_PIPE_PIPE] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2442), + [anon_sym_GT_GT_GT] = ACTIONS(2442), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2442), + [anon_sym_STAR_STAR] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2442), + [anon_sym_BANG_EQ] = ACTIONS(2442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2442), + [anon_sym_GT_EQ] = ACTIONS(2442), + [anon_sym_QMARK_QMARK] = ACTIONS(2442), + [anon_sym_instanceof] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2440), + [anon_sym_void] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2440), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2440), + [sym_number] = ACTIONS(2440), + [sym_private_property_identifier] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [sym_super] = ACTIONS(2440), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [sym_null] = ACTIONS(2440), + [sym_undefined] = ACTIONS(2440), + [anon_sym_AT] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), + [anon_sym_property] = ACTIONS(2440), + [anon_sym_signal] = ACTIONS(2440), + [anon_sym_on] = ACTIONS(2440), + [anon_sym_required] = ACTIONS(2440), + [anon_sym_component] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_satisfies] = ACTIONS(2442), + [anon_sym_interface] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [sym__automatic_semicolon] = ACTIONS(2512), + [sym__ternary_qmark] = ACTIONS(2446), + [sym_html_comment] = ACTIONS(5), + }, + [389] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3242), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_spread_element] = STATE(7290), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(389), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7291), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2516), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [390] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3260), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_spread_element] = STATE(7017), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(390), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7018), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2520), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [391] = { + [sym_comment] = STATE(391), + [sym_identifier] = ACTIONS(2448), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2448), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_as] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_COMMA] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_typeof] = ACTIONS(2448), + [anon_sym_import] = ACTIONS(2448), + [anon_sym_from] = ACTIONS(2448), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_switch] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_await] = ACTIONS(2448), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_of] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_debugger] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_case] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LTtemplate_GT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2450), + [anon_sym_DOT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_class] = ACTIONS(2448), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_QMARK_DOT] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2448), + [anon_sym_using] = ACTIONS(2448), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2450), + [anon_sym_GT_GT_GT] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_SLASH] = ACTIONS(2448), + [anon_sym_PERCENT] = ACTIONS(2450), + [anon_sym_STAR_STAR] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_QMARK_QMARK] = ACTIONS(2450), + [anon_sym_instanceof] = ACTIONS(2450), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_void] = ACTIONS(2448), + [anon_sym_delete] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2448), + [sym_number] = ACTIONS(2448), + [sym_private_property_identifier] = ACTIONS(2448), + [sym_this] = ACTIONS(2448), + [sym_super] = ACTIONS(2448), + [sym_true] = ACTIONS(2448), + [sym_false] = ACTIONS(2448), + [sym_null] = ACTIONS(2448), + [sym_undefined] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_readonly] = ACTIONS(2448), + [anon_sym_get] = ACTIONS(2448), + [anon_sym_set] = ACTIONS(2448), + [anon_sym_declare] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_protected] = ACTIONS(2448), + [anon_sym_override] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_any] = ACTIONS(2448), + [anon_sym_number] = ACTIONS(2448), + [anon_sym_boolean] = ACTIONS(2448), + [anon_sym_string] = ACTIONS(2448), + [anon_sym_symbol] = ACTIONS(2448), + [anon_sym_object] = ACTIONS(2448), + [anon_sym_property] = ACTIONS(2448), + [anon_sym_signal] = ACTIONS(2448), + [anon_sym_on] = ACTIONS(2448), + [anon_sym_required] = ACTIONS(2448), + [anon_sym_component] = ACTIONS(2448), + [anon_sym_abstract] = ACTIONS(2448), + [anon_sym_satisfies] = ACTIONS(2450), + [anon_sym_interface] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [sym__automatic_semicolon] = ACTIONS(2522), + [sym__ternary_qmark] = ACTIONS(2454), + [sym_html_comment] = ACTIONS(5), + }, + [392] = { + [sym_statement_block] = STATE(483), + [sym_comment] = STATE(392), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2524), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [393] = { + [sym_comment] = STATE(393), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_as] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_COMMA] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_in] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_case] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_GT] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_QMARK_DOT] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2356), + [anon_sym_GT_GT] = ACTIONS(2356), + [anon_sym_GT_GT_GT] = ACTIONS(2356), + [anon_sym_LT_LT] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_CARET] = ACTIONS(2356), + [anon_sym_PIPE] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_PERCENT] = ACTIONS(2356), + [anon_sym_STAR_STAR] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_LT_EQ] = ACTIONS(2356), + [anon_sym_EQ_EQ] = ACTIONS(2356), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2356), + [anon_sym_BANG_EQ] = ACTIONS(2356), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2356), + [anon_sym_GT_EQ] = ACTIONS(2356), + [anon_sym_QMARK_QMARK] = ACTIONS(2356), + [anon_sym_instanceof] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_satisfies] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym__automatic_semicolon] = ACTIONS(2358), + [sym__ternary_qmark] = ACTIONS(2358), + [sym_html_comment] = ACTIONS(5), + }, + [394] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_spread_element] = STATE(6857), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(394), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2526), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [395] = { + [sym_comment] = STATE(395), + [sym_identifier] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2422), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_as] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_COMMA] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_typeof] = ACTIONS(2422), + [anon_sym_import] = ACTIONS(2422), + [anon_sym_from] = ACTIONS(2422), + [anon_sym_with] = ACTIONS(2422), + [anon_sym_var] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_if] = ACTIONS(2422), + [anon_sym_switch] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_await] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_of] = ACTIONS(2422), + [anon_sym_while] = ACTIONS(2422), + [anon_sym_do] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2422), + [anon_sym_continue] = ACTIONS(2422), + [anon_sym_debugger] = ACTIONS(2422), + [anon_sym_return] = ACTIONS(2422), + [anon_sym_throw] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_case] = ACTIONS(2422), + [anon_sym_yield] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_LTtemplate_GT] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2424), + [anon_sym_DOT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_class] = ACTIONS(2422), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2422), + [anon_sym_QMARK_DOT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_using] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(2424), + [anon_sym_GT_GT] = ACTIONS(2424), + [anon_sym_GT_GT_GT] = ACTIONS(2424), + [anon_sym_LT_LT] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_CARET] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_SLASH] = ACTIONS(2422), + [anon_sym_PERCENT] = ACTIONS(2424), + [anon_sym_STAR_STAR] = ACTIONS(2424), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_LT_EQ] = ACTIONS(2424), + [anon_sym_EQ_EQ] = ACTIONS(2424), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2424), + [anon_sym_BANG_EQ] = ACTIONS(2424), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2424), + [anon_sym_GT_EQ] = ACTIONS(2424), + [anon_sym_QMARK_QMARK] = ACTIONS(2424), + [anon_sym_instanceof] = ACTIONS(2424), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_void] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2422), + [sym_number] = ACTIONS(2422), + [sym_private_property_identifier] = ACTIONS(2422), + [sym_this] = ACTIONS(2422), + [sym_super] = ACTIONS(2422), + [sym_true] = ACTIONS(2422), + [sym_false] = ACTIONS(2422), + [sym_null] = ACTIONS(2422), + [sym_undefined] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_property] = ACTIONS(2422), + [anon_sym_signal] = ACTIONS(2422), + [anon_sym_on] = ACTIONS(2422), + [anon_sym_required] = ACTIONS(2422), + [anon_sym_component] = ACTIONS(2422), + [anon_sym_abstract] = ACTIONS(2422), + [anon_sym_satisfies] = ACTIONS(2424), + [anon_sym_interface] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [sym__automatic_semicolon] = ACTIONS(2528), + [sym__ternary_qmark] = ACTIONS(2428), + [sym_html_comment] = ACTIONS(5), + }, + [396] = { + [sym_comment] = STATE(396), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_STAR] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_as] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_COMMA] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_from] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_in] = ACTIONS(2328), + [anon_sym_of] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_LTtemplate_GT] = ACTIONS(2328), + [anon_sym_GT] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2328), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_QMARK_DOT] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_using] = ACTIONS(2328), + [anon_sym_AMP_AMP] = ACTIONS(2328), + [anon_sym_PIPE_PIPE] = ACTIONS(2328), + [anon_sym_GT_GT] = ACTIONS(2328), + [anon_sym_GT_GT_GT] = ACTIONS(2328), + [anon_sym_LT_LT] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2328), + [anon_sym_CARET] = ACTIONS(2328), + [anon_sym_PIPE] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_PERCENT] = ACTIONS(2328), + [anon_sym_STAR_STAR] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_LT_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2328), + [anon_sym_GT_EQ] = ACTIONS(2328), + [anon_sym_QMARK_QMARK] = ACTIONS(2328), + [anon_sym_instanceof] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2328), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2328), + [sym_number] = ACTIONS(2328), + [sym_private_property_identifier] = ACTIONS(2328), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_property] = ACTIONS(2328), + [anon_sym_signal] = ACTIONS(2328), + [anon_sym_on] = ACTIONS(2328), + [anon_sym_required] = ACTIONS(2328), + [anon_sym_component] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_satisfies] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym__automatic_semicolon] = ACTIONS(2330), + [sym__ternary_qmark] = ACTIONS(2330), + [sym_html_comment] = ACTIONS(5), + }, + [397] = { + [sym_comment] = STATE(397), + [sym_identifier] = ACTIONS(2402), + [anon_sym_export] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_type] = ACTIONS(2402), + [anon_sym_as] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_COMMA] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2402), + [anon_sym_import] = ACTIONS(2402), + [anon_sym_from] = ACTIONS(2402), + [anon_sym_with] = ACTIONS(2402), + [anon_sym_var] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_switch] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_await] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2404), + [anon_sym_of] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_debugger] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_throw] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_case] = ACTIONS(2402), + [anon_sym_yield] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LTtemplate_GT] = ACTIONS(2402), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_DOT] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_class] = ACTIONS(2402), + [anon_sym_async] = ACTIONS(2402), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_QMARK_DOT] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2402), + [anon_sym_using] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_GT_GT_GT] = ACTIONS(2404), + [anon_sym_LT_LT] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_SLASH] = ACTIONS(2402), + [anon_sym_PERCENT] = ACTIONS(2404), + [anon_sym_STAR_STAR] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_LT_EQ] = ACTIONS(2404), + [anon_sym_EQ_EQ] = ACTIONS(2404), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2404), + [anon_sym_BANG_EQ] = ACTIONS(2404), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2404), + [anon_sym_GT_EQ] = ACTIONS(2404), + [anon_sym_QMARK_QMARK] = ACTIONS(2404), + [anon_sym_instanceof] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_void] = ACTIONS(2402), + [anon_sym_delete] = ACTIONS(2402), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2402), + [sym_number] = ACTIONS(2402), + [sym_private_property_identifier] = ACTIONS(2402), + [sym_this] = ACTIONS(2402), + [sym_super] = ACTIONS(2402), + [sym_true] = ACTIONS(2402), + [sym_false] = ACTIONS(2402), + [sym_null] = ACTIONS(2402), + [sym_undefined] = ACTIONS(2402), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_readonly] = ACTIONS(2402), + [anon_sym_get] = ACTIONS(2402), + [anon_sym_set] = ACTIONS(2402), + [anon_sym_declare] = ACTIONS(2402), + [anon_sym_public] = ACTIONS(2402), + [anon_sym_private] = ACTIONS(2402), + [anon_sym_protected] = ACTIONS(2402), + [anon_sym_override] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_any] = ACTIONS(2402), + [anon_sym_number] = ACTIONS(2402), + [anon_sym_boolean] = ACTIONS(2402), + [anon_sym_string] = ACTIONS(2402), + [anon_sym_symbol] = ACTIONS(2402), + [anon_sym_object] = ACTIONS(2402), + [anon_sym_property] = ACTIONS(2402), + [anon_sym_signal] = ACTIONS(2402), + [anon_sym_on] = ACTIONS(2402), + [anon_sym_required] = ACTIONS(2402), + [anon_sym_component] = ACTIONS(2402), + [anon_sym_abstract] = ACTIONS(2402), + [anon_sym_satisfies] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [sym__automatic_semicolon] = ACTIONS(2530), + [sym__ternary_qmark] = ACTIONS(2408), + [sym_html_comment] = ACTIONS(5), + }, + [398] = { + [sym_comment] = STATE(398), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_typeof] = ACTIONS(2332), + [anon_sym_import] = ACTIONS(2332), + [anon_sym_from] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_switch] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_await] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2334), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_throw] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_case] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_LTtemplate_GT] = ACTIONS(2332), + [anon_sym_GT] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2332), + [anon_sym_class] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_QMARK_DOT] = ACTIONS(2334), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_using] = ACTIONS(2332), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2334), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_void] = ACTIONS(2332), + [anon_sym_delete] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2332), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2332), + [sym_number] = ACTIONS(2332), + [sym_private_property_identifier] = ACTIONS(2332), + [sym_this] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_undefined] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_property] = ACTIONS(2332), + [anon_sym_signal] = ACTIONS(2332), + [anon_sym_on] = ACTIONS(2332), + [anon_sym_required] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_satisfies] = ACTIONS(2334), + [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(2532), + [sym__ternary_qmark] = ACTIONS(2338), + [sym_html_comment] = ACTIONS(5), + }, + [399] = { + [sym_comment] = STATE(399), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_QMARK_DOT] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_GT_GT] = ACTIONS(2418), + [anon_sym_GT_GT_GT] = ACTIONS(2418), + [anon_sym_LT_LT] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_PERCENT] = ACTIONS(2418), + [anon_sym_STAR_STAR] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2418), + [anon_sym_QMARK_QMARK] = ACTIONS(2418), + [anon_sym_instanceof] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_satisfies] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2420), + [sym__ternary_qmark] = ACTIONS(2420), + [sym_html_comment] = ACTIONS(5), + }, + [400] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_spread_element] = STATE(7044), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(400), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7157), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2534), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [401] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3238), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_spread_element] = STATE(6797), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(401), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2536), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2536), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(2536), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [402] = { + [sym_comment] = STATE(402), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_as] = ACTIONS(2472), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_COMMA] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2472), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_QMARK_DOT] = ACTIONS(2472), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2472), + [anon_sym_PIPE_PIPE] = ACTIONS(2472), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2472), + [anon_sym_LT_LT] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2472), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_PERCENT] = ACTIONS(2472), + [anon_sym_STAR_STAR] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_LT_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2472), + [anon_sym_GT_EQ] = ACTIONS(2472), + [anon_sym_QMARK_QMARK] = ACTIONS(2472), + [anon_sym_instanceof] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_satisfies] = ACTIONS(2472), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2538), + [sym__ternary_qmark] = ACTIONS(2476), + [sym_html_comment] = ACTIONS(5), + }, + [403] = { + [sym_comment] = STATE(403), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_default] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_as] = ACTIONS(2414), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_COMMA] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_typeof] = ACTIONS(2414), + [anon_sym_import] = ACTIONS(2414), + [anon_sym_from] = ACTIONS(2414), + [anon_sym_with] = ACTIONS(2414), + [anon_sym_var] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_switch] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_await] = ACTIONS(2414), + [anon_sym_in] = ACTIONS(2414), + [anon_sym_of] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_debugger] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_throw] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_case] = ACTIONS(2414), + [anon_sym_yield] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_LTtemplate_GT] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2414), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_class] = ACTIONS(2414), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2414), + [anon_sym_QMARK_DOT] = ACTIONS(2414), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_using] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2414), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2414), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_STAR_STAR] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2414), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2414), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_instanceof] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_void] = ACTIONS(2414), + [anon_sym_delete] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2414), + [sym_number] = ACTIONS(2414), + [sym_private_property_identifier] = ACTIONS(2414), + [sym_this] = ACTIONS(2414), + [sym_super] = ACTIONS(2414), + [sym_true] = ACTIONS(2414), + [sym_false] = ACTIONS(2414), + [sym_null] = ACTIONS(2414), + [sym_undefined] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_property] = ACTIONS(2414), + [anon_sym_signal] = ACTIONS(2414), + [anon_sym_on] = ACTIONS(2414), + [anon_sym_required] = ACTIONS(2414), + [anon_sym_component] = ACTIONS(2414), + [anon_sym_abstract] = ACTIONS(2414), + [anon_sym_satisfies] = ACTIONS(2414), + [anon_sym_interface] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [sym__automatic_semicolon] = ACTIONS(2416), + [sym__ternary_qmark] = ACTIONS(2416), + [sym_html_comment] = ACTIONS(5), + }, + [404] = { + [sym_comment] = STATE(404), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_from] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_case] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_LTtemplate_GT] = ACTIONS(2456), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_QMARK_DOT] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_instanceof] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_property] = ACTIONS(2456), + [anon_sym_signal] = ACTIONS(2456), + [anon_sym_on] = ACTIONS(2456), + [anon_sym_required] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_satisfies] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2460), + [sym_html_comment] = ACTIONS(5), + }, + [405] = { + [sym_comment] = STATE(405), + [sym_identifier] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_as] = ACTIONS(2480), + [anon_sym_namespace] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_COMMA] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_import] = ACTIONS(2478), + [anon_sym_from] = ACTIONS(2478), + [anon_sym_with] = ACTIONS(2478), + [anon_sym_var] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_await] = ACTIONS(2478), + [anon_sym_in] = ACTIONS(2480), + [anon_sym_of] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_debugger] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_throw] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_case] = ACTIONS(2478), + [anon_sym_yield] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_LTtemplate_GT] = ACTIONS(2478), + [anon_sym_GT] = ACTIONS(2480), + [anon_sym_DOT] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_class] = ACTIONS(2478), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_QMARK_DOT] = ACTIONS(2480), + [anon_sym_new] = ACTIONS(2478), + [anon_sym_using] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2480), + [anon_sym_PIPE_PIPE] = ACTIONS(2480), + [anon_sym_GT_GT] = ACTIONS(2480), + [anon_sym_GT_GT_GT] = ACTIONS(2480), + [anon_sym_LT_LT] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2480), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_SLASH] = ACTIONS(2478), + [anon_sym_PERCENT] = ACTIONS(2480), + [anon_sym_STAR_STAR] = ACTIONS(2480), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT_EQ] = ACTIONS(2480), + [anon_sym_EQ_EQ] = ACTIONS(2480), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), + [anon_sym_BANG_EQ] = ACTIONS(2480), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), + [anon_sym_GT_EQ] = ACTIONS(2480), + [anon_sym_QMARK_QMARK] = ACTIONS(2480), + [anon_sym_instanceof] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2478), + [sym_number] = ACTIONS(2478), + [sym_private_property_identifier] = ACTIONS(2478), + [sym_this] = ACTIONS(2478), + [sym_super] = ACTIONS(2478), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [sym_null] = ACTIONS(2478), + [sym_undefined] = ACTIONS(2478), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_override] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_any] = ACTIONS(2478), + [anon_sym_number] = ACTIONS(2478), + [anon_sym_boolean] = ACTIONS(2478), + [anon_sym_string] = ACTIONS(2478), + [anon_sym_symbol] = ACTIONS(2478), + [anon_sym_object] = ACTIONS(2478), + [anon_sym_property] = ACTIONS(2478), + [anon_sym_signal] = ACTIONS(2478), + [anon_sym_on] = ACTIONS(2478), + [anon_sym_required] = ACTIONS(2478), + [anon_sym_component] = ACTIONS(2478), + [anon_sym_abstract] = ACTIONS(2478), + [anon_sym_satisfies] = ACTIONS(2480), + [anon_sym_interface] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [sym__automatic_semicolon] = ACTIONS(2540), + [sym__ternary_qmark] = ACTIONS(2484), + [sym_html_comment] = ACTIONS(5), + }, + [406] = { + [sym_comment] = STATE(406), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2342), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_case] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_QMARK_DOT] = ACTIONS(2342), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_instanceof] = ACTIONS(2342), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_satisfies] = ACTIONS(2342), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2542), + [sym__ternary_qmark] = ACTIONS(2346), + [sym_html_comment] = ACTIONS(5), + }, + [407] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3267), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_spread_element] = STATE(7186), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(407), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7185), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2544), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [408] = { + [sym_statement_block] = STATE(483), + [sym_comment] = STATE(408), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2524), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2546), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [409] = { + [sym_statement_block] = STATE(483), + [sym_comment] = STATE(409), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2524), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2548), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [410] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(410), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(2146), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6145), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_accessibility_modifier] = STATE(439), + [sym_override_modifier] = STATE(497), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(2081), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(2550), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2552), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1357), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2554), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1404), + [anon_sym_private] = ACTIONS(1404), + [anon_sym_protected] = ACTIONS(1404), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [411] = { + [sym_comment] = STATE(411), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_EQ] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_COMMA] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_in] = ACTIONS(2287), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_GT] = ACTIONS(2287), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_QMARK_DOT] = ACTIONS(2287), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2287), + [anon_sym_PIPE_PIPE] = ACTIONS(2287), + [anon_sym_GT_GT] = ACTIONS(2287), + [anon_sym_GT_GT_GT] = ACTIONS(2287), + [anon_sym_LT_LT] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(2287), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2287), + [anon_sym_STAR_STAR] = ACTIONS(2287), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2287), + [anon_sym_EQ_EQ] = ACTIONS(2287), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2287), + [anon_sym_BANG_EQ] = ACTIONS(2287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2287), + [anon_sym_GT_EQ] = ACTIONS(2287), + [anon_sym_QMARK_QMARK] = ACTIONS(2287), + [anon_sym_instanceof] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_satisfies] = ACTIONS(2287), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(2556), + [sym__ternary_qmark] = ACTIONS(2293), + [sym_html_comment] = ACTIONS(5), + }, + [412] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3623), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(412), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [anon_sym_extends] = ACTIONS(2215), + [sym_html_comment] = ACTIONS(5), + }, + [413] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(413), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [414] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(414), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [415] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3624), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(415), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [anon_sym_extends] = ACTIONS(2215), + [sym_html_comment] = ACTIONS(5), + }, + [416] = { + [sym_comment] = STATE(416), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_STAR] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_COMMA] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_case] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_GT] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_QMARK_DOT] = ACTIONS(2350), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_AMP_AMP] = ACTIONS(2350), + [anon_sym_PIPE_PIPE] = ACTIONS(2350), + [anon_sym_GT_GT] = ACTIONS(2350), + [anon_sym_GT_GT_GT] = ACTIONS(2350), + [anon_sym_LT_LT] = ACTIONS(2350), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_PERCENT] = ACTIONS(2350), + [anon_sym_STAR_STAR] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_LT_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), + [anon_sym_GT_EQ] = ACTIONS(2350), + [anon_sym_QMARK_QMARK] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_satisfies] = ACTIONS(2350), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2558), + [sym__ternary_qmark] = ACTIONS(2354), + [sym_html_comment] = ACTIONS(5), + }, + [417] = { + [sym_comment] = STATE(417), + [sym_identifier] = ACTIONS(2360), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_default] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_as] = ACTIONS(2362), + [anon_sym_namespace] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_typeof] = ACTIONS(2360), + [anon_sym_import] = ACTIONS(2360), + [anon_sym_from] = ACTIONS(2360), + [anon_sym_with] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_switch] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_await] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2362), + [anon_sym_of] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_debugger] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_throw] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_case] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [anon_sym_LTtemplate_GT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_class] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(2362), + [anon_sym_new] = ACTIONS(2360), + [anon_sym_using] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2362), + [anon_sym_GT_GT] = ACTIONS(2362), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_PIPE] = ACTIONS(2362), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_PERCENT] = ACTIONS(2362), + [anon_sym_STAR_STAR] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2362), + [anon_sym_EQ_EQ] = ACTIONS(2362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2362), + [anon_sym_BANG_EQ] = ACTIONS(2362), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2362), + [anon_sym_GT_EQ] = ACTIONS(2362), + [anon_sym_QMARK_QMARK] = ACTIONS(2362), + [anon_sym_instanceof] = ACTIONS(2362), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_void] = ACTIONS(2360), + [anon_sym_delete] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2360), + [sym_number] = ACTIONS(2360), + [sym_private_property_identifier] = ACTIONS(2360), + [sym_this] = ACTIONS(2360), + [sym_super] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_null] = ACTIONS(2360), + [sym_undefined] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_readonly] = ACTIONS(2360), + [anon_sym_get] = ACTIONS(2360), + [anon_sym_set] = ACTIONS(2360), + [anon_sym_declare] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_protected] = ACTIONS(2360), + [anon_sym_override] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_any] = ACTIONS(2360), + [anon_sym_number] = ACTIONS(2360), + [anon_sym_boolean] = ACTIONS(2360), + [anon_sym_string] = ACTIONS(2360), + [anon_sym_symbol] = ACTIONS(2360), + [anon_sym_object] = ACTIONS(2360), + [anon_sym_property] = ACTIONS(2360), + [anon_sym_signal] = ACTIONS(2360), + [anon_sym_on] = ACTIONS(2360), + [anon_sym_required] = ACTIONS(2360), + [anon_sym_component] = ACTIONS(2360), + [anon_sym_abstract] = ACTIONS(2360), + [anon_sym_satisfies] = ACTIONS(2362), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [sym__automatic_semicolon] = ACTIONS(2560), + [sym__ternary_qmark] = ACTIONS(2366), + [sym_html_comment] = ACTIONS(5), + }, + [418] = { + [sym_comment] = STATE(418), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_as] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_COMMA] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_GT] = ACTIONS(2368), + [anon_sym_DOT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_QMARK_DOT] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2368), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_GT_GT_GT] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_PERCENT] = ACTIONS(2368), + [anon_sym_STAR_STAR] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_LT_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2368), + [anon_sym_GT_EQ] = ACTIONS(2368), + [anon_sym_QMARK_QMARK] = ACTIONS(2368), + [anon_sym_instanceof] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(2562), + [sym__ternary_qmark] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [419] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3250), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_spread_element] = STATE(6731), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(419), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(6732), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2564), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [420] = { + [sym_comment] = STATE(420), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_as] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_COMMA] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_in] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_QMARK_DOT] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_GT_GT_GT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_STAR_STAR] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2285), + [anon_sym_BANG_EQ] = ACTIONS(2285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2285), + [anon_sym_QMARK_QMARK] = ACTIONS(2285), + [anon_sym_instanceof] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_satisfies] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(2566), + [sym__ternary_qmark] = ACTIONS(2374), + [sym_html_comment] = ACTIONS(5), + }, + [421] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3177), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_spread_element] = STATE(7123), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(421), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [aux_sym_array_repeat1] = STATE(7122), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2514), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2568), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [422] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(422), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_implements] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [423] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3129), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(423), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [anon_sym_extends] = ACTIONS(2215), + [sym_html_comment] = ACTIONS(5), + }, + [424] = { + [sym_comment] = STATE(424), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(2390), + [anon_sym_default] = ACTIONS(2388), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_as] = ACTIONS(2390), + [anon_sym_namespace] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2388), + [anon_sym_COMMA] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_typeof] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(2388), + [anon_sym_from] = ACTIONS(2388), + [anon_sym_with] = ACTIONS(2388), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_switch] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2388), + [anon_sym_await] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2390), + [anon_sym_of] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_do] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_debugger] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_throw] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2388), + [anon_sym_case] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2388), + [anon_sym_LTtemplate_GT] = ACTIONS(2388), + [anon_sym_GT] = ACTIONS(2390), + [anon_sym_DOT] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2388), + [anon_sym_SQUOTE] = ACTIONS(2388), + [anon_sym_class] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_QMARK_DOT] = ACTIONS(2390), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_using] = ACTIONS(2388), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2390), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2390), + [anon_sym_CARET] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2390), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_STAR_STAR] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_QMARK_QMARK] = ACTIONS(2390), + [anon_sym_instanceof] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_void] = ACTIONS(2388), + [anon_sym_delete] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(2388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2388), + [sym_number] = ACTIONS(2388), + [sym_private_property_identifier] = ACTIONS(2388), + [sym_this] = ACTIONS(2388), + [sym_super] = ACTIONS(2388), + [sym_true] = ACTIONS(2388), + [sym_false] = ACTIONS(2388), + [sym_null] = ACTIONS(2388), + [sym_undefined] = ACTIONS(2388), + [anon_sym_AT] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_readonly] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_declare] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_protected] = ACTIONS(2388), + [anon_sym_override] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_any] = ACTIONS(2388), + [anon_sym_number] = ACTIONS(2388), + [anon_sym_boolean] = ACTIONS(2388), + [anon_sym_string] = ACTIONS(2388), + [anon_sym_symbol] = ACTIONS(2388), + [anon_sym_object] = ACTIONS(2388), + [anon_sym_property] = ACTIONS(2388), + [anon_sym_signal] = ACTIONS(2388), + [anon_sym_on] = ACTIONS(2388), + [anon_sym_required] = ACTIONS(2388), + [anon_sym_component] = ACTIONS(2388), + [anon_sym_abstract] = ACTIONS(2388), + [anon_sym_satisfies] = ACTIONS(2390), + [anon_sym_interface] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [sym__automatic_semicolon] = ACTIONS(2570), + [sym__ternary_qmark] = ACTIONS(2394), + [sym_html_comment] = ACTIONS(5), + }, + [425] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3132), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(425), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [anon_sym_extends] = ACTIONS(2215), + [sym_html_comment] = ACTIONS(5), + }, + [426] = { + [sym_comment] = STATE(426), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_as] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_COMMA] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_GT] = ACTIONS(2368), + [anon_sym_DOT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_QMARK_DOT] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2368), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_GT_GT_GT] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_PERCENT] = ACTIONS(2368), + [anon_sym_STAR_STAR] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_LT_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2368), + [anon_sym_GT_EQ] = ACTIONS(2368), + [anon_sym_QMARK_QMARK] = ACTIONS(2368), + [anon_sym_instanceof] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(2370), + [sym__ternary_qmark] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [427] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7663), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(427), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6946), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [428] = { + [sym_import] = STATE(5160), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3767), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(428), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym__type_query_member_expression] = STATE(4500), + [sym__type_query_subscript_expression] = STATE(4501), + [sym__type_query_call_expression] = STATE(4564), + [sym__type_query_instantiation_expression] = STATE(4597), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2572), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), + }, + [429] = { + [sym_comment] = STATE(429), + [sym_identifier] = ACTIONS(2574), + [anon_sym_export] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(2574), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(2574), + [anon_sym_import] = ACTIONS(2574), + [anon_sym_from] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_await] = ACTIONS(2574), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2574), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(2574), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_LTtemplate_GT] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_class] = ACTIONS(2574), + [anon_sym_async] = ACTIONS(2574), + [anon_sym_function] = ACTIONS(2574), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2574), + [anon_sym_using] = ACTIONS(2574), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2574), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(2574), + [anon_sym_DASH] = ACTIONS(2574), + [anon_sym_SLASH] = ACTIONS(2574), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2574), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(2574), + [anon_sym_void] = ACTIONS(2574), + [anon_sym_delete] = ACTIONS(2574), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2574), + [sym_number] = ACTIONS(2574), + [sym_private_property_identifier] = ACTIONS(2574), + [sym_this] = ACTIONS(2574), + [sym_super] = ACTIONS(2574), + [sym_true] = ACTIONS(2574), + [sym_false] = ACTIONS(2574), + [sym_null] = ACTIONS(2574), + [sym_undefined] = ACTIONS(2574), + [anon_sym_AT] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_readonly] = ACTIONS(2574), + [anon_sym_get] = ACTIONS(2574), + [anon_sym_set] = ACTIONS(2574), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(2574), + [anon_sym_public] = ACTIONS(2574), + [anon_sym_private] = ACTIONS(2574), + [anon_sym_protected] = ACTIONS(2574), + [anon_sym_override] = ACTIONS(2574), + [anon_sym_module] = ACTIONS(2574), + [anon_sym_any] = ACTIONS(2574), + [anon_sym_number] = ACTIONS(2574), + [anon_sym_boolean] = ACTIONS(2574), + [anon_sym_string] = ACTIONS(2574), + [anon_sym_symbol] = ACTIONS(2574), + [anon_sym_object] = ACTIONS(2574), + [anon_sym_property] = ACTIONS(2574), + [anon_sym_signal] = ACTIONS(2574), + [anon_sym_on] = ACTIONS(2574), + [anon_sym_required] = ACTIONS(2574), + [anon_sym_component] = ACTIONS(2574), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [430] = { + [sym_import] = STATE(5160), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3767), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(430), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym__type_query_member_expression] = STATE(4500), + [sym__type_query_subscript_expression] = STATE(4501), + [sym__type_query_call_expression] = STATE(4564), + [sym__type_query_instantiation_expression] = STATE(4597), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2576), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), + }, + [431] = { + [sym_import] = STATE(5042), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(431), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym__type_query_member_expression] = STATE(4571), + [sym__type_query_subscript_expression] = STATE(4572), + [sym__type_query_call_expression] = STATE(4767), + [sym__type_query_instantiation_expression] = STATE(4920), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2578), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [432] = { + [sym_import] = STATE(5031), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3129), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(432), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym__type_query_member_expression] = STATE(4500), + [sym__type_query_subscript_expression] = STATE(4501), + [sym__type_query_call_expression] = STATE(4564), + [sym__type_query_instantiation_expression] = STATE(4597), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2580), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), + }, + [433] = { + [sym_comment] = STATE(433), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_in] = ACTIONS(2376), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2376), + [anon_sym_DOT] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_QMARK_DOT] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_GT_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_AMP] = ACTIONS(2376), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_PIPE] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_PERCENT] = ACTIONS(2376), + [anon_sym_STAR_STAR] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_QMARK_QMARK] = ACTIONS(2376), + [anon_sym_instanceof] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_satisfies] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(2378), + [sym__ternary_qmark] = ACTIONS(2378), + [sym_html_comment] = ACTIONS(5), + }, + [434] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(534), + [sym_empty_statement] = STATE(534), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7445), + [sym_string] = STATE(3558), + [sym_comment] = STATE(434), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), + }, + [435] = { + [sym_comment] = STATE(435), + [sym_identifier] = ACTIONS(2574), + [anon_sym_export] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(2574), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_typeof] = ACTIONS(2574), + [anon_sym_import] = ACTIONS(2574), + [anon_sym_from] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2574), + [anon_sym_RPAREN] = ACTIONS(34), + [anon_sym_await] = ACTIONS(2574), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2574), + [anon_sym_COLON] = ACTIONS(34), + [anon_sym_yield] = ACTIONS(2574), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_LTtemplate_GT] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_class] = ACTIONS(2574), + [anon_sym_async] = ACTIONS(2574), + [anon_sym_function] = ACTIONS(2574), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2574), + [anon_sym_using] = ACTIONS(2574), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2574), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(2574), + [anon_sym_DASH] = ACTIONS(2574), + [anon_sym_SLASH] = ACTIONS(2574), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2574), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(2574), + [anon_sym_void] = ACTIONS(2574), + [anon_sym_delete] = ACTIONS(2574), + [anon_sym_PLUS_PLUS] = ACTIONS(2574), + [anon_sym_DASH_DASH] = ACTIONS(2574), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2574), + [sym_number] = ACTIONS(2574), + [sym_private_property_identifier] = ACTIONS(2574), + [sym_this] = ACTIONS(2574), + [sym_super] = ACTIONS(2574), + [sym_true] = ACTIONS(2574), + [sym_false] = ACTIONS(2574), + [sym_null] = ACTIONS(2574), + [sym_undefined] = ACTIONS(2574), + [anon_sym_AT] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_readonly] = ACTIONS(2574), + [anon_sym_get] = ACTIONS(2574), + [anon_sym_set] = ACTIONS(2574), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(2574), + [anon_sym_public] = ACTIONS(2574), + [anon_sym_private] = ACTIONS(2574), + [anon_sym_protected] = ACTIONS(2574), + [anon_sym_override] = ACTIONS(2574), + [anon_sym_module] = ACTIONS(2574), + [anon_sym_any] = ACTIONS(2574), + [anon_sym_number] = ACTIONS(2574), + [anon_sym_boolean] = ACTIONS(2574), + [anon_sym_string] = ACTIONS(2574), + [anon_sym_symbol] = ACTIONS(2574), + [anon_sym_object] = ACTIONS(2574), + [anon_sym_property] = ACTIONS(2574), + [anon_sym_signal] = ACTIONS(2574), + [anon_sym_on] = ACTIONS(2574), + [anon_sym_required] = ACTIONS(2574), + [anon_sym_component] = ACTIONS(2574), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [436] = { + [sym_import] = STATE(5160), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3713), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(436), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym__type_query_member_expression] = STATE(4500), + [sym__type_query_subscript_expression] = STATE(4501), + [sym__type_query_call_expression] = STATE(4564), + [sym__type_query_instantiation_expression] = STATE(4597), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2582), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), + }, + [437] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(437), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [438] = { + [sym_comment] = STATE(438), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_QMARK_DOT] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_GT_GT] = ACTIONS(2418), + [anon_sym_GT_GT_GT] = ACTIONS(2418), + [anon_sym_LT_LT] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_PERCENT] = ACTIONS(2418), + [anon_sym_STAR_STAR] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2418), + [anon_sym_QMARK_QMARK] = ACTIONS(2418), + [anon_sym_instanceof] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_satisfies] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2420), + [sym__ternary_qmark] = ACTIONS(2420), + [sym_html_comment] = ACTIONS(5), + }, + [439] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(439), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6082), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_override_modifier] = STATE(493), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2584), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2586), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [440] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(528), + [sym_empty_statement] = STATE(528), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7445), + [sym_string] = STATE(3558), + [sym_comment] = STATE(440), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), + }, + [441] = { + [sym_comment] = STATE(441), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_COMMA] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2396), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_GT] = ACTIONS(2396), + [anon_sym_DOT] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_QMARK_DOT] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_GT_GT_GT] = ACTIONS(2396), + [anon_sym_LT_LT] = ACTIONS(2396), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_CARET] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_PERCENT] = ACTIONS(2396), + [anon_sym_STAR_STAR] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_LT_EQ] = ACTIONS(2396), + [anon_sym_EQ_EQ] = ACTIONS(2396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2396), + [anon_sym_BANG_EQ] = ACTIONS(2396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2396), + [anon_sym_GT_EQ] = ACTIONS(2396), + [anon_sym_QMARK_QMARK] = ACTIONS(2396), + [anon_sym_instanceof] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_satisfies] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2398), + [sym__ternary_qmark] = ACTIONS(2398), + [sym_html_comment] = ACTIONS(5), + }, + [442] = { + [sym_import] = STATE(5124), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(442), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym__type_query_member_expression] = STATE(4500), + [sym__type_query_subscript_expression] = STATE(4501), + [sym__type_query_call_expression] = STATE(4564), + [sym__type_query_instantiation_expression] = STATE(4597), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2588), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [443] = { + [sym_comment] = STATE(443), + [sym_identifier] = ACTIONS(2590), + [anon_sym_export] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(2590), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2590), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_typeof] = ACTIONS(2590), + [anon_sym_import] = ACTIONS(2590), + [anon_sym_from] = ACTIONS(2590), + [anon_sym_let] = ACTIONS(2590), + [anon_sym_BANG] = ACTIONS(2590), + [anon_sym_LPAREN] = ACTIONS(2590), + [anon_sym_RPAREN] = ACTIONS(34), + [anon_sym_await] = ACTIONS(2590), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2590), + [anon_sym_COLON] = ACTIONS(34), + [anon_sym_yield] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_LTtemplate_GT] = ACTIONS(2590), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_class] = ACTIONS(2590), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_function] = ACTIONS(2590), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_using] = ACTIONS(2590), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2590), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(2590), + [anon_sym_DASH] = ACTIONS(2590), + [anon_sym_SLASH] = ACTIONS(2590), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2590), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_void] = ACTIONS(2590), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_PLUS_PLUS] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2590), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2590), + [sym_number] = ACTIONS(2590), + [sym_private_property_identifier] = ACTIONS(2590), + [sym_this] = ACTIONS(2590), + [sym_super] = ACTIONS(2590), + [sym_true] = ACTIONS(2590), + [sym_false] = ACTIONS(2590), + [sym_null] = ACTIONS(2590), + [sym_undefined] = ACTIONS(2590), + [anon_sym_AT] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_readonly] = ACTIONS(2590), + [anon_sym_get] = ACTIONS(2590), + [anon_sym_set] = ACTIONS(2590), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(2590), + [anon_sym_public] = ACTIONS(2590), + [anon_sym_private] = ACTIONS(2590), + [anon_sym_protected] = ACTIONS(2590), + [anon_sym_override] = ACTIONS(2590), + [anon_sym_module] = ACTIONS(2590), + [anon_sym_any] = ACTIONS(2590), + [anon_sym_number] = ACTIONS(2590), + [anon_sym_boolean] = ACTIONS(2590), + [anon_sym_string] = ACTIONS(2590), + [anon_sym_symbol] = ACTIONS(2590), + [anon_sym_object] = ACTIONS(2590), + [anon_sym_property] = ACTIONS(2590), + [anon_sym_signal] = ACTIONS(2590), + [anon_sym_on] = ACTIONS(2590), + [anon_sym_required] = ACTIONS(2590), + [anon_sym_component] = ACTIONS(2590), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [444] = { + [sym_comment] = STATE(444), + [sym_identifier] = ACTIONS(2384), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_as] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_typeof] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2384), + [anon_sym_from] = ACTIONS(2384), + [anon_sym_with] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2384), + [anon_sym_await] = ACTIONS(2384), + [anon_sym_in] = ACTIONS(2384), + [anon_sym_of] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_debugger] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_LTtemplate_GT] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DQUOTE] = ACTIONS(2384), + [anon_sym_SQUOTE] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_QMARK_DOT] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_using] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_GT_GT_GT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_STAR_STAR] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_QMARK_QMARK] = ACTIONS(2384), + [anon_sym_instanceof] = ACTIONS(2384), + [anon_sym_TILDE] = ACTIONS(2384), + [anon_sym_void] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2384), + [sym_number] = ACTIONS(2384), + [sym_private_property_identifier] = ACTIONS(2384), + [sym_this] = ACTIONS(2384), + [sym_super] = ACTIONS(2384), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_undefined] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_readonly] = ACTIONS(2384), + [anon_sym_get] = ACTIONS(2384), + [anon_sym_set] = ACTIONS(2384), + [anon_sym_declare] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_protected] = ACTIONS(2384), + [anon_sym_override] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_any] = ACTIONS(2384), + [anon_sym_number] = ACTIONS(2384), + [anon_sym_boolean] = ACTIONS(2384), + [anon_sym_string] = ACTIONS(2384), + [anon_sym_symbol] = ACTIONS(2384), + [anon_sym_object] = ACTIONS(2384), + [anon_sym_property] = ACTIONS(2384), + [anon_sym_signal] = ACTIONS(2384), + [anon_sym_on] = ACTIONS(2384), + [anon_sym_required] = ACTIONS(2384), + [anon_sym_component] = ACTIONS(2384), + [anon_sym_abstract] = ACTIONS(2384), + [anon_sym_satisfies] = ACTIONS(2384), + [anon_sym_interface] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [sym__automatic_semicolon] = ACTIONS(2386), + [sym__ternary_qmark] = ACTIONS(2386), + [sym_html_comment] = ACTIONS(5), + }, + [445] = { + [sym_comment] = STATE(445), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_as] = ACTIONS(2414), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_COMMA] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_typeof] = ACTIONS(2414), + [anon_sym_import] = ACTIONS(2414), + [anon_sym_from] = ACTIONS(2414), + [anon_sym_with] = ACTIONS(2414), + [anon_sym_var] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_switch] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_await] = ACTIONS(2414), + [anon_sym_in] = ACTIONS(2414), + [anon_sym_of] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_debugger] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_throw] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_yield] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_LTtemplate_GT] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2414), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_class] = ACTIONS(2414), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2414), + [anon_sym_QMARK_DOT] = ACTIONS(2414), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_using] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2414), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2414), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_STAR_STAR] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2414), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2414), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_instanceof] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_void] = ACTIONS(2414), + [anon_sym_delete] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2414), + [sym_number] = ACTIONS(2414), + [sym_private_property_identifier] = ACTIONS(2414), + [sym_this] = ACTIONS(2414), + [sym_super] = ACTIONS(2414), + [sym_true] = ACTIONS(2414), + [sym_false] = ACTIONS(2414), + [sym_null] = ACTIONS(2414), + [sym_undefined] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_property] = ACTIONS(2414), + [anon_sym_signal] = ACTIONS(2414), + [anon_sym_on] = ACTIONS(2414), + [anon_sym_required] = ACTIONS(2414), + [anon_sym_component] = ACTIONS(2414), + [anon_sym_abstract] = ACTIONS(2414), + [anon_sym_satisfies] = ACTIONS(2414), + [anon_sym_interface] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [sym__automatic_semicolon] = ACTIONS(2416), + [sym__ternary_qmark] = ACTIONS(2416), + [sym_html_comment] = ACTIONS(5), + }, + [446] = { + [sym_import] = STATE(5031), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3132), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(446), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym__type_query_member_expression] = STATE(4500), + [sym__type_query_subscript_expression] = STATE(4501), + [sym__type_query_call_expression] = STATE(4564), + [sym__type_query_instantiation_expression] = STATE(4597), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2592), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), + }, + [447] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(447), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [448] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3317), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_assignment_pattern] = STATE(7663), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2337), + [sym_subscript_expression] = STATE(2337), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5366), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(448), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6946), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2337), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_namespace] = ACTIONS(1195), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1193), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1213), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_readonly] = ACTIONS(1193), + [anon_sym_get] = ACTIONS(1193), + [anon_sym_set] = ACTIONS(1193), + [anon_sym_declare] = ACTIONS(1193), + [anon_sym_public] = ACTIONS(1193), + [anon_sym_private] = ACTIONS(1193), + [anon_sym_protected] = ACTIONS(1193), + [anon_sym_override] = ACTIONS(1193), + [anon_sym_module] = ACTIONS(1193), + [anon_sym_any] = ACTIONS(1193), + [anon_sym_number] = ACTIONS(1193), + [anon_sym_boolean] = ACTIONS(1193), + [anon_sym_string] = ACTIONS(1193), + [anon_sym_symbol] = ACTIONS(1193), + [anon_sym_object] = ACTIONS(1193), + [anon_sym_property] = ACTIONS(1193), + [anon_sym_signal] = ACTIONS(1193), + [anon_sym_on] = ACTIONS(1193), + [anon_sym_required] = ACTIONS(1193), + [anon_sym_component] = ACTIONS(1193), + [sym_html_comment] = ACTIONS(5), + }, + [449] = { + [sym_import] = STATE(5133), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3316), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(449), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym__type_query_member_expression] = STATE(4500), + [sym__type_query_subscript_expression] = STATE(4501), + [sym__type_query_call_expression] = STATE(4564), + [sym__type_query_instantiation_expression] = STATE(4597), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(2594), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), + }, + [450] = { + [sym_import] = STATE(5160), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3767), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(450), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym__type_query_member_expression] = STATE(4500), + [sym__type_query_subscript_expression] = STATE(4501), + [sym__type_query_call_expression] = STATE(4564), + [sym__type_query_instantiation_expression] = STATE(4597), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2596), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), + }, + [451] = { + [sym_comment] = STATE(451), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_EQ] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_COMMA] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_in] = ACTIONS(2287), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_GT] = ACTIONS(2287), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_QMARK_DOT] = ACTIONS(2287), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2287), + [anon_sym_PIPE_PIPE] = ACTIONS(2287), + [anon_sym_GT_GT] = ACTIONS(2287), + [anon_sym_GT_GT_GT] = ACTIONS(2287), + [anon_sym_LT_LT] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(2287), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2287), + [anon_sym_STAR_STAR] = ACTIONS(2287), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2287), + [anon_sym_EQ_EQ] = ACTIONS(2287), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2287), + [anon_sym_BANG_EQ] = ACTIONS(2287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2287), + [anon_sym_GT_EQ] = ACTIONS(2287), + [anon_sym_QMARK_QMARK] = ACTIONS(2287), + [anon_sym_instanceof] = ACTIONS(2287), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_satisfies] = ACTIONS(2287), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(2598), + [sym__ternary_qmark] = ACTIONS(2293), + [sym_html_comment] = ACTIONS(5), + }, + [452] = { + [sym_comment] = STATE(452), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_from] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_LTtemplate_GT] = ACTIONS(2456), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_QMARK_DOT] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_instanceof] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_property] = ACTIONS(2456), + [anon_sym_signal] = ACTIONS(2456), + [anon_sym_on] = ACTIONS(2456), + [anon_sym_required] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_satisfies] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2460), + [sym_html_comment] = ACTIONS(5), + }, + [453] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(530), + [sym_empty_statement] = STATE(530), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7445), + [sym_string] = STATE(3558), + [sym_comment] = STATE(453), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), + }, + [454] = { + [sym_comment] = STATE(454), + [sym_identifier] = ACTIONS(2380), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_as] = ACTIONS(2380), + [anon_sym_namespace] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2380), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_typeof] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2380), + [anon_sym_from] = ACTIONS(2380), + [anon_sym_with] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2380), + [anon_sym_else] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_switch] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_await] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_of] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_debugger] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_LTtemplate_GT] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2380), + [anon_sym_DOT] = ACTIONS(2380), + [anon_sym_DQUOTE] = ACTIONS(2380), + [anon_sym_SQUOTE] = ACTIONS(2380), + [anon_sym_class] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_QMARK_DOT] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_using] = ACTIONS(2380), + [anon_sym_AMP_AMP] = ACTIONS(2380), + [anon_sym_PIPE_PIPE] = ACTIONS(2380), + [anon_sym_GT_GT] = ACTIONS(2380), + [anon_sym_GT_GT_GT] = ACTIONS(2380), + [anon_sym_LT_LT] = ACTIONS(2380), + [anon_sym_AMP] = ACTIONS(2380), + [anon_sym_CARET] = ACTIONS(2380), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_PERCENT] = ACTIONS(2380), + [anon_sym_STAR_STAR] = ACTIONS(2380), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_QMARK_QMARK] = ACTIONS(2380), + [anon_sym_instanceof] = ACTIONS(2380), + [anon_sym_TILDE] = ACTIONS(2380), + [anon_sym_void] = ACTIONS(2380), + [anon_sym_delete] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2380), + [anon_sym_DASH_DASH] = ACTIONS(2380), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2380), + [sym_number] = ACTIONS(2380), + [sym_private_property_identifier] = ACTIONS(2380), + [sym_this] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_true] = ACTIONS(2380), + [sym_false] = ACTIONS(2380), + [sym_null] = ACTIONS(2380), + [sym_undefined] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_readonly] = ACTIONS(2380), + [anon_sym_get] = ACTIONS(2380), + [anon_sym_set] = ACTIONS(2380), + [anon_sym_declare] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_protected] = ACTIONS(2380), + [anon_sym_override] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_any] = ACTIONS(2380), + [anon_sym_number] = ACTIONS(2380), + [anon_sym_boolean] = ACTIONS(2380), + [anon_sym_string] = ACTIONS(2380), + [anon_sym_symbol] = ACTIONS(2380), + [anon_sym_object] = ACTIONS(2380), + [anon_sym_property] = ACTIONS(2380), + [anon_sym_signal] = ACTIONS(2380), + [anon_sym_on] = ACTIONS(2380), + [anon_sym_required] = ACTIONS(2380), + [anon_sym_component] = ACTIONS(2380), + [anon_sym_abstract] = ACTIONS(2380), + [anon_sym_satisfies] = ACTIONS(2380), + [anon_sym_interface] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [sym__automatic_semicolon] = ACTIONS(2382), + [sym__ternary_qmark] = ACTIONS(2382), + [sym_html_comment] = ACTIONS(5), + }, + [455] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(529), + [sym_empty_statement] = STATE(529), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7445), + [sym_string] = STATE(3558), + [sym_comment] = STATE(455), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), + }, + [456] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(456), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(1503), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [457] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(457), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6164), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_override_modifier] = STATE(517), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1291), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2600), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [458] = { + [sym_comment] = STATE(458), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_as] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_COMMA] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_in] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_GT] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_QMARK_DOT] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2356), + [anon_sym_GT_GT] = ACTIONS(2356), + [anon_sym_GT_GT_GT] = ACTIONS(2356), + [anon_sym_LT_LT] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_CARET] = ACTIONS(2356), + [anon_sym_PIPE] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_PERCENT] = ACTIONS(2356), + [anon_sym_STAR_STAR] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_LT_EQ] = ACTIONS(2356), + [anon_sym_EQ_EQ] = ACTIONS(2356), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2356), + [anon_sym_BANG_EQ] = ACTIONS(2356), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2356), + [anon_sym_GT_EQ] = ACTIONS(2356), + [anon_sym_QMARK_QMARK] = ACTIONS(2356), + [anon_sym_instanceof] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_satisfies] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym__automatic_semicolon] = ACTIONS(2358), + [sym__ternary_qmark] = ACTIONS(2358), + [sym_html_comment] = ACTIONS(5), + }, + [459] = { + [sym_import] = STATE(5160), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3624), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(459), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym__type_query_member_expression] = STATE(4500), + [sym__type_query_subscript_expression] = STATE(4501), + [sym__type_query_call_expression] = STATE(4564), + [sym__type_query_instantiation_expression] = STATE(4597), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2602), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), + }, + [460] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(460), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1523), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(1529), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [461] = { + [sym_comment] = STATE(461), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(2390), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_as] = ACTIONS(2390), + [anon_sym_namespace] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2388), + [anon_sym_COMMA] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_typeof] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(2388), + [anon_sym_from] = ACTIONS(2388), + [anon_sym_with] = ACTIONS(2388), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_else] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_switch] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2388), + [anon_sym_await] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2390), + [anon_sym_of] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_do] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_debugger] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_throw] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2388), + [anon_sym_LTtemplate_GT] = ACTIONS(2388), + [anon_sym_GT] = ACTIONS(2390), + [anon_sym_DOT] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2388), + [anon_sym_SQUOTE] = ACTIONS(2388), + [anon_sym_class] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_QMARK_DOT] = ACTIONS(2390), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_using] = ACTIONS(2388), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2390), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2390), + [anon_sym_CARET] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2390), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_STAR_STAR] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_QMARK_QMARK] = ACTIONS(2390), + [anon_sym_instanceof] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_void] = ACTIONS(2388), + [anon_sym_delete] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(2388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2388), + [sym_number] = ACTIONS(2388), + [sym_private_property_identifier] = ACTIONS(2388), + [sym_this] = ACTIONS(2388), + [sym_super] = ACTIONS(2388), + [sym_true] = ACTIONS(2388), + [sym_false] = ACTIONS(2388), + [sym_null] = ACTIONS(2388), + [sym_undefined] = ACTIONS(2388), + [anon_sym_AT] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_readonly] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_declare] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_protected] = ACTIONS(2388), + [anon_sym_override] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_any] = ACTIONS(2388), + [anon_sym_number] = ACTIONS(2388), + [anon_sym_boolean] = ACTIONS(2388), + [anon_sym_string] = ACTIONS(2388), + [anon_sym_symbol] = ACTIONS(2388), + [anon_sym_object] = ACTIONS(2388), + [anon_sym_property] = ACTIONS(2388), + [anon_sym_signal] = ACTIONS(2388), + [anon_sym_on] = ACTIONS(2388), + [anon_sym_required] = ACTIONS(2388), + [anon_sym_component] = ACTIONS(2388), + [anon_sym_abstract] = ACTIONS(2388), + [anon_sym_satisfies] = ACTIONS(2390), + [anon_sym_interface] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [sym__automatic_semicolon] = ACTIONS(2604), + [sym__ternary_qmark] = ACTIONS(2394), + [sym_html_comment] = ACTIONS(5), + }, + [462] = { + [sym_comment] = STATE(462), + [sym_identifier] = ACTIONS(2360), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_as] = ACTIONS(2362), + [anon_sym_namespace] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_typeof] = ACTIONS(2360), + [anon_sym_import] = ACTIONS(2360), + [anon_sym_from] = ACTIONS(2360), + [anon_sym_with] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_switch] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_await] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2362), + [anon_sym_of] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_debugger] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_throw] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [anon_sym_LTtemplate_GT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_class] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(2362), + [anon_sym_new] = ACTIONS(2360), + [anon_sym_using] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2362), + [anon_sym_GT_GT] = ACTIONS(2362), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_PIPE] = ACTIONS(2362), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_PERCENT] = ACTIONS(2362), + [anon_sym_STAR_STAR] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2362), + [anon_sym_EQ_EQ] = ACTIONS(2362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2362), + [anon_sym_BANG_EQ] = ACTIONS(2362), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2362), + [anon_sym_GT_EQ] = ACTIONS(2362), + [anon_sym_QMARK_QMARK] = ACTIONS(2362), + [anon_sym_instanceof] = ACTIONS(2362), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_void] = ACTIONS(2360), + [anon_sym_delete] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2360), + [sym_number] = ACTIONS(2360), + [sym_private_property_identifier] = ACTIONS(2360), + [sym_this] = ACTIONS(2360), + [sym_super] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_null] = ACTIONS(2360), + [sym_undefined] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_readonly] = ACTIONS(2360), + [anon_sym_get] = ACTIONS(2360), + [anon_sym_set] = ACTIONS(2360), + [anon_sym_declare] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_protected] = ACTIONS(2360), + [anon_sym_override] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_any] = ACTIONS(2360), + [anon_sym_number] = ACTIONS(2360), + [anon_sym_boolean] = ACTIONS(2360), + [anon_sym_string] = ACTIONS(2360), + [anon_sym_symbol] = ACTIONS(2360), + [anon_sym_object] = ACTIONS(2360), + [anon_sym_property] = ACTIONS(2360), + [anon_sym_signal] = ACTIONS(2360), + [anon_sym_on] = ACTIONS(2360), + [anon_sym_required] = ACTIONS(2360), + [anon_sym_component] = ACTIONS(2360), + [anon_sym_abstract] = ACTIONS(2360), + [anon_sym_satisfies] = ACTIONS(2362), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [sym__automatic_semicolon] = ACTIONS(2606), + [sym__ternary_qmark] = ACTIONS(2366), + [sym_html_comment] = ACTIONS(5), + }, + [463] = { + [sym_comment] = STATE(463), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_as] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_COMMA] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_GT] = ACTIONS(2368), + [anon_sym_DOT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_QMARK_DOT] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2368), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_GT_GT_GT] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_PERCENT] = ACTIONS(2368), + [anon_sym_STAR_STAR] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_LT_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2368), + [anon_sym_GT_EQ] = ACTIONS(2368), + [anon_sym_QMARK_QMARK] = ACTIONS(2368), + [anon_sym_instanceof] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(2608), + [sym__ternary_qmark] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [464] = { + [sym_comment] = STATE(464), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_STAR] = ACTIONS(2350), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_COMMA] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_GT] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_QMARK_DOT] = ACTIONS(2350), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_AMP_AMP] = ACTIONS(2350), + [anon_sym_PIPE_PIPE] = ACTIONS(2350), + [anon_sym_GT_GT] = ACTIONS(2350), + [anon_sym_GT_GT_GT] = ACTIONS(2350), + [anon_sym_LT_LT] = ACTIONS(2350), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_PERCENT] = ACTIONS(2350), + [anon_sym_STAR_STAR] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_LT_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), + [anon_sym_GT_EQ] = ACTIONS(2350), + [anon_sym_QMARK_QMARK] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_satisfies] = ACTIONS(2350), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2610), + [sym__ternary_qmark] = ACTIONS(2354), + [sym_html_comment] = ACTIONS(5), + }, + [465] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(532), + [sym_empty_statement] = STATE(532), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7445), + [sym_string] = STATE(3558), + [sym_comment] = STATE(465), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), + }, + [466] = { + [sym_import] = STATE(4974), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3623), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(466), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym__type_query_member_expression] = STATE(4500), + [sym__type_query_subscript_expression] = STATE(4501), + [sym__type_query_call_expression] = STATE(4564), + [sym__type_query_instantiation_expression] = STATE(4597), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2612), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), + }, + [467] = { + [sym_comment] = STATE(467), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2342), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_QMARK_DOT] = ACTIONS(2342), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_instanceof] = ACTIONS(2342), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_satisfies] = ACTIONS(2342), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2614), + [sym__ternary_qmark] = ACTIONS(2346), + [sym_html_comment] = ACTIONS(5), + }, + [468] = { + [sym_import] = STATE(5124), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(468), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym__type_query_member_expression] = STATE(4500), + [sym__type_query_subscript_expression] = STATE(4501), + [sym__type_query_call_expression] = STATE(4564), + [sym__type_query_instantiation_expression] = STATE(4597), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2616), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [469] = { + [sym_comment] = STATE(469), + [sym_identifier] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_as] = ACTIONS(2480), + [anon_sym_namespace] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_COMMA] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_import] = ACTIONS(2478), + [anon_sym_from] = ACTIONS(2478), + [anon_sym_with] = ACTIONS(2478), + [anon_sym_var] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_await] = ACTIONS(2478), + [anon_sym_in] = ACTIONS(2480), + [anon_sym_of] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_debugger] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_throw] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_yield] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_LTtemplate_GT] = ACTIONS(2478), + [anon_sym_GT] = ACTIONS(2480), + [anon_sym_DOT] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_class] = ACTIONS(2478), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_QMARK_DOT] = ACTIONS(2480), + [anon_sym_new] = ACTIONS(2478), + [anon_sym_using] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2480), + [anon_sym_PIPE_PIPE] = ACTIONS(2480), + [anon_sym_GT_GT] = ACTIONS(2480), + [anon_sym_GT_GT_GT] = ACTIONS(2480), + [anon_sym_LT_LT] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2480), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_SLASH] = ACTIONS(2478), + [anon_sym_PERCENT] = ACTIONS(2480), + [anon_sym_STAR_STAR] = ACTIONS(2480), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT_EQ] = ACTIONS(2480), + [anon_sym_EQ_EQ] = ACTIONS(2480), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), + [anon_sym_BANG_EQ] = ACTIONS(2480), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), + [anon_sym_GT_EQ] = ACTIONS(2480), + [anon_sym_QMARK_QMARK] = ACTIONS(2480), + [anon_sym_instanceof] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2478), + [sym_number] = ACTIONS(2478), + [sym_private_property_identifier] = ACTIONS(2478), + [sym_this] = ACTIONS(2478), + [sym_super] = ACTIONS(2478), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [sym_null] = ACTIONS(2478), + [sym_undefined] = ACTIONS(2478), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_override] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_any] = ACTIONS(2478), + [anon_sym_number] = ACTIONS(2478), + [anon_sym_boolean] = ACTIONS(2478), + [anon_sym_string] = ACTIONS(2478), + [anon_sym_symbol] = ACTIONS(2478), + [anon_sym_object] = ACTIONS(2478), + [anon_sym_property] = ACTIONS(2478), + [anon_sym_signal] = ACTIONS(2478), + [anon_sym_on] = ACTIONS(2478), + [anon_sym_required] = ACTIONS(2478), + [anon_sym_component] = ACTIONS(2478), + [anon_sym_abstract] = ACTIONS(2478), + [anon_sym_satisfies] = ACTIONS(2480), + [anon_sym_interface] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [sym__automatic_semicolon] = ACTIONS(2618), + [sym__ternary_qmark] = ACTIONS(2484), + [sym_html_comment] = ACTIONS(5), + }, + [470] = { + [sym_comment] = STATE(470), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_as] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_COMMA] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_in] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_QMARK_DOT] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_GT_GT_GT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_STAR_STAR] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2285), + [anon_sym_BANG_EQ] = ACTIONS(2285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2285), + [anon_sym_QMARK_QMARK] = ACTIONS(2285), + [anon_sym_instanceof] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_satisfies] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(2620), + [sym__ternary_qmark] = ACTIONS(2374), + [sym_html_comment] = ACTIONS(5), + }, + [471] = { + [sym_comment] = STATE(471), + [sym_identifier] = ACTIONS(2430), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2432), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_as] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_COMMA] = ACTIONS(2432), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_typeof] = ACTIONS(2430), + [anon_sym_import] = ACTIONS(2430), + [anon_sym_from] = ACTIONS(2430), + [anon_sym_with] = ACTIONS(2430), + [anon_sym_var] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_const] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_else] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_switch] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_await] = ACTIONS(2430), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_of] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2430), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_debugger] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_throw] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_yield] = ACTIONS(2430), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_LTtemplate_GT] = ACTIONS(2430), + [anon_sym_GT] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_class] = ACTIONS(2430), + [anon_sym_async] = ACTIONS(2430), + [anon_sym_function] = ACTIONS(2430), + [anon_sym_QMARK_DOT] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_using] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2432), + [anon_sym_PIPE_PIPE] = ACTIONS(2432), + [anon_sym_GT_GT] = ACTIONS(2432), + [anon_sym_GT_GT_GT] = ACTIONS(2432), + [anon_sym_LT_LT] = ACTIONS(2432), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_CARET] = ACTIONS(2432), + [anon_sym_PIPE] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_SLASH] = ACTIONS(2430), + [anon_sym_PERCENT] = ACTIONS(2432), + [anon_sym_STAR_STAR] = ACTIONS(2432), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_LT_EQ] = ACTIONS(2432), + [anon_sym_EQ_EQ] = ACTIONS(2432), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), + [anon_sym_BANG_EQ] = ACTIONS(2432), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), + [anon_sym_GT_EQ] = ACTIONS(2432), + [anon_sym_QMARK_QMARK] = ACTIONS(2432), + [anon_sym_instanceof] = ACTIONS(2432), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_void] = ACTIONS(2430), + [anon_sym_delete] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_number] = ACTIONS(2430), + [sym_private_property_identifier] = ACTIONS(2430), + [sym_this] = ACTIONS(2430), + [sym_super] = ACTIONS(2430), + [sym_true] = ACTIONS(2430), + [sym_false] = ACTIONS(2430), + [sym_null] = ACTIONS(2430), + [sym_undefined] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2430), + [anon_sym_readonly] = ACTIONS(2430), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_declare] = ACTIONS(2430), + [anon_sym_public] = ACTIONS(2430), + [anon_sym_private] = ACTIONS(2430), + [anon_sym_protected] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_any] = ACTIONS(2430), + [anon_sym_number] = ACTIONS(2430), + [anon_sym_boolean] = ACTIONS(2430), + [anon_sym_string] = ACTIONS(2430), + [anon_sym_symbol] = ACTIONS(2430), + [anon_sym_object] = ACTIONS(2430), + [anon_sym_property] = ACTIONS(2430), + [anon_sym_signal] = ACTIONS(2430), + [anon_sym_on] = ACTIONS(2430), + [anon_sym_required] = ACTIONS(2430), + [anon_sym_component] = ACTIONS(2430), + [anon_sym_abstract] = ACTIONS(2430), + [anon_sym_satisfies] = ACTIONS(2432), + [anon_sym_interface] = ACTIONS(2430), + [anon_sym_enum] = ACTIONS(2430), + [sym__automatic_semicolon] = ACTIONS(2622), + [sym__ternary_qmark] = ACTIONS(2436), + [sym_html_comment] = ACTIONS(5), + }, + [472] = { + [sym_comment] = STATE(472), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_as] = ACTIONS(2472), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_COMMA] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2472), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_QMARK_DOT] = ACTIONS(2472), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2472), + [anon_sym_PIPE_PIPE] = ACTIONS(2472), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2472), + [anon_sym_LT_LT] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2472), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_PERCENT] = ACTIONS(2472), + [anon_sym_STAR_STAR] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_LT_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2472), + [anon_sym_GT_EQ] = ACTIONS(2472), + [anon_sym_QMARK_QMARK] = ACTIONS(2472), + [anon_sym_instanceof] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_satisfies] = ACTIONS(2472), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2624), + [sym__ternary_qmark] = ACTIONS(2476), + [sym_html_comment] = ACTIONS(5), + }, + [473] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(527), + [sym_empty_statement] = STATE(527), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7445), + [sym_string] = STATE(3558), + [sym_comment] = STATE(473), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), + }, + [474] = { + [sym_comment] = STATE(474), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_STAR] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_as] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_COMMA] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_from] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_else] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_in] = ACTIONS(2328), + [anon_sym_of] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_LTtemplate_GT] = ACTIONS(2328), + [anon_sym_GT] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2328), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_QMARK_DOT] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_using] = ACTIONS(2328), + [anon_sym_AMP_AMP] = ACTIONS(2328), + [anon_sym_PIPE_PIPE] = ACTIONS(2328), + [anon_sym_GT_GT] = ACTIONS(2328), + [anon_sym_GT_GT_GT] = ACTIONS(2328), + [anon_sym_LT_LT] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2328), + [anon_sym_CARET] = ACTIONS(2328), + [anon_sym_PIPE] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_PERCENT] = ACTIONS(2328), + [anon_sym_STAR_STAR] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_LT_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2328), + [anon_sym_GT_EQ] = ACTIONS(2328), + [anon_sym_QMARK_QMARK] = ACTIONS(2328), + [anon_sym_instanceof] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2328), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2328), + [sym_number] = ACTIONS(2328), + [sym_private_property_identifier] = ACTIONS(2328), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_property] = ACTIONS(2328), + [anon_sym_signal] = ACTIONS(2328), + [anon_sym_on] = ACTIONS(2328), + [anon_sym_required] = ACTIONS(2328), + [anon_sym_component] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_satisfies] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym__automatic_semicolon] = ACTIONS(2330), + [sym__ternary_qmark] = ACTIONS(2330), + [sym_html_comment] = ACTIONS(5), + }, + [475] = { + [sym_comment] = STATE(475), + [sym_identifier] = ACTIONS(2590), + [anon_sym_export] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(2590), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2590), + [anon_sym_LBRACE] = ACTIONS(2590), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(2590), + [anon_sym_import] = ACTIONS(2590), + [anon_sym_from] = ACTIONS(2590), + [anon_sym_let] = ACTIONS(2590), + [anon_sym_BANG] = ACTIONS(2590), + [anon_sym_LPAREN] = ACTIONS(2590), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_await] = ACTIONS(2590), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2590), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(2590), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_LTtemplate_GT] = ACTIONS(2590), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_class] = ACTIONS(2590), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_function] = ACTIONS(2590), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_using] = ACTIONS(2590), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2590), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(2590), + [anon_sym_DASH] = ACTIONS(2590), + [anon_sym_SLASH] = ACTIONS(2590), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2590), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_void] = ACTIONS(2590), + [anon_sym_delete] = ACTIONS(2590), + [anon_sym_PLUS_PLUS] = ACTIONS(2590), + [anon_sym_DASH_DASH] = ACTIONS(2590), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2590), + [sym_number] = ACTIONS(2590), + [sym_private_property_identifier] = ACTIONS(2590), + [sym_this] = ACTIONS(2590), + [sym_super] = ACTIONS(2590), + [sym_true] = ACTIONS(2590), + [sym_false] = ACTIONS(2590), + [sym_null] = ACTIONS(2590), + [sym_undefined] = ACTIONS(2590), + [anon_sym_AT] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_readonly] = ACTIONS(2590), + [anon_sym_get] = ACTIONS(2590), + [anon_sym_set] = ACTIONS(2590), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(2590), + [anon_sym_public] = ACTIONS(2590), + [anon_sym_private] = ACTIONS(2590), + [anon_sym_protected] = ACTIONS(2590), + [anon_sym_override] = ACTIONS(2590), + [anon_sym_module] = ACTIONS(2590), + [anon_sym_any] = ACTIONS(2590), + [anon_sym_number] = ACTIONS(2590), + [anon_sym_boolean] = ACTIONS(2590), + [anon_sym_string] = ACTIONS(2590), + [anon_sym_symbol] = ACTIONS(2590), + [anon_sym_object] = ACTIONS(2590), + [anon_sym_property] = ACTIONS(2590), + [anon_sym_signal] = ACTIONS(2590), + [anon_sym_on] = ACTIONS(2590), + [anon_sym_required] = ACTIONS(2590), + [anon_sym_component] = ACTIONS(2590), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [476] = { + [sym_comment] = STATE(476), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_as] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_typeof] = ACTIONS(2440), + [anon_sym_import] = ACTIONS(2440), + [anon_sym_from] = ACTIONS(2440), + [anon_sym_with] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_else] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_await] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2442), + [anon_sym_of] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_debugger] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_yield] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_LTtemplate_GT] = ACTIONS(2440), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_DOT] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_SQUOTE] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_QMARK_DOT] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_PIPE_PIPE] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2442), + [anon_sym_GT_GT_GT] = ACTIONS(2442), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2442), + [anon_sym_STAR_STAR] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2442), + [anon_sym_BANG_EQ] = ACTIONS(2442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2442), + [anon_sym_GT_EQ] = ACTIONS(2442), + [anon_sym_QMARK_QMARK] = ACTIONS(2442), + [anon_sym_instanceof] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2440), + [anon_sym_void] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2440), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2440), + [sym_number] = ACTIONS(2440), + [sym_private_property_identifier] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [sym_super] = ACTIONS(2440), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [sym_null] = ACTIONS(2440), + [sym_undefined] = ACTIONS(2440), + [anon_sym_AT] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), + [anon_sym_property] = ACTIONS(2440), + [anon_sym_signal] = ACTIONS(2440), + [anon_sym_on] = ACTIONS(2440), + [anon_sym_required] = ACTIONS(2440), + [anon_sym_component] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_satisfies] = ACTIONS(2442), + [anon_sym_interface] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [sym__automatic_semicolon] = ACTIONS(2626), + [sym__ternary_qmark] = ACTIONS(2446), + [sym_html_comment] = ACTIONS(5), + }, + [477] = { + [sym_comment] = STATE(477), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_typeof] = ACTIONS(2332), + [anon_sym_import] = ACTIONS(2332), + [anon_sym_from] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_switch] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_await] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2334), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_throw] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_LTtemplate_GT] = ACTIONS(2332), + [anon_sym_GT] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2332), + [anon_sym_class] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_QMARK_DOT] = ACTIONS(2334), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_using] = ACTIONS(2332), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2334), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_void] = ACTIONS(2332), + [anon_sym_delete] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2332), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2332), + [sym_number] = ACTIONS(2332), + [sym_private_property_identifier] = ACTIONS(2332), + [sym_this] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_undefined] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_property] = ACTIONS(2332), + [anon_sym_signal] = ACTIONS(2332), + [anon_sym_on] = ACTIONS(2332), + [anon_sym_required] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_satisfies] = ACTIONS(2334), + [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(2628), + [sym__ternary_qmark] = ACTIONS(2338), + [sym_html_comment] = ACTIONS(5), + }, + [478] = { + [sym_comment] = STATE(478), + [sym_identifier] = ACTIONS(2448), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_as] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_COMMA] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_typeof] = ACTIONS(2448), + [anon_sym_import] = ACTIONS(2448), + [anon_sym_from] = ACTIONS(2448), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_switch] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_await] = ACTIONS(2448), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_of] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_debugger] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LTtemplate_GT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2450), + [anon_sym_DOT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_class] = ACTIONS(2448), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_QMARK_DOT] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2448), + [anon_sym_using] = ACTIONS(2448), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2450), + [anon_sym_GT_GT_GT] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_SLASH] = ACTIONS(2448), + [anon_sym_PERCENT] = ACTIONS(2450), + [anon_sym_STAR_STAR] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_QMARK_QMARK] = ACTIONS(2450), + [anon_sym_instanceof] = ACTIONS(2450), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_void] = ACTIONS(2448), + [anon_sym_delete] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2448), + [sym_number] = ACTIONS(2448), + [sym_private_property_identifier] = ACTIONS(2448), + [sym_this] = ACTIONS(2448), + [sym_super] = ACTIONS(2448), + [sym_true] = ACTIONS(2448), + [sym_false] = ACTIONS(2448), + [sym_null] = ACTIONS(2448), + [sym_undefined] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_readonly] = ACTIONS(2448), + [anon_sym_get] = ACTIONS(2448), + [anon_sym_set] = ACTIONS(2448), + [anon_sym_declare] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_protected] = ACTIONS(2448), + [anon_sym_override] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_any] = ACTIONS(2448), + [anon_sym_number] = ACTIONS(2448), + [anon_sym_boolean] = ACTIONS(2448), + [anon_sym_string] = ACTIONS(2448), + [anon_sym_symbol] = ACTIONS(2448), + [anon_sym_object] = ACTIONS(2448), + [anon_sym_property] = ACTIONS(2448), + [anon_sym_signal] = ACTIONS(2448), + [anon_sym_on] = ACTIONS(2448), + [anon_sym_required] = ACTIONS(2448), + [anon_sym_component] = ACTIONS(2448), + [anon_sym_abstract] = ACTIONS(2448), + [anon_sym_satisfies] = ACTIONS(2450), + [anon_sym_interface] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [sym__automatic_semicolon] = ACTIONS(2630), + [sym__ternary_qmark] = ACTIONS(2454), + [sym_html_comment] = ACTIONS(5), + }, + [479] = { + [sym_import] = STATE(5124), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3245), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(479), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym__type_query_member_expression] = STATE(4500), + [sym__type_query_subscript_expression] = STATE(4501), + [sym__type_query_call_expression] = STATE(4564), + [sym__type_query_instantiation_expression] = STATE(4597), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2632), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), + }, + [480] = { + [sym_comment] = STATE(480), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_as] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_COMMA] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_GT] = ACTIONS(2368), + [anon_sym_DOT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_QMARK_DOT] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2368), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_GT_GT_GT] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_PERCENT] = ACTIONS(2368), + [anon_sym_STAR_STAR] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_LT_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2368), + [anon_sym_GT_EQ] = ACTIONS(2368), + [anon_sym_QMARK_QMARK] = ACTIONS(2368), + [anon_sym_instanceof] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(2370), + [sym__ternary_qmark] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [481] = { + [sym_comment] = STATE(481), + [sym_identifier] = ACTIONS(2402), + [anon_sym_export] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2402), + [anon_sym_as] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_COMMA] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2402), + [anon_sym_import] = ACTIONS(2402), + [anon_sym_from] = ACTIONS(2402), + [anon_sym_with] = ACTIONS(2402), + [anon_sym_var] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_switch] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_await] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2404), + [anon_sym_of] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_debugger] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_throw] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_yield] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LTtemplate_GT] = ACTIONS(2402), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_DOT] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_class] = ACTIONS(2402), + [anon_sym_async] = ACTIONS(2402), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_QMARK_DOT] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2402), + [anon_sym_using] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_GT_GT_GT] = ACTIONS(2404), + [anon_sym_LT_LT] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_SLASH] = ACTIONS(2402), + [anon_sym_PERCENT] = ACTIONS(2404), + [anon_sym_STAR_STAR] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_LT_EQ] = ACTIONS(2404), + [anon_sym_EQ_EQ] = ACTIONS(2404), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2404), + [anon_sym_BANG_EQ] = ACTIONS(2404), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2404), + [anon_sym_GT_EQ] = ACTIONS(2404), + [anon_sym_QMARK_QMARK] = ACTIONS(2404), + [anon_sym_instanceof] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_void] = ACTIONS(2402), + [anon_sym_delete] = ACTIONS(2402), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2402), + [sym_number] = ACTIONS(2402), + [sym_private_property_identifier] = ACTIONS(2402), + [sym_this] = ACTIONS(2402), + [sym_super] = ACTIONS(2402), + [sym_true] = ACTIONS(2402), + [sym_false] = ACTIONS(2402), + [sym_null] = ACTIONS(2402), + [sym_undefined] = ACTIONS(2402), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_readonly] = ACTIONS(2402), + [anon_sym_get] = ACTIONS(2402), + [anon_sym_set] = ACTIONS(2402), + [anon_sym_declare] = ACTIONS(2402), + [anon_sym_public] = ACTIONS(2402), + [anon_sym_private] = ACTIONS(2402), + [anon_sym_protected] = ACTIONS(2402), + [anon_sym_override] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_any] = ACTIONS(2402), + [anon_sym_number] = ACTIONS(2402), + [anon_sym_boolean] = ACTIONS(2402), + [anon_sym_string] = ACTIONS(2402), + [anon_sym_symbol] = ACTIONS(2402), + [anon_sym_object] = ACTIONS(2402), + [anon_sym_property] = ACTIONS(2402), + [anon_sym_signal] = ACTIONS(2402), + [anon_sym_on] = ACTIONS(2402), + [anon_sym_required] = ACTIONS(2402), + [anon_sym_component] = ACTIONS(2402), + [anon_sym_abstract] = ACTIONS(2402), + [anon_sym_satisfies] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [sym__automatic_semicolon] = ACTIONS(2634), + [sym__ternary_qmark] = ACTIONS(2408), + [sym_html_comment] = ACTIONS(5), + }, + [482] = { + [sym_statement_block] = STATE(507), + [sym_comment] = STATE(482), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2638), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [483] = { + [sym_comment] = STATE(483), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_typeof] = ACTIONS(2410), + [anon_sym_import] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2410), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_debugger] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_throw] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LTtemplate_GT] = ACTIONS(2410), + [anon_sym_GT] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_class] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_QMARK_DOT] = ACTIONS(2410), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_PIPE_PIPE] = ACTIONS(2410), + [anon_sym_GT_GT] = ACTIONS(2410), + [anon_sym_GT_GT_GT] = ACTIONS(2410), + [anon_sym_LT_LT] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_PERCENT] = ACTIONS(2410), + [anon_sym_STAR_STAR] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_LT_EQ] = ACTIONS(2410), + [anon_sym_EQ_EQ] = ACTIONS(2410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2410), + [anon_sym_BANG_EQ] = ACTIONS(2410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2410), + [anon_sym_GT_EQ] = ACTIONS(2410), + [anon_sym_QMARK_QMARK] = ACTIONS(2410), + [anon_sym_instanceof] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2410), + [anon_sym_delete] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_private_property_identifier] = ACTIONS(2410), + [sym_this] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_true] = ACTIONS(2410), + [sym_false] = ACTIONS(2410), + [sym_null] = ACTIONS(2410), + [sym_undefined] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_abstract] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(2410), + [anon_sym_interface] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2412), + [sym__ternary_qmark] = ACTIONS(2412), + [sym_html_comment] = ACTIONS(5), + }, + [484] = { + [sym_import] = STATE(5074), + [sym_expression_statement] = STATE(535), + [sym_empty_statement] = STATE(535), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7445), + [sym_string] = STATE(3558), + [sym_comment] = STATE(484), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), + }, + [485] = { + [sym_comment] = STATE(485), + [sym_identifier] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2424), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_as] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_COMMA] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_typeof] = ACTIONS(2422), + [anon_sym_import] = ACTIONS(2422), + [anon_sym_from] = ACTIONS(2422), + [anon_sym_with] = ACTIONS(2422), + [anon_sym_var] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_else] = ACTIONS(2422), + [anon_sym_if] = ACTIONS(2422), + [anon_sym_switch] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_await] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_of] = ACTIONS(2422), + [anon_sym_while] = ACTIONS(2422), + [anon_sym_do] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2422), + [anon_sym_continue] = ACTIONS(2422), + [anon_sym_debugger] = ACTIONS(2422), + [anon_sym_return] = ACTIONS(2422), + [anon_sym_throw] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_yield] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_LTtemplate_GT] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2424), + [anon_sym_DOT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_class] = ACTIONS(2422), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2422), + [anon_sym_QMARK_DOT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_using] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(2424), + [anon_sym_GT_GT] = ACTIONS(2424), + [anon_sym_GT_GT_GT] = ACTIONS(2424), + [anon_sym_LT_LT] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_CARET] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_SLASH] = ACTIONS(2422), + [anon_sym_PERCENT] = ACTIONS(2424), + [anon_sym_STAR_STAR] = ACTIONS(2424), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_LT_EQ] = ACTIONS(2424), + [anon_sym_EQ_EQ] = ACTIONS(2424), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2424), + [anon_sym_BANG_EQ] = ACTIONS(2424), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2424), + [anon_sym_GT_EQ] = ACTIONS(2424), + [anon_sym_QMARK_QMARK] = ACTIONS(2424), + [anon_sym_instanceof] = ACTIONS(2424), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_void] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2422), + [sym_number] = ACTIONS(2422), + [sym_private_property_identifier] = ACTIONS(2422), + [sym_this] = ACTIONS(2422), + [sym_super] = ACTIONS(2422), + [sym_true] = ACTIONS(2422), + [sym_false] = ACTIONS(2422), + [sym_null] = ACTIONS(2422), + [sym_undefined] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_property] = ACTIONS(2422), + [anon_sym_signal] = ACTIONS(2422), + [anon_sym_on] = ACTIONS(2422), + [anon_sym_required] = ACTIONS(2422), + [anon_sym_component] = ACTIONS(2422), + [anon_sym_abstract] = ACTIONS(2422), + [anon_sym_satisfies] = ACTIONS(2424), + [anon_sym_interface] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [sym__automatic_semicolon] = ACTIONS(2640), + [sym__ternary_qmark] = ACTIONS(2428), + [sym_html_comment] = ACTIONS(5), + }, + [486] = { + [sym_import] = STATE(5124), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(486), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym__type_query_member_expression] = STATE(4500), + [sym__type_query_subscript_expression] = STATE(4501), + [sym__type_query_call_expression] = STATE(4564), + [sym__type_query_instantiation_expression] = STATE(4597), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2642), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [487] = { + [sym_statement_block] = STATE(507), + [sym_comment] = STATE(487), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2644), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [488] = { + [sym_statement_block] = STATE(507), + [sym_comment] = STATE(488), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [489] = { + [sym_comment] = STATE(489), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_from] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_LTtemplate_GT] = ACTIONS(2456), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_QMARK_DOT] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_instanceof] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_property] = ACTIONS(2456), + [anon_sym_signal] = ACTIONS(2456), + [anon_sym_on] = ACTIONS(2456), + [anon_sym_required] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_satisfies] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2460), + [sym_html_comment] = ACTIONS(5), + }, + [490] = { + [sym_comment] = STATE(490), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(2390), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_as] = ACTIONS(2390), + [anon_sym_namespace] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2388), + [anon_sym_COMMA] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_typeof] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(2388), + [anon_sym_from] = ACTIONS(2388), + [anon_sym_with] = ACTIONS(2388), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_switch] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2388), + [anon_sym_await] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2390), + [anon_sym_of] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_do] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_debugger] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_throw] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2388), + [anon_sym_LTtemplate_GT] = ACTIONS(2388), + [anon_sym_GT] = ACTIONS(2390), + [anon_sym_DOT] = ACTIONS(2390), + [anon_sym_DQUOTE] = ACTIONS(2388), + [anon_sym_SQUOTE] = ACTIONS(2388), + [anon_sym_class] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_QMARK_DOT] = ACTIONS(2390), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_using] = ACTIONS(2388), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2390), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2390), + [anon_sym_CARET] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2390), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_STAR_STAR] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_QMARK_QMARK] = ACTIONS(2390), + [anon_sym_instanceof] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_void] = ACTIONS(2388), + [anon_sym_delete] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(2388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2388), + [sym_number] = ACTIONS(2388), + [sym_private_property_identifier] = ACTIONS(2388), + [sym_this] = ACTIONS(2388), + [sym_super] = ACTIONS(2388), + [sym_true] = ACTIONS(2388), + [sym_false] = ACTIONS(2388), + [sym_null] = ACTIONS(2388), + [sym_undefined] = ACTIONS(2388), + [anon_sym_AT] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_readonly] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_declare] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_protected] = ACTIONS(2388), + [anon_sym_override] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_any] = ACTIONS(2388), + [anon_sym_number] = ACTIONS(2388), + [anon_sym_boolean] = ACTIONS(2388), + [anon_sym_string] = ACTIONS(2388), + [anon_sym_symbol] = ACTIONS(2388), + [anon_sym_object] = ACTIONS(2388), + [anon_sym_property] = ACTIONS(2388), + [anon_sym_signal] = ACTIONS(2388), + [anon_sym_on] = ACTIONS(2388), + [anon_sym_required] = ACTIONS(2388), + [anon_sym_component] = ACTIONS(2388), + [anon_sym_abstract] = ACTIONS(2388), + [anon_sym_satisfies] = ACTIONS(2390), + [anon_sym_interface] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [sym__automatic_semicolon] = ACTIONS(2646), + [sym__ternary_qmark] = ACTIONS(2394), + [sym_html_comment] = ACTIONS(5), + }, + [491] = { + [sym_comment] = STATE(491), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_as] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_COMMA] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_GT] = ACTIONS(2368), + [anon_sym_DOT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_QMARK_DOT] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2368), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_GT_GT_GT] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_PERCENT] = ACTIONS(2368), + [anon_sym_STAR_STAR] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_LT_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2368), + [anon_sym_GT_EQ] = ACTIONS(2368), + [anon_sym_QMARK_QMARK] = ACTIONS(2368), + [anon_sym_instanceof] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(2370), + [sym__ternary_qmark] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [492] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3044), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7557), + [sym_string] = STATE(3558), + [sym_comment] = STATE(492), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym__automatic_semicolon] = ACTIONS(2650), + [sym_html_comment] = ACTIONS(5), + }, + [493] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(493), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6171), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2652), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2654), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [494] = { + [sym_comment] = STATE(494), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_as] = ACTIONS(2414), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_COMMA] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_typeof] = ACTIONS(2414), + [anon_sym_import] = ACTIONS(2414), + [anon_sym_from] = ACTIONS(2414), + [anon_sym_with] = ACTIONS(2414), + [anon_sym_var] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_switch] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_await] = ACTIONS(2414), + [anon_sym_in] = ACTIONS(2414), + [anon_sym_of] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_debugger] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_throw] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_yield] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_LTtemplate_GT] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2414), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_class] = ACTIONS(2414), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2414), + [anon_sym_QMARK_DOT] = ACTIONS(2414), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_using] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2414), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2414), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_STAR_STAR] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2414), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2414), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_instanceof] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_void] = ACTIONS(2414), + [anon_sym_delete] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2414), + [sym_number] = ACTIONS(2414), + [sym_private_property_identifier] = ACTIONS(2414), + [sym_this] = ACTIONS(2414), + [sym_super] = ACTIONS(2414), + [sym_true] = ACTIONS(2414), + [sym_false] = ACTIONS(2414), + [sym_null] = ACTIONS(2414), + [sym_undefined] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_property] = ACTIONS(2414), + [anon_sym_signal] = ACTIONS(2414), + [anon_sym_on] = ACTIONS(2414), + [anon_sym_required] = ACTIONS(2414), + [anon_sym_component] = ACTIONS(2414), + [anon_sym_abstract] = ACTIONS(2414), + [anon_sym_satisfies] = ACTIONS(2414), + [anon_sym_interface] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [sym__automatic_semicolon] = ACTIONS(2416), + [sym__ternary_qmark] = ACTIONS(2416), + [sym_html_comment] = ACTIONS(5), + }, + [495] = { + [sym_comment] = STATE(495), + [sym_identifier] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2424), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_as] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_COMMA] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_typeof] = ACTIONS(2422), + [anon_sym_import] = ACTIONS(2422), + [anon_sym_from] = ACTIONS(2422), + [anon_sym_with] = ACTIONS(2422), + [anon_sym_var] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_if] = ACTIONS(2422), + [anon_sym_switch] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_await] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_of] = ACTIONS(2422), + [anon_sym_while] = ACTIONS(2422), + [anon_sym_do] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2422), + [anon_sym_continue] = ACTIONS(2422), + [anon_sym_debugger] = ACTIONS(2422), + [anon_sym_return] = ACTIONS(2422), + [anon_sym_throw] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_yield] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_LTtemplate_GT] = ACTIONS(2422), + [anon_sym_GT] = ACTIONS(2424), + [anon_sym_DOT] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_class] = ACTIONS(2422), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2422), + [anon_sym_QMARK_DOT] = ACTIONS(2424), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_using] = ACTIONS(2422), + [anon_sym_AMP_AMP] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(2424), + [anon_sym_GT_GT] = ACTIONS(2424), + [anon_sym_GT_GT_GT] = ACTIONS(2424), + [anon_sym_LT_LT] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_CARET] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_SLASH] = ACTIONS(2422), + [anon_sym_PERCENT] = ACTIONS(2424), + [anon_sym_STAR_STAR] = ACTIONS(2424), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_LT_EQ] = ACTIONS(2424), + [anon_sym_EQ_EQ] = ACTIONS(2424), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2424), + [anon_sym_BANG_EQ] = ACTIONS(2424), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2424), + [anon_sym_GT_EQ] = ACTIONS(2424), + [anon_sym_QMARK_QMARK] = ACTIONS(2424), + [anon_sym_instanceof] = ACTIONS(2424), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_void] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2422), + [sym_number] = ACTIONS(2422), + [sym_private_property_identifier] = ACTIONS(2422), + [sym_this] = ACTIONS(2422), + [sym_super] = ACTIONS(2422), + [sym_true] = ACTIONS(2422), + [sym_false] = ACTIONS(2422), + [sym_null] = ACTIONS(2422), + [sym_undefined] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_property] = ACTIONS(2422), + [anon_sym_signal] = ACTIONS(2422), + [anon_sym_on] = ACTIONS(2422), + [anon_sym_required] = ACTIONS(2422), + [anon_sym_component] = ACTIONS(2422), + [anon_sym_abstract] = ACTIONS(2422), + [anon_sym_satisfies] = ACTIONS(2424), + [anon_sym_interface] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [sym__automatic_semicolon] = ACTIONS(2656), + [sym__ternary_qmark] = ACTIONS(2428), + [sym_html_comment] = ACTIONS(5), + }, + [496] = { + [sym_comment] = STATE(496), + [sym_identifier] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_as] = ACTIONS(2480), + [anon_sym_namespace] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_COMMA] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_import] = ACTIONS(2478), + [anon_sym_from] = ACTIONS(2478), + [anon_sym_with] = ACTIONS(2478), + [anon_sym_var] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_await] = ACTIONS(2478), + [anon_sym_in] = ACTIONS(2480), + [anon_sym_of] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_debugger] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_throw] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_yield] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_LTtemplate_GT] = ACTIONS(2478), + [anon_sym_GT] = ACTIONS(2480), + [anon_sym_DOT] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_class] = ACTIONS(2478), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_QMARK_DOT] = ACTIONS(2480), + [anon_sym_new] = ACTIONS(2478), + [anon_sym_using] = ACTIONS(2478), + [anon_sym_AMP_AMP] = ACTIONS(2480), + [anon_sym_PIPE_PIPE] = ACTIONS(2480), + [anon_sym_GT_GT] = ACTIONS(2480), + [anon_sym_GT_GT_GT] = ACTIONS(2480), + [anon_sym_LT_LT] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2480), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_SLASH] = ACTIONS(2478), + [anon_sym_PERCENT] = ACTIONS(2480), + [anon_sym_STAR_STAR] = ACTIONS(2480), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_LT_EQ] = ACTIONS(2480), + [anon_sym_EQ_EQ] = ACTIONS(2480), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), + [anon_sym_BANG_EQ] = ACTIONS(2480), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), + [anon_sym_GT_EQ] = ACTIONS(2480), + [anon_sym_QMARK_QMARK] = ACTIONS(2480), + [anon_sym_instanceof] = ACTIONS(2480), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2478), + [sym_number] = ACTIONS(2478), + [sym_private_property_identifier] = ACTIONS(2478), + [sym_this] = ACTIONS(2478), + [sym_super] = ACTIONS(2478), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [sym_null] = ACTIONS(2478), + [sym_undefined] = ACTIONS(2478), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_override] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_any] = ACTIONS(2478), + [anon_sym_number] = ACTIONS(2478), + [anon_sym_boolean] = ACTIONS(2478), + [anon_sym_string] = ACTIONS(2478), + [anon_sym_symbol] = ACTIONS(2478), + [anon_sym_object] = ACTIONS(2478), + [anon_sym_property] = ACTIONS(2478), + [anon_sym_signal] = ACTIONS(2478), + [anon_sym_on] = ACTIONS(2478), + [anon_sym_required] = ACTIONS(2478), + [anon_sym_component] = ACTIONS(2478), + [anon_sym_abstract] = ACTIONS(2478), + [anon_sym_satisfies] = ACTIONS(2480), + [anon_sym_interface] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [sym__automatic_semicolon] = ACTIONS(2658), + [sym__ternary_qmark] = ACTIONS(2484), + [sym_html_comment] = ACTIONS(5), + }, + [497] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(497), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6083), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2660), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2662), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [498] = { + [sym_comment] = STATE(498), + [sym_identifier] = ACTIONS(2402), + [anon_sym_export] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2402), + [anon_sym_as] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_COMMA] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2402), + [anon_sym_import] = ACTIONS(2402), + [anon_sym_from] = ACTIONS(2402), + [anon_sym_with] = ACTIONS(2402), + [anon_sym_var] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_switch] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_await] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2404), + [anon_sym_of] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_debugger] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_throw] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_yield] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LTtemplate_GT] = ACTIONS(2402), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_DOT] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_class] = ACTIONS(2402), + [anon_sym_async] = ACTIONS(2402), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_QMARK_DOT] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2402), + [anon_sym_using] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_GT_GT_GT] = ACTIONS(2404), + [anon_sym_LT_LT] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_SLASH] = ACTIONS(2402), + [anon_sym_PERCENT] = ACTIONS(2404), + [anon_sym_STAR_STAR] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_LT_EQ] = ACTIONS(2404), + [anon_sym_EQ_EQ] = ACTIONS(2404), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2404), + [anon_sym_BANG_EQ] = ACTIONS(2404), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2404), + [anon_sym_GT_EQ] = ACTIONS(2404), + [anon_sym_QMARK_QMARK] = ACTIONS(2404), + [anon_sym_instanceof] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_void] = ACTIONS(2402), + [anon_sym_delete] = ACTIONS(2402), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2402), + [sym_number] = ACTIONS(2402), + [sym_private_property_identifier] = ACTIONS(2402), + [sym_this] = ACTIONS(2402), + [sym_super] = ACTIONS(2402), + [sym_true] = ACTIONS(2402), + [sym_false] = ACTIONS(2402), + [sym_null] = ACTIONS(2402), + [sym_undefined] = ACTIONS(2402), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_readonly] = ACTIONS(2402), + [anon_sym_get] = ACTIONS(2402), + [anon_sym_set] = ACTIONS(2402), + [anon_sym_declare] = ACTIONS(2402), + [anon_sym_public] = ACTIONS(2402), + [anon_sym_private] = ACTIONS(2402), + [anon_sym_protected] = ACTIONS(2402), + [anon_sym_override] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_any] = ACTIONS(2402), + [anon_sym_number] = ACTIONS(2402), + [anon_sym_boolean] = ACTIONS(2402), + [anon_sym_string] = ACTIONS(2402), + [anon_sym_symbol] = ACTIONS(2402), + [anon_sym_object] = ACTIONS(2402), + [anon_sym_property] = ACTIONS(2402), + [anon_sym_signal] = ACTIONS(2402), + [anon_sym_on] = ACTIONS(2402), + [anon_sym_required] = ACTIONS(2402), + [anon_sym_component] = ACTIONS(2402), + [anon_sym_abstract] = ACTIONS(2402), + [anon_sym_satisfies] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [sym__automatic_semicolon] = ACTIONS(2664), + [sym__ternary_qmark] = ACTIONS(2408), + [sym_html_comment] = ACTIONS(5), + }, + [499] = { + [sym_comment] = STATE(499), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2342), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_QMARK_DOT] = ACTIONS(2342), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_instanceof] = ACTIONS(2342), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_satisfies] = ACTIONS(2342), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2666), + [sym__ternary_qmark] = ACTIONS(2346), + [sym_html_comment] = ACTIONS(5), + }, + [500] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3099), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7430), + [sym_string] = STATE(3558), + [sym_comment] = STATE(500), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(2668), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym__automatic_semicolon] = ACTIONS(2670), + [sym_html_comment] = ACTIONS(5), + }, + [501] = { + [sym_comment] = STATE(501), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_QMARK_DOT] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_GT_GT] = ACTIONS(2418), + [anon_sym_GT_GT_GT] = ACTIONS(2418), + [anon_sym_LT_LT] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_PERCENT] = ACTIONS(2418), + [anon_sym_STAR_STAR] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2418), + [anon_sym_QMARK_QMARK] = ACTIONS(2418), + [anon_sym_instanceof] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_satisfies] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2420), + [sym__ternary_qmark] = ACTIONS(2420), + [sym_html_comment] = ACTIONS(5), + }, + [502] = { + [sym_comment] = STATE(502), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_STAR] = ACTIONS(2350), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_COMMA] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_GT] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_QMARK_DOT] = ACTIONS(2350), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_AMP_AMP] = ACTIONS(2350), + [anon_sym_PIPE_PIPE] = ACTIONS(2350), + [anon_sym_GT_GT] = ACTIONS(2350), + [anon_sym_GT_GT_GT] = ACTIONS(2350), + [anon_sym_LT_LT] = ACTIONS(2350), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_PERCENT] = ACTIONS(2350), + [anon_sym_STAR_STAR] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_LT_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), + [anon_sym_GT_EQ] = ACTIONS(2350), + [anon_sym_QMARK_QMARK] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_satisfies] = ACTIONS(2350), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2672), + [sym__ternary_qmark] = ACTIONS(2354), + [sym_html_comment] = ACTIONS(5), + }, + [503] = { + [sym_comment] = STATE(503), + [sym_identifier] = ACTIONS(2360), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_as] = ACTIONS(2362), + [anon_sym_namespace] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_typeof] = ACTIONS(2360), + [anon_sym_import] = ACTIONS(2360), + [anon_sym_from] = ACTIONS(2360), + [anon_sym_with] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_switch] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_await] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2362), + [anon_sym_of] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_debugger] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_throw] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [anon_sym_LTtemplate_GT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_class] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(2362), + [anon_sym_new] = ACTIONS(2360), + [anon_sym_using] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2362), + [anon_sym_GT_GT] = ACTIONS(2362), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_PIPE] = ACTIONS(2362), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_PERCENT] = ACTIONS(2362), + [anon_sym_STAR_STAR] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2362), + [anon_sym_EQ_EQ] = ACTIONS(2362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2362), + [anon_sym_BANG_EQ] = ACTIONS(2362), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2362), + [anon_sym_GT_EQ] = ACTIONS(2362), + [anon_sym_QMARK_QMARK] = ACTIONS(2362), + [anon_sym_instanceof] = ACTIONS(2362), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_void] = ACTIONS(2360), + [anon_sym_delete] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2360), + [sym_number] = ACTIONS(2360), + [sym_private_property_identifier] = ACTIONS(2360), + [sym_this] = ACTIONS(2360), + [sym_super] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_null] = ACTIONS(2360), + [sym_undefined] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_readonly] = ACTIONS(2360), + [anon_sym_get] = ACTIONS(2360), + [anon_sym_set] = ACTIONS(2360), + [anon_sym_declare] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_protected] = ACTIONS(2360), + [anon_sym_override] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_any] = ACTIONS(2360), + [anon_sym_number] = ACTIONS(2360), + [anon_sym_boolean] = ACTIONS(2360), + [anon_sym_string] = ACTIONS(2360), + [anon_sym_symbol] = ACTIONS(2360), + [anon_sym_object] = ACTIONS(2360), + [anon_sym_property] = ACTIONS(2360), + [anon_sym_signal] = ACTIONS(2360), + [anon_sym_on] = ACTIONS(2360), + [anon_sym_required] = ACTIONS(2360), + [anon_sym_component] = ACTIONS(2360), + [anon_sym_abstract] = ACTIONS(2360), + [anon_sym_satisfies] = ACTIONS(2362), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [sym__automatic_semicolon] = ACTIONS(2674), + [sym__ternary_qmark] = ACTIONS(2366), + [sym_html_comment] = ACTIONS(5), + }, + [504] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(504), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6164), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1291), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2600), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [505] = { + [sym_comment] = STATE(505), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_as] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_COMMA] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_in] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_GT] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_QMARK_DOT] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2356), + [anon_sym_GT_GT] = ACTIONS(2356), + [anon_sym_GT_GT_GT] = ACTIONS(2356), + [anon_sym_LT_LT] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_CARET] = ACTIONS(2356), + [anon_sym_PIPE] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_PERCENT] = ACTIONS(2356), + [anon_sym_STAR_STAR] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_LT_EQ] = ACTIONS(2356), + [anon_sym_EQ_EQ] = ACTIONS(2356), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2356), + [anon_sym_BANG_EQ] = ACTIONS(2356), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2356), + [anon_sym_GT_EQ] = ACTIONS(2356), + [anon_sym_QMARK_QMARK] = ACTIONS(2356), + [anon_sym_instanceof] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_satisfies] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym__automatic_semicolon] = ACTIONS(2358), + [sym__ternary_qmark] = ACTIONS(2358), + [sym_html_comment] = ACTIONS(5), + }, + [506] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(506), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_in] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [507] = { + [sym_comment] = STATE(507), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_typeof] = ACTIONS(2410), + [anon_sym_import] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2410), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_debugger] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_throw] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LTtemplate_GT] = ACTIONS(2410), + [anon_sym_GT] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_class] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_QMARK_DOT] = ACTIONS(2410), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_PIPE_PIPE] = ACTIONS(2410), + [anon_sym_GT_GT] = ACTIONS(2410), + [anon_sym_GT_GT_GT] = ACTIONS(2410), + [anon_sym_LT_LT] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_PERCENT] = ACTIONS(2410), + [anon_sym_STAR_STAR] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_LT_EQ] = ACTIONS(2410), + [anon_sym_EQ_EQ] = ACTIONS(2410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2410), + [anon_sym_BANG_EQ] = ACTIONS(2410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2410), + [anon_sym_GT_EQ] = ACTIONS(2410), + [anon_sym_QMARK_QMARK] = ACTIONS(2410), + [anon_sym_instanceof] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2410), + [anon_sym_delete] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_private_property_identifier] = ACTIONS(2410), + [sym_this] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_true] = ACTIONS(2410), + [sym_false] = ACTIONS(2410), + [sym_null] = ACTIONS(2410), + [sym_undefined] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_abstract] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(2410), + [anon_sym_interface] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2412), + [sym__ternary_qmark] = ACTIONS(2412), + [sym_html_comment] = ACTIONS(5), + }, + [508] = { + [sym_comment] = STATE(508), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_as] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_COMMA] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_in] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_QMARK_DOT] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_GT_GT_GT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_STAR_STAR] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2285), + [anon_sym_BANG_EQ] = ACTIONS(2285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2285), + [anon_sym_QMARK_QMARK] = ACTIONS(2285), + [anon_sym_instanceof] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_satisfies] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(2676), + [sym__ternary_qmark] = ACTIONS(2374), + [sym_html_comment] = ACTIONS(5), + }, + [509] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3086), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7682), + [sym_string] = STATE(3558), + [sym_comment] = STATE(509), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym__automatic_semicolon] = ACTIONS(2680), + [sym_html_comment] = ACTIONS(5), + }, + [510] = { + [sym_comment] = STATE(510), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_typeof] = ACTIONS(2332), + [anon_sym_import] = ACTIONS(2332), + [anon_sym_from] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_switch] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_await] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2334), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_throw] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_LTtemplate_GT] = ACTIONS(2332), + [anon_sym_GT] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2332), + [anon_sym_class] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_QMARK_DOT] = ACTIONS(2334), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_using] = ACTIONS(2332), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2334), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_void] = ACTIONS(2332), + [anon_sym_delete] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2332), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2332), + [sym_number] = ACTIONS(2332), + [sym_private_property_identifier] = ACTIONS(2332), + [sym_this] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_undefined] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_property] = ACTIONS(2332), + [anon_sym_signal] = ACTIONS(2332), + [anon_sym_on] = ACTIONS(2332), + [anon_sym_required] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_satisfies] = ACTIONS(2334), + [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(2682), + [sym__ternary_qmark] = ACTIONS(2338), + [sym_html_comment] = ACTIONS(5), + }, + [511] = { + [sym_comment] = STATE(511), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_STAR] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_as] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_COMMA] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_from] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_in] = ACTIONS(2328), + [anon_sym_of] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_LTtemplate_GT] = ACTIONS(2328), + [anon_sym_GT] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2328), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_QMARK_DOT] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_using] = ACTIONS(2328), + [anon_sym_AMP_AMP] = ACTIONS(2328), + [anon_sym_PIPE_PIPE] = ACTIONS(2328), + [anon_sym_GT_GT] = ACTIONS(2328), + [anon_sym_GT_GT_GT] = ACTIONS(2328), + [anon_sym_LT_LT] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2328), + [anon_sym_CARET] = ACTIONS(2328), + [anon_sym_PIPE] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_PERCENT] = ACTIONS(2328), + [anon_sym_STAR_STAR] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_LT_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2328), + [anon_sym_GT_EQ] = ACTIONS(2328), + [anon_sym_QMARK_QMARK] = ACTIONS(2328), + [anon_sym_instanceof] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2328), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2328), + [sym_number] = ACTIONS(2328), + [sym_private_property_identifier] = ACTIONS(2328), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_property] = ACTIONS(2328), + [anon_sym_signal] = ACTIONS(2328), + [anon_sym_on] = ACTIONS(2328), + [anon_sym_required] = ACTIONS(2328), + [anon_sym_component] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_satisfies] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym__automatic_semicolon] = ACTIONS(2330), + [sym__ternary_qmark] = ACTIONS(2330), + [sym_html_comment] = ACTIONS(5), + }, + [512] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3124), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8176), + [sym_string] = STATE(3558), + [sym_comment] = STATE(512), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym__automatic_semicolon] = ACTIONS(2686), + [sym_html_comment] = ACTIONS(5), + }, + [513] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3031), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7917), + [sym_string] = STATE(3558), + [sym_comment] = STATE(513), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym__automatic_semicolon] = ACTIONS(2690), + [sym_html_comment] = ACTIONS(5), + }, + [514] = { + [sym_comment] = STATE(514), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_in] = ACTIONS(2376), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2376), + [anon_sym_DOT] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_QMARK_DOT] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_GT_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_AMP] = ACTIONS(2376), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_PIPE] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_PERCENT] = ACTIONS(2376), + [anon_sym_STAR_STAR] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_QMARK_QMARK] = ACTIONS(2376), + [anon_sym_instanceof] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_satisfies] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(2378), + [sym__ternary_qmark] = ACTIONS(2378), + [sym_html_comment] = ACTIONS(5), + }, + [515] = { + [sym_comment] = STATE(515), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_as] = ACTIONS(2472), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_COMMA] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2472), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_QMARK_DOT] = ACTIONS(2472), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2472), + [anon_sym_PIPE_PIPE] = ACTIONS(2472), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2472), + [anon_sym_LT_LT] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2472), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_PERCENT] = ACTIONS(2472), + [anon_sym_STAR_STAR] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_LT_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2472), + [anon_sym_GT_EQ] = ACTIONS(2472), + [anon_sym_QMARK_QMARK] = ACTIONS(2472), + [anon_sym_instanceof] = ACTIONS(2472), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_satisfies] = ACTIONS(2472), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2692), + [sym__ternary_qmark] = ACTIONS(2476), + [sym_html_comment] = ACTIONS(5), + }, + [516] = { + [sym_comment] = STATE(516), + [sym_identifier] = ACTIONS(2380), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_as] = ACTIONS(2380), + [anon_sym_namespace] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2380), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_typeof] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2380), + [anon_sym_from] = ACTIONS(2380), + [anon_sym_with] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_switch] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_await] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_of] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_debugger] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_LTtemplate_GT] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2380), + [anon_sym_DOT] = ACTIONS(2380), + [anon_sym_DQUOTE] = ACTIONS(2380), + [anon_sym_SQUOTE] = ACTIONS(2380), + [anon_sym_class] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_QMARK_DOT] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_using] = ACTIONS(2380), + [anon_sym_AMP_AMP] = ACTIONS(2380), + [anon_sym_PIPE_PIPE] = ACTIONS(2380), + [anon_sym_GT_GT] = ACTIONS(2380), + [anon_sym_GT_GT_GT] = ACTIONS(2380), + [anon_sym_LT_LT] = ACTIONS(2380), + [anon_sym_AMP] = ACTIONS(2380), + [anon_sym_CARET] = ACTIONS(2380), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_PERCENT] = ACTIONS(2380), + [anon_sym_STAR_STAR] = ACTIONS(2380), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_QMARK_QMARK] = ACTIONS(2380), + [anon_sym_instanceof] = ACTIONS(2380), + [anon_sym_TILDE] = ACTIONS(2380), + [anon_sym_void] = ACTIONS(2380), + [anon_sym_delete] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2380), + [anon_sym_DASH_DASH] = ACTIONS(2380), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2380), + [sym_number] = ACTIONS(2380), + [sym_private_property_identifier] = ACTIONS(2380), + [sym_this] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_true] = ACTIONS(2380), + [sym_false] = ACTIONS(2380), + [sym_null] = ACTIONS(2380), + [sym_undefined] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_readonly] = ACTIONS(2380), + [anon_sym_get] = ACTIONS(2380), + [anon_sym_set] = ACTIONS(2380), + [anon_sym_declare] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_protected] = ACTIONS(2380), + [anon_sym_override] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_any] = ACTIONS(2380), + [anon_sym_number] = ACTIONS(2380), + [anon_sym_boolean] = ACTIONS(2380), + [anon_sym_string] = ACTIONS(2380), + [anon_sym_symbol] = ACTIONS(2380), + [anon_sym_object] = ACTIONS(2380), + [anon_sym_property] = ACTIONS(2380), + [anon_sym_signal] = ACTIONS(2380), + [anon_sym_on] = ACTIONS(2380), + [anon_sym_required] = ACTIONS(2380), + [anon_sym_component] = ACTIONS(2380), + [anon_sym_abstract] = ACTIONS(2380), + [anon_sym_satisfies] = ACTIONS(2380), + [anon_sym_interface] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [sym__automatic_semicolon] = ACTIONS(2382), + [sym__ternary_qmark] = ACTIONS(2382), + [sym_html_comment] = ACTIONS(5), + }, + [517] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2336), + [sym_subscript_expression] = STATE(2336), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5239), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(517), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_pattern] = STATE(6040), + [sym_rest_pattern] = STATE(5255), + [sym_non_null_expression] = STATE(2336), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1297), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2694), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [518] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3010), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7404), + [sym_string] = STATE(3558), + [sym_comment] = STATE(518), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym__automatic_semicolon] = ACTIONS(2698), + [sym_html_comment] = ACTIONS(5), + }, + [519] = { + [sym_comment] = STATE(519), + [sym_identifier] = ACTIONS(2448), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_as] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_COMMA] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_typeof] = ACTIONS(2448), + [anon_sym_import] = ACTIONS(2448), + [anon_sym_from] = ACTIONS(2448), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_switch] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_await] = ACTIONS(2448), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_of] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_debugger] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LTtemplate_GT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2450), + [anon_sym_DOT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_class] = ACTIONS(2448), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_QMARK_DOT] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2448), + [anon_sym_using] = ACTIONS(2448), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2450), + [anon_sym_GT_GT_GT] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_SLASH] = ACTIONS(2448), + [anon_sym_PERCENT] = ACTIONS(2450), + [anon_sym_STAR_STAR] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_QMARK_QMARK] = ACTIONS(2450), + [anon_sym_instanceof] = ACTIONS(2450), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_void] = ACTIONS(2448), + [anon_sym_delete] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2448), + [sym_number] = ACTIONS(2448), + [sym_private_property_identifier] = ACTIONS(2448), + [sym_this] = ACTIONS(2448), + [sym_super] = ACTIONS(2448), + [sym_true] = ACTIONS(2448), + [sym_false] = ACTIONS(2448), + [sym_null] = ACTIONS(2448), + [sym_undefined] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_readonly] = ACTIONS(2448), + [anon_sym_get] = ACTIONS(2448), + [anon_sym_set] = ACTIONS(2448), + [anon_sym_declare] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_protected] = ACTIONS(2448), + [anon_sym_override] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_any] = ACTIONS(2448), + [anon_sym_number] = ACTIONS(2448), + [anon_sym_boolean] = ACTIONS(2448), + [anon_sym_string] = ACTIONS(2448), + [anon_sym_symbol] = ACTIONS(2448), + [anon_sym_object] = ACTIONS(2448), + [anon_sym_property] = ACTIONS(2448), + [anon_sym_signal] = ACTIONS(2448), + [anon_sym_on] = ACTIONS(2448), + [anon_sym_required] = ACTIONS(2448), + [anon_sym_component] = ACTIONS(2448), + [anon_sym_abstract] = ACTIONS(2448), + [anon_sym_satisfies] = ACTIONS(2450), + [anon_sym_interface] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [sym__automatic_semicolon] = ACTIONS(2700), + [sym__ternary_qmark] = ACTIONS(2454), + [sym_html_comment] = ACTIONS(5), + }, + [520] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3122), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8068), + [sym_string] = STATE(3558), + [sym_comment] = STATE(520), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym__automatic_semicolon] = ACTIONS(2704), + [sym_html_comment] = ACTIONS(5), + }, + [521] = { + [sym_comment] = STATE(521), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_COMMA] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2396), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_GT] = ACTIONS(2396), + [anon_sym_DOT] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_QMARK_DOT] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_GT_GT_GT] = ACTIONS(2396), + [anon_sym_LT_LT] = ACTIONS(2396), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_CARET] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_PERCENT] = ACTIONS(2396), + [anon_sym_STAR_STAR] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_LT_EQ] = ACTIONS(2396), + [anon_sym_EQ_EQ] = ACTIONS(2396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2396), + [anon_sym_BANG_EQ] = ACTIONS(2396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2396), + [anon_sym_GT_EQ] = ACTIONS(2396), + [anon_sym_QMARK_QMARK] = ACTIONS(2396), + [anon_sym_instanceof] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_satisfies] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2398), + [sym__ternary_qmark] = ACTIONS(2398), + [sym_html_comment] = ACTIONS(5), + }, + [522] = { + [sym_comment] = STATE(522), + [sym_identifier] = ACTIONS(2430), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2432), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_as] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_COMMA] = ACTIONS(2432), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_typeof] = ACTIONS(2430), + [anon_sym_import] = ACTIONS(2430), + [anon_sym_from] = ACTIONS(2430), + [anon_sym_with] = ACTIONS(2430), + [anon_sym_var] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_const] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_switch] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_await] = ACTIONS(2430), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_of] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2430), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_debugger] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_throw] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_yield] = ACTIONS(2430), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_LTtemplate_GT] = ACTIONS(2430), + [anon_sym_GT] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(2432), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_class] = ACTIONS(2430), + [anon_sym_async] = ACTIONS(2430), + [anon_sym_function] = ACTIONS(2430), + [anon_sym_QMARK_DOT] = ACTIONS(2432), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_using] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2432), + [anon_sym_PIPE_PIPE] = ACTIONS(2432), + [anon_sym_GT_GT] = ACTIONS(2432), + [anon_sym_GT_GT_GT] = ACTIONS(2432), + [anon_sym_LT_LT] = ACTIONS(2432), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_CARET] = ACTIONS(2432), + [anon_sym_PIPE] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_SLASH] = ACTIONS(2430), + [anon_sym_PERCENT] = ACTIONS(2432), + [anon_sym_STAR_STAR] = ACTIONS(2432), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_LT_EQ] = ACTIONS(2432), + [anon_sym_EQ_EQ] = ACTIONS(2432), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), + [anon_sym_BANG_EQ] = ACTIONS(2432), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), + [anon_sym_GT_EQ] = ACTIONS(2432), + [anon_sym_QMARK_QMARK] = ACTIONS(2432), + [anon_sym_instanceof] = ACTIONS(2432), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_void] = ACTIONS(2430), + [anon_sym_delete] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_number] = ACTIONS(2430), + [sym_private_property_identifier] = ACTIONS(2430), + [sym_this] = ACTIONS(2430), + [sym_super] = ACTIONS(2430), + [sym_true] = ACTIONS(2430), + [sym_false] = ACTIONS(2430), + [sym_null] = ACTIONS(2430), + [sym_undefined] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2430), + [anon_sym_readonly] = ACTIONS(2430), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_declare] = ACTIONS(2430), + [anon_sym_public] = ACTIONS(2430), + [anon_sym_private] = ACTIONS(2430), + [anon_sym_protected] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_any] = ACTIONS(2430), + [anon_sym_number] = ACTIONS(2430), + [anon_sym_boolean] = ACTIONS(2430), + [anon_sym_string] = ACTIONS(2430), + [anon_sym_symbol] = ACTIONS(2430), + [anon_sym_object] = ACTIONS(2430), + [anon_sym_property] = ACTIONS(2430), + [anon_sym_signal] = ACTIONS(2430), + [anon_sym_on] = ACTIONS(2430), + [anon_sym_required] = ACTIONS(2430), + [anon_sym_component] = ACTIONS(2430), + [anon_sym_abstract] = ACTIONS(2430), + [anon_sym_satisfies] = ACTIONS(2432), + [anon_sym_interface] = ACTIONS(2430), + [anon_sym_enum] = ACTIONS(2430), + [sym__automatic_semicolon] = ACTIONS(2706), + [sym__ternary_qmark] = ACTIONS(2436), + [sym_html_comment] = ACTIONS(5), + }, + [523] = { + [sym_comment] = STATE(523), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_as] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_COMMA] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_GT] = ACTIONS(2368), + [anon_sym_DOT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_QMARK_DOT] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2368), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_GT_GT_GT] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_PERCENT] = ACTIONS(2368), + [anon_sym_STAR_STAR] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_LT_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2368), + [anon_sym_GT_EQ] = ACTIONS(2368), + [anon_sym_QMARK_QMARK] = ACTIONS(2368), + [anon_sym_instanceof] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(2708), + [sym__ternary_qmark] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [524] = { + [sym_comment] = STATE(524), + [sym_identifier] = ACTIONS(2384), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_as] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_typeof] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2384), + [anon_sym_from] = ACTIONS(2384), + [anon_sym_with] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2384), + [anon_sym_await] = ACTIONS(2384), + [anon_sym_in] = ACTIONS(2384), + [anon_sym_of] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_debugger] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_LTtemplate_GT] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DQUOTE] = ACTIONS(2384), + [anon_sym_SQUOTE] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_QMARK_DOT] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_using] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_GT_GT_GT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_STAR_STAR] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_QMARK_QMARK] = ACTIONS(2384), + [anon_sym_instanceof] = ACTIONS(2384), + [anon_sym_TILDE] = ACTIONS(2384), + [anon_sym_void] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2384), + [sym_number] = ACTIONS(2384), + [sym_private_property_identifier] = ACTIONS(2384), + [sym_this] = ACTIONS(2384), + [sym_super] = ACTIONS(2384), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_undefined] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_readonly] = ACTIONS(2384), + [anon_sym_get] = ACTIONS(2384), + [anon_sym_set] = ACTIONS(2384), + [anon_sym_declare] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_protected] = ACTIONS(2384), + [anon_sym_override] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_any] = ACTIONS(2384), + [anon_sym_number] = ACTIONS(2384), + [anon_sym_boolean] = ACTIONS(2384), + [anon_sym_string] = ACTIONS(2384), + [anon_sym_symbol] = ACTIONS(2384), + [anon_sym_object] = ACTIONS(2384), + [anon_sym_property] = ACTIONS(2384), + [anon_sym_signal] = ACTIONS(2384), + [anon_sym_on] = ACTIONS(2384), + [anon_sym_required] = ACTIONS(2384), + [anon_sym_component] = ACTIONS(2384), + [anon_sym_abstract] = ACTIONS(2384), + [anon_sym_satisfies] = ACTIONS(2384), + [anon_sym_interface] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [sym__automatic_semicolon] = ACTIONS(2386), + [sym__ternary_qmark] = ACTIONS(2386), + [sym_html_comment] = ACTIONS(5), + }, + [525] = { + [sym_comment] = STATE(525), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_as] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_typeof] = ACTIONS(2440), + [anon_sym_import] = ACTIONS(2440), + [anon_sym_from] = ACTIONS(2440), + [anon_sym_with] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_await] = ACTIONS(2440), + [anon_sym_in] = ACTIONS(2442), + [anon_sym_of] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_debugger] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_yield] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_LTtemplate_GT] = ACTIONS(2440), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_DOT] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_SQUOTE] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_QMARK_DOT] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_PIPE_PIPE] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2442), + [anon_sym_GT_GT_GT] = ACTIONS(2442), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_PERCENT] = ACTIONS(2442), + [anon_sym_STAR_STAR] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_LT_EQ] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2442), + [anon_sym_BANG_EQ] = ACTIONS(2442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2442), + [anon_sym_GT_EQ] = ACTIONS(2442), + [anon_sym_QMARK_QMARK] = ACTIONS(2442), + [anon_sym_instanceof] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2440), + [anon_sym_void] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2440), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2440), + [sym_number] = ACTIONS(2440), + [sym_private_property_identifier] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [sym_super] = ACTIONS(2440), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [sym_null] = ACTIONS(2440), + [sym_undefined] = ACTIONS(2440), + [anon_sym_AT] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), + [anon_sym_property] = ACTIONS(2440), + [anon_sym_signal] = ACTIONS(2440), + [anon_sym_on] = ACTIONS(2440), + [anon_sym_required] = ACTIONS(2440), + [anon_sym_component] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_satisfies] = ACTIONS(2442), + [anon_sym_interface] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [sym__automatic_semicolon] = ACTIONS(2710), + [sym__ternary_qmark] = ACTIONS(2446), + [sym_html_comment] = ACTIONS(5), + }, + [526] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3279), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8406), + [sym_string] = STATE(3056), + [sym_comment] = STATE(526), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(2712), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [527] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3248), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8234), + [sym_string] = STATE(3056), + [sym_comment] = STATE(527), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2714), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [528] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3284), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8369), + [sym_string] = STATE(3056), + [sym_comment] = STATE(528), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [529] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3151), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8291), + [sym_string] = STATE(3056), + [sym_comment] = STATE(529), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2718), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [530] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3166), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8350), + [sym_string] = STATE(3056), + [sym_comment] = STATE(530), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [531] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3279), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8406), + [sym_string] = STATE(3056), + [sym_comment] = STATE(531), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(2722), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [532] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3274), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8418), + [sym_string] = STATE(3056), + [sym_comment] = STATE(532), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [533] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2554), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2554), + [sym_subscript_expression] = STATE(2554), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(7188), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(533), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2554), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2726), + [anon_sym_export] = ACTIONS(2728), + [anon_sym_type] = ACTIONS(2728), + [anon_sym_namespace] = ACTIONS(2730), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2728), + [anon_sym_var] = ACTIONS(2734), + [anon_sym_let] = ACTIONS(2736), + [anon_sym_const] = ACTIONS(2738), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2728), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2742), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2744), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2746), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2728), + [anon_sym_readonly] = ACTIONS(2728), + [anon_sym_get] = ACTIONS(2728), + [anon_sym_set] = ACTIONS(2728), + [anon_sym_declare] = ACTIONS(2728), + [anon_sym_public] = ACTIONS(2728), + [anon_sym_private] = ACTIONS(2728), + [anon_sym_protected] = ACTIONS(2728), + [anon_sym_override] = ACTIONS(2728), + [anon_sym_module] = ACTIONS(2728), + [anon_sym_any] = ACTIONS(2728), + [anon_sym_number] = ACTIONS(2728), + [anon_sym_boolean] = ACTIONS(2728), + [anon_sym_string] = ACTIONS(2728), + [anon_sym_symbol] = ACTIONS(2728), + [anon_sym_object] = ACTIONS(2728), + [anon_sym_property] = ACTIONS(2728), + [anon_sym_signal] = ACTIONS(2728), + [anon_sym_on] = ACTIONS(2728), + [anon_sym_required] = ACTIONS(2728), + [anon_sym_component] = ACTIONS(2728), + [sym_html_comment] = ACTIONS(5), + }, + [534] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3278), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8366), + [sym_string] = STATE(3056), + [sym_comment] = STATE(534), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2748), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [535] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3145), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8269), + [sym_string] = STATE(3056), + [sym_comment] = STATE(535), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2750), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [536] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3664), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3013), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(536), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), + }, + [537] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3735), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2976), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(537), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), + }, + [538] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3022), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3515), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(538), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), + }, + [539] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3126), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3609), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(539), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), + }, + [540] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3712), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3095), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(540), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), + }, + [541] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3023), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3506), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(541), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), + }, + [542] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3712), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3007), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(542), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), + }, + [543] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3590), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2998), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(543), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), + }, + [544] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3287), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8719), + [sym_string] = STATE(3056), + [sym_comment] = STATE(544), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [545] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3029), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3505), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(545), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), + }, + [546] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2877), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8711), + [sym_string] = STATE(3056), + [sym_comment] = STATE(546), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [547] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3085), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7679), + [sym_string] = STATE(3558), + [sym_comment] = STATE(547), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), + }, + [548] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2816), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8603), + [sym_string] = STATE(3056), + [sym_comment] = STATE(548), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), + }, + [549] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3138), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3746), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(549), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [98] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2187), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2229), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3391), - [sym_constructor_type] = STATE(3391), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3391), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(543), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3391), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3391), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1110), - [anon_sym_typeof] = ACTIONS(1152), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(930), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1164), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(1166), - [anon_sym_DASH] = ACTIONS(1166), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1168), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(944), - [sym_number] = ACTIONS(946), - [sym_this] = ACTIONS(948), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(950), - [sym_false] = ACTIONS(950), - [sym_null] = ACTIONS(950), - [sym_undefined] = ACTIONS(1174), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1176), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1178), - [anon_sym_number] = ACTIONS(1178), - [anon_sym_boolean] = ACTIONS(1178), - [anon_sym_string] = ACTIONS(1178), - [anon_sym_symbol] = ACTIONS(1178), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), + [550] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7403), + [sym_string] = STATE(3558), + [sym_comment] = STATE(550), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [99] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1847), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_nested_identifier] = STATE(4880), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1677), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3852), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3391), - [sym_constructor_type] = STATE(3391), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3391), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_type_arguments] = STATE(574), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4494), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3391), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3391), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1180), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_typeof] = ACTIONS(1186), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(42), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(1200), - [anon_sym_DASH] = ACTIONS(1200), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1202), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(984), - [sym_number] = ACTIONS(986), - [sym_this] = ACTIONS(988), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(990), - [sym_false] = ACTIONS(990), - [sym_null] = ACTIONS(990), - [sym_undefined] = ACTIONS(1208), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1210), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1212), - [anon_sym_number] = ACTIONS(1212), - [anon_sym_boolean] = ACTIONS(1212), - [anon_sym_string] = ACTIONS(1212), - [anon_sym_symbol] = ACTIONS(1212), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), + [551] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2870), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8676), + [sym_string] = STATE(3056), + [sym_comment] = STATE(551), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [100] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1511), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_STAR] = ACTIONS(1216), - [anon_sym_type] = ACTIONS(842), - [anon_sym_as] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(706), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_await] = ACTIONS(682), - [anon_sym_in] = ACTIONS(1218), - [anon_sym_of] = ACTIONS(842), - [anon_sym_COLON] = ACTIONS(1222), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_RBRACK] = ACTIONS(1222), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1218), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1218), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_QMARK_DOT] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1218), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1218), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1218), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), - [anon_sym_satisfies] = ACTIONS(1218), - [sym__ternary_qmark] = ACTIONS(1222), + [552] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3032), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7916), + [sym_string] = STATE(3558), + [sym_comment] = STATE(552), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [101] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1693), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_as] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_in] = ACTIONS(1218), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1218), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_DOT] = ACTIONS(1218), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_QMARK_DOT] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(201), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1218), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1218), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1218), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), - [anon_sym_satisfies] = ACTIONS(1218), - [sym__automatic_semicolon] = ACTIONS(1222), - [sym__ternary_qmark] = ACTIONS(1222), + [553] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8274), + [sym_string] = STATE(3056), + [sym_comment] = STATE(553), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [102] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1792), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(862), - [anon_sym_as] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_in] = ACTIONS(1218), - [anon_sym_of] = ACTIONS(862), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1218), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(1218), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_QMARK_DOT] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1218), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1218), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1218), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), - [anon_sym_satisfies] = ACTIONS(1218), - [sym__automatic_semicolon] = ACTIONS(1222), - [sym__ternary_qmark] = ACTIONS(1222), + [554] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3050), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3667), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(554), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [103] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1837), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_as] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_in] = ACTIONS(1218), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1218), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_DOT] = ACTIONS(1218), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_QMARK_DOT] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1218), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1218), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1218), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), - [anon_sym_satisfies] = ACTIONS(1218), - [anon_sym_implements] = ACTIONS(1218), - [sym__ternary_qmark] = ACTIONS(1222), + [555] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3650), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3012), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(555), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1923), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(1258), - [anon_sym_type] = ACTIONS(998), - [anon_sym_as] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_in] = ACTIONS(1218), - [anon_sym_of] = ACTIONS(998), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1218), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_DOT] = ACTIONS(1218), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_QMARK_DOT] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1218), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1218), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1218), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), - [anon_sym_satisfies] = ACTIONS(1218), - [sym__automatic_semicolon] = ACTIONS(1222), - [sym__ternary_qmark] = ACTIONS(1222), + [556] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3692), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3062), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(556), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [105] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2241), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_STAR] = ACTIONS(1266), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_as] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_in] = ACTIONS(1218), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_RBRACK] = ACTIONS(1222), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1218), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1218), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_QMARK_DOT] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1218), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1218), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1218), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), - [anon_sym_satisfies] = ACTIONS(1218), - [sym__ternary_qmark] = ACTIONS(1222), + [557] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3664), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3060), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(557), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2204), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_STAR] = ACTIONS(1274), - [anon_sym_type] = ACTIONS(916), - [anon_sym_as] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_in] = ACTIONS(1218), - [anon_sym_of] = ACTIONS(916), - [anon_sym_COLON] = ACTIONS(1222), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1218), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1218), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_QMARK_DOT] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1218), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1218), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1218), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), - [anon_sym_satisfies] = ACTIONS(1218), - [sym__ternary_qmark] = ACTIONS(1222), + [558] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3692), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3014), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(558), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [107] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2299), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_as] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_in] = ACTIONS(1218), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1218), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_DOT] = ACTIONS(1218), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_QMARK_DOT] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1218), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1218), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1218), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), - [anon_sym_satisfies] = ACTIONS(1218), - [sym__ternary_qmark] = ACTIONS(1222), + [559] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3712), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3303), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(559), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [108] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2353), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_as] = ACTIONS(1218), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(83), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_in] = ACTIONS(1218), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1218), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1218), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_QMARK_DOT] = ACTIONS(1222), - [anon_sym_new] = ACTIONS(651), - [anon_sym_AMP_AMP] = ACTIONS(1222), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_GT_GT] = ACTIONS(1218), - [anon_sym_GT_GT_GT] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1218), - [anon_sym_CARET] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1218), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_PERCENT] = ACTIONS(1222), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1218), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1218), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_QMARK_QMARK] = ACTIONS(1222), - [anon_sym_instanceof] = ACTIONS(1218), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), - [anon_sym_satisfies] = ACTIONS(1218), - [sym__ternary_qmark] = ACTIONS(1222), + [560] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3048), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7558), + [sym_string] = STATE(3558), + [sym_comment] = STATE(560), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_declaration] = STATE(3770), - [sym_import] = STATE(2118), - [sym_variable_declaration] = STATE(3636), - [sym_lexical_declaration] = STATE(3636), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1928), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(3636), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(3636), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(3636), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_function_signature] = STATE(3636), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(3636), - [sym_abstract_class_declaration] = STATE(3636), - [sym_module] = STATE(3636), - [sym_internal_module] = STATE(2306), - [sym_import_alias] = STATE(3636), - [sym_interface_declaration] = STATE(3636), - [sym_enum_declaration] = STATE(3636), - [sym_type_alias_declaration] = STATE(3636), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3579), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(1300), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(1302), - [anon_sym_from] = ACTIONS(998), - [anon_sym_var] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_function] = ACTIONS(1314), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(1318), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), - [anon_sym_abstract] = ACTIONS(1320), - [anon_sym_interface] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1324), + [561] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3138), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3816), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(561), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [110] = { - [sym_declaration] = STATE(3747), - [sym_import] = STATE(2118), - [sym_variable_declaration] = STATE(3636), - [sym_lexical_declaration] = STATE(3636), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1909), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(3636), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(3636), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(3636), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_function_signature] = STATE(3636), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(3636), - [sym_abstract_class_declaration] = STATE(3636), - [sym_module] = STATE(3636), - [sym_internal_module] = STATE(2306), - [sym_import_alias] = STATE(3636), - [sym_interface_declaration] = STATE(3636), - [sym_enum_declaration] = STATE(3636), - [sym_type_alias_declaration] = STATE(3636), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3579), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(1300), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(1302), - [anon_sym_from] = ACTIONS(998), - [anon_sym_var] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(1310), - [anon_sym_async] = ACTIONS(1312), - [anon_sym_function] = ACTIONS(1314), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(1318), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), - [anon_sym_abstract] = ACTIONS(1320), - [anon_sym_interface] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1324), + [562] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3650), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3047), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(562), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [111] = { - [sym_declaration] = STATE(803), - [sym_import] = STATE(2118), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1961), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3654), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(1326), - [anon_sym_namespace] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(1330), - [anon_sym_from] = ACTIONS(998), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(1332), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(1334), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), + [563] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3029), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3565), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(563), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_declaration] = STATE(845), - [sym_import] = STATE(2118), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1959), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(183), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3654), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(1326), - [anon_sym_namespace] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(1330), - [anon_sym_from] = ACTIONS(998), - [anon_sym_var] = ACTIONS(151), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(195), - [anon_sym_async] = ACTIONS(1332), - [anon_sym_function] = ACTIONS(199), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(1334), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(1336), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), + [564] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3286), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(564), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym__extends_clause_single] = STATE(6498), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_declaration] = STATE(845), - [sym_import] = STATE(2118), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1959), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(2297), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3756), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(1326), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(1330), - [anon_sym_from] = ACTIONS(998), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(574), - [anon_sym_async] = ACTIONS(1338), - [anon_sym_function] = ACTIONS(578), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(1340), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), + [565] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3168), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8239), + [sym_string] = STATE(3056), + [sym_comment] = STATE(565), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [114] = { - [sym_declaration] = STATE(2669), - [sym_import] = STATE(2118), - [sym_variable_declaration] = STATE(2613), - [sym_lexical_declaration] = STATE(2613), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1942), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(2613), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(2613), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(2613), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_function_signature] = STATE(2613), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(2613), - [sym_abstract_class_declaration] = STATE(2613), - [sym_module] = STATE(2613), - [sym_internal_module] = STATE(883), - [sym_import_alias] = STATE(2613), - [sym_interface_declaration] = STATE(2613), - [sym_enum_declaration] = STATE(2613), - [sym_type_alias_declaration] = STATE(2613), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3717), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(1344), - [anon_sym_namespace] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(1348), - [anon_sym_from] = ACTIONS(998), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(598), - [anon_sym_const] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(622), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_function] = ACTIONS(626), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), - [anon_sym_abstract] = ACTIONS(632), - [anon_sym_interface] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(636), + [566] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3126), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3756), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(566), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_declaration] = STATE(803), - [sym_import] = STATE(2118), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1961), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(785), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(785), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(785), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_function_signature] = STATE(785), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(2297), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3756), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(1326), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(1330), - [anon_sym_from] = ACTIONS(998), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(153), - [anon_sym_const] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(574), - [anon_sym_async] = ACTIONS(1338), - [anon_sym_function] = ACTIONS(578), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(1340), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(1342), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), - [anon_sym_abstract] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(237), - [anon_sym_enum] = ACTIONS(239), + [567] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3138), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3142), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(567), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_declaration] = STATE(2616), - [sym_import] = STATE(2118), - [sym_variable_declaration] = STATE(2613), - [sym_lexical_declaration] = STATE(2613), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1994), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_class_declaration] = STATE(2613), - [sym_function] = STATE(2118), - [sym_function_declaration] = STATE(2613), - [sym_generator_function] = STATE(2118), - [sym_generator_function_declaration] = STATE(2613), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_function_signature] = STATE(2613), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_ambient_declaration] = STATE(2613), - [sym_abstract_class_declaration] = STATE(2613), - [sym_module] = STATE(2613), - [sym_internal_module] = STATE(883), - [sym_import_alias] = STATE(2613), - [sym_interface_declaration] = STATE(2613), - [sym_enum_declaration] = STATE(2613), - [sym_type_alias_declaration] = STATE(2613), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3717), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(1344), - [anon_sym_namespace] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(1348), - [anon_sym_from] = ACTIONS(998), - [anon_sym_var] = ACTIONS(558), - [anon_sym_let] = ACTIONS(598), - [anon_sym_const] = ACTIONS(600), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(622), - [anon_sym_async] = ACTIONS(1350), - [anon_sym_function] = ACTIONS(626), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(1352), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(1354), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), - [anon_sym_abstract] = ACTIONS(632), - [anon_sym_interface] = ACTIONS(634), - [anon_sym_enum] = ACTIONS(636), + [568] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3092), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(7432), + [sym_string] = STATE(3558), + [sym_comment] = STATE(568), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [117] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(2707), - [sym_statement_block] = STATE(2707), - [sym_if_statement] = STATE(2707), - [sym_switch_statement] = STATE(2707), - [sym_try_statement] = STATE(2707), - [sym_with_statement] = STATE(2707), - [sym_empty_statement] = STATE(2707), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_definition] = STATE(4557), - [sym_ui_object_array] = STATE(4557), - [sym_ui_nested_identifier] = STATE(4106), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_type] = ACTIONS(1358), - [anon_sym_namespace] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_readonly] = ACTIONS(1358), - [anon_sym_get] = ACTIONS(1358), - [anon_sym_set] = ACTIONS(1358), - [anon_sym_declare] = ACTIONS(1358), - [anon_sym_public] = ACTIONS(1358), - [anon_sym_private] = ACTIONS(1358), - [anon_sym_protected] = ACTIONS(1358), - [anon_sym_override] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_any] = ACTIONS(1358), - [anon_sym_number] = ACTIONS(1358), - [anon_sym_boolean] = ACTIONS(1358), - [anon_sym_string] = ACTIONS(1358), - [anon_sym_symbol] = ACTIONS(1358), - [anon_sym_property] = ACTIONS(1358), - [anon_sym_signal] = ACTIONS(1358), - [anon_sym_on] = ACTIONS(1358), - [anon_sym_required] = ACTIONS(1358), - [anon_sym_component] = ACTIONS(1358), + [569] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2879), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8370), + [sym_string] = STATE(3056), + [sym_comment] = STATE(569), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [118] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(2736), - [sym_statement_block] = STATE(2736), - [sym_if_statement] = STATE(2736), - [sym_switch_statement] = STATE(2736), - [sym_try_statement] = STATE(2736), - [sym_with_statement] = STATE(2736), - [sym_empty_statement] = STATE(2736), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_definition] = STATE(4636), - [sym_ui_object_array] = STATE(4636), - [sym_ui_nested_identifier] = STATE(4106), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_type] = ACTIONS(1358), - [anon_sym_namespace] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_readonly] = ACTIONS(1358), - [anon_sym_get] = ACTIONS(1358), - [anon_sym_set] = ACTIONS(1358), - [anon_sym_declare] = ACTIONS(1358), - [anon_sym_public] = ACTIONS(1358), - [anon_sym_private] = ACTIONS(1358), - [anon_sym_protected] = ACTIONS(1358), - [anon_sym_override] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_any] = ACTIONS(1358), - [anon_sym_number] = ACTIONS(1358), - [anon_sym_boolean] = ACTIONS(1358), - [anon_sym_string] = ACTIONS(1358), - [anon_sym_symbol] = ACTIONS(1358), - [anon_sym_property] = ACTIONS(1358), - [anon_sym_signal] = ACTIONS(1358), - [anon_sym_on] = ACTIONS(1358), - [anon_sym_required] = ACTIONS(1358), - [anon_sym_component] = ACTIONS(1358), + [570] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3202), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8412), + [sym_string] = STATE(3056), + [sym_comment] = STATE(570), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [119] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(2733), - [sym_statement_block] = STATE(2733), - [sym_if_statement] = STATE(2733), - [sym_switch_statement] = STATE(2733), - [sym_try_statement] = STATE(2733), - [sym_with_statement] = STATE(2733), - [sym_empty_statement] = STATE(2733), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_definition] = STATE(2733), - [sym_ui_object_array] = STATE(2733), - [sym_ui_nested_identifier] = STATE(4277), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1366), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_type] = ACTIONS(1368), - [anon_sym_namespace] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1374), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_readonly] = ACTIONS(1368), - [anon_sym_get] = ACTIONS(1368), - [anon_sym_set] = ACTIONS(1368), - [anon_sym_declare] = ACTIONS(1368), - [anon_sym_public] = ACTIONS(1368), - [anon_sym_private] = ACTIONS(1368), - [anon_sym_protected] = ACTIONS(1368), - [anon_sym_override] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [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_property] = ACTIONS(1368), - [anon_sym_signal] = ACTIONS(1368), - [anon_sym_on] = ACTIONS(1368), - [anon_sym_required] = ACTIONS(1368), - [anon_sym_component] = ACTIONS(1368), + [571] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8447), + [sym_string] = STATE(3056), + [sym_comment] = STATE(571), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [120] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(2744), - [sym_statement_block] = STATE(2744), - [sym_if_statement] = STATE(2744), - [sym_switch_statement] = STATE(2744), - [sym_try_statement] = STATE(2744), - [sym_with_statement] = STATE(2744), - [sym_empty_statement] = STATE(2744), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_definition] = STATE(2744), - [sym_ui_object_array] = STATE(2744), - [sym_ui_nested_identifier] = STATE(4277), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1366), - [anon_sym_export] = ACTIONS(1368), - [anon_sym_type] = ACTIONS(1368), - [anon_sym_namespace] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1368), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(1372), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1374), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1368), - [anon_sym_readonly] = ACTIONS(1368), - [anon_sym_get] = ACTIONS(1368), - [anon_sym_set] = ACTIONS(1368), - [anon_sym_declare] = ACTIONS(1368), - [anon_sym_public] = ACTIONS(1368), - [anon_sym_private] = ACTIONS(1368), - [anon_sym_protected] = ACTIONS(1368), - [anon_sym_override] = ACTIONS(1368), - [anon_sym_module] = ACTIONS(1368), - [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_property] = ACTIONS(1368), - [anon_sym_signal] = ACTIONS(1368), - [anon_sym_on] = ACTIONS(1368), - [anon_sym_required] = ACTIONS(1368), - [anon_sym_component] = ACTIONS(1368), + [572] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3120), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8145), + [sym_string] = STATE(3558), + [sym_comment] = STATE(572), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [121] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(2726), - [sym_statement_block] = STATE(2726), - [sym_if_statement] = STATE(2726), - [sym_switch_statement] = STATE(2726), - [sym_try_statement] = STATE(2726), - [sym_with_statement] = STATE(2726), - [sym_empty_statement] = STATE(2726), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_definition] = STATE(4428), - [sym_ui_object_array] = STATE(4428), - [sym_ui_nested_identifier] = STATE(4106), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_type] = ACTIONS(1358), - [anon_sym_namespace] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_readonly] = ACTIONS(1358), - [anon_sym_get] = ACTIONS(1358), - [anon_sym_set] = ACTIONS(1358), - [anon_sym_declare] = ACTIONS(1358), - [anon_sym_public] = ACTIONS(1358), - [anon_sym_private] = ACTIONS(1358), - [anon_sym_protected] = ACTIONS(1358), - [anon_sym_override] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_any] = ACTIONS(1358), - [anon_sym_number] = ACTIONS(1358), - [anon_sym_boolean] = ACTIONS(1358), - [anon_sym_string] = ACTIONS(1358), - [anon_sym_symbol] = ACTIONS(1358), - [anon_sym_property] = ACTIONS(1358), - [anon_sym_signal] = ACTIONS(1358), - [anon_sym_on] = ACTIONS(1358), - [anon_sym_required] = ACTIONS(1358), - [anon_sym_component] = ACTIONS(1358), + [573] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3022), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3547), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(573), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [122] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(2762), - [sym_statement_block] = STATE(2762), - [sym_if_statement] = STATE(2762), - [sym_switch_statement] = STATE(2762), - [sym_try_statement] = STATE(2762), - [sym_with_statement] = STATE(2762), - [sym_empty_statement] = STATE(2762), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_definition] = STATE(4629), - [sym_ui_object_array] = STATE(4629), - [sym_ui_nested_identifier] = STATE(4106), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_type] = ACTIONS(1358), - [anon_sym_namespace] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_readonly] = ACTIONS(1358), - [anon_sym_get] = ACTIONS(1358), - [anon_sym_set] = ACTIONS(1358), - [anon_sym_declare] = ACTIONS(1358), - [anon_sym_public] = ACTIONS(1358), - [anon_sym_private] = ACTIONS(1358), - [anon_sym_protected] = ACTIONS(1358), - [anon_sym_override] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_any] = ACTIONS(1358), - [anon_sym_number] = ACTIONS(1358), - [anon_sym_boolean] = ACTIONS(1358), - [anon_sym_string] = ACTIONS(1358), - [anon_sym_symbol] = ACTIONS(1358), - [anon_sym_property] = ACTIONS(1358), - [anon_sym_signal] = ACTIONS(1358), - [anon_sym_on] = ACTIONS(1358), - [anon_sym_required] = ACTIONS(1358), - [anon_sym_component] = ACTIONS(1358), + [574] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2783), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8569), + [sym_string] = STATE(3056), + [sym_comment] = STATE(574), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [123] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(2755), - [sym_statement_block] = STATE(2755), - [sym_if_statement] = STATE(2755), - [sym_switch_statement] = STATE(2755), - [sym_try_statement] = STATE(2755), - [sym_with_statement] = STATE(2755), - [sym_empty_statement] = STATE(2755), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_definition] = STATE(4425), - [sym_ui_object_array] = STATE(4425), - [sym_ui_nested_identifier] = STATE(4106), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_type] = ACTIONS(1358), - [anon_sym_namespace] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_readonly] = ACTIONS(1358), - [anon_sym_get] = ACTIONS(1358), - [anon_sym_set] = ACTIONS(1358), - [anon_sym_declare] = ACTIONS(1358), - [anon_sym_public] = ACTIONS(1358), - [anon_sym_private] = ACTIONS(1358), - [anon_sym_protected] = ACTIONS(1358), - [anon_sym_override] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_any] = ACTIONS(1358), - [anon_sym_number] = ACTIONS(1358), - [anon_sym_boolean] = ACTIONS(1358), - [anon_sym_string] = ACTIONS(1358), - [anon_sym_symbol] = ACTIONS(1358), - [anon_sym_property] = ACTIONS(1358), - [anon_sym_signal] = ACTIONS(1358), - [anon_sym_on] = ACTIONS(1358), - [anon_sym_required] = ACTIONS(1358), - [anon_sym_component] = ACTIONS(1358), + [575] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3022), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3673), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(575), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [124] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(2754), - [sym_statement_block] = STATE(2754), - [sym_if_statement] = STATE(2754), - [sym_switch_statement] = STATE(2754), - [sym_try_statement] = STATE(2754), - [sym_with_statement] = STATE(2754), - [sym_empty_statement] = STATE(2754), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_definition] = STATE(4427), - [sym_ui_object_array] = STATE(4427), - [sym_ui_nested_identifier] = STATE(4106), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_type] = ACTIONS(1358), - [anon_sym_namespace] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_readonly] = ACTIONS(1358), - [anon_sym_get] = ACTIONS(1358), - [anon_sym_set] = ACTIONS(1358), - [anon_sym_declare] = ACTIONS(1358), - [anon_sym_public] = ACTIONS(1358), - [anon_sym_private] = ACTIONS(1358), - [anon_sym_protected] = ACTIONS(1358), - [anon_sym_override] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_any] = ACTIONS(1358), - [anon_sym_number] = ACTIONS(1358), - [anon_sym_boolean] = ACTIONS(1358), - [anon_sym_string] = ACTIONS(1358), - [anon_sym_symbol] = ACTIONS(1358), - [anon_sym_property] = ACTIONS(1358), - [anon_sym_signal] = ACTIONS(1358), - [anon_sym_on] = ACTIONS(1358), - [anon_sym_required] = ACTIONS(1358), - [anon_sym_component] = ACTIONS(1358), + [576] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3023), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3674), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(576), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [125] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(2760), - [sym_statement_block] = STATE(2760), - [sym_if_statement] = STATE(2760), - [sym_switch_statement] = STATE(2760), - [sym_try_statement] = STATE(2760), - [sym_with_statement] = STATE(2760), - [sym_empty_statement] = STATE(2760), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_definition] = STATE(4426), - [sym_ui_object_array] = STATE(4426), - [sym_ui_nested_identifier] = STATE(4106), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_type] = ACTIONS(1358), - [anon_sym_namespace] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_readonly] = ACTIONS(1358), - [anon_sym_get] = ACTIONS(1358), - [anon_sym_set] = ACTIONS(1358), - [anon_sym_declare] = ACTIONS(1358), - [anon_sym_public] = ACTIONS(1358), - [anon_sym_private] = ACTIONS(1358), - [anon_sym_protected] = ACTIONS(1358), - [anon_sym_override] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_any] = ACTIONS(1358), - [anon_sym_number] = ACTIONS(1358), - [anon_sym_boolean] = ACTIONS(1358), - [anon_sym_string] = ACTIONS(1358), - [anon_sym_symbol] = ACTIONS(1358), - [anon_sym_property] = ACTIONS(1358), - [anon_sym_signal] = ACTIONS(1358), - [anon_sym_on] = ACTIONS(1358), - [anon_sym_required] = ACTIONS(1358), - [anon_sym_component] = ACTIONS(1358), + [577] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3029), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3675), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(577), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [126] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(2741), - [sym_statement_block] = STATE(2741), - [sym_if_statement] = STATE(2741), - [sym_switch_statement] = STATE(2741), - [sym_try_statement] = STATE(2741), - [sym_with_statement] = STATE(2741), - [sym_empty_statement] = STATE(2741), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1884), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4522), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_definition] = STATE(4630), - [sym_ui_object_array] = STATE(4630), - [sym_ui_nested_identifier] = STATE(4106), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1356), - [anon_sym_export] = ACTIONS(1358), - [anon_sym_type] = ACTIONS(1358), - [anon_sym_namespace] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(592), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_if] = ACTIONS(602), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1358), - [anon_sym_try] = ACTIONS(568), - [anon_sym_with] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(572), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1364), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_readonly] = ACTIONS(1358), - [anon_sym_get] = ACTIONS(1358), - [anon_sym_set] = ACTIONS(1358), - [anon_sym_declare] = ACTIONS(1358), - [anon_sym_public] = ACTIONS(1358), - [anon_sym_private] = ACTIONS(1358), - [anon_sym_protected] = ACTIONS(1358), - [anon_sym_override] = ACTIONS(1358), - [anon_sym_module] = ACTIONS(1358), - [anon_sym_any] = ACTIONS(1358), - [anon_sym_number] = ACTIONS(1358), - [anon_sym_boolean] = ACTIONS(1358), - [anon_sym_string] = ACTIONS(1358), - [anon_sym_symbol] = ACTIONS(1358), - [anon_sym_property] = ACTIONS(1358), - [anon_sym_signal] = ACTIONS(1358), - [anon_sym_on] = ACTIONS(1358), - [anon_sym_required] = ACTIONS(1358), - [anon_sym_component] = ACTIONS(1358), + [578] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3126), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3677), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(578), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [127] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4046), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_definition] = STATE(4018), - [sym_ui_nested_identifier] = STATE(4277), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4009), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(1376), - [anon_sym_export] = ACTIONS(1378), - [anon_sym_type] = ACTIONS(1378), - [anon_sym_namespace] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(1378), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1388), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1390), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_readonly] = ACTIONS(1378), - [anon_sym_get] = ACTIONS(1378), - [anon_sym_set] = ACTIONS(1378), - [anon_sym_declare] = ACTIONS(1378), - [anon_sym_public] = ACTIONS(1378), - [anon_sym_private] = ACTIONS(1378), - [anon_sym_protected] = ACTIONS(1378), - [anon_sym_override] = ACTIONS(1378), - [anon_sym_module] = ACTIONS(1378), - [anon_sym_any] = ACTIONS(1378), - [anon_sym_number] = ACTIONS(1378), - [anon_sym_boolean] = ACTIONS(1378), - [anon_sym_string] = ACTIONS(1378), - [anon_sym_symbol] = ACTIONS(1378), - [anon_sym_property] = ACTIONS(1378), - [anon_sym_signal] = ACTIONS(1378), - [anon_sym_on] = ACTIONS(1378), - [anon_sym_required] = ACTIONS(1378), - [anon_sym_component] = ACTIONS(1378), + [579] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3023), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3548), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(579), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [128] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(1396), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(65), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_void] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(65), + [580] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2826), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8233), + [sym_string] = STATE(3056), + [sym_comment] = STATE(580), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [129] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1795), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym__formal_parameter] = STATE(4130), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4722), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4130), - [sym_optional_parameter] = STATE(4130), - [sym__parameter_name] = STATE(3290), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1428), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(1430), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(778), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(668), - [anon_sym_number] = ACTIONS(668), - [anon_sym_boolean] = ACTIONS(668), - [anon_sym_string] = ACTIONS(668), - [anon_sym_symbol] = ACTIONS(668), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), + [581] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3590), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3462), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(581), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [130] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4046), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_definition] = STATE(4036), - [sym_ui_nested_identifier] = STATE(4277), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4009), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(1376), - [anon_sym_export] = ACTIONS(1378), - [anon_sym_type] = ACTIONS(1378), - [anon_sym_namespace] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1378), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(1378), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1388), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1390), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_readonly] = ACTIONS(1378), - [anon_sym_get] = ACTIONS(1378), - [anon_sym_set] = ACTIONS(1378), - [anon_sym_declare] = ACTIONS(1378), - [anon_sym_public] = ACTIONS(1378), - [anon_sym_private] = ACTIONS(1378), - [anon_sym_protected] = ACTIONS(1378), - [anon_sym_override] = ACTIONS(1378), - [anon_sym_module] = ACTIONS(1378), - [anon_sym_any] = ACTIONS(1378), - [anon_sym_number] = ACTIONS(1378), - [anon_sym_boolean] = ACTIONS(1378), - [anon_sym_string] = ACTIONS(1378), - [anon_sym_symbol] = ACTIONS(1378), - [anon_sym_property] = ACTIONS(1378), - [anon_sym_signal] = ACTIONS(1378), - [anon_sym_on] = ACTIONS(1378), - [anon_sym_required] = ACTIONS(1378), - [anon_sym_component] = ACTIONS(1378), + [582] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3050), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3766), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(582), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [131] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1721), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym__formal_parameter] = STATE(4130), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4685), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4130), - [sym_optional_parameter] = STATE(4130), - [sym__parameter_name] = STATE(3290), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1428), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(1430), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(776), - [anon_sym_private] = ACTIONS(776), - [anon_sym_protected] = ACTIONS(776), - [anon_sym_override] = ACTIONS(778), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(668), - [anon_sym_number] = ACTIONS(668), - [anon_sym_boolean] = ACTIONS(668), - [anon_sym_string] = ACTIONS(668), - [anon_sym_symbol] = ACTIONS(668), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), + [583] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3050), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3157), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(583), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [132] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4512), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4512), - [sym_optional_parameter] = STATE(4512), - [sym__parameter_name] = STATE(3290), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1434), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [584] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3200), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8410), + [sym_string] = STATE(3056), + [sym_comment] = STATE(584), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [133] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4067), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4067), - [sym_optional_parameter] = STATE(4067), - [sym__parameter_name] = STATE(3290), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1438), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1434), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [585] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3138), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3707), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(585), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [134] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4512), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4512), - [sym_optional_parameter] = STATE(4512), - [sym__parameter_name] = STATE(3290), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1434), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [586] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3050), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2788), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(586), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [135] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4512), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4512), - [sym_optional_parameter] = STATE(4512), - [sym__parameter_name] = STATE(3290), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1442), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1434), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [587] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3050), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3727), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(587), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [136] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4512), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4512), - [sym_optional_parameter] = STATE(4512), - [sym__parameter_name] = STATE(3290), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1444), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1434), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [588] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3126), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3209), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(588), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [137] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4512), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4512), - [sym_optional_parameter] = STATE(4512), - [sym__parameter_name] = STATE(3290), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1446), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1434), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [589] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3126), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2912), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(589), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [138] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(1448), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_EQ_GT] = ACTIONS(1450), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_void] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [590] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3153), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8533), + [sym_string] = STATE(3056), + [sym_comment] = STATE(590), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [139] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4173), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4173), - [sym_optional_parameter] = STATE(4173), - [sym__parameter_name] = STATE(3290), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1452), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1434), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [591] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3125), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_sequence_expression] = STATE(8175), + [sym_string] = STATE(3558), + [sym_comment] = STATE(591), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [140] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(65), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_void] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [592] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3138), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2843), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(592), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [141] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4512), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4512), - [sym_optional_parameter] = STATE(4512), - [sym__parameter_name] = STATE(3290), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1434), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [593] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2780), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8528), + [sym_string] = STATE(3056), + [sym_comment] = STATE(593), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [142] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4130), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4130), - [sym_optional_parameter] = STATE(4130), - [sym__parameter_name] = STATE(3290), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1434), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [594] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3022), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2927), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(594), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [143] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4046), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4009), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1460), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(668), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(668), - [anon_sym_number] = ACTIONS(668), - [anon_sym_boolean] = ACTIONS(668), - [anon_sym_string] = ACTIONS(668), - [anon_sym_symbol] = ACTIONS(668), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), + [595] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3029), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3793), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(595), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [144] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1822), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4046), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4009), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1388), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(668), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(668), - [anon_sym_number] = ACTIONS(668), - [anon_sym_boolean] = ACTIONS(668), - [anon_sym_string] = ACTIONS(668), - [anon_sym_symbol] = ACTIONS(668), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), + [596] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3050), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3617), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(596), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [145] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4062), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4054), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1462), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(668), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(668), - [anon_sym_number] = ACTIONS(668), - [anon_sym_boolean] = ACTIONS(668), - [anon_sym_string] = ACTIONS(668), - [anon_sym_symbol] = ACTIONS(668), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), + [597] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3023), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2925), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(597), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [146] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_in] = ACTIONS(26), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_void] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(65), + [598] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3193), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8398), + [sym_string] = STATE(3056), + [sym_comment] = STATE(598), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [147] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1896), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4046), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4009), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1388), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(668), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(668), - [anon_sym_number] = ACTIONS(668), - [anon_sym_boolean] = ACTIONS(668), - [anon_sym_string] = ACTIONS(668), - [anon_sym_symbol] = ACTIONS(668), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), + [599] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3275), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8417), + [sym_string] = STATE(3056), + [sym_comment] = STATE(599), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [148] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4062), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4054), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1464), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(668), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(668), - [anon_sym_number] = ACTIONS(668), - [anon_sym_boolean] = ACTIONS(668), - [anon_sym_string] = ACTIONS(668), - [anon_sym_symbol] = ACTIONS(668), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), + [600] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3029), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3221), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(600), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [149] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(1396), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(1466), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_in] = ACTIONS(26), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_void] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(65), + [601] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3023), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3224), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(601), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [150] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(224), - [sym_variable_declaration] = STATE(224), - [sym_lexical_declaration] = STATE(224), - [sym_empty_statement] = STATE(224), - [sym_parenthesized_expression] = STATE(1293), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4010), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4010), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1293), - [sym_subscript_expression] = STATE(1293), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4010), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1293), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1473), - [anon_sym_type] = ACTIONS(1473), - [anon_sym_namespace] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1473), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_let] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1485), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1473), - [anon_sym_readonly] = ACTIONS(1473), - [anon_sym_get] = ACTIONS(1473), - [anon_sym_set] = ACTIONS(1473), - [anon_sym_declare] = ACTIONS(1473), - [anon_sym_public] = ACTIONS(1473), - [anon_sym_private] = ACTIONS(1473), - [anon_sym_protected] = ACTIONS(1473), - [anon_sym_override] = ACTIONS(1473), - [anon_sym_module] = ACTIONS(1473), - [anon_sym_any] = ACTIONS(1473), - [anon_sym_number] = ACTIONS(1473), - [anon_sym_boolean] = ACTIONS(1473), - [anon_sym_string] = ACTIONS(1473), - [anon_sym_symbol] = ACTIONS(1473), - [anon_sym_property] = ACTIONS(1473), - [anon_sym_signal] = ACTIONS(1473), - [anon_sym_on] = ACTIONS(1473), - [anon_sym_required] = ACTIONS(1473), - [anon_sym_component] = ACTIONS(1473), + [602] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3029), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2924), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(602), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [151] = { - [sym_statement_block] = STATE(176), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_type] = ACTIONS(1489), - [anon_sym_as] = ACTIONS(1489), - [anon_sym_namespace] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_COMMA] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1489), - [anon_sym_import] = ACTIONS(1489), - [anon_sym_from] = ACTIONS(1489), - [anon_sym_var] = ACTIONS(1489), - [anon_sym_let] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_else] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_switch] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_in] = ACTIONS(1489), - [anon_sym_of] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_do] = ACTIONS(1489), - [anon_sym_try] = ACTIONS(1489), - [anon_sym_with] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_debugger] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_throw] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LTtemplate_GT] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1489), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_async] = ACTIONS(1489), - [anon_sym_function] = ACTIONS(1489), - [anon_sym_QMARK_DOT] = ACTIONS(1493), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1489), - [anon_sym_GT_GT_GT] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_STAR_STAR] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1493), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1493), - [anon_sym_QMARK_QMARK] = ACTIONS(1493), - [anon_sym_instanceof] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1489), - [anon_sym_delete] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_number] = ACTIONS(1493), - [sym_this] = ACTIONS(1489), - [sym_super] = ACTIONS(1489), - [sym_true] = ACTIONS(1489), - [sym_false] = ACTIONS(1489), - [sym_null] = ACTIONS(1489), - [sym_undefined] = ACTIONS(1489), - [anon_sym_AT] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_readonly] = ACTIONS(1489), - [anon_sym_get] = ACTIONS(1489), - [anon_sym_set] = ACTIONS(1489), - [anon_sym_declare] = ACTIONS(1489), - [anon_sym_public] = ACTIONS(1489), - [anon_sym_private] = ACTIONS(1489), - [anon_sym_protected] = ACTIONS(1489), - [anon_sym_override] = ACTIONS(1489), - [anon_sym_module] = ACTIONS(1489), - [anon_sym_any] = ACTIONS(1489), - [anon_sym_number] = ACTIONS(1489), - [anon_sym_boolean] = ACTIONS(1489), - [anon_sym_string] = ACTIONS(1489), - [anon_sym_symbol] = ACTIONS(1489), - [anon_sym_property] = ACTIONS(1489), - [anon_sym_signal] = ACTIONS(1489), - [anon_sym_on] = ACTIONS(1489), - [anon_sym_required] = ACTIONS(1489), - [anon_sym_component] = ACTIONS(1489), - [anon_sym_abstract] = ACTIONS(1489), - [anon_sym_satisfies] = ACTIONS(1489), - [anon_sym_interface] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - [sym__automatic_semicolon] = ACTIONS(1493), - [sym__ternary_qmark] = ACTIONS(1493), + [603] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3022), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3230), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(603), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [152] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym__formal_parameter] = STATE(4512), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3650), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_accessibility_modifier] = STATE(229), - [sym_override_modifier] = STATE(240), - [sym_required_parameter] = STATE(4512), - [sym_optional_parameter] = STATE(4512), - [sym__parameter_name] = STATE(3290), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1434), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1436), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [604] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3023), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3761), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(604), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [153] = { - [sym_statement_block] = STATE(176), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_type] = ACTIONS(1489), - [anon_sym_as] = ACTIONS(1489), - [anon_sym_namespace] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1491), - [anon_sym_COMMA] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1489), - [anon_sym_import] = ACTIONS(1489), - [anon_sym_from] = ACTIONS(1489), - [anon_sym_var] = ACTIONS(1489), - [anon_sym_let] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_else] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_switch] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_in] = ACTIONS(1489), - [anon_sym_of] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_do] = ACTIONS(1489), - [anon_sym_try] = ACTIONS(1489), - [anon_sym_with] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_debugger] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_throw] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LTtemplate_GT] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1489), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(1489), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_async] = ACTIONS(1489), - [anon_sym_function] = ACTIONS(1489), - [anon_sym_QMARK_DOT] = ACTIONS(1493), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1489), - [anon_sym_GT_GT_GT] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_STAR_STAR] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1493), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1493), - [anon_sym_QMARK_QMARK] = ACTIONS(1493), - [anon_sym_instanceof] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1489), - [anon_sym_delete] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_number] = ACTIONS(1493), - [sym_this] = ACTIONS(1489), - [sym_super] = ACTIONS(1489), - [sym_true] = ACTIONS(1489), - [sym_false] = ACTIONS(1489), - [sym_null] = ACTIONS(1489), - [sym_undefined] = ACTIONS(1489), - [anon_sym_AT] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_readonly] = ACTIONS(1489), - [anon_sym_get] = ACTIONS(1489), - [anon_sym_set] = ACTIONS(1489), - [anon_sym_declare] = ACTIONS(1489), - [anon_sym_public] = ACTIONS(1489), - [anon_sym_private] = ACTIONS(1489), - [anon_sym_protected] = ACTIONS(1489), - [anon_sym_override] = ACTIONS(1489), - [anon_sym_module] = ACTIONS(1489), - [anon_sym_any] = ACTIONS(1489), - [anon_sym_number] = ACTIONS(1489), - [anon_sym_boolean] = ACTIONS(1489), - [anon_sym_string] = ACTIONS(1489), - [anon_sym_symbol] = ACTIONS(1489), - [anon_sym_property] = ACTIONS(1489), - [anon_sym_signal] = ACTIONS(1489), - [anon_sym_on] = ACTIONS(1489), - [anon_sym_required] = ACTIONS(1489), - [anon_sym_component] = ACTIONS(1489), - [anon_sym_abstract] = ACTIONS(1489), - [anon_sym_satisfies] = ACTIONS(1489), - [anon_sym_interface] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - [sym__automatic_semicolon] = ACTIONS(1493), - [sym__ternary_qmark] = ACTIONS(1493), + [605] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3022), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3795), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(605), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [154] = { - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_as] = ACTIONS(1499), - [anon_sym_namespace] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_COMMA] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1497), - [anon_sym_from] = ACTIONS(1497), - [anon_sym_var] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_else] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_of] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_with] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_debugger] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_throw] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_case] = ACTIONS(1497), - [anon_sym_yield] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_LTtemplate_GT] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_GT] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_class] = ACTIONS(1497), - [anon_sym_async] = ACTIONS(1497), - [anon_sym_function] = ACTIONS(1497), - [anon_sym_QMARK_DOT] = ACTIONS(1505), - [anon_sym_new] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_PIPE_PIPE] = ACTIONS(1505), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_GT_GT_GT] = ACTIONS(1505), - [anon_sym_LT_LT] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1505), - [anon_sym_STAR_STAR] = ACTIONS(1505), - [anon_sym_LT_EQ] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1505), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1505), - [anon_sym_GT_EQ] = ACTIONS(1505), - [anon_sym_QMARK_QMARK] = ACTIONS(1505), - [anon_sym_instanceof] = ACTIONS(1499), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_void] = ACTIONS(1497), - [anon_sym_delete] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1503), - [sym_number] = ACTIONS(1503), - [sym_this] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_true] = ACTIONS(1497), - [sym_false] = ACTIONS(1497), - [sym_null] = ACTIONS(1497), - [sym_undefined] = ACTIONS(1497), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_readonly] = ACTIONS(1497), - [anon_sym_get] = ACTIONS(1497), - [anon_sym_set] = ACTIONS(1497), - [anon_sym_declare] = ACTIONS(1497), - [anon_sym_public] = ACTIONS(1497), - [anon_sym_private] = ACTIONS(1497), - [anon_sym_protected] = ACTIONS(1497), - [anon_sym_override] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_any] = ACTIONS(1497), - [anon_sym_number] = ACTIONS(1497), - [anon_sym_boolean] = ACTIONS(1497), - [anon_sym_string] = ACTIONS(1497), - [anon_sym_symbol] = ACTIONS(1497), - [anon_sym_property] = ACTIONS(1497), - [anon_sym_signal] = ACTIONS(1497), - [anon_sym_on] = ACTIONS(1497), - [anon_sym_required] = ACTIONS(1497), - [anon_sym_component] = ACTIONS(1497), - [anon_sym_abstract] = ACTIONS(1497), - [anon_sym_satisfies] = ACTIONS(1499), - [anon_sym_interface] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [sym__automatic_semicolon] = ACTIONS(1507), - [sym__ternary_qmark] = ACTIONS(1505), + [606] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3535), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(606), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_mapped_type_clause] = STATE(8289), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2760), + [anon_sym_export] = ACTIONS(2762), + [anon_sym_type] = ACTIONS(2762), + [anon_sym_namespace] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2762), + [anon_sym_let] = ACTIONS(2762), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(2762), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2766), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2768), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_readonly] = ACTIONS(2762), + [anon_sym_get] = ACTIONS(2762), + [anon_sym_set] = ACTIONS(2762), + [anon_sym_declare] = ACTIONS(2762), + [anon_sym_public] = ACTIONS(2762), + [anon_sym_private] = ACTIONS(2762), + [anon_sym_protected] = ACTIONS(2762), + [anon_sym_override] = ACTIONS(2762), + [anon_sym_module] = ACTIONS(2762), + [anon_sym_any] = ACTIONS(2762), + [anon_sym_number] = ACTIONS(2762), + [anon_sym_boolean] = ACTIONS(2762), + [anon_sym_string] = ACTIONS(2762), + [anon_sym_symbol] = ACTIONS(2762), + [anon_sym_object] = ACTIONS(2762), + [anon_sym_property] = ACTIONS(2762), + [anon_sym_signal] = ACTIONS(2762), + [anon_sym_on] = ACTIONS(2762), + [anon_sym_required] = ACTIONS(2762), + [anon_sym_component] = ACTIONS(2762), + [sym_html_comment] = ACTIONS(5), }, - [155] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(225), - [sym_variable_declaration] = STATE(225), - [sym_lexical_declaration] = STATE(225), - [sym_empty_statement] = STATE(225), - [sym_parenthesized_expression] = STATE(1293), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4010), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4010), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1293), - [sym_subscript_expression] = STATE(1293), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4010), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1293), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1473), - [anon_sym_type] = ACTIONS(1473), - [anon_sym_namespace] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1473), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_let] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1485), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1473), - [anon_sym_readonly] = ACTIONS(1473), - [anon_sym_get] = ACTIONS(1473), - [anon_sym_set] = ACTIONS(1473), - [anon_sym_declare] = ACTIONS(1473), - [anon_sym_public] = ACTIONS(1473), - [anon_sym_private] = ACTIONS(1473), - [anon_sym_protected] = ACTIONS(1473), - [anon_sym_override] = ACTIONS(1473), - [anon_sym_module] = ACTIONS(1473), - [anon_sym_any] = ACTIONS(1473), - [anon_sym_number] = ACTIONS(1473), - [anon_sym_boolean] = ACTIONS(1473), - [anon_sym_string] = ACTIONS(1473), - [anon_sym_symbol] = ACTIONS(1473), - [anon_sym_property] = ACTIONS(1473), - [anon_sym_signal] = ACTIONS(1473), - [anon_sym_on] = ACTIONS(1473), - [anon_sym_required] = ACTIONS(1473), - [anon_sym_component] = ACTIONS(1473), + [607] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3279), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8406), + [sym_string] = STATE(3056), + [sym_comment] = STATE(607), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [156] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1527), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1509), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_RBRACK] = ACTIONS(1509), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_QMARK] = ACTIONS(1509), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), - [anon_sym_extends] = ACTIONS(1511), + [608] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3272), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8605), + [sym_string] = STATE(3056), + [sym_comment] = STATE(608), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [157] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4062), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4054), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1513), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(668), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(668), - [anon_sym_number] = ACTIONS(668), - [anon_sym_boolean] = ACTIONS(668), - [anon_sym_string] = ACTIONS(668), - [anon_sym_symbol] = ACTIONS(668), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), + [609] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3735), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3497), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(609), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [158] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4062), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4054), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1515), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(668), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(668), - [anon_sym_number] = ACTIONS(668), - [anon_sym_boolean] = ACTIONS(668), - [anon_sym_string] = ACTIONS(668), - [anon_sym_symbol] = ACTIONS(668), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), + [610] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3535), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(610), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_mapped_type_clause] = STATE(8328), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2770), + [anon_sym_export] = ACTIONS(2772), + [anon_sym_type] = ACTIONS(2772), + [anon_sym_namespace] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2772), + [anon_sym_let] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(2772), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2776), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2778), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_readonly] = ACTIONS(2772), + [anon_sym_get] = ACTIONS(2772), + [anon_sym_set] = ACTIONS(2772), + [anon_sym_declare] = ACTIONS(2772), + [anon_sym_public] = ACTIONS(2772), + [anon_sym_private] = ACTIONS(2772), + [anon_sym_protected] = ACTIONS(2772), + [anon_sym_override] = ACTIONS(2772), + [anon_sym_module] = ACTIONS(2772), + [anon_sym_any] = ACTIONS(2772), + [anon_sym_number] = ACTIONS(2772), + [anon_sym_boolean] = ACTIONS(2772), + [anon_sym_string] = ACTIONS(2772), + [anon_sym_symbol] = ACTIONS(2772), + [anon_sym_object] = ACTIONS(2772), + [anon_sym_property] = ACTIONS(2772), + [anon_sym_signal] = ACTIONS(2772), + [anon_sym_on] = ACTIONS(2772), + [anon_sym_required] = ACTIONS(2772), + [anon_sym_component] = ACTIONS(2772), + [sym_html_comment] = ACTIONS(5), }, - [159] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1854), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4062), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4054), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1384), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1517), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(668), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(668), - [anon_sym_number] = ACTIONS(668), - [anon_sym_boolean] = ACTIONS(668), - [anon_sym_string] = ACTIONS(668), - [anon_sym_symbol] = ACTIONS(668), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), + [611] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3138), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3604), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(611), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [160] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(228), - [sym_variable_declaration] = STATE(228), - [sym_lexical_declaration] = STATE(228), - [sym_empty_statement] = STATE(228), - [sym_parenthesized_expression] = STATE(1293), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4010), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4010), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1293), - [sym_subscript_expression] = STATE(1293), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4010), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1293), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1471), - [anon_sym_export] = ACTIONS(1473), - [anon_sym_type] = ACTIONS(1473), - [anon_sym_namespace] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1473), - [anon_sym_var] = ACTIONS(1479), - [anon_sym_let] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1485), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1487), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1473), - [anon_sym_readonly] = ACTIONS(1473), - [anon_sym_get] = ACTIONS(1473), - [anon_sym_set] = ACTIONS(1473), - [anon_sym_declare] = ACTIONS(1473), - [anon_sym_public] = ACTIONS(1473), - [anon_sym_private] = ACTIONS(1473), - [anon_sym_protected] = ACTIONS(1473), - [anon_sym_override] = ACTIONS(1473), - [anon_sym_module] = ACTIONS(1473), - [anon_sym_any] = ACTIONS(1473), - [anon_sym_number] = ACTIONS(1473), - [anon_sym_boolean] = ACTIONS(1473), - [anon_sym_string] = ACTIONS(1473), - [anon_sym_symbol] = ACTIONS(1473), - [anon_sym_property] = ACTIONS(1473), - [anon_sym_signal] = ACTIONS(1473), - [anon_sym_on] = ACTIONS(1473), - [anon_sym_required] = ACTIONS(1473), - [anon_sym_component] = ACTIONS(1473), + [612] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3590), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3041), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(612), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [161] = { - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1519), - [anon_sym_type] = ACTIONS(1519), - [anon_sym_as] = ACTIONS(1521), - [anon_sym_namespace] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1523), - [anon_sym_typeof] = ACTIONS(1519), - [anon_sym_import] = ACTIONS(1519), - [anon_sym_from] = ACTIONS(1519), - [anon_sym_var] = ACTIONS(1519), - [anon_sym_let] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1519), - [anon_sym_else] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_switch] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_await] = ACTIONS(1519), - [anon_sym_in] = ACTIONS(1521), - [anon_sym_of] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_try] = ACTIONS(1519), - [anon_sym_with] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_debugger] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_throw] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_case] = ACTIONS(1519), - [anon_sym_yield] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1523), - [anon_sym_LTtemplate_GT] = ACTIONS(1523), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_GT] = ACTIONS(1521), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_DOT] = ACTIONS(1521), - [anon_sym_class] = ACTIONS(1519), - [anon_sym_async] = ACTIONS(1519), - [anon_sym_function] = ACTIONS(1519), - [anon_sym_QMARK_DOT] = ACTIONS(1525), - [anon_sym_new] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_GT_GT] = ACTIONS(1521), - [anon_sym_GT_GT_GT] = ACTIONS(1525), - [anon_sym_LT_LT] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_CARET] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_PERCENT] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1525), - [anon_sym_EQ_EQ] = ACTIONS(1521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1525), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_QMARK_QMARK] = ACTIONS(1525), - [anon_sym_instanceof] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1523), - [anon_sym_void] = ACTIONS(1519), - [anon_sym_delete] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1523), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1523), - [sym_number] = ACTIONS(1523), - [sym_this] = ACTIONS(1519), - [sym_super] = ACTIONS(1519), - [sym_true] = ACTIONS(1519), - [sym_false] = ACTIONS(1519), - [sym_null] = ACTIONS(1519), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1519), - [anon_sym_readonly] = ACTIONS(1519), - [anon_sym_get] = ACTIONS(1519), - [anon_sym_set] = ACTIONS(1519), - [anon_sym_declare] = ACTIONS(1519), - [anon_sym_public] = ACTIONS(1519), - [anon_sym_private] = ACTIONS(1519), - [anon_sym_protected] = ACTIONS(1519), - [anon_sym_override] = ACTIONS(1519), - [anon_sym_module] = ACTIONS(1519), - [anon_sym_any] = ACTIONS(1519), - [anon_sym_number] = ACTIONS(1519), - [anon_sym_boolean] = ACTIONS(1519), - [anon_sym_string] = ACTIONS(1519), - [anon_sym_symbol] = ACTIONS(1519), - [anon_sym_property] = ACTIONS(1519), - [anon_sym_signal] = ACTIONS(1519), - [anon_sym_on] = ACTIONS(1519), - [anon_sym_required] = ACTIONS(1519), - [anon_sym_component] = ACTIONS(1519), - [anon_sym_abstract] = ACTIONS(1519), - [anon_sym_satisfies] = ACTIONS(1521), - [anon_sym_interface] = ACTIONS(1519), - [anon_sym_enum] = ACTIONS(1519), - [sym__automatic_semicolon] = ACTIONS(1527), - [sym__ternary_qmark] = ACTIONS(1525), + [613] = { + [sym_import] = STATE(5109), + [sym_statement_block] = STATE(3126), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3569), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(613), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [162] = { - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_type] = ACTIONS(1529), - [anon_sym_as] = ACTIONS(1529), - [anon_sym_namespace] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_COMMA] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_typeof] = ACTIONS(1529), - [anon_sym_import] = ACTIONS(1529), - [anon_sym_from] = ACTIONS(1529), - [anon_sym_var] = ACTIONS(1529), - [anon_sym_let] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_else] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_await] = ACTIONS(1529), - [anon_sym_in] = ACTIONS(1529), - [anon_sym_of] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [anon_sym_with] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_debugger] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_throw] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_yield] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_LTtemplate_GT] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1529), - [anon_sym_SLASH] = ACTIONS(1529), - [anon_sym_DOT] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_async] = ACTIONS(1529), - [anon_sym_function] = ACTIONS(1529), - [anon_sym_QMARK_DOT] = ACTIONS(1531), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_PIPE_PIPE] = ACTIONS(1531), - [anon_sym_GT_GT] = ACTIONS(1529), - [anon_sym_GT_GT_GT] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_CARET] = ACTIONS(1531), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PERCENT] = ACTIONS(1531), - [anon_sym_STAR_STAR] = ACTIONS(1531), - [anon_sym_LT_EQ] = ACTIONS(1531), - [anon_sym_EQ_EQ] = ACTIONS(1529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1531), - [anon_sym_BANG_EQ] = ACTIONS(1529), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1531), - [anon_sym_GT_EQ] = ACTIONS(1531), - [anon_sym_QMARK_QMARK] = ACTIONS(1531), - [anon_sym_instanceof] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_void] = ACTIONS(1529), - [anon_sym_delete] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1531), - [sym_number] = ACTIONS(1531), - [sym_this] = ACTIONS(1529), - [sym_super] = ACTIONS(1529), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), - [sym_undefined] = ACTIONS(1529), - [anon_sym_AT] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(1529), - [anon_sym_get] = ACTIONS(1529), - [anon_sym_set] = ACTIONS(1529), - [anon_sym_declare] = ACTIONS(1529), - [anon_sym_public] = ACTIONS(1529), - [anon_sym_private] = ACTIONS(1529), - [anon_sym_protected] = ACTIONS(1529), - [anon_sym_override] = ACTIONS(1529), - [anon_sym_module] = ACTIONS(1529), - [anon_sym_any] = ACTIONS(1529), - [anon_sym_number] = ACTIONS(1529), - [anon_sym_boolean] = ACTIONS(1529), - [anon_sym_string] = ACTIONS(1529), - [anon_sym_symbol] = ACTIONS(1529), - [anon_sym_property] = ACTIONS(1529), - [anon_sym_signal] = ACTIONS(1529), - [anon_sym_on] = ACTIONS(1529), - [anon_sym_required] = ACTIONS(1529), - [anon_sym_component] = ACTIONS(1529), - [anon_sym_abstract] = ACTIONS(1529), - [anon_sym_satisfies] = ACTIONS(1529), - [anon_sym_interface] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [sym__automatic_semicolon] = ACTIONS(1531), - [sym__ternary_qmark] = ACTIONS(1531), + [614] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3199), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8407), + [sym_string] = STATE(3056), + [sym_comment] = STATE(614), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [163] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_export] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_type] = ACTIONS(1533), - [anon_sym_as] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_COMMA] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_typeof] = ACTIONS(1533), - [anon_sym_import] = ACTIONS(1533), - [anon_sym_from] = ACTIONS(1533), - [anon_sym_var] = ACTIONS(1533), - [anon_sym_let] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_in] = ACTIONS(1533), - [anon_sym_of] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_with] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_debugger] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(1533), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_LTtemplate_GT] = ACTIONS(1535), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_async] = ACTIONS(1533), - [anon_sym_function] = ACTIONS(1533), - [anon_sym_QMARK_DOT] = ACTIONS(1535), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_PIPE_PIPE] = ACTIONS(1535), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_GT_GT_GT] = ACTIONS(1535), - [anon_sym_LT_LT] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1535), - [anon_sym_STAR_STAR] = ACTIONS(1535), - [anon_sym_LT_EQ] = ACTIONS(1535), - [anon_sym_EQ_EQ] = ACTIONS(1533), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1535), - [anon_sym_BANG_EQ] = ACTIONS(1533), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1535), - [anon_sym_GT_EQ] = ACTIONS(1535), - [anon_sym_QMARK_QMARK] = ACTIONS(1535), - [anon_sym_instanceof] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_void] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1535), - [sym_number] = ACTIONS(1535), - [sym_this] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_undefined] = ACTIONS(1533), - [anon_sym_AT] = ACTIONS(1535), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_readonly] = ACTIONS(1533), - [anon_sym_get] = ACTIONS(1533), - [anon_sym_set] = ACTIONS(1533), - [anon_sym_declare] = ACTIONS(1533), - [anon_sym_public] = ACTIONS(1533), - [anon_sym_private] = ACTIONS(1533), - [anon_sym_protected] = ACTIONS(1533), - [anon_sym_override] = ACTIONS(1533), - [anon_sym_module] = ACTIONS(1533), - [anon_sym_any] = ACTIONS(1533), - [anon_sym_number] = ACTIONS(1533), - [anon_sym_boolean] = ACTIONS(1533), - [anon_sym_string] = ACTIONS(1533), - [anon_sym_symbol] = ACTIONS(1533), - [anon_sym_property] = ACTIONS(1533), - [anon_sym_signal] = ACTIONS(1533), - [anon_sym_on] = ACTIONS(1533), - [anon_sym_required] = ACTIONS(1533), - [anon_sym_component] = ACTIONS(1533), - [anon_sym_abstract] = ACTIONS(1533), - [anon_sym_satisfies] = ACTIONS(1533), - [anon_sym_interface] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [sym__automatic_semicolon] = ACTIONS(1535), - [sym__ternary_qmark] = ACTIONS(1535), + [615] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3286), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(615), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym__extends_clause_single] = STATE(6685), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [164] = { - [sym_identifier] = ACTIONS(1537), - [anon_sym_export] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_as] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_COMMA] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_typeof] = ACTIONS(1537), - [anon_sym_import] = ACTIONS(1537), - [anon_sym_from] = ACTIONS(1537), - [anon_sym_var] = ACTIONS(1537), - [anon_sym_let] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_else] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_await] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [anon_sym_of] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [anon_sym_with] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_debugger] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_yield] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LTtemplate_GT] = ACTIONS(1539), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_GT] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1537), - [anon_sym_class] = ACTIONS(1537), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_function] = ACTIONS(1537), - [anon_sym_QMARK_DOT] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_PIPE_PIPE] = ACTIONS(1539), - [anon_sym_GT_GT] = ACTIONS(1537), - [anon_sym_GT_GT_GT] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1539), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1539), - [anon_sym_STAR_STAR] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1539), - [anon_sym_EQ_EQ] = ACTIONS(1537), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1537), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1539), - [anon_sym_GT_EQ] = ACTIONS(1539), - [anon_sym_QMARK_QMARK] = ACTIONS(1539), - [anon_sym_instanceof] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_void] = ACTIONS(1537), - [anon_sym_delete] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1539), - [sym_number] = ACTIONS(1539), - [sym_this] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [sym_null] = ACTIONS(1537), - [sym_undefined] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_readonly] = ACTIONS(1537), - [anon_sym_get] = ACTIONS(1537), - [anon_sym_set] = ACTIONS(1537), - [anon_sym_declare] = ACTIONS(1537), - [anon_sym_public] = ACTIONS(1537), - [anon_sym_private] = ACTIONS(1537), - [anon_sym_protected] = ACTIONS(1537), - [anon_sym_override] = ACTIONS(1537), - [anon_sym_module] = ACTIONS(1537), - [anon_sym_any] = ACTIONS(1537), - [anon_sym_number] = ACTIONS(1537), - [anon_sym_boolean] = ACTIONS(1537), - [anon_sym_string] = ACTIONS(1537), - [anon_sym_symbol] = ACTIONS(1537), - [anon_sym_property] = ACTIONS(1537), - [anon_sym_signal] = ACTIONS(1537), - [anon_sym_on] = ACTIONS(1537), - [anon_sym_required] = ACTIONS(1537), - [anon_sym_component] = ACTIONS(1537), - [anon_sym_abstract] = ACTIONS(1537), - [anon_sym_satisfies] = ACTIONS(1537), - [anon_sym_interface] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [sym__automatic_semicolon] = ACTIONS(1541), - [sym__ternary_qmark] = ACTIONS(1539), + [616] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3650), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3399), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(616), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [165] = { - [sym_identifier] = ACTIONS(1543), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_as] = ACTIONS(1545), - [anon_sym_namespace] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_COMMA] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1547), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1543), - [anon_sym_from] = ACTIONS(1543), - [anon_sym_var] = ACTIONS(1543), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_else] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_switch] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_in] = ACTIONS(1545), - [anon_sym_of] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1543), - [anon_sym_with] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_debugger] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_throw] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_case] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1547), - [anon_sym_LTtemplate_GT] = ACTIONS(1547), - [anon_sym_LT] = ACTIONS(1543), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1543), - [anon_sym_DOT] = ACTIONS(1545), - [anon_sym_class] = ACTIONS(1543), - [anon_sym_async] = ACTIONS(1543), - [anon_sym_function] = ACTIONS(1543), - [anon_sym_QMARK_DOT] = ACTIONS(1549), - [anon_sym_new] = ACTIONS(1543), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE_PIPE] = ACTIONS(1549), - [anon_sym_GT_GT] = ACTIONS(1545), - [anon_sym_GT_GT_GT] = ACTIONS(1549), - [anon_sym_LT_LT] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_PERCENT] = ACTIONS(1549), - [anon_sym_STAR_STAR] = ACTIONS(1549), - [anon_sym_LT_EQ] = ACTIONS(1549), - [anon_sym_EQ_EQ] = ACTIONS(1545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1549), - [anon_sym_BANG_EQ] = ACTIONS(1545), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(1549), - [anon_sym_QMARK_QMARK] = ACTIONS(1549), - [anon_sym_instanceof] = ACTIONS(1545), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_delete] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1547), - [anon_sym_DASH_DASH] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1547), - [sym_number] = ACTIONS(1547), - [sym_this] = ACTIONS(1543), - [sym_super] = ACTIONS(1543), - [sym_true] = ACTIONS(1543), - [sym_false] = ACTIONS(1543), - [sym_null] = ACTIONS(1543), - [sym_undefined] = ACTIONS(1543), - [anon_sym_AT] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_property] = ACTIONS(1543), - [anon_sym_signal] = ACTIONS(1543), - [anon_sym_on] = ACTIONS(1543), - [anon_sym_required] = ACTIONS(1543), - [anon_sym_component] = ACTIONS(1543), - [anon_sym_abstract] = ACTIONS(1543), - [anon_sym_satisfies] = ACTIONS(1545), - [anon_sym_interface] = ACTIONS(1543), - [anon_sym_enum] = ACTIONS(1543), - [sym__automatic_semicolon] = ACTIONS(1551), - [sym__ternary_qmark] = ACTIONS(1549), + [617] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3664), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3395), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(617), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [166] = { - [sym_identifier] = ACTIONS(1553), - [anon_sym_export] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1553), - [anon_sym_type] = ACTIONS(1553), - [anon_sym_as] = ACTIONS(1555), - [anon_sym_namespace] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_COMMA] = ACTIONS(1559), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_typeof] = ACTIONS(1553), - [anon_sym_import] = ACTIONS(1553), - [anon_sym_from] = ACTIONS(1553), - [anon_sym_var] = ACTIONS(1553), - [anon_sym_let] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1553), - [anon_sym_else] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_switch] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_await] = ACTIONS(1553), - [anon_sym_in] = ACTIONS(1555), - [anon_sym_of] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_do] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1553), - [anon_sym_with] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_debugger] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_throw] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_case] = ACTIONS(1553), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_LTtemplate_GT] = ACTIONS(1557), - [anon_sym_LT] = ACTIONS(1553), - [anon_sym_GT] = ACTIONS(1555), - [anon_sym_SLASH] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(1555), - [anon_sym_class] = ACTIONS(1553), - [anon_sym_async] = ACTIONS(1553), - [anon_sym_function] = ACTIONS(1553), - [anon_sym_QMARK_DOT] = ACTIONS(1559), - [anon_sym_new] = ACTIONS(1553), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_PIPE_PIPE] = ACTIONS(1559), - [anon_sym_GT_GT] = ACTIONS(1555), - [anon_sym_GT_GT_GT] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_PERCENT] = ACTIONS(1559), - [anon_sym_STAR_STAR] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(1559), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1559), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1559), - [anon_sym_GT_EQ] = ACTIONS(1559), - [anon_sym_QMARK_QMARK] = ACTIONS(1559), - [anon_sym_instanceof] = ACTIONS(1555), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_void] = ACTIONS(1553), - [anon_sym_delete] = ACTIONS(1553), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1557), - [sym_number] = ACTIONS(1557), - [sym_this] = ACTIONS(1553), - [sym_super] = ACTIONS(1553), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_undefined] = ACTIONS(1553), - [anon_sym_AT] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_readonly] = ACTIONS(1553), - [anon_sym_get] = ACTIONS(1553), - [anon_sym_set] = ACTIONS(1553), - [anon_sym_declare] = ACTIONS(1553), - [anon_sym_public] = ACTIONS(1553), - [anon_sym_private] = ACTIONS(1553), - [anon_sym_protected] = ACTIONS(1553), - [anon_sym_override] = ACTIONS(1553), - [anon_sym_module] = ACTIONS(1553), - [anon_sym_any] = ACTIONS(1553), - [anon_sym_number] = ACTIONS(1553), - [anon_sym_boolean] = ACTIONS(1553), - [anon_sym_string] = ACTIONS(1553), - [anon_sym_symbol] = ACTIONS(1553), - [anon_sym_property] = ACTIONS(1553), - [anon_sym_signal] = ACTIONS(1553), - [anon_sym_on] = ACTIONS(1553), - [anon_sym_required] = ACTIONS(1553), - [anon_sym_component] = ACTIONS(1553), - [anon_sym_abstract] = ACTIONS(1553), - [anon_sym_satisfies] = ACTIONS(1555), - [anon_sym_interface] = ACTIONS(1553), - [anon_sym_enum] = ACTIONS(1553), - [sym__automatic_semicolon] = ACTIONS(1561), - [sym__ternary_qmark] = ACTIONS(1559), + [618] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3692), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3393), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(618), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [167] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(1563), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_in] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_EQ_GT] = ACTIONS(1565), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_void] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_implements] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(65), + [619] = { + [sym_import] = STATE(5074), + [sym_statement_block] = STATE(3735), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3105), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(619), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [168] = { - [sym_identifier] = ACTIONS(1567), - [anon_sym_export] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1567), - [anon_sym_type] = ACTIONS(1567), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_COMMA] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(1567), - [anon_sym_from] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(1567), - [anon_sym_let] = ACTIONS(1567), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_else] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_switch] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_of] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_do] = ACTIONS(1567), - [anon_sym_try] = ACTIONS(1567), - [anon_sym_with] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_debugger] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_throw] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_case] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LTtemplate_GT] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_GT] = ACTIONS(1569), - [anon_sym_SLASH] = ACTIONS(1567), - [anon_sym_DOT] = ACTIONS(1569), - [anon_sym_class] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_function] = ACTIONS(1567), - [anon_sym_QMARK_DOT] = ACTIONS(1573), - [anon_sym_new] = ACTIONS(1567), - [anon_sym_AMP_AMP] = ACTIONS(1573), - [anon_sym_PIPE_PIPE] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(1569), - [anon_sym_GT_GT_GT] = ACTIONS(1573), - [anon_sym_LT_LT] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_CARET] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_PERCENT] = ACTIONS(1573), - [anon_sym_STAR_STAR] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1573), - [anon_sym_EQ_EQ] = ACTIONS(1569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1573), - [anon_sym_BANG_EQ] = ACTIONS(1569), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1573), - [anon_sym_QMARK_QMARK] = ACTIONS(1573), - [anon_sym_instanceof] = ACTIONS(1569), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_delete] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1571), - [sym_this] = ACTIONS(1567), - [sym_super] = ACTIONS(1567), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_AT] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1567), - [anon_sym_get] = ACTIONS(1567), - [anon_sym_set] = ACTIONS(1567), - [anon_sym_declare] = ACTIONS(1567), - [anon_sym_public] = ACTIONS(1567), - [anon_sym_private] = ACTIONS(1567), - [anon_sym_protected] = ACTIONS(1567), - [anon_sym_override] = ACTIONS(1567), - [anon_sym_module] = ACTIONS(1567), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_property] = ACTIONS(1567), - [anon_sym_signal] = ACTIONS(1567), - [anon_sym_on] = ACTIONS(1567), - [anon_sym_required] = ACTIONS(1567), - [anon_sym_component] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1567), - [anon_sym_satisfies] = ACTIONS(1569), - [anon_sym_interface] = ACTIONS(1567), - [anon_sym_enum] = ACTIONS(1567), - [sym__automatic_semicolon] = ACTIONS(1575), - [sym__ternary_qmark] = ACTIONS(1573), + [620] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3235), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_sequence_expression] = STATE(8589), + [sym_string] = STATE(3056), + [sym_comment] = STATE(620), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [169] = { - [sym_identifier] = ACTIONS(1577), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_as] = ACTIONS(1579), - [anon_sym_namespace] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_COMMA] = ACTIONS(1583), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1577), - [anon_sym_from] = ACTIONS(1577), - [anon_sym_var] = ACTIONS(1577), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_switch] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_in] = ACTIONS(1579), - [anon_sym_of] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1577), - [anon_sym_do] = ACTIONS(1577), - [anon_sym_try] = ACTIONS(1577), - [anon_sym_with] = ACTIONS(1577), - [anon_sym_break] = ACTIONS(1577), - [anon_sym_continue] = ACTIONS(1577), - [anon_sym_debugger] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1577), - [anon_sym_throw] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_yield] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_LTtemplate_GT] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_SLASH] = ACTIONS(1577), - [anon_sym_DOT] = ACTIONS(1579), - [anon_sym_class] = ACTIONS(1577), - [anon_sym_async] = ACTIONS(1577), - [anon_sym_function] = ACTIONS(1577), - [anon_sym_QMARK_DOT] = ACTIONS(1583), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_PIPE_PIPE] = ACTIONS(1583), - [anon_sym_GT_GT] = ACTIONS(1579), - [anon_sym_GT_GT_GT] = ACTIONS(1583), - [anon_sym_LT_LT] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_PERCENT] = ACTIONS(1583), - [anon_sym_STAR_STAR] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1583), - [anon_sym_EQ_EQ] = ACTIONS(1579), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1583), - [anon_sym_BANG_EQ] = ACTIONS(1579), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1583), - [anon_sym_GT_EQ] = ACTIONS(1583), - [anon_sym_QMARK_QMARK] = ACTIONS(1583), - [anon_sym_instanceof] = ACTIONS(1579), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_void] = ACTIONS(1577), - [anon_sym_delete] = ACTIONS(1577), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1581), - [sym_number] = ACTIONS(1581), - [sym_this] = ACTIONS(1577), - [sym_super] = ACTIONS(1577), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_AT] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_property] = ACTIONS(1577), - [anon_sym_signal] = ACTIONS(1577), - [anon_sym_on] = ACTIONS(1577), - [anon_sym_required] = ACTIONS(1577), - [anon_sym_component] = ACTIONS(1577), - [anon_sym_abstract] = ACTIONS(1577), - [anon_sym_satisfies] = ACTIONS(1579), - [anon_sym_interface] = ACTIONS(1577), - [anon_sym_enum] = ACTIONS(1577), - [sym__automatic_semicolon] = ACTIONS(1585), - [sym__ternary_qmark] = ACTIONS(1583), + [621] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3622), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(621), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [170] = { - [sym_identifier] = ACTIONS(1587), - [anon_sym_export] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_type] = ACTIONS(1587), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_namespace] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_COMMA] = ACTIONS(1593), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_typeof] = ACTIONS(1587), - [anon_sym_import] = ACTIONS(1587), - [anon_sym_from] = ACTIONS(1587), - [anon_sym_var] = ACTIONS(1587), - [anon_sym_let] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_await] = ACTIONS(1587), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_of] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_try] = ACTIONS(1587), - [anon_sym_with] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_debugger] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_throw] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_case] = ACTIONS(1587), - [anon_sym_yield] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LTtemplate_GT] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(1589), - [anon_sym_class] = ACTIONS(1587), - [anon_sym_async] = ACTIONS(1587), - [anon_sym_function] = ACTIONS(1587), - [anon_sym_QMARK_DOT] = ACTIONS(1593), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_AMP_AMP] = ACTIONS(1593), - [anon_sym_PIPE_PIPE] = ACTIONS(1593), - [anon_sym_GT_GT] = ACTIONS(1589), - [anon_sym_GT_GT_GT] = ACTIONS(1593), - [anon_sym_LT_LT] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_PERCENT] = ACTIONS(1593), - [anon_sym_STAR_STAR] = ACTIONS(1593), - [anon_sym_LT_EQ] = ACTIONS(1593), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1593), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1593), - [anon_sym_GT_EQ] = ACTIONS(1593), - [anon_sym_QMARK_QMARK] = ACTIONS(1593), - [anon_sym_instanceof] = ACTIONS(1589), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_void] = ACTIONS(1587), - [anon_sym_delete] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1591), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1591), - [sym_number] = ACTIONS(1591), - [sym_this] = ACTIONS(1587), - [sym_super] = ACTIONS(1587), - [sym_true] = ACTIONS(1587), - [sym_false] = ACTIONS(1587), - [sym_null] = ACTIONS(1587), - [sym_undefined] = ACTIONS(1587), - [anon_sym_AT] = ACTIONS(1591), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_readonly] = ACTIONS(1587), - [anon_sym_get] = ACTIONS(1587), - [anon_sym_set] = ACTIONS(1587), - [anon_sym_declare] = ACTIONS(1587), - [anon_sym_public] = ACTIONS(1587), - [anon_sym_private] = ACTIONS(1587), - [anon_sym_protected] = ACTIONS(1587), - [anon_sym_override] = ACTIONS(1587), - [anon_sym_module] = ACTIONS(1587), - [anon_sym_any] = ACTIONS(1587), - [anon_sym_number] = ACTIONS(1587), - [anon_sym_boolean] = ACTIONS(1587), - [anon_sym_string] = ACTIONS(1587), - [anon_sym_symbol] = ACTIONS(1587), - [anon_sym_property] = ACTIONS(1587), - [anon_sym_signal] = ACTIONS(1587), - [anon_sym_on] = ACTIONS(1587), - [anon_sym_required] = ACTIONS(1587), - [anon_sym_component] = ACTIONS(1587), - [anon_sym_abstract] = ACTIONS(1587), - [anon_sym_satisfies] = ACTIONS(1589), - [anon_sym_interface] = ACTIONS(1587), - [anon_sym_enum] = ACTIONS(1587), - [sym__automatic_semicolon] = ACTIONS(1595), - [sym__ternary_qmark] = ACTIONS(1593), + [622] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2979), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(622), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [171] = { - [sym_identifier] = ACTIONS(1597), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_as] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_COMMA] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_typeof] = ACTIONS(1597), - [anon_sym_import] = ACTIONS(1597), - [anon_sym_from] = ACTIONS(1597), - [anon_sym_var] = ACTIONS(1597), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_else] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_of] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1597), - [anon_sym_with] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_debugger] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_throw] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_case] = ACTIONS(1597), - [anon_sym_yield] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LTtemplate_GT] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1597), - [anon_sym_SLASH] = ACTIONS(1597), - [anon_sym_DOT] = ACTIONS(1597), - [anon_sym_class] = ACTIONS(1597), - [anon_sym_async] = ACTIONS(1597), - [anon_sym_function] = ACTIONS(1597), - [anon_sym_QMARK_DOT] = ACTIONS(1599), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_PIPE_PIPE] = ACTIONS(1599), - [anon_sym_GT_GT] = ACTIONS(1597), - [anon_sym_GT_GT_GT] = ACTIONS(1599), - [anon_sym_LT_LT] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_PERCENT] = ACTIONS(1599), - [anon_sym_STAR_STAR] = ACTIONS(1599), - [anon_sym_LT_EQ] = ACTIONS(1599), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1599), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1599), - [anon_sym_GT_EQ] = ACTIONS(1599), - [anon_sym_QMARK_QMARK] = ACTIONS(1599), - [anon_sym_instanceof] = ACTIONS(1597), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1597), - [anon_sym_delete] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1599), - [sym_number] = ACTIONS(1599), - [sym_this] = ACTIONS(1597), - [sym_super] = ACTIONS(1597), - [sym_true] = ACTIONS(1597), - [sym_false] = ACTIONS(1597), - [sym_null] = ACTIONS(1597), - [sym_undefined] = ACTIONS(1597), - [anon_sym_AT] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_property] = ACTIONS(1597), - [anon_sym_signal] = ACTIONS(1597), - [anon_sym_on] = ACTIONS(1597), - [anon_sym_required] = ACTIONS(1597), - [anon_sym_component] = ACTIONS(1597), - [anon_sym_abstract] = ACTIONS(1597), - [anon_sym_satisfies] = ACTIONS(1597), - [anon_sym_interface] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [sym__automatic_semicolon] = ACTIONS(1599), - [sym__ternary_qmark] = ACTIONS(1599), + [623] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3208), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(623), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [172] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3084), - [sym_constructor_type] = STATE(3084), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3084), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3084), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3084), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1603), - [anon_sym_EQ] = ACTIONS(23), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_COMMA] = ACTIONS(32), - [anon_sym_RBRACE] = ACTIONS(32), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_in] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(1617), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_void] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(1635), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - [sym__ternary_qmark] = ACTIONS(65), + [624] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2779), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(624), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [173] = { - [sym_identifier] = ACTIONS(1637), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_as] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_typeof] = ACTIONS(1637), - [anon_sym_import] = ACTIONS(1637), - [anon_sym_from] = ACTIONS(1637), - [anon_sym_var] = ACTIONS(1637), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(1637), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1641), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_of] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1637), - [anon_sym_with] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_debugger] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_case] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1637), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_LTtemplate_GT] = ACTIONS(1641), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_GT] = ACTIONS(1639), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_DOT] = ACTIONS(1639), - [anon_sym_class] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(1637), - [anon_sym_function] = ACTIONS(1637), - [anon_sym_QMARK_DOT] = ACTIONS(1643), - [anon_sym_new] = ACTIONS(1637), - [anon_sym_AMP_AMP] = ACTIONS(1643), - [anon_sym_PIPE_PIPE] = ACTIONS(1643), - [anon_sym_GT_GT] = ACTIONS(1639), - [anon_sym_GT_GT_GT] = ACTIONS(1643), - [anon_sym_LT_LT] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_PERCENT] = ACTIONS(1643), - [anon_sym_STAR_STAR] = ACTIONS(1643), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1643), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_QMARK_QMARK] = ACTIONS(1643), - [anon_sym_instanceof] = ACTIONS(1639), - [anon_sym_TILDE] = ACTIONS(1641), - [anon_sym_void] = ACTIONS(1637), - [anon_sym_delete] = ACTIONS(1637), - [anon_sym_PLUS_PLUS] = ACTIONS(1641), - [anon_sym_DASH_DASH] = ACTIONS(1641), - [anon_sym_DQUOTE] = ACTIONS(1641), - [anon_sym_SQUOTE] = ACTIONS(1641), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1641), - [sym_number] = ACTIONS(1641), - [sym_this] = ACTIONS(1637), - [sym_super] = ACTIONS(1637), - [sym_true] = ACTIONS(1637), - [sym_false] = ACTIONS(1637), - [sym_null] = ACTIONS(1637), - [sym_undefined] = ACTIONS(1637), - [anon_sym_AT] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_readonly] = ACTIONS(1637), - [anon_sym_get] = ACTIONS(1637), - [anon_sym_set] = ACTIONS(1637), - [anon_sym_declare] = ACTIONS(1637), - [anon_sym_public] = ACTIONS(1637), - [anon_sym_private] = ACTIONS(1637), - [anon_sym_protected] = ACTIONS(1637), - [anon_sym_override] = ACTIONS(1637), - [anon_sym_module] = ACTIONS(1637), - [anon_sym_any] = ACTIONS(1637), - [anon_sym_number] = ACTIONS(1637), - [anon_sym_boolean] = ACTIONS(1637), - [anon_sym_string] = ACTIONS(1637), - [anon_sym_symbol] = ACTIONS(1637), - [anon_sym_property] = ACTIONS(1637), - [anon_sym_signal] = ACTIONS(1637), - [anon_sym_on] = ACTIONS(1637), - [anon_sym_required] = ACTIONS(1637), - [anon_sym_component] = ACTIONS(1637), - [anon_sym_abstract] = ACTIONS(1637), - [anon_sym_satisfies] = ACTIONS(1639), - [anon_sym_interface] = ACTIONS(1637), - [anon_sym_enum] = ACTIONS(1637), - [sym__automatic_semicolon] = ACTIONS(1645), - [sym__ternary_qmark] = ACTIONS(1643), + [625] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2577), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2577), + [sym_subscript_expression] = STATE(2577), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8217), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(625), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2577), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2780), + [anon_sym_export] = ACTIONS(2782), + [anon_sym_type] = ACTIONS(2782), + [anon_sym_namespace] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2782), + [anon_sym_let] = ACTIONS(2782), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2782), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2786), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2788), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2790), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2782), + [anon_sym_readonly] = ACTIONS(2782), + [anon_sym_get] = ACTIONS(2782), + [anon_sym_set] = ACTIONS(2782), + [anon_sym_declare] = ACTIONS(2782), + [anon_sym_public] = ACTIONS(2782), + [anon_sym_private] = ACTIONS(2782), + [anon_sym_protected] = ACTIONS(2782), + [anon_sym_override] = ACTIONS(2782), + [anon_sym_module] = ACTIONS(2782), + [anon_sym_any] = ACTIONS(2782), + [anon_sym_number] = ACTIONS(2782), + [anon_sym_boolean] = ACTIONS(2782), + [anon_sym_string] = ACTIONS(2782), + [anon_sym_symbol] = ACTIONS(2782), + [anon_sym_object] = ACTIONS(2782), + [anon_sym_property] = ACTIONS(2782), + [anon_sym_signal] = ACTIONS(2782), + [anon_sym_on] = ACTIONS(2782), + [anon_sym_required] = ACTIONS(2782), + [anon_sym_component] = ACTIONS(2782), + [sym_html_comment] = ACTIONS(5), }, - [174] = { - [sym_identifier] = ACTIONS(1647), - [anon_sym_export] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_default] = ACTIONS(1647), - [anon_sym_type] = ACTIONS(1647), - [anon_sym_as] = ACTIONS(1647), - [anon_sym_namespace] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_COMMA] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(1647), - [anon_sym_from] = ACTIONS(1647), - [anon_sym_var] = ACTIONS(1647), - [anon_sym_let] = ACTIONS(1647), - [anon_sym_const] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_else] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1647), - [anon_sym_switch] = ACTIONS(1647), - [anon_sym_for] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_await] = ACTIONS(1647), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_of] = ACTIONS(1647), - [anon_sym_while] = ACTIONS(1647), - [anon_sym_do] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1647), - [anon_sym_continue] = ACTIONS(1647), - [anon_sym_debugger] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1647), - [anon_sym_throw] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_case] = ACTIONS(1647), - [anon_sym_yield] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_LTtemplate_GT] = ACTIONS(1649), - [anon_sym_LT] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_class] = ACTIONS(1647), - [anon_sym_async] = ACTIONS(1647), - [anon_sym_function] = ACTIONS(1647), - [anon_sym_QMARK_DOT] = ACTIONS(1649), - [anon_sym_new] = ACTIONS(1647), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_PIPE_PIPE] = ACTIONS(1649), - [anon_sym_GT_GT] = ACTIONS(1647), - [anon_sym_GT_GT_GT] = ACTIONS(1649), - [anon_sym_LT_LT] = ACTIONS(1649), - [anon_sym_AMP] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1649), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_PERCENT] = ACTIONS(1649), - [anon_sym_STAR_STAR] = ACTIONS(1649), - [anon_sym_LT_EQ] = ACTIONS(1649), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1649), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1649), - [anon_sym_GT_EQ] = ACTIONS(1649), - [anon_sym_QMARK_QMARK] = ACTIONS(1649), - [anon_sym_instanceof] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1649), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [anon_sym_SQUOTE] = ACTIONS(1649), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1649), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1647), - [sym_super] = ACTIONS(1647), - [sym_true] = ACTIONS(1647), - [sym_false] = ACTIONS(1647), - [sym_null] = ACTIONS(1647), - [sym_undefined] = ACTIONS(1647), - [anon_sym_AT] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1647), - [anon_sym_readonly] = ACTIONS(1647), - [anon_sym_get] = ACTIONS(1647), - [anon_sym_set] = ACTIONS(1647), - [anon_sym_declare] = ACTIONS(1647), - [anon_sym_public] = ACTIONS(1647), - [anon_sym_private] = ACTIONS(1647), - [anon_sym_protected] = ACTIONS(1647), - [anon_sym_override] = ACTIONS(1647), - [anon_sym_module] = ACTIONS(1647), - [anon_sym_any] = ACTIONS(1647), - [anon_sym_number] = ACTIONS(1647), - [anon_sym_boolean] = ACTIONS(1647), - [anon_sym_string] = ACTIONS(1647), - [anon_sym_symbol] = ACTIONS(1647), - [anon_sym_property] = ACTIONS(1647), - [anon_sym_signal] = ACTIONS(1647), - [anon_sym_on] = ACTIONS(1647), - [anon_sym_required] = ACTIONS(1647), - [anon_sym_component] = ACTIONS(1647), - [anon_sym_abstract] = ACTIONS(1647), - [anon_sym_satisfies] = ACTIONS(1647), - [anon_sym_interface] = ACTIONS(1647), - [anon_sym_enum] = ACTIONS(1647), - [sym__automatic_semicolon] = ACTIONS(1649), - [sym__ternary_qmark] = ACTIONS(1649), + [626] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3211), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(626), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [175] = { - [sym_identifier] = ACTIONS(1651), - [anon_sym_export] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1653), - [anon_sym_default] = ACTIONS(1651), - [anon_sym_type] = ACTIONS(1651), - [anon_sym_as] = ACTIONS(1653), - [anon_sym_namespace] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_COMMA] = ACTIONS(1657), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym_import] = ACTIONS(1651), - [anon_sym_from] = ACTIONS(1651), - [anon_sym_var] = ACTIONS(1651), - [anon_sym_let] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_else] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_switch] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_await] = ACTIONS(1651), - [anon_sym_in] = ACTIONS(1653), - [anon_sym_of] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_do] = ACTIONS(1651), - [anon_sym_try] = ACTIONS(1651), - [anon_sym_with] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_debugger] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_throw] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_case] = ACTIONS(1651), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_LTtemplate_GT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1651), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_SLASH] = ACTIONS(1651), - [anon_sym_DOT] = ACTIONS(1653), - [anon_sym_class] = ACTIONS(1651), - [anon_sym_async] = ACTIONS(1651), - [anon_sym_function] = ACTIONS(1651), - [anon_sym_QMARK_DOT] = ACTIONS(1657), - [anon_sym_new] = ACTIONS(1651), - [anon_sym_AMP_AMP] = ACTIONS(1657), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_GT_GT] = ACTIONS(1653), - [anon_sym_GT_GT_GT] = ACTIONS(1657), - [anon_sym_LT_LT] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_PERCENT] = ACTIONS(1657), - [anon_sym_STAR_STAR] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1657), - [anon_sym_BANG_EQ] = ACTIONS(1653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(1657), - [anon_sym_QMARK_QMARK] = ACTIONS(1657), - [anon_sym_instanceof] = ACTIONS(1653), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_void] = ACTIONS(1651), - [anon_sym_delete] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1655), - [sym_number] = ACTIONS(1655), - [sym_this] = ACTIONS(1651), - [sym_super] = ACTIONS(1651), - [sym_true] = ACTIONS(1651), - [sym_false] = ACTIONS(1651), - [sym_null] = ACTIONS(1651), - [sym_undefined] = ACTIONS(1651), - [anon_sym_AT] = ACTIONS(1655), - [anon_sym_static] = ACTIONS(1651), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_get] = ACTIONS(1651), - [anon_sym_set] = ACTIONS(1651), - [anon_sym_declare] = ACTIONS(1651), - [anon_sym_public] = ACTIONS(1651), - [anon_sym_private] = ACTIONS(1651), - [anon_sym_protected] = ACTIONS(1651), - [anon_sym_override] = ACTIONS(1651), - [anon_sym_module] = ACTIONS(1651), - [anon_sym_any] = ACTIONS(1651), - [anon_sym_number] = ACTIONS(1651), - [anon_sym_boolean] = ACTIONS(1651), - [anon_sym_string] = ACTIONS(1651), - [anon_sym_symbol] = ACTIONS(1651), - [anon_sym_property] = ACTIONS(1651), - [anon_sym_signal] = ACTIONS(1651), - [anon_sym_on] = ACTIONS(1651), - [anon_sym_required] = ACTIONS(1651), - [anon_sym_component] = ACTIONS(1651), - [anon_sym_abstract] = ACTIONS(1651), - [anon_sym_satisfies] = ACTIONS(1653), - [anon_sym_interface] = ACTIONS(1651), - [anon_sym_enum] = ACTIONS(1651), - [sym__automatic_semicolon] = ACTIONS(1659), - [sym__ternary_qmark] = ACTIONS(1657), + [627] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3760), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(627), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [176] = { - [sym_identifier] = ACTIONS(1661), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_as] = ACTIONS(1661), - [anon_sym_namespace] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_COMMA] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_typeof] = ACTIONS(1661), - [anon_sym_import] = ACTIONS(1661), - [anon_sym_from] = ACTIONS(1661), - [anon_sym_var] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_await] = ACTIONS(1661), - [anon_sym_in] = ACTIONS(1661), - [anon_sym_of] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_with] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_debugger] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_throw] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_LTtemplate_GT] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_DOT] = ACTIONS(1661), - [anon_sym_class] = ACTIONS(1661), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_function] = ACTIONS(1661), - [anon_sym_QMARK_DOT] = ACTIONS(1663), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_AMP_AMP] = ACTIONS(1663), - [anon_sym_PIPE_PIPE] = ACTIONS(1663), - [anon_sym_GT_GT] = ACTIONS(1661), - [anon_sym_GT_GT_GT] = ACTIONS(1663), - [anon_sym_LT_LT] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PERCENT] = ACTIONS(1663), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1661), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1663), - [anon_sym_GT_EQ] = ACTIONS(1663), - [anon_sym_QMARK_QMARK] = ACTIONS(1663), - [anon_sym_instanceof] = ACTIONS(1661), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [anon_sym_SQUOTE] = ACTIONS(1663), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1663), - [sym_number] = ACTIONS(1663), - [sym_this] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_undefined] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_readonly] = ACTIONS(1661), - [anon_sym_get] = ACTIONS(1661), - [anon_sym_set] = ACTIONS(1661), - [anon_sym_declare] = ACTIONS(1661), - [anon_sym_public] = ACTIONS(1661), - [anon_sym_private] = ACTIONS(1661), - [anon_sym_protected] = ACTIONS(1661), - [anon_sym_override] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_any] = ACTIONS(1661), - [anon_sym_number] = ACTIONS(1661), - [anon_sym_boolean] = ACTIONS(1661), - [anon_sym_string] = ACTIONS(1661), - [anon_sym_symbol] = ACTIONS(1661), - [anon_sym_property] = ACTIONS(1661), - [anon_sym_signal] = ACTIONS(1661), - [anon_sym_on] = ACTIONS(1661), - [anon_sym_required] = ACTIONS(1661), - [anon_sym_component] = ACTIONS(1661), - [anon_sym_abstract] = ACTIONS(1661), - [anon_sym_satisfies] = ACTIONS(1661), - [anon_sym_interface] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [sym__automatic_semicolon] = ACTIONS(1663), - [sym__ternary_qmark] = ACTIONS(1663), + [628] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3605), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(628), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [177] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1527), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), - [anon_sym_extends] = ACTIONS(1511), - [anon_sym_PIPE_RBRACE] = ACTIONS(1509), - [sym__automatic_semicolon] = ACTIONS(1509), + [629] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3840), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(629), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [178] = { - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_namespace] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_COMMA] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1497), - [anon_sym_from] = ACTIONS(1497), - [anon_sym_var] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_else] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_in] = ACTIONS(1497), - [anon_sym_of] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_with] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_debugger] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_throw] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_case] = ACTIONS(1497), - [anon_sym_yield] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_LTtemplate_GT] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1497), - [anon_sym_class] = ACTIONS(1497), - [anon_sym_async] = ACTIONS(1497), - [anon_sym_function] = ACTIONS(1497), - [anon_sym_QMARK_DOT] = ACTIONS(1503), - [anon_sym_new] = ACTIONS(1497), - [anon_sym_AMP_AMP] = ACTIONS(1503), - [anon_sym_PIPE_PIPE] = ACTIONS(1503), - [anon_sym_GT_GT] = ACTIONS(1497), - [anon_sym_GT_GT_GT] = ACTIONS(1503), - [anon_sym_LT_LT] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1503), - [anon_sym_STAR_STAR] = ACTIONS(1503), - [anon_sym_LT_EQ] = ACTIONS(1503), - [anon_sym_EQ_EQ] = ACTIONS(1497), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1503), - [anon_sym_BANG_EQ] = ACTIONS(1497), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1503), - [anon_sym_GT_EQ] = ACTIONS(1503), - [anon_sym_QMARK_QMARK] = ACTIONS(1503), - [anon_sym_instanceof] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_void] = ACTIONS(1497), - [anon_sym_delete] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1503), - [sym_number] = ACTIONS(1503), - [sym_this] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_true] = ACTIONS(1497), - [sym_false] = ACTIONS(1497), - [sym_null] = ACTIONS(1497), - [sym_undefined] = ACTIONS(1497), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_readonly] = ACTIONS(1497), - [anon_sym_get] = ACTIONS(1497), - [anon_sym_set] = ACTIONS(1497), - [anon_sym_declare] = ACTIONS(1497), - [anon_sym_public] = ACTIONS(1497), - [anon_sym_private] = ACTIONS(1497), - [anon_sym_protected] = ACTIONS(1497), - [anon_sym_override] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_any] = ACTIONS(1497), - [anon_sym_number] = ACTIONS(1497), - [anon_sym_boolean] = ACTIONS(1497), - [anon_sym_string] = ACTIONS(1497), - [anon_sym_symbol] = ACTIONS(1497), - [anon_sym_property] = ACTIONS(1497), - [anon_sym_signal] = ACTIONS(1497), - [anon_sym_on] = ACTIONS(1497), - [anon_sym_required] = ACTIONS(1497), - [anon_sym_component] = ACTIONS(1497), - [anon_sym_abstract] = ACTIONS(1497), - [anon_sym_satisfies] = ACTIONS(1497), - [anon_sym_interface] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [sym__automatic_semicolon] = ACTIONS(1665), - [sym__ternary_qmark] = ACTIONS(1503), + [630] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3066), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(630), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [179] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_EQ_GT] = ACTIONS(1669), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_void] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [631] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3161), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(631), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [180] = { - [sym_identifier] = ACTIONS(1671), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_as] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_COMMA] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_typeof] = ACTIONS(1671), - [anon_sym_import] = ACTIONS(1671), - [anon_sym_from] = ACTIONS(1671), - [anon_sym_var] = ACTIONS(1671), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_else] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(1671), - [anon_sym_switch] = ACTIONS(1671), - [anon_sym_for] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_await] = ACTIONS(1671), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_of] = ACTIONS(1671), - [anon_sym_while] = ACTIONS(1671), - [anon_sym_do] = ACTIONS(1671), - [anon_sym_try] = ACTIONS(1671), - [anon_sym_with] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1671), - [anon_sym_continue] = ACTIONS(1671), - [anon_sym_debugger] = ACTIONS(1671), - [anon_sym_return] = ACTIONS(1671), - [anon_sym_throw] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_case] = ACTIONS(1671), - [anon_sym_yield] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1673), - [anon_sym_LTtemplate_GT] = ACTIONS(1673), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_SLASH] = ACTIONS(1671), - [anon_sym_DOT] = ACTIONS(1671), - [anon_sym_class] = ACTIONS(1671), - [anon_sym_async] = ACTIONS(1671), - [anon_sym_function] = ACTIONS(1671), - [anon_sym_QMARK_DOT] = ACTIONS(1673), - [anon_sym_new] = ACTIONS(1671), - [anon_sym_AMP_AMP] = ACTIONS(1673), - [anon_sym_PIPE_PIPE] = ACTIONS(1673), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_GT_GT_GT] = ACTIONS(1673), - [anon_sym_LT_LT] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_PERCENT] = ACTIONS(1673), - [anon_sym_STAR_STAR] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1673), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1673), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1673), - [anon_sym_QMARK_QMARK] = ACTIONS(1673), - [anon_sym_instanceof] = ACTIONS(1671), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_void] = ACTIONS(1671), - [anon_sym_delete] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [anon_sym_SQUOTE] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1673), - [sym_number] = ACTIONS(1673), - [sym_this] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_true] = ACTIONS(1671), - [sym_false] = ACTIONS(1671), - [sym_null] = ACTIONS(1671), - [sym_undefined] = ACTIONS(1671), - [anon_sym_AT] = ACTIONS(1673), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_property] = ACTIONS(1671), - [anon_sym_signal] = ACTIONS(1671), - [anon_sym_on] = ACTIONS(1671), - [anon_sym_required] = ACTIONS(1671), - [anon_sym_component] = ACTIONS(1671), - [anon_sym_abstract] = ACTIONS(1671), - [anon_sym_satisfies] = ACTIONS(1671), - [anon_sym_interface] = ACTIONS(1671), - [anon_sym_enum] = ACTIONS(1671), - [sym__automatic_semicolon] = ACTIONS(1673), - [sym__ternary_qmark] = ACTIONS(1673), + [632] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3232), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(632), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [181] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2285), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4082), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4082), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1339), - [sym_subscript_expression] = STATE(1339), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4082), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1339), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_mapped_type_clause] = STATE(4757), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(1675), - [anon_sym_export] = ACTIONS(1677), - [anon_sym_type] = ACTIONS(1677), - [anon_sym_namespace] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_COMMA] = ACTIONS(1681), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1677), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1677), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_RBRACK] = ACTIONS(1683), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1685), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1687), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1677), - [anon_sym_readonly] = ACTIONS(1677), - [anon_sym_get] = ACTIONS(1677), - [anon_sym_set] = ACTIONS(1677), - [anon_sym_declare] = ACTIONS(1677), - [anon_sym_public] = ACTIONS(1677), - [anon_sym_private] = ACTIONS(1677), - [anon_sym_protected] = ACTIONS(1677), - [anon_sym_override] = ACTIONS(1677), - [anon_sym_module] = ACTIONS(1677), - [anon_sym_any] = ACTIONS(1677), - [anon_sym_number] = ACTIONS(1677), - [anon_sym_boolean] = ACTIONS(1677), - [anon_sym_string] = ACTIONS(1677), - [anon_sym_symbol] = ACTIONS(1677), - [anon_sym_property] = ACTIONS(1677), - [anon_sym_signal] = ACTIONS(1677), - [anon_sym_on] = ACTIONS(1677), - [anon_sym_required] = ACTIONS(1677), - [anon_sym_component] = ACTIONS(1677), + [633] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3753), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(633), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [182] = { - [sym_identifier] = ACTIONS(1689), - [anon_sym_export] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1689), - [anon_sym_as] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_COMMA] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(1689), - [anon_sym_import] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1689), - [anon_sym_var] = ACTIONS(1689), - [anon_sym_let] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1689), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_await] = ACTIONS(1689), - [anon_sym_in] = ACTIONS(1691), - [anon_sym_of] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_do] = ACTIONS(1689), - [anon_sym_try] = ACTIONS(1689), - [anon_sym_with] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_debugger] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_throw] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_case] = ACTIONS(1689), - [anon_sym_yield] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_LTtemplate_GT] = ACTIONS(1693), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_GT] = ACTIONS(1691), - [anon_sym_SLASH] = ACTIONS(1689), - [anon_sym_DOT] = ACTIONS(1691), - [anon_sym_class] = ACTIONS(1689), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(1689), - [anon_sym_QMARK_DOT] = ACTIONS(1695), - [anon_sym_new] = ACTIONS(1689), - [anon_sym_AMP_AMP] = ACTIONS(1695), - [anon_sym_PIPE_PIPE] = ACTIONS(1695), - [anon_sym_GT_GT] = ACTIONS(1691), - [anon_sym_GT_GT_GT] = ACTIONS(1695), - [anon_sym_LT_LT] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_PERCENT] = ACTIONS(1695), - [anon_sym_STAR_STAR] = ACTIONS(1695), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_EQ_EQ] = ACTIONS(1691), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1695), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_QMARK_QMARK] = ACTIONS(1695), - [anon_sym_instanceof] = ACTIONS(1691), - [anon_sym_TILDE] = ACTIONS(1693), - [anon_sym_void] = ACTIONS(1689), - [anon_sym_delete] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1693), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [anon_sym_SQUOTE] = ACTIONS(1693), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1693), - [sym_number] = ACTIONS(1693), - [sym_this] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_true] = ACTIONS(1689), - [sym_false] = ACTIONS(1689), - [sym_null] = ACTIONS(1689), - [sym_undefined] = ACTIONS(1689), - [anon_sym_AT] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_readonly] = ACTIONS(1689), - [anon_sym_get] = ACTIONS(1689), - [anon_sym_set] = ACTIONS(1689), - [anon_sym_declare] = ACTIONS(1689), - [anon_sym_public] = ACTIONS(1689), - [anon_sym_private] = ACTIONS(1689), - [anon_sym_protected] = ACTIONS(1689), - [anon_sym_override] = ACTIONS(1689), - [anon_sym_module] = ACTIONS(1689), - [anon_sym_any] = ACTIONS(1689), - [anon_sym_number] = ACTIONS(1689), - [anon_sym_boolean] = ACTIONS(1689), - [anon_sym_string] = ACTIONS(1689), - [anon_sym_symbol] = ACTIONS(1689), - [anon_sym_property] = ACTIONS(1689), - [anon_sym_signal] = ACTIONS(1689), - [anon_sym_on] = ACTIONS(1689), - [anon_sym_required] = ACTIONS(1689), - [anon_sym_component] = ACTIONS(1689), - [anon_sym_abstract] = ACTIONS(1689), - [anon_sym_satisfies] = ACTIONS(1691), - [anon_sym_interface] = ACTIONS(1689), - [anon_sym_enum] = ACTIONS(1689), - [sym__automatic_semicolon] = ACTIONS(1697), - [sym__ternary_qmark] = ACTIONS(1695), + [634] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3114), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2441), + [sym_subscript_expression] = STATE(2441), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5951), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(634), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2441), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2792), + [anon_sym_export] = ACTIONS(1907), + [anon_sym_type] = ACTIONS(1907), + [anon_sym_namespace] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1907), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1913), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2794), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2796), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_readonly] = ACTIONS(1907), + [anon_sym_get] = ACTIONS(1907), + [anon_sym_set] = ACTIONS(1907), + [anon_sym_declare] = ACTIONS(1907), + [anon_sym_public] = ACTIONS(1907), + [anon_sym_private] = ACTIONS(1907), + [anon_sym_protected] = ACTIONS(1907), + [anon_sym_override] = ACTIONS(1907), + [anon_sym_module] = ACTIONS(1907), + [anon_sym_any] = ACTIONS(1907), + [anon_sym_number] = ACTIONS(1907), + [anon_sym_boolean] = ACTIONS(1907), + [anon_sym_string] = ACTIONS(1907), + [anon_sym_symbol] = ACTIONS(1907), + [anon_sym_object] = ACTIONS(1907), + [anon_sym_property] = ACTIONS(1907), + [anon_sym_signal] = ACTIONS(1907), + [anon_sym_on] = ACTIONS(1907), + [anon_sym_required] = ACTIONS(1907), + [anon_sym_component] = ACTIONS(1907), + [sym_html_comment] = ACTIONS(5), }, - [183] = { - [sym_identifier] = ACTIONS(1699), - [anon_sym_export] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_type] = ACTIONS(1699), - [anon_sym_as] = ACTIONS(1701), - [anon_sym_namespace] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_COMMA] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1699), - [anon_sym_import] = ACTIONS(1699), - [anon_sym_from] = ACTIONS(1699), - [anon_sym_var] = ACTIONS(1699), - [anon_sym_let] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_else] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_in] = ACTIONS(1701), - [anon_sym_of] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_do] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1699), - [anon_sym_with] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_debugger] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_throw] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_case] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_LTtemplate_GT] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1699), - [anon_sym_DOT] = ACTIONS(1701), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_async] = ACTIONS(1699), - [anon_sym_function] = ACTIONS(1699), - [anon_sym_QMARK_DOT] = ACTIONS(1705), - [anon_sym_new] = ACTIONS(1699), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_GT_GT_GT] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_STAR_STAR] = ACTIONS(1705), - [anon_sym_LT_EQ] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1705), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1705), - [anon_sym_QMARK_QMARK] = ACTIONS(1705), - [anon_sym_instanceof] = ACTIONS(1701), - [anon_sym_TILDE] = ACTIONS(1703), - [anon_sym_void] = ACTIONS(1699), - [anon_sym_delete] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1703), - [sym_number] = ACTIONS(1703), - [sym_this] = ACTIONS(1699), - [sym_super] = ACTIONS(1699), - [sym_true] = ACTIONS(1699), - [sym_false] = ACTIONS(1699), - [sym_null] = ACTIONS(1699), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_readonly] = ACTIONS(1699), - [anon_sym_get] = ACTIONS(1699), - [anon_sym_set] = ACTIONS(1699), - [anon_sym_declare] = ACTIONS(1699), - [anon_sym_public] = ACTIONS(1699), - [anon_sym_private] = ACTIONS(1699), - [anon_sym_protected] = ACTIONS(1699), - [anon_sym_override] = ACTIONS(1699), - [anon_sym_module] = ACTIONS(1699), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_number] = ACTIONS(1699), - [anon_sym_boolean] = ACTIONS(1699), - [anon_sym_string] = ACTIONS(1699), - [anon_sym_symbol] = ACTIONS(1699), - [anon_sym_property] = ACTIONS(1699), - [anon_sym_signal] = ACTIONS(1699), - [anon_sym_on] = ACTIONS(1699), - [anon_sym_required] = ACTIONS(1699), - [anon_sym_component] = ACTIONS(1699), - [anon_sym_abstract] = ACTIONS(1699), - [anon_sym_satisfies] = ACTIONS(1701), - [anon_sym_interface] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - [sym__automatic_semicolon] = ACTIONS(1705), - [sym__ternary_qmark] = ACTIONS(1705), + [635] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3855), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(635), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [184] = { - [sym_identifier] = ACTIONS(1537), - [anon_sym_export] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_as] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_COMMA] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_typeof] = ACTIONS(1537), - [anon_sym_import] = ACTIONS(1537), - [anon_sym_from] = ACTIONS(1537), - [anon_sym_var] = ACTIONS(1537), - [anon_sym_let] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_else] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_await] = ACTIONS(1537), - [anon_sym_in] = ACTIONS(1537), - [anon_sym_of] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [anon_sym_with] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_debugger] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_yield] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LTtemplate_GT] = ACTIONS(1539), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_GT] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1537), - [anon_sym_class] = ACTIONS(1537), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_function] = ACTIONS(1537), - [anon_sym_QMARK_DOT] = ACTIONS(1539), - [anon_sym_new] = ACTIONS(1537), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_PIPE_PIPE] = ACTIONS(1539), - [anon_sym_GT_GT] = ACTIONS(1537), - [anon_sym_GT_GT_GT] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1539), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1539), - [anon_sym_STAR_STAR] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1539), - [anon_sym_EQ_EQ] = ACTIONS(1537), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1537), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1539), - [anon_sym_GT_EQ] = ACTIONS(1539), - [anon_sym_QMARK_QMARK] = ACTIONS(1539), - [anon_sym_instanceof] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_void] = ACTIONS(1537), - [anon_sym_delete] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1539), - [sym_number] = ACTIONS(1539), - [sym_this] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [sym_null] = ACTIONS(1537), - [sym_undefined] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_readonly] = ACTIONS(1537), - [anon_sym_get] = ACTIONS(1537), - [anon_sym_set] = ACTIONS(1537), - [anon_sym_declare] = ACTIONS(1537), - [anon_sym_public] = ACTIONS(1537), - [anon_sym_private] = ACTIONS(1537), - [anon_sym_protected] = ACTIONS(1537), - [anon_sym_override] = ACTIONS(1537), - [anon_sym_module] = ACTIONS(1537), - [anon_sym_any] = ACTIONS(1537), - [anon_sym_number] = ACTIONS(1537), - [anon_sym_boolean] = ACTIONS(1537), - [anon_sym_string] = ACTIONS(1537), - [anon_sym_symbol] = ACTIONS(1537), - [anon_sym_property] = ACTIONS(1537), - [anon_sym_signal] = ACTIONS(1537), - [anon_sym_on] = ACTIONS(1537), - [anon_sym_required] = ACTIONS(1537), - [anon_sym_component] = ACTIONS(1537), - [anon_sym_abstract] = ACTIONS(1537), - [anon_sym_satisfies] = ACTIONS(1537), - [anon_sym_interface] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [sym__automatic_semicolon] = ACTIONS(1539), - [sym__ternary_qmark] = ACTIONS(1539), + [636] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3820), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(636), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [185] = { - [sym_identifier] = ACTIONS(1707), - [anon_sym_export] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), - [anon_sym_as] = ACTIONS(1707), - [anon_sym_namespace] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_typeof] = ACTIONS(1707), - [anon_sym_import] = ACTIONS(1707), - [anon_sym_from] = ACTIONS(1707), - [anon_sym_var] = ACTIONS(1707), - [anon_sym_let] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_await] = ACTIONS(1707), - [anon_sym_in] = ACTIONS(1707), - [anon_sym_of] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_with] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_debugger] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_throw] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_case] = ACTIONS(1707), - [anon_sym_yield] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_LTtemplate_GT] = ACTIONS(1709), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_GT] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1707), - [anon_sym_DOT] = ACTIONS(1707), - [anon_sym_class] = ACTIONS(1707), - [anon_sym_async] = ACTIONS(1707), - [anon_sym_function] = ACTIONS(1707), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_new] = ACTIONS(1707), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_PIPE_PIPE] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1707), - [anon_sym_GT_GT_GT] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_CARET] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PERCENT] = ACTIONS(1709), - [anon_sym_STAR_STAR] = ACTIONS(1709), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1707), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1709), - [anon_sym_BANG_EQ] = ACTIONS(1707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1709), - [anon_sym_GT_EQ] = ACTIONS(1709), - [anon_sym_QMARK_QMARK] = ACTIONS(1709), - [anon_sym_instanceof] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_void] = ACTIONS(1707), - [anon_sym_delete] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [anon_sym_SQUOTE] = ACTIONS(1709), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1709), - [sym_number] = ACTIONS(1709), - [sym_this] = ACTIONS(1707), - [sym_super] = ACTIONS(1707), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_undefined] = ACTIONS(1707), - [anon_sym_AT] = ACTIONS(1709), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_readonly] = ACTIONS(1707), - [anon_sym_get] = ACTIONS(1707), - [anon_sym_set] = ACTIONS(1707), - [anon_sym_declare] = ACTIONS(1707), - [anon_sym_public] = ACTIONS(1707), - [anon_sym_private] = ACTIONS(1707), - [anon_sym_protected] = ACTIONS(1707), - [anon_sym_override] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_any] = ACTIONS(1707), - [anon_sym_number] = ACTIONS(1707), - [anon_sym_boolean] = ACTIONS(1707), - [anon_sym_string] = ACTIONS(1707), - [anon_sym_symbol] = ACTIONS(1707), - [anon_sym_property] = ACTIONS(1707), - [anon_sym_signal] = ACTIONS(1707), - [anon_sym_on] = ACTIONS(1707), - [anon_sym_required] = ACTIONS(1707), - [anon_sym_component] = ACTIONS(1707), - [anon_sym_abstract] = ACTIONS(1707), - [anon_sym_satisfies] = ACTIONS(1707), - [anon_sym_interface] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [sym__automatic_semicolon] = ACTIONS(1709), - [sym__ternary_qmark] = ACTIONS(1709), + [637] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3852), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(637), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [186] = { - [sym_identifier] = ACTIONS(1711), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_type] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1713), - [anon_sym_namespace] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_typeof] = ACTIONS(1711), - [anon_sym_import] = ACTIONS(1711), - [anon_sym_from] = ACTIONS(1711), - [anon_sym_var] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_switch] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_await] = ACTIONS(1711), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_of] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_with] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_debugger] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_throw] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1711), - [anon_sym_yield] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_LTtemplate_GT] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_GT] = ACTIONS(1713), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_DOT] = ACTIONS(1713), - [anon_sym_class] = ACTIONS(1711), - [anon_sym_async] = ACTIONS(1711), - [anon_sym_function] = ACTIONS(1711), - [anon_sym_QMARK_DOT] = ACTIONS(1717), - [anon_sym_new] = ACTIONS(1711), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_GT_GT] = ACTIONS(1713), - [anon_sym_GT_GT_GT] = ACTIONS(1717), - [anon_sym_LT_LT] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1713), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_PERCENT] = ACTIONS(1717), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(1717), - [anon_sym_QMARK_QMARK] = ACTIONS(1717), - [anon_sym_instanceof] = ACTIONS(1713), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_void] = ACTIONS(1711), - [anon_sym_delete] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1715), - [sym_number] = ACTIONS(1715), - [sym_this] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_true] = ACTIONS(1711), - [sym_false] = ACTIONS(1711), - [sym_null] = ACTIONS(1711), - [sym_undefined] = ACTIONS(1711), - [anon_sym_AT] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1711), - [anon_sym_readonly] = ACTIONS(1711), - [anon_sym_get] = ACTIONS(1711), - [anon_sym_set] = ACTIONS(1711), - [anon_sym_declare] = ACTIONS(1711), - [anon_sym_public] = ACTIONS(1711), - [anon_sym_private] = ACTIONS(1711), - [anon_sym_protected] = ACTIONS(1711), - [anon_sym_override] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_any] = ACTIONS(1711), - [anon_sym_number] = ACTIONS(1711), - [anon_sym_boolean] = ACTIONS(1711), - [anon_sym_string] = ACTIONS(1711), - [anon_sym_symbol] = ACTIONS(1711), - [anon_sym_property] = ACTIONS(1711), - [anon_sym_signal] = ACTIONS(1711), - [anon_sym_on] = ACTIONS(1711), - [anon_sym_required] = ACTIONS(1711), - [anon_sym_component] = ACTIONS(1711), - [anon_sym_abstract] = ACTIONS(1711), - [anon_sym_satisfies] = ACTIONS(1713), - [anon_sym_interface] = ACTIONS(1711), - [anon_sym_enum] = ACTIONS(1711), - [sym__automatic_semicolon] = ACTIONS(1719), - [sym__ternary_qmark] = ACTIONS(1717), + [638] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3175), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(638), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [187] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(23), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(32), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_in] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(32), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_void] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(65), + [639] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3656), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(639), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [188] = { - [sym_identifier] = ACTIONS(1721), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_default] = ACTIONS(1721), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_COMMA] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_typeof] = ACTIONS(1721), - [anon_sym_import] = ACTIONS(1721), - [anon_sym_from] = ACTIONS(1721), - [anon_sym_var] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [anon_sym_BANG] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_switch] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_of] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_with] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_debugger] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_throw] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_case] = ACTIONS(1721), - [anon_sym_yield] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LTtemplate_GT] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1721), - [anon_sym_GT] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(1721), - [anon_sym_class] = ACTIONS(1721), - [anon_sym_async] = ACTIONS(1721), - [anon_sym_function] = ACTIONS(1721), - [anon_sym_QMARK_DOT] = ACTIONS(1723), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1723), - [anon_sym_PIPE_PIPE] = ACTIONS(1723), - [anon_sym_GT_GT] = ACTIONS(1721), - [anon_sym_GT_GT_GT] = ACTIONS(1723), - [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_PERCENT] = ACTIONS(1723), - [anon_sym_STAR_STAR] = ACTIONS(1723), - [anon_sym_LT_EQ] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1721), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1723), - [anon_sym_GT_EQ] = ACTIONS(1723), - [anon_sym_QMARK_QMARK] = ACTIONS(1723), - [anon_sym_instanceof] = ACTIONS(1721), - [anon_sym_TILDE] = ACTIONS(1723), - [anon_sym_void] = ACTIONS(1721), - [anon_sym_delete] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [anon_sym_SQUOTE] = ACTIONS(1723), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1723), - [sym_number] = ACTIONS(1723), - [sym_this] = ACTIONS(1721), - [sym_super] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_null] = ACTIONS(1721), - [sym_undefined] = ACTIONS(1721), - [anon_sym_AT] = ACTIONS(1723), - [anon_sym_static] = ACTIONS(1721), - [anon_sym_readonly] = ACTIONS(1721), - [anon_sym_get] = ACTIONS(1721), - [anon_sym_set] = ACTIONS(1721), - [anon_sym_declare] = ACTIONS(1721), - [anon_sym_public] = ACTIONS(1721), - [anon_sym_private] = ACTIONS(1721), - [anon_sym_protected] = ACTIONS(1721), - [anon_sym_override] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_any] = ACTIONS(1721), - [anon_sym_number] = ACTIONS(1721), - [anon_sym_boolean] = ACTIONS(1721), - [anon_sym_string] = ACTIONS(1721), - [anon_sym_symbol] = ACTIONS(1721), - [anon_sym_property] = ACTIONS(1721), - [anon_sym_signal] = ACTIONS(1721), - [anon_sym_on] = ACTIONS(1721), - [anon_sym_required] = ACTIONS(1721), - [anon_sym_component] = ACTIONS(1721), - [anon_sym_abstract] = ACTIONS(1721), - [anon_sym_satisfies] = ACTIONS(1721), - [anon_sym_interface] = ACTIONS(1721), - [anon_sym_enum] = ACTIONS(1721), - [sym__automatic_semicolon] = ACTIONS(1723), - [sym__ternary_qmark] = ACTIONS(1723), + [640] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2974), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(640), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [189] = { - [sym_identifier] = ACTIONS(1725), + [641] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3814), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(641), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), + }, + [642] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3233), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(642), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), + }, + [643] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3624), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(643), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), [anon_sym_export] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_default] = ACTIONS(1725), [anon_sym_type] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1727), - [anon_sym_namespace] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_typeof] = ACTIONS(1725), - [anon_sym_import] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1725), - [anon_sym_var] = ACTIONS(1725), [anon_sym_let] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_switch] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_await] = ACTIONS(1725), - [anon_sym_in] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), [anon_sym_of] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_with] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_debugger] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_throw] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_case] = ACTIONS(1725), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_LTtemplate_GT] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(1727), - [anon_sym_class] = ACTIONS(1725), - [anon_sym_async] = ACTIONS(1725), - [anon_sym_function] = ACTIONS(1725), - [anon_sym_QMARK_DOT] = ACTIONS(1731), - [anon_sym_new] = ACTIONS(1725), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_GT_GT] = ACTIONS(1727), - [anon_sym_GT_GT_GT] = ACTIONS(1731), - [anon_sym_LT_LT] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_PERCENT] = ACTIONS(1731), - [anon_sym_STAR_STAR] = ACTIONS(1731), - [anon_sym_LT_EQ] = ACTIONS(1731), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1731), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1731), - [anon_sym_GT_EQ] = ACTIONS(1731), - [anon_sym_QMARK_QMARK] = ACTIONS(1731), - [anon_sym_instanceof] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1725), - [anon_sym_delete] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1729), - [anon_sym_DASH_DASH] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1729), - [anon_sym_SQUOTE] = ACTIONS(1729), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1729), - [sym_number] = ACTIONS(1729), - [sym_this] = ACTIONS(1725), - [sym_super] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_null] = ACTIONS(1725), - [sym_undefined] = ACTIONS(1725), - [anon_sym_AT] = ACTIONS(1729), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(2798), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1725), [anon_sym_readonly] = ACTIONS(1725), [anon_sym_get] = ACTIONS(1725), @@ -43698,51593 +119452,80283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1725), [anon_sym_string] = ACTIONS(1725), [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), [anon_sym_property] = ACTIONS(1725), [anon_sym_signal] = ACTIONS(1725), [anon_sym_on] = ACTIONS(1725), [anon_sym_required] = ACTIONS(1725), [anon_sym_component] = ACTIONS(1725), - [anon_sym_abstract] = ACTIONS(1725), - [anon_sym_satisfies] = ACTIONS(1727), - [anon_sym_interface] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [sym__automatic_semicolon] = ACTIONS(1733), - [sym__ternary_qmark] = ACTIONS(1731), - }, - [190] = { - [sym_identifier] = ACTIONS(1735), - [anon_sym_export] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_type] = ACTIONS(1735), - [anon_sym_as] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_COMMA] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_typeof] = ACTIONS(1735), - [anon_sym_import] = ACTIONS(1735), - [anon_sym_from] = ACTIONS(1735), - [anon_sym_var] = ACTIONS(1735), - [anon_sym_let] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_else] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_switch] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_await] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1737), - [anon_sym_of] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_with] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_debugger] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_case] = ACTIONS(1735), - [anon_sym_yield] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_LTtemplate_GT] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_SLASH] = ACTIONS(1735), - [anon_sym_DOT] = ACTIONS(1737), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_async] = ACTIONS(1735), - [anon_sym_function] = ACTIONS(1735), - [anon_sym_QMARK_DOT] = ACTIONS(1741), - [anon_sym_new] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_GT_GT_GT] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_PERCENT] = ACTIONS(1741), - [anon_sym_STAR_STAR] = ACTIONS(1741), - [anon_sym_LT_EQ] = ACTIONS(1741), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1741), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(1741), - [anon_sym_QMARK_QMARK] = ACTIONS(1741), - [anon_sym_instanceof] = ACTIONS(1737), - [anon_sym_TILDE] = ACTIONS(1739), - [anon_sym_void] = ACTIONS(1735), - [anon_sym_delete] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1739), - [sym_number] = ACTIONS(1739), - [sym_this] = ACTIONS(1735), - [sym_super] = ACTIONS(1735), - [sym_true] = ACTIONS(1735), - [sym_false] = ACTIONS(1735), - [sym_null] = ACTIONS(1735), - [sym_undefined] = ACTIONS(1735), - [anon_sym_AT] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_readonly] = ACTIONS(1735), - [anon_sym_get] = ACTIONS(1735), - [anon_sym_set] = ACTIONS(1735), - [anon_sym_declare] = ACTIONS(1735), - [anon_sym_public] = ACTIONS(1735), - [anon_sym_private] = ACTIONS(1735), - [anon_sym_protected] = ACTIONS(1735), - [anon_sym_override] = ACTIONS(1735), - [anon_sym_module] = ACTIONS(1735), - [anon_sym_any] = ACTIONS(1735), - [anon_sym_number] = ACTIONS(1735), - [anon_sym_boolean] = ACTIONS(1735), - [anon_sym_string] = ACTIONS(1735), - [anon_sym_symbol] = ACTIONS(1735), - [anon_sym_property] = ACTIONS(1735), - [anon_sym_signal] = ACTIONS(1735), - [anon_sym_on] = ACTIONS(1735), - [anon_sym_required] = ACTIONS(1735), - [anon_sym_component] = ACTIONS(1735), - [anon_sym_abstract] = ACTIONS(1735), - [anon_sym_satisfies] = ACTIONS(1737), - [anon_sym_interface] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [sym__automatic_semicolon] = ACTIONS(1743), - [sym__ternary_qmark] = ACTIONS(1741), - }, - [191] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1866), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4382), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4025), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(4123), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1745), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1748), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(668), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(668), - [anon_sym_number] = ACTIONS(668), - [anon_sym_boolean] = ACTIONS(668), - [anon_sym_string] = ACTIONS(668), - [anon_sym_symbol] = ACTIONS(668), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - }, - [192] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_EQ_GT] = ACTIONS(1754), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_void] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(65), - }, - [193] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(1681), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_RBRACK] = ACTIONS(1683), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(19), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - }, - [194] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2321), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1509), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_RBRACK] = ACTIONS(1509), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), - [anon_sym_extends] = ACTIONS(1511), - }, - [195] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_in] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_EQ_GT] = ACTIONS(1758), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_void] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(65), - }, - [196] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_assignment_pattern] = STATE(4178), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3986), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_pattern_repeat1] = STATE(4032), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(1681), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_RBRACK] = ACTIONS(1760), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(19), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - }, - [197] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2256), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4082), - [sym_assignment_pattern] = STATE(4273), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4082), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1339), - [sym_subscript_expression] = STATE(1339), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4082), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3872), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1339), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_pattern_repeat1] = STATE(4227), - [sym_identifier] = ACTIONS(1762), - [anon_sym_export] = ACTIONS(1764), - [anon_sym_type] = ACTIONS(1764), - [anon_sym_namespace] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_COMMA] = ACTIONS(1681), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1764), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1764), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_RBRACK] = ACTIONS(1683), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1768), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1687), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_readonly] = ACTIONS(1764), - [anon_sym_get] = ACTIONS(1764), - [anon_sym_set] = ACTIONS(1764), - [anon_sym_declare] = ACTIONS(1764), - [anon_sym_public] = ACTIONS(1764), - [anon_sym_private] = ACTIONS(1764), - [anon_sym_protected] = ACTIONS(1764), - [anon_sym_override] = ACTIONS(1764), - [anon_sym_module] = ACTIONS(1764), - [anon_sym_any] = ACTIONS(1764), - [anon_sym_number] = ACTIONS(1764), - [anon_sym_boolean] = ACTIONS(1764), - [anon_sym_string] = ACTIONS(1764), - [anon_sym_symbol] = ACTIONS(1764), - [anon_sym_property] = ACTIONS(1764), - [anon_sym_signal] = ACTIONS(1764), - [anon_sym_on] = ACTIONS(1764), - [anon_sym_required] = ACTIONS(1764), - [anon_sym_component] = ACTIONS(1764), - }, - [198] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_in] = ACTIONS(26), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_EQ_GT] = ACTIONS(1772), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_void] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(65), - }, - [199] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_in] = ACTIONS(26), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_void] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(65), - }, - [200] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1866), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4382), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4025), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(4123), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1745), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1745), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(668), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(668), - [anon_sym_number] = ACTIONS(668), - [anon_sym_boolean] = ACTIONS(668), - [anon_sym_string] = ACTIONS(668), - [anon_sym_symbol] = ACTIONS(668), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - }, - [201] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1866), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4382), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_spread_element] = STATE(4025), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(4123), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(1745), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1776), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(668), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(668), - [anon_sym_number] = ACTIONS(668), - [anon_sym_boolean] = ACTIONS(668), - [anon_sym_string] = ACTIONS(668), - [anon_sym_symbol] = ACTIONS(668), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), - }, - [202] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_in] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(73), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(75), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_void] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(108), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - [sym__ternary_qmark] = ACTIONS(65), - }, - [203] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_assignment_pattern] = STATE(4382), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(4123), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_RBRACK] = ACTIONS(1780), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(19), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - }, - [204] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1890), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_spread_element] = STATE(4134), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4135), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), - }, - [205] = { - [sym_identifier] = ACTIONS(1788), - [anon_sym_export] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_EQ] = ACTIONS(23), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(1788), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_COMMA] = ACTIONS(32), - [anon_sym_typeof] = ACTIONS(1788), - [anon_sym_import] = ACTIONS(1788), - [anon_sym_from] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(32), - [anon_sym_await] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(1788), - [anon_sym_COLON] = ACTIONS(32), - [anon_sym_yield] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_LTtemplate_GT] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(1788), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(1788), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_class] = ACTIONS(1788), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_function] = ACTIONS(1788), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_TILDE] = ACTIONS(1790), - [anon_sym_void] = ACTIONS(1788), - [anon_sym_delete] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1790), - [sym_number] = ACTIONS(1790), - [sym_this] = ACTIONS(1788), - [sym_super] = ACTIONS(1788), - [sym_true] = ACTIONS(1788), - [sym_false] = ACTIONS(1788), - [sym_null] = ACTIONS(1788), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1790), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_readonly] = ACTIONS(1788), - [anon_sym_get] = ACTIONS(1788), - [anon_sym_set] = ACTIONS(1788), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(1788), - [anon_sym_public] = ACTIONS(1788), - [anon_sym_private] = ACTIONS(1788), - [anon_sym_protected] = ACTIONS(1788), - [anon_sym_override] = ACTIONS(1788), - [anon_sym_module] = ACTIONS(1788), - [anon_sym_any] = ACTIONS(1788), - [anon_sym_number] = ACTIONS(1788), - [anon_sym_boolean] = ACTIONS(1788), - [anon_sym_string] = ACTIONS(1788), - [anon_sym_symbol] = ACTIONS(1788), - [anon_sym_property] = ACTIONS(1788), - [anon_sym_signal] = ACTIONS(1788), - [anon_sym_on] = ACTIONS(1788), - [anon_sym_required] = ACTIONS(1788), - [anon_sym_component] = ACTIONS(1788), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [206] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2244), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), - [anon_sym_extends] = ACTIONS(1511), - }, - [207] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), - [anon_sym_extends] = ACTIONS(1511), - }, - [208] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1833), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_spread_element] = STATE(4013), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4014), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), - }, - [209] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3740), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_accessibility_modifier] = STATE(226), - [sym_override_modifier] = STATE(245), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(1120), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(1794), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1796), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(788), - [anon_sym_private] = ACTIONS(788), - [anon_sym_protected] = ACTIONS(788), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), - }, - [210] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1899), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_spread_element] = STATE(4217), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4211), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1800), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), - }, - [211] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1875), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_spread_element] = STATE(4279), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4280), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1802), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), - }, - [212] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1892), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_spread_element] = STATE(4145), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4138), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1804), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), - }, - [213] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), - [anon_sym_extends] = ACTIONS(1511), - }, - [214] = { - [sym_identifier] = ACTIONS(1806), - [anon_sym_export] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_typeof] = ACTIONS(1806), - [anon_sym_import] = ACTIONS(1806), - [anon_sym_from] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1808), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_await] = ACTIONS(1806), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(1806), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_yield] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_LTtemplate_GT] = ACTIONS(1808), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(1806), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_class] = ACTIONS(1806), - [anon_sym_async] = ACTIONS(1806), - [anon_sym_function] = ACTIONS(1806), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1806), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1808), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_void] = ACTIONS(1806), - [anon_sym_delete] = ACTIONS(1806), - [anon_sym_PLUS_PLUS] = ACTIONS(1808), - [anon_sym_DASH_DASH] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1808), - [sym_number] = ACTIONS(1808), - [sym_this] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_true] = ACTIONS(1806), - [sym_false] = ACTIONS(1806), - [sym_null] = ACTIONS(1806), - [sym_undefined] = ACTIONS(1806), - [anon_sym_AT] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_readonly] = ACTIONS(1806), - [anon_sym_get] = ACTIONS(1806), - [anon_sym_set] = ACTIONS(1806), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(1806), - [anon_sym_public] = ACTIONS(1806), - [anon_sym_private] = ACTIONS(1806), - [anon_sym_protected] = ACTIONS(1806), - [anon_sym_override] = ACTIONS(1806), - [anon_sym_module] = ACTIONS(1806), - [anon_sym_any] = ACTIONS(1806), - [anon_sym_number] = ACTIONS(1806), - [anon_sym_boolean] = ACTIONS(1806), - [anon_sym_string] = ACTIONS(1806), - [anon_sym_symbol] = ACTIONS(1806), - [anon_sym_property] = ACTIONS(1806), - [anon_sym_signal] = ACTIONS(1806), - [anon_sym_on] = ACTIONS(1806), - [anon_sym_required] = ACTIONS(1806), - [anon_sym_component] = ACTIONS(1806), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [215] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1866), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_spread_element] = STATE(4025), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [sym_html_comment] = ACTIONS(5), }, - [216] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2277), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), - [anon_sym_extends] = ACTIONS(1511), + [644] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3850), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(644), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [217] = { - [sym_identifier] = ACTIONS(1788), - [anon_sym_export] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(1788), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_typeof] = ACTIONS(1788), - [anon_sym_import] = ACTIONS(1788), - [anon_sym_from] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_await] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(1788), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_yield] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_LTtemplate_GT] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(1788), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(1788), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_class] = ACTIONS(1788), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_function] = ACTIONS(1788), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_TILDE] = ACTIONS(1790), - [anon_sym_void] = ACTIONS(1788), - [anon_sym_delete] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1790), - [sym_number] = ACTIONS(1790), - [sym_this] = ACTIONS(1788), - [sym_super] = ACTIONS(1788), - [sym_true] = ACTIONS(1788), - [sym_false] = ACTIONS(1788), - [sym_null] = ACTIONS(1788), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1790), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_readonly] = ACTIONS(1788), - [anon_sym_get] = ACTIONS(1788), - [anon_sym_set] = ACTIONS(1788), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(1788), - [anon_sym_public] = ACTIONS(1788), - [anon_sym_private] = ACTIONS(1788), - [anon_sym_protected] = ACTIONS(1788), - [anon_sym_override] = ACTIONS(1788), - [anon_sym_module] = ACTIONS(1788), - [anon_sym_any] = ACTIONS(1788), - [anon_sym_number] = ACTIONS(1788), - [anon_sym_boolean] = ACTIONS(1788), - [anon_sym_string] = ACTIONS(1788), - [anon_sym_symbol] = ACTIONS(1788), - [anon_sym_property] = ACTIONS(1788), - [anon_sym_signal] = ACTIONS(1788), - [anon_sym_on] = ACTIONS(1788), - [anon_sym_required] = ACTIONS(1788), - [anon_sym_component] = ACTIONS(1788), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [645] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3129), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(645), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(2800), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [218] = { - [sym_identifier] = ACTIONS(1806), - [anon_sym_export] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_EQ] = ACTIONS(23), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(1806), - [anon_sym_LBRACE] = ACTIONS(1808), - [anon_sym_COMMA] = ACTIONS(32), - [anon_sym_typeof] = ACTIONS(1806), - [anon_sym_import] = ACTIONS(1806), - [anon_sym_from] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1808), - [anon_sym_RPAREN] = ACTIONS(32), - [anon_sym_await] = ACTIONS(1806), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(1806), - [anon_sym_COLON] = ACTIONS(32), - [anon_sym_yield] = ACTIONS(1806), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_LTtemplate_GT] = ACTIONS(1808), - [anon_sym_LT] = ACTIONS(1806), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(1806), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_class] = ACTIONS(1806), - [anon_sym_async] = ACTIONS(1806), - [anon_sym_function] = ACTIONS(1806), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_new] = ACTIONS(1806), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1808), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_TILDE] = ACTIONS(1808), - [anon_sym_void] = ACTIONS(1806), - [anon_sym_delete] = ACTIONS(1806), - [anon_sym_PLUS_PLUS] = ACTIONS(1808), - [anon_sym_DASH_DASH] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1808), - [sym_number] = ACTIONS(1808), - [sym_this] = ACTIONS(1806), - [sym_super] = ACTIONS(1806), - [sym_true] = ACTIONS(1806), - [sym_false] = ACTIONS(1806), - [sym_null] = ACTIONS(1806), - [sym_undefined] = ACTIONS(1806), - [anon_sym_AT] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_readonly] = ACTIONS(1806), - [anon_sym_get] = ACTIONS(1806), - [anon_sym_set] = ACTIONS(1806), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(1806), - [anon_sym_public] = ACTIONS(1806), - [anon_sym_private] = ACTIONS(1806), - [anon_sym_protected] = ACTIONS(1806), - [anon_sym_override] = ACTIONS(1806), - [anon_sym_module] = ACTIONS(1806), - [anon_sym_any] = ACTIONS(1806), - [anon_sym_number] = ACTIONS(1806), - [anon_sym_boolean] = ACTIONS(1806), - [anon_sym_string] = ACTIONS(1806), - [anon_sym_symbol] = ACTIONS(1806), - [anon_sym_property] = ACTIONS(1806), - [anon_sym_signal] = ACTIONS(1806), - [anon_sym_on] = ACTIONS(1806), - [anon_sym_required] = ACTIONS(1806), - [anon_sym_component] = ACTIONS(1806), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [646] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2907), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(646), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [219] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1848), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_spread_element] = STATE(4050), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4030), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [647] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(647), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [220] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1898), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_spread_element] = STATE(4198), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [aux_sym_array_repeat1] = STATE(4200), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1782), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1814), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [648] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(2997), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(648), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [221] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), - [anon_sym_extends] = ACTIONS(1511), + [649] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3611), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(649), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [222] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1914), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), - [anon_sym_extends] = ACTIONS(1511), + [650] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3608), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(650), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [223] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1841), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), - [anon_sym_extends] = ACTIONS(1511), + [651] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3602), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(651), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [224] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(256), - [sym_empty_statement] = STATE(256), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [652] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3094), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(652), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [225] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(253), - [sym_empty_statement] = STATE(253), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [653] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2844), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(653), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [226] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3601), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_override_modifier] = STATE(242), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1816), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [654] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3597), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(654), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [227] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_assignment_pattern] = STATE(4586), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(4201), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(19), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [655] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3596), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(655), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [228] = { - [sym_import] = STATE(2118), - [sym_expression_statement] = STATE(255), - [sym_empty_statement] = STATE(255), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1852), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4524), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [656] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3593), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(656), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [229] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3725), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_override_modifier] = STATE(248), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(734), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1820), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(790), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [657] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3588), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(657), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [230] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1948), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3271), - [sym_assignment_pattern] = STATE(4586), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3271), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1224), - [sym_subscript_expression] = STATE(1224), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3271), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(4201), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1224), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1426), - [anon_sym_export] = ACTIONS(668), - [anon_sym_type] = ACTIONS(668), - [anon_sym_namespace] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(668), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(668), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(692), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1392), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(668), - [anon_sym_readonly] = ACTIONS(668), - [anon_sym_get] = ACTIONS(668), - [anon_sym_set] = ACTIONS(668), - [anon_sym_declare] = ACTIONS(668), - [anon_sym_public] = ACTIONS(668), - [anon_sym_private] = ACTIONS(668), - [anon_sym_protected] = ACTIONS(668), - [anon_sym_override] = ACTIONS(668), - [anon_sym_module] = ACTIONS(668), - [anon_sym_any] = ACTIONS(668), - [anon_sym_number] = ACTIONS(668), - [anon_sym_boolean] = ACTIONS(668), - [anon_sym_string] = ACTIONS(668), - [anon_sym_symbol] = ACTIONS(668), - [anon_sym_property] = ACTIONS(668), - [anon_sym_signal] = ACTIONS(668), - [anon_sym_on] = ACTIONS(668), - [anon_sym_required] = ACTIONS(668), - [anon_sym_component] = ACTIONS(668), + [658] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2832), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(658), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [231] = { - [sym_import] = STATE(1470), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1527), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym__type_query_member_expression] = STATE(2794), - [sym__type_query_subscript_expression] = STATE(2795), - [sym__type_query_call_expression] = STATE(2833), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [659] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2945), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(659), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [232] = { - [sym_import] = STATE(1470), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1841), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym__type_query_member_expression] = STATE(2794), - [sym__type_query_subscript_expression] = STATE(2795), - [sym__type_query_call_expression] = STATE(2833), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1824), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [660] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3586), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(660), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [233] = { - [sym_import] = STATE(1470), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1527), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym__type_query_member_expression] = STATE(2794), - [sym__type_query_subscript_expression] = STATE(2795), - [sym__type_query_call_expression] = STATE(2833), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [661] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3579), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(661), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [234] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1891), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4393), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), - [sym__automatic_semicolon] = ACTIONS(1828), + [662] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3847), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(662), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [235] = { - [sym_import] = STATE(1470), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1527), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym__type_query_member_expression] = STATE(2794), - [sym__type_query_subscript_expression] = STATE(2795), - [sym__type_query_call_expression] = STATE(2833), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [663] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3577), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(663), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [236] = { - [sym_import] = STATE(2002), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym__type_query_member_expression] = STATE(2794), - [sym__type_query_subscript_expression] = STATE(2795), - [sym__type_query_call_expression] = STATE(2833), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1832), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [664] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3573), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(664), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [237] = { - [sym_import] = STATE(2002), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1914), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym__type_query_member_expression] = STATE(2794), - [sym__type_query_subscript_expression] = STATE(2795), - [sym__type_query_call_expression] = STATE(2833), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1834), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [665] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2915), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(665), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [238] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1873), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4587), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_SEMI] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), - [sym__automatic_semicolon] = ACTIONS(1836), + [666] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2909), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(666), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [239] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1353), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4113), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4113), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1353), - [sym_subscript_expression] = STATE(1353), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4113), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1353), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1840), - [anon_sym_namespace] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1844), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1840), - [anon_sym_var] = ACTIONS(1846), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1840), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1854), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_readonly] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1840), - [anon_sym_set] = ACTIONS(1840), - [anon_sym_declare] = ACTIONS(1840), - [anon_sym_public] = ACTIONS(1840), - [anon_sym_private] = ACTIONS(1840), - [anon_sym_protected] = ACTIONS(1840), - [anon_sym_override] = ACTIONS(1840), - [anon_sym_module] = ACTIONS(1840), - [anon_sym_any] = ACTIONS(1840), - [anon_sym_number] = ACTIONS(1840), - [anon_sym_boolean] = ACTIONS(1840), - [anon_sym_string] = ACTIONS(1840), - [anon_sym_symbol] = ACTIONS(1840), - [anon_sym_property] = ACTIONS(1840), - [anon_sym_signal] = ACTIONS(1840), - [anon_sym_on] = ACTIONS(1840), - [anon_sym_required] = ACTIONS(1840), - [anon_sym_component] = ACTIONS(1840), + [667] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2908), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(667), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [240] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3725), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(734), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1820), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [668] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3572), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(668), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [241] = { - [sym_import] = STATE(1470), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2277), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym__type_query_member_expression] = STATE(2794), - [sym__type_query_subscript_expression] = STATE(2795), - [sym__type_query_call_expression] = STATE(2833), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1856), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [669] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3571), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(669), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [242] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3578), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1858), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1860), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [670] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2905), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(670), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [243] = { - [sym_import] = STATE(2395), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1527), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym__type_query_member_expression] = STATE(2862), - [sym__type_query_subscript_expression] = STATE(2863), - [sym__type_query_call_expression] = STATE(2968), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [671] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2893), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(671), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [244] = { - [sym_import] = STATE(1470), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2321), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym__type_query_member_expression] = STATE(2794), - [sym__type_query_subscript_expression] = STATE(2795), - [sym__type_query_call_expression] = STATE(2833), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1864), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [672] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2887), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(672), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [245] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3594), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(1866), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1868), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [673] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(673), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [246] = { - [sym_import] = STATE(1470), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2321), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym__type_query_member_expression] = STATE(2794), - [sym__type_query_subscript_expression] = STATE(2795), - [sym__type_query_call_expression] = STATE(2833), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1870), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [674] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2881), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(674), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [247] = { - [sym_import] = STATE(1470), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2244), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym__type_query_member_expression] = STATE(2794), - [sym__type_query_subscript_expression] = STATE(2795), - [sym__type_query_call_expression] = STATE(2833), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1872), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [675] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2880), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(675), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [248] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3355), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3355), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1201), - [sym_subscript_expression] = STATE(1201), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3355), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_pattern] = STATE(3648), - [sym_rest_pattern] = STATE(3368), - [sym_non_null_expression] = STATE(1201), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(638), - [anon_sym_export] = ACTIONS(19), - [anon_sym_type] = ACTIONS(19), - [anon_sym_namespace] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(19), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(59), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(71), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(746), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(660), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(19), - [anon_sym_readonly] = ACTIONS(1874), - [anon_sym_get] = ACTIONS(19), - [anon_sym_set] = ACTIONS(19), - [anon_sym_declare] = ACTIONS(19), - [anon_sym_public] = ACTIONS(19), - [anon_sym_private] = ACTIONS(19), - [anon_sym_protected] = ACTIONS(19), - [anon_sym_override] = ACTIONS(19), - [anon_sym_module] = ACTIONS(19), - [anon_sym_any] = ACTIONS(19), - [anon_sym_number] = ACTIONS(19), - [anon_sym_boolean] = ACTIONS(19), - [anon_sym_string] = ACTIONS(19), - [anon_sym_symbol] = ACTIONS(19), - [anon_sym_property] = ACTIONS(19), - [anon_sym_signal] = ACTIONS(19), - [anon_sym_on] = ACTIONS(19), - [anon_sym_required] = ACTIONS(19), - [anon_sym_component] = ACTIONS(19), + [676] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2867), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(676), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [249] = { - [sym_import] = STATE(1470), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym__type_query_member_expression] = STATE(2794), - [sym__type_query_subscript_expression] = STATE(2795), - [sym__type_query_call_expression] = STATE(2833), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1876), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [677] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2866), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(677), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [250] = { - [sym_import] = STATE(2002), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym__type_query_member_expression] = STATE(2794), - [sym__type_query_subscript_expression] = STATE(2795), - [sym__type_query_call_expression] = STATE(2833), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1878), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [678] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2853), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(678), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [251] = { - [sym_import] = STATE(1470), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2321), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym__type_query_member_expression] = STATE(2794), - [sym__type_query_subscript_expression] = STATE(2795), - [sym__type_query_call_expression] = STATE(2833), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1880), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [679] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2847), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(679), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [252] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1992), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4922), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_EQ_GT] = ACTIONS(1882), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [680] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2839), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(680), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [253] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1901), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4813), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [681] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2784), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(681), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [254] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1992), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4922), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_EQ_GT] = ACTIONS(1886), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [682] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2789), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(682), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [255] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1985), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4924), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [683] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3542), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(683), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [256] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(2021), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4686), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [684] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2812), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(684), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [257] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2114), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1708), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [685] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2891), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(685), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [258] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1834), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4547), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [686] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3570), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(686), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [259] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2271), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1675), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [687] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3566), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(687), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [260] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2276), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1678), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [688] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3632), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(688), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [261] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1277), - [sym_expression] = STATE(2329), - [sym_primary_expression] = STATE(1780), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1277), - [sym_subscript_expression] = STATE(1277), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3564), - [sym_non_null_expression] = STATE(1277), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4475), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1894), - [anon_sym_export] = ACTIONS(1896), - [anon_sym_type] = ACTIONS(1896), - [anon_sym_namespace] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1896), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1896), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_DOT] = ACTIONS(1900), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1902), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1906), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1896), - [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_get] = ACTIONS(1896), - [anon_sym_set] = ACTIONS(1896), - [anon_sym_declare] = ACTIONS(1896), - [anon_sym_public] = ACTIONS(1896), - [anon_sym_private] = ACTIONS(1896), - [anon_sym_protected] = ACTIONS(1896), - [anon_sym_override] = ACTIONS(1896), - [anon_sym_module] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1896), - [anon_sym_number] = ACTIONS(1896), - [anon_sym_boolean] = ACTIONS(1896), - [anon_sym_string] = ACTIONS(1896), - [anon_sym_symbol] = ACTIONS(1896), - [anon_sym_property] = ACTIONS(1896), - [anon_sym_signal] = ACTIONS(1896), - [anon_sym_on] = ACTIONS(1896), - [anon_sym_required] = ACTIONS(1896), - [anon_sym_component] = ACTIONS(1896), + [689] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3187), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(689), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [262] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(2073), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4962), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [690] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3132), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(690), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(2059), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4961), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [691] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3623), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(691), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(2798), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [264] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(2056), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4960), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [692] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(692), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(2798), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [265] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2278), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1679), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [693] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3207), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(693), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [266] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1745), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1620), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [694] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(694), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [267] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1744), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1619), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [695] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3203), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(695), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [268] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1750), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4741), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [696] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3198), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(696), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [269] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1744), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2333), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [697] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3252), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(697), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [270] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1742), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1618), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [698] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3130), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(698), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [271] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1742), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2332), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [699] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3545), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(699), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [272] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(2054), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4959), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [700] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3261), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(700), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [273] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1710), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1616), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [701] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3544), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(701), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [274] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1428), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(1914), - [anon_sym_type] = ACTIONS(1914), - [anon_sym_namespace] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1914), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_DOT] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1920), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1914), - [anon_sym_readonly] = ACTIONS(1914), - [anon_sym_get] = ACTIONS(1914), - [anon_sym_set] = ACTIONS(1914), - [anon_sym_declare] = ACTIONS(1914), - [anon_sym_public] = ACTIONS(1914), - [anon_sym_private] = ACTIONS(1914), - [anon_sym_protected] = ACTIONS(1914), - [anon_sym_override] = ACTIONS(1914), - [anon_sym_module] = ACTIONS(1914), - [anon_sym_any] = ACTIONS(1914), - [anon_sym_number] = ACTIONS(1914), - [anon_sym_boolean] = ACTIONS(1914), - [anon_sym_string] = ACTIONS(1914), - [anon_sym_symbol] = ACTIONS(1914), - [anon_sym_property] = ACTIONS(1914), - [anon_sym_signal] = ACTIONS(1914), - [anon_sym_on] = ACTIONS(1914), - [anon_sym_required] = ACTIONS(1914), - [anon_sym_component] = ACTIONS(1914), + [702] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3196), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(702), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [275] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(2075), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4797), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [703] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3543), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(703), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [276] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1428), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3564), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4475), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(1914), - [anon_sym_type] = ACTIONS(1914), - [anon_sym_namespace] = ACTIONS(1916), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1914), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_DOT] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1920), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1914), - [anon_sym_readonly] = ACTIONS(1914), - [anon_sym_get] = ACTIONS(1914), - [anon_sym_set] = ACTIONS(1914), - [anon_sym_declare] = ACTIONS(1914), - [anon_sym_public] = ACTIONS(1914), - [anon_sym_private] = ACTIONS(1914), - [anon_sym_protected] = ACTIONS(1914), - [anon_sym_override] = ACTIONS(1914), - [anon_sym_module] = ACTIONS(1914), - [anon_sym_any] = ACTIONS(1914), - [anon_sym_number] = ACTIONS(1914), - [anon_sym_boolean] = ACTIONS(1914), - [anon_sym_string] = ACTIONS(1914), - [anon_sym_symbol] = ACTIONS(1914), - [anon_sym_property] = ACTIONS(1914), - [anon_sym_signal] = ACTIONS(1914), - [anon_sym_on] = ACTIONS(1914), - [anon_sym_required] = ACTIONS(1914), - [anon_sym_component] = ACTIONS(1914), + [704] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3259), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(704), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [277] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1428), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3569), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4550), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1922), - [anon_sym_export] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_namespace] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1924), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_readonly] = ACTIONS(1924), - [anon_sym_get] = ACTIONS(1924), - [anon_sym_set] = ACTIONS(1924), - [anon_sym_declare] = ACTIONS(1924), - [anon_sym_public] = ACTIONS(1924), - [anon_sym_private] = ACTIONS(1924), - [anon_sym_protected] = ACTIONS(1924), - [anon_sym_override] = ACTIONS(1924), - [anon_sym_module] = ACTIONS(1924), - [anon_sym_any] = ACTIONS(1924), - [anon_sym_number] = ACTIONS(1924), - [anon_sym_boolean] = ACTIONS(1924), - [anon_sym_string] = ACTIONS(1924), - [anon_sym_symbol] = ACTIONS(1924), - [anon_sym_property] = ACTIONS(1924), - [anon_sym_signal] = ACTIONS(1924), - [anon_sym_on] = ACTIONS(1924), - [anon_sym_required] = ACTIONS(1924), - [anon_sym_component] = ACTIONS(1924), + [705] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3192), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(705), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [278] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1703), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1592), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [706] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3189), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(706), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [279] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1586), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [707] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3713), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(707), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [280] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1428), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3564), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4475), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [708] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3188), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(708), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [281] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1428), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3564), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4475), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1930), - [anon_sym_export] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_namespace] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1932), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_readonly] = ACTIONS(1932), - [anon_sym_get] = ACTIONS(1932), - [anon_sym_set] = ACTIONS(1932), - [anon_sym_declare] = ACTIONS(1932), - [anon_sym_public] = ACTIONS(1932), - [anon_sym_private] = ACTIONS(1932), - [anon_sym_protected] = ACTIONS(1932), - [anon_sym_override] = ACTIONS(1932), - [anon_sym_module] = ACTIONS(1932), - [anon_sym_any] = ACTIONS(1932), - [anon_sym_number] = ACTIONS(1932), - [anon_sym_boolean] = ACTIONS(1932), - [anon_sym_string] = ACTIONS(1932), - [anon_sym_symbol] = ACTIONS(1932), - [anon_sym_property] = ACTIONS(1932), - [anon_sym_signal] = ACTIONS(1932), - [anon_sym_on] = ACTIONS(1932), - [anon_sym_required] = ACTIONS(1932), - [anon_sym_component] = ACTIONS(1932), + [709] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3767), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(709), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(2798), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [282] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1428), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1922), - [anon_sym_export] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_namespace] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1924), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_readonly] = ACTIONS(1924), - [anon_sym_get] = ACTIONS(1924), - [anon_sym_set] = ACTIONS(1924), - [anon_sym_declare] = ACTIONS(1924), - [anon_sym_public] = ACTIONS(1924), - [anon_sym_private] = ACTIONS(1924), - [anon_sym_protected] = ACTIONS(1924), - [anon_sym_override] = ACTIONS(1924), - [anon_sym_module] = ACTIONS(1924), - [anon_sym_any] = ACTIONS(1924), - [anon_sym_number] = ACTIONS(1924), - [anon_sym_boolean] = ACTIONS(1924), - [anon_sym_string] = ACTIONS(1924), - [anon_sym_symbol] = ACTIONS(1924), - [anon_sym_property] = ACTIONS(1924), - [anon_sym_signal] = ACTIONS(1924), - [anon_sym_on] = ACTIONS(1924), - [anon_sym_required] = ACTIONS(1924), - [anon_sym_component] = ACTIONS(1924), + [710] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3706), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(710), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [283] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1745), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1883), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [711] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3676), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(711), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [284] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1744), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1882), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [712] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3713), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(712), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(2798), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [285] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1742), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1881), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [713] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3625), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(713), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [286] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1710), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1879), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [714] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3599), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(714), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [287] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2285), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_mapped_type_clause] = STATE(4757), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1938), - [anon_sym_export] = ACTIONS(1940), - [anon_sym_type] = ACTIONS(1940), - [anon_sym_namespace] = ACTIONS(1942), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1940), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1944), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1940), - [anon_sym_get] = ACTIONS(1940), - [anon_sym_set] = ACTIONS(1940), - [anon_sym_declare] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_protected] = ACTIONS(1940), - [anon_sym_override] = ACTIONS(1940), - [anon_sym_module] = ACTIONS(1940), - [anon_sym_any] = ACTIONS(1940), - [anon_sym_number] = ACTIONS(1940), - [anon_sym_boolean] = ACTIONS(1940), - [anon_sym_string] = ACTIONS(1940), - [anon_sym_symbol] = ACTIONS(1940), - [anon_sym_property] = ACTIONS(1940), - [anon_sym_signal] = ACTIONS(1940), - [anon_sym_on] = ACTIONS(1940), - [anon_sym_required] = ACTIONS(1940), - [anon_sym_component] = ACTIONS(1940), + [715] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3652), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(715), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [288] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1428), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3564), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4475), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1922), - [anon_sym_export] = ACTIONS(1924), - [anon_sym_type] = ACTIONS(1924), - [anon_sym_namespace] = ACTIONS(1926), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1924), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1924), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1928), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_readonly] = ACTIONS(1924), - [anon_sym_get] = ACTIONS(1924), - [anon_sym_set] = ACTIONS(1924), - [anon_sym_declare] = ACTIONS(1924), - [anon_sym_public] = ACTIONS(1924), - [anon_sym_private] = ACTIONS(1924), - [anon_sym_protected] = ACTIONS(1924), - [anon_sym_override] = ACTIONS(1924), - [anon_sym_module] = ACTIONS(1924), - [anon_sym_any] = ACTIONS(1924), - [anon_sym_number] = ACTIONS(1924), - [anon_sym_boolean] = ACTIONS(1924), - [anon_sym_string] = ACTIONS(1924), - [anon_sym_symbol] = ACTIONS(1924), - [anon_sym_property] = ACTIONS(1924), - [anon_sym_signal] = ACTIONS(1924), - [anon_sym_on] = ACTIONS(1924), - [anon_sym_required] = ACTIONS(1924), - [anon_sym_component] = ACTIONS(1924), + [716] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3043), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(716), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [289] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1428), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1900), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [717] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3658), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(717), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [290] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1900), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4394), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [718] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3633), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(718), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [291] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2109), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [719] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3681), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(719), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [292] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1428), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1930), - [anon_sym_export] = ACTIONS(1932), - [anon_sym_type] = ACTIONS(1932), - [anon_sym_namespace] = ACTIONS(1934), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1932), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1932), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1936), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_readonly] = ACTIONS(1932), - [anon_sym_get] = ACTIONS(1932), - [anon_sym_set] = ACTIONS(1932), - [anon_sym_declare] = ACTIONS(1932), - [anon_sym_public] = ACTIONS(1932), - [anon_sym_private] = ACTIONS(1932), - [anon_sym_protected] = ACTIONS(1932), - [anon_sym_override] = ACTIONS(1932), - [anon_sym_module] = ACTIONS(1932), - [anon_sym_any] = ACTIONS(1932), - [anon_sym_number] = ACTIONS(1932), - [anon_sym_boolean] = ACTIONS(1932), - [anon_sym_string] = ACTIONS(1932), - [anon_sym_symbol] = ACTIONS(1932), - [anon_sym_property] = ACTIONS(1932), - [anon_sym_signal] = ACTIONS(1932), - [anon_sym_on] = ACTIONS(1932), - [anon_sym_required] = ACTIONS(1932), - [anon_sym_component] = ACTIONS(1932), + [720] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(720), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(2802), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [293] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1703), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2172), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [721] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2570), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2570), + [sym_subscript_expression] = STATE(2570), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8290), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(721), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2570), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2804), + [anon_sym_export] = ACTIONS(2806), + [anon_sym_type] = ACTIONS(2806), + [anon_sym_namespace] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2806), + [anon_sym_let] = ACTIONS(2806), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2806), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2810), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2812), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2814), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2806), + [anon_sym_readonly] = ACTIONS(2806), + [anon_sym_get] = ACTIONS(2806), + [anon_sym_set] = ACTIONS(2806), + [anon_sym_declare] = ACTIONS(2806), + [anon_sym_public] = ACTIONS(2806), + [anon_sym_private] = ACTIONS(2806), + [anon_sym_protected] = ACTIONS(2806), + [anon_sym_override] = ACTIONS(2806), + [anon_sym_module] = ACTIONS(2806), + [anon_sym_any] = ACTIONS(2806), + [anon_sym_number] = ACTIONS(2806), + [anon_sym_boolean] = ACTIONS(2806), + [anon_sym_string] = ACTIONS(2806), + [anon_sym_symbol] = ACTIONS(2806), + [anon_sym_object] = ACTIONS(2806), + [anon_sym_property] = ACTIONS(2806), + [anon_sym_signal] = ACTIONS(2806), + [anon_sym_on] = ACTIONS(2806), + [anon_sym_required] = ACTIONS(2806), + [anon_sym_component] = ACTIONS(2806), + [sym_html_comment] = ACTIONS(5), }, - [294] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1703), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1842), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [722] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3739), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(722), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [295] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1710), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2203), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [723] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3535), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(723), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [296] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1428), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [724] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3064), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(724), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [297] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2251), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [725] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3065), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(725), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [298] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1827), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [726] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3742), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(726), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [299] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1742), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2250), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [727] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3805), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(727), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [300] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1982), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4654), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [728] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3501), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(728), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [301] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1744), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2288), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [729] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3186), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(729), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [302] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1277), - [sym_expression] = STATE(2329), - [sym_primary_expression] = STATE(1780), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1277), - [sym_subscript_expression] = STATE(1277), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3564), - [sym_non_null_expression] = STATE(1277), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4475), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1946), - [anon_sym_export] = ACTIONS(1948), - [anon_sym_type] = ACTIONS(1948), - [anon_sym_namespace] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1948), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_DOT] = ACTIONS(1900), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1952), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1906), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1948), - [anon_sym_readonly] = ACTIONS(1948), - [anon_sym_get] = ACTIONS(1948), - [anon_sym_set] = ACTIONS(1948), - [anon_sym_declare] = ACTIONS(1948), - [anon_sym_public] = ACTIONS(1948), - [anon_sym_private] = ACTIONS(1948), - [anon_sym_protected] = ACTIONS(1948), - [anon_sym_override] = ACTIONS(1948), - [anon_sym_module] = ACTIONS(1948), - [anon_sym_any] = ACTIONS(1948), - [anon_sym_number] = ACTIONS(1948), - [anon_sym_boolean] = ACTIONS(1948), - [anon_sym_string] = ACTIONS(1948), - [anon_sym_symbol] = ACTIONS(1948), - [anon_sym_property] = ACTIONS(1948), - [anon_sym_signal] = ACTIONS(1948), - [anon_sym_on] = ACTIONS(1948), - [anon_sym_required] = ACTIONS(1948), - [anon_sym_component] = ACTIONS(1948), + [730] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2579), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2579), + [sym_subscript_expression] = STATE(2579), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8663), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(730), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2579), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2816), + [anon_sym_export] = ACTIONS(2818), + [anon_sym_type] = ACTIONS(2818), + [anon_sym_namespace] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2818), + [anon_sym_let] = ACTIONS(2818), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2818), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2822), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2824), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2826), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2818), + [anon_sym_readonly] = ACTIONS(2818), + [anon_sym_get] = ACTIONS(2818), + [anon_sym_set] = ACTIONS(2818), + [anon_sym_declare] = ACTIONS(2818), + [anon_sym_public] = ACTIONS(2818), + [anon_sym_private] = ACTIONS(2818), + [anon_sym_protected] = ACTIONS(2818), + [anon_sym_override] = ACTIONS(2818), + [anon_sym_module] = ACTIONS(2818), + [anon_sym_any] = ACTIONS(2818), + [anon_sym_number] = ACTIONS(2818), + [anon_sym_boolean] = ACTIONS(2818), + [anon_sym_string] = ACTIONS(2818), + [anon_sym_symbol] = ACTIONS(2818), + [anon_sym_object] = ACTIONS(2818), + [anon_sym_property] = ACTIONS(2818), + [anon_sym_signal] = ACTIONS(2818), + [anon_sym_on] = ACTIONS(2818), + [anon_sym_required] = ACTIONS(2818), + [anon_sym_component] = ACTIONS(2818), + [sym_html_comment] = ACTIONS(5), }, - [303] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1745), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2307), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [731] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3147), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(731), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [304] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1428), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1954), - [anon_sym_export] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_namespace] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1956), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1956), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1960), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_readonly] = ACTIONS(1956), - [anon_sym_get] = ACTIONS(1956), - [anon_sym_set] = ACTIONS(1956), - [anon_sym_declare] = ACTIONS(1956), - [anon_sym_public] = ACTIONS(1956), - [anon_sym_private] = ACTIONS(1956), - [anon_sym_protected] = ACTIONS(1956), - [anon_sym_override] = ACTIONS(1956), - [anon_sym_module] = ACTIONS(1956), - [anon_sym_any] = ACTIONS(1956), - [anon_sym_number] = ACTIONS(1956), - [anon_sym_boolean] = ACTIONS(1956), - [anon_sym_string] = ACTIONS(1956), - [anon_sym_symbol] = ACTIONS(1956), - [anon_sym_property] = ACTIONS(1956), - [anon_sym_signal] = ACTIONS(1956), - [anon_sym_on] = ACTIONS(1956), - [anon_sym_required] = ACTIONS(1956), - [anon_sym_component] = ACTIONS(1956), + [732] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3005), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(732), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [305] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2278), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1980), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [733] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3185), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(733), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [306] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1428), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3564), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4475), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1954), - [anon_sym_export] = ACTIONS(1956), - [anon_sym_type] = ACTIONS(1956), - [anon_sym_namespace] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1956), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1956), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_DOT] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1960), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_readonly] = ACTIONS(1956), - [anon_sym_get] = ACTIONS(1956), - [anon_sym_set] = ACTIONS(1956), - [anon_sym_declare] = ACTIONS(1956), - [anon_sym_public] = ACTIONS(1956), - [anon_sym_private] = ACTIONS(1956), - [anon_sym_protected] = ACTIONS(1956), - [anon_sym_override] = ACTIONS(1956), - [anon_sym_module] = ACTIONS(1956), - [anon_sym_any] = ACTIONS(1956), - [anon_sym_number] = ACTIONS(1956), - [anon_sym_boolean] = ACTIONS(1956), - [anon_sym_string] = ACTIONS(1956), - [anon_sym_symbol] = ACTIONS(1956), - [anon_sym_property] = ACTIONS(1956), - [anon_sym_signal] = ACTIONS(1956), - [anon_sym_on] = ACTIONS(1956), - [anon_sym_required] = ACTIONS(1956), - [anon_sym_component] = ACTIONS(1956), + [734] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2578), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2578), + [sym_subscript_expression] = STATE(2578), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8377), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(734), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2578), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2830), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_namespace] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2830), + [anon_sym_let] = ACTIONS(2830), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2830), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2834), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2836), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2838), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2830), + [anon_sym_get] = ACTIONS(2830), + [anon_sym_set] = ACTIONS(2830), + [anon_sym_declare] = ACTIONS(2830), + [anon_sym_public] = ACTIONS(2830), + [anon_sym_private] = ACTIONS(2830), + [anon_sym_protected] = ACTIONS(2830), + [anon_sym_override] = ACTIONS(2830), + [anon_sym_module] = ACTIONS(2830), + [anon_sym_any] = ACTIONS(2830), + [anon_sym_number] = ACTIONS(2830), + [anon_sym_boolean] = ACTIONS(2830), + [anon_sym_string] = ACTIONS(2830), + [anon_sym_symbol] = ACTIONS(2830), + [anon_sym_object] = ACTIONS(2830), + [anon_sym_property] = ACTIONS(2830), + [anon_sym_signal] = ACTIONS(2830), + [anon_sym_on] = ACTIONS(2830), + [anon_sym_required] = ACTIONS(2830), + [anon_sym_component] = ACTIONS(2830), + [sym_html_comment] = ACTIONS(5), }, - [307] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1277), - [sym_expression] = STATE(2329), - [sym_primary_expression] = STATE(1780), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1277), - [sym_subscript_expression] = STATE(1277), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1277), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1894), - [anon_sym_export] = ACTIONS(1896), - [anon_sym_type] = ACTIONS(1896), - [anon_sym_namespace] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1896), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1896), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_DOT] = ACTIONS(1900), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1902), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1906), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1896), - [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_get] = ACTIONS(1896), - [anon_sym_set] = ACTIONS(1896), - [anon_sym_declare] = ACTIONS(1896), - [anon_sym_public] = ACTIONS(1896), - [anon_sym_private] = ACTIONS(1896), - [anon_sym_protected] = ACTIONS(1896), - [anon_sym_override] = ACTIONS(1896), - [anon_sym_module] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1896), - [anon_sym_number] = ACTIONS(1896), - [anon_sym_boolean] = ACTIONS(1896), - [anon_sym_string] = ACTIONS(1896), - [anon_sym_symbol] = ACTIONS(1896), - [anon_sym_property] = ACTIONS(1896), - [anon_sym_signal] = ACTIONS(1896), - [anon_sym_on] = ACTIONS(1896), - [anon_sym_required] = ACTIONS(1896), - [anon_sym_component] = ACTIONS(1896), + [735] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3750), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(735), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [308] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2276), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1977), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [736] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2999), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(736), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [309] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2271), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1950), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [737] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3846), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(737), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2317), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [738] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3301), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(738), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [311] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(2022), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4992), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [739] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2568), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2568), + [sym_subscript_expression] = STATE(2568), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8525), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(739), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2568), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2840), + [anon_sym_export] = ACTIONS(2842), + [anon_sym_type] = ACTIONS(2842), + [anon_sym_namespace] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2842), + [anon_sym_let] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2842), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2846), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2848), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2850), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2842), + [anon_sym_readonly] = ACTIONS(2842), + [anon_sym_get] = ACTIONS(2842), + [anon_sym_set] = ACTIONS(2842), + [anon_sym_declare] = ACTIONS(2842), + [anon_sym_public] = ACTIONS(2842), + [anon_sym_private] = ACTIONS(2842), + [anon_sym_protected] = ACTIONS(2842), + [anon_sym_override] = ACTIONS(2842), + [anon_sym_module] = ACTIONS(2842), + [anon_sym_any] = ACTIONS(2842), + [anon_sym_number] = ACTIONS(2842), + [anon_sym_boolean] = ACTIONS(2842), + [anon_sym_string] = ACTIONS(2842), + [anon_sym_symbol] = ACTIONS(2842), + [anon_sym_object] = ACTIONS(2842), + [anon_sym_property] = ACTIONS(2842), + [anon_sym_signal] = ACTIONS(2842), + [anon_sym_on] = ACTIONS(2842), + [anon_sym_required] = ACTIONS(2842), + [anon_sym_component] = ACTIONS(2842), + [sym_html_comment] = ACTIONS(5), }, - [312] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2207), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1791), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [740] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3815), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(740), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [313] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2127), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1934), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [741] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3302), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(741), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [314] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1428), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3564), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4475), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1962), - [anon_sym_export] = ACTIONS(1964), - [anon_sym_type] = ACTIONS(1964), - [anon_sym_namespace] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1964), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_DOT] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1964), - [anon_sym_readonly] = ACTIONS(1964), - [anon_sym_get] = ACTIONS(1964), - [anon_sym_set] = ACTIONS(1964), - [anon_sym_declare] = ACTIONS(1964), - [anon_sym_public] = ACTIONS(1964), - [anon_sym_private] = ACTIONS(1964), - [anon_sym_protected] = ACTIONS(1964), - [anon_sym_override] = ACTIONS(1964), - [anon_sym_module] = ACTIONS(1964), - [anon_sym_any] = ACTIONS(1964), - [anon_sym_number] = ACTIONS(1964), - [anon_sym_boolean] = ACTIONS(1964), - [anon_sym_string] = ACTIONS(1964), - [anon_sym_symbol] = ACTIONS(1964), - [anon_sym_property] = ACTIONS(1964), - [anon_sym_signal] = ACTIONS(1964), - [anon_sym_on] = ACTIONS(1964), - [anon_sym_required] = ACTIONS(1964), - [anon_sym_component] = ACTIONS(1964), + [742] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3798), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(742), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [315] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1703), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2240), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [743] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3748), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(743), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [316] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1277), - [sym_expression] = STATE(2329), - [sym_primary_expression] = STATE(1780), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1277), - [sym_subscript_expression] = STATE(1277), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1277), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1970), - [anon_sym_export] = ACTIONS(1972), - [anon_sym_type] = ACTIONS(1972), - [anon_sym_namespace] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1972), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(1900), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1976), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1906), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_readonly] = ACTIONS(1972), - [anon_sym_get] = ACTIONS(1972), - [anon_sym_set] = ACTIONS(1972), - [anon_sym_declare] = ACTIONS(1972), - [anon_sym_public] = ACTIONS(1972), - [anon_sym_private] = ACTIONS(1972), - [anon_sym_protected] = ACTIONS(1972), - [anon_sym_override] = ACTIONS(1972), - [anon_sym_module] = ACTIONS(1972), - [anon_sym_any] = ACTIONS(1972), - [anon_sym_number] = ACTIONS(1972), - [anon_sym_boolean] = ACTIONS(1972), - [anon_sym_string] = ACTIONS(1972), - [anon_sym_symbol] = ACTIONS(1972), - [anon_sym_property] = ACTIONS(1972), - [anon_sym_signal] = ACTIONS(1972), - [anon_sym_on] = ACTIONS(1972), - [anon_sym_required] = ACTIONS(1972), - [anon_sym_component] = ACTIONS(1972), + [744] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3769), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(744), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [317] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1428), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1962), - [anon_sym_export] = ACTIONS(1964), - [anon_sym_type] = ACTIONS(1964), - [anon_sym_namespace] = ACTIONS(1966), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1964), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1964), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_DOT] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1964), - [anon_sym_readonly] = ACTIONS(1964), - [anon_sym_get] = ACTIONS(1964), - [anon_sym_set] = ACTIONS(1964), - [anon_sym_declare] = ACTIONS(1964), - [anon_sym_public] = ACTIONS(1964), - [anon_sym_private] = ACTIONS(1964), - [anon_sym_protected] = ACTIONS(1964), - [anon_sym_override] = ACTIONS(1964), - [anon_sym_module] = ACTIONS(1964), - [anon_sym_any] = ACTIONS(1964), - [anon_sym_number] = ACTIONS(1964), - [anon_sym_boolean] = ACTIONS(1964), - [anon_sym_string] = ACTIONS(1964), - [anon_sym_symbol] = ACTIONS(1964), - [anon_sym_property] = ACTIONS(1964), - [anon_sym_signal] = ACTIONS(1964), - [anon_sym_on] = ACTIONS(1964), - [anon_sym_required] = ACTIONS(1964), - [anon_sym_component] = ACTIONS(1964), + [745] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3747), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(745), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [318] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1703), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2338), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [746] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3598), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(746), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [319] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1904), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4861), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [747] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3732), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(747), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [320] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1277), - [sym_expression] = STATE(2329), - [sym_primary_expression] = STATE(1780), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1277), - [sym_subscript_expression] = STATE(1277), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1277), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1946), - [anon_sym_export] = ACTIONS(1948), - [anon_sym_type] = ACTIONS(1948), - [anon_sym_namespace] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1948), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1948), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_DOT] = ACTIONS(1900), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1952), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1906), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1948), - [anon_sym_readonly] = ACTIONS(1948), - [anon_sym_get] = ACTIONS(1948), - [anon_sym_set] = ACTIONS(1948), - [anon_sym_declare] = ACTIONS(1948), - [anon_sym_public] = ACTIONS(1948), - [anon_sym_private] = ACTIONS(1948), - [anon_sym_protected] = ACTIONS(1948), - [anon_sym_override] = ACTIONS(1948), - [anon_sym_module] = ACTIONS(1948), - [anon_sym_any] = ACTIONS(1948), - [anon_sym_number] = ACTIONS(1948), - [anon_sym_boolean] = ACTIONS(1948), - [anon_sym_string] = ACTIONS(1948), - [anon_sym_symbol] = ACTIONS(1948), - [anon_sym_property] = ACTIONS(1948), - [anon_sym_signal] = ACTIONS(1948), - [anon_sym_on] = ACTIONS(1948), - [anon_sym_required] = ACTIONS(1948), - [anon_sym_component] = ACTIONS(1948), + [748] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3757), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(748), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [321] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1745), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2335), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [749] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3729), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(749), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [322] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1745), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2287), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [750] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2995), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(750), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [323] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1744), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2274), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [751] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3755), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(751), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [324] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1742), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2291), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [752] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3838), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(752), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [325] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1710), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2248), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [753] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3630), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(753), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [326] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2285), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_mapped_type_clause] = STATE(4888), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1980), - [anon_sym_export] = ACTIONS(1982), - [anon_sym_type] = ACTIONS(1982), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1982), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1982), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1986), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1982), - [anon_sym_readonly] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1982), - [anon_sym_set] = ACTIONS(1982), - [anon_sym_declare] = ACTIONS(1982), - [anon_sym_public] = ACTIONS(1982), - [anon_sym_private] = ACTIONS(1982), - [anon_sym_protected] = ACTIONS(1982), - [anon_sym_override] = ACTIONS(1982), - [anon_sym_module] = ACTIONS(1982), - [anon_sym_any] = ACTIONS(1982), - [anon_sym_number] = ACTIONS(1982), - [anon_sym_boolean] = ACTIONS(1982), - [anon_sym_string] = ACTIONS(1982), - [anon_sym_symbol] = ACTIONS(1982), - [anon_sym_property] = ACTIONS(1982), - [anon_sym_signal] = ACTIONS(1982), - [anon_sym_on] = ACTIONS(1982), - [anon_sym_required] = ACTIONS(1982), - [anon_sym_component] = ACTIONS(1982), + [754] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3427), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(754), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [327] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1913), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4657), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [755] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3767), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(755), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(2852), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [328] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1520), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(3950), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [756] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3726), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(756), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [329] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1667), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2171), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [757] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3009), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(757), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [330] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2278), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1756), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [758] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3711), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(758), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [331] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1703), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2157), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [759] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2993), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(759), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [332] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2276), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1757), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [760] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3140), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(760), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [333] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2271), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1761), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [761] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(761), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [334] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2114), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1907), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [762] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(762), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [335] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1710), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2356), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [763] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3011), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(763), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [336] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1277), - [sym_expression] = STATE(2329), - [sym_primary_expression] = STATE(1780), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1277), - [sym_subscript_expression] = STATE(1277), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3564), - [sym_non_null_expression] = STATE(1277), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4475), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1970), - [anon_sym_export] = ACTIONS(1972), - [anon_sym_type] = ACTIONS(1972), - [anon_sym_namespace] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1972), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1972), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_DOT] = ACTIONS(1900), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1976), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1906), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_readonly] = ACTIONS(1972), - [anon_sym_get] = ACTIONS(1972), - [anon_sym_set] = ACTIONS(1972), - [anon_sym_declare] = ACTIONS(1972), - [anon_sym_public] = ACTIONS(1972), - [anon_sym_private] = ACTIONS(1972), - [anon_sym_protected] = ACTIONS(1972), - [anon_sym_override] = ACTIONS(1972), - [anon_sym_module] = ACTIONS(1972), - [anon_sym_any] = ACTIONS(1972), - [anon_sym_number] = ACTIONS(1972), - [anon_sym_boolean] = ACTIONS(1972), - [anon_sym_string] = ACTIONS(1972), - [anon_sym_symbol] = ACTIONS(1972), - [anon_sym_property] = ACTIONS(1972), - [anon_sym_signal] = ACTIONS(1972), - [anon_sym_on] = ACTIONS(1972), - [anon_sym_required] = ACTIONS(1972), - [anon_sym_component] = ACTIONS(1972), + [764] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2996), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(764), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [337] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1992), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4922), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [765] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3708), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(765), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [338] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1777), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4873), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [766] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3461), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(766), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [339] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1987), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4923), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [767] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2581), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2581), + [sym_subscript_expression] = STATE(2581), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(767), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2581), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2854), + [anon_sym_export] = ACTIONS(2856), + [anon_sym_type] = ACTIONS(2856), + [anon_sym_namespace] = ACTIONS(2858), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2856), + [anon_sym_let] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2856), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2860), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2862), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2864), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2856), + [anon_sym_readonly] = ACTIONS(2856), + [anon_sym_get] = ACTIONS(2856), + [anon_sym_set] = ACTIONS(2856), + [anon_sym_declare] = ACTIONS(2856), + [anon_sym_public] = ACTIONS(2856), + [anon_sym_private] = ACTIONS(2856), + [anon_sym_protected] = ACTIONS(2856), + [anon_sym_override] = ACTIONS(2856), + [anon_sym_module] = ACTIONS(2856), + [anon_sym_any] = ACTIONS(2856), + [anon_sym_number] = ACTIONS(2856), + [anon_sym_boolean] = ACTIONS(2856), + [anon_sym_string] = ACTIONS(2856), + [anon_sym_symbol] = ACTIONS(2856), + [anon_sym_object] = ACTIONS(2856), + [anon_sym_property] = ACTIONS(2856), + [anon_sym_signal] = ACTIONS(2856), + [anon_sym_on] = ACTIONS(2856), + [anon_sym_required] = ACTIONS(2856), + [anon_sym_component] = ACTIONS(2856), + [sym_html_comment] = ACTIONS(5), }, - [340] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1745), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2130), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [768] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3811), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(768), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [341] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1744), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2143), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [769] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3245), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(769), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(2798), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [342] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2207), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1664), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [770] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3767), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(770), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [343] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1874), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_sequence_expression] = STATE(4588), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [771] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3644), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(771), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [344] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2114), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1818), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [772] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3119), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(772), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [345] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2207), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1976), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [773] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2991), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(773), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [346] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1742), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2156), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [774] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2987), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(774), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [347] = { - [sym_import] = STATE(1733), - [sym_statement_block] = STATE(1710), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2165), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [775] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2985), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(775), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [348] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(2020), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4650), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [776] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2984), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(776), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [349] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2127), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1802), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [777] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3738), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(777), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [350] = { - [sym_import] = STATE(2118), - [sym_statement_block] = STATE(2127), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1659), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [778] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2983), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(778), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [351] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(2067), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_sequence_expression] = STATE(4715), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [779] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3669), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(779), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [352] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2305), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [780] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2982), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(780), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [353] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1886), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [781] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2981), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(781), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [354] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2234), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [782] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3465), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(782), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [355] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2152), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [783] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3647), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(783), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [356] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1817), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [784] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2978), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(784), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [357] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1816), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [785] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2977), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(785), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [358] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2167), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [786] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3592), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(786), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [359] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1688), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [787] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3575), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(787), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [360] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2219), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [788] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2975), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(788), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [361] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1813), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [789] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3520), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(789), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [362] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2218), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [790] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3523), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(790), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [363] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1687), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [791] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2571), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2571), + [sym_subscript_expression] = STATE(2571), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8641), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(791), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2571), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2866), + [anon_sym_export] = ACTIONS(2868), + [anon_sym_type] = ACTIONS(2868), + [anon_sym_namespace] = ACTIONS(2870), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2868), + [anon_sym_let] = ACTIONS(2868), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2868), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2872), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2874), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2876), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2868), + [anon_sym_readonly] = ACTIONS(2868), + [anon_sym_get] = ACTIONS(2868), + [anon_sym_set] = ACTIONS(2868), + [anon_sym_declare] = ACTIONS(2868), + [anon_sym_public] = ACTIONS(2868), + [anon_sym_private] = ACTIONS(2868), + [anon_sym_protected] = ACTIONS(2868), + [anon_sym_override] = ACTIONS(2868), + [anon_sym_module] = ACTIONS(2868), + [anon_sym_any] = ACTIONS(2868), + [anon_sym_number] = ACTIONS(2868), + [anon_sym_boolean] = ACTIONS(2868), + [anon_sym_string] = ACTIONS(2868), + [anon_sym_symbol] = ACTIONS(2868), + [anon_sym_object] = ACTIONS(2868), + [anon_sym_property] = ACTIONS(2868), + [anon_sym_signal] = ACTIONS(2868), + [anon_sym_on] = ACTIONS(2868), + [anon_sym_required] = ACTIONS(2868), + [anon_sym_component] = ACTIONS(2868), + [sym_html_comment] = ACTIONS(5), }, - [364] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2217), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [792] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3527), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(792), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [365] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1812), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [793] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3015), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(793), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [366] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2216), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [794] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3466), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(794), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [367] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1676), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [795] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3017), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(795), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [368] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1673), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [796] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3245), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(796), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [369] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1660), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [797] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3243), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(797), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [370] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1658), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [798] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3212), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(798), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [371] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1654), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [799] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3046), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(799), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [372] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1651), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [800] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2573), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2573), + [sym_subscript_expression] = STATE(2573), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8539), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(800), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2573), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2878), + [anon_sym_export] = ACTIONS(2880), + [anon_sym_type] = ACTIONS(2880), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2880), + [anon_sym_let] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2880), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2884), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2888), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2880), + [anon_sym_readonly] = ACTIONS(2880), + [anon_sym_get] = ACTIONS(2880), + [anon_sym_set] = ACTIONS(2880), + [anon_sym_declare] = ACTIONS(2880), + [anon_sym_public] = ACTIONS(2880), + [anon_sym_private] = ACTIONS(2880), + [anon_sym_protected] = ACTIONS(2880), + [anon_sym_override] = ACTIONS(2880), + [anon_sym_module] = ACTIONS(2880), + [anon_sym_any] = ACTIONS(2880), + [anon_sym_number] = ACTIONS(2880), + [anon_sym_boolean] = ACTIONS(2880), + [anon_sym_string] = ACTIONS(2880), + [anon_sym_symbol] = ACTIONS(2880), + [anon_sym_object] = ACTIONS(2880), + [anon_sym_property] = ACTIONS(2880), + [anon_sym_signal] = ACTIONS(2880), + [anon_sym_on] = ACTIONS(2880), + [anon_sym_required] = ACTIONS(2880), + [anon_sym_component] = ACTIONS(2880), + [sym_html_comment] = ACTIONS(5), }, - [373] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1650), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [801] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3026), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(801), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [374] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1647), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [802] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3467), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(802), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [375] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1725), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [803] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3143), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(803), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [376] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1683), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [804] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3468), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(804), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [377] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1811), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [805] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3670), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(805), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [378] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1810), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [806] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3469), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(806), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [379] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2214), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [807] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3473), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(807), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [380] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1809), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [808] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3767), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(808), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(2890), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [381] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1808), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [809] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3672), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(809), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [382] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2277), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(1988), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [810] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3636), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(810), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [383] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2213), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [811] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3123), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(811), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [384] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2205), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [812] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3482), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(812), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [385] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1807), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [813] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2575), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2575), + [sym_subscript_expression] = STATE(2575), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8690), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(813), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2575), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2892), + [anon_sym_export] = ACTIONS(2894), + [anon_sym_type] = ACTIONS(2894), + [anon_sym_namespace] = ACTIONS(2896), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2894), + [anon_sym_let] = ACTIONS(2894), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2898), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2902), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2894), + [anon_sym_readonly] = ACTIONS(2894), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2894), + [anon_sym_public] = ACTIONS(2894), + [anon_sym_private] = ACTIONS(2894), + [anon_sym_protected] = ACTIONS(2894), + [anon_sym_override] = ACTIONS(2894), + [anon_sym_module] = ACTIONS(2894), + [anon_sym_any] = ACTIONS(2894), + [anon_sym_number] = ACTIONS(2894), + [anon_sym_boolean] = ACTIONS(2894), + [anon_sym_string] = ACTIONS(2894), + [anon_sym_symbol] = ACTIONS(2894), + [anon_sym_object] = ACTIONS(2894), + [anon_sym_property] = ACTIONS(2894), + [anon_sym_signal] = ACTIONS(2894), + [anon_sym_on] = ACTIONS(2894), + [anon_sym_required] = ACTIONS(2894), + [anon_sym_component] = ACTIONS(2894), + [sym_html_comment] = ACTIONS(5), }, - [386] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1682), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [814] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3490), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(814), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [387] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1806), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [815] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3491), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(815), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [388] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2098), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [816] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3148), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(816), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [389] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2195), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [817] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3110), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(817), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [390] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1805), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [818] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3678), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(818), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [391] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1803), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [819] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3682), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(819), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [392] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1804), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [820] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3686), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(820), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [393] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1801), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [821] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3687), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(821), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [394] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1527), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(1990), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [822] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3691), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(822), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [395] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(2070), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [823] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3695), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(823), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [396] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2176), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [824] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3696), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(824), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [397] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1655), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [825] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3697), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(825), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [398] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2161), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [826] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(826), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(2852), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [399] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1984), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [827] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3158), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(827), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [400] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1978), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [828] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3698), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(828), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [401] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1646), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [829] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3162), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(829), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [402] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2122), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [830] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3699), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(830), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [403] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1527), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [831] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3114), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(831), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [404] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1948), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [832] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3316), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(832), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [405] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1656), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [833] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3194), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(833), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [406] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1621), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [834] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3701), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(834), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [407] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2244), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [835] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3311), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(835), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [408] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2244), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(1988), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [836] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2504), + [sym_expression] = STATE(3239), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8358), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2504), + [sym_subscript_expression] = STATE(2504), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4654), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8326), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(836), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2504), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(829), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_type] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1833), + [anon_sym_of] = ACTIONS(1825), + [anon_sym_yield] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1841), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_void] = ACTIONS(1831), + [anon_sym_delete] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1847), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_readonly] = ACTIONS(1825), + [anon_sym_get] = ACTIONS(1825), + [anon_sym_set] = ACTIONS(1825), + [anon_sym_declare] = ACTIONS(1825), + [anon_sym_public] = ACTIONS(1825), + [anon_sym_private] = ACTIONS(1825), + [anon_sym_protected] = ACTIONS(1825), + [anon_sym_override] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_any] = ACTIONS(1825), + [anon_sym_number] = ACTIONS(1825), + [anon_sym_boolean] = ACTIONS(1825), + [anon_sym_string] = ACTIONS(1825), + [anon_sym_symbol] = ACTIONS(1825), + [anon_sym_object] = ACTIONS(1825), + [anon_sym_property] = ACTIONS(1825), + [anon_sym_signal] = ACTIONS(1825), + [anon_sym_on] = ACTIONS(1825), + [anon_sym_required] = ACTIONS(1825), + [anon_sym_component] = ACTIONS(1825), + [sym_html_comment] = ACTIONS(5), }, - [409] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1914), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(1992), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [837] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3309), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(837), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [410] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(2013), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [838] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3039), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(838), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [411] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1779), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [839] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3317), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(839), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [412] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2111), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [840] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3702), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(840), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [413] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2247), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [841] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3710), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(841), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [414] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1617), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [842] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3716), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(842), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [415] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1614), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [843] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3733), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(843), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [416] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2313), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [844] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3494), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(844), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [417] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1903), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [845] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3751), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(845), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [418] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(1992), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [846] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(3129), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(846), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [419] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1893), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [847] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2439), + [sym_expression] = STATE(2980), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8507), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2439), + [sym_subscript_expression] = STATE(2439), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4689), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8510), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(847), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2439), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(763), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1679), + [anon_sym_type] = ACTIONS(1679), + [anon_sym_namespace] = ACTIONS(1681), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1679), + [anon_sym_let] = ACTIONS(1679), + [anon_sym_BANG] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1691), + [anon_sym_of] = ACTIONS(1679), + [anon_sym_yield] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1697), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1701), + [anon_sym_PLUS] = ACTIONS(1687), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1687), + [anon_sym_void] = ACTIONS(1687), + [anon_sym_delete] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1707), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1713), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1679), + [anon_sym_readonly] = ACTIONS(1679), + [anon_sym_get] = ACTIONS(1679), + [anon_sym_set] = ACTIONS(1679), + [anon_sym_declare] = ACTIONS(1679), + [anon_sym_public] = ACTIONS(1679), + [anon_sym_private] = ACTIONS(1679), + [anon_sym_protected] = ACTIONS(1679), + [anon_sym_override] = ACTIONS(1679), + [anon_sym_module] = ACTIONS(1679), + [anon_sym_any] = ACTIONS(1679), + [anon_sym_number] = ACTIONS(1679), + [anon_sym_boolean] = ACTIONS(1679), + [anon_sym_string] = ACTIONS(1679), + [anon_sym_symbol] = ACTIONS(1679), + [anon_sym_object] = ACTIONS(1679), + [anon_sym_property] = ACTIONS(1679), + [anon_sym_signal] = ACTIONS(1679), + [anon_sym_on] = ACTIONS(1679), + [anon_sym_required] = ACTIONS(1679), + [anon_sym_component] = ACTIONS(1679), + [sym_html_comment] = ACTIONS(5), }, - [420] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1613), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [848] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3431), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(848), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [421] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2349), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [849] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3833), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2354), + [sym_subscript_expression] = STATE(2354), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(5401), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(849), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2354), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2904), + [anon_sym_export] = ACTIONS(1925), + [anon_sym_type] = ACTIONS(1925), + [anon_sym_namespace] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1925), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1925), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1935), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2906), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2908), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_readonly] = ACTIONS(1925), + [anon_sym_get] = ACTIONS(1925), + [anon_sym_set] = ACTIONS(1925), + [anon_sym_declare] = ACTIONS(1925), + [anon_sym_public] = ACTIONS(1925), + [anon_sym_private] = ACTIONS(1925), + [anon_sym_protected] = ACTIONS(1925), + [anon_sym_override] = ACTIONS(1925), + [anon_sym_module] = ACTIONS(1925), + [anon_sym_any] = ACTIONS(1925), + [anon_sym_number] = ACTIONS(1925), + [anon_sym_boolean] = ACTIONS(1925), + [anon_sym_string] = ACTIONS(1925), + [anon_sym_symbol] = ACTIONS(1925), + [anon_sym_object] = ACTIONS(1925), + [anon_sym_property] = ACTIONS(1925), + [anon_sym_signal] = ACTIONS(1925), + [anon_sym_on] = ACTIONS(1925), + [anon_sym_required] = ACTIONS(1925), + [anon_sym_component] = ACTIONS(1925), + [sym_html_comment] = ACTIONS(5), }, - [422] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1906), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [850] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3700), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(850), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), + }, + [851] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3495), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(851), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [423] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2209), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [852] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3316), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(852), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(2800), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [424] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1908), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [853] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3496), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(853), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [425] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1861), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [854] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(3429), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(854), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [426] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2312), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [855] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3775), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(855), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [427] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1612), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [856] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2378), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8227), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4686), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8259), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(856), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2378), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(684), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1379), + [anon_sym_export] = ACTIONS(1381), + [anon_sym_type] = ACTIONS(1381), + [anon_sym_namespace] = ACTIONS(1383), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1203), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1381), + [anon_sym_let] = ACTIONS(1381), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1205), + [anon_sym_of] = ACTIONS(1381), + [anon_sym_yield] = ACTIONS(1207), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1391), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1393), + [anon_sym_using] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1203), + [anon_sym_DASH] = ACTIONS(1203), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1203), + [anon_sym_void] = ACTIONS(1203), + [anon_sym_delete] = ACTIONS(1203), + [anon_sym_PLUS_PLUS] = ACTIONS(1227), + [anon_sym_DASH_DASH] = ACTIONS(1227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(2890), + [sym_private_property_identifier] = ACTIONS(1229), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1398), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(1381), + [anon_sym_set] = ACTIONS(1381), + [anon_sym_declare] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_protected] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_module] = ACTIONS(1381), + [anon_sym_any] = ACTIONS(1381), + [anon_sym_number] = ACTIONS(1381), + [anon_sym_boolean] = ACTIONS(1381), + [anon_sym_string] = ACTIONS(1381), + [anon_sym_symbol] = ACTIONS(1381), + [anon_sym_object] = ACTIONS(1381), + [anon_sym_property] = ACTIONS(1381), + [anon_sym_signal] = ACTIONS(1381), + [anon_sym_on] = ACTIONS(1381), + [anon_sym_required] = ACTIONS(1381), + [anon_sym_component] = ACTIONS(1381), + [sym_html_comment] = ACTIONS(5), }, - [428] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2321), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(1994), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [857] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3063), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(857), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [429] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2348), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [858] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3330), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(858), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [430] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2347), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [859] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3285), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(859), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [431] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2346), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [860] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3854), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(860), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [432] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [861] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3623), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(861), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [433] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2173), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [862] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2556), + [sym_expression] = STATE(3628), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8300), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2556), + [sym_subscript_expression] = STATE(2556), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4675), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8190), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(862), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2556), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(845), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), }, - [434] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1719), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [863] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3217), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(863), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [435] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2345), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [864] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3132), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(864), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(2800), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [436] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1610), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [865] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3388), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(865), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [437] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1726), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [866] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3090), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(866), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [438] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2344), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [867] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3088), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(867), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [439] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2343), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [868] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3391), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(868), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [440] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2342), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [869] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3081), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(869), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [441] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1835), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [870] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3080), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(870), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [442] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2162), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [871] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3078), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(871), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [443] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2160), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [872] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3077), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(872), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [444] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1609), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [873] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3076), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(873), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [445] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1608), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [874] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3425), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(874), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [446] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1912), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [875] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3075), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(875), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [447] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1694), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [876] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3074), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(876), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [448] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2153), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [877] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3071), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(877), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [449] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1607), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [878] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3236), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(878), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [450] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3318), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3318), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1205), - [sym_subscript_expression] = STATE(1205), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3318), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1205), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1996), - [anon_sym_export] = ACTIONS(1042), - [anon_sym_type] = ACTIONS(1042), - [anon_sym_namespace] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1052), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1998), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1042), - [anon_sym_readonly] = ACTIONS(1042), - [anon_sym_get] = ACTIONS(1042), - [anon_sym_set] = ACTIONS(1042), - [anon_sym_declare] = ACTIONS(1042), - [anon_sym_public] = ACTIONS(1042), - [anon_sym_private] = ACTIONS(1042), - [anon_sym_protected] = ACTIONS(1042), - [anon_sym_override] = ACTIONS(1042), - [anon_sym_module] = ACTIONS(1042), - [anon_sym_any] = ACTIONS(1042), - [anon_sym_number] = ACTIONS(1042), - [anon_sym_boolean] = ACTIONS(1042), - [anon_sym_string] = ACTIONS(1042), - [anon_sym_symbol] = ACTIONS(1042), - [anon_sym_property] = ACTIONS(1042), - [anon_sym_signal] = ACTIONS(1042), - [anon_sym_on] = ACTIONS(1042), - [anon_sym_required] = ACTIONS(1042), - [anon_sym_component] = ACTIONS(1042), + [879] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3061), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(879), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [451] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2117), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [880] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2535), + [sym_expression] = STATE(3621), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8194), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2535), + [sym_subscript_expression] = STATE(2535), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4648), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8298), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(880), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2535), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(639), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_type] = ACTIONS(1859), + [anon_sym_namespace] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1859), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_readonly] = ACTIONS(1859), + [anon_sym_get] = ACTIONS(1859), + [anon_sym_set] = ACTIONS(1859), + [anon_sym_declare] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_protected] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_any] = ACTIONS(1859), + [anon_sym_number] = ACTIONS(1859), + [anon_sym_boolean] = ACTIONS(1859), + [anon_sym_string] = ACTIONS(1859), + [anon_sym_symbol] = ACTIONS(1859), + [anon_sym_object] = ACTIONS(1859), + [anon_sym_property] = ACTIONS(1859), + [anon_sym_signal] = ACTIONS(1859), + [anon_sym_on] = ACTIONS(1859), + [anon_sym_required] = ACTIONS(1859), + [anon_sym_component] = ACTIONS(1859), + [sym_html_comment] = ACTIONS(5), }, - [452] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2341), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [881] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3813), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(881), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [453] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1832), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [882] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3038), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(882), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [454] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1606), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [883] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3624), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(883), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [455] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1605), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [884] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3836), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8668), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4599), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8672), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(884), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(727), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1185), + [anon_sym_DASH_DASH] = ACTIONS(1185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_declare] = ACTIONS(1301), + [anon_sym_public] = ACTIONS(1301), + [anon_sym_private] = ACTIONS(1301), + [anon_sym_protected] = ACTIONS(1301), + [anon_sym_override] = ACTIONS(1301), + [anon_sym_module] = ACTIONS(1301), + [anon_sym_any] = ACTIONS(1301), + [anon_sym_number] = ACTIONS(1301), + [anon_sym_boolean] = ACTIONS(1301), + [anon_sym_string] = ACTIONS(1301), + [anon_sym_symbol] = ACTIONS(1301), + [anon_sym_object] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), }, - [456] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2146), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [885] = { + [sym_import] = STATE(5109), + [sym_parenthesized_expression] = STATE(2546), + [sym_expression] = STATE(3610), + [sym_primary_expression] = STATE(2931), + [sym_yield_expression] = STATE(2970), + [sym_object] = STATE(3056), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3056), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(2970), + [sym_glimmer_opening_tag] = STATE(6339), + [sym_class] = STATE(3056), + [sym_function_expression] = STATE(3056), + [sym_generator_function] = STATE(3056), + [sym_arrow_function] = STATE(3056), + [sym__call_signature] = STATE(8651), + [sym_call_expression] = STATE(3056), + [sym_new_expression] = STATE(2970), + [sym_await_expression] = STATE(2970), + [sym_member_expression] = STATE(2546), + [sym_subscript_expression] = STATE(2546), + [sym_assignment_expression] = STATE(2970), + [sym__augmented_assignment_lhs] = STATE(4685), + [sym_augmented_assignment_expression] = STATE(2970), + [sym__destructuring_pattern] = STATE(8660), + [sym_ternary_expression] = STATE(2970), + [sym_binary_expression] = STATE(2970), + [sym_unary_expression] = STATE(2970), + [sym_update_expression] = STATE(2970), + [sym_string] = STATE(3056), + [sym_comment] = STATE(885), + [sym_template_string] = STATE(3056), + [sym_regex] = STATE(3056), + [sym_meta_property] = STATE(3056), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2546), + [sym_type_assertion] = STATE(2970), + [sym_as_expression] = STATE(2970), + [sym_satisfies_expression] = STATE(2970), + [sym_instantiation_expression] = STATE(2970), + [sym_internal_module] = STATE(2970), + [sym_type_arguments] = STATE(715), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6507), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_type] = ACTIONS(1725), + [anon_sym_namespace] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1731), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_BANG] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1733), + [anon_sym_of] = ACTIONS(1725), + [anon_sym_yield] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1737), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2011), + [anon_sym_using] = ACTIONS(1741), + [anon_sym_PLUS] = ACTIONS(1731), + [anon_sym_DASH] = ACTIONS(1731), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1731), + [anon_sym_void] = ACTIONS(1731), + [anon_sym_delete] = ACTIONS(1731), + [anon_sym_PLUS_PLUS] = ACTIONS(1747), + [anon_sym_DASH_DASH] = ACTIONS(1747), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1749), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1725), + [anon_sym_readonly] = ACTIONS(1725), + [anon_sym_get] = ACTIONS(1725), + [anon_sym_set] = ACTIONS(1725), + [anon_sym_declare] = ACTIONS(1725), + [anon_sym_public] = ACTIONS(1725), + [anon_sym_private] = ACTIONS(1725), + [anon_sym_protected] = ACTIONS(1725), + [anon_sym_override] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_any] = ACTIONS(1725), + [anon_sym_number] = ACTIONS(1725), + [anon_sym_boolean] = ACTIONS(1725), + [anon_sym_string] = ACTIONS(1725), + [anon_sym_symbol] = ACTIONS(1725), + [anon_sym_object] = ACTIONS(1725), + [anon_sym_property] = ACTIONS(1725), + [anon_sym_signal] = ACTIONS(1725), + [anon_sym_on] = ACTIONS(1725), + [anon_sym_required] = ACTIONS(1725), + [anon_sym_component] = ACTIONS(1725), + [sym_html_comment] = ACTIONS(5), }, - [457] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2147), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [886] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2530), + [sym_expression] = STATE(3499), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8506), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2530), + [sym_subscript_expression] = STATE(2530), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4595), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8508), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(886), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2530), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(738), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_type] = ACTIONS(1781), + [anon_sym_namespace] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1789), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1789), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1781), + [anon_sym_yield] = ACTIONS(1793), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1797), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1789), + [anon_sym_DASH] = ACTIONS(1789), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1789), + [anon_sym_void] = ACTIONS(1789), + [anon_sym_delete] = ACTIONS(1789), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1813), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1781), + [anon_sym_signal] = ACTIONS(1781), + [anon_sym_on] = ACTIONS(1781), + [anon_sym_required] = ACTIONS(1781), + [anon_sym_component] = ACTIONS(1781), + [sym_html_comment] = ACTIONS(5), }, - [458] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2215), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [887] = { + [sym_import] = STATE(5074), + [sym_parenthesized_expression] = STATE(2493), + [sym_expression] = STATE(3042), + [sym_primary_expression] = STATE(3306), + [sym_yield_expression] = STATE(3555), + [sym_object] = STATE(3558), + [sym_object_pattern] = STATE(5071), + [sym_array] = STATE(3558), + [sym_array_pattern] = STATE(5071), + [sym_glimmer_template] = STATE(3555), + [sym_glimmer_opening_tag] = STATE(6515), + [sym_class] = STATE(3558), + [sym_function_expression] = STATE(3558), + [sym_generator_function] = STATE(3558), + [sym_arrow_function] = STATE(3558), + [sym__call_signature] = STATE(8318), + [sym_call_expression] = STATE(3558), + [sym_new_expression] = STATE(3555), + [sym_await_expression] = STATE(3555), + [sym_member_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_assignment_expression] = STATE(3555), + [sym__augmented_assignment_lhs] = STATE(4650), + [sym_augmented_assignment_expression] = STATE(3555), + [sym__destructuring_pattern] = STATE(8320), + [sym_ternary_expression] = STATE(3555), + [sym_binary_expression] = STATE(3555), + [sym_unary_expression] = STATE(3555), + [sym_update_expression] = STATE(3555), + [sym_string] = STATE(3558), + [sym_comment] = STATE(887), + [sym_template_string] = STATE(3558), + [sym_regex] = STATE(3558), + [sym_meta_property] = STATE(3558), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(5707), + [sym_non_null_expression] = STATE(2493), + [sym_type_assertion] = STATE(3555), + [sym_as_expression] = STATE(3555), + [sym_satisfies_expression] = STATE(3555), + [sym_instantiation_expression] = STATE(3555), + [sym_internal_module] = STATE(3555), + [sym_type_arguments] = STATE(838), + [sym_type_parameters] = STATE(8012), + [aux_sym_export_statement_repeat1] = STATE(6533), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_namespace] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1759), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(550), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1175), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_function] = ACTIONS(1179), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(560), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_get] = ACTIONS(1759), + [anon_sym_set] = ACTIONS(1759), + [anon_sym_declare] = ACTIONS(1759), + [anon_sym_public] = ACTIONS(1759), + [anon_sym_private] = ACTIONS(1759), + [anon_sym_protected] = ACTIONS(1759), + [anon_sym_override] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_any] = ACTIONS(1759), + [anon_sym_number] = ACTIONS(1759), + [anon_sym_boolean] = ACTIONS(1759), + [anon_sym_string] = ACTIONS(1759), + [anon_sym_symbol] = ACTIONS(1759), + [anon_sym_object] = ACTIONS(1759), + [anon_sym_property] = ACTIONS(1759), + [anon_sym_signal] = ACTIONS(1759), + [anon_sym_on] = ACTIONS(1759), + [anon_sym_required] = ACTIONS(1759), + [anon_sym_component] = ACTIONS(1759), + [sym_html_comment] = ACTIONS(5), }, - [459] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2228), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [888] = { + [sym__call_signature] = STATE(8568), + [sym_string] = STATE(5344), + [sym_comment] = STATE(888), + [sym_formal_parameters] = STATE(5707), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [sym_type_parameters] = STATE(8012), + [aux_sym_object_repeat1] = STATE(6742), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2910), + [anon_sym_export] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_from] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2912), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2912), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_readonly] = ACTIONS(2912), + [anon_sym_get] = ACTIONS(2932), + [anon_sym_set] = ACTIONS(2932), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2912), + [anon_sym_public] = ACTIONS(2912), + [anon_sym_private] = ACTIONS(2912), + [anon_sym_protected] = ACTIONS(2912), + [anon_sym_override] = ACTIONS(2912), + [anon_sym_module] = ACTIONS(2912), + [anon_sym_any] = ACTIONS(2912), + [anon_sym_number] = ACTIONS(2912), + [anon_sym_boolean] = ACTIONS(2912), + [anon_sym_string] = ACTIONS(2912), + [anon_sym_symbol] = ACTIONS(2912), + [anon_sym_object] = ACTIONS(2912), + [anon_sym_property] = ACTIONS(2912), + [anon_sym_signal] = ACTIONS(2912), + [anon_sym_on] = ACTIONS(2912), + [anon_sym_required] = ACTIONS(2912), + [anon_sym_component] = ACTIONS(2912), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [460] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2230), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [889] = { + [sym__call_signature] = STATE(8568), + [sym_string] = STATE(5344), + [sym_comment] = STATE(889), + [sym_formal_parameters] = STATE(5707), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [sym_type_parameters] = STATE(8012), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2910), + [anon_sym_export] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_from] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2912), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2912), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_readonly] = ACTIONS(2912), + [anon_sym_get] = ACTIONS(2932), + [anon_sym_set] = ACTIONS(2932), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2912), + [anon_sym_public] = ACTIONS(2912), + [anon_sym_private] = ACTIONS(2912), + [anon_sym_protected] = ACTIONS(2912), + [anon_sym_override] = ACTIONS(2912), + [anon_sym_module] = ACTIONS(2912), + [anon_sym_any] = ACTIONS(2912), + [anon_sym_number] = ACTIONS(2912), + [anon_sym_boolean] = ACTIONS(2912), + [anon_sym_string] = ACTIONS(2912), + [anon_sym_symbol] = ACTIONS(2912), + [anon_sym_object] = ACTIONS(2912), + [anon_sym_property] = ACTIONS(2912), + [anon_sym_signal] = ACTIONS(2912), + [anon_sym_on] = ACTIONS(2912), + [anon_sym_required] = ACTIONS(2912), + [anon_sym_component] = ACTIONS(2912), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [461] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1783), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [890] = { + [sym__call_signature] = STATE(8568), + [sym_string] = STATE(5344), + [sym_comment] = STATE(890), + [sym_formal_parameters] = STATE(5707), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [sym_type_parameters] = STATE(8012), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2910), + [anon_sym_export] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_from] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2912), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2912), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_readonly] = ACTIONS(2912), + [anon_sym_get] = ACTIONS(2932), + [anon_sym_set] = ACTIONS(2932), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2912), + [anon_sym_public] = ACTIONS(2912), + [anon_sym_private] = ACTIONS(2912), + [anon_sym_protected] = ACTIONS(2912), + [anon_sym_override] = ACTIONS(2912), + [anon_sym_module] = ACTIONS(2912), + [anon_sym_any] = ACTIONS(2912), + [anon_sym_number] = ACTIONS(2912), + [anon_sym_boolean] = ACTIONS(2912), + [anon_sym_string] = ACTIONS(2912), + [anon_sym_symbol] = ACTIONS(2912), + [anon_sym_object] = ACTIONS(2912), + [anon_sym_property] = ACTIONS(2912), + [anon_sym_signal] = ACTIONS(2912), + [anon_sym_on] = ACTIONS(2912), + [anon_sym_required] = ACTIONS(2912), + [anon_sym_component] = ACTIONS(2912), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [462] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2231), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [891] = { + [sym__call_signature] = STATE(8568), + [sym_string] = STATE(5344), + [sym_comment] = STATE(891), + [sym_formal_parameters] = STATE(5707), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [sym_type_parameters] = STATE(8012), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2910), + [anon_sym_export] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_from] = ACTIONS(2912), + [anon_sym_let] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2912), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2912), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2912), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2926), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2912), + [anon_sym_readonly] = ACTIONS(2912), + [anon_sym_get] = ACTIONS(2932), + [anon_sym_set] = ACTIONS(2932), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2912), + [anon_sym_public] = ACTIONS(2912), + [anon_sym_private] = ACTIONS(2912), + [anon_sym_protected] = ACTIONS(2912), + [anon_sym_override] = ACTIONS(2912), + [anon_sym_module] = ACTIONS(2912), + [anon_sym_any] = ACTIONS(2912), + [anon_sym_number] = ACTIONS(2912), + [anon_sym_boolean] = ACTIONS(2912), + [anon_sym_string] = ACTIONS(2912), + [anon_sym_symbol] = ACTIONS(2912), + [anon_sym_object] = ACTIONS(2912), + [anon_sym_property] = ACTIONS(2912), + [anon_sym_signal] = ACTIONS(2912), + [anon_sym_on] = ACTIONS(2912), + [anon_sym_required] = ACTIONS(2912), + [anon_sym_component] = ACTIONS(2912), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [463] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1600), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [892] = { + [sym_string] = STATE(5344), + [sym_comment] = STATE(892), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [sym_override_modifier] = STATE(3899), + [aux_sym_object_repeat1] = STATE(6742), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_from] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2939), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_readonly] = ACTIONS(2941), + [anon_sym_get] = ACTIONS(2943), + [anon_sym_set] = ACTIONS(2943), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2934), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_override] = ACTIONS(2945), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_any] = ACTIONS(2934), + [anon_sym_number] = ACTIONS(2934), + [anon_sym_boolean] = ACTIONS(2934), + [anon_sym_string] = ACTIONS(2934), + [anon_sym_symbol] = ACTIONS(2934), + [anon_sym_object] = ACTIONS(2934), + [anon_sym_property] = ACTIONS(2934), + [anon_sym_signal] = ACTIONS(2934), + [anon_sym_on] = ACTIONS(2934), + [anon_sym_required] = ACTIONS(2934), + [anon_sym_component] = ACTIONS(2934), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [464] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2233), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [893] = { + [sym_string] = STATE(5344), + [sym_comment] = STATE(893), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [sym_override_modifier] = STATE(3899), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_from] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2939), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_readonly] = ACTIONS(2941), + [anon_sym_get] = ACTIONS(2943), + [anon_sym_set] = ACTIONS(2943), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2934), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_override] = ACTIONS(2945), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_any] = ACTIONS(2934), + [anon_sym_number] = ACTIONS(2934), + [anon_sym_boolean] = ACTIONS(2934), + [anon_sym_string] = ACTIONS(2934), + [anon_sym_symbol] = ACTIONS(2934), + [anon_sym_object] = ACTIONS(2934), + [anon_sym_property] = ACTIONS(2934), + [anon_sym_signal] = ACTIONS(2934), + [anon_sym_on] = ACTIONS(2934), + [anon_sym_required] = ACTIONS(2934), + [anon_sym_component] = ACTIONS(2934), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [465] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1839), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [894] = { + [sym_string] = STATE(5344), + [sym_comment] = STATE(894), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [sym_override_modifier] = STATE(3899), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_from] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2939), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_readonly] = ACTIONS(2941), + [anon_sym_get] = ACTIONS(2943), + [anon_sym_set] = ACTIONS(2943), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2934), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_override] = ACTIONS(2945), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_any] = ACTIONS(2934), + [anon_sym_number] = ACTIONS(2934), + [anon_sym_boolean] = ACTIONS(2934), + [anon_sym_string] = ACTIONS(2934), + [anon_sym_symbol] = ACTIONS(2934), + [anon_sym_object] = ACTIONS(2934), + [anon_sym_property] = ACTIONS(2934), + [anon_sym_signal] = ACTIONS(2934), + [anon_sym_on] = ACTIONS(2934), + [anon_sym_required] = ACTIONS(2934), + [anon_sym_component] = ACTIONS(2934), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [466] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1527), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(1994), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [895] = { + [sym_string] = STATE(5344), + [sym_comment] = STATE(895), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [sym_override_modifier] = STATE(3899), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_from] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2939), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_readonly] = ACTIONS(2941), + [anon_sym_get] = ACTIONS(2943), + [anon_sym_set] = ACTIONS(2943), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2934), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_override] = ACTIONS(2945), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_any] = ACTIONS(2934), + [anon_sym_number] = ACTIONS(2934), + [anon_sym_boolean] = ACTIONS(2934), + [anon_sym_string] = ACTIONS(2934), + [anon_sym_symbol] = ACTIONS(2934), + [anon_sym_object] = ACTIONS(2934), + [anon_sym_property] = ACTIONS(2934), + [anon_sym_signal] = ACTIONS(2934), + [anon_sym_on] = ACTIONS(2934), + [anon_sym_required] = ACTIONS(2934), + [anon_sym_component] = ACTIONS(2934), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [467] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2235), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [896] = { + [sym_string] = STATE(5344), + [sym_comment] = STATE(896), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [aux_sym_object_repeat1] = STATE(6742), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_from] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2934), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_readonly] = ACTIONS(2934), + [anon_sym_get] = ACTIONS(2934), + [anon_sym_set] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2934), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_override] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_any] = ACTIONS(2934), + [anon_sym_number] = ACTIONS(2934), + [anon_sym_boolean] = ACTIONS(2934), + [anon_sym_string] = ACTIONS(2934), + [anon_sym_symbol] = ACTIONS(2934), + [anon_sym_object] = ACTIONS(2934), + [anon_sym_property] = ACTIONS(2934), + [anon_sym_signal] = ACTIONS(2934), + [anon_sym_on] = ACTIONS(2934), + [anon_sym_required] = ACTIONS(2934), + [anon_sym_component] = ACTIONS(2934), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [468] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2236), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [897] = { + [sym_string] = STATE(5344), + [sym_comment] = STATE(897), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [aux_sym_object_repeat1] = STATE(6742), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_from] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2939), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_readonly] = ACTIONS(2934), + [anon_sym_get] = ACTIONS(2943), + [anon_sym_set] = ACTIONS(2943), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2934), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_override] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_any] = ACTIONS(2934), + [anon_sym_number] = ACTIONS(2934), + [anon_sym_boolean] = ACTIONS(2934), + [anon_sym_string] = ACTIONS(2934), + [anon_sym_symbol] = ACTIONS(2934), + [anon_sym_object] = ACTIONS(2934), + [anon_sym_property] = ACTIONS(2934), + [anon_sym_signal] = ACTIONS(2934), + [anon_sym_on] = ACTIONS(2934), + [anon_sym_required] = ACTIONS(2934), + [anon_sym_component] = ACTIONS(2934), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [469] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2237), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [898] = { + [sym_string] = STATE(5344), + [sym_comment] = STATE(898), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_from] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2934), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_readonly] = ACTIONS(2934), + [anon_sym_get] = ACTIONS(2934), + [anon_sym_set] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2934), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_override] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_any] = ACTIONS(2934), + [anon_sym_number] = ACTIONS(2934), + [anon_sym_boolean] = ACTIONS(2934), + [anon_sym_string] = ACTIONS(2934), + [anon_sym_symbol] = ACTIONS(2934), + [anon_sym_object] = ACTIONS(2934), + [anon_sym_property] = ACTIONS(2934), + [anon_sym_signal] = ACTIONS(2934), + [anon_sym_on] = ACTIONS(2934), + [anon_sym_required] = ACTIONS(2934), + [anon_sym_component] = ACTIONS(2934), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [470] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2208), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [899] = { + [sym_string] = STATE(5344), + [sym_comment] = STATE(899), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_from] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2939), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_readonly] = ACTIONS(2934), + [anon_sym_get] = ACTIONS(2943), + [anon_sym_set] = ACTIONS(2943), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2934), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_override] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_any] = ACTIONS(2934), + [anon_sym_number] = ACTIONS(2934), + [anon_sym_boolean] = ACTIONS(2934), + [anon_sym_string] = ACTIONS(2934), + [anon_sym_symbol] = ACTIONS(2934), + [anon_sym_object] = ACTIONS(2934), + [anon_sym_property] = ACTIONS(2934), + [anon_sym_signal] = ACTIONS(2934), + [anon_sym_on] = ACTIONS(2934), + [anon_sym_required] = ACTIONS(2934), + [anon_sym_component] = ACTIONS(2934), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [471] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1915), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [900] = { + [sym_string] = STATE(5344), + [sym_comment] = STATE(900), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_from] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2934), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_readonly] = ACTIONS(2934), + [anon_sym_get] = ACTIONS(2934), + [anon_sym_set] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2934), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_override] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_any] = ACTIONS(2934), + [anon_sym_number] = ACTIONS(2934), + [anon_sym_boolean] = ACTIONS(2934), + [anon_sym_string] = ACTIONS(2934), + [anon_sym_symbol] = ACTIONS(2934), + [anon_sym_object] = ACTIONS(2934), + [anon_sym_property] = ACTIONS(2934), + [anon_sym_signal] = ACTIONS(2934), + [anon_sym_on] = ACTIONS(2934), + [anon_sym_required] = ACTIONS(2934), + [anon_sym_component] = ACTIONS(2934), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [472] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1527), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(1988), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [901] = { + [sym_string] = STATE(5344), + [sym_comment] = STATE(901), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_from] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2939), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_readonly] = ACTIONS(2934), + [anon_sym_get] = ACTIONS(2943), + [anon_sym_set] = ACTIONS(2943), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2934), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_override] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_any] = ACTIONS(2934), + [anon_sym_number] = ACTIONS(2934), + [anon_sym_boolean] = ACTIONS(2934), + [anon_sym_string] = ACTIONS(2934), + [anon_sym_symbol] = ACTIONS(2934), + [anon_sym_object] = ACTIONS(2934), + [anon_sym_property] = ACTIONS(2934), + [anon_sym_signal] = ACTIONS(2934), + [anon_sym_on] = ACTIONS(2934), + [anon_sym_required] = ACTIONS(2934), + [anon_sym_component] = ACTIONS(2934), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [473] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1784), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [902] = { + [sym_string] = STATE(5344), + [sym_comment] = STATE(902), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_from] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2934), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_readonly] = ACTIONS(2934), + [anon_sym_get] = ACTIONS(2934), + [anon_sym_set] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2934), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_override] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_any] = ACTIONS(2934), + [anon_sym_number] = ACTIONS(2934), + [anon_sym_boolean] = ACTIONS(2934), + [anon_sym_string] = ACTIONS(2934), + [anon_sym_symbol] = ACTIONS(2934), + [anon_sym_object] = ACTIONS(2934), + [anon_sym_property] = ACTIONS(2934), + [anon_sym_signal] = ACTIONS(2934), + [anon_sym_on] = ACTIONS(2934), + [anon_sym_required] = ACTIONS(2934), + [anon_sym_component] = ACTIONS(2934), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [474] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1938), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [903] = { + [sym_string] = STATE(5344), + [sym_comment] = STATE(903), + [sym__property_name] = STATE(5600), + [sym_computed_property_name] = STATE(5344), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2934), + [anon_sym_export] = ACTIONS(2934), + [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2934), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_from] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2939), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2934), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2930), + [sym_private_property_identifier] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_readonly] = ACTIONS(2934), + [anon_sym_get] = ACTIONS(2943), + [anon_sym_set] = ACTIONS(2943), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2934), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_override] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(2934), + [anon_sym_any] = ACTIONS(2934), + [anon_sym_number] = ACTIONS(2934), + [anon_sym_boolean] = ACTIONS(2934), + [anon_sym_string] = ACTIONS(2934), + [anon_sym_symbol] = ACTIONS(2934), + [anon_sym_object] = ACTIONS(2934), + [anon_sym_property] = ACTIONS(2934), + [anon_sym_signal] = ACTIONS(2934), + [anon_sym_on] = ACTIONS(2934), + [anon_sym_required] = ACTIONS(2934), + [anon_sym_component] = ACTIONS(2934), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [475] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2253), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [904] = { + [sym_namespace_export] = STATE(8013), + [sym_export_clause] = STATE(6532), + [sym_declaration] = STATE(1673), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_class_declaration] = STATE(1713), + [sym_function_declaration] = STATE(1713), + [sym_generator_function_declaration] = STATE(1713), + [sym_comment] = STATE(904), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1713), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(1811), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [aux_sym_export_statement_repeat1] = STATE(6124), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_type] = ACTIONS(2951), + [anon_sym_EQ] = ACTIONS(2953), + [anon_sym_as] = ACTIONS(2955), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(2961), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(2993), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2999), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [476] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1916), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [905] = { + [sym_namespace_export] = STATE(8013), + [sym_export_clause] = STATE(6532), + [sym_declaration] = STATE(1673), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_class_declaration] = STATE(1713), + [sym_function_declaration] = STATE(1713), + [sym_generator_function_declaration] = STATE(1713), + [sym_comment] = STATE(905), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1713), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(1811), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [aux_sym_export_statement_repeat1] = STATE(6124), + [aux_sym_object_repeat1] = STATE(6742), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_type] = ACTIONS(2951), + [anon_sym_EQ] = ACTIONS(2953), + [anon_sym_as] = ACTIONS(2955), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(3001), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(2993), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2999), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [477] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1918), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [906] = { + [sym_namespace_export] = STATE(8013), + [sym_export_clause] = STATE(6532), + [sym_declaration] = STATE(1673), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_class_declaration] = STATE(1713), + [sym_function_declaration] = STATE(1713), + [sym_generator_function_declaration] = STATE(1713), + [sym_comment] = STATE(906), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1713), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(1811), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [aux_sym_export_statement_repeat1] = STATE(6124), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_type] = ACTIONS(2951), + [anon_sym_EQ] = ACTIONS(2953), + [anon_sym_as] = ACTIONS(2955), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(3003), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(2993), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2999), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [478] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2340), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [907] = { + [sym_namespace_export] = STATE(8013), + [sym_export_clause] = STATE(6532), + [sym_declaration] = STATE(1673), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_class_declaration] = STATE(1713), + [sym_function_declaration] = STATE(1713), + [sym_generator_function_declaration] = STATE(1713), + [sym_comment] = STATE(907), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1713), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(1811), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [aux_sym_export_statement_repeat1] = STATE(6124), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_type] = ACTIONS(2951), + [anon_sym_EQ] = ACTIONS(2953), + [anon_sym_as] = ACTIONS(2955), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(3005), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(2993), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2999), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [479] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1919), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [908] = { + [sym_comment] = STATE(908), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2574), + [anon_sym_export] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_type] = ACTIONS(2574), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2574), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_from] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_async] = ACTIONS(2574), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2574), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2574), + [sym_private_property_identifier] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_readonly] = ACTIONS(2574), + [anon_sym_get] = ACTIONS(2574), + [anon_sym_set] = ACTIONS(2574), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2574), + [anon_sym_public] = ACTIONS(2574), + [anon_sym_private] = ACTIONS(2574), + [anon_sym_protected] = ACTIONS(2574), + [anon_sym_override] = ACTIONS(2574), + [anon_sym_module] = ACTIONS(2574), + [anon_sym_any] = ACTIONS(2574), + [anon_sym_number] = ACTIONS(2574), + [anon_sym_boolean] = ACTIONS(2574), + [anon_sym_string] = ACTIONS(2574), + [anon_sym_symbol] = ACTIONS(2574), + [anon_sym_object] = ACTIONS(2574), + [anon_sym_property] = ACTIONS(2574), + [anon_sym_signal] = ACTIONS(2574), + [anon_sym_on] = ACTIONS(2574), + [anon_sym_required] = ACTIONS(2574), + [anon_sym_component] = ACTIONS(2574), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [480] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1924), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [909] = { + [sym_comment] = STATE(909), + [aux_sym_object_repeat1] = STATE(6742), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2590), + [anon_sym_export] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2590), + [anon_sym_type] = ACTIONS(2590), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2590), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_from] = ACTIONS(2590), + [anon_sym_let] = ACTIONS(2590), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2590), + [sym_private_property_identifier] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_readonly] = ACTIONS(2590), + [anon_sym_get] = ACTIONS(2590), + [anon_sym_set] = ACTIONS(2590), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2590), + [anon_sym_public] = ACTIONS(2590), + [anon_sym_private] = ACTIONS(2590), + [anon_sym_protected] = ACTIONS(2590), + [anon_sym_override] = ACTIONS(2590), + [anon_sym_module] = ACTIONS(2590), + [anon_sym_any] = ACTIONS(2590), + [anon_sym_number] = ACTIONS(2590), + [anon_sym_boolean] = ACTIONS(2590), + [anon_sym_string] = ACTIONS(2590), + [anon_sym_symbol] = ACTIONS(2590), + [anon_sym_object] = ACTIONS(2590), + [anon_sym_property] = ACTIONS(2590), + [anon_sym_signal] = ACTIONS(2590), + [anon_sym_on] = ACTIONS(2590), + [anon_sym_required] = ACTIONS(2590), + [anon_sym_component] = ACTIONS(2590), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [481] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2239), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [910] = { + [sym_comment] = STATE(910), + [aux_sym_object_repeat1] = STATE(6742), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2574), + [anon_sym_export] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_type] = ACTIONS(2574), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2574), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_from] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_async] = ACTIONS(2574), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2574), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2574), + [sym_private_property_identifier] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_readonly] = ACTIONS(2574), + [anon_sym_get] = ACTIONS(2574), + [anon_sym_set] = ACTIONS(2574), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2574), + [anon_sym_public] = ACTIONS(2574), + [anon_sym_private] = ACTIONS(2574), + [anon_sym_protected] = ACTIONS(2574), + [anon_sym_override] = ACTIONS(2574), + [anon_sym_module] = ACTIONS(2574), + [anon_sym_any] = ACTIONS(2574), + [anon_sym_number] = ACTIONS(2574), + [anon_sym_boolean] = ACTIONS(2574), + [anon_sym_string] = ACTIONS(2574), + [anon_sym_symbol] = ACTIONS(2574), + [anon_sym_object] = ACTIONS(2574), + [anon_sym_property] = ACTIONS(2574), + [anon_sym_signal] = ACTIONS(2574), + [anon_sym_on] = ACTIONS(2574), + [anon_sym_required] = ACTIONS(2574), + [anon_sym_component] = ACTIONS(2574), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [482] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2339), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [911] = { + [sym_comment] = STATE(911), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2590), + [anon_sym_export] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2590), + [anon_sym_type] = ACTIONS(2590), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2590), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_from] = ACTIONS(2590), + [anon_sym_let] = ACTIONS(2590), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2590), + [sym_private_property_identifier] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_readonly] = ACTIONS(2590), + [anon_sym_get] = ACTIONS(2590), + [anon_sym_set] = ACTIONS(2590), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2590), + [anon_sym_public] = ACTIONS(2590), + [anon_sym_private] = ACTIONS(2590), + [anon_sym_protected] = ACTIONS(2590), + [anon_sym_override] = ACTIONS(2590), + [anon_sym_module] = ACTIONS(2590), + [anon_sym_any] = ACTIONS(2590), + [anon_sym_number] = ACTIONS(2590), + [anon_sym_boolean] = ACTIONS(2590), + [anon_sym_string] = ACTIONS(2590), + [anon_sym_symbol] = ACTIONS(2590), + [anon_sym_object] = ACTIONS(2590), + [anon_sym_property] = ACTIONS(2590), + [anon_sym_signal] = ACTIONS(2590), + [anon_sym_on] = ACTIONS(2590), + [anon_sym_required] = ACTIONS(2590), + [anon_sym_component] = ACTIONS(2590), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [483] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1595), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [912] = { + [sym_comment] = STATE(912), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2574), + [anon_sym_export] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_type] = ACTIONS(2574), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2574), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_from] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_async] = ACTIONS(2574), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2574), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2574), + [sym_private_property_identifier] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_readonly] = ACTIONS(2574), + [anon_sym_get] = ACTIONS(2574), + [anon_sym_set] = ACTIONS(2574), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2574), + [anon_sym_public] = ACTIONS(2574), + [anon_sym_private] = ACTIONS(2574), + [anon_sym_protected] = ACTIONS(2574), + [anon_sym_override] = ACTIONS(2574), + [anon_sym_module] = ACTIONS(2574), + [anon_sym_any] = ACTIONS(2574), + [anon_sym_number] = ACTIONS(2574), + [anon_sym_boolean] = ACTIONS(2574), + [anon_sym_string] = ACTIONS(2574), + [anon_sym_symbol] = ACTIONS(2574), + [anon_sym_object] = ACTIONS(2574), + [anon_sym_property] = ACTIONS(2574), + [anon_sym_signal] = ACTIONS(2574), + [anon_sym_on] = ACTIONS(2574), + [anon_sym_required] = ACTIONS(2574), + [anon_sym_component] = ACTIONS(2574), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [484] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2277), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [913] = { + [sym_comment] = STATE(913), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2590), + [anon_sym_export] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2590), + [anon_sym_type] = ACTIONS(2590), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2590), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_from] = ACTIONS(2590), + [anon_sym_let] = ACTIONS(2590), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2590), + [sym_private_property_identifier] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_readonly] = ACTIONS(2590), + [anon_sym_get] = ACTIONS(2590), + [anon_sym_set] = ACTIONS(2590), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2590), + [anon_sym_public] = ACTIONS(2590), + [anon_sym_private] = ACTIONS(2590), + [anon_sym_protected] = ACTIONS(2590), + [anon_sym_override] = ACTIONS(2590), + [anon_sym_module] = ACTIONS(2590), + [anon_sym_any] = ACTIONS(2590), + [anon_sym_number] = ACTIONS(2590), + [anon_sym_boolean] = ACTIONS(2590), + [anon_sym_string] = ACTIONS(2590), + [anon_sym_symbol] = ACTIONS(2590), + [anon_sym_object] = ACTIONS(2590), + [anon_sym_property] = ACTIONS(2590), + [anon_sym_signal] = ACTIONS(2590), + [anon_sym_on] = ACTIONS(2590), + [anon_sym_required] = ACTIONS(2590), + [anon_sym_component] = ACTIONS(2590), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [485] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1781), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [914] = { + [sym_comment] = STATE(914), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2590), + [anon_sym_export] = ACTIONS(2590), + [anon_sym_STAR] = ACTIONS(2590), + [anon_sym_type] = ACTIONS(2590), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2590), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_from] = ACTIONS(2590), + [anon_sym_let] = ACTIONS(2590), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2590), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2590), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2590), + [sym_private_property_identifier] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_readonly] = ACTIONS(2590), + [anon_sym_get] = ACTIONS(2590), + [anon_sym_set] = ACTIONS(2590), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2590), + [anon_sym_public] = ACTIONS(2590), + [anon_sym_private] = ACTIONS(2590), + [anon_sym_protected] = ACTIONS(2590), + [anon_sym_override] = ACTIONS(2590), + [anon_sym_module] = ACTIONS(2590), + [anon_sym_any] = ACTIONS(2590), + [anon_sym_number] = ACTIONS(2590), + [anon_sym_boolean] = ACTIONS(2590), + [anon_sym_string] = ACTIONS(2590), + [anon_sym_symbol] = ACTIONS(2590), + [anon_sym_object] = ACTIONS(2590), + [anon_sym_property] = ACTIONS(2590), + [anon_sym_signal] = ACTIONS(2590), + [anon_sym_on] = ACTIONS(2590), + [anon_sym_required] = ACTIONS(2590), + [anon_sym_component] = ACTIONS(2590), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [486] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1925), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [915] = { + [sym_comment] = STATE(915), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(2574), + [anon_sym_export] = ACTIONS(2574), + [anon_sym_STAR] = ACTIONS(2574), + [anon_sym_type] = ACTIONS(2574), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2574), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_from] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2574), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2574), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2574), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_async] = ACTIONS(2574), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2574), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [sym_number] = ACTIONS(2574), + [sym_private_property_identifier] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_readonly] = ACTIONS(2574), + [anon_sym_get] = ACTIONS(2574), + [anon_sym_set] = ACTIONS(2574), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2574), + [anon_sym_public] = ACTIONS(2574), + [anon_sym_private] = ACTIONS(2574), + [anon_sym_protected] = ACTIONS(2574), + [anon_sym_override] = ACTIONS(2574), + [anon_sym_module] = ACTIONS(2574), + [anon_sym_any] = ACTIONS(2574), + [anon_sym_number] = ACTIONS(2574), + [anon_sym_boolean] = ACTIONS(2574), + [anon_sym_string] = ACTIONS(2574), + [anon_sym_symbol] = ACTIONS(2574), + [anon_sym_object] = ACTIONS(2574), + [anon_sym_property] = ACTIONS(2574), + [anon_sym_signal] = ACTIONS(2574), + [anon_sym_on] = ACTIONS(2574), + [anon_sym_required] = ACTIONS(2574), + [anon_sym_component] = ACTIONS(2574), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [487] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1593), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [916] = { + [sym_declaration] = STATE(1810), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_class_declaration] = STATE(1713), + [sym_function_declaration] = STATE(1713), + [sym_generator_function_declaration] = STATE(1713), + [sym_comment] = STATE(916), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1713), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(1811), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [aux_sym_export_statement_repeat1] = STATE(6124), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3007), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(3003), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2999), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [488] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1590), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [917] = { + [sym_declaration] = STATE(1810), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_class_declaration] = STATE(1713), + [sym_function_declaration] = STATE(1713), + [sym_generator_function_declaration] = STATE(1713), + [sym_comment] = STATE(917), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1713), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(1811), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [aux_sym_export_statement_repeat1] = STATE(6124), + [aux_sym_object_repeat1] = STATE(6742), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3007), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(3001), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2999), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [489] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1588), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [918] = { + [sym_declaration] = STATE(1810), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_class_declaration] = STATE(1713), + [sym_function_declaration] = STATE(1713), + [sym_generator_function_declaration] = STATE(1713), + [sym_comment] = STATE(918), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1713), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(1811), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [aux_sym_export_statement_repeat1] = STATE(6124), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3007), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(2961), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2999), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [490] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(1992), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [919] = { + [sym_declaration] = STATE(1810), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_class_declaration] = STATE(1713), + [sym_function_declaration] = STATE(1713), + [sym_generator_function_declaration] = STATE(1713), + [sym_comment] = STATE(919), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1713), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(1811), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [aux_sym_export_statement_repeat1] = STATE(6124), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3007), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_RBRACE] = ACTIONS(3005), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2999), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [491] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1926), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [920] = { + [sym_namespace_export] = STATE(8013), + [sym_export_clause] = STATE(6532), + [sym_declaration] = STATE(1673), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_class_declaration] = STATE(1713), + [sym_function_declaration] = STATE(1713), + [sym_generator_function_declaration] = STATE(1713), + [sym_comment] = STATE(920), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1713), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(1811), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [aux_sym_export_statement_repeat1] = STATE(6124), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_type] = ACTIONS(2951), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym_as] = ACTIONS(2955), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(2993), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2999), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [492] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2256), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [921] = { + [sym_namespace_export] = STATE(7892), + [sym_export_clause] = STATE(6391), + [sym_declaration] = STATE(7414), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_class_declaration] = STATE(7395), + [sym_function_declaration] = STATE(7395), + [sym_generator_function_declaration] = STATE(7395), + [sym_comment] = STATE(921), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(7395), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(7415), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [aux_sym_export_statement_repeat1] = STATE(5910), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_default] = ACTIONS(3019), + [anon_sym_type] = ACTIONS(3021), + [anon_sym_EQ] = ACTIONS(3023), + [anon_sym_as] = ACTIONS(3025), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(3029), + [anon_sym_var] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3033), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3039), + [anon_sym_async] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3043), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3045), + [anon_sym_module] = ACTIONS(3047), + [anon_sym_abstract] = ACTIONS(3049), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_interface] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3053), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [493] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1930), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [922] = { + [sym_namespace_export] = STATE(8136), + [sym_export_clause] = STATE(6551), + [sym_declaration] = STATE(4131), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_class_declaration] = STATE(4084), + [sym_function_declaration] = STATE(4084), + [sym_generator_function_declaration] = STATE(4084), + [sym_comment] = STATE(922), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(4084), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(4132), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [aux_sym_export_statement_repeat1] = STATE(5836), + [anon_sym_STAR] = ACTIONS(3055), + [anon_sym_default] = ACTIONS(3057), + [anon_sym_type] = ACTIONS(3059), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3063), + [anon_sym_namespace] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(3067), + [anon_sym_var] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3071), + [anon_sym_const] = ACTIONS(3073), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3077), + [anon_sym_async] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3083), + [anon_sym_module] = ACTIONS(3085), + [anon_sym_abstract] = ACTIONS(3087), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_interface] = ACTIONS(3089), + [anon_sym_enum] = ACTIONS(3091), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [494] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1789), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [923] = { + [sym_namespace_export] = STATE(8089), + [sym_export_clause] = STATE(6326), + [sym_declaration] = STATE(4223), + [sym_variable_declaration] = STATE(4253), + [sym_lexical_declaration] = STATE(4253), + [sym_class_declaration] = STATE(4253), + [sym_function_declaration] = STATE(4253), + [sym_generator_function_declaration] = STATE(4253), + [sym_comment] = STATE(923), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(4253), + [sym_ambient_declaration] = STATE(4253), + [sym_abstract_class_declaration] = STATE(4253), + [sym_module] = STATE(4253), + [sym_internal_module] = STATE(4227), + [sym_import_alias] = STATE(4253), + [sym_interface_declaration] = STATE(4253), + [sym_enum_declaration] = STATE(4253), + [sym_type_alias_declaration] = STATE(4253), + [aux_sym_export_statement_repeat1] = STATE(5857), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_type] = ACTIONS(3097), + [anon_sym_EQ] = ACTIONS(3099), + [anon_sym_as] = ACTIONS(3101), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(3105), + [anon_sym_var] = ACTIONS(3107), + [anon_sym_let] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3115), + [anon_sym_async] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3119), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3121), + [anon_sym_module] = ACTIONS(3123), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_interface] = ACTIONS(3127), + [anon_sym_enum] = ACTIONS(3129), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [495] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2321), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(2000), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [924] = { + [sym__call_signature] = STATE(8691), + [sym_comment] = STATE(924), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3131), + [anon_sym_export] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3133), + [anon_sym_any] = ACTIONS(3133), + [anon_sym_number] = ACTIONS(3133), + [anon_sym_boolean] = ACTIONS(3133), + [anon_sym_string] = ACTIONS(3133), + [anon_sym_symbol] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_signal] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_component] = ACTIONS(3133), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [496] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [925] = { + [sym_namespace_export] = STATE(7948), + [sym_export_clause] = STATE(6337), + [sym_declaration] = STATE(1494), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_class_declaration] = STATE(1503), + [sym_function_declaration] = STATE(1503), + [sym_generator_function_declaration] = STATE(1503), + [sym_comment] = STATE(925), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1503), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(1493), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [aux_sym_export_statement_repeat1] = STATE(5782), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_default] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_as] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_var] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3173), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_interface] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3179), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [497] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2336), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [926] = { + [sym__call_signature] = STATE(8691), + [sym_comment] = STATE(926), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3131), + [anon_sym_export] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(1321), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_QMARK] = ACTIONS(1321), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3133), + [anon_sym_any] = ACTIONS(3133), + [anon_sym_number] = ACTIONS(3133), + [anon_sym_boolean] = ACTIONS(3133), + [anon_sym_string] = ACTIONS(3133), + [anon_sym_symbol] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_signal] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_component] = ACTIONS(3133), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [498] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(1988), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [927] = { + [sym__call_signature] = STATE(8220), + [sym_comment] = STATE(927), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3181), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(34), + [anon_sym_from] = ACTIONS(3183), + [anon_sym_let] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(34), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3183), + [anon_sym_COLON] = ACTIONS(34), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_readonly] = ACTIONS(3183), + [anon_sym_get] = ACTIONS(3183), + [anon_sym_set] = ACTIONS(3183), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(3183), + [anon_sym_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_protected] = ACTIONS(3183), + [anon_sym_override] = ACTIONS(3183), + [anon_sym_module] = ACTIONS(3183), + [anon_sym_any] = ACTIONS(3183), + [anon_sym_number] = ACTIONS(3183), + [anon_sym_boolean] = ACTIONS(3183), + [anon_sym_string] = ACTIONS(3183), + [anon_sym_symbol] = ACTIONS(3183), + [anon_sym_object] = ACTIONS(3183), + [anon_sym_property] = ACTIONS(3183), + [anon_sym_signal] = ACTIONS(3183), + [anon_sym_on] = ACTIONS(3183), + [anon_sym_required] = ACTIONS(3183), + [anon_sym_component] = ACTIONS(3183), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [499] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1841), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(1988), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [928] = { + [sym_namespace_export] = STATE(7891), + [sym_export_clause] = STATE(6342), + [sym_declaration] = STATE(1307), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_class_declaration] = STATE(1314), + [sym_function_declaration] = STATE(1314), + [sym_generator_function_declaration] = STATE(1314), + [sym_comment] = STATE(928), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1314), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(1306), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [aux_sym_export_statement_repeat1] = STATE(5766), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_default] = ACTIONS(3187), + [anon_sym_type] = ACTIONS(3189), + [anon_sym_EQ] = ACTIONS(3191), + [anon_sym_as] = ACTIONS(3193), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(3197), + [anon_sym_var] = ACTIONS(3199), + [anon_sym_let] = ACTIONS(3201), + [anon_sym_const] = ACTIONS(3203), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_async] = ACTIONS(3209), + [anon_sym_function] = ACTIONS(3211), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3213), + [anon_sym_module] = ACTIONS(3215), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3221), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [500] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1841), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [929] = { + [sym_namespace_export] = STATE(7803), + [sym_export_clause] = STATE(6389), + [sym_declaration] = STATE(1096), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_generator_function_declaration] = STATE(1105), + [sym_comment] = STATE(929), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1105), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(1095), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [aux_sym_export_statement_repeat1] = STATE(5758), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_EQ] = ACTIONS(3229), + [anon_sym_as] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3245), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3251), + [anon_sym_module] = ACTIONS(3253), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3259), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [501] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1585), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [930] = { + [sym__call_signature] = STATE(8568), + [sym_comment] = STATE(930), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_initializer] = STATE(4299), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_module] = ACTIONS(3263), + [anon_sym_any] = ACTIONS(3263), + [anon_sym_number] = ACTIONS(3263), + [anon_sym_boolean] = ACTIONS(3263), + [anon_sym_string] = ACTIONS(3263), + [anon_sym_symbol] = ACTIONS(3263), + [anon_sym_object] = ACTIONS(3263), + [anon_sym_property] = ACTIONS(3263), + [anon_sym_signal] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_component] = ACTIONS(3263), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [502] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2304), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [931] = { + [sym__call_signature] = STATE(8220), + [sym_comment] = STATE(931), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3181), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3183), + [anon_sym_let] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3183), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_readonly] = ACTIONS(3183), + [anon_sym_get] = ACTIONS(3183), + [anon_sym_set] = ACTIONS(3183), + [anon_sym_declare] = ACTIONS(3183), + [anon_sym_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_protected] = ACTIONS(3183), + [anon_sym_override] = ACTIONS(3183), + [anon_sym_module] = ACTIONS(3183), + [anon_sym_any] = ACTIONS(3183), + [anon_sym_number] = ACTIONS(3183), + [anon_sym_boolean] = ACTIONS(3183), + [anon_sym_string] = ACTIONS(3183), + [anon_sym_symbol] = ACTIONS(3183), + [anon_sym_object] = ACTIONS(3183), + [anon_sym_property] = ACTIONS(3183), + [anon_sym_signal] = ACTIONS(3183), + [anon_sym_on] = ACTIONS(3183), + [anon_sym_required] = ACTIONS(3183), + [anon_sym_component] = ACTIONS(3183), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [503] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1897), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [932] = { + [sym__call_signature] = STATE(8568), + [sym_comment] = STATE(932), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_initializer] = STATE(7779), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_module] = ACTIONS(3263), + [anon_sym_any] = ACTIONS(3263), + [anon_sym_number] = ACTIONS(3263), + [anon_sym_boolean] = ACTIONS(3263), + [anon_sym_string] = ACTIONS(3263), + [anon_sym_symbol] = ACTIONS(3263), + [anon_sym_object] = ACTIONS(3263), + [anon_sym_property] = ACTIONS(3263), + [anon_sym_signal] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_component] = ACTIONS(3263), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2321), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [933] = { + [sym__call_signature] = STATE(8220), + [sym_comment] = STATE(933), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3181), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3183), + [anon_sym_let] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_RPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3183), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_readonly] = ACTIONS(3183), + [anon_sym_get] = ACTIONS(3183), + [anon_sym_set] = ACTIONS(3183), + [anon_sym_declare] = ACTIONS(3183), + [anon_sym_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_protected] = ACTIONS(3183), + [anon_sym_override] = ACTIONS(3183), + [anon_sym_module] = ACTIONS(3183), + [anon_sym_any] = ACTIONS(3183), + [anon_sym_number] = ACTIONS(3183), + [anon_sym_boolean] = ACTIONS(3183), + [anon_sym_string] = ACTIONS(3183), + [anon_sym_symbol] = ACTIONS(3183), + [anon_sym_object] = ACTIONS(3183), + [anon_sym_property] = ACTIONS(3183), + [anon_sym_signal] = ACTIONS(3183), + [anon_sym_on] = ACTIONS(3183), + [anon_sym_required] = ACTIONS(3183), + [anon_sym_component] = ACTIONS(3183), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [505] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1794), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [934] = { + [sym__call_signature] = STATE(8568), + [sym_comment] = STATE(934), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_module] = ACTIONS(3263), + [anon_sym_any] = ACTIONS(3263), + [anon_sym_number] = ACTIONS(3263), + [anon_sym_boolean] = ACTIONS(3263), + [anon_sym_string] = ACTIONS(3263), + [anon_sym_symbol] = ACTIONS(3263), + [anon_sym_object] = ACTIONS(3263), + [anon_sym_property] = ACTIONS(3263), + [anon_sym_signal] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_component] = ACTIONS(3263), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [506] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1704), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [935] = { + [sym__call_signature] = STATE(8568), + [sym_comment] = STATE(935), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3276), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_module] = ACTIONS(3263), + [anon_sym_any] = ACTIONS(3263), + [anon_sym_number] = ACTIONS(3263), + [anon_sym_boolean] = ACTIONS(3263), + [anon_sym_string] = ACTIONS(3263), + [anon_sym_symbol] = ACTIONS(3263), + [anon_sym_object] = ACTIONS(3263), + [anon_sym_property] = ACTIONS(3263), + [anon_sym_signal] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_component] = ACTIONS(3263), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [507] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1580), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [936] = { + [sym__call_signature] = STATE(8220), + [sym_comment] = STATE(936), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_ui_object_initializer] = STATE(7050), + [sym_identifier] = ACTIONS(3181), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3278), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_from] = ACTIONS(3183), + [anon_sym_let] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_readonly] = ACTIONS(3183), + [anon_sym_get] = ACTIONS(3183), + [anon_sym_set] = ACTIONS(3183), + [anon_sym_declare] = ACTIONS(3183), + [anon_sym_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_protected] = ACTIONS(3183), + [anon_sym_override] = ACTIONS(3183), + [anon_sym_module] = ACTIONS(3183), + [anon_sym_any] = ACTIONS(3183), + [anon_sym_number] = ACTIONS(3183), + [anon_sym_boolean] = ACTIONS(3183), + [anon_sym_string] = ACTIONS(3183), + [anon_sym_symbol] = ACTIONS(3183), + [anon_sym_object] = ACTIONS(3183), + [anon_sym_property] = ACTIONS(3183), + [anon_sym_signal] = ACTIONS(3183), + [anon_sym_on] = ACTIONS(3183), + [anon_sym_required] = ACTIONS(3183), + [anon_sym_component] = ACTIONS(3183), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1931), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [937] = { + [sym__call_signature] = STATE(8568), + [sym_comment] = STATE(937), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_module] = ACTIONS(3263), + [anon_sym_any] = ACTIONS(3263), + [anon_sym_number] = ACTIONS(3263), + [anon_sym_boolean] = ACTIONS(3263), + [anon_sym_string] = ACTIONS(3263), + [anon_sym_symbol] = ACTIONS(3263), + [anon_sym_object] = ACTIONS(3263), + [anon_sym_property] = ACTIONS(3263), + [anon_sym_signal] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_component] = ACTIONS(3263), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1582), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [938] = { + [sym__call_signature] = STATE(8568), + [sym_comment] = STATE(938), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3280), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_module] = ACTIONS(3263), + [anon_sym_any] = ACTIONS(3263), + [anon_sym_number] = ACTIONS(3263), + [anon_sym_boolean] = ACTIONS(3263), + [anon_sym_string] = ACTIONS(3263), + [anon_sym_symbol] = ACTIONS(3263), + [anon_sym_object] = ACTIONS(3263), + [anon_sym_property] = ACTIONS(3263), + [anon_sym_signal] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_component] = ACTIONS(3263), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1786), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [939] = { + [sym__call_signature] = STATE(8568), + [sym_comment] = STATE(939), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3282), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_module] = ACTIONS(3263), + [anon_sym_any] = ACTIONS(3263), + [anon_sym_number] = ACTIONS(3263), + [anon_sym_boolean] = ACTIONS(3263), + [anon_sym_string] = ACTIONS(3263), + [anon_sym_symbol] = ACTIONS(3263), + [anon_sym_object] = ACTIONS(3263), + [anon_sym_property] = ACTIONS(3263), + [anon_sym_signal] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_component] = ACTIONS(3263), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [511] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1787), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [940] = { + [sym__call_signature] = STATE(8568), + [sym_comment] = STATE(940), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_module] = ACTIONS(3263), + [anon_sym_any] = ACTIONS(3263), + [anon_sym_number] = ACTIONS(3263), + [anon_sym_boolean] = ACTIONS(3263), + [anon_sym_string] = ACTIONS(3263), + [anon_sym_symbol] = ACTIONS(3263), + [anon_sym_object] = ACTIONS(3263), + [anon_sym_property] = ACTIONS(3263), + [anon_sym_signal] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_component] = ACTIONS(3263), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [512] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1779), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(3847), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(3847), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1302), - [sym_subscript_expression] = STATE(1302), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(3847), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1302), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(2002), - [anon_sym_export] = ACTIONS(960), - [anon_sym_type] = ACTIONS(960), - [anon_sym_namespace] = ACTIONS(962), - [anon_sym_LBRACE] = ACTIONS(1382), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(960), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(960), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(966), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(2004), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(960), - [anon_sym_readonly] = ACTIONS(960), - [anon_sym_get] = ACTIONS(960), - [anon_sym_set] = ACTIONS(960), - [anon_sym_declare] = ACTIONS(960), - [anon_sym_public] = ACTIONS(960), - [anon_sym_private] = ACTIONS(960), - [anon_sym_protected] = ACTIONS(960), - [anon_sym_override] = ACTIONS(960), - [anon_sym_module] = ACTIONS(960), - [anon_sym_any] = ACTIONS(960), - [anon_sym_number] = ACTIONS(960), - [anon_sym_boolean] = ACTIONS(960), - [anon_sym_string] = ACTIONS(960), - [anon_sym_symbol] = ACTIONS(960), - [anon_sym_property] = ACTIONS(960), - [anon_sym_signal] = ACTIONS(960), - [anon_sym_on] = ACTIONS(960), - [anon_sym_required] = ACTIONS(960), - [anon_sym_component] = ACTIONS(960), + [941] = { + [sym__call_signature] = STATE(8220), + [sym_comment] = STATE(941), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3181), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_from] = ACTIONS(3183), + [anon_sym_let] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3183), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_readonly] = ACTIONS(3183), + [anon_sym_get] = ACTIONS(3183), + [anon_sym_set] = ACTIONS(3183), + [anon_sym_declare] = ACTIONS(3183), + [anon_sym_public] = ACTIONS(3183), + [anon_sym_private] = ACTIONS(3183), + [anon_sym_protected] = ACTIONS(3183), + [anon_sym_override] = ACTIONS(3183), + [anon_sym_module] = ACTIONS(3183), + [anon_sym_any] = ACTIONS(3183), + [anon_sym_number] = ACTIONS(3183), + [anon_sym_boolean] = ACTIONS(3183), + [anon_sym_string] = ACTIONS(3183), + [anon_sym_symbol] = ACTIONS(3183), + [anon_sym_object] = ACTIONS(3183), + [anon_sym_property] = ACTIONS(3183), + [anon_sym_signal] = ACTIONS(3183), + [anon_sym_on] = ACTIONS(3183), + [anon_sym_required] = ACTIONS(3183), + [anon_sym_component] = ACTIONS(3183), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [513] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1788), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [942] = { + [sym__call_signature] = STATE(8568), + [sym_comment] = STATE(942), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3284), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_module] = ACTIONS(3263), + [anon_sym_any] = ACTIONS(3263), + [anon_sym_number] = ACTIONS(3263), + [anon_sym_boolean] = ACTIONS(3263), + [anon_sym_string] = ACTIONS(3263), + [anon_sym_symbol] = ACTIONS(3263), + [anon_sym_object] = ACTIONS(3263), + [anon_sym_property] = ACTIONS(3263), + [anon_sym_signal] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_component] = ACTIONS(3263), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [514] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1527), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(2000), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [943] = { + [sym__call_signature] = STATE(8568), + [sym_comment] = STATE(943), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_module] = ACTIONS(3263), + [anon_sym_any] = ACTIONS(3263), + [anon_sym_number] = ACTIONS(3263), + [anon_sym_boolean] = ACTIONS(3263), + [anon_sym_string] = ACTIONS(3263), + [anon_sym_symbol] = ACTIONS(3263), + [anon_sym_object] = ACTIONS(3263), + [anon_sym_property] = ACTIONS(3263), + [anon_sym_signal] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_component] = ACTIONS(3263), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [515] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2180), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [944] = { + [sym__call_signature] = STATE(8568), + [sym_comment] = STATE(944), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3286), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_module] = ACTIONS(3263), + [anon_sym_any] = ACTIONS(3263), + [anon_sym_number] = ACTIONS(3263), + [anon_sym_boolean] = ACTIONS(3263), + [anon_sym_string] = ACTIONS(3263), + [anon_sym_symbol] = ACTIONS(3263), + [anon_sym_object] = ACTIONS(3263), + [anon_sym_property] = ACTIONS(3263), + [anon_sym_signal] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_component] = ACTIONS(3263), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [516] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1932), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [945] = { + [sym__call_signature] = STATE(8531), + [sym_comment] = STATE(945), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3290), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3290), + [anon_sym_let] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3292), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3290), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1449), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_readonly] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3290), + [anon_sym_set] = ACTIONS(3290), + [anon_sym_declare] = ACTIONS(3290), + [anon_sym_public] = ACTIONS(3290), + [anon_sym_private] = ACTIONS(3290), + [anon_sym_protected] = ACTIONS(3290), + [anon_sym_override] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3290), + [anon_sym_any] = ACTIONS(3290), + [anon_sym_number] = ACTIONS(3290), + [anon_sym_boolean] = ACTIONS(3290), + [anon_sym_string] = ACTIONS(3290), + [anon_sym_symbol] = ACTIONS(3290), + [anon_sym_object] = ACTIONS(3290), + [anon_sym_property] = ACTIONS(3290), + [anon_sym_signal] = ACTIONS(3290), + [anon_sym_on] = ACTIONS(3290), + [anon_sym_required] = ACTIONS(3290), + [anon_sym_component] = ACTIONS(3290), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [517] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1722), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [946] = { + [sym_declaration] = STATE(1539), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_class_declaration] = STATE(1503), + [sym_function_declaration] = STATE(1503), + [sym_generator_function_declaration] = STATE(1503), + [sym_comment] = STATE(946), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1503), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(1493), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [aux_sym_export_statement_repeat1] = STATE(5782), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3153), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_var] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3163), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3179), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [518] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2323), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [947] = { + [sym_declaration] = STATE(4242), + [sym_variable_declaration] = STATE(4253), + [sym_lexical_declaration] = STATE(4253), + [sym_class_declaration] = STATE(4253), + [sym_function_declaration] = STATE(4253), + [sym_generator_function_declaration] = STATE(4253), + [sym_comment] = STATE(947), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(4253), + [sym_ambient_declaration] = STATE(4253), + [sym_abstract_class_declaration] = STATE(4253), + [sym_module] = STATE(4253), + [sym_internal_module] = STATE(4227), + [sym_import_alias] = STATE(4253), + [sym_interface_declaration] = STATE(4253), + [sym_enum_declaration] = STATE(4253), + [sym_type_alias_declaration] = STATE(4253), + [aux_sym_export_statement_repeat1] = STATE(5857), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(3105), + [anon_sym_var] = ACTIONS(3107), + [anon_sym_let] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3115), + [anon_sym_async] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3119), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3121), + [anon_sym_module] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3127), + [anon_sym_enum] = ACTIONS(3129), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [519] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2318), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [948] = { + [sym_declaration] = STATE(7423), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_class_declaration] = STATE(7395), + [sym_function_declaration] = STATE(7395), + [sym_generator_function_declaration] = STATE(7395), + [sym_comment] = STATE(948), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(7395), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(7415), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [aux_sym_export_statement_repeat1] = STATE(5910), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(3029), + [anon_sym_var] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3033), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3039), + [anon_sym_async] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3043), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3045), + [anon_sym_module] = ACTIONS(3309), + [anon_sym_abstract] = ACTIONS(3049), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3053), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [520] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1517), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [949] = { + [sym_declaration] = STATE(4138), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_class_declaration] = STATE(4084), + [sym_function_declaration] = STATE(4084), + [sym_generator_function_declaration] = STATE(4084), + [sym_comment] = STATE(949), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(4084), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(4132), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [aux_sym_export_statement_repeat1] = STATE(5836), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3313), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3065), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(3067), + [anon_sym_var] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3071), + [anon_sym_const] = ACTIONS(3073), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3077), + [anon_sym_async] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3083), + [anon_sym_module] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3087), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3089), + [anon_sym_enum] = ACTIONS(3091), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [521] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1790), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [950] = { + [sym_declaration] = STATE(1299), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_class_declaration] = STATE(1314), + [sym_function_declaration] = STATE(1314), + [sym_generator_function_declaration] = STATE(1314), + [sym_comment] = STATE(950), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1314), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(1306), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [aux_sym_export_statement_repeat1] = STATE(5766), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(3197), + [anon_sym_var] = ACTIONS(3199), + [anon_sym_let] = ACTIONS(3201), + [anon_sym_const] = ACTIONS(3203), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_async] = ACTIONS(3209), + [anon_sym_function] = ACTIONS(3211), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3213), + [anon_sym_module] = ACTIONS(3321), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3221), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [522] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2331), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [951] = { + [sym_declaration] = STATE(1810), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_class_declaration] = STATE(1713), + [sym_function_declaration] = STATE(1713), + [sym_generator_function_declaration] = STATE(1713), + [sym_comment] = STATE(951), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1713), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(1811), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [aux_sym_export_statement_repeat1] = STATE(6124), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3007), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2999), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [523] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1880), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [952] = { + [sym__call_signature] = STATE(8375), + [sym_comment] = STATE(952), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3325), + [anon_sym_export] = ACTIONS(3327), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_get] = ACTIONS(3327), + [anon_sym_set] = ACTIONS(3327), + [anon_sym_declare] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_private] = ACTIONS(3327), + [anon_sym_protected] = ACTIONS(3327), + [anon_sym_override] = ACTIONS(3327), + [anon_sym_module] = ACTIONS(3327), + [anon_sym_any] = ACTIONS(3327), + [anon_sym_number] = ACTIONS(3327), + [anon_sym_boolean] = ACTIONS(3327), + [anon_sym_string] = ACTIONS(3327), + [anon_sym_symbol] = ACTIONS(3327), + [anon_sym_object] = ACTIONS(3327), + [anon_sym_property] = ACTIONS(3327), + [anon_sym_signal] = ACTIONS(3327), + [anon_sym_on] = ACTIONS(3327), + [anon_sym_required] = ACTIONS(3327), + [anon_sym_component] = ACTIONS(3327), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_implements] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [524] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1820), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [953] = { + [sym_declaration] = STATE(1094), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_generator_function_declaration] = STATE(1105), + [sym_comment] = STATE(953), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1105), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(1095), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [aux_sym_export_statement_repeat1] = STATE(5758), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3329), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3245), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3251), + [anon_sym_module] = ACTIONS(3331), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3259), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [525] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2310), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [954] = { + [sym__call_signature] = STATE(8568), + [sym_comment] = STATE(954), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(1434), + [anon_sym_of] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_module] = ACTIONS(3263), + [anon_sym_any] = ACTIONS(3263), + [anon_sym_number] = ACTIONS(3263), + [anon_sym_boolean] = ACTIONS(3263), + [anon_sym_string] = ACTIONS(3263), + [anon_sym_symbol] = ACTIONS(3263), + [anon_sym_object] = ACTIONS(3263), + [anon_sym_property] = ACTIONS(3263), + [anon_sym_signal] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_component] = ACTIONS(3263), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [526] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1876), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [955] = { + [sym__call_signature] = STATE(8375), + [sym_comment] = STATE(955), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3325), + [anon_sym_export] = ACTIONS(3327), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_readonly] = ACTIONS(3327), + [anon_sym_get] = ACTIONS(3327), + [anon_sym_set] = ACTIONS(3327), + [anon_sym_declare] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_private] = ACTIONS(3327), + [anon_sym_protected] = ACTIONS(3327), + [anon_sym_override] = ACTIONS(3327), + [anon_sym_module] = ACTIONS(3327), + [anon_sym_any] = ACTIONS(3327), + [anon_sym_number] = ACTIONS(3327), + [anon_sym_boolean] = ACTIONS(3327), + [anon_sym_string] = ACTIONS(3327), + [anon_sym_symbol] = ACTIONS(3327), + [anon_sym_object] = ACTIONS(3327), + [anon_sym_property] = ACTIONS(3327), + [anon_sym_signal] = ACTIONS(3327), + [anon_sym_on] = ACTIONS(3327), + [anon_sym_required] = ACTIONS(3327), + [anon_sym_component] = ACTIONS(3327), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_implements] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [527] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2149), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [956] = { + [sym__call_signature] = STATE(8531), + [sym_comment] = STATE(956), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3290), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3290), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3290), + [anon_sym_let] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3292), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3290), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1449), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_readonly] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3290), + [anon_sym_set] = ACTIONS(3290), + [anon_sym_declare] = ACTIONS(3290), + [anon_sym_public] = ACTIONS(3290), + [anon_sym_private] = ACTIONS(3290), + [anon_sym_protected] = ACTIONS(3290), + [anon_sym_override] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3290), + [anon_sym_any] = ACTIONS(3290), + [anon_sym_number] = ACTIONS(3290), + [anon_sym_boolean] = ACTIONS(3290), + [anon_sym_string] = ACTIONS(3290), + [anon_sym_symbol] = ACTIONS(3290), + [anon_sym_object] = ACTIONS(3290), + [anon_sym_property] = ACTIONS(3290), + [anon_sym_signal] = ACTIONS(3290), + [anon_sym_on] = ACTIONS(3290), + [anon_sym_required] = ACTIONS(3290), + [anon_sym_component] = ACTIONS(3290), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [528] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1712), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [957] = { + [sym__call_signature] = STATE(8295), + [sym_comment] = STATE(957), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_EQ] = ACTIONS(1418), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_from] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3339), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_get] = ACTIONS(3339), + [anon_sym_set] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_module] = ACTIONS(3339), + [anon_sym_any] = ACTIONS(3339), + [anon_sym_number] = ACTIONS(3339), + [anon_sym_boolean] = ACTIONS(3339), + [anon_sym_string] = ACTIONS(3339), + [anon_sym_symbol] = ACTIONS(3339), + [anon_sym_object] = ACTIONS(3339), + [anon_sym_property] = ACTIONS(3339), + [anon_sym_signal] = ACTIONS(3339), + [anon_sym_on] = ACTIONS(3339), + [anon_sym_required] = ACTIONS(3339), + [anon_sym_component] = ACTIONS(3339), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [529] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1872), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [958] = { + [sym__call_signature] = STATE(8295), + [sym_comment] = STATE(958), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_from] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3339), + [anon_sym_COLON] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_get] = ACTIONS(3339), + [anon_sym_set] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_module] = ACTIONS(3339), + [anon_sym_any] = ACTIONS(3339), + [anon_sym_number] = ACTIONS(3339), + [anon_sym_boolean] = ACTIONS(3339), + [anon_sym_string] = ACTIONS(3339), + [anon_sym_symbol] = ACTIONS(3339), + [anon_sym_object] = ACTIONS(3339), + [anon_sym_property] = ACTIONS(3339), + [anon_sym_signal] = ACTIONS(3339), + [anon_sym_on] = ACTIONS(3339), + [anon_sym_required] = ACTIONS(3339), + [anon_sym_component] = ACTIONS(3339), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [530] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2238), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [959] = { + [sym_catch_clause] = STATE(996), + [sym_finally_clause] = STATE(1186), + [sym_comment] = STATE(959), + [sym_identifier] = ACTIONS(3341), + [anon_sym_export] = ACTIONS(3341), + [anon_sym_default] = ACTIONS(3341), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_namespace] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_typeof] = ACTIONS(3341), + [anon_sym_import] = ACTIONS(3341), + [anon_sym_from] = ACTIONS(3341), + [anon_sym_with] = ACTIONS(3341), + [anon_sym_var] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3341), + [anon_sym_const] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_else] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_switch] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_await] = ACTIONS(3341), + [anon_sym_of] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3341), + [anon_sym_do] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3341), + [anon_sym_break] = ACTIONS(3341), + [anon_sym_continue] = ACTIONS(3341), + [anon_sym_debugger] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3341), + [anon_sym_throw] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_case] = ACTIONS(3341), + [anon_sym_catch] = ACTIONS(3343), + [anon_sym_finally] = ACTIONS(3345), + [anon_sym_yield] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LTtemplate_GT] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [anon_sym_SQUOTE] = ACTIONS(3341), + [anon_sym_class] = ACTIONS(3341), + [anon_sym_async] = ACTIONS(3341), + [anon_sym_function] = ACTIONS(3341), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_using] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_void] = ACTIONS(3341), + [anon_sym_delete] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3341), + [sym_number] = ACTIONS(3341), + [sym_private_property_identifier] = ACTIONS(3341), + [sym_this] = ACTIONS(3341), + [sym_super] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_null] = ACTIONS(3341), + [sym_undefined] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_static] = ACTIONS(3341), + [anon_sym_readonly] = ACTIONS(3341), + [anon_sym_get] = ACTIONS(3341), + [anon_sym_set] = ACTIONS(3341), + [anon_sym_declare] = ACTIONS(3341), + [anon_sym_public] = ACTIONS(3341), + [anon_sym_private] = ACTIONS(3341), + [anon_sym_protected] = ACTIONS(3341), + [anon_sym_override] = ACTIONS(3341), + [anon_sym_module] = ACTIONS(3341), + [anon_sym_any] = ACTIONS(3341), + [anon_sym_number] = ACTIONS(3341), + [anon_sym_boolean] = ACTIONS(3341), + [anon_sym_string] = ACTIONS(3341), + [anon_sym_symbol] = ACTIONS(3341), + [anon_sym_object] = ACTIONS(3341), + [anon_sym_property] = ACTIONS(3341), + [anon_sym_signal] = ACTIONS(3341), + [anon_sym_on] = ACTIONS(3341), + [anon_sym_required] = ACTIONS(3341), + [anon_sym_component] = ACTIONS(3341), + [anon_sym_abstract] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), + [sym_html_comment] = ACTIONS(5), + }, + [960] = { + [sym__call_signature] = STATE(8517), + [sym_comment] = STATE(960), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3286), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [961] = { + [sym__call_signature] = STATE(8517), + [sym_comment] = STATE(961), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3284), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [531] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1935), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [962] = { + [sym__call_signature] = STATE(8517), + [sym_comment] = STATE(962), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [532] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2245), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [963] = { + [sym__call_signature] = STATE(8517), + [sym_comment] = STATE(963), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [533] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2316), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [964] = { + [sym__call_signature] = STATE(8517), + [sym_comment] = STATE(964), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3280), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [534] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2309), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [965] = { + [sym__call_signature] = STATE(8517), + [sym_comment] = STATE(965), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3276), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [535] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2321), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(1988), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [966] = { + [sym__call_signature] = STATE(8295), + [sym_comment] = STATE(966), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_from] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3339), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_get] = ACTIONS(3339), + [anon_sym_set] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_module] = ACTIONS(3339), + [anon_sym_any] = ACTIONS(3339), + [anon_sym_number] = ACTIONS(3339), + [anon_sym_boolean] = ACTIONS(3339), + [anon_sym_string] = ACTIONS(3339), + [anon_sym_symbol] = ACTIONS(3339), + [anon_sym_object] = ACTIONS(3339), + [anon_sym_property] = ACTIONS(3339), + [anon_sym_signal] = ACTIONS(3339), + [anon_sym_on] = ACTIONS(3339), + [anon_sym_required] = ACTIONS(3339), + [anon_sym_component] = ACTIONS(3339), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [536] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1773), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [967] = { + [sym__call_signature] = STATE(8517), + [sym_comment] = STATE(967), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [537] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2298), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [968] = { + [sym__call_signature] = STATE(8517), + [sym_comment] = STATE(968), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [538] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1870), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [969] = { + [sym__call_signature] = STATE(8517), + [sym_comment] = STATE(969), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3282), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [539] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1869), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [970] = { + [sym__call_signature] = STATE(8295), + [sym_comment] = STATE(970), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_EQ] = ACTIONS(1418), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_from] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_get] = ACTIONS(3339), + [anon_sym_set] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_module] = ACTIONS(3339), + [anon_sym_any] = ACTIONS(3339), + [anon_sym_number] = ACTIONS(3339), + [anon_sym_boolean] = ACTIONS(3339), + [anon_sym_string] = ACTIONS(3339), + [anon_sym_symbol] = ACTIONS(3339), + [anon_sym_object] = ACTIONS(3339), + [anon_sym_property] = ACTIONS(3339), + [anon_sym_signal] = ACTIONS(3339), + [anon_sym_on] = ACTIONS(3339), + [anon_sym_required] = ACTIONS(3339), + [anon_sym_component] = ACTIONS(3339), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [540] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(2017), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [971] = { + [sym__call_signature] = STATE(8517), + [sym_comment] = STATE(971), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_EQ_GT] = ACTIONS(1485), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [541] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1276), - [sym_expression] = STATE(1831), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4734), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4734), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4733), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1276), - [sym_subscript_expression] = STATE(1276), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2869), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4734), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1276), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(507), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1214), - [anon_sym_export] = ACTIONS(842), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(706), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(680), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(682), - [anon_sym_of] = ACTIONS(842), - [anon_sym_yield] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(850), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_TILDE] = ACTIONS(680), - [anon_sym_void] = ACTIONS(706), - [anon_sym_delete] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(708), - [anon_sym_DASH_DASH] = ACTIONS(708), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1232), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(842), - [anon_sym_readonly] = ACTIONS(842), - [anon_sym_get] = ACTIONS(842), - [anon_sym_set] = ACTIONS(842), - [anon_sym_declare] = ACTIONS(842), - [anon_sym_public] = ACTIONS(842), - [anon_sym_private] = ACTIONS(842), - [anon_sym_protected] = ACTIONS(842), - [anon_sym_override] = ACTIONS(842), - [anon_sym_module] = ACTIONS(842), - [anon_sym_any] = ACTIONS(842), - [anon_sym_number] = ACTIONS(842), - [anon_sym_boolean] = ACTIONS(842), - [anon_sym_string] = ACTIONS(842), - [anon_sym_symbol] = ACTIONS(842), - [anon_sym_property] = ACTIONS(842), - [anon_sym_signal] = ACTIONS(842), - [anon_sym_on] = ACTIONS(842), - [anon_sym_required] = ACTIONS(842), - [anon_sym_component] = ACTIONS(842), + [972] = { + [sym_catch_clause] = STATE(1025), + [sym_finally_clause] = STATE(1388), + [sym_comment] = STATE(972), + [sym_identifier] = ACTIONS(3341), + [anon_sym_export] = ACTIONS(3341), + [anon_sym_default] = ACTIONS(3341), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_namespace] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_typeof] = ACTIONS(3341), + [anon_sym_import] = ACTIONS(3341), + [anon_sym_from] = ACTIONS(3341), + [anon_sym_with] = ACTIONS(3341), + [anon_sym_var] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3341), + [anon_sym_const] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_switch] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_await] = ACTIONS(3341), + [anon_sym_of] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3341), + [anon_sym_do] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3341), + [anon_sym_break] = ACTIONS(3341), + [anon_sym_continue] = ACTIONS(3341), + [anon_sym_debugger] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3341), + [anon_sym_throw] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_case] = ACTIONS(3341), + [anon_sym_catch] = ACTIONS(3353), + [anon_sym_finally] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LTtemplate_GT] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [anon_sym_SQUOTE] = ACTIONS(3341), + [anon_sym_class] = ACTIONS(3341), + [anon_sym_async] = ACTIONS(3341), + [anon_sym_function] = ACTIONS(3341), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_using] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_void] = ACTIONS(3341), + [anon_sym_delete] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3341), + [sym_number] = ACTIONS(3341), + [sym_private_property_identifier] = ACTIONS(3341), + [sym_this] = ACTIONS(3341), + [sym_super] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_null] = ACTIONS(3341), + [sym_undefined] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_static] = ACTIONS(3341), + [anon_sym_readonly] = ACTIONS(3341), + [anon_sym_get] = ACTIONS(3341), + [anon_sym_set] = ACTIONS(3341), + [anon_sym_declare] = ACTIONS(3341), + [anon_sym_public] = ACTIONS(3341), + [anon_sym_private] = ACTIONS(3341), + [anon_sym_protected] = ACTIONS(3341), + [anon_sym_override] = ACTIONS(3341), + [anon_sym_module] = ACTIONS(3341), + [anon_sym_any] = ACTIONS(3341), + [anon_sym_number] = ACTIONS(3341), + [anon_sym_boolean] = ACTIONS(3341), + [anon_sym_string] = ACTIONS(3341), + [anon_sym_symbol] = ACTIONS(3341), + [anon_sym_object] = ACTIONS(3341), + [anon_sym_property] = ACTIONS(3341), + [anon_sym_signal] = ACTIONS(3341), + [anon_sym_on] = ACTIONS(3341), + [anon_sym_required] = ACTIONS(3341), + [anon_sym_component] = ACTIONS(3341), + [anon_sym_abstract] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), + [sym_html_comment] = ACTIONS(5), }, - [542] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2260), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [973] = { + [sym_declaration] = STATE(4242), + [sym_variable_declaration] = STATE(4253), + [sym_lexical_declaration] = STATE(4253), + [sym_class_declaration] = STATE(4253), + [sym_function_declaration] = STATE(4253), + [sym_generator_function_declaration] = STATE(4253), + [sym_comment] = STATE(973), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(4253), + [sym_ambient_declaration] = STATE(4253), + [sym_abstract_class_declaration] = STATE(4253), + [sym_module] = STATE(4253), + [sym_internal_module] = STATE(4227), + [sym_import_alias] = STATE(4253), + [sym_interface_declaration] = STATE(4253), + [sym_enum_declaration] = STATE(4253), + [sym_type_alias_declaration] = STATE(4253), + [aux_sym_export_statement_repeat1] = STATE(5857), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_import] = ACTIONS(3105), + [anon_sym_var] = ACTIONS(3107), + [anon_sym_let] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3115), + [anon_sym_async] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3119), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3121), + [anon_sym_module] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3127), + [anon_sym_enum] = ACTIONS(3129), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [543] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2099), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [974] = { + [sym__call_signature] = STATE(8186), + [sym_comment] = STATE(974), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_from] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3361), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(1503), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3361), + [anon_sym_readonly] = ACTIONS(3361), + [anon_sym_get] = ACTIONS(3361), + [anon_sym_set] = ACTIONS(3361), + [anon_sym_declare] = ACTIONS(3361), + [anon_sym_public] = ACTIONS(3361), + [anon_sym_private] = ACTIONS(3361), + [anon_sym_protected] = ACTIONS(3361), + [anon_sym_override] = ACTIONS(3361), + [anon_sym_module] = ACTIONS(3361), + [anon_sym_any] = ACTIONS(3361), + [anon_sym_number] = ACTIONS(3361), + [anon_sym_boolean] = ACTIONS(3361), + [anon_sym_string] = ACTIONS(3361), + [anon_sym_symbol] = ACTIONS(3361), + [anon_sym_object] = ACTIONS(3361), + [anon_sym_property] = ACTIONS(3361), + [anon_sym_signal] = ACTIONS(3361), + [anon_sym_on] = ACTIONS(3361), + [anon_sym_required] = ACTIONS(3361), + [anon_sym_component] = ACTIONS(3361), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [544] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2104), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [975] = { + [sym_declaration] = STATE(1094), + [sym_variable_declaration] = STATE(1105), + [sym_lexical_declaration] = STATE(1105), + [sym_class_declaration] = STATE(1105), + [sym_function_declaration] = STATE(1105), + [sym_generator_function_declaration] = STATE(1105), + [sym_comment] = STATE(975), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1105), + [sym_ambient_declaration] = STATE(1105), + [sym_abstract_class_declaration] = STATE(1105), + [sym_module] = STATE(1105), + [sym_internal_module] = STATE(1095), + [sym_import_alias] = STATE(1105), + [sym_interface_declaration] = STATE(1105), + [sym_enum_declaration] = STATE(1105), + [sym_type_alias_declaration] = STATE(1105), + [aux_sym_export_statement_repeat1] = STATE(5758), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3329), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3245), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3251), + [anon_sym_module] = ACTIONS(3331), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3259), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [545] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1346), - [sym_expression] = STATE(2292), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4649), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4649), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4756), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1346), - [sym_subscript_expression] = STATE(1346), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2881), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4649), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1346), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(432), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(916), - [anon_sym_type] = ACTIONS(916), - [anon_sym_namespace] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(916), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(926), - [anon_sym_of] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(928), - [anon_sym_LBRACK] = ACTIONS(1278), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(932), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1280), - [anon_sym_PLUS] = ACTIONS(940), - [anon_sym_DASH] = ACTIONS(940), - [anon_sym_TILDE] = ACTIONS(924), - [anon_sym_void] = ACTIONS(940), - [anon_sym_delete] = ACTIONS(940), - [anon_sym_PLUS_PLUS] = ACTIONS(942), - [anon_sym_DASH_DASH] = ACTIONS(942), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1282), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(916), - [anon_sym_readonly] = ACTIONS(916), - [anon_sym_get] = ACTIONS(916), - [anon_sym_set] = ACTIONS(916), - [anon_sym_declare] = ACTIONS(916), - [anon_sym_public] = ACTIONS(916), - [anon_sym_private] = ACTIONS(916), - [anon_sym_protected] = ACTIONS(916), - [anon_sym_override] = ACTIONS(916), - [anon_sym_module] = ACTIONS(916), - [anon_sym_any] = ACTIONS(916), - [anon_sym_number] = ACTIONS(916), - [anon_sym_boolean] = ACTIONS(916), - [anon_sym_string] = ACTIONS(916), - [anon_sym_symbol] = ACTIONS(916), - [anon_sym_property] = ACTIONS(916), - [anon_sym_signal] = ACTIONS(916), - [anon_sym_on] = ACTIONS(916), - [anon_sym_required] = ACTIONS(916), - [anon_sym_component] = ACTIONS(916), + [976] = { + [sym__call_signature] = STATE(8186), + [sym_comment] = STATE(976), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_from] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3361), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(1503), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3361), + [anon_sym_readonly] = ACTIONS(3361), + [anon_sym_get] = ACTIONS(3361), + [anon_sym_set] = ACTIONS(3361), + [anon_sym_declare] = ACTIONS(3361), + [anon_sym_public] = ACTIONS(3361), + [anon_sym_private] = ACTIONS(3361), + [anon_sym_protected] = ACTIONS(3361), + [anon_sym_override] = ACTIONS(3361), + [anon_sym_module] = ACTIONS(3361), + [anon_sym_any] = ACTIONS(3361), + [anon_sym_number] = ACTIONS(3361), + [anon_sym_boolean] = ACTIONS(3361), + [anon_sym_string] = ACTIONS(3361), + [anon_sym_symbol] = ACTIONS(3361), + [anon_sym_object] = ACTIONS(3361), + [anon_sym_property] = ACTIONS(3361), + [anon_sym_signal] = ACTIONS(3361), + [anon_sym_on] = ACTIONS(3361), + [anon_sym_required] = ACTIONS(3361), + [anon_sym_component] = ACTIONS(3361), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [546] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2154), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [977] = { + [sym__call_signature] = STATE(8295), + [sym_comment] = STATE(977), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_from] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_get] = ACTIONS(3339), + [anon_sym_set] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_module] = ACTIONS(3339), + [anon_sym_any] = ACTIONS(3339), + [anon_sym_number] = ACTIONS(3339), + [anon_sym_boolean] = ACTIONS(3339), + [anon_sym_string] = ACTIONS(3339), + [anon_sym_symbol] = ACTIONS(3339), + [anon_sym_object] = ACTIONS(3339), + [anon_sym_property] = ACTIONS(3339), + [anon_sym_signal] = ACTIONS(3339), + [anon_sym_on] = ACTIONS(3339), + [anon_sym_required] = ACTIONS(3339), + [anon_sym_component] = ACTIONS(3339), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [547] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1868), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [978] = { + [sym_declaration] = STATE(1299), + [sym_variable_declaration] = STATE(1314), + [sym_lexical_declaration] = STATE(1314), + [sym_class_declaration] = STATE(1314), + [sym_function_declaration] = STATE(1314), + [sym_generator_function_declaration] = STATE(1314), + [sym_comment] = STATE(978), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1314), + [sym_ambient_declaration] = STATE(1314), + [sym_abstract_class_declaration] = STATE(1314), + [sym_module] = STATE(1314), + [sym_internal_module] = STATE(1306), + [sym_import_alias] = STATE(1314), + [sym_interface_declaration] = STATE(1314), + [sym_enum_declaration] = STATE(1314), + [sym_type_alias_declaration] = STATE(1314), + [aux_sym_export_statement_repeat1] = STATE(5766), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3195), + [anon_sym_import] = ACTIONS(3197), + [anon_sym_var] = ACTIONS(3199), + [anon_sym_let] = ACTIONS(3201), + [anon_sym_const] = ACTIONS(3203), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_async] = ACTIONS(3209), + [anon_sym_function] = ACTIONS(3211), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3213), + [anon_sym_module] = ACTIONS(3321), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3221), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [548] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1814), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [979] = { + [sym_declaration] = STATE(1539), + [sym_variable_declaration] = STATE(1503), + [sym_lexical_declaration] = STATE(1503), + [sym_class_declaration] = STATE(1503), + [sym_function_declaration] = STATE(1503), + [sym_generator_function_declaration] = STATE(1503), + [sym_comment] = STATE(979), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1503), + [sym_ambient_declaration] = STATE(1503), + [sym_abstract_class_declaration] = STATE(1503), + [sym_module] = STATE(1503), + [sym_internal_module] = STATE(1493), + [sym_import_alias] = STATE(1503), + [sym_interface_declaration] = STATE(1503), + [sym_enum_declaration] = STATE(1503), + [sym_type_alias_declaration] = STATE(1503), + [aux_sym_export_statement_repeat1] = STATE(5782), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3153), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_var] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3175), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3179), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [549] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2170), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [980] = { + [sym_declaration] = STATE(6196), + [sym_variable_declaration] = STATE(6178), + [sym_lexical_declaration] = STATE(6178), + [sym_class_declaration] = STATE(6178), + [sym_function_declaration] = STATE(6178), + [sym_generator_function_declaration] = STATE(6178), + [sym_comment] = STATE(980), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(6178), + [sym_ambient_declaration] = STATE(6178), + [sym_abstract_class_declaration] = STATE(6178), + [sym_module] = STATE(6178), + [sym_internal_module] = STATE(6052), + [sym_import_alias] = STATE(6178), + [sym_interface_declaration] = STATE(6178), + [sym_enum_declaration] = STATE(6178), + [sym_type_alias_declaration] = STATE(6178), + [aux_sym_export_statement_repeat1] = STATE(5811), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3365), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3369), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3377), + [anon_sym_function] = ACTIONS(3379), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3381), + [anon_sym_module] = ACTIONS(3383), + [anon_sym_abstract] = ACTIONS(3385), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3387), + [anon_sym_interface] = ACTIONS(3389), + [anon_sym_enum] = ACTIONS(3391), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [550] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2186), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [981] = { + [sym_comment] = STATE(981), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3393), + [sym_html_comment] = ACTIONS(5), }, - [551] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2187), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [982] = { + [sym__call_signature] = STATE(8295), + [sym_comment] = STATE(982), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3337), + [anon_sym_export] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3339), + [anon_sym_from] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_readonly] = ACTIONS(3339), + [anon_sym_get] = ACTIONS(3339), + [anon_sym_set] = ACTIONS(3339), + [anon_sym_declare] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_protected] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_module] = ACTIONS(3339), + [anon_sym_any] = ACTIONS(3339), + [anon_sym_number] = ACTIONS(3339), + [anon_sym_boolean] = ACTIONS(3339), + [anon_sym_string] = ACTIONS(3339), + [anon_sym_symbol] = ACTIONS(3339), + [anon_sym_object] = ACTIONS(3339), + [anon_sym_property] = ACTIONS(3339), + [anon_sym_signal] = ACTIONS(3339), + [anon_sym_on] = ACTIONS(3339), + [anon_sym_required] = ACTIONS(3339), + [anon_sym_component] = ACTIONS(3339), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [552] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1914), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [983] = { + [sym_comment] = STATE(983), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_catch] = ACTIONS(2285), + [anon_sym_finally] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3395), + [sym_html_comment] = ACTIONS(5), }, - [553] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1867), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [984] = { + [sym_declaration] = STATE(4138), + [sym_variable_declaration] = STATE(4084), + [sym_lexical_declaration] = STATE(4084), + [sym_class_declaration] = STATE(4084), + [sym_function_declaration] = STATE(4084), + [sym_generator_function_declaration] = STATE(4084), + [sym_comment] = STATE(984), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(4084), + [sym_ambient_declaration] = STATE(4084), + [sym_abstract_class_declaration] = STATE(4084), + [sym_module] = STATE(4084), + [sym_internal_module] = STATE(4132), + [sym_import_alias] = STATE(4084), + [sym_interface_declaration] = STATE(4084), + [sym_enum_declaration] = STATE(4084), + [sym_type_alias_declaration] = STATE(4084), + [aux_sym_export_statement_repeat1] = STATE(5836), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3313), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3065), + [anon_sym_import] = ACTIONS(3067), + [anon_sym_var] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3071), + [anon_sym_const] = ACTIONS(3073), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3077), + [anon_sym_async] = ACTIONS(3079), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3083), + [anon_sym_module] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3087), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3089), + [anon_sym_enum] = ACTIONS(3091), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [554] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1921), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [985] = { + [sym_declaration] = STATE(7423), + [sym_variable_declaration] = STATE(7395), + [sym_lexical_declaration] = STATE(7395), + [sym_class_declaration] = STATE(7395), + [sym_function_declaration] = STATE(7395), + [sym_generator_function_declaration] = STATE(7395), + [sym_comment] = STATE(985), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(7395), + [sym_ambient_declaration] = STATE(7395), + [sym_abstract_class_declaration] = STATE(7395), + [sym_module] = STATE(7395), + [sym_internal_module] = STATE(7415), + [sym_import_alias] = STATE(7395), + [sym_interface_declaration] = STATE(7395), + [sym_enum_declaration] = STATE(7395), + [sym_type_alias_declaration] = STATE(7395), + [aux_sym_export_statement_repeat1] = STATE(5910), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_import] = ACTIONS(3029), + [anon_sym_var] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3033), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3039), + [anon_sym_async] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3043), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3045), + [anon_sym_module] = ACTIONS(3309), + [anon_sym_abstract] = ACTIONS(3049), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3053), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [555] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2188), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [986] = { + [sym_declaration] = STATE(1810), + [sym_variable_declaration] = STATE(1713), + [sym_lexical_declaration] = STATE(1713), + [sym_class_declaration] = STATE(1713), + [sym_function_declaration] = STATE(1713), + [sym_generator_function_declaration] = STATE(1713), + [sym_comment] = STATE(986), + [sym_decorator] = STATE(6520), + [sym_function_signature] = STATE(1713), + [sym_ambient_declaration] = STATE(1713), + [sym_abstract_class_declaration] = STATE(1713), + [sym_module] = STATE(1713), + [sym_internal_module] = STATE(1811), + [sym_import_alias] = STATE(1713), + [sym_interface_declaration] = STATE(1713), + [sym_enum_declaration] = STATE(1713), + [sym_type_alias_declaration] = STATE(1713), + [aux_sym_export_statement_repeat1] = STATE(6124), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3007), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2999), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [556] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1335), - [sym_expression] = STATE(1927), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4840), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4840), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4838), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1335), - [sym_subscript_expression] = STATE(1335), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2859), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4840), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1335), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(399), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1256), - [anon_sym_export] = ACTIONS(998), - [anon_sym_type] = ACTIONS(998), - [anon_sym_namespace] = ACTIONS(1000), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(1022), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_of] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_TILDE] = ACTIONS(1006), - [anon_sym_void] = ACTIONS(1022), - [anon_sym_delete] = ACTIONS(1022), - [anon_sym_PLUS_PLUS] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1262), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(998), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(998), - [anon_sym_set] = ACTIONS(998), - [anon_sym_declare] = ACTIONS(998), - [anon_sym_public] = ACTIONS(998), - [anon_sym_private] = ACTIONS(998), - [anon_sym_protected] = ACTIONS(998), - [anon_sym_override] = ACTIONS(998), - [anon_sym_module] = ACTIONS(998), - [anon_sym_any] = ACTIONS(998), - [anon_sym_number] = ACTIONS(998), - [anon_sym_boolean] = ACTIONS(998), - [anon_sym_string] = ACTIONS(998), - [anon_sym_symbol] = ACTIONS(998), - [anon_sym_property] = ACTIONS(998), - [anon_sym_signal] = ACTIONS(998), - [anon_sym_on] = ACTIONS(998), - [anon_sym_required] = ACTIONS(998), - [anon_sym_component] = ACTIONS(998), + [987] = { + [sym__call_signature] = STATE(8691), + [sym_comment] = STATE(987), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3131), + [anon_sym_export] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3133), + [anon_sym_any] = ACTIONS(3133), + [anon_sym_number] = ACTIONS(3133), + [anon_sym_boolean] = ACTIONS(3133), + [anon_sym_string] = ACTIONS(3133), + [anon_sym_symbol] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_signal] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_component] = ACTIONS(3133), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [557] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2361), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [988] = { + [sym_comment] = STATE(988), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3397), + [sym_html_comment] = ACTIONS(5), }, - [558] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2189), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [989] = { + [sym__call_signature] = STATE(8687), + [sym_comment] = STATE(989), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3399), + [anon_sym_export] = ACTIONS(3401), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_EQ] = ACTIONS(1523), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3401), + [anon_sym_from] = ACTIONS(3401), + [anon_sym_let] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(1529), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3401), + [anon_sym_readonly] = ACTIONS(3401), + [anon_sym_get] = ACTIONS(3401), + [anon_sym_set] = ACTIONS(3401), + [anon_sym_declare] = ACTIONS(3401), + [anon_sym_public] = ACTIONS(3401), + [anon_sym_private] = ACTIONS(3401), + [anon_sym_protected] = ACTIONS(3401), + [anon_sym_override] = ACTIONS(3401), + [anon_sym_module] = ACTIONS(3401), + [anon_sym_any] = ACTIONS(3401), + [anon_sym_number] = ACTIONS(3401), + [anon_sym_boolean] = ACTIONS(3401), + [anon_sym_string] = ACTIONS(3401), + [anon_sym_symbol] = ACTIONS(3401), + [anon_sym_object] = ACTIONS(3401), + [anon_sym_property] = ACTIONS(3401), + [anon_sym_signal] = ACTIONS(3401), + [anon_sym_on] = ACTIONS(3401), + [anon_sym_required] = ACTIONS(3401), + [anon_sym_component] = ACTIONS(3401), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [559] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2190), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [990] = { + [sym__call_signature] = STATE(8691), + [sym_comment] = STATE(990), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3131), + [anon_sym_export] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3133), + [anon_sym_any] = ACTIONS(3133), + [anon_sym_number] = ACTIONS(3133), + [anon_sym_boolean] = ACTIONS(3133), + [anon_sym_string] = ACTIONS(3133), + [anon_sym_symbol] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_signal] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_component] = ACTIONS(3133), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [560] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1168), - [sym_expression] = STATE(2359), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4738), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4738), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4740), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1168), - [sym_subscript_expression] = STATE(1168), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2872), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4738), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1168), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(557), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(1106), - [anon_sym_type] = ACTIONS(1106), - [anon_sym_namespace] = ACTIONS(1108), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(83), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_BANG] = ACTIONS(79), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(44), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_yield] = ACTIONS(46), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(651), - [anon_sym_PLUS] = ACTIONS(83), - [anon_sym_DASH] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(79), - [anon_sym_void] = ACTIONS(83), - [anon_sym_delete] = ACTIONS(83), - [anon_sym_PLUS_PLUS] = ACTIONS(782), - [anon_sym_DASH_DASH] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1298), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1106), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1106), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), + [991] = { + [sym_statement_block] = STATE(1176), + [sym_comment] = STATE(991), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym_html_comment] = ACTIONS(5), }, - [561] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1864), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [992] = { + [sym__call_signature] = STATE(8691), + [sym_comment] = STATE(992), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3131), + [anon_sym_export] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3133), + [anon_sym_any] = ACTIONS(3133), + [anon_sym_number] = ACTIONS(3133), + [anon_sym_boolean] = ACTIONS(3133), + [anon_sym_string] = ACTIONS(3133), + [anon_sym_symbol] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_signal] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_component] = ACTIONS(3133), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [562] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1292), - [sym_expression] = STATE(1793), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4742), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4742), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4744), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1292), - [sym_subscript_expression] = STATE(1292), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2845), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4742), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1292), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(461), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1234), - [anon_sym_export] = ACTIONS(1126), - [anon_sym_type] = ACTIONS(1126), - [anon_sym_namespace] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(145), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(1126), - [anon_sym_BANG] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(167), - [anon_sym_of] = ACTIONS(1126), - [anon_sym_yield] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(193), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(1132), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(145), - [anon_sym_DASH] = ACTIONS(145), - [anon_sym_TILDE] = ACTIONS(157), - [anon_sym_void] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_PLUS_PLUS] = ACTIONS(205), - [anon_sym_DASH_DASH] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(219), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1126), - [anon_sym_readonly] = ACTIONS(1126), - [anon_sym_get] = ACTIONS(1126), - [anon_sym_set] = ACTIONS(1126), - [anon_sym_declare] = ACTIONS(1126), - [anon_sym_public] = ACTIONS(1126), - [anon_sym_private] = ACTIONS(1126), - [anon_sym_protected] = ACTIONS(1126), - [anon_sym_override] = ACTIONS(1126), - [anon_sym_module] = ACTIONS(1126), - [anon_sym_any] = ACTIONS(1126), - [anon_sym_number] = ACTIONS(1126), - [anon_sym_boolean] = ACTIONS(1126), - [anon_sym_string] = ACTIONS(1126), - [anon_sym_symbol] = ACTIONS(1126), - [anon_sym_property] = ACTIONS(1126), - [anon_sym_signal] = ACTIONS(1126), - [anon_sym_on] = ACTIONS(1126), - [anon_sym_required] = ACTIONS(1126), - [anon_sym_component] = ACTIONS(1126), + [993] = { + [sym__call_signature] = STATE(8691), + [sym_comment] = STATE(993), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3131), + [anon_sym_export] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3133), + [anon_sym_any] = ACTIONS(3133), + [anon_sym_number] = ACTIONS(3133), + [anon_sym_boolean] = ACTIONS(3133), + [anon_sym_string] = ACTIONS(3133), + [anon_sym_symbol] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_signal] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_component] = ACTIONS(3133), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [563] = { - [sym_import] = STATE(2118), - [sym_parenthesized_expression] = STATE(1303), - [sym_expression] = STATE(1796), - [sym_primary_expression] = STATE(1965), - [sym_yield_expression] = STATE(2115), - [sym_object] = STATE(2118), - [sym_object_pattern] = STATE(4843), - [sym_array] = STATE(2118), - [sym_array_pattern] = STATE(4843), - [sym_glimmer_template] = STATE(2115), - [sym_glimmer_opening_tag] = STATE(3907), - [sym_class] = STATE(2118), - [sym_function] = STATE(2118), - [sym_generator_function] = STATE(2118), - [sym_arrow_function] = STATE(2118), - [sym__call_signature] = STATE(4842), - [sym_call_expression] = STATE(2118), - [sym_new_expression] = STATE(2115), - [sym_await_expression] = STATE(2115), - [sym_member_expression] = STATE(1303), - [sym_subscript_expression] = STATE(1303), - [sym_assignment_expression] = STATE(2115), - [sym__augmented_assignment_lhs] = STATE(2843), - [sym_augmented_assignment_expression] = STATE(2115), - [sym__destructuring_pattern] = STATE(4843), - [sym_ternary_expression] = STATE(2115), - [sym_binary_expression] = STATE(2115), - [sym_unary_expression] = STATE(2115), - [sym_update_expression] = STATE(2115), - [sym_string] = STATE(2118), - [sym_template_string] = STATE(2118), - [sym_regex] = STATE(2118), - [sym_meta_property] = STATE(2118), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1303), - [sym_type_assertion] = STATE(2115), - [sym_as_expression] = STATE(2115), - [sym_satisfies_expression] = STATE(2115), - [sym_internal_module] = STATE(2115), - [sym_type_arguments] = STATE(511), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3890), - [sym_identifier] = ACTIONS(1240), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_typeof] = ACTIONS(896), - [anon_sym_import] = ACTIONS(870), - [anon_sym_from] = ACTIONS(862), - [anon_sym_BANG] = ACTIONS(872), - [anon_sym_LPAREN] = ACTIONS(165), - [anon_sym_await] = ACTIONS(876), - [anon_sym_of] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(882), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(896), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_TILDE] = ACTIONS(872), - [anon_sym_void] = ACTIONS(896), - [anon_sym_delete] = ACTIONS(896), - [anon_sym_PLUS_PLUS] = ACTIONS(898), - [anon_sym_DASH_DASH] = ACTIONS(898), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(211), - [sym_number] = ACTIONS(345), - [sym_this] = ACTIONS(217), - [sym_super] = ACTIONS(217), - [sym_true] = ACTIONS(217), - [sym_false] = ACTIONS(217), - [sym_null] = ACTIONS(217), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_override] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_property] = ACTIONS(862), - [anon_sym_signal] = ACTIONS(862), - [anon_sym_on] = ACTIONS(862), - [anon_sym_required] = ACTIONS(862), - [anon_sym_component] = ACTIONS(862), + [994] = { + [sym_statement_block] = STATE(1176), + [sym_comment] = STATE(994), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym_html_comment] = ACTIONS(5), }, - [564] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2243), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [995] = { + [sym__call_signature] = STATE(8687), + [sym_comment] = STATE(995), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3399), + [anon_sym_export] = ACTIONS(3401), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3401), + [anon_sym_from] = ACTIONS(3401), + [anon_sym_let] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(1529), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3401), + [anon_sym_readonly] = ACTIONS(3401), + [anon_sym_get] = ACTIONS(3401), + [anon_sym_set] = ACTIONS(3401), + [anon_sym_declare] = ACTIONS(3401), + [anon_sym_public] = ACTIONS(3401), + [anon_sym_private] = ACTIONS(3401), + [anon_sym_protected] = ACTIONS(3401), + [anon_sym_override] = ACTIONS(3401), + [anon_sym_module] = ACTIONS(3401), + [anon_sym_any] = ACTIONS(3401), + [anon_sym_number] = ACTIONS(3401), + [anon_sym_boolean] = ACTIONS(3401), + [anon_sym_string] = ACTIONS(3401), + [anon_sym_symbol] = ACTIONS(3401), + [anon_sym_object] = ACTIONS(3401), + [anon_sym_property] = ACTIONS(3401), + [anon_sym_signal] = ACTIONS(3401), + [anon_sym_on] = ACTIONS(3401), + [anon_sym_required] = ACTIONS(3401), + [anon_sym_component] = ACTIONS(3401), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [565] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2285), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [996] = { + [sym_finally_clause] = STATE(1221), + [sym_comment] = STATE(996), + [sym_identifier] = ACTIONS(3412), + [anon_sym_export] = ACTIONS(3412), + [anon_sym_default] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_namespace] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3412), + [anon_sym_import] = ACTIONS(3412), + [anon_sym_from] = ACTIONS(3412), + [anon_sym_with] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_switch] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3412), + [anon_sym_of] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_debugger] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_throw] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_case] = ACTIONS(3412), + [anon_sym_finally] = ACTIONS(3345), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LTtemplate_GT] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_class] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_function] = ACTIONS(3412), + [anon_sym_new] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_private_property_identifier] = ACTIONS(3412), + [sym_this] = ACTIONS(3412), + [sym_super] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_null] = ACTIONS(3412), + [sym_undefined] = ACTIONS(3412), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_readonly] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3412), + [anon_sym_set] = ACTIONS(3412), + [anon_sym_declare] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_protected] = ACTIONS(3412), + [anon_sym_override] = ACTIONS(3412), + [anon_sym_module] = ACTIONS(3412), + [anon_sym_any] = ACTIONS(3412), + [anon_sym_number] = ACTIONS(3412), + [anon_sym_boolean] = ACTIONS(3412), + [anon_sym_string] = ACTIONS(3412), + [anon_sym_symbol] = ACTIONS(3412), + [anon_sym_object] = ACTIONS(3412), + [anon_sym_property] = ACTIONS(3412), + [anon_sym_signal] = ACTIONS(3412), + [anon_sym_on] = ACTIONS(3412), + [anon_sym_required] = ACTIONS(3412), + [anon_sym_component] = ACTIONS(3412), + [anon_sym_abstract] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), + [sym_html_comment] = ACTIONS(5), }, - [566] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1863), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [997] = { + [sym__call_signature] = STATE(8691), + [sym_comment] = STATE(997), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3131), + [anon_sym_export] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(1511), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3133), + [anon_sym_any] = ACTIONS(3133), + [anon_sym_number] = ACTIONS(3133), + [anon_sym_boolean] = ACTIONS(3133), + [anon_sym_string] = ACTIONS(3133), + [anon_sym_symbol] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_signal] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_component] = ACTIONS(3133), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [567] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1859), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [998] = { + [sym__call_signature] = STATE(8691), + [sym_comment] = STATE(998), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3131), + [anon_sym_export] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(1535), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3133), + [anon_sym_any] = ACTIONS(3133), + [anon_sym_number] = ACTIONS(3133), + [anon_sym_boolean] = ACTIONS(3133), + [anon_sym_string] = ACTIONS(3133), + [anon_sym_symbol] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_signal] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_component] = ACTIONS(3133), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [568] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1856), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [999] = { + [sym__call_signature] = STATE(8691), + [sym_comment] = STATE(999), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3131), + [anon_sym_export] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(1434), + [anon_sym_of] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3133), + [anon_sym_any] = ACTIONS(3133), + [anon_sym_number] = ACTIONS(3133), + [anon_sym_boolean] = ACTIONS(3133), + [anon_sym_string] = ACTIONS(3133), + [anon_sym_symbol] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_signal] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_component] = ACTIONS(3133), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [569] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2191), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [1000] = { + [sym_comment] = STATE(1000), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3416), + [sym_html_comment] = ACTIONS(5), }, - [570] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2279), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [1001] = { + [sym_comment] = STATE(1001), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_catch] = ACTIONS(2285), + [anon_sym_finally] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3418), + [sym_html_comment] = ACTIONS(5), }, - [571] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1847), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [1002] = { + [sym_comment] = STATE(1002), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_finally] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3420), + [sym_html_comment] = ACTIONS(5), }, - [572] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2197), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [1003] = { + [sym__call_signature] = STATE(8691), + [sym_comment] = STATE(1003), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3131), + [anon_sym_export] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(1591), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3133), + [anon_sym_any] = ACTIONS(3133), + [anon_sym_number] = ACTIONS(3133), + [anon_sym_boolean] = ACTIONS(3133), + [anon_sym_string] = ACTIONS(3133), + [anon_sym_symbol] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_signal] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_component] = ACTIONS(3133), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [573] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2198), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [1004] = { + [sym_comment] = STATE(1004), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_case] = ACTIONS(2356), + [anon_sym_catch] = ACTIONS(2356), + [anon_sym_finally] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym_html_comment] = ACTIONS(5), }, - [574] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1830), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [1005] = { + [sym_comment] = STATE(1005), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), }, - [575] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1828), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [1006] = { + [sym_catch_clause] = STATE(1145), + [sym_finally_clause] = STATE(1609), + [sym_comment] = STATE(1006), + [sym_identifier] = ACTIONS(3341), + [anon_sym_export] = ACTIONS(3341), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_namespace] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_typeof] = ACTIONS(3341), + [anon_sym_import] = ACTIONS(3341), + [anon_sym_from] = ACTIONS(3341), + [anon_sym_with] = ACTIONS(3341), + [anon_sym_var] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3341), + [anon_sym_const] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_else] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_switch] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_await] = ACTIONS(3341), + [anon_sym_of] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3341), + [anon_sym_do] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3341), + [anon_sym_break] = ACTIONS(3341), + [anon_sym_continue] = ACTIONS(3341), + [anon_sym_debugger] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3341), + [anon_sym_throw] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_catch] = ACTIONS(3422), + [anon_sym_finally] = ACTIONS(3424), + [anon_sym_yield] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LTtemplate_GT] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [anon_sym_SQUOTE] = ACTIONS(3341), + [anon_sym_class] = ACTIONS(3341), + [anon_sym_async] = ACTIONS(3341), + [anon_sym_function] = ACTIONS(3341), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_using] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_void] = ACTIONS(3341), + [anon_sym_delete] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3341), + [sym_number] = ACTIONS(3341), + [sym_private_property_identifier] = ACTIONS(3341), + [sym_this] = ACTIONS(3341), + [sym_super] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_null] = ACTIONS(3341), + [sym_undefined] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_static] = ACTIONS(3341), + [anon_sym_readonly] = ACTIONS(3341), + [anon_sym_get] = ACTIONS(3341), + [anon_sym_set] = ACTIONS(3341), + [anon_sym_declare] = ACTIONS(3341), + [anon_sym_public] = ACTIONS(3341), + [anon_sym_private] = ACTIONS(3341), + [anon_sym_protected] = ACTIONS(3341), + [anon_sym_override] = ACTIONS(3341), + [anon_sym_module] = ACTIONS(3341), + [anon_sym_any] = ACTIONS(3341), + [anon_sym_number] = ACTIONS(3341), + [anon_sym_boolean] = ACTIONS(3341), + [anon_sym_string] = ACTIONS(3341), + [anon_sym_symbol] = ACTIONS(3341), + [anon_sym_object] = ACTIONS(3341), + [anon_sym_property] = ACTIONS(3341), + [anon_sym_signal] = ACTIONS(3341), + [anon_sym_on] = ACTIONS(3341), + [anon_sym_required] = ACTIONS(3341), + [anon_sym_component] = ACTIONS(3341), + [anon_sym_abstract] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), + [sym_html_comment] = ACTIONS(5), }, - [576] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2199), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [1007] = { + [sym__call_signature] = STATE(8691), + [sym_comment] = STATE(1007), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3131), + [anon_sym_export] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3133), + [anon_sym_any] = ACTIONS(3133), + [anon_sym_number] = ACTIONS(3133), + [anon_sym_boolean] = ACTIONS(3133), + [anon_sym_string] = ACTIONS(3133), + [anon_sym_symbol] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_signal] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_component] = ACTIONS(3133), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [577] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2200), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [1008] = { + [sym__call_signature] = STATE(8691), + [sym_comment] = STATE(1008), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3131), + [anon_sym_export] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(1539), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3133), + [anon_sym_any] = ACTIONS(3133), + [anon_sym_number] = ACTIONS(3133), + [anon_sym_boolean] = ACTIONS(3133), + [anon_sym_string] = ACTIONS(3133), + [anon_sym_symbol] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_signal] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_component] = ACTIONS(3133), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [578] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2201), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [1009] = { + [sym__call_signature] = STATE(8691), + [sym_comment] = STATE(1009), + [sym_formal_parameters] = STATE(5707), + [sym_type_parameters] = STATE(8012), + [sym_identifier] = ACTIONS(3131), + [anon_sym_export] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_EQ] = ACTIONS(1537), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3133), + [anon_sym_from] = ACTIONS(3133), + [anon_sym_let] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_readonly] = ACTIONS(3133), + [anon_sym_get] = ACTIONS(3133), + [anon_sym_set] = ACTIONS(3133), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_protected] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3133), + [anon_sym_any] = ACTIONS(3133), + [anon_sym_number] = ACTIONS(3133), + [anon_sym_boolean] = ACTIONS(3133), + [anon_sym_string] = ACTIONS(3133), + [anon_sym_symbol] = ACTIONS(3133), + [anon_sym_object] = ACTIONS(3133), + [anon_sym_property] = ACTIONS(3133), + [anon_sym_signal] = ACTIONS(3133), + [anon_sym_on] = ACTIONS(3133), + [anon_sym_required] = ACTIONS(3133), + [anon_sym_component] = ACTIONS(3133), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), }, - [579] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [1010] = { + [sym_comment] = STATE(1010), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_case] = ACTIONS(2356), + [anon_sym_finally] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym_html_comment] = ACTIONS(5), }, - [580] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1836), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [1011] = { + [sym_comment] = STATE(1011), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_typeof] = ACTIONS(2440), + [anon_sym_import] = ACTIONS(2440), + [anon_sym_from] = ACTIONS(2440), + [anon_sym_with] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_else] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_await] = ACTIONS(2440), + [anon_sym_of] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_debugger] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_yield] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_LTtemplate_GT] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_SQUOTE] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_TILDE] = ACTIONS(2440), + [anon_sym_void] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2440), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2440), + [sym_number] = ACTIONS(2440), + [sym_private_property_identifier] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [sym_super] = ACTIONS(2440), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [sym_null] = ACTIONS(2440), + [sym_undefined] = ACTIONS(2440), + [anon_sym_AT] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), + [anon_sym_property] = ACTIONS(2440), + [anon_sym_signal] = ACTIONS(2440), + [anon_sym_on] = ACTIONS(2440), + [anon_sym_required] = ACTIONS(2440), + [anon_sym_component] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_interface] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [sym__automatic_semicolon] = ACTIONS(2444), + [sym_html_comment] = ACTIONS(5), }, - [581] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1323), - [sym_expression] = STATE(1838), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4944), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4944), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4942), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2851), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4944), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1323), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(574), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_type] = ACTIONS(1182), - [anon_sym_namespace] = ACTIONS(1184), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1204), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1182), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1190), - [anon_sym_of] = ACTIONS(1182), - [anon_sym_yield] = ACTIONS(1192), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1194), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1196), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_TILDE] = ACTIONS(1188), - [anon_sym_void] = ACTIONS(1204), - [anon_sym_delete] = ACTIONS(1204), - [anon_sym_PLUS_PLUS] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_get] = ACTIONS(1182), - [anon_sym_set] = ACTIONS(1182), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_public] = ACTIONS(1182), - [anon_sym_private] = ACTIONS(1182), - [anon_sym_protected] = ACTIONS(1182), - [anon_sym_override] = ACTIONS(1182), - [anon_sym_module] = ACTIONS(1182), - [anon_sym_any] = ACTIONS(1182), - [anon_sym_number] = ACTIONS(1182), - [anon_sym_boolean] = ACTIONS(1182), - [anon_sym_string] = ACTIONS(1182), - [anon_sym_symbol] = ACTIONS(1182), - [anon_sym_property] = ACTIONS(1182), - [anon_sym_signal] = ACTIONS(1182), - [anon_sym_on] = ACTIONS(1182), - [anon_sym_required] = ACTIONS(1182), - [anon_sym_component] = ACTIONS(1182), + [1012] = { + [sym_comment] = STATE(1012), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(2291), + [sym_html_comment] = ACTIONS(5), }, - [582] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2227), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [1013] = { + [sym_else_clause] = STATE(1399), + [sym_comment] = STATE(1013), + [sym_identifier] = ACTIONS(3426), + [anon_sym_export] = ACTIONS(3426), + [anon_sym_default] = ACTIONS(3426), + [anon_sym_type] = ACTIONS(3426), + [anon_sym_namespace] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_RBRACE] = ACTIONS(3426), + [anon_sym_typeof] = ACTIONS(3426), + [anon_sym_import] = ACTIONS(3426), + [anon_sym_from] = ACTIONS(3426), + [anon_sym_with] = ACTIONS(3426), + [anon_sym_var] = ACTIONS(3426), + [anon_sym_let] = ACTIONS(3426), + [anon_sym_const] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3426), + [anon_sym_else] = ACTIONS(3428), + [anon_sym_if] = ACTIONS(3426), + [anon_sym_switch] = ACTIONS(3426), + [anon_sym_for] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3426), + [anon_sym_await] = ACTIONS(3426), + [anon_sym_of] = ACTIONS(3426), + [anon_sym_while] = ACTIONS(3426), + [anon_sym_do] = ACTIONS(3426), + [anon_sym_try] = ACTIONS(3426), + [anon_sym_break] = ACTIONS(3426), + [anon_sym_continue] = ACTIONS(3426), + [anon_sym_debugger] = ACTIONS(3426), + [anon_sym_return] = ACTIONS(3426), + [anon_sym_throw] = ACTIONS(3426), + [anon_sym_SEMI] = ACTIONS(3426), + [anon_sym_case] = ACTIONS(3426), + [anon_sym_yield] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3426), + [anon_sym_LTtemplate_GT] = ACTIONS(3426), + [anon_sym_DQUOTE] = ACTIONS(3426), + [anon_sym_SQUOTE] = ACTIONS(3426), + [anon_sym_class] = ACTIONS(3426), + [anon_sym_async] = ACTIONS(3426), + [anon_sym_function] = ACTIONS(3426), + [anon_sym_new] = ACTIONS(3426), + [anon_sym_using] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_TILDE] = ACTIONS(3426), + [anon_sym_void] = ACTIONS(3426), + [anon_sym_delete] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3426), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3426), + [sym_number] = ACTIONS(3426), + [sym_private_property_identifier] = ACTIONS(3426), + [sym_this] = ACTIONS(3426), + [sym_super] = ACTIONS(3426), + [sym_true] = ACTIONS(3426), + [sym_false] = ACTIONS(3426), + [sym_null] = ACTIONS(3426), + [sym_undefined] = ACTIONS(3426), + [anon_sym_AT] = ACTIONS(3426), + [anon_sym_static] = ACTIONS(3426), + [anon_sym_readonly] = ACTIONS(3426), + [anon_sym_get] = ACTIONS(3426), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_declare] = ACTIONS(3426), + [anon_sym_public] = ACTIONS(3426), + [anon_sym_private] = ACTIONS(3426), + [anon_sym_protected] = ACTIONS(3426), + [anon_sym_override] = ACTIONS(3426), + [anon_sym_module] = ACTIONS(3426), + [anon_sym_any] = ACTIONS(3426), + [anon_sym_number] = ACTIONS(3426), + [anon_sym_boolean] = ACTIONS(3426), + [anon_sym_string] = ACTIONS(3426), + [anon_sym_symbol] = ACTIONS(3426), + [anon_sym_object] = ACTIONS(3426), + [anon_sym_property] = ACTIONS(3426), + [anon_sym_signal] = ACTIONS(3426), + [anon_sym_on] = ACTIONS(3426), + [anon_sym_required] = ACTIONS(3426), + [anon_sym_component] = ACTIONS(3426), + [anon_sym_abstract] = ACTIONS(3426), + [anon_sym_interface] = ACTIONS(3426), + [anon_sym_enum] = ACTIONS(3426), + [sym_html_comment] = ACTIONS(5), }, - [583] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2249), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [1014] = { + [sym_comment] = STATE(1014), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_finally] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3430), + [sym_html_comment] = ACTIONS(5), }, - [584] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2252), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [1015] = { + [sym_comment] = STATE(1015), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_case] = ACTIONS(2356), + [anon_sym_catch] = ACTIONS(2356), + [anon_sym_finally] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym_html_comment] = ACTIONS(5), }, - [585] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1358), - [sym_expression] = STATE(2202), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4963), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4963), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4958), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1358), - [sym_subscript_expression] = STATE(1358), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2854), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4963), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1358), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(543), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1284), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1148), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1156), - [anon_sym_of] = ACTIONS(1148), - [anon_sym_yield] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(1160), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1162), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_TILDE] = ACTIONS(1154), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1172), - [anon_sym_DASH_DASH] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1292), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1148), - [anon_sym_get] = ACTIONS(1148), - [anon_sym_set] = ACTIONS(1148), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1148), - [anon_sym_private] = ACTIONS(1148), - [anon_sym_protected] = ACTIONS(1148), - [anon_sym_override] = ACTIONS(1148), - [anon_sym_module] = ACTIONS(1148), - [anon_sym_any] = ACTIONS(1148), - [anon_sym_number] = ACTIONS(1148), - [anon_sym_boolean] = ACTIONS(1148), - [anon_sym_string] = ACTIONS(1148), - [anon_sym_symbol] = ACTIONS(1148), - [anon_sym_property] = ACTIONS(1148), - [anon_sym_signal] = ACTIONS(1148), - [anon_sym_on] = ACTIONS(1148), - [anon_sym_required] = ACTIONS(1148), - [anon_sym_component] = ACTIONS(1148), + [1016] = { + [sym_comment] = STATE(1016), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), }, - [586] = { - [sym_import] = STATE(1733), - [sym_parenthesized_expression] = STATE(1352), - [sym_expression] = STATE(2254), - [sym_primary_expression] = STATE(1554), - [sym_yield_expression] = STATE(1730), - [sym_object] = STATE(1733), - [sym_object_pattern] = STATE(4758), - [sym_array] = STATE(1733), - [sym_array_pattern] = STATE(4758), - [sym_glimmer_template] = STATE(1730), - [sym_glimmer_opening_tag] = STATE(3891), - [sym_class] = STATE(1733), - [sym_function] = STATE(1733), - [sym_generator_function] = STATE(1733), - [sym_arrow_function] = STATE(1733), - [sym__call_signature] = STATE(4648), - [sym_call_expression] = STATE(1733), - [sym_new_expression] = STATE(1730), - [sym_await_expression] = STATE(1730), - [sym_member_expression] = STATE(1352), - [sym_subscript_expression] = STATE(1352), - [sym_assignment_expression] = STATE(1730), - [sym__augmented_assignment_lhs] = STATE(2847), - [sym_augmented_assignment_expression] = STATE(1730), - [sym__destructuring_pattern] = STATE(4758), - [sym_ternary_expression] = STATE(1730), - [sym_binary_expression] = STATE(1730), - [sym_unary_expression] = STATE(1730), - [sym_update_expression] = STATE(1730), - [sym_string] = STATE(1733), - [sym_template_string] = STATE(1733), - [sym_regex] = STATE(1733), - [sym_meta_property] = STATE(1733), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3438), - [sym_non_null_expression] = STATE(1352), - [sym_type_assertion] = STATE(1730), - [sym_as_expression] = STATE(1730), - [sym_satisfies_expression] = STATE(1730), - [sym_internal_module] = STATE(1730), - [sym_type_arguments] = STATE(586), - [sym_type_parameters] = STATE(4523), - [aux_sym_export_statement_repeat1] = STATE(3945), - [sym_identifier] = ACTIONS(1264), - [anon_sym_export] = ACTIONS(1072), - [anon_sym_type] = ACTIONS(1072), - [anon_sym_namespace] = ACTIONS(1074), - [anon_sym_LBRACE] = ACTIONS(1220), - [anon_sym_typeof] = ACTIONS(1094), - [anon_sym_import] = ACTIONS(37), - [anon_sym_from] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_await] = ACTIONS(1082), - [anon_sym_of] = ACTIONS(1072), - [anon_sym_yield] = ACTIONS(1084), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LTtemplate_GT] = ACTIONS(50), - [anon_sym_LT] = ACTIONS(52), - [anon_sym_SLASH] = ACTIONS(690), - [anon_sym_class] = ACTIONS(57), - [anon_sym_async] = ACTIONS(1086), - [anon_sym_function] = ACTIONS(61), - [anon_sym_new] = ACTIONS(1268), - [anon_sym_PLUS] = ACTIONS(1094), - [anon_sym_DASH] = ACTIONS(1094), - [anon_sym_TILDE] = ACTIONS(1080), - [anon_sym_void] = ACTIONS(1094), - [anon_sym_delete] = ACTIONS(1094), - [anon_sym_PLUS_PLUS] = ACTIONS(1096), - [anon_sym_DASH_DASH] = ACTIONS(1096), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1230), - [sym_number] = ACTIONS(656), - [sym_this] = ACTIONS(98), - [sym_super] = ACTIONS(98), - [sym_true] = ACTIONS(98), - [sym_false] = ACTIONS(98), - [sym_null] = ACTIONS(98), - [sym_undefined] = ACTIONS(1270), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(1072), - [anon_sym_readonly] = ACTIONS(1072), - [anon_sym_get] = ACTIONS(1072), - [anon_sym_set] = ACTIONS(1072), - [anon_sym_declare] = ACTIONS(1072), - [anon_sym_public] = ACTIONS(1072), - [anon_sym_private] = ACTIONS(1072), - [anon_sym_protected] = ACTIONS(1072), - [anon_sym_override] = ACTIONS(1072), - [anon_sym_module] = ACTIONS(1072), - [anon_sym_any] = ACTIONS(1072), - [anon_sym_number] = ACTIONS(1072), - [anon_sym_boolean] = ACTIONS(1072), - [anon_sym_string] = ACTIONS(1072), - [anon_sym_symbol] = ACTIONS(1072), - [anon_sym_property] = ACTIONS(1072), - [anon_sym_signal] = ACTIONS(1072), - [anon_sym_on] = ACTIONS(1072), - [anon_sym_required] = ACTIONS(1072), - [anon_sym_component] = ACTIONS(1072), + [1017] = { + [sym_catch_clause] = STATE(1375), + [sym_finally_clause] = STATE(1755), + [sym_comment] = STATE(1017), + [sym_identifier] = ACTIONS(3341), + [anon_sym_export] = ACTIONS(3341), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_namespace] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_typeof] = ACTIONS(3341), + [anon_sym_import] = ACTIONS(3341), + [anon_sym_from] = ACTIONS(3341), + [anon_sym_with] = ACTIONS(3341), + [anon_sym_var] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3341), + [anon_sym_const] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_switch] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_await] = ACTIONS(3341), + [anon_sym_of] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3341), + [anon_sym_do] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3341), + [anon_sym_break] = ACTIONS(3341), + [anon_sym_continue] = ACTIONS(3341), + [anon_sym_debugger] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3341), + [anon_sym_throw] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_catch] = ACTIONS(3432), + [anon_sym_finally] = ACTIONS(3434), + [anon_sym_yield] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LTtemplate_GT] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [anon_sym_SQUOTE] = ACTIONS(3341), + [anon_sym_class] = ACTIONS(3341), + [anon_sym_async] = ACTIONS(3341), + [anon_sym_function] = ACTIONS(3341), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_using] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_void] = ACTIONS(3341), + [anon_sym_delete] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3341), + [sym_number] = ACTIONS(3341), + [sym_private_property_identifier] = ACTIONS(3341), + [sym_this] = ACTIONS(3341), + [sym_super] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_null] = ACTIONS(3341), + [sym_undefined] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_static] = ACTIONS(3341), + [anon_sym_readonly] = ACTIONS(3341), + [anon_sym_get] = ACTIONS(3341), + [anon_sym_set] = ACTIONS(3341), + [anon_sym_declare] = ACTIONS(3341), + [anon_sym_public] = ACTIONS(3341), + [anon_sym_private] = ACTIONS(3341), + [anon_sym_protected] = ACTIONS(3341), + [anon_sym_override] = ACTIONS(3341), + [anon_sym_module] = ACTIONS(3341), + [anon_sym_any] = ACTIONS(3341), + [anon_sym_number] = ACTIONS(3341), + [anon_sym_boolean] = ACTIONS(3341), + [anon_sym_string] = ACTIONS(3341), + [anon_sym_symbol] = ACTIONS(3341), + [anon_sym_object] = ACTIONS(3341), + [anon_sym_property] = ACTIONS(3341), + [anon_sym_signal] = ACTIONS(3341), + [anon_sym_on] = ACTIONS(3341), + [anon_sym_required] = ACTIONS(3341), + [anon_sym_component] = ACTIONS(3341), + [anon_sym_abstract] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), + [sym_html_comment] = ACTIONS(5), }, - [587] = { - [sym__call_signature] = STATE(4786), - [sym_string] = STATE(3399), - [sym_formal_parameters] = STATE(3438), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [sym_type_parameters] = STATE(4523), - [aux_sym_object_repeat1] = STATE(4225), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2006), - [anon_sym_export] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2008), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2008), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_from] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2027), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2008), - [anon_sym_function] = ACTIONS(2031), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_readonly] = ACTIONS(2008), - [anon_sym_get] = ACTIONS(2035), - [anon_sym_set] = ACTIONS(2035), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2008), - [anon_sym_public] = ACTIONS(2008), - [anon_sym_private] = ACTIONS(2008), - [anon_sym_protected] = ACTIONS(2008), - [anon_sym_override] = ACTIONS(2008), - [anon_sym_module] = ACTIONS(2008), - [anon_sym_any] = ACTIONS(2008), - [anon_sym_number] = ACTIONS(2008), - [anon_sym_boolean] = ACTIONS(2008), - [anon_sym_string] = ACTIONS(2008), - [anon_sym_symbol] = ACTIONS(2008), - [anon_sym_property] = ACTIONS(2008), - [anon_sym_signal] = ACTIONS(2008), - [anon_sym_on] = ACTIONS(2008), - [anon_sym_required] = ACTIONS(2008), - [anon_sym_component] = ACTIONS(2008), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1018] = { + [sym_comment] = STATE(1018), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3436), + [sym_html_comment] = ACTIONS(5), }, - [588] = { - [sym__call_signature] = STATE(4786), - [sym_string] = STATE(3399), - [sym_formal_parameters] = STATE(3438), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [sym_type_parameters] = STATE(4523), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2006), - [anon_sym_export] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2008), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2008), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_from] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2027), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2008), - [anon_sym_function] = ACTIONS(2031), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_readonly] = ACTIONS(2008), - [anon_sym_get] = ACTIONS(2035), - [anon_sym_set] = ACTIONS(2035), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2008), - [anon_sym_public] = ACTIONS(2008), - [anon_sym_private] = ACTIONS(2008), - [anon_sym_protected] = ACTIONS(2008), - [anon_sym_override] = ACTIONS(2008), - [anon_sym_module] = ACTIONS(2008), - [anon_sym_any] = ACTIONS(2008), - [anon_sym_number] = ACTIONS(2008), - [anon_sym_boolean] = ACTIONS(2008), - [anon_sym_string] = ACTIONS(2008), - [anon_sym_symbol] = ACTIONS(2008), - [anon_sym_property] = ACTIONS(2008), - [anon_sym_signal] = ACTIONS(2008), - [anon_sym_on] = ACTIONS(2008), - [anon_sym_required] = ACTIONS(2008), - [anon_sym_component] = ACTIONS(2008), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1019] = { + [sym_comment] = STATE(1019), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3438), + [sym_html_comment] = ACTIONS(5), }, - [589] = { - [sym__call_signature] = STATE(4786), - [sym_string] = STATE(3399), - [sym_formal_parameters] = STATE(3438), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [sym_type_parameters] = STATE(4523), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2006), - [anon_sym_export] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2008), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2008), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_from] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2027), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2008), - [anon_sym_function] = ACTIONS(2031), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_readonly] = ACTIONS(2008), - [anon_sym_get] = ACTIONS(2035), - [anon_sym_set] = ACTIONS(2035), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2008), - [anon_sym_public] = ACTIONS(2008), - [anon_sym_private] = ACTIONS(2008), - [anon_sym_protected] = ACTIONS(2008), - [anon_sym_override] = ACTIONS(2008), - [anon_sym_module] = ACTIONS(2008), - [anon_sym_any] = ACTIONS(2008), - [anon_sym_number] = ACTIONS(2008), - [anon_sym_boolean] = ACTIONS(2008), - [anon_sym_string] = ACTIONS(2008), - [anon_sym_symbol] = ACTIONS(2008), - [anon_sym_property] = ACTIONS(2008), - [anon_sym_signal] = ACTIONS(2008), - [anon_sym_on] = ACTIONS(2008), - [anon_sym_required] = ACTIONS(2008), - [anon_sym_component] = ACTIONS(2008), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1020] = { + [sym_comment] = STATE(1020), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2420), + [sym_html_comment] = ACTIONS(5), }, - [590] = { - [sym__call_signature] = STATE(4786), - [sym_string] = STATE(3399), - [sym_formal_parameters] = STATE(3438), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [sym_type_parameters] = STATE(4523), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2006), - [anon_sym_export] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2008), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2008), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_from] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2027), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2008), - [anon_sym_function] = ACTIONS(2031), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_readonly] = ACTIONS(2008), - [anon_sym_get] = ACTIONS(2035), - [anon_sym_set] = ACTIONS(2035), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2008), - [anon_sym_public] = ACTIONS(2008), - [anon_sym_private] = ACTIONS(2008), - [anon_sym_protected] = ACTIONS(2008), - [anon_sym_override] = ACTIONS(2008), - [anon_sym_module] = ACTIONS(2008), - [anon_sym_any] = ACTIONS(2008), - [anon_sym_number] = ACTIONS(2008), - [anon_sym_boolean] = ACTIONS(2008), - [anon_sym_string] = ACTIONS(2008), - [anon_sym_symbol] = ACTIONS(2008), - [anon_sym_property] = ACTIONS(2008), - [anon_sym_signal] = ACTIONS(2008), - [anon_sym_on] = ACTIONS(2008), - [anon_sym_required] = ACTIONS(2008), - [anon_sym_component] = ACTIONS(2008), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1021] = { + [sym_comment] = STATE(1021), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_from] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_else] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_of] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_LTtemplate_GT] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2328), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_using] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2328), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2328), + [sym_number] = ACTIONS(2328), + [sym_private_property_identifier] = ACTIONS(2328), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_property] = ACTIONS(2328), + [anon_sym_signal] = ACTIONS(2328), + [anon_sym_on] = ACTIONS(2328), + [anon_sym_required] = ACTIONS(2328), + [anon_sym_component] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym__automatic_semicolon] = ACTIONS(2330), + [sym_html_comment] = ACTIONS(5), }, - [591] = { - [sym_namespace_export] = STATE(4323), - [sym_export_clause] = STATE(3870), - [sym_declaration] = STATE(801), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_class_declaration] = STATE(785), - [sym_function_declaration] = STATE(785), - [sym_generator_function_declaration] = STATE(785), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(785), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(802), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [aux_sym_export_statement_repeat1] = STATE(3571), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_default] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_EQ] = ACTIONS(2051), - [anon_sym_as] = ACTIONS(2053), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2087), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1022] = { + [sym_comment] = STATE(1022), + [sym_identifier] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_default] = ACTIONS(2422), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_typeof] = ACTIONS(2422), + [anon_sym_import] = ACTIONS(2422), + [anon_sym_from] = ACTIONS(2422), + [anon_sym_with] = ACTIONS(2422), + [anon_sym_var] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_else] = ACTIONS(2422), + [anon_sym_if] = ACTIONS(2422), + [anon_sym_switch] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_await] = ACTIONS(2422), + [anon_sym_of] = ACTIONS(2422), + [anon_sym_while] = ACTIONS(2422), + [anon_sym_do] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2422), + [anon_sym_continue] = ACTIONS(2422), + [anon_sym_debugger] = ACTIONS(2422), + [anon_sym_return] = ACTIONS(2422), + [anon_sym_throw] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_case] = ACTIONS(2422), + [anon_sym_yield] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_LTtemplate_GT] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_class] = ACTIONS(2422), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2422), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_using] = ACTIONS(2422), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_SLASH] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_void] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2422), + [sym_number] = ACTIONS(2422), + [sym_private_property_identifier] = ACTIONS(2422), + [sym_this] = ACTIONS(2422), + [sym_super] = ACTIONS(2422), + [sym_true] = ACTIONS(2422), + [sym_false] = ACTIONS(2422), + [sym_null] = ACTIONS(2422), + [sym_undefined] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_property] = ACTIONS(2422), + [anon_sym_signal] = ACTIONS(2422), + [anon_sym_on] = ACTIONS(2422), + [anon_sym_required] = ACTIONS(2422), + [anon_sym_component] = ACTIONS(2422), + [anon_sym_abstract] = ACTIONS(2422), + [anon_sym_interface] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [sym__automatic_semicolon] = ACTIONS(2426), + [sym_html_comment] = ACTIONS(5), }, - [592] = { - [sym_namespace_export] = STATE(4323), - [sym_export_clause] = STATE(3870), - [sym_declaration] = STATE(801), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_class_declaration] = STATE(785), - [sym_function_declaration] = STATE(785), - [sym_generator_function_declaration] = STATE(785), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(785), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(802), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [aux_sym_export_statement_repeat1] = STATE(3571), - [aux_sym_object_repeat1] = STATE(4225), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_default] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_EQ] = ACTIONS(2051), - [anon_sym_as] = ACTIONS(2053), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2087), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1023] = { + [sym_comment] = STATE(1023), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), }, - [593] = { - [sym_namespace_export] = STATE(4323), - [sym_export_clause] = STATE(3870), - [sym_declaration] = STATE(801), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_class_declaration] = STATE(785), - [sym_function_declaration] = STATE(785), - [sym_generator_function_declaration] = STATE(785), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(785), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(802), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [aux_sym_export_statement_repeat1] = STATE(3571), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_default] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_EQ] = ACTIONS(2051), - [anon_sym_as] = ACTIONS(2053), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2087), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1024] = { + [sym_comment] = STATE(1024), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_default] = ACTIONS(2388), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_namespace] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_typeof] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(2388), + [anon_sym_from] = ACTIONS(2388), + [anon_sym_with] = ACTIONS(2388), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_else] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_switch] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2388), + [anon_sym_await] = ACTIONS(2388), + [anon_sym_of] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_do] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_debugger] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_throw] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2388), + [anon_sym_case] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2388), + [anon_sym_LTtemplate_GT] = ACTIONS(2388), + [anon_sym_DQUOTE] = ACTIONS(2388), + [anon_sym_SQUOTE] = ACTIONS(2388), + [anon_sym_class] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_using] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_void] = ACTIONS(2388), + [anon_sym_delete] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(2388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2388), + [sym_number] = ACTIONS(2388), + [sym_private_property_identifier] = ACTIONS(2388), + [sym_this] = ACTIONS(2388), + [sym_super] = ACTIONS(2388), + [sym_true] = ACTIONS(2388), + [sym_false] = ACTIONS(2388), + [sym_null] = ACTIONS(2388), + [sym_undefined] = ACTIONS(2388), + [anon_sym_AT] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_readonly] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_declare] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_protected] = ACTIONS(2388), + [anon_sym_override] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_any] = ACTIONS(2388), + [anon_sym_number] = ACTIONS(2388), + [anon_sym_boolean] = ACTIONS(2388), + [anon_sym_string] = ACTIONS(2388), + [anon_sym_symbol] = ACTIONS(2388), + [anon_sym_object] = ACTIONS(2388), + [anon_sym_property] = ACTIONS(2388), + [anon_sym_signal] = ACTIONS(2388), + [anon_sym_on] = ACTIONS(2388), + [anon_sym_required] = ACTIONS(2388), + [anon_sym_component] = ACTIONS(2388), + [anon_sym_abstract] = ACTIONS(2388), + [anon_sym_interface] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [sym__automatic_semicolon] = ACTIONS(2392), + [sym_html_comment] = ACTIONS(5), }, - [594] = { - [sym_namespace_export] = STATE(4323), - [sym_export_clause] = STATE(3870), - [sym_declaration] = STATE(801), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_class_declaration] = STATE(785), - [sym_function_declaration] = STATE(785), - [sym_generator_function_declaration] = STATE(785), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(785), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(802), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [aux_sym_export_statement_repeat1] = STATE(3571), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_default] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_EQ] = ACTIONS(2051), - [anon_sym_as] = ACTIONS(2053), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2087), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1025] = { + [sym_finally_clause] = STATE(1395), + [sym_comment] = STATE(1025), + [sym_identifier] = ACTIONS(3412), + [anon_sym_export] = ACTIONS(3412), + [anon_sym_default] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_namespace] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3412), + [anon_sym_import] = ACTIONS(3412), + [anon_sym_from] = ACTIONS(3412), + [anon_sym_with] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_switch] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3412), + [anon_sym_of] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_debugger] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_throw] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_case] = ACTIONS(3412), + [anon_sym_finally] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LTtemplate_GT] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_class] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_function] = ACTIONS(3412), + [anon_sym_new] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_private_property_identifier] = ACTIONS(3412), + [sym_this] = ACTIONS(3412), + [sym_super] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_null] = ACTIONS(3412), + [sym_undefined] = ACTIONS(3412), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_readonly] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3412), + [anon_sym_set] = ACTIONS(3412), + [anon_sym_declare] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_protected] = ACTIONS(3412), + [anon_sym_override] = ACTIONS(3412), + [anon_sym_module] = ACTIONS(3412), + [anon_sym_any] = ACTIONS(3412), + [anon_sym_number] = ACTIONS(3412), + [anon_sym_boolean] = ACTIONS(3412), + [anon_sym_string] = ACTIONS(3412), + [anon_sym_symbol] = ACTIONS(3412), + [anon_sym_object] = ACTIONS(3412), + [anon_sym_property] = ACTIONS(3412), + [anon_sym_signal] = ACTIONS(3412), + [anon_sym_on] = ACTIONS(3412), + [anon_sym_required] = ACTIONS(3412), + [anon_sym_component] = ACTIONS(3412), + [anon_sym_abstract] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), + [sym_html_comment] = ACTIONS(5), }, - [595] = { - [sym_string] = STATE(3399), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [sym_override_modifier] = STATE(2488), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2095), - [anon_sym_set] = ACTIONS(2095), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_property] = ACTIONS(2089), - [anon_sym_signal] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_required] = ACTIONS(2089), - [anon_sym_component] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1026] = { + [sym_comment] = STATE(1026), + [sym_identifier] = ACTIONS(2384), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_typeof] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2384), + [anon_sym_from] = ACTIONS(2384), + [anon_sym_with] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2384), + [anon_sym_await] = ACTIONS(2384), + [anon_sym_of] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_debugger] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_case] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_LTtemplate_GT] = ACTIONS(2384), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DQUOTE] = ACTIONS(2384), + [anon_sym_SQUOTE] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_using] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_TILDE] = ACTIONS(2384), + [anon_sym_void] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2384), + [sym_number] = ACTIONS(2384), + [sym_private_property_identifier] = ACTIONS(2384), + [sym_this] = ACTIONS(2384), + [sym_super] = ACTIONS(2384), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_undefined] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_readonly] = ACTIONS(2384), + [anon_sym_get] = ACTIONS(2384), + [anon_sym_set] = ACTIONS(2384), + [anon_sym_declare] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_protected] = ACTIONS(2384), + [anon_sym_override] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_any] = ACTIONS(2384), + [anon_sym_number] = ACTIONS(2384), + [anon_sym_boolean] = ACTIONS(2384), + [anon_sym_string] = ACTIONS(2384), + [anon_sym_symbol] = ACTIONS(2384), + [anon_sym_object] = ACTIONS(2384), + [anon_sym_property] = ACTIONS(2384), + [anon_sym_signal] = ACTIONS(2384), + [anon_sym_on] = ACTIONS(2384), + [anon_sym_required] = ACTIONS(2384), + [anon_sym_component] = ACTIONS(2384), + [anon_sym_abstract] = ACTIONS(2384), + [anon_sym_interface] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [sym_html_comment] = ACTIONS(5), }, - [596] = { - [sym_string] = STATE(3399), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [sym_override_modifier] = STATE(2488), - [aux_sym_object_repeat1] = STATE(4225), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2095), - [anon_sym_set] = ACTIONS(2095), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_property] = ACTIONS(2089), - [anon_sym_signal] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_required] = ACTIONS(2089), - [anon_sym_component] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1027] = { + [sym_comment] = STATE(1027), + [sym_identifier] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_namespace] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_import] = ACTIONS(2478), + [anon_sym_from] = ACTIONS(2478), + [anon_sym_with] = ACTIONS(2478), + [anon_sym_var] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_await] = ACTIONS(2478), + [anon_sym_of] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_debugger] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_throw] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_case] = ACTIONS(2478), + [anon_sym_yield] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_LTtemplate_GT] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_class] = ACTIONS(2478), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_new] = ACTIONS(2478), + [anon_sym_using] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_SLASH] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2478), + [sym_number] = ACTIONS(2478), + [sym_private_property_identifier] = ACTIONS(2478), + [sym_this] = ACTIONS(2478), + [sym_super] = ACTIONS(2478), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [sym_null] = ACTIONS(2478), + [sym_undefined] = ACTIONS(2478), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_override] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_any] = ACTIONS(2478), + [anon_sym_number] = ACTIONS(2478), + [anon_sym_boolean] = ACTIONS(2478), + [anon_sym_string] = ACTIONS(2478), + [anon_sym_symbol] = ACTIONS(2478), + [anon_sym_object] = ACTIONS(2478), + [anon_sym_property] = ACTIONS(2478), + [anon_sym_signal] = ACTIONS(2478), + [anon_sym_on] = ACTIONS(2478), + [anon_sym_required] = ACTIONS(2478), + [anon_sym_component] = ACTIONS(2478), + [anon_sym_abstract] = ACTIONS(2478), + [anon_sym_interface] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [sym__automatic_semicolon] = ACTIONS(2482), + [sym_html_comment] = ACTIONS(5), }, - [597] = { - [sym_string] = STATE(3399), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [sym_override_modifier] = STATE(2488), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2095), - [anon_sym_set] = ACTIONS(2095), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_property] = ACTIONS(2089), - [anon_sym_signal] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_required] = ACTIONS(2089), - [anon_sym_component] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1028] = { + [sym_comment] = STATE(1028), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_case] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym__automatic_semicolon] = ACTIONS(2358), + [sym_html_comment] = ACTIONS(5), }, - [598] = { - [sym_string] = STATE(3399), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [sym_override_modifier] = STATE(2488), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2095), - [anon_sym_set] = ACTIONS(2095), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2097), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_property] = ACTIONS(2089), - [anon_sym_signal] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_required] = ACTIONS(2089), - [anon_sym_component] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1029] = { + [sym_comment] = STATE(1029), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3440), + [sym_html_comment] = ACTIONS(5), }, - [599] = { - [sym_string] = STATE(3399), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [aux_sym_object_repeat1] = STATE(4225), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_property] = ACTIONS(2089), - [anon_sym_signal] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_required] = ACTIONS(2089), - [anon_sym_component] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1030] = { + [sym_comment] = STATE(1030), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_case] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2344), + [sym_html_comment] = ACTIONS(5), }, - [600] = { - [sym_string] = STATE(3399), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2095), - [anon_sym_set] = ACTIONS(2095), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_property] = ACTIONS(2089), - [anon_sym_signal] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_required] = ACTIONS(2089), - [anon_sym_component] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1031] = { + [sym_comment] = STATE(1031), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), }, - [601] = { - [sym_string] = STATE(3399), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_property] = ACTIONS(2089), - [anon_sym_signal] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_required] = ACTIONS(2089), - [anon_sym_component] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1032] = { + [sym_comment] = STATE(1032), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_case] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2352), + [sym_html_comment] = ACTIONS(5), }, - [602] = { - [sym_string] = STATE(3399), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [aux_sym_object_repeat1] = STATE(4225), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2095), - [anon_sym_set] = ACTIONS(2095), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_property] = ACTIONS(2089), - [anon_sym_signal] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_required] = ACTIONS(2089), - [anon_sym_component] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1033] = { + [sym_comment] = STATE(1033), + [sym_identifier] = ACTIONS(2360), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_default] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_namespace] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_typeof] = ACTIONS(2360), + [anon_sym_import] = ACTIONS(2360), + [anon_sym_from] = ACTIONS(2360), + [anon_sym_with] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_switch] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_await] = ACTIONS(2360), + [anon_sym_of] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_debugger] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_throw] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_case] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [anon_sym_LTtemplate_GT] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_class] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_new] = ACTIONS(2360), + [anon_sym_using] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_void] = ACTIONS(2360), + [anon_sym_delete] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2360), + [sym_number] = ACTIONS(2360), + [sym_private_property_identifier] = ACTIONS(2360), + [sym_this] = ACTIONS(2360), + [sym_super] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_null] = ACTIONS(2360), + [sym_undefined] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_readonly] = ACTIONS(2360), + [anon_sym_get] = ACTIONS(2360), + [anon_sym_set] = ACTIONS(2360), + [anon_sym_declare] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_protected] = ACTIONS(2360), + [anon_sym_override] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_any] = ACTIONS(2360), + [anon_sym_number] = ACTIONS(2360), + [anon_sym_boolean] = ACTIONS(2360), + [anon_sym_string] = ACTIONS(2360), + [anon_sym_symbol] = ACTIONS(2360), + [anon_sym_object] = ACTIONS(2360), + [anon_sym_property] = ACTIONS(2360), + [anon_sym_signal] = ACTIONS(2360), + [anon_sym_on] = ACTIONS(2360), + [anon_sym_required] = ACTIONS(2360), + [anon_sym_component] = ACTIONS(2360), + [anon_sym_abstract] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [sym__automatic_semicolon] = ACTIONS(2364), + [sym_html_comment] = ACTIONS(5), }, - [603] = { - [sym_string] = STATE(3399), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2095), - [anon_sym_set] = ACTIONS(2095), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_property] = ACTIONS(2089), - [anon_sym_signal] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_required] = ACTIONS(2089), - [anon_sym_component] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1034] = { + [sym_comment] = STATE(1034), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2474), + [sym_html_comment] = ACTIONS(5), }, - [604] = { - [sym_string] = STATE(3399), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_property] = ACTIONS(2089), - [anon_sym_signal] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_required] = ACTIONS(2089), - [anon_sym_component] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1035] = { + [sym_comment] = STATE(1035), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_typeof] = ACTIONS(2332), + [anon_sym_import] = ACTIONS(2332), + [anon_sym_from] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_switch] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_await] = ACTIONS(2332), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_throw] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_case] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_LTtemplate_GT] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2332), + [anon_sym_class] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_using] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_void] = ACTIONS(2332), + [anon_sym_delete] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2332), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2332), + [sym_number] = ACTIONS(2332), + [sym_private_property_identifier] = ACTIONS(2332), + [sym_this] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_undefined] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_property] = ACTIONS(2332), + [anon_sym_signal] = ACTIONS(2332), + [anon_sym_on] = ACTIONS(2332), + [anon_sym_required] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(2336), + [sym_html_comment] = ACTIONS(5), }, - [605] = { - [sym_string] = STATE(3399), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2095), - [anon_sym_set] = ACTIONS(2095), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_property] = ACTIONS(2089), - [anon_sym_signal] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_required] = ACTIONS(2089), - [anon_sym_component] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1036] = { + [sym_statement_block] = STATE(1176), + [sym_comment] = STATE(1036), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym_html_comment] = ACTIONS(5), }, - [606] = { - [sym_string] = STATE(3399), - [sym__property_name] = STATE(3399), - [sym_computed_property_name] = STATE(3399), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(2033), - [sym_private_property_identifier] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_readonly] = ACTIONS(2089), - [anon_sym_get] = ACTIONS(2089), - [anon_sym_set] = ACTIONS(2089), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2089), - [anon_sym_public] = ACTIONS(2089), - [anon_sym_private] = ACTIONS(2089), - [anon_sym_protected] = ACTIONS(2089), - [anon_sym_override] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_any] = ACTIONS(2089), - [anon_sym_number] = ACTIONS(2089), - [anon_sym_boolean] = ACTIONS(2089), - [anon_sym_string] = ACTIONS(2089), - [anon_sym_symbol] = ACTIONS(2089), - [anon_sym_property] = ACTIONS(2089), - [anon_sym_signal] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_required] = ACTIONS(2089), - [anon_sym_component] = ACTIONS(2089), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1037] = { + [sym_else_clause] = STATE(1226), + [sym_comment] = STATE(1037), + [sym_identifier] = ACTIONS(3426), + [anon_sym_export] = ACTIONS(3426), + [anon_sym_default] = ACTIONS(3426), + [anon_sym_type] = ACTIONS(3426), + [anon_sym_namespace] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_RBRACE] = ACTIONS(3426), + [anon_sym_typeof] = ACTIONS(3426), + [anon_sym_import] = ACTIONS(3426), + [anon_sym_from] = ACTIONS(3426), + [anon_sym_with] = ACTIONS(3426), + [anon_sym_var] = ACTIONS(3426), + [anon_sym_let] = ACTIONS(3426), + [anon_sym_const] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3426), + [anon_sym_else] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3426), + [anon_sym_switch] = ACTIONS(3426), + [anon_sym_for] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3426), + [anon_sym_await] = ACTIONS(3426), + [anon_sym_of] = ACTIONS(3426), + [anon_sym_while] = ACTIONS(3426), + [anon_sym_do] = ACTIONS(3426), + [anon_sym_try] = ACTIONS(3426), + [anon_sym_break] = ACTIONS(3426), + [anon_sym_continue] = ACTIONS(3426), + [anon_sym_debugger] = ACTIONS(3426), + [anon_sym_return] = ACTIONS(3426), + [anon_sym_throw] = ACTIONS(3426), + [anon_sym_SEMI] = ACTIONS(3426), + [anon_sym_case] = ACTIONS(3426), + [anon_sym_yield] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3426), + [anon_sym_LTtemplate_GT] = ACTIONS(3426), + [anon_sym_DQUOTE] = ACTIONS(3426), + [anon_sym_SQUOTE] = ACTIONS(3426), + [anon_sym_class] = ACTIONS(3426), + [anon_sym_async] = ACTIONS(3426), + [anon_sym_function] = ACTIONS(3426), + [anon_sym_new] = ACTIONS(3426), + [anon_sym_using] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_TILDE] = ACTIONS(3426), + [anon_sym_void] = ACTIONS(3426), + [anon_sym_delete] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3426), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3426), + [sym_number] = ACTIONS(3426), + [sym_private_property_identifier] = ACTIONS(3426), + [sym_this] = ACTIONS(3426), + [sym_super] = ACTIONS(3426), + [sym_true] = ACTIONS(3426), + [sym_false] = ACTIONS(3426), + [sym_null] = ACTIONS(3426), + [sym_undefined] = ACTIONS(3426), + [anon_sym_AT] = ACTIONS(3426), + [anon_sym_static] = ACTIONS(3426), + [anon_sym_readonly] = ACTIONS(3426), + [anon_sym_get] = ACTIONS(3426), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_declare] = ACTIONS(3426), + [anon_sym_public] = ACTIONS(3426), + [anon_sym_private] = ACTIONS(3426), + [anon_sym_protected] = ACTIONS(3426), + [anon_sym_override] = ACTIONS(3426), + [anon_sym_module] = ACTIONS(3426), + [anon_sym_any] = ACTIONS(3426), + [anon_sym_number] = ACTIONS(3426), + [anon_sym_boolean] = ACTIONS(3426), + [anon_sym_string] = ACTIONS(3426), + [anon_sym_symbol] = ACTIONS(3426), + [anon_sym_object] = ACTIONS(3426), + [anon_sym_property] = ACTIONS(3426), + [anon_sym_signal] = ACTIONS(3426), + [anon_sym_on] = ACTIONS(3426), + [anon_sym_required] = ACTIONS(3426), + [anon_sym_component] = ACTIONS(3426), + [anon_sym_abstract] = ACTIONS(3426), + [anon_sym_interface] = ACTIONS(3426), + [anon_sym_enum] = ACTIONS(3426), + [sym_html_comment] = ACTIONS(5), }, - [607] = { - [sym_declaration] = STATE(786), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_class_declaration] = STATE(785), - [sym_function_declaration] = STATE(785), - [sym_generator_function_declaration] = STATE(785), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(785), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(802), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [aux_sym_export_statement_repeat1] = STATE(3571), - [aux_sym_object_repeat1] = STATE(4225), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_global] = ACTIONS(2103), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2087), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1038] = { + [sym_comment] = STATE(1038), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3444), + [sym_html_comment] = ACTIONS(5), }, - [608] = { - [sym_declaration] = STATE(786), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_class_declaration] = STATE(785), - [sym_function_declaration] = STATE(785), - [sym_generator_function_declaration] = STATE(785), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(785), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(802), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [aux_sym_export_statement_repeat1] = STATE(3571), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_global] = ACTIONS(2103), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2087), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1039] = { + [sym_comment] = STATE(1039), + [sym_identifier] = ACTIONS(3446), + [anon_sym_export] = ACTIONS(3446), + [anon_sym_default] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_namespace] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_typeof] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_from] = ACTIONS(3446), + [anon_sym_with] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(3446), + [anon_sym_const] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_else] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_await] = ACTIONS(3446), + [anon_sym_of] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_debugger] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_case] = ACTIONS(3446), + [anon_sym_finally] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_LTtemplate_GT] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_async] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_using] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_delete] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3446), + [sym_number] = ACTIONS(3446), + [sym_private_property_identifier] = ACTIONS(3446), + [sym_this] = ACTIONS(3446), + [sym_super] = ACTIONS(3446), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3446), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3446), + [anon_sym_set] = ACTIONS(3446), + [anon_sym_declare] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_protected] = ACTIONS(3446), + [anon_sym_override] = ACTIONS(3446), + [anon_sym_module] = ACTIONS(3446), + [anon_sym_any] = ACTIONS(3446), + [anon_sym_number] = ACTIONS(3446), + [anon_sym_boolean] = ACTIONS(3446), + [anon_sym_string] = ACTIONS(3446), + [anon_sym_symbol] = ACTIONS(3446), + [anon_sym_object] = ACTIONS(3446), + [anon_sym_property] = ACTIONS(3446), + [anon_sym_signal] = ACTIONS(3446), + [anon_sym_on] = ACTIONS(3446), + [anon_sym_required] = ACTIONS(3446), + [anon_sym_component] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), + [sym_html_comment] = ACTIONS(5), }, - [609] = { - [sym_declaration] = STATE(786), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_class_declaration] = STATE(785), - [sym_function_declaration] = STATE(785), - [sym_generator_function_declaration] = STATE(785), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(785), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(802), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [aux_sym_export_statement_repeat1] = STATE(3571), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_global] = ACTIONS(2103), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2087), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1040] = { + [sym_comment] = STATE(1040), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_DOT] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym_html_comment] = ACTIONS(5), }, - [610] = { - [sym_declaration] = STATE(786), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_class_declaration] = STATE(785), - [sym_function_declaration] = STATE(785), - [sym_generator_function_declaration] = STATE(785), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(785), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(802), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [aux_sym_export_statement_repeat1] = STATE(3571), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_global] = ACTIONS(2103), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2087), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1041] = { + [sym_comment] = STATE(1041), + [sym_identifier] = ACTIONS(2448), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_default] = ACTIONS(2448), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_namespace] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_typeof] = ACTIONS(2448), + [anon_sym_import] = ACTIONS(2448), + [anon_sym_from] = ACTIONS(2448), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_switch] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_await] = ACTIONS(2448), + [anon_sym_of] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_debugger] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_case] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LTtemplate_GT] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_class] = ACTIONS(2448), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_new] = ACTIONS(2448), + [anon_sym_using] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_SLASH] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_void] = ACTIONS(2448), + [anon_sym_delete] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2448), + [sym_number] = ACTIONS(2448), + [sym_private_property_identifier] = ACTIONS(2448), + [sym_this] = ACTIONS(2448), + [sym_super] = ACTIONS(2448), + [sym_true] = ACTIONS(2448), + [sym_false] = ACTIONS(2448), + [sym_null] = ACTIONS(2448), + [sym_undefined] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_readonly] = ACTIONS(2448), + [anon_sym_get] = ACTIONS(2448), + [anon_sym_set] = ACTIONS(2448), + [anon_sym_declare] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_protected] = ACTIONS(2448), + [anon_sym_override] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_any] = ACTIONS(2448), + [anon_sym_number] = ACTIONS(2448), + [anon_sym_boolean] = ACTIONS(2448), + [anon_sym_string] = ACTIONS(2448), + [anon_sym_symbol] = ACTIONS(2448), + [anon_sym_object] = ACTIONS(2448), + [anon_sym_property] = ACTIONS(2448), + [anon_sym_signal] = ACTIONS(2448), + [anon_sym_on] = ACTIONS(2448), + [anon_sym_required] = ACTIONS(2448), + [anon_sym_component] = ACTIONS(2448), + [anon_sym_abstract] = ACTIONS(2448), + [anon_sym_interface] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [sym__automatic_semicolon] = ACTIONS(2452), + [sym_html_comment] = ACTIONS(5), }, - [611] = { - [sym_namespace_export] = STATE(4323), - [sym_export_clause] = STATE(3870), - [sym_declaration] = STATE(801), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_class_declaration] = STATE(785), - [sym_function_declaration] = STATE(785), - [sym_generator_function_declaration] = STATE(785), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(785), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(802), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [aux_sym_export_statement_repeat1] = STATE(3571), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_default] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_EQ] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2053), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2087), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1042] = { + [sym_statement_block] = STATE(1358), + [sym_comment] = STATE(1042), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3450), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym_html_comment] = ACTIONS(5), }, - [612] = { - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_EQ] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_from] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_RPAREN] = ACTIONS(2111), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_of] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_debugger] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_throw] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_COLON] = ACTIONS(2111), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_RBRACK] = ACTIONS(2111), - [anon_sym_LTtemplate_GT] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2111), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_EQ_GT] = ACTIONS(2111), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2111), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2111), - [anon_sym_DASH_DASH] = ACTIONS(2111), - [anon_sym_DQUOTE] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2111), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2111), - [sym_number] = ACTIONS(2111), - [sym_this] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_true] = ACTIONS(2109), - [sym_false] = ACTIONS(2109), - [sym_null] = ACTIONS(2109), - [sym_undefined] = ACTIONS(2109), - [anon_sym_AT] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_QMARK] = ACTIONS(2111), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_property] = ACTIONS(2109), - [anon_sym_signal] = ACTIONS(2109), - [anon_sym_on] = ACTIONS(2109), - [anon_sym_required] = ACTIONS(2109), - [anon_sym_component] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_extends] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [1043] = { + [sym_statement_block] = STATE(1358), + [sym_comment] = STATE(1043), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3452), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym_html_comment] = ACTIONS(5), }, - [613] = { - [sym_identifier] = ACTIONS(2113), - [anon_sym_export] = ACTIONS(2113), - [anon_sym_default] = ACTIONS(2113), - [anon_sym_type] = ACTIONS(2113), - [anon_sym_EQ] = ACTIONS(2113), - [anon_sym_namespace] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_COMMA] = ACTIONS(2115), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_typeof] = ACTIONS(2113), - [anon_sym_import] = ACTIONS(2113), - [anon_sym_from] = ACTIONS(2113), - [anon_sym_var] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_else] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_switch] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym_RPAREN] = ACTIONS(2115), - [anon_sym_await] = ACTIONS(2113), - [anon_sym_of] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [anon_sym_do] = ACTIONS(2113), - [anon_sym_try] = ACTIONS(2113), - [anon_sym_with] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_debugger] = ACTIONS(2113), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_throw] = ACTIONS(2113), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_COLON] = ACTIONS(2115), - [anon_sym_case] = ACTIONS(2113), - [anon_sym_yield] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2115), - [anon_sym_RBRACK] = ACTIONS(2115), - [anon_sym_LTtemplate_GT] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2113), - [anon_sym_GT] = ACTIONS(2115), - [anon_sym_SLASH] = ACTIONS(2113), - [anon_sym_class] = ACTIONS(2113), - [anon_sym_async] = ACTIONS(2113), - [anon_sym_function] = ACTIONS(2113), - [anon_sym_EQ_GT] = ACTIONS(2115), - [anon_sym_new] = ACTIONS(2113), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_TILDE] = ACTIONS(2115), - [anon_sym_void] = ACTIONS(2113), - [anon_sym_delete] = ACTIONS(2113), - [anon_sym_PLUS_PLUS] = ACTIONS(2115), - [anon_sym_DASH_DASH] = ACTIONS(2115), - [anon_sym_DQUOTE] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2115), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2115), - [sym_number] = ACTIONS(2115), - [sym_this] = ACTIONS(2113), - [sym_super] = ACTIONS(2113), - [sym_true] = ACTIONS(2113), - [sym_false] = ACTIONS(2113), - [sym_null] = ACTIONS(2113), - [sym_undefined] = ACTIONS(2113), - [anon_sym_AT] = ACTIONS(2115), - [anon_sym_static] = ACTIONS(2113), - [anon_sym_readonly] = ACTIONS(2113), - [anon_sym_get] = ACTIONS(2113), - [anon_sym_set] = ACTIONS(2113), - [anon_sym_QMARK] = ACTIONS(2115), - [anon_sym_declare] = ACTIONS(2113), - [anon_sym_public] = ACTIONS(2113), - [anon_sym_private] = ACTIONS(2113), - [anon_sym_protected] = ACTIONS(2113), - [anon_sym_override] = ACTIONS(2113), - [anon_sym_module] = ACTIONS(2113), - [anon_sym_any] = ACTIONS(2113), - [anon_sym_number] = ACTIONS(2113), - [anon_sym_boolean] = ACTIONS(2113), - [anon_sym_string] = ACTIONS(2113), - [anon_sym_symbol] = ACTIONS(2113), - [anon_sym_property] = ACTIONS(2113), - [anon_sym_signal] = ACTIONS(2113), - [anon_sym_on] = ACTIONS(2113), - [anon_sym_required] = ACTIONS(2113), - [anon_sym_component] = ACTIONS(2113), - [anon_sym_abstract] = ACTIONS(2113), - [anon_sym_extends] = ACTIONS(2113), - [anon_sym_interface] = ACTIONS(2113), - [anon_sym_enum] = ACTIONS(2113), + [1044] = { + [sym_comment] = STATE(1044), + [sym_identifier] = ACTIONS(3454), + [anon_sym_export] = ACTIONS(3454), + [anon_sym_default] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_namespace] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_RBRACE] = ACTIONS(3454), + [anon_sym_typeof] = ACTIONS(3454), + [anon_sym_import] = ACTIONS(3454), + [anon_sym_from] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(3454), + [anon_sym_var] = ACTIONS(3454), + [anon_sym_let] = ACTIONS(3454), + [anon_sym_const] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_else] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_switch] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3454), + [anon_sym_await] = ACTIONS(3454), + [anon_sym_of] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_try] = ACTIONS(3454), + [anon_sym_break] = ACTIONS(3454), + [anon_sym_continue] = ACTIONS(3454), + [anon_sym_debugger] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_throw] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym_case] = ACTIONS(3454), + [anon_sym_finally] = ACTIONS(3454), + [anon_sym_yield] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3454), + [anon_sym_LTtemplate_GT] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_class] = ACTIONS(3454), + [anon_sym_async] = ACTIONS(3454), + [anon_sym_function] = ACTIONS(3454), + [anon_sym_new] = ACTIONS(3454), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3454), + [anon_sym_LT] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_void] = ACTIONS(3454), + [anon_sym_delete] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3454), + [sym_number] = ACTIONS(3454), + [sym_private_property_identifier] = ACTIONS(3454), + [sym_this] = ACTIONS(3454), + [sym_super] = ACTIONS(3454), + [sym_true] = ACTIONS(3454), + [sym_false] = ACTIONS(3454), + [sym_null] = ACTIONS(3454), + [sym_undefined] = ACTIONS(3454), + [anon_sym_AT] = ACTIONS(3454), + [anon_sym_static] = ACTIONS(3454), + [anon_sym_readonly] = ACTIONS(3454), + [anon_sym_get] = ACTIONS(3454), + [anon_sym_set] = ACTIONS(3454), + [anon_sym_declare] = ACTIONS(3454), + [anon_sym_public] = ACTIONS(3454), + [anon_sym_private] = ACTIONS(3454), + [anon_sym_protected] = ACTIONS(3454), + [anon_sym_override] = ACTIONS(3454), + [anon_sym_module] = ACTIONS(3454), + [anon_sym_any] = ACTIONS(3454), + [anon_sym_number] = ACTIONS(3454), + [anon_sym_boolean] = ACTIONS(3454), + [anon_sym_string] = ACTIONS(3454), + [anon_sym_symbol] = ACTIONS(3454), + [anon_sym_object] = ACTIONS(3454), + [anon_sym_property] = ACTIONS(3454), + [anon_sym_signal] = ACTIONS(3454), + [anon_sym_on] = ACTIONS(3454), + [anon_sym_required] = ACTIONS(3454), + [anon_sym_component] = ACTIONS(3454), + [anon_sym_abstract] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), + [sym_html_comment] = ACTIONS(5), }, - [614] = { - [sym_identifier] = ACTIONS(2117), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_default] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_EQ] = ACTIONS(2117), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(2117), - [anon_sym_import] = ACTIONS(2117), - [anon_sym_from] = ACTIONS(2117), - [anon_sym_var] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_else] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_RPAREN] = ACTIONS(2119), - [anon_sym_await] = ACTIONS(2117), - [anon_sym_of] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2117), - [anon_sym_with] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_debugger] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_throw] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_COLON] = ACTIONS(2119), - [anon_sym_case] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_RBRACK] = ACTIONS(2119), - [anon_sym_LTtemplate_GT] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2119), - [anon_sym_SLASH] = ACTIONS(2117), - [anon_sym_class] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_function] = ACTIONS(2117), - [anon_sym_EQ_GT] = ACTIONS(2119), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2119), - [anon_sym_void] = ACTIONS(2117), - [anon_sym_delete] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2119), - [anon_sym_DASH_DASH] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2119), - [sym_number] = ACTIONS(2119), - [sym_this] = ACTIONS(2117), - [sym_super] = ACTIONS(2117), - [sym_true] = ACTIONS(2117), - [sym_false] = ACTIONS(2117), - [sym_null] = ACTIONS(2117), - [sym_undefined] = ACTIONS(2117), - [anon_sym_AT] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_readonly] = ACTIONS(2117), - [anon_sym_get] = ACTIONS(2117), - [anon_sym_set] = ACTIONS(2117), - [anon_sym_QMARK] = ACTIONS(2119), - [anon_sym_declare] = ACTIONS(2117), - [anon_sym_public] = ACTIONS(2117), - [anon_sym_private] = ACTIONS(2117), - [anon_sym_protected] = ACTIONS(2117), - [anon_sym_override] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_any] = ACTIONS(2117), - [anon_sym_number] = ACTIONS(2117), - [anon_sym_boolean] = ACTIONS(2117), - [anon_sym_string] = ACTIONS(2117), - [anon_sym_symbol] = ACTIONS(2117), - [anon_sym_property] = ACTIONS(2117), - [anon_sym_signal] = ACTIONS(2117), - [anon_sym_on] = ACTIONS(2117), - [anon_sym_required] = ACTIONS(2117), - [anon_sym_component] = ACTIONS(2117), - [anon_sym_abstract] = ACTIONS(2117), - [anon_sym_extends] = ACTIONS(2117), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), + [1045] = { + [sym_comment] = STATE(1045), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3456), + [sym_html_comment] = ACTIONS(5), }, - [615] = { - [sym_identifier] = ACTIONS(2121), - [anon_sym_export] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_EQ] = ACTIONS(2121), - [anon_sym_namespace] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_COMMA] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_typeof] = ACTIONS(2121), - [anon_sym_import] = ACTIONS(2121), - [anon_sym_from] = ACTIONS(2121), - [anon_sym_var] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2123), - [anon_sym_else] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_switch] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_RPAREN] = ACTIONS(2123), - [anon_sym_await] = ACTIONS(2121), - [anon_sym_of] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_do] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [anon_sym_with] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_debugger] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2123), - [anon_sym_COLON] = ACTIONS(2123), - [anon_sym_case] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2123), - [anon_sym_RBRACK] = ACTIONS(2123), - [anon_sym_LTtemplate_GT] = ACTIONS(2123), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_GT] = ACTIONS(2123), - [anon_sym_SLASH] = ACTIONS(2121), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_function] = ACTIONS(2121), - [anon_sym_EQ_GT] = ACTIONS(2123), - [anon_sym_new] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2123), - [anon_sym_PIPE] = ACTIONS(2123), - [anon_sym_PLUS] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_TILDE] = ACTIONS(2123), - [anon_sym_void] = ACTIONS(2121), - [anon_sym_delete] = ACTIONS(2121), - [anon_sym_PLUS_PLUS] = ACTIONS(2123), - [anon_sym_DASH_DASH] = ACTIONS(2123), - [anon_sym_DQUOTE] = ACTIONS(2123), - [anon_sym_SQUOTE] = ACTIONS(2123), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2123), - [sym_number] = ACTIONS(2123), - [sym_this] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_true] = ACTIONS(2121), - [sym_false] = ACTIONS(2121), - [sym_null] = ACTIONS(2121), - [sym_undefined] = ACTIONS(2121), - [anon_sym_AT] = ACTIONS(2123), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_readonly] = ACTIONS(2121), - [anon_sym_get] = ACTIONS(2121), - [anon_sym_set] = ACTIONS(2121), - [anon_sym_QMARK] = ACTIONS(2123), - [anon_sym_declare] = ACTIONS(2121), - [anon_sym_public] = ACTIONS(2121), - [anon_sym_private] = ACTIONS(2121), - [anon_sym_protected] = ACTIONS(2121), - [anon_sym_override] = ACTIONS(2121), - [anon_sym_module] = ACTIONS(2121), - [anon_sym_any] = ACTIONS(2121), - [anon_sym_number] = ACTIONS(2121), - [anon_sym_boolean] = ACTIONS(2121), - [anon_sym_string] = ACTIONS(2121), - [anon_sym_symbol] = ACTIONS(2121), - [anon_sym_property] = ACTIONS(2121), - [anon_sym_signal] = ACTIONS(2121), - [anon_sym_on] = ACTIONS(2121), - [anon_sym_required] = ACTIONS(2121), - [anon_sym_component] = ACTIONS(2121), - [anon_sym_abstract] = ACTIONS(2121), - [anon_sym_extends] = ACTIONS(2121), - [anon_sym_interface] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), + [1046] = { + [sym_comment] = STATE(1046), + [sym_identifier] = ACTIONS(2430), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_default] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_typeof] = ACTIONS(2430), + [anon_sym_import] = ACTIONS(2430), + [anon_sym_from] = ACTIONS(2430), + [anon_sym_with] = ACTIONS(2430), + [anon_sym_var] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_const] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_else] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_switch] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_await] = ACTIONS(2430), + [anon_sym_of] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2430), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_debugger] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_throw] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_case] = ACTIONS(2430), + [anon_sym_yield] = ACTIONS(2430), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_LTtemplate_GT] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_class] = ACTIONS(2430), + [anon_sym_async] = ACTIONS(2430), + [anon_sym_function] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_using] = ACTIONS(2430), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_SLASH] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_void] = ACTIONS(2430), + [anon_sym_delete] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_number] = ACTIONS(2430), + [sym_private_property_identifier] = ACTIONS(2430), + [sym_this] = ACTIONS(2430), + [sym_super] = ACTIONS(2430), + [sym_true] = ACTIONS(2430), + [sym_false] = ACTIONS(2430), + [sym_null] = ACTIONS(2430), + [sym_undefined] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2430), + [anon_sym_readonly] = ACTIONS(2430), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_declare] = ACTIONS(2430), + [anon_sym_public] = ACTIONS(2430), + [anon_sym_private] = ACTIONS(2430), + [anon_sym_protected] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_any] = ACTIONS(2430), + [anon_sym_number] = ACTIONS(2430), + [anon_sym_boolean] = ACTIONS(2430), + [anon_sym_string] = ACTIONS(2430), + [anon_sym_symbol] = ACTIONS(2430), + [anon_sym_object] = ACTIONS(2430), + [anon_sym_property] = ACTIONS(2430), + [anon_sym_signal] = ACTIONS(2430), + [anon_sym_on] = ACTIONS(2430), + [anon_sym_required] = ACTIONS(2430), + [anon_sym_component] = ACTIONS(2430), + [anon_sym_abstract] = ACTIONS(2430), + [anon_sym_interface] = ACTIONS(2430), + [anon_sym_enum] = ACTIONS(2430), + [sym__automatic_semicolon] = ACTIONS(2434), + [sym_html_comment] = ACTIONS(5), }, - [616] = { - [sym_namespace_export] = STATE(4323), - [sym_export_clause] = STATE(3870), - [sym_declaration] = STATE(801), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_class_declaration] = STATE(785), - [sym_function_declaration] = STATE(785), - [sym_generator_function_declaration] = STATE(785), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(785), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(802), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [aux_sym_export_statement_repeat1] = STATE(3571), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_EQ] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2053), - [anon_sym_namespace] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2131), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2133), - [anon_sym_function] = ACTIONS(2135), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2139), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2087), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1047] = { + [sym_comment] = STATE(1047), + [sym_identifier] = ACTIONS(3458), + [anon_sym_export] = ACTIONS(3458), + [anon_sym_default] = ACTIONS(3458), + [anon_sym_type] = ACTIONS(3458), + [anon_sym_namespace] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(3458), + [anon_sym_typeof] = ACTIONS(3458), + [anon_sym_import] = ACTIONS(3458), + [anon_sym_from] = ACTIONS(3458), + [anon_sym_with] = ACTIONS(3458), + [anon_sym_var] = ACTIONS(3458), + [anon_sym_let] = ACTIONS(3458), + [anon_sym_const] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_else] = ACTIONS(3458), + [anon_sym_if] = ACTIONS(3458), + [anon_sym_switch] = ACTIONS(3458), + [anon_sym_for] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3458), + [anon_sym_await] = ACTIONS(3458), + [anon_sym_of] = ACTIONS(3458), + [anon_sym_while] = ACTIONS(3458), + [anon_sym_do] = ACTIONS(3458), + [anon_sym_try] = ACTIONS(3458), + [anon_sym_break] = ACTIONS(3458), + [anon_sym_continue] = ACTIONS(3458), + [anon_sym_debugger] = ACTIONS(3458), + [anon_sym_return] = ACTIONS(3458), + [anon_sym_throw] = ACTIONS(3458), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_case] = ACTIONS(3458), + [anon_sym_finally] = ACTIONS(3458), + [anon_sym_yield] = ACTIONS(3458), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_LTtemplate_GT] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3458), + [anon_sym_class] = ACTIONS(3458), + [anon_sym_async] = ACTIONS(3458), + [anon_sym_function] = ACTIONS(3458), + [anon_sym_new] = ACTIONS(3458), + [anon_sym_using] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_SLASH] = ACTIONS(3458), + [anon_sym_LT] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_void] = ACTIONS(3458), + [anon_sym_delete] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3458), + [sym_number] = ACTIONS(3458), + [sym_private_property_identifier] = ACTIONS(3458), + [sym_this] = ACTIONS(3458), + [sym_super] = ACTIONS(3458), + [sym_true] = ACTIONS(3458), + [sym_false] = ACTIONS(3458), + [sym_null] = ACTIONS(3458), + [sym_undefined] = ACTIONS(3458), + [anon_sym_AT] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(3458), + [anon_sym_readonly] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3458), + [anon_sym_set] = ACTIONS(3458), + [anon_sym_declare] = ACTIONS(3458), + [anon_sym_public] = ACTIONS(3458), + [anon_sym_private] = ACTIONS(3458), + [anon_sym_protected] = ACTIONS(3458), + [anon_sym_override] = ACTIONS(3458), + [anon_sym_module] = ACTIONS(3458), + [anon_sym_any] = ACTIONS(3458), + [anon_sym_number] = ACTIONS(3458), + [anon_sym_boolean] = ACTIONS(3458), + [anon_sym_string] = ACTIONS(3458), + [anon_sym_symbol] = ACTIONS(3458), + [anon_sym_object] = ACTIONS(3458), + [anon_sym_property] = ACTIONS(3458), + [anon_sym_signal] = ACTIONS(3458), + [anon_sym_on] = ACTIONS(3458), + [anon_sym_required] = ACTIONS(3458), + [anon_sym_component] = ACTIONS(3458), + [anon_sym_abstract] = ACTIONS(3458), + [anon_sym_interface] = ACTIONS(3458), + [anon_sym_enum] = ACTIONS(3458), + [sym_html_comment] = ACTIONS(5), }, - [617] = { - [sym_identifier] = ACTIONS(2141), - [anon_sym_export] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_EQ] = ACTIONS(2141), - [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_COMMA] = ACTIONS(2143), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_typeof] = ACTIONS(2141), - [anon_sym_import] = ACTIONS(2141), - [anon_sym_from] = ACTIONS(2141), - [anon_sym_var] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_else] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_switch] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2143), - [anon_sym_await] = ACTIONS(2141), - [anon_sym_of] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [anon_sym_do] = ACTIONS(2141), - [anon_sym_try] = ACTIONS(2141), - [anon_sym_with] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_debugger] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_throw] = ACTIONS(2141), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_COLON] = ACTIONS(2143), - [anon_sym_case] = ACTIONS(2141), - [anon_sym_yield] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2143), - [anon_sym_RBRACK] = ACTIONS(2143), - [anon_sym_LTtemplate_GT] = ACTIONS(2143), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_GT] = ACTIONS(2143), - [anon_sym_SLASH] = ACTIONS(2141), - [anon_sym_class] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_function] = ACTIONS(2141), - [anon_sym_EQ_GT] = ACTIONS(2143), - [anon_sym_new] = ACTIONS(2141), - [anon_sym_AMP] = ACTIONS(2143), - [anon_sym_PIPE] = ACTIONS(2143), - [anon_sym_PLUS] = ACTIONS(2141), - [anon_sym_DASH] = ACTIONS(2141), - [anon_sym_TILDE] = ACTIONS(2143), - [anon_sym_void] = ACTIONS(2141), - [anon_sym_delete] = ACTIONS(2141), - [anon_sym_PLUS_PLUS] = ACTIONS(2143), - [anon_sym_DASH_DASH] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2143), - [anon_sym_SQUOTE] = ACTIONS(2143), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2143), - [sym_number] = ACTIONS(2143), - [sym_this] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_true] = ACTIONS(2141), - [sym_false] = ACTIONS(2141), - [sym_null] = ACTIONS(2141), - [sym_undefined] = ACTIONS(2141), - [anon_sym_AT] = ACTIONS(2143), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_readonly] = ACTIONS(2141), - [anon_sym_get] = ACTIONS(2141), - [anon_sym_set] = ACTIONS(2141), - [anon_sym_QMARK] = ACTIONS(2143), - [anon_sym_declare] = ACTIONS(2141), - [anon_sym_public] = ACTIONS(2141), - [anon_sym_private] = ACTIONS(2141), - [anon_sym_protected] = ACTIONS(2141), - [anon_sym_override] = ACTIONS(2141), - [anon_sym_module] = ACTIONS(2141), - [anon_sym_any] = ACTIONS(2141), - [anon_sym_number] = ACTIONS(2141), - [anon_sym_boolean] = ACTIONS(2141), - [anon_sym_string] = ACTIONS(2141), - [anon_sym_symbol] = ACTIONS(2141), - [anon_sym_property] = ACTIONS(2141), - [anon_sym_signal] = ACTIONS(2141), - [anon_sym_on] = ACTIONS(2141), - [anon_sym_required] = ACTIONS(2141), - [anon_sym_component] = ACTIONS(2141), - [anon_sym_abstract] = ACTIONS(2141), - [anon_sym_extends] = ACTIONS(2141), - [anon_sym_interface] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), + [1048] = { + [sym_comment] = STATE(1048), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_catch] = ACTIONS(2285), + [anon_sym_finally] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3460), + [sym_html_comment] = ACTIONS(5), }, - [618] = { - [sym_namespace_export] = STATE(4508), - [sym_export_clause] = STATE(3985), - [sym_declaration] = STATE(2701), - [sym_variable_declaration] = STATE(2613), - [sym_lexical_declaration] = STATE(2613), - [sym_class_declaration] = STATE(2613), - [sym_function_declaration] = STATE(2613), - [sym_generator_function_declaration] = STATE(2613), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(2613), - [sym_ambient_declaration] = STATE(2613), - [sym_abstract_class_declaration] = STATE(2613), - [sym_module] = STATE(2613), - [sym_internal_module] = STATE(2700), - [sym_import_alias] = STATE(2613), - [sym_interface_declaration] = STATE(2613), - [sym_enum_declaration] = STATE(2613), - [sym_type_alias_declaration] = STATE(2613), - [aux_sym_export_statement_repeat1] = STATE(3691), - [anon_sym_STAR] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_EQ] = ACTIONS(2151), - [anon_sym_as] = ACTIONS(2153), - [anon_sym_namespace] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_import] = ACTIONS(2157), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2165), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2169), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_declare] = ACTIONS(2171), - [anon_sym_module] = ACTIONS(2173), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_interface] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2179), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1049] = { + [sym_comment] = STATE(1049), + [sym_identifier] = ACTIONS(2402), + [anon_sym_export] = ACTIONS(2402), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_type] = ACTIONS(2402), + [anon_sym_namespace] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2402), + [anon_sym_import] = ACTIONS(2402), + [anon_sym_from] = ACTIONS(2402), + [anon_sym_with] = ACTIONS(2402), + [anon_sym_var] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_switch] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_await] = ACTIONS(2402), + [anon_sym_of] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_debugger] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_throw] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_case] = ACTIONS(2402), + [anon_sym_yield] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LTtemplate_GT] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_class] = ACTIONS(2402), + [anon_sym_async] = ACTIONS(2402), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_new] = ACTIONS(2402), + [anon_sym_using] = ACTIONS(2402), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_SLASH] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_void] = ACTIONS(2402), + [anon_sym_delete] = ACTIONS(2402), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2402), + [sym_number] = ACTIONS(2402), + [sym_private_property_identifier] = ACTIONS(2402), + [sym_this] = ACTIONS(2402), + [sym_super] = ACTIONS(2402), + [sym_true] = ACTIONS(2402), + [sym_false] = ACTIONS(2402), + [sym_null] = ACTIONS(2402), + [sym_undefined] = ACTIONS(2402), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_readonly] = ACTIONS(2402), + [anon_sym_get] = ACTIONS(2402), + [anon_sym_set] = ACTIONS(2402), + [anon_sym_declare] = ACTIONS(2402), + [anon_sym_public] = ACTIONS(2402), + [anon_sym_private] = ACTIONS(2402), + [anon_sym_protected] = ACTIONS(2402), + [anon_sym_override] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_any] = ACTIONS(2402), + [anon_sym_number] = ACTIONS(2402), + [anon_sym_boolean] = ACTIONS(2402), + [anon_sym_string] = ACTIONS(2402), + [anon_sym_symbol] = ACTIONS(2402), + [anon_sym_object] = ACTIONS(2402), + [anon_sym_property] = ACTIONS(2402), + [anon_sym_signal] = ACTIONS(2402), + [anon_sym_on] = ACTIONS(2402), + [anon_sym_required] = ACTIONS(2402), + [anon_sym_component] = ACTIONS(2402), + [anon_sym_abstract] = ACTIONS(2402), + [anon_sym_interface] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [sym__automatic_semicolon] = ACTIONS(2406), + [sym_html_comment] = ACTIONS(5), }, - [619] = { - [aux_sym_object_repeat1] = STATE(4225), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(1788), - [anon_sym_export] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_from] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(1790), - [sym_private_property_identifier] = ACTIONS(1790), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_readonly] = ACTIONS(1788), - [anon_sym_get] = ACTIONS(1788), - [anon_sym_set] = ACTIONS(1788), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(1788), - [anon_sym_public] = ACTIONS(1788), - [anon_sym_private] = ACTIONS(1788), - [anon_sym_protected] = ACTIONS(1788), - [anon_sym_override] = ACTIONS(1788), - [anon_sym_module] = ACTIONS(1788), - [anon_sym_any] = ACTIONS(1788), - [anon_sym_number] = ACTIONS(1788), - [anon_sym_boolean] = ACTIONS(1788), - [anon_sym_string] = ACTIONS(1788), - [anon_sym_symbol] = ACTIONS(1788), - [anon_sym_property] = ACTIONS(1788), - [anon_sym_signal] = ACTIONS(1788), - [anon_sym_on] = ACTIONS(1788), - [anon_sym_required] = ACTIONS(1788), - [anon_sym_component] = ACTIONS(1788), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1050] = { + [sym_comment] = STATE(1050), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_case] = ACTIONS(2356), + [anon_sym_finally] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym_html_comment] = ACTIONS(5), }, - [620] = { - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(1806), - [anon_sym_export] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_from] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(1806), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(1808), - [sym_private_property_identifier] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_readonly] = ACTIONS(1806), - [anon_sym_get] = ACTIONS(1806), - [anon_sym_set] = ACTIONS(1806), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(1806), - [anon_sym_public] = ACTIONS(1806), - [anon_sym_private] = ACTIONS(1806), - [anon_sym_protected] = ACTIONS(1806), - [anon_sym_override] = ACTIONS(1806), - [anon_sym_module] = ACTIONS(1806), - [anon_sym_any] = ACTIONS(1806), - [anon_sym_number] = ACTIONS(1806), - [anon_sym_boolean] = ACTIONS(1806), - [anon_sym_string] = ACTIONS(1806), - [anon_sym_symbol] = ACTIONS(1806), - [anon_sym_property] = ACTIONS(1806), - [anon_sym_signal] = ACTIONS(1806), - [anon_sym_on] = ACTIONS(1806), - [anon_sym_required] = ACTIONS(1806), - [anon_sym_component] = ACTIONS(1806), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1051] = { + [sym_comment] = STATE(1051), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), }, - [621] = { - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(1788), - [anon_sym_export] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_from] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(1790), - [sym_private_property_identifier] = ACTIONS(1790), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_readonly] = ACTIONS(1788), - [anon_sym_get] = ACTIONS(1788), - [anon_sym_set] = ACTIONS(1788), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(1788), - [anon_sym_public] = ACTIONS(1788), - [anon_sym_private] = ACTIONS(1788), - [anon_sym_protected] = ACTIONS(1788), - [anon_sym_override] = ACTIONS(1788), - [anon_sym_module] = ACTIONS(1788), - [anon_sym_any] = ACTIONS(1788), - [anon_sym_number] = ACTIONS(1788), - [anon_sym_boolean] = ACTIONS(1788), - [anon_sym_string] = ACTIONS(1788), - [anon_sym_symbol] = ACTIONS(1788), - [anon_sym_property] = ACTIONS(1788), - [anon_sym_signal] = ACTIONS(1788), - [anon_sym_on] = ACTIONS(1788), - [anon_sym_required] = ACTIONS(1788), - [anon_sym_component] = ACTIONS(1788), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1052] = { + [sym_comment] = STATE(1052), + [sym_identifier] = ACTIONS(3464), + [anon_sym_export] = ACTIONS(3464), + [anon_sym_default] = ACTIONS(3464), + [anon_sym_type] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3464), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_typeof] = ACTIONS(3464), + [anon_sym_import] = ACTIONS(3464), + [anon_sym_from] = ACTIONS(3464), + [anon_sym_with] = ACTIONS(3464), + [anon_sym_var] = ACTIONS(3464), + [anon_sym_let] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3464), + [anon_sym_else] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_await] = ACTIONS(3464), + [anon_sym_of] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_debugger] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_case] = ACTIONS(3464), + [anon_sym_yield] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_LTtemplate_GT] = ACTIONS(3464), + [anon_sym_DQUOTE] = ACTIONS(3464), + [anon_sym_SQUOTE] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_async] = ACTIONS(3464), + [anon_sym_function] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_SLASH] = ACTIONS(3464), + [anon_sym_LT] = ACTIONS(3464), + [anon_sym_TILDE] = ACTIONS(3464), + [anon_sym_void] = ACTIONS(3464), + [anon_sym_delete] = ACTIONS(3464), + [anon_sym_PLUS_PLUS] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3464), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3464), + [sym_number] = ACTIONS(3464), + [sym_private_property_identifier] = ACTIONS(3464), + [sym_this] = ACTIONS(3464), + [sym_super] = ACTIONS(3464), + [sym_true] = ACTIONS(3464), + [sym_false] = ACTIONS(3464), + [sym_null] = ACTIONS(3464), + [sym_undefined] = ACTIONS(3464), + [anon_sym_AT] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_readonly] = ACTIONS(3464), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3464), + [anon_sym_declare] = ACTIONS(3464), + [anon_sym_public] = ACTIONS(3464), + [anon_sym_private] = ACTIONS(3464), + [anon_sym_protected] = ACTIONS(3464), + [anon_sym_override] = ACTIONS(3464), + [anon_sym_module] = ACTIONS(3464), + [anon_sym_any] = ACTIONS(3464), + [anon_sym_number] = ACTIONS(3464), + [anon_sym_boolean] = ACTIONS(3464), + [anon_sym_string] = ACTIONS(3464), + [anon_sym_symbol] = ACTIONS(3464), + [anon_sym_object] = ACTIONS(3464), + [anon_sym_property] = ACTIONS(3464), + [anon_sym_signal] = ACTIONS(3464), + [anon_sym_on] = ACTIONS(3464), + [anon_sym_required] = ACTIONS(3464), + [anon_sym_component] = ACTIONS(3464), + [anon_sym_abstract] = ACTIONS(3464), + [anon_sym_interface] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), + [sym_html_comment] = ACTIONS(5), }, - [622] = { - [aux_sym_object_repeat1] = STATE(4225), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(1806), - [anon_sym_export] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_from] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(1806), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(1808), - [sym_private_property_identifier] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_readonly] = ACTIONS(1806), - [anon_sym_get] = ACTIONS(1806), - [anon_sym_set] = ACTIONS(1806), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(1806), - [anon_sym_public] = ACTIONS(1806), - [anon_sym_private] = ACTIONS(1806), - [anon_sym_protected] = ACTIONS(1806), - [anon_sym_override] = ACTIONS(1806), - [anon_sym_module] = ACTIONS(1806), - [anon_sym_any] = ACTIONS(1806), - [anon_sym_number] = ACTIONS(1806), - [anon_sym_boolean] = ACTIONS(1806), - [anon_sym_string] = ACTIONS(1806), - [anon_sym_symbol] = ACTIONS(1806), - [anon_sym_property] = ACTIONS(1806), - [anon_sym_signal] = ACTIONS(1806), - [anon_sym_on] = ACTIONS(1806), - [anon_sym_required] = ACTIONS(1806), - [anon_sym_component] = ACTIONS(1806), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1053] = { + [sym_comment] = STATE(1053), + [sym_identifier] = ACTIONS(3466), + [anon_sym_export] = ACTIONS(3466), + [anon_sym_default] = ACTIONS(3466), + [anon_sym_type] = ACTIONS(3466), + [anon_sym_namespace] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_RBRACE] = ACTIONS(3466), + [anon_sym_typeof] = ACTIONS(3466), + [anon_sym_import] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_with] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_else] = ACTIONS(3466), + [anon_sym_if] = ACTIONS(3466), + [anon_sym_switch] = ACTIONS(3466), + [anon_sym_for] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(3466), + [anon_sym_await] = ACTIONS(3466), + [anon_sym_of] = ACTIONS(3466), + [anon_sym_while] = ACTIONS(3466), + [anon_sym_do] = ACTIONS(3466), + [anon_sym_try] = ACTIONS(3466), + [anon_sym_break] = ACTIONS(3466), + [anon_sym_continue] = ACTIONS(3466), + [anon_sym_debugger] = ACTIONS(3466), + [anon_sym_return] = ACTIONS(3466), + [anon_sym_throw] = ACTIONS(3466), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym_case] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3466), + [anon_sym_LTtemplate_GT] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_function] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_using] = ACTIONS(3466), + [anon_sym_PLUS] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3466), + [anon_sym_SLASH] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_void] = ACTIONS(3466), + [anon_sym_delete] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3466), + [sym_number] = ACTIONS(3466), + [sym_private_property_identifier] = ACTIONS(3466), + [sym_this] = ACTIONS(3466), + [sym_super] = ACTIONS(3466), + [sym_true] = ACTIONS(3466), + [sym_false] = ACTIONS(3466), + [sym_null] = ACTIONS(3466), + [sym_undefined] = ACTIONS(3466), + [anon_sym_AT] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_get] = ACTIONS(3466), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_declare] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_module] = ACTIONS(3466), + [anon_sym_any] = ACTIONS(3466), + [anon_sym_number] = ACTIONS(3466), + [anon_sym_boolean] = ACTIONS(3466), + [anon_sym_string] = ACTIONS(3466), + [anon_sym_symbol] = ACTIONS(3466), + [anon_sym_object] = ACTIONS(3466), + [anon_sym_property] = ACTIONS(3466), + [anon_sym_signal] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_component] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [sym_html_comment] = ACTIONS(5), }, - [623] = { - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(1806), - [anon_sym_export] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_from] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(1806), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(1808), - [sym_private_property_identifier] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_readonly] = ACTIONS(1806), - [anon_sym_get] = ACTIONS(1806), - [anon_sym_set] = ACTIONS(1806), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(1806), - [anon_sym_public] = ACTIONS(1806), - [anon_sym_private] = ACTIONS(1806), - [anon_sym_protected] = ACTIONS(1806), - [anon_sym_override] = ACTIONS(1806), - [anon_sym_module] = ACTIONS(1806), - [anon_sym_any] = ACTIONS(1806), - [anon_sym_number] = ACTIONS(1806), - [anon_sym_boolean] = ACTIONS(1806), - [anon_sym_string] = ACTIONS(1806), - [anon_sym_symbol] = ACTIONS(1806), - [anon_sym_property] = ACTIONS(1806), - [anon_sym_signal] = ACTIONS(1806), - [anon_sym_on] = ACTIONS(1806), - [anon_sym_required] = ACTIONS(1806), - [anon_sym_component] = ACTIONS(1806), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1054] = { + [sym_comment] = STATE(1054), + [sym_identifier] = ACTIONS(3468), + [anon_sym_export] = ACTIONS(3468), + [anon_sym_default] = ACTIONS(3468), + [anon_sym_type] = ACTIONS(3468), + [anon_sym_namespace] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3468), + [anon_sym_RBRACE] = ACTIONS(3468), + [anon_sym_typeof] = ACTIONS(3468), + [anon_sym_import] = ACTIONS(3468), + [anon_sym_from] = ACTIONS(3468), + [anon_sym_with] = ACTIONS(3468), + [anon_sym_var] = ACTIONS(3468), + [anon_sym_let] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_BANG] = ACTIONS(3468), + [anon_sym_else] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_await] = ACTIONS(3468), + [anon_sym_of] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_debugger] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_case] = ACTIONS(3468), + [anon_sym_yield] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_LTtemplate_GT] = ACTIONS(3468), + [anon_sym_DQUOTE] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_async] = ACTIONS(3468), + [anon_sym_function] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_using] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_SLASH] = ACTIONS(3468), + [anon_sym_LT] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(3468), + [anon_sym_void] = ACTIONS(3468), + [anon_sym_delete] = ACTIONS(3468), + [anon_sym_PLUS_PLUS] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3468), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3468), + [sym_number] = ACTIONS(3468), + [sym_private_property_identifier] = ACTIONS(3468), + [sym_this] = ACTIONS(3468), + [sym_super] = ACTIONS(3468), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [sym_null] = ACTIONS(3468), + [sym_undefined] = ACTIONS(3468), + [anon_sym_AT] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_readonly] = ACTIONS(3468), + [anon_sym_get] = ACTIONS(3468), + [anon_sym_set] = ACTIONS(3468), + [anon_sym_declare] = ACTIONS(3468), + [anon_sym_public] = ACTIONS(3468), + [anon_sym_private] = ACTIONS(3468), + [anon_sym_protected] = ACTIONS(3468), + [anon_sym_override] = ACTIONS(3468), + [anon_sym_module] = ACTIONS(3468), + [anon_sym_any] = ACTIONS(3468), + [anon_sym_number] = ACTIONS(3468), + [anon_sym_boolean] = ACTIONS(3468), + [anon_sym_string] = ACTIONS(3468), + [anon_sym_symbol] = ACTIONS(3468), + [anon_sym_object] = ACTIONS(3468), + [anon_sym_property] = ACTIONS(3468), + [anon_sym_signal] = ACTIONS(3468), + [anon_sym_on] = ACTIONS(3468), + [anon_sym_required] = ACTIONS(3468), + [anon_sym_component] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(3468), + [anon_sym_interface] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), + [sym_html_comment] = ACTIONS(5), }, - [624] = { - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(1806), - [anon_sym_export] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_from] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(1806), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(1806), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1808), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(1808), - [sym_private_property_identifier] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1806), - [anon_sym_readonly] = ACTIONS(1806), - [anon_sym_get] = ACTIONS(1806), - [anon_sym_set] = ACTIONS(1806), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(1806), - [anon_sym_public] = ACTIONS(1806), - [anon_sym_private] = ACTIONS(1806), - [anon_sym_protected] = ACTIONS(1806), - [anon_sym_override] = ACTIONS(1806), - [anon_sym_module] = ACTIONS(1806), - [anon_sym_any] = ACTIONS(1806), - [anon_sym_number] = ACTIONS(1806), - [anon_sym_boolean] = ACTIONS(1806), - [anon_sym_string] = ACTIONS(1806), - [anon_sym_symbol] = ACTIONS(1806), - [anon_sym_property] = ACTIONS(1806), - [anon_sym_signal] = ACTIONS(1806), - [anon_sym_on] = ACTIONS(1806), - [anon_sym_required] = ACTIONS(1806), - [anon_sym_component] = ACTIONS(1806), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1055] = { + [sym_comment] = STATE(1055), + [sym_identifier] = ACTIONS(3470), + [anon_sym_export] = ACTIONS(3470), + [anon_sym_default] = ACTIONS(3470), + [anon_sym_type] = ACTIONS(3470), + [anon_sym_namespace] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_RBRACE] = ACTIONS(3470), + [anon_sym_typeof] = ACTIONS(3470), + [anon_sym_import] = ACTIONS(3470), + [anon_sym_from] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_var] = ACTIONS(3470), + [anon_sym_let] = ACTIONS(3470), + [anon_sym_const] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_else] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_switch] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3470), + [anon_sym_await] = ACTIONS(3470), + [anon_sym_of] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_try] = ACTIONS(3470), + [anon_sym_break] = ACTIONS(3470), + [anon_sym_continue] = ACTIONS(3470), + [anon_sym_debugger] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_throw] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_case] = ACTIONS(3470), + [anon_sym_yield] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3470), + [anon_sym_LTtemplate_GT] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_async] = ACTIONS(3470), + [anon_sym_function] = ACTIONS(3470), + [anon_sym_new] = ACTIONS(3470), + [anon_sym_using] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3470), + [anon_sym_SLASH] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_void] = ACTIONS(3470), + [anon_sym_delete] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3470), + [sym_number] = ACTIONS(3470), + [sym_private_property_identifier] = ACTIONS(3470), + [sym_this] = ACTIONS(3470), + [sym_super] = ACTIONS(3470), + [sym_true] = ACTIONS(3470), + [sym_false] = ACTIONS(3470), + [sym_null] = ACTIONS(3470), + [sym_undefined] = ACTIONS(3470), + [anon_sym_AT] = ACTIONS(3470), + [anon_sym_static] = ACTIONS(3470), + [anon_sym_readonly] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3470), + [anon_sym_set] = ACTIONS(3470), + [anon_sym_declare] = ACTIONS(3470), + [anon_sym_public] = ACTIONS(3470), + [anon_sym_private] = ACTIONS(3470), + [anon_sym_protected] = ACTIONS(3470), + [anon_sym_override] = ACTIONS(3470), + [anon_sym_module] = ACTIONS(3470), + [anon_sym_any] = ACTIONS(3470), + [anon_sym_number] = ACTIONS(3470), + [anon_sym_boolean] = ACTIONS(3470), + [anon_sym_string] = ACTIONS(3470), + [anon_sym_symbol] = ACTIONS(3470), + [anon_sym_object] = ACTIONS(3470), + [anon_sym_property] = ACTIONS(3470), + [anon_sym_signal] = ACTIONS(3470), + [anon_sym_on] = ACTIONS(3470), + [anon_sym_required] = ACTIONS(3470), + [anon_sym_component] = ACTIONS(3470), + [anon_sym_abstract] = ACTIONS(3470), + [anon_sym_interface] = ACTIONS(3470), + [anon_sym_enum] = ACTIONS(3470), + [sym_html_comment] = ACTIONS(5), }, - [625] = { - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(1788), - [anon_sym_export] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_from] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(1790), - [sym_private_property_identifier] = ACTIONS(1790), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_readonly] = ACTIONS(1788), - [anon_sym_get] = ACTIONS(1788), - [anon_sym_set] = ACTIONS(1788), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(1788), - [anon_sym_public] = ACTIONS(1788), - [anon_sym_private] = ACTIONS(1788), - [anon_sym_protected] = ACTIONS(1788), - [anon_sym_override] = ACTIONS(1788), - [anon_sym_module] = ACTIONS(1788), - [anon_sym_any] = ACTIONS(1788), - [anon_sym_number] = ACTIONS(1788), - [anon_sym_boolean] = ACTIONS(1788), - [anon_sym_string] = ACTIONS(1788), - [anon_sym_symbol] = ACTIONS(1788), - [anon_sym_property] = ACTIONS(1788), - [anon_sym_signal] = ACTIONS(1788), - [anon_sym_on] = ACTIONS(1788), - [anon_sym_required] = ACTIONS(1788), - [anon_sym_component] = ACTIONS(1788), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1056] = { + [sym_comment] = STATE(1056), + [sym_identifier] = ACTIONS(3472), + [anon_sym_export] = ACTIONS(3472), + [anon_sym_default] = ACTIONS(3472), + [anon_sym_type] = ACTIONS(3472), + [anon_sym_namespace] = ACTIONS(3472), + [anon_sym_LBRACE] = ACTIONS(3472), + [anon_sym_RBRACE] = ACTIONS(3472), + [anon_sym_typeof] = ACTIONS(3472), + [anon_sym_import] = ACTIONS(3472), + [anon_sym_from] = ACTIONS(3472), + [anon_sym_with] = ACTIONS(3472), + [anon_sym_var] = ACTIONS(3472), + [anon_sym_let] = ACTIONS(3472), + [anon_sym_const] = ACTIONS(3472), + [anon_sym_BANG] = ACTIONS(3472), + [anon_sym_else] = ACTIONS(3472), + [anon_sym_if] = ACTIONS(3472), + [anon_sym_switch] = ACTIONS(3472), + [anon_sym_for] = ACTIONS(3472), + [anon_sym_LPAREN] = ACTIONS(3472), + [anon_sym_await] = ACTIONS(3472), + [anon_sym_of] = ACTIONS(3472), + [anon_sym_while] = ACTIONS(3472), + [anon_sym_do] = ACTIONS(3472), + [anon_sym_try] = ACTIONS(3472), + [anon_sym_break] = ACTIONS(3472), + [anon_sym_continue] = ACTIONS(3472), + [anon_sym_debugger] = ACTIONS(3472), + [anon_sym_return] = ACTIONS(3472), + [anon_sym_throw] = ACTIONS(3472), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym_case] = ACTIONS(3472), + [anon_sym_yield] = ACTIONS(3472), + [anon_sym_LBRACK] = ACTIONS(3472), + [anon_sym_LTtemplate_GT] = ACTIONS(3472), + [anon_sym_DQUOTE] = ACTIONS(3472), + [anon_sym_SQUOTE] = ACTIONS(3472), + [anon_sym_class] = ACTIONS(3472), + [anon_sym_async] = ACTIONS(3472), + [anon_sym_function] = ACTIONS(3472), + [anon_sym_new] = ACTIONS(3472), + [anon_sym_using] = ACTIONS(3472), + [anon_sym_PLUS] = ACTIONS(3472), + [anon_sym_DASH] = ACTIONS(3472), + [anon_sym_SLASH] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(3472), + [anon_sym_TILDE] = ACTIONS(3472), + [anon_sym_void] = ACTIONS(3472), + [anon_sym_delete] = ACTIONS(3472), + [anon_sym_PLUS_PLUS] = ACTIONS(3472), + [anon_sym_DASH_DASH] = ACTIONS(3472), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3472), + [sym_number] = ACTIONS(3472), + [sym_private_property_identifier] = ACTIONS(3472), + [sym_this] = ACTIONS(3472), + [sym_super] = ACTIONS(3472), + [sym_true] = ACTIONS(3472), + [sym_false] = ACTIONS(3472), + [sym_null] = ACTIONS(3472), + [sym_undefined] = ACTIONS(3472), + [anon_sym_AT] = ACTIONS(3472), + [anon_sym_static] = ACTIONS(3472), + [anon_sym_readonly] = ACTIONS(3472), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3472), + [anon_sym_declare] = ACTIONS(3472), + [anon_sym_public] = ACTIONS(3472), + [anon_sym_private] = ACTIONS(3472), + [anon_sym_protected] = ACTIONS(3472), + [anon_sym_override] = ACTIONS(3472), + [anon_sym_module] = ACTIONS(3472), + [anon_sym_any] = ACTIONS(3472), + [anon_sym_number] = ACTIONS(3472), + [anon_sym_boolean] = ACTIONS(3472), + [anon_sym_string] = ACTIONS(3472), + [anon_sym_symbol] = ACTIONS(3472), + [anon_sym_object] = ACTIONS(3472), + [anon_sym_property] = ACTIONS(3472), + [anon_sym_signal] = ACTIONS(3472), + [anon_sym_on] = ACTIONS(3472), + [anon_sym_required] = ACTIONS(3472), + [anon_sym_component] = ACTIONS(3472), + [anon_sym_abstract] = ACTIONS(3472), + [anon_sym_interface] = ACTIONS(3472), + [anon_sym_enum] = ACTIONS(3472), + [sym_html_comment] = ACTIONS(5), }, - [626] = { - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(1788), - [anon_sym_export] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_type] = ACTIONS(1788), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(1788), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_from] = ACTIONS(1788), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(1788), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(26), - [anon_sym_async] = ACTIONS(1788), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [sym_number] = ACTIONS(1790), - [sym_private_property_identifier] = ACTIONS(1790), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_readonly] = ACTIONS(1788), - [anon_sym_get] = ACTIONS(1788), - [anon_sym_set] = ACTIONS(1788), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_declare] = ACTIONS(1788), - [anon_sym_public] = ACTIONS(1788), - [anon_sym_private] = ACTIONS(1788), - [anon_sym_protected] = ACTIONS(1788), - [anon_sym_override] = ACTIONS(1788), - [anon_sym_module] = ACTIONS(1788), - [anon_sym_any] = ACTIONS(1788), - [anon_sym_number] = ACTIONS(1788), - [anon_sym_boolean] = ACTIONS(1788), - [anon_sym_string] = ACTIONS(1788), - [anon_sym_symbol] = ACTIONS(1788), - [anon_sym_property] = ACTIONS(1788), - [anon_sym_signal] = ACTIONS(1788), - [anon_sym_on] = ACTIONS(1788), - [anon_sym_required] = ACTIONS(1788), - [anon_sym_component] = ACTIONS(1788), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1057] = { + [sym_comment] = STATE(1057), + [sym_identifier] = ACTIONS(3474), + [anon_sym_export] = ACTIONS(3474), + [anon_sym_default] = ACTIONS(3474), + [anon_sym_type] = ACTIONS(3474), + [anon_sym_namespace] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3474), + [anon_sym_RBRACE] = ACTIONS(3474), + [anon_sym_typeof] = ACTIONS(3474), + [anon_sym_import] = ACTIONS(3474), + [anon_sym_from] = ACTIONS(3474), + [anon_sym_with] = ACTIONS(3474), + [anon_sym_var] = ACTIONS(3474), + [anon_sym_let] = ACTIONS(3474), + [anon_sym_const] = ACTIONS(3474), + [anon_sym_BANG] = ACTIONS(3474), + [anon_sym_else] = ACTIONS(3474), + [anon_sym_if] = ACTIONS(3474), + [anon_sym_switch] = ACTIONS(3474), + [anon_sym_for] = ACTIONS(3474), + [anon_sym_LPAREN] = ACTIONS(3474), + [anon_sym_await] = ACTIONS(3474), + [anon_sym_of] = ACTIONS(3474), + [anon_sym_while] = ACTIONS(3474), + [anon_sym_do] = ACTIONS(3474), + [anon_sym_try] = ACTIONS(3474), + [anon_sym_break] = ACTIONS(3474), + [anon_sym_continue] = ACTIONS(3474), + [anon_sym_debugger] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3474), + [anon_sym_throw] = ACTIONS(3474), + [anon_sym_SEMI] = ACTIONS(3474), + [anon_sym_case] = ACTIONS(3474), + [anon_sym_yield] = ACTIONS(3474), + [anon_sym_LBRACK] = ACTIONS(3474), + [anon_sym_LTtemplate_GT] = ACTIONS(3474), + [anon_sym_DQUOTE] = ACTIONS(3474), + [anon_sym_SQUOTE] = ACTIONS(3474), + [anon_sym_class] = ACTIONS(3474), + [anon_sym_async] = ACTIONS(3474), + [anon_sym_function] = ACTIONS(3474), + [anon_sym_new] = ACTIONS(3474), + [anon_sym_using] = ACTIONS(3474), + [anon_sym_PLUS] = ACTIONS(3474), + [anon_sym_DASH] = ACTIONS(3474), + [anon_sym_SLASH] = ACTIONS(3474), + [anon_sym_LT] = ACTIONS(3474), + [anon_sym_TILDE] = ACTIONS(3474), + [anon_sym_void] = ACTIONS(3474), + [anon_sym_delete] = ACTIONS(3474), + [anon_sym_PLUS_PLUS] = ACTIONS(3474), + [anon_sym_DASH_DASH] = ACTIONS(3474), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3474), + [sym_number] = ACTIONS(3474), + [sym_private_property_identifier] = ACTIONS(3474), + [sym_this] = ACTIONS(3474), + [sym_super] = ACTIONS(3474), + [sym_true] = ACTIONS(3474), + [sym_false] = ACTIONS(3474), + [sym_null] = ACTIONS(3474), + [sym_undefined] = ACTIONS(3474), + [anon_sym_AT] = ACTIONS(3474), + [anon_sym_static] = ACTIONS(3474), + [anon_sym_readonly] = ACTIONS(3474), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_declare] = ACTIONS(3474), + [anon_sym_public] = ACTIONS(3474), + [anon_sym_private] = ACTIONS(3474), + [anon_sym_protected] = ACTIONS(3474), + [anon_sym_override] = ACTIONS(3474), + [anon_sym_module] = ACTIONS(3474), + [anon_sym_any] = ACTIONS(3474), + [anon_sym_number] = ACTIONS(3474), + [anon_sym_boolean] = ACTIONS(3474), + [anon_sym_string] = ACTIONS(3474), + [anon_sym_symbol] = ACTIONS(3474), + [anon_sym_object] = ACTIONS(3474), + [anon_sym_property] = ACTIONS(3474), + [anon_sym_signal] = ACTIONS(3474), + [anon_sym_on] = ACTIONS(3474), + [anon_sym_required] = ACTIONS(3474), + [anon_sym_component] = ACTIONS(3474), + [anon_sym_abstract] = ACTIONS(3474), + [anon_sym_interface] = ACTIONS(3474), + [anon_sym_enum] = ACTIONS(3474), + [sym_html_comment] = ACTIONS(5), }, - [627] = { - [sym_declaration] = STATE(786), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_class_declaration] = STATE(785), - [sym_function_declaration] = STATE(785), - [sym_generator_function_declaration] = STATE(785), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(785), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(802), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [aux_sym_export_statement_repeat1] = STATE(3571), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_global] = ACTIONS(2103), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2087), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1058] = { + [sym_comment] = STATE(1058), + [sym_identifier] = ACTIONS(3476), + [anon_sym_export] = ACTIONS(3476), + [anon_sym_default] = ACTIONS(3476), + [anon_sym_type] = ACTIONS(3476), + [anon_sym_namespace] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_RBRACE] = ACTIONS(3476), + [anon_sym_typeof] = ACTIONS(3476), + [anon_sym_import] = ACTIONS(3476), + [anon_sym_from] = ACTIONS(3476), + [anon_sym_with] = ACTIONS(3476), + [anon_sym_var] = ACTIONS(3476), + [anon_sym_let] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_else] = ACTIONS(3476), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_await] = ACTIONS(3476), + [anon_sym_of] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [anon_sym_try] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_debugger] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_throw] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_case] = ACTIONS(3476), + [anon_sym_yield] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(3476), + [anon_sym_LTtemplate_GT] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_class] = ACTIONS(3476), + [anon_sym_async] = ACTIONS(3476), + [anon_sym_function] = ACTIONS(3476), + [anon_sym_new] = ACTIONS(3476), + [anon_sym_using] = ACTIONS(3476), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_SLASH] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_void] = ACTIONS(3476), + [anon_sym_delete] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3476), + [sym_number] = ACTIONS(3476), + [sym_private_property_identifier] = ACTIONS(3476), + [sym_this] = ACTIONS(3476), + [sym_super] = ACTIONS(3476), + [sym_true] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [sym_null] = ACTIONS(3476), + [sym_undefined] = ACTIONS(3476), + [anon_sym_AT] = ACTIONS(3476), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_readonly] = ACTIONS(3476), + [anon_sym_get] = ACTIONS(3476), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_declare] = ACTIONS(3476), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_override] = ACTIONS(3476), + [anon_sym_module] = ACTIONS(3476), + [anon_sym_any] = ACTIONS(3476), + [anon_sym_number] = ACTIONS(3476), + [anon_sym_boolean] = ACTIONS(3476), + [anon_sym_string] = ACTIONS(3476), + [anon_sym_symbol] = ACTIONS(3476), + [anon_sym_object] = ACTIONS(3476), + [anon_sym_property] = ACTIONS(3476), + [anon_sym_signal] = ACTIONS(3476), + [anon_sym_on] = ACTIONS(3476), + [anon_sym_required] = ACTIONS(3476), + [anon_sym_component] = ACTIONS(3476), + [anon_sym_abstract] = ACTIONS(3476), + [anon_sym_interface] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), + [sym_html_comment] = ACTIONS(5), }, - [628] = { - [sym_declaration] = STATE(786), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_class_declaration] = STATE(785), - [sym_function_declaration] = STATE(785), - [sym_generator_function_declaration] = STATE(785), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(785), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(802), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [aux_sym_export_statement_repeat1] = STATE(3571), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2127), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2131), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2133), - [anon_sym_function] = ACTIONS(2135), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_global] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2087), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1059] = { + [sym_comment] = STATE(1059), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), }, - [629] = { - [sym__call_signature] = STATE(4705), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2185), - [anon_sym_export] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2187), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2187), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_RBRACE] = ACTIONS(125), - [anon_sym_from] = ACTIONS(2187), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2187), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(125), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2187), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_readonly] = ACTIONS(2187), - [anon_sym_get] = ACTIONS(2187), - [anon_sym_set] = ACTIONS(2187), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_declare] = ACTIONS(2187), - [anon_sym_public] = ACTIONS(2187), - [anon_sym_private] = ACTIONS(2187), - [anon_sym_protected] = ACTIONS(2187), - [anon_sym_override] = ACTIONS(2187), - [anon_sym_module] = ACTIONS(2187), - [anon_sym_any] = ACTIONS(2187), - [anon_sym_number] = ACTIONS(2187), - [anon_sym_boolean] = ACTIONS(2187), - [anon_sym_string] = ACTIONS(2187), - [anon_sym_symbol] = ACTIONS(2187), - [anon_sym_property] = ACTIONS(2187), - [anon_sym_signal] = ACTIONS(2187), - [anon_sym_on] = ACTIONS(2187), - [anon_sym_required] = ACTIONS(2187), - [anon_sym_component] = ACTIONS(2187), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1060] = { + [sym_comment] = STATE(1060), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), }, - [630] = { - [sym__call_signature] = STATE(4705), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2185), - [anon_sym_export] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2187), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2187), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_from] = ACTIONS(2187), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_RPAREN] = ACTIONS(1469), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2187), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2187), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_readonly] = ACTIONS(2187), - [anon_sym_get] = ACTIONS(2187), - [anon_sym_set] = ACTIONS(2187), - [anon_sym_QMARK] = ACTIONS(2197), - [anon_sym_declare] = ACTIONS(2187), - [anon_sym_public] = ACTIONS(2187), - [anon_sym_private] = ACTIONS(2187), - [anon_sym_protected] = ACTIONS(2187), - [anon_sym_override] = ACTIONS(2187), - [anon_sym_module] = ACTIONS(2187), - [anon_sym_any] = ACTIONS(2187), - [anon_sym_number] = ACTIONS(2187), - [anon_sym_boolean] = ACTIONS(2187), - [anon_sym_string] = ACTIONS(2187), - [anon_sym_symbol] = ACTIONS(2187), - [anon_sym_property] = ACTIONS(2187), - [anon_sym_signal] = ACTIONS(2187), - [anon_sym_on] = ACTIONS(2187), - [anon_sym_required] = ACTIONS(2187), - [anon_sym_component] = ACTIONS(2187), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1061] = { + [sym_comment] = STATE(1061), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), }, - [631] = { - [sym_declaration] = STATE(2691), - [sym_variable_declaration] = STATE(2613), - [sym_lexical_declaration] = STATE(2613), - [sym_class_declaration] = STATE(2613), - [sym_function_declaration] = STATE(2613), - [sym_generator_function_declaration] = STATE(2613), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(2613), - [sym_ambient_declaration] = STATE(2613), - [sym_abstract_class_declaration] = STATE(2613), - [sym_module] = STATE(2613), - [sym_internal_module] = STATE(2700), - [sym_import_alias] = STATE(2613), - [sym_interface_declaration] = STATE(2613), - [sym_enum_declaration] = STATE(2613), - [sym_type_alias_declaration] = STATE(2613), - [aux_sym_export_statement_repeat1] = STATE(3691), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2155), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_import] = ACTIONS(2157), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2165), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2169), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_declare] = ACTIONS(2171), - [anon_sym_module] = ACTIONS(2201), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_global] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2179), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1062] = { + [sym_comment] = STATE(1062), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), }, - [632] = { - [sym__call_signature] = STATE(4808), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2207), - [anon_sym_EQ] = ACTIONS(23), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2207), - [anon_sym_COMMA] = ACTIONS(32), - [anon_sym_RBRACE] = ACTIONS(32), - [anon_sym_from] = ACTIONS(2207), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_RPAREN] = ACTIONS(32), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2207), - [anon_sym_COLON] = ACTIONS(32), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(32), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2207), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2207), - [anon_sym_readonly] = ACTIONS(2207), - [anon_sym_get] = ACTIONS(2207), - [anon_sym_set] = ACTIONS(2207), - [anon_sym_QMARK] = ACTIONS(662), - [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_property] = ACTIONS(2207), - [anon_sym_signal] = ACTIONS(2207), - [anon_sym_on] = ACTIONS(2207), - [anon_sym_required] = ACTIONS(2207), - [anon_sym_component] = ACTIONS(2207), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1063] = { + [sym_comment] = STATE(1063), + [sym_identifier] = ACTIONS(3480), + [anon_sym_export] = ACTIONS(3480), + [anon_sym_default] = ACTIONS(3480), + [anon_sym_type] = ACTIONS(3480), + [anon_sym_namespace] = ACTIONS(3480), + [anon_sym_LBRACE] = ACTIONS(3480), + [anon_sym_RBRACE] = ACTIONS(3480), + [anon_sym_typeof] = ACTIONS(3480), + [anon_sym_import] = ACTIONS(3480), + [anon_sym_from] = ACTIONS(3480), + [anon_sym_with] = ACTIONS(3480), + [anon_sym_var] = ACTIONS(3480), + [anon_sym_let] = ACTIONS(3480), + [anon_sym_const] = ACTIONS(3480), + [anon_sym_BANG] = ACTIONS(3480), + [anon_sym_else] = ACTIONS(3480), + [anon_sym_if] = ACTIONS(3480), + [anon_sym_switch] = ACTIONS(3480), + [anon_sym_for] = ACTIONS(3480), + [anon_sym_LPAREN] = ACTIONS(3480), + [anon_sym_await] = ACTIONS(3480), + [anon_sym_of] = ACTIONS(3480), + [anon_sym_while] = ACTIONS(3480), + [anon_sym_do] = ACTIONS(3480), + [anon_sym_try] = ACTIONS(3480), + [anon_sym_break] = ACTIONS(3480), + [anon_sym_continue] = ACTIONS(3480), + [anon_sym_debugger] = ACTIONS(3480), + [anon_sym_return] = ACTIONS(3480), + [anon_sym_throw] = ACTIONS(3480), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym_case] = ACTIONS(3480), + [anon_sym_yield] = ACTIONS(3480), + [anon_sym_LBRACK] = ACTIONS(3480), + [anon_sym_LTtemplate_GT] = ACTIONS(3480), + [anon_sym_DQUOTE] = ACTIONS(3480), + [anon_sym_SQUOTE] = ACTIONS(3480), + [anon_sym_class] = ACTIONS(3480), + [anon_sym_async] = ACTIONS(3480), + [anon_sym_function] = ACTIONS(3480), + [anon_sym_new] = ACTIONS(3480), + [anon_sym_using] = ACTIONS(3480), + [anon_sym_PLUS] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_SLASH] = ACTIONS(3480), + [anon_sym_LT] = ACTIONS(3480), + [anon_sym_TILDE] = ACTIONS(3480), + [anon_sym_void] = ACTIONS(3480), + [anon_sym_delete] = ACTIONS(3480), + [anon_sym_PLUS_PLUS] = ACTIONS(3480), + [anon_sym_DASH_DASH] = ACTIONS(3480), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3480), + [sym_number] = ACTIONS(3480), + [sym_private_property_identifier] = ACTIONS(3480), + [sym_this] = ACTIONS(3480), + [sym_super] = ACTIONS(3480), + [sym_true] = ACTIONS(3480), + [sym_false] = ACTIONS(3480), + [sym_null] = ACTIONS(3480), + [sym_undefined] = ACTIONS(3480), + [anon_sym_AT] = ACTIONS(3480), + [anon_sym_static] = ACTIONS(3480), + [anon_sym_readonly] = ACTIONS(3480), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3480), + [anon_sym_declare] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3480), + [anon_sym_protected] = ACTIONS(3480), + [anon_sym_override] = ACTIONS(3480), + [anon_sym_module] = ACTIONS(3480), + [anon_sym_any] = ACTIONS(3480), + [anon_sym_number] = ACTIONS(3480), + [anon_sym_boolean] = ACTIONS(3480), + [anon_sym_string] = ACTIONS(3480), + [anon_sym_symbol] = ACTIONS(3480), + [anon_sym_object] = ACTIONS(3480), + [anon_sym_property] = ACTIONS(3480), + [anon_sym_signal] = ACTIONS(3480), + [anon_sym_on] = ACTIONS(3480), + [anon_sym_required] = ACTIONS(3480), + [anon_sym_component] = ACTIONS(3480), + [anon_sym_abstract] = ACTIONS(3480), + [anon_sym_interface] = ACTIONS(3480), + [anon_sym_enum] = ACTIONS(3480), + [sym_html_comment] = ACTIONS(5), }, - [633] = { - [sym__call_signature] = STATE(4786), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_initializer] = STATE(2492), - [sym_identifier] = ACTIONS(2209), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_from] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_function] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_readonly] = ACTIONS(2211), - [anon_sym_get] = ACTIONS(2211), - [anon_sym_set] = ACTIONS(2211), - [anon_sym_declare] = ACTIONS(2211), - [anon_sym_public] = ACTIONS(2211), - [anon_sym_private] = ACTIONS(2211), - [anon_sym_protected] = ACTIONS(2211), - [anon_sym_override] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_any] = ACTIONS(2211), - [anon_sym_number] = ACTIONS(2211), - [anon_sym_boolean] = ACTIONS(2211), - [anon_sym_string] = ACTIONS(2211), - [anon_sym_symbol] = ACTIONS(2211), - [anon_sym_property] = ACTIONS(2211), - [anon_sym_signal] = ACTIONS(2211), - [anon_sym_on] = ACTIONS(2211), - [anon_sym_required] = ACTIONS(2211), - [anon_sym_component] = ACTIONS(2211), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1064] = { + [sym_comment] = STATE(1064), + [sym_identifier] = ACTIONS(3482), + [anon_sym_export] = ACTIONS(3482), + [anon_sym_default] = ACTIONS(3482), + [anon_sym_type] = ACTIONS(3482), + [anon_sym_namespace] = ACTIONS(3482), + [anon_sym_LBRACE] = ACTIONS(3482), + [anon_sym_RBRACE] = ACTIONS(3482), + [anon_sym_typeof] = ACTIONS(3482), + [anon_sym_import] = ACTIONS(3482), + [anon_sym_from] = ACTIONS(3482), + [anon_sym_with] = ACTIONS(3482), + [anon_sym_var] = ACTIONS(3482), + [anon_sym_let] = ACTIONS(3482), + [anon_sym_const] = ACTIONS(3482), + [anon_sym_BANG] = ACTIONS(3482), + [anon_sym_else] = ACTIONS(3482), + [anon_sym_if] = ACTIONS(3482), + [anon_sym_switch] = ACTIONS(3482), + [anon_sym_for] = ACTIONS(3482), + [anon_sym_LPAREN] = ACTIONS(3482), + [anon_sym_await] = ACTIONS(3482), + [anon_sym_of] = ACTIONS(3482), + [anon_sym_while] = ACTIONS(3482), + [anon_sym_do] = ACTIONS(3482), + [anon_sym_try] = ACTIONS(3482), + [anon_sym_break] = ACTIONS(3482), + [anon_sym_continue] = ACTIONS(3482), + [anon_sym_debugger] = ACTIONS(3482), + [anon_sym_return] = ACTIONS(3482), + [anon_sym_throw] = ACTIONS(3482), + [anon_sym_SEMI] = ACTIONS(3482), + [anon_sym_case] = ACTIONS(3482), + [anon_sym_yield] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_LTtemplate_GT] = ACTIONS(3482), + [anon_sym_DQUOTE] = ACTIONS(3482), + [anon_sym_SQUOTE] = ACTIONS(3482), + [anon_sym_class] = ACTIONS(3482), + [anon_sym_async] = ACTIONS(3482), + [anon_sym_function] = ACTIONS(3482), + [anon_sym_new] = ACTIONS(3482), + [anon_sym_using] = ACTIONS(3482), + [anon_sym_PLUS] = ACTIONS(3482), + [anon_sym_DASH] = ACTIONS(3482), + [anon_sym_SLASH] = ACTIONS(3482), + [anon_sym_LT] = ACTIONS(3482), + [anon_sym_TILDE] = ACTIONS(3482), + [anon_sym_void] = ACTIONS(3482), + [anon_sym_delete] = ACTIONS(3482), + [anon_sym_PLUS_PLUS] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(3482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3482), + [sym_number] = ACTIONS(3482), + [sym_private_property_identifier] = ACTIONS(3482), + [sym_this] = ACTIONS(3482), + [sym_super] = ACTIONS(3482), + [sym_true] = ACTIONS(3482), + [sym_false] = ACTIONS(3482), + [sym_null] = ACTIONS(3482), + [sym_undefined] = ACTIONS(3482), + [anon_sym_AT] = ACTIONS(3482), + [anon_sym_static] = ACTIONS(3482), + [anon_sym_readonly] = ACTIONS(3482), + [anon_sym_get] = ACTIONS(3482), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_declare] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3482), + [anon_sym_private] = ACTIONS(3482), + [anon_sym_protected] = ACTIONS(3482), + [anon_sym_override] = ACTIONS(3482), + [anon_sym_module] = ACTIONS(3482), + [anon_sym_any] = ACTIONS(3482), + [anon_sym_number] = ACTIONS(3482), + [anon_sym_boolean] = ACTIONS(3482), + [anon_sym_string] = ACTIONS(3482), + [anon_sym_symbol] = ACTIONS(3482), + [anon_sym_object] = ACTIONS(3482), + [anon_sym_property] = ACTIONS(3482), + [anon_sym_signal] = ACTIONS(3482), + [anon_sym_on] = ACTIONS(3482), + [anon_sym_required] = ACTIONS(3482), + [anon_sym_component] = ACTIONS(3482), + [anon_sym_abstract] = ACTIONS(3482), + [anon_sym_interface] = ACTIONS(3482), + [anon_sym_enum] = ACTIONS(3482), + [sym_html_comment] = ACTIONS(5), }, - [634] = { - [sym__call_signature] = STATE(4808), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2207), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2207), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(65), - [anon_sym_from] = ACTIONS(2207), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_RPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2207), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2207), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [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_property] = ACTIONS(2207), - [anon_sym_signal] = ACTIONS(2207), - [anon_sym_on] = ACTIONS(2207), - [anon_sym_required] = ACTIONS(2207), - [anon_sym_component] = ACTIONS(2207), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1065] = { + [sym_comment] = STATE(1065), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), }, - [635] = { - [sym__call_signature] = STATE(4786), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_initializer] = STATE(4328), - [sym_identifier] = ACTIONS(2209), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_from] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_function] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_readonly] = ACTIONS(2211), - [anon_sym_get] = ACTIONS(2211), - [anon_sym_set] = ACTIONS(2211), - [anon_sym_declare] = ACTIONS(2211), - [anon_sym_public] = ACTIONS(2211), - [anon_sym_private] = ACTIONS(2211), - [anon_sym_protected] = ACTIONS(2211), - [anon_sym_override] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_any] = ACTIONS(2211), - [anon_sym_number] = ACTIONS(2211), - [anon_sym_boolean] = ACTIONS(2211), - [anon_sym_string] = ACTIONS(2211), - [anon_sym_symbol] = ACTIONS(2211), - [anon_sym_property] = ACTIONS(2211), - [anon_sym_signal] = ACTIONS(2211), - [anon_sym_on] = ACTIONS(2211), - [anon_sym_required] = ACTIONS(2211), - [anon_sym_component] = ACTIONS(2211), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1066] = { + [sym_comment] = STATE(1066), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), }, - [636] = { - [sym__call_signature] = STATE(4808), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2207), - [anon_sym_EQ] = ACTIONS(1396), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2207), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(65), - [anon_sym_from] = ACTIONS(2207), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_RPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2207), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2207), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [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_property] = ACTIONS(2207), - [anon_sym_signal] = ACTIONS(2207), - [anon_sym_on] = ACTIONS(2207), - [anon_sym_required] = ACTIONS(2207), - [anon_sym_component] = ACTIONS(2207), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1067] = { + [sym_comment] = STATE(1067), + [sym_identifier] = ACTIONS(3484), + [anon_sym_export] = ACTIONS(3484), + [anon_sym_default] = ACTIONS(3484), + [anon_sym_type] = ACTIONS(3484), + [anon_sym_namespace] = ACTIONS(3484), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_RBRACE] = ACTIONS(3484), + [anon_sym_typeof] = ACTIONS(3484), + [anon_sym_import] = ACTIONS(3484), + [anon_sym_from] = ACTIONS(3484), + [anon_sym_with] = ACTIONS(3484), + [anon_sym_var] = ACTIONS(3484), + [anon_sym_let] = ACTIONS(3484), + [anon_sym_const] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_else] = ACTIONS(3484), + [anon_sym_if] = ACTIONS(3484), + [anon_sym_switch] = ACTIONS(3484), + [anon_sym_for] = ACTIONS(3484), + [anon_sym_LPAREN] = ACTIONS(3484), + [anon_sym_await] = ACTIONS(3484), + [anon_sym_of] = ACTIONS(3484), + [anon_sym_while] = ACTIONS(3484), + [anon_sym_do] = ACTIONS(3484), + [anon_sym_try] = ACTIONS(3484), + [anon_sym_break] = ACTIONS(3484), + [anon_sym_continue] = ACTIONS(3484), + [anon_sym_debugger] = ACTIONS(3484), + [anon_sym_return] = ACTIONS(3484), + [anon_sym_throw] = ACTIONS(3484), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_case] = ACTIONS(3484), + [anon_sym_yield] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3484), + [anon_sym_LTtemplate_GT] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3484), + [anon_sym_class] = ACTIONS(3484), + [anon_sym_async] = ACTIONS(3484), + [anon_sym_function] = ACTIONS(3484), + [anon_sym_new] = ACTIONS(3484), + [anon_sym_using] = ACTIONS(3484), + [anon_sym_PLUS] = ACTIONS(3484), + [anon_sym_DASH] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3484), + [anon_sym_LT] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_void] = ACTIONS(3484), + [anon_sym_delete] = ACTIONS(3484), + [anon_sym_PLUS_PLUS] = ACTIONS(3484), + [anon_sym_DASH_DASH] = ACTIONS(3484), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3484), + [sym_number] = ACTIONS(3484), + [sym_private_property_identifier] = ACTIONS(3484), + [sym_this] = ACTIONS(3484), + [sym_super] = ACTIONS(3484), + [sym_true] = ACTIONS(3484), + [sym_false] = ACTIONS(3484), + [sym_null] = ACTIONS(3484), + [sym_undefined] = ACTIONS(3484), + [anon_sym_AT] = ACTIONS(3484), + [anon_sym_static] = ACTIONS(3484), + [anon_sym_readonly] = ACTIONS(3484), + [anon_sym_get] = ACTIONS(3484), + [anon_sym_set] = ACTIONS(3484), + [anon_sym_declare] = ACTIONS(3484), + [anon_sym_public] = ACTIONS(3484), + [anon_sym_private] = ACTIONS(3484), + [anon_sym_protected] = ACTIONS(3484), + [anon_sym_override] = ACTIONS(3484), + [anon_sym_module] = ACTIONS(3484), + [anon_sym_any] = ACTIONS(3484), + [anon_sym_number] = ACTIONS(3484), + [anon_sym_boolean] = ACTIONS(3484), + [anon_sym_string] = ACTIONS(3484), + [anon_sym_symbol] = ACTIONS(3484), + [anon_sym_object] = ACTIONS(3484), + [anon_sym_property] = ACTIONS(3484), + [anon_sym_signal] = ACTIONS(3484), + [anon_sym_on] = ACTIONS(3484), + [anon_sym_required] = ACTIONS(3484), + [anon_sym_component] = ACTIONS(3484), + [anon_sym_abstract] = ACTIONS(3484), + [anon_sym_interface] = ACTIONS(3484), + [anon_sym_enum] = ACTIONS(3484), + [sym_html_comment] = ACTIONS(5), }, - [637] = { - [sym_declaration] = STATE(2691), - [sym_variable_declaration] = STATE(2613), - [sym_lexical_declaration] = STATE(2613), - [sym_class_declaration] = STATE(2613), - [sym_function_declaration] = STATE(2613), - [sym_generator_function_declaration] = STATE(2613), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(2613), - [sym_ambient_declaration] = STATE(2613), - [sym_abstract_class_declaration] = STATE(2613), - [sym_module] = STATE(2613), - [sym_internal_module] = STATE(2700), - [sym_import_alias] = STATE(2613), - [sym_interface_declaration] = STATE(2613), - [sym_enum_declaration] = STATE(2613), - [sym_type_alias_declaration] = STATE(2613), - [aux_sym_export_statement_repeat1] = STATE(3691), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_EQ] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2155), - [anon_sym_import] = ACTIONS(2157), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2165), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2169), - [anon_sym_EQ_GT] = ACTIONS(1669), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_declare] = ACTIONS(2171), - [anon_sym_module] = ACTIONS(2201), - [anon_sym_abstract] = ACTIONS(2175), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_global] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2179), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1068] = { + [sym_comment] = STATE(1068), + [sym_identifier] = ACTIONS(3486), + [anon_sym_export] = ACTIONS(3486), + [anon_sym_default] = ACTIONS(3486), + [anon_sym_type] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3486), + [anon_sym_RBRACE] = ACTIONS(3486), + [anon_sym_typeof] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_from] = ACTIONS(3486), + [anon_sym_with] = ACTIONS(3486), + [anon_sym_var] = ACTIONS(3486), + [anon_sym_let] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_BANG] = ACTIONS(3486), + [anon_sym_else] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_await] = ACTIONS(3486), + [anon_sym_of] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_debugger] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3486), + [anon_sym_case] = ACTIONS(3486), + [anon_sym_yield] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_LTtemplate_GT] = ACTIONS(3486), + [anon_sym_DQUOTE] = ACTIONS(3486), + [anon_sym_SQUOTE] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_async] = ACTIONS(3486), + [anon_sym_function] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_using] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_SLASH] = ACTIONS(3486), + [anon_sym_LT] = ACTIONS(3486), + [anon_sym_TILDE] = ACTIONS(3486), + [anon_sym_void] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_PLUS_PLUS] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3486), + [sym_number] = ACTIONS(3486), + [sym_private_property_identifier] = ACTIONS(3486), + [sym_this] = ACTIONS(3486), + [sym_super] = ACTIONS(3486), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [sym_null] = ACTIONS(3486), + [sym_undefined] = ACTIONS(3486), + [anon_sym_AT] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_readonly] = ACTIONS(3486), + [anon_sym_get] = ACTIONS(3486), + [anon_sym_set] = ACTIONS(3486), + [anon_sym_declare] = ACTIONS(3486), + [anon_sym_public] = ACTIONS(3486), + [anon_sym_private] = ACTIONS(3486), + [anon_sym_protected] = ACTIONS(3486), + [anon_sym_override] = ACTIONS(3486), + [anon_sym_module] = ACTIONS(3486), + [anon_sym_any] = ACTIONS(3486), + [anon_sym_number] = ACTIONS(3486), + [anon_sym_boolean] = ACTIONS(3486), + [anon_sym_string] = ACTIONS(3486), + [anon_sym_symbol] = ACTIONS(3486), + [anon_sym_object] = ACTIONS(3486), + [anon_sym_property] = ACTIONS(3486), + [anon_sym_signal] = ACTIONS(3486), + [anon_sym_on] = ACTIONS(3486), + [anon_sym_required] = ACTIONS(3486), + [anon_sym_component] = ACTIONS(3486), + [anon_sym_abstract] = ACTIONS(3486), + [anon_sym_interface] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), + [sym_html_comment] = ACTIONS(5), }, - [638] = { - [sym__call_signature] = STATE(4808), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_ui_object_initializer] = STATE(2492), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2207), - [anon_sym_EQ] = ACTIONS(23), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(32), - [anon_sym_from] = ACTIONS(2207), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(32), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_async] = ACTIONS(2207), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [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_property] = ACTIONS(2207), - [anon_sym_signal] = ACTIONS(2207), - [anon_sym_on] = ACTIONS(2207), - [anon_sym_required] = ACTIONS(2207), - [anon_sym_component] = ACTIONS(2207), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1069] = { + [sym_comment] = STATE(1069), + [sym_identifier] = ACTIONS(3488), + [anon_sym_export] = ACTIONS(3488), + [anon_sym_default] = ACTIONS(3488), + [anon_sym_type] = ACTIONS(3488), + [anon_sym_namespace] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_RBRACE] = ACTIONS(3488), + [anon_sym_typeof] = ACTIONS(3488), + [anon_sym_import] = ACTIONS(3488), + [anon_sym_from] = ACTIONS(3488), + [anon_sym_with] = ACTIONS(3488), + [anon_sym_var] = ACTIONS(3488), + [anon_sym_let] = ACTIONS(3488), + [anon_sym_const] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_else] = ACTIONS(3488), + [anon_sym_if] = ACTIONS(3488), + [anon_sym_switch] = ACTIONS(3488), + [anon_sym_for] = ACTIONS(3488), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_await] = ACTIONS(3488), + [anon_sym_of] = ACTIONS(3488), + [anon_sym_while] = ACTIONS(3488), + [anon_sym_do] = ACTIONS(3488), + [anon_sym_try] = ACTIONS(3488), + [anon_sym_break] = ACTIONS(3488), + [anon_sym_continue] = ACTIONS(3488), + [anon_sym_debugger] = ACTIONS(3488), + [anon_sym_return] = ACTIONS(3488), + [anon_sym_throw] = ACTIONS(3488), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym_case] = ACTIONS(3488), + [anon_sym_yield] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3488), + [anon_sym_LTtemplate_GT] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [anon_sym_SQUOTE] = ACTIONS(3488), + [anon_sym_class] = ACTIONS(3488), + [anon_sym_async] = ACTIONS(3488), + [anon_sym_function] = ACTIONS(3488), + [anon_sym_new] = ACTIONS(3488), + [anon_sym_using] = ACTIONS(3488), + [anon_sym_PLUS] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3488), + [anon_sym_SLASH] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_void] = ACTIONS(3488), + [anon_sym_delete] = ACTIONS(3488), + [anon_sym_PLUS_PLUS] = ACTIONS(3488), + [anon_sym_DASH_DASH] = ACTIONS(3488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3488), + [sym_number] = ACTIONS(3488), + [sym_private_property_identifier] = ACTIONS(3488), + [sym_this] = ACTIONS(3488), + [sym_super] = ACTIONS(3488), + [sym_true] = ACTIONS(3488), + [sym_false] = ACTIONS(3488), + [sym_null] = ACTIONS(3488), + [sym_undefined] = ACTIONS(3488), + [anon_sym_AT] = ACTIONS(3488), + [anon_sym_static] = ACTIONS(3488), + [anon_sym_readonly] = ACTIONS(3488), + [anon_sym_get] = ACTIONS(3488), + [anon_sym_set] = ACTIONS(3488), + [anon_sym_declare] = ACTIONS(3488), + [anon_sym_public] = ACTIONS(3488), + [anon_sym_private] = ACTIONS(3488), + [anon_sym_protected] = ACTIONS(3488), + [anon_sym_override] = ACTIONS(3488), + [anon_sym_module] = ACTIONS(3488), + [anon_sym_any] = ACTIONS(3488), + [anon_sym_number] = ACTIONS(3488), + [anon_sym_boolean] = ACTIONS(3488), + [anon_sym_string] = ACTIONS(3488), + [anon_sym_symbol] = ACTIONS(3488), + [anon_sym_object] = ACTIONS(3488), + [anon_sym_property] = ACTIONS(3488), + [anon_sym_signal] = ACTIONS(3488), + [anon_sym_on] = ACTIONS(3488), + [anon_sym_required] = ACTIONS(3488), + [anon_sym_component] = ACTIONS(3488), + [anon_sym_abstract] = ACTIONS(3488), + [anon_sym_interface] = ACTIONS(3488), + [anon_sym_enum] = ACTIONS(3488), + [sym_html_comment] = ACTIONS(5), }, - [639] = { - [sym_declaration] = STATE(786), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_class_declaration] = STATE(785), - [sym_function_declaration] = STATE(785), - [sym_generator_function_declaration] = STATE(785), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(785), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(802), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [aux_sym_export_statement_repeat1] = STATE(3571), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_EQ] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2127), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2133), - [anon_sym_function] = ACTIONS(2135), - [anon_sym_EQ_GT] = ACTIONS(1669), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_declare] = ACTIONS(2137), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_global] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2087), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1070] = { + [sym_comment] = STATE(1070), + [sym_identifier] = ACTIONS(3490), + [anon_sym_export] = ACTIONS(3490), + [anon_sym_default] = ACTIONS(3490), + [anon_sym_type] = ACTIONS(3490), + [anon_sym_namespace] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3490), + [anon_sym_RBRACE] = ACTIONS(3490), + [anon_sym_typeof] = ACTIONS(3490), + [anon_sym_import] = ACTIONS(3490), + [anon_sym_from] = ACTIONS(3490), + [anon_sym_with] = ACTIONS(3490), + [anon_sym_var] = ACTIONS(3490), + [anon_sym_let] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(3490), + [anon_sym_else] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_switch] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3490), + [anon_sym_await] = ACTIONS(3490), + [anon_sym_of] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_debugger] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_throw] = ACTIONS(3490), + [anon_sym_SEMI] = ACTIONS(3490), + [anon_sym_case] = ACTIONS(3490), + [anon_sym_yield] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_LTtemplate_GT] = ACTIONS(3490), + [anon_sym_DQUOTE] = ACTIONS(3490), + [anon_sym_SQUOTE] = ACTIONS(3490), + [anon_sym_class] = ACTIONS(3490), + [anon_sym_async] = ACTIONS(3490), + [anon_sym_function] = ACTIONS(3490), + [anon_sym_new] = ACTIONS(3490), + [anon_sym_using] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3490), + [anon_sym_DASH] = ACTIONS(3490), + [anon_sym_SLASH] = ACTIONS(3490), + [anon_sym_LT] = ACTIONS(3490), + [anon_sym_TILDE] = ACTIONS(3490), + [anon_sym_void] = ACTIONS(3490), + [anon_sym_delete] = ACTIONS(3490), + [anon_sym_PLUS_PLUS] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3490), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3490), + [sym_number] = ACTIONS(3490), + [sym_private_property_identifier] = ACTIONS(3490), + [sym_this] = ACTIONS(3490), + [sym_super] = ACTIONS(3490), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [sym_null] = ACTIONS(3490), + [sym_undefined] = ACTIONS(3490), + [anon_sym_AT] = ACTIONS(3490), + [anon_sym_static] = ACTIONS(3490), + [anon_sym_readonly] = ACTIONS(3490), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3490), + [anon_sym_declare] = ACTIONS(3490), + [anon_sym_public] = ACTIONS(3490), + [anon_sym_private] = ACTIONS(3490), + [anon_sym_protected] = ACTIONS(3490), + [anon_sym_override] = ACTIONS(3490), + [anon_sym_module] = ACTIONS(3490), + [anon_sym_any] = ACTIONS(3490), + [anon_sym_number] = ACTIONS(3490), + [anon_sym_boolean] = ACTIONS(3490), + [anon_sym_string] = ACTIONS(3490), + [anon_sym_symbol] = ACTIONS(3490), + [anon_sym_object] = ACTIONS(3490), + [anon_sym_property] = ACTIONS(3490), + [anon_sym_signal] = ACTIONS(3490), + [anon_sym_on] = ACTIONS(3490), + [anon_sym_required] = ACTIONS(3490), + [anon_sym_component] = ACTIONS(3490), + [anon_sym_abstract] = ACTIONS(3490), + [anon_sym_interface] = ACTIONS(3490), + [anon_sym_enum] = ACTIONS(3490), + [sym_html_comment] = ACTIONS(5), }, - [640] = { - [sym_declaration] = STATE(3768), - [sym_variable_declaration] = STATE(3636), - [sym_lexical_declaration] = STATE(3636), - [sym_class_declaration] = STATE(3636), - [sym_function_declaration] = STATE(3636), - [sym_generator_function_declaration] = STATE(3636), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(3636), - [sym_ambient_declaration] = STATE(3636), - [sym_abstract_class_declaration] = STATE(3636), - [sym_module] = STATE(3636), - [sym_internal_module] = STATE(3757), - [sym_import_alias] = STATE(3636), - [sym_interface_declaration] = STATE(3636), - [sym_enum_declaration] = STATE(3636), - [sym_type_alias_declaration] = STATE(3636), - [aux_sym_export_statement_repeat1] = STATE(3633), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2224), - [anon_sym_import] = ACTIONS(2226), - [anon_sym_var] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2232), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2234), - [anon_sym_async] = ACTIONS(2236), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_EQ_GT] = ACTIONS(1669), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_declare] = ACTIONS(2240), - [anon_sym_module] = ACTIONS(2242), - [anon_sym_abstract] = ACTIONS(2244), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_global] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2248), - [anon_sym_enum] = ACTIONS(2250), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1071] = { + [sym_comment] = STATE(1071), + [sym_identifier] = ACTIONS(3492), + [anon_sym_export] = ACTIONS(3492), + [anon_sym_default] = ACTIONS(3492), + [anon_sym_type] = ACTIONS(3492), + [anon_sym_namespace] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_RBRACE] = ACTIONS(3492), + [anon_sym_typeof] = ACTIONS(3492), + [anon_sym_import] = ACTIONS(3492), + [anon_sym_from] = ACTIONS(3492), + [anon_sym_with] = ACTIONS(3492), + [anon_sym_var] = ACTIONS(3492), + [anon_sym_let] = ACTIONS(3492), + [anon_sym_const] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_else] = ACTIONS(3492), + [anon_sym_if] = ACTIONS(3492), + [anon_sym_switch] = ACTIONS(3492), + [anon_sym_for] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym_await] = ACTIONS(3492), + [anon_sym_of] = ACTIONS(3492), + [anon_sym_while] = ACTIONS(3492), + [anon_sym_do] = ACTIONS(3492), + [anon_sym_try] = ACTIONS(3492), + [anon_sym_break] = ACTIONS(3492), + [anon_sym_continue] = ACTIONS(3492), + [anon_sym_debugger] = ACTIONS(3492), + [anon_sym_return] = ACTIONS(3492), + [anon_sym_throw] = ACTIONS(3492), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_case] = ACTIONS(3492), + [anon_sym_yield] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3492), + [anon_sym_LTtemplate_GT] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3492), + [anon_sym_class] = ACTIONS(3492), + [anon_sym_async] = ACTIONS(3492), + [anon_sym_function] = ACTIONS(3492), + [anon_sym_new] = ACTIONS(3492), + [anon_sym_using] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_SLASH] = ACTIONS(3492), + [anon_sym_LT] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_void] = ACTIONS(3492), + [anon_sym_delete] = ACTIONS(3492), + [anon_sym_PLUS_PLUS] = ACTIONS(3492), + [anon_sym_DASH_DASH] = ACTIONS(3492), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3492), + [sym_number] = ACTIONS(3492), + [sym_private_property_identifier] = ACTIONS(3492), + [sym_this] = ACTIONS(3492), + [sym_super] = ACTIONS(3492), + [sym_true] = ACTIONS(3492), + [sym_false] = ACTIONS(3492), + [sym_null] = ACTIONS(3492), + [sym_undefined] = ACTIONS(3492), + [anon_sym_AT] = ACTIONS(3492), + [anon_sym_static] = ACTIONS(3492), + [anon_sym_readonly] = ACTIONS(3492), + [anon_sym_get] = ACTIONS(3492), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_declare] = ACTIONS(3492), + [anon_sym_public] = ACTIONS(3492), + [anon_sym_private] = ACTIONS(3492), + [anon_sym_protected] = ACTIONS(3492), + [anon_sym_override] = ACTIONS(3492), + [anon_sym_module] = ACTIONS(3492), + [anon_sym_any] = ACTIONS(3492), + [anon_sym_number] = ACTIONS(3492), + [anon_sym_boolean] = ACTIONS(3492), + [anon_sym_string] = ACTIONS(3492), + [anon_sym_symbol] = ACTIONS(3492), + [anon_sym_object] = ACTIONS(3492), + [anon_sym_property] = ACTIONS(3492), + [anon_sym_signal] = ACTIONS(3492), + [anon_sym_on] = ACTIONS(3492), + [anon_sym_required] = ACTIONS(3492), + [anon_sym_component] = ACTIONS(3492), + [anon_sym_abstract] = ACTIONS(3492), + [anon_sym_interface] = ACTIONS(3492), + [anon_sym_enum] = ACTIONS(3492), + [sym_html_comment] = ACTIONS(5), }, - [641] = { - [sym__call_signature] = STATE(4786), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2209), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2211), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_from] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_function] = ACTIONS(2031), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_readonly] = ACTIONS(2211), - [anon_sym_get] = ACTIONS(2211), - [anon_sym_set] = ACTIONS(2211), - [anon_sym_declare] = ACTIONS(2211), - [anon_sym_public] = ACTIONS(2211), - [anon_sym_private] = ACTIONS(2211), - [anon_sym_protected] = ACTIONS(2211), - [anon_sym_override] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_any] = ACTIONS(2211), - [anon_sym_number] = ACTIONS(2211), - [anon_sym_boolean] = ACTIONS(2211), - [anon_sym_string] = ACTIONS(2211), - [anon_sym_symbol] = ACTIONS(2211), - [anon_sym_property] = ACTIONS(2211), - [anon_sym_signal] = ACTIONS(2211), - [anon_sym_on] = ACTIONS(2211), - [anon_sym_required] = ACTIONS(2211), - [anon_sym_component] = ACTIONS(2211), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1072] = { + [sym_comment] = STATE(1072), + [sym_identifier] = ACTIONS(3494), + [anon_sym_export] = ACTIONS(3494), + [anon_sym_default] = ACTIONS(3494), + [anon_sym_type] = ACTIONS(3494), + [anon_sym_namespace] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(3494), + [anon_sym_RBRACE] = ACTIONS(3494), + [anon_sym_typeof] = ACTIONS(3494), + [anon_sym_import] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_with] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_else] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3494), + [anon_sym_switch] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(3494), + [anon_sym_await] = ACTIONS(3494), + [anon_sym_of] = ACTIONS(3494), + [anon_sym_while] = ACTIONS(3494), + [anon_sym_do] = ACTIONS(3494), + [anon_sym_try] = ACTIONS(3494), + [anon_sym_break] = ACTIONS(3494), + [anon_sym_continue] = ACTIONS(3494), + [anon_sym_debugger] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3494), + [anon_sym_throw] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(3494), + [anon_sym_case] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_LTtemplate_GT] = ACTIONS(3494), + [anon_sym_DQUOTE] = ACTIONS(3494), + [anon_sym_SQUOTE] = ACTIONS(3494), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_function] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_using] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_SLASH] = ACTIONS(3494), + [anon_sym_LT] = ACTIONS(3494), + [anon_sym_TILDE] = ACTIONS(3494), + [anon_sym_void] = ACTIONS(3494), + [anon_sym_delete] = ACTIONS(3494), + [anon_sym_PLUS_PLUS] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3494), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3494), + [sym_number] = ACTIONS(3494), + [sym_private_property_identifier] = ACTIONS(3494), + [sym_this] = ACTIONS(3494), + [sym_super] = ACTIONS(3494), + [sym_true] = ACTIONS(3494), + [sym_false] = ACTIONS(3494), + [sym_null] = ACTIONS(3494), + [sym_undefined] = ACTIONS(3494), + [anon_sym_AT] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_get] = ACTIONS(3494), + [anon_sym_set] = ACTIONS(3494), + [anon_sym_declare] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_module] = ACTIONS(3494), + [anon_sym_any] = ACTIONS(3494), + [anon_sym_number] = ACTIONS(3494), + [anon_sym_boolean] = ACTIONS(3494), + [anon_sym_string] = ACTIONS(3494), + [anon_sym_symbol] = ACTIONS(3494), + [anon_sym_object] = ACTIONS(3494), + [anon_sym_property] = ACTIONS(3494), + [anon_sym_signal] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_component] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [sym_html_comment] = ACTIONS(5), }, - [642] = { - [sym__call_signature] = STATE(4786), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2209), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2211), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(65), - [anon_sym_from] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_function] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_readonly] = ACTIONS(2211), - [anon_sym_get] = ACTIONS(2211), - [anon_sym_set] = ACTIONS(2211), - [anon_sym_declare] = ACTIONS(2211), - [anon_sym_public] = ACTIONS(2211), - [anon_sym_private] = ACTIONS(2211), - [anon_sym_protected] = ACTIONS(2211), - [anon_sym_override] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_any] = ACTIONS(2211), - [anon_sym_number] = ACTIONS(2211), - [anon_sym_boolean] = ACTIONS(2211), - [anon_sym_string] = ACTIONS(2211), - [anon_sym_symbol] = ACTIONS(2211), - [anon_sym_property] = ACTIONS(2211), - [anon_sym_signal] = ACTIONS(2211), - [anon_sym_on] = ACTIONS(2211), - [anon_sym_required] = ACTIONS(2211), - [anon_sym_component] = ACTIONS(2211), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1073] = { + [sym_comment] = STATE(1073), + [sym_identifier] = ACTIONS(3496), + [anon_sym_export] = ACTIONS(3496), + [anon_sym_default] = ACTIONS(3496), + [anon_sym_type] = ACTIONS(3496), + [anon_sym_namespace] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_RBRACE] = ACTIONS(3496), + [anon_sym_typeof] = ACTIONS(3496), + [anon_sym_import] = ACTIONS(3496), + [anon_sym_from] = ACTIONS(3496), + [anon_sym_with] = ACTIONS(3496), + [anon_sym_var] = ACTIONS(3496), + [anon_sym_let] = ACTIONS(3496), + [anon_sym_const] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3496), + [anon_sym_else] = ACTIONS(3496), + [anon_sym_if] = ACTIONS(3496), + [anon_sym_switch] = ACTIONS(3496), + [anon_sym_for] = ACTIONS(3496), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_await] = ACTIONS(3496), + [anon_sym_of] = ACTIONS(3496), + [anon_sym_while] = ACTIONS(3496), + [anon_sym_do] = ACTIONS(3496), + [anon_sym_try] = ACTIONS(3496), + [anon_sym_break] = ACTIONS(3496), + [anon_sym_continue] = ACTIONS(3496), + [anon_sym_debugger] = ACTIONS(3496), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_throw] = ACTIONS(3496), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym_case] = ACTIONS(3496), + [anon_sym_yield] = ACTIONS(3496), + [anon_sym_LBRACK] = ACTIONS(3496), + [anon_sym_LTtemplate_GT] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(3496), + [anon_sym_class] = ACTIONS(3496), + [anon_sym_async] = ACTIONS(3496), + [anon_sym_function] = ACTIONS(3496), + [anon_sym_new] = ACTIONS(3496), + [anon_sym_using] = ACTIONS(3496), + [anon_sym_PLUS] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(3496), + [anon_sym_void] = ACTIONS(3496), + [anon_sym_delete] = ACTIONS(3496), + [anon_sym_PLUS_PLUS] = ACTIONS(3496), + [anon_sym_DASH_DASH] = ACTIONS(3496), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3496), + [sym_number] = ACTIONS(3496), + [sym_private_property_identifier] = ACTIONS(3496), + [sym_this] = ACTIONS(3496), + [sym_super] = ACTIONS(3496), + [sym_true] = ACTIONS(3496), + [sym_false] = ACTIONS(3496), + [sym_null] = ACTIONS(3496), + [sym_undefined] = ACTIONS(3496), + [anon_sym_AT] = ACTIONS(3496), + [anon_sym_static] = ACTIONS(3496), + [anon_sym_readonly] = ACTIONS(3496), + [anon_sym_get] = ACTIONS(3496), + [anon_sym_set] = ACTIONS(3496), + [anon_sym_declare] = ACTIONS(3496), + [anon_sym_public] = ACTIONS(3496), + [anon_sym_private] = ACTIONS(3496), + [anon_sym_protected] = ACTIONS(3496), + [anon_sym_override] = ACTIONS(3496), + [anon_sym_module] = ACTIONS(3496), + [anon_sym_any] = ACTIONS(3496), + [anon_sym_number] = ACTIONS(3496), + [anon_sym_boolean] = ACTIONS(3496), + [anon_sym_string] = ACTIONS(3496), + [anon_sym_symbol] = ACTIONS(3496), + [anon_sym_object] = ACTIONS(3496), + [anon_sym_property] = ACTIONS(3496), + [anon_sym_signal] = ACTIONS(3496), + [anon_sym_on] = ACTIONS(3496), + [anon_sym_required] = ACTIONS(3496), + [anon_sym_component] = ACTIONS(3496), + [anon_sym_abstract] = ACTIONS(3496), + [anon_sym_interface] = ACTIONS(3496), + [anon_sym_enum] = ACTIONS(3496), + [sym_html_comment] = ACTIONS(5), }, - [643] = { - [sym__call_signature] = STATE(4786), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2209), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2211), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_from] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2131), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_function] = ACTIONS(2252), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_readonly] = ACTIONS(2211), - [anon_sym_get] = ACTIONS(2211), - [anon_sym_set] = ACTIONS(2211), - [anon_sym_declare] = ACTIONS(2211), - [anon_sym_public] = ACTIONS(2211), - [anon_sym_private] = ACTIONS(2211), - [anon_sym_protected] = ACTIONS(2211), - [anon_sym_override] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_any] = ACTIONS(2211), - [anon_sym_number] = ACTIONS(2211), - [anon_sym_boolean] = ACTIONS(2211), - [anon_sym_string] = ACTIONS(2211), - [anon_sym_symbol] = ACTIONS(2211), - [anon_sym_property] = ACTIONS(2211), - [anon_sym_signal] = ACTIONS(2211), - [anon_sym_on] = ACTIONS(2211), - [anon_sym_required] = ACTIONS(2211), - [anon_sym_component] = ACTIONS(2211), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1074] = { + [sym_comment] = STATE(1074), + [sym_identifier] = ACTIONS(3498), + [anon_sym_export] = ACTIONS(3498), + [anon_sym_default] = ACTIONS(3498), + [anon_sym_type] = ACTIONS(3498), + [anon_sym_namespace] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3498), + [anon_sym_RBRACE] = ACTIONS(3498), + [anon_sym_typeof] = ACTIONS(3498), + [anon_sym_import] = ACTIONS(3498), + [anon_sym_from] = ACTIONS(3498), + [anon_sym_with] = ACTIONS(3498), + [anon_sym_var] = ACTIONS(3498), + [anon_sym_let] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(3498), + [anon_sym_BANG] = ACTIONS(3498), + [anon_sym_else] = ACTIONS(3498), + [anon_sym_if] = ACTIONS(3498), + [anon_sym_switch] = ACTIONS(3498), + [anon_sym_for] = ACTIONS(3498), + [anon_sym_LPAREN] = ACTIONS(3498), + [anon_sym_await] = ACTIONS(3498), + [anon_sym_of] = ACTIONS(3498), + [anon_sym_while] = ACTIONS(3498), + [anon_sym_do] = ACTIONS(3498), + [anon_sym_try] = ACTIONS(3498), + [anon_sym_break] = ACTIONS(3498), + [anon_sym_continue] = ACTIONS(3498), + [anon_sym_debugger] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3498), + [anon_sym_throw] = ACTIONS(3498), + [anon_sym_SEMI] = ACTIONS(3498), + [anon_sym_case] = ACTIONS(3498), + [anon_sym_yield] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3498), + [anon_sym_LTtemplate_GT] = ACTIONS(3498), + [anon_sym_DQUOTE] = ACTIONS(3498), + [anon_sym_SQUOTE] = ACTIONS(3498), + [anon_sym_class] = ACTIONS(3498), + [anon_sym_async] = ACTIONS(3498), + [anon_sym_function] = ACTIONS(3498), + [anon_sym_new] = ACTIONS(3498), + [anon_sym_using] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_SLASH] = ACTIONS(3498), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_TILDE] = ACTIONS(3498), + [anon_sym_void] = ACTIONS(3498), + [anon_sym_delete] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3498), + [sym_number] = ACTIONS(3498), + [sym_private_property_identifier] = ACTIONS(3498), + [sym_this] = ACTIONS(3498), + [sym_super] = ACTIONS(3498), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [sym_null] = ACTIONS(3498), + [sym_undefined] = ACTIONS(3498), + [anon_sym_AT] = ACTIONS(3498), + [anon_sym_static] = ACTIONS(3498), + [anon_sym_readonly] = ACTIONS(3498), + [anon_sym_get] = ACTIONS(3498), + [anon_sym_set] = ACTIONS(3498), + [anon_sym_declare] = ACTIONS(3498), + [anon_sym_public] = ACTIONS(3498), + [anon_sym_private] = ACTIONS(3498), + [anon_sym_protected] = ACTIONS(3498), + [anon_sym_override] = ACTIONS(3498), + [anon_sym_module] = ACTIONS(3498), + [anon_sym_any] = ACTIONS(3498), + [anon_sym_number] = ACTIONS(3498), + [anon_sym_boolean] = ACTIONS(3498), + [anon_sym_string] = ACTIONS(3498), + [anon_sym_symbol] = ACTIONS(3498), + [anon_sym_object] = ACTIONS(3498), + [anon_sym_property] = ACTIONS(3498), + [anon_sym_signal] = ACTIONS(3498), + [anon_sym_on] = ACTIONS(3498), + [anon_sym_required] = ACTIONS(3498), + [anon_sym_component] = ACTIONS(3498), + [anon_sym_abstract] = ACTIONS(3498), + [anon_sym_interface] = ACTIONS(3498), + [anon_sym_enum] = ACTIONS(3498), + [sym_html_comment] = ACTIONS(5), }, - [644] = { - [sym__call_signature] = STATE(4786), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2209), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2211), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(65), - [anon_sym_from] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_function] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_readonly] = ACTIONS(2211), - [anon_sym_get] = ACTIONS(2211), - [anon_sym_set] = ACTIONS(2211), - [anon_sym_declare] = ACTIONS(2211), - [anon_sym_public] = ACTIONS(2211), - [anon_sym_private] = ACTIONS(2211), - [anon_sym_protected] = ACTIONS(2211), - [anon_sym_override] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_any] = ACTIONS(2211), - [anon_sym_number] = ACTIONS(2211), - [anon_sym_boolean] = ACTIONS(2211), - [anon_sym_string] = ACTIONS(2211), - [anon_sym_symbol] = ACTIONS(2211), - [anon_sym_property] = ACTIONS(2211), - [anon_sym_signal] = ACTIONS(2211), - [anon_sym_on] = ACTIONS(2211), - [anon_sym_required] = ACTIONS(2211), - [anon_sym_component] = ACTIONS(2211), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1075] = { + [sym_comment] = STATE(1075), + [sym_identifier] = ACTIONS(3500), + [anon_sym_export] = ACTIONS(3500), + [anon_sym_default] = ACTIONS(3500), + [anon_sym_type] = ACTIONS(3500), + [anon_sym_namespace] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(3500), + [anon_sym_RBRACE] = ACTIONS(3500), + [anon_sym_typeof] = ACTIONS(3500), + [anon_sym_import] = ACTIONS(3500), + [anon_sym_from] = ACTIONS(3500), + [anon_sym_with] = ACTIONS(3500), + [anon_sym_var] = ACTIONS(3500), + [anon_sym_let] = ACTIONS(3500), + [anon_sym_const] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_else] = ACTIONS(3500), + [anon_sym_if] = ACTIONS(3500), + [anon_sym_switch] = ACTIONS(3500), + [anon_sym_for] = ACTIONS(3500), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym_await] = ACTIONS(3500), + [anon_sym_of] = ACTIONS(3500), + [anon_sym_while] = ACTIONS(3500), + [anon_sym_do] = ACTIONS(3500), + [anon_sym_try] = ACTIONS(3500), + [anon_sym_break] = ACTIONS(3500), + [anon_sym_continue] = ACTIONS(3500), + [anon_sym_debugger] = ACTIONS(3500), + [anon_sym_return] = ACTIONS(3500), + [anon_sym_throw] = ACTIONS(3500), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_case] = ACTIONS(3500), + [anon_sym_yield] = ACTIONS(3500), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_LTtemplate_GT] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3500), + [anon_sym_class] = ACTIONS(3500), + [anon_sym_async] = ACTIONS(3500), + [anon_sym_function] = ACTIONS(3500), + [anon_sym_new] = ACTIONS(3500), + [anon_sym_using] = ACTIONS(3500), + [anon_sym_PLUS] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3500), + [anon_sym_void] = ACTIONS(3500), + [anon_sym_delete] = ACTIONS(3500), + [anon_sym_PLUS_PLUS] = ACTIONS(3500), + [anon_sym_DASH_DASH] = ACTIONS(3500), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3500), + [sym_number] = ACTIONS(3500), + [sym_private_property_identifier] = ACTIONS(3500), + [sym_this] = ACTIONS(3500), + [sym_super] = ACTIONS(3500), + [sym_true] = ACTIONS(3500), + [sym_false] = ACTIONS(3500), + [sym_null] = ACTIONS(3500), + [sym_undefined] = ACTIONS(3500), + [anon_sym_AT] = ACTIONS(3500), + [anon_sym_static] = ACTIONS(3500), + [anon_sym_readonly] = ACTIONS(3500), + [anon_sym_get] = ACTIONS(3500), + [anon_sym_set] = ACTIONS(3500), + [anon_sym_declare] = ACTIONS(3500), + [anon_sym_public] = ACTIONS(3500), + [anon_sym_private] = ACTIONS(3500), + [anon_sym_protected] = ACTIONS(3500), + [anon_sym_override] = ACTIONS(3500), + [anon_sym_module] = ACTIONS(3500), + [anon_sym_any] = ACTIONS(3500), + [anon_sym_number] = ACTIONS(3500), + [anon_sym_boolean] = ACTIONS(3500), + [anon_sym_string] = ACTIONS(3500), + [anon_sym_symbol] = ACTIONS(3500), + [anon_sym_object] = ACTIONS(3500), + [anon_sym_property] = ACTIONS(3500), + [anon_sym_signal] = ACTIONS(3500), + [anon_sym_on] = ACTIONS(3500), + [anon_sym_required] = ACTIONS(3500), + [anon_sym_component] = ACTIONS(3500), + [anon_sym_abstract] = ACTIONS(3500), + [anon_sym_interface] = ACTIONS(3500), + [anon_sym_enum] = ACTIONS(3500), + [sym_html_comment] = ACTIONS(5), }, - [645] = { - [sym_declaration] = STATE(786), - [sym_variable_declaration] = STATE(785), - [sym_lexical_declaration] = STATE(785), - [sym_class_declaration] = STATE(785), - [sym_function_declaration] = STATE(785), - [sym_generator_function_declaration] = STATE(785), - [sym_decorator] = STATE(1136), - [sym_function_signature] = STATE(785), - [sym_ambient_declaration] = STATE(785), - [sym_abstract_class_declaration] = STATE(785), - [sym_module] = STATE(785), - [sym_internal_module] = STATE(802), - [sym_import_alias] = STATE(785), - [sym_interface_declaration] = STATE(785), - [sym_enum_declaration] = STATE(785), - [sym_type_alias_declaration] = STATE(785), - [aux_sym_export_statement_repeat1] = STATE(3571), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_EQ] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_var] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_class] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_EQ_GT] = ACTIONS(1669), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(65), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_abstract] = ACTIONS(2083), - [anon_sym_satisfies] = ACTIONS(65), - [anon_sym_global] = ACTIONS(2103), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2087), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1076] = { + [sym_comment] = STATE(1076), + [sym_identifier] = ACTIONS(3502), + [anon_sym_export] = ACTIONS(3502), + [anon_sym_default] = ACTIONS(3502), + [anon_sym_type] = ACTIONS(3502), + [anon_sym_namespace] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3502), + [anon_sym_RBRACE] = ACTIONS(3502), + [anon_sym_typeof] = ACTIONS(3502), + [anon_sym_import] = ACTIONS(3502), + [anon_sym_from] = ACTIONS(3502), + [anon_sym_with] = ACTIONS(3502), + [anon_sym_var] = ACTIONS(3502), + [anon_sym_let] = ACTIONS(3502), + [anon_sym_const] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_else] = ACTIONS(3502), + [anon_sym_if] = ACTIONS(3502), + [anon_sym_switch] = ACTIONS(3502), + [anon_sym_for] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3502), + [anon_sym_await] = ACTIONS(3502), + [anon_sym_of] = ACTIONS(3502), + [anon_sym_while] = ACTIONS(3502), + [anon_sym_do] = ACTIONS(3502), + [anon_sym_try] = ACTIONS(3502), + [anon_sym_break] = ACTIONS(3502), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_debugger] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3502), + [anon_sym_throw] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3502), + [anon_sym_case] = ACTIONS(3502), + [anon_sym_yield] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_LTtemplate_GT] = ACTIONS(3502), + [anon_sym_DQUOTE] = ACTIONS(3502), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_class] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(3502), + [anon_sym_function] = ACTIONS(3502), + [anon_sym_new] = ACTIONS(3502), + [anon_sym_using] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_SLASH] = ACTIONS(3502), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_TILDE] = ACTIONS(3502), + [anon_sym_void] = ACTIONS(3502), + [anon_sym_delete] = ACTIONS(3502), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3502), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3502), + [sym_number] = ACTIONS(3502), + [sym_private_property_identifier] = ACTIONS(3502), + [sym_this] = ACTIONS(3502), + [sym_super] = ACTIONS(3502), + [sym_true] = ACTIONS(3502), + [sym_false] = ACTIONS(3502), + [sym_null] = ACTIONS(3502), + [sym_undefined] = ACTIONS(3502), + [anon_sym_AT] = ACTIONS(3502), + [anon_sym_static] = ACTIONS(3502), + [anon_sym_readonly] = ACTIONS(3502), + [anon_sym_get] = ACTIONS(3502), + [anon_sym_set] = ACTIONS(3502), + [anon_sym_declare] = ACTIONS(3502), + [anon_sym_public] = ACTIONS(3502), + [anon_sym_private] = ACTIONS(3502), + [anon_sym_protected] = ACTIONS(3502), + [anon_sym_override] = ACTIONS(3502), + [anon_sym_module] = ACTIONS(3502), + [anon_sym_any] = ACTIONS(3502), + [anon_sym_number] = ACTIONS(3502), + [anon_sym_boolean] = ACTIONS(3502), + [anon_sym_string] = ACTIONS(3502), + [anon_sym_symbol] = ACTIONS(3502), + [anon_sym_object] = ACTIONS(3502), + [anon_sym_property] = ACTIONS(3502), + [anon_sym_signal] = ACTIONS(3502), + [anon_sym_on] = ACTIONS(3502), + [anon_sym_required] = ACTIONS(3502), + [anon_sym_component] = ACTIONS(3502), + [anon_sym_abstract] = ACTIONS(3502), + [anon_sym_interface] = ACTIONS(3502), + [anon_sym_enum] = ACTIONS(3502), + [sym_html_comment] = ACTIONS(5), }, - [646] = { - [sym__call_signature] = STATE(4808), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2205), - [anon_sym_export] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2207), - [anon_sym_EQ] = ACTIONS(1396), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2207), - [anon_sym_COMMA] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_from] = ACTIONS(2207), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2207), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1466), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2207), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [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_property] = ACTIONS(2207), - [anon_sym_signal] = ACTIONS(2207), - [anon_sym_on] = ACTIONS(2207), - [anon_sym_required] = ACTIONS(2207), - [anon_sym_component] = ACTIONS(2207), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1077] = { + [sym_comment] = STATE(1077), + [sym_identifier] = ACTIONS(3504), + [anon_sym_export] = ACTIONS(3504), + [anon_sym_default] = ACTIONS(3504), + [anon_sym_type] = ACTIONS(3504), + [anon_sym_namespace] = ACTIONS(3504), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_RBRACE] = ACTIONS(3504), + [anon_sym_typeof] = ACTIONS(3504), + [anon_sym_import] = ACTIONS(3504), + [anon_sym_from] = ACTIONS(3504), + [anon_sym_with] = ACTIONS(3504), + [anon_sym_var] = ACTIONS(3504), + [anon_sym_let] = ACTIONS(3504), + [anon_sym_const] = ACTIONS(3504), + [anon_sym_BANG] = ACTIONS(3504), + [anon_sym_else] = ACTIONS(3504), + [anon_sym_if] = ACTIONS(3504), + [anon_sym_switch] = ACTIONS(3504), + [anon_sym_for] = ACTIONS(3504), + [anon_sym_LPAREN] = ACTIONS(3504), + [anon_sym_await] = ACTIONS(3504), + [anon_sym_of] = ACTIONS(3504), + [anon_sym_while] = ACTIONS(3504), + [anon_sym_do] = ACTIONS(3504), + [anon_sym_try] = ACTIONS(3504), + [anon_sym_break] = ACTIONS(3504), + [anon_sym_continue] = ACTIONS(3504), + [anon_sym_debugger] = ACTIONS(3504), + [anon_sym_return] = ACTIONS(3504), + [anon_sym_throw] = ACTIONS(3504), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym_case] = ACTIONS(3504), + [anon_sym_yield] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_LTtemplate_GT] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(3504), + [anon_sym_SQUOTE] = ACTIONS(3504), + [anon_sym_class] = ACTIONS(3504), + [anon_sym_async] = ACTIONS(3504), + [anon_sym_function] = ACTIONS(3504), + [anon_sym_new] = ACTIONS(3504), + [anon_sym_using] = ACTIONS(3504), + [anon_sym_PLUS] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(3504), + [anon_sym_TILDE] = ACTIONS(3504), + [anon_sym_void] = ACTIONS(3504), + [anon_sym_delete] = ACTIONS(3504), + [anon_sym_PLUS_PLUS] = ACTIONS(3504), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3504), + [sym_number] = ACTIONS(3504), + [sym_private_property_identifier] = ACTIONS(3504), + [sym_this] = ACTIONS(3504), + [sym_super] = ACTIONS(3504), + [sym_true] = ACTIONS(3504), + [sym_false] = ACTIONS(3504), + [sym_null] = ACTIONS(3504), + [sym_undefined] = ACTIONS(3504), + [anon_sym_AT] = ACTIONS(3504), + [anon_sym_static] = ACTIONS(3504), + [anon_sym_readonly] = ACTIONS(3504), + [anon_sym_get] = ACTIONS(3504), + [anon_sym_set] = ACTIONS(3504), + [anon_sym_declare] = ACTIONS(3504), + [anon_sym_public] = ACTIONS(3504), + [anon_sym_private] = ACTIONS(3504), + [anon_sym_protected] = ACTIONS(3504), + [anon_sym_override] = ACTIONS(3504), + [anon_sym_module] = ACTIONS(3504), + [anon_sym_any] = ACTIONS(3504), + [anon_sym_number] = ACTIONS(3504), + [anon_sym_boolean] = ACTIONS(3504), + [anon_sym_string] = ACTIONS(3504), + [anon_sym_symbol] = ACTIONS(3504), + [anon_sym_object] = ACTIONS(3504), + [anon_sym_property] = ACTIONS(3504), + [anon_sym_signal] = ACTIONS(3504), + [anon_sym_on] = ACTIONS(3504), + [anon_sym_required] = ACTIONS(3504), + [anon_sym_component] = ACTIONS(3504), + [anon_sym_abstract] = ACTIONS(3504), + [anon_sym_interface] = ACTIONS(3504), + [anon_sym_enum] = ACTIONS(3504), + [sym_html_comment] = ACTIONS(5), }, - [647] = { - [sym__call_signature] = STATE(4786), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2209), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2211), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_from] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_function] = ACTIONS(2254), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_readonly] = ACTIONS(2211), - [anon_sym_get] = ACTIONS(2211), - [anon_sym_set] = ACTIONS(2211), - [anon_sym_declare] = ACTIONS(2211), - [anon_sym_public] = ACTIONS(2211), - [anon_sym_private] = ACTIONS(2211), - [anon_sym_protected] = ACTIONS(2211), - [anon_sym_override] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_any] = ACTIONS(2211), - [anon_sym_number] = ACTIONS(2211), - [anon_sym_boolean] = ACTIONS(2211), - [anon_sym_string] = ACTIONS(2211), - [anon_sym_symbol] = ACTIONS(2211), - [anon_sym_property] = ACTIONS(2211), - [anon_sym_signal] = ACTIONS(2211), - [anon_sym_on] = ACTIONS(2211), - [anon_sym_required] = ACTIONS(2211), - [anon_sym_component] = ACTIONS(2211), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1078] = { + [sym_comment] = STATE(1078), + [sym_identifier] = ACTIONS(3506), + [anon_sym_export] = ACTIONS(3506), + [anon_sym_default] = ACTIONS(3506), + [anon_sym_type] = ACTIONS(3506), + [anon_sym_namespace] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(3506), + [anon_sym_RBRACE] = ACTIONS(3506), + [anon_sym_typeof] = ACTIONS(3506), + [anon_sym_import] = ACTIONS(3506), + [anon_sym_from] = ACTIONS(3506), + [anon_sym_with] = ACTIONS(3506), + [anon_sym_var] = ACTIONS(3506), + [anon_sym_let] = ACTIONS(3506), + [anon_sym_const] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3506), + [anon_sym_else] = ACTIONS(3506), + [anon_sym_if] = ACTIONS(3506), + [anon_sym_switch] = ACTIONS(3506), + [anon_sym_for] = ACTIONS(3506), + [anon_sym_LPAREN] = ACTIONS(3506), + [anon_sym_await] = ACTIONS(3506), + [anon_sym_of] = ACTIONS(3506), + [anon_sym_while] = ACTIONS(3506), + [anon_sym_do] = ACTIONS(3506), + [anon_sym_try] = ACTIONS(3506), + [anon_sym_break] = ACTIONS(3506), + [anon_sym_continue] = ACTIONS(3506), + [anon_sym_debugger] = ACTIONS(3506), + [anon_sym_return] = ACTIONS(3506), + [anon_sym_throw] = ACTIONS(3506), + [anon_sym_SEMI] = ACTIONS(3506), + [anon_sym_case] = ACTIONS(3506), + [anon_sym_yield] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3506), + [anon_sym_LTtemplate_GT] = ACTIONS(3506), + [anon_sym_DQUOTE] = ACTIONS(3506), + [anon_sym_SQUOTE] = ACTIONS(3506), + [anon_sym_class] = ACTIONS(3506), + [anon_sym_async] = ACTIONS(3506), + [anon_sym_function] = ACTIONS(3506), + [anon_sym_new] = ACTIONS(3506), + [anon_sym_using] = ACTIONS(3506), + [anon_sym_PLUS] = ACTIONS(3506), + [anon_sym_DASH] = ACTIONS(3506), + [anon_sym_SLASH] = ACTIONS(3506), + [anon_sym_LT] = ACTIONS(3506), + [anon_sym_TILDE] = ACTIONS(3506), + [anon_sym_void] = ACTIONS(3506), + [anon_sym_delete] = ACTIONS(3506), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3506), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3506), + [sym_number] = ACTIONS(3506), + [sym_private_property_identifier] = ACTIONS(3506), + [sym_this] = ACTIONS(3506), + [sym_super] = ACTIONS(3506), + [sym_true] = ACTIONS(3506), + [sym_false] = ACTIONS(3506), + [sym_null] = ACTIONS(3506), + [sym_undefined] = ACTIONS(3506), + [anon_sym_AT] = ACTIONS(3506), + [anon_sym_static] = ACTIONS(3506), + [anon_sym_readonly] = ACTIONS(3506), + [anon_sym_get] = ACTIONS(3506), + [anon_sym_set] = ACTIONS(3506), + [anon_sym_declare] = ACTIONS(3506), + [anon_sym_public] = ACTIONS(3506), + [anon_sym_private] = ACTIONS(3506), + [anon_sym_protected] = ACTIONS(3506), + [anon_sym_override] = ACTIONS(3506), + [anon_sym_module] = ACTIONS(3506), + [anon_sym_any] = ACTIONS(3506), + [anon_sym_number] = ACTIONS(3506), + [anon_sym_boolean] = ACTIONS(3506), + [anon_sym_string] = ACTIONS(3506), + [anon_sym_symbol] = ACTIONS(3506), + [anon_sym_object] = ACTIONS(3506), + [anon_sym_property] = ACTIONS(3506), + [anon_sym_signal] = ACTIONS(3506), + [anon_sym_on] = ACTIONS(3506), + [anon_sym_required] = ACTIONS(3506), + [anon_sym_component] = ACTIONS(3506), + [anon_sym_abstract] = ACTIONS(3506), + [anon_sym_interface] = ACTIONS(3506), + [anon_sym_enum] = ACTIONS(3506), + [sym_html_comment] = ACTIONS(5), }, - [648] = { - [sym__call_signature] = STATE(4786), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2209), - [anon_sym_export] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2211), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_from] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(2256), - [anon_sym_of] = ACTIONS(2259), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_function] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_readonly] = ACTIONS(2211), - [anon_sym_get] = ACTIONS(2211), - [anon_sym_set] = ACTIONS(2211), - [anon_sym_declare] = ACTIONS(2211), - [anon_sym_public] = ACTIONS(2211), - [anon_sym_private] = ACTIONS(2211), - [anon_sym_protected] = ACTIONS(2211), - [anon_sym_override] = ACTIONS(2211), - [anon_sym_module] = ACTIONS(2211), - [anon_sym_any] = ACTIONS(2211), - [anon_sym_number] = ACTIONS(2211), - [anon_sym_boolean] = ACTIONS(2211), - [anon_sym_string] = ACTIONS(2211), - [anon_sym_symbol] = ACTIONS(2211), - [anon_sym_property] = ACTIONS(2211), - [anon_sym_signal] = ACTIONS(2211), - [anon_sym_on] = ACTIONS(2211), - [anon_sym_required] = ACTIONS(2211), - [anon_sym_component] = ACTIONS(2211), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1079] = { + [sym_comment] = STATE(1079), + [sym_identifier] = ACTIONS(3508), + [anon_sym_export] = ACTIONS(3508), + [anon_sym_default] = ACTIONS(3508), + [anon_sym_type] = ACTIONS(3508), + [anon_sym_namespace] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3508), + [anon_sym_RBRACE] = ACTIONS(3508), + [anon_sym_typeof] = ACTIONS(3508), + [anon_sym_import] = ACTIONS(3508), + [anon_sym_from] = ACTIONS(3508), + [anon_sym_with] = ACTIONS(3508), + [anon_sym_var] = ACTIONS(3508), + [anon_sym_let] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_else] = ACTIONS(3508), + [anon_sym_if] = ACTIONS(3508), + [anon_sym_switch] = ACTIONS(3508), + [anon_sym_for] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(3508), + [anon_sym_await] = ACTIONS(3508), + [anon_sym_of] = ACTIONS(3508), + [anon_sym_while] = ACTIONS(3508), + [anon_sym_do] = ACTIONS(3508), + [anon_sym_try] = ACTIONS(3508), + [anon_sym_break] = ACTIONS(3508), + [anon_sym_continue] = ACTIONS(3508), + [anon_sym_debugger] = ACTIONS(3508), + [anon_sym_return] = ACTIONS(3508), + [anon_sym_throw] = ACTIONS(3508), + [anon_sym_SEMI] = ACTIONS(3508), + [anon_sym_case] = ACTIONS(3508), + [anon_sym_yield] = ACTIONS(3508), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LTtemplate_GT] = ACTIONS(3508), + [anon_sym_DQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3508), + [anon_sym_class] = ACTIONS(3508), + [anon_sym_async] = ACTIONS(3508), + [anon_sym_function] = ACTIONS(3508), + [anon_sym_new] = ACTIONS(3508), + [anon_sym_using] = ACTIONS(3508), + [anon_sym_PLUS] = ACTIONS(3508), + [anon_sym_DASH] = ACTIONS(3508), + [anon_sym_SLASH] = ACTIONS(3508), + [anon_sym_LT] = ACTIONS(3508), + [anon_sym_TILDE] = ACTIONS(3508), + [anon_sym_void] = ACTIONS(3508), + [anon_sym_delete] = ACTIONS(3508), + [anon_sym_PLUS_PLUS] = ACTIONS(3508), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3508), + [sym_number] = ACTIONS(3508), + [sym_private_property_identifier] = ACTIONS(3508), + [sym_this] = ACTIONS(3508), + [sym_super] = ACTIONS(3508), + [sym_true] = ACTIONS(3508), + [sym_false] = ACTIONS(3508), + [sym_null] = ACTIONS(3508), + [sym_undefined] = ACTIONS(3508), + [anon_sym_AT] = ACTIONS(3508), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_readonly] = ACTIONS(3508), + [anon_sym_get] = ACTIONS(3508), + [anon_sym_set] = ACTIONS(3508), + [anon_sym_declare] = ACTIONS(3508), + [anon_sym_public] = ACTIONS(3508), + [anon_sym_private] = ACTIONS(3508), + [anon_sym_protected] = ACTIONS(3508), + [anon_sym_override] = ACTIONS(3508), + [anon_sym_module] = ACTIONS(3508), + [anon_sym_any] = ACTIONS(3508), + [anon_sym_number] = ACTIONS(3508), + [anon_sym_boolean] = ACTIONS(3508), + [anon_sym_string] = ACTIONS(3508), + [anon_sym_symbol] = ACTIONS(3508), + [anon_sym_object] = ACTIONS(3508), + [anon_sym_property] = ACTIONS(3508), + [anon_sym_signal] = ACTIONS(3508), + [anon_sym_on] = ACTIONS(3508), + [anon_sym_required] = ACTIONS(3508), + [anon_sym_component] = ACTIONS(3508), + [anon_sym_abstract] = ACTIONS(3508), + [anon_sym_interface] = ACTIONS(3508), + [anon_sym_enum] = ACTIONS(3508), + [sym_html_comment] = ACTIONS(5), }, - [649] = { - [sym__call_signature] = STATE(4947), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2261), - [anon_sym_export] = ACTIONS(2263), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2263), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_from] = ACTIONS(2263), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2263), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(1565), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2263), - [anon_sym_readonly] = ACTIONS(2263), - [anon_sym_get] = ACTIONS(2263), - [anon_sym_set] = ACTIONS(2263), - [anon_sym_declare] = ACTIONS(2263), - [anon_sym_public] = ACTIONS(2263), - [anon_sym_private] = ACTIONS(2263), - [anon_sym_protected] = ACTIONS(2263), - [anon_sym_override] = ACTIONS(2263), - [anon_sym_module] = ACTIONS(2263), - [anon_sym_any] = ACTIONS(2263), - [anon_sym_number] = ACTIONS(2263), - [anon_sym_boolean] = ACTIONS(2263), - [anon_sym_string] = ACTIONS(2263), - [anon_sym_symbol] = ACTIONS(2263), - [anon_sym_property] = ACTIONS(2263), - [anon_sym_signal] = ACTIONS(2263), - [anon_sym_on] = ACTIONS(2263), - [anon_sym_required] = ACTIONS(2263), - [anon_sym_component] = ACTIONS(2263), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_implements] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1080] = { + [sym_comment] = STATE(1080), + [sym_identifier] = ACTIONS(3510), + [anon_sym_export] = ACTIONS(3510), + [anon_sym_default] = ACTIONS(3510), + [anon_sym_type] = ACTIONS(3510), + [anon_sym_namespace] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(3510), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_typeof] = ACTIONS(3510), + [anon_sym_import] = ACTIONS(3510), + [anon_sym_from] = ACTIONS(3510), + [anon_sym_with] = ACTIONS(3510), + [anon_sym_var] = ACTIONS(3510), + [anon_sym_let] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3510), + [anon_sym_else] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3510), + [anon_sym_switch] = ACTIONS(3510), + [anon_sym_for] = ACTIONS(3510), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_await] = ACTIONS(3510), + [anon_sym_of] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(3510), + [anon_sym_do] = ACTIONS(3510), + [anon_sym_try] = ACTIONS(3510), + [anon_sym_break] = ACTIONS(3510), + [anon_sym_continue] = ACTIONS(3510), + [anon_sym_debugger] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3510), + [anon_sym_throw] = ACTIONS(3510), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_case] = ACTIONS(3510), + [anon_sym_yield] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_LTtemplate_GT] = ACTIONS(3510), + [anon_sym_DQUOTE] = ACTIONS(3510), + [anon_sym_SQUOTE] = ACTIONS(3510), + [anon_sym_class] = ACTIONS(3510), + [anon_sym_async] = ACTIONS(3510), + [anon_sym_function] = ACTIONS(3510), + [anon_sym_new] = ACTIONS(3510), + [anon_sym_using] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3510), + [anon_sym_DASH] = ACTIONS(3510), + [anon_sym_SLASH] = ACTIONS(3510), + [anon_sym_LT] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(3510), + [anon_sym_void] = ACTIONS(3510), + [anon_sym_delete] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3510), + [sym_number] = ACTIONS(3510), + [sym_private_property_identifier] = ACTIONS(3510), + [sym_this] = ACTIONS(3510), + [sym_super] = ACTIONS(3510), + [sym_true] = ACTIONS(3510), + [sym_false] = ACTIONS(3510), + [sym_null] = ACTIONS(3510), + [sym_undefined] = ACTIONS(3510), + [anon_sym_AT] = ACTIONS(3510), + [anon_sym_static] = ACTIONS(3510), + [anon_sym_readonly] = ACTIONS(3510), + [anon_sym_get] = ACTIONS(3510), + [anon_sym_set] = ACTIONS(3510), + [anon_sym_declare] = ACTIONS(3510), + [anon_sym_public] = ACTIONS(3510), + [anon_sym_private] = ACTIONS(3510), + [anon_sym_protected] = ACTIONS(3510), + [anon_sym_override] = ACTIONS(3510), + [anon_sym_module] = ACTIONS(3510), + [anon_sym_any] = ACTIONS(3510), + [anon_sym_number] = ACTIONS(3510), + [anon_sym_boolean] = ACTIONS(3510), + [anon_sym_string] = ACTIONS(3510), + [anon_sym_symbol] = ACTIONS(3510), + [anon_sym_object] = ACTIONS(3510), + [anon_sym_property] = ACTIONS(3510), + [anon_sym_signal] = ACTIONS(3510), + [anon_sym_on] = ACTIONS(3510), + [anon_sym_required] = ACTIONS(3510), + [anon_sym_component] = ACTIONS(3510), + [anon_sym_abstract] = ACTIONS(3510), + [anon_sym_interface] = ACTIONS(3510), + [anon_sym_enum] = ACTIONS(3510), + [sym_html_comment] = ACTIONS(5), }, - [650] = { - [sym__call_signature] = STATE(4647), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2265), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_EQ] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2267), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_from] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2267), - [anon_sym_COLON] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(32), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2267), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(1758), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2267), - [anon_sym_readonly] = ACTIONS(2267), - [anon_sym_get] = ACTIONS(2267), - [anon_sym_set] = ACTIONS(2267), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_public] = ACTIONS(2267), - [anon_sym_private] = ACTIONS(2267), - [anon_sym_protected] = ACTIONS(2267), - [anon_sym_override] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2267), - [anon_sym_any] = ACTIONS(2267), - [anon_sym_number] = ACTIONS(2267), - [anon_sym_boolean] = ACTIONS(2267), - [anon_sym_string] = ACTIONS(2267), - [anon_sym_symbol] = ACTIONS(2267), - [anon_sym_property] = ACTIONS(2267), - [anon_sym_signal] = ACTIONS(2267), - [anon_sym_on] = ACTIONS(2267), - [anon_sym_required] = ACTIONS(2267), - [anon_sym_component] = ACTIONS(2267), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1081] = { + [sym_comment] = STATE(1081), + [sym_identifier] = ACTIONS(3512), + [anon_sym_export] = ACTIONS(3512), + [anon_sym_default] = ACTIONS(3512), + [anon_sym_type] = ACTIONS(3512), + [anon_sym_namespace] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_typeof] = ACTIONS(3512), + [anon_sym_import] = ACTIONS(3512), + [anon_sym_from] = ACTIONS(3512), + [anon_sym_with] = ACTIONS(3512), + [anon_sym_var] = ACTIONS(3512), + [anon_sym_let] = ACTIONS(3512), + [anon_sym_const] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_else] = ACTIONS(3512), + [anon_sym_if] = ACTIONS(3512), + [anon_sym_switch] = ACTIONS(3512), + [anon_sym_for] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym_await] = ACTIONS(3512), + [anon_sym_of] = ACTIONS(3512), + [anon_sym_while] = ACTIONS(3512), + [anon_sym_do] = ACTIONS(3512), + [anon_sym_try] = ACTIONS(3512), + [anon_sym_break] = ACTIONS(3512), + [anon_sym_continue] = ACTIONS(3512), + [anon_sym_debugger] = ACTIONS(3512), + [anon_sym_return] = ACTIONS(3512), + [anon_sym_throw] = ACTIONS(3512), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym_case] = ACTIONS(3512), + [anon_sym_yield] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LTtemplate_GT] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3512), + [anon_sym_class] = ACTIONS(3512), + [anon_sym_async] = ACTIONS(3512), + [anon_sym_function] = ACTIONS(3512), + [anon_sym_new] = ACTIONS(3512), + [anon_sym_using] = ACTIONS(3512), + [anon_sym_PLUS] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3512), + [anon_sym_SLASH] = ACTIONS(3512), + [anon_sym_LT] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_void] = ACTIONS(3512), + [anon_sym_delete] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3512), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3512), + [sym_number] = ACTIONS(3512), + [sym_private_property_identifier] = ACTIONS(3512), + [sym_this] = ACTIONS(3512), + [sym_super] = ACTIONS(3512), + [sym_true] = ACTIONS(3512), + [sym_false] = ACTIONS(3512), + [sym_null] = ACTIONS(3512), + [sym_undefined] = ACTIONS(3512), + [anon_sym_AT] = ACTIONS(3512), + [anon_sym_static] = ACTIONS(3512), + [anon_sym_readonly] = ACTIONS(3512), + [anon_sym_get] = ACTIONS(3512), + [anon_sym_set] = ACTIONS(3512), + [anon_sym_declare] = ACTIONS(3512), + [anon_sym_public] = ACTIONS(3512), + [anon_sym_private] = ACTIONS(3512), + [anon_sym_protected] = ACTIONS(3512), + [anon_sym_override] = ACTIONS(3512), + [anon_sym_module] = ACTIONS(3512), + [anon_sym_any] = ACTIONS(3512), + [anon_sym_number] = ACTIONS(3512), + [anon_sym_boolean] = ACTIONS(3512), + [anon_sym_string] = ACTIONS(3512), + [anon_sym_symbol] = ACTIONS(3512), + [anon_sym_object] = ACTIONS(3512), + [anon_sym_property] = ACTIONS(3512), + [anon_sym_signal] = ACTIONS(3512), + [anon_sym_on] = ACTIONS(3512), + [anon_sym_required] = ACTIONS(3512), + [anon_sym_component] = ACTIONS(3512), + [anon_sym_abstract] = ACTIONS(3512), + [anon_sym_interface] = ACTIONS(3512), + [anon_sym_enum] = ACTIONS(3512), + [sym_html_comment] = ACTIONS(5), }, - [651] = { - [sym__call_signature] = STATE(4866), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2274), - [anon_sym_export] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2276), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_from] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_function] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(1450), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_readonly] = ACTIONS(2276), - [anon_sym_get] = ACTIONS(2276), - [anon_sym_set] = ACTIONS(2276), - [anon_sym_declare] = ACTIONS(2276), - [anon_sym_public] = ACTIONS(2276), - [anon_sym_private] = ACTIONS(2276), - [anon_sym_protected] = ACTIONS(2276), - [anon_sym_override] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_any] = ACTIONS(2276), - [anon_sym_number] = ACTIONS(2276), - [anon_sym_boolean] = ACTIONS(2276), - [anon_sym_string] = ACTIONS(2276), - [anon_sym_symbol] = ACTIONS(2276), - [anon_sym_property] = ACTIONS(2276), - [anon_sym_signal] = ACTIONS(2276), - [anon_sym_on] = ACTIONS(2276), - [anon_sym_required] = ACTIONS(2276), - [anon_sym_component] = ACTIONS(2276), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1082] = { + [sym_comment] = STATE(1082), + [sym_identifier] = ACTIONS(3514), + [anon_sym_export] = ACTIONS(3514), + [anon_sym_default] = ACTIONS(3514), + [anon_sym_type] = ACTIONS(3514), + [anon_sym_namespace] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_RBRACE] = ACTIONS(3514), + [anon_sym_typeof] = ACTIONS(3514), + [anon_sym_import] = ACTIONS(3514), + [anon_sym_from] = ACTIONS(3514), + [anon_sym_with] = ACTIONS(3514), + [anon_sym_var] = ACTIONS(3514), + [anon_sym_let] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3514), + [anon_sym_else] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3514), + [anon_sym_switch] = ACTIONS(3514), + [anon_sym_for] = ACTIONS(3514), + [anon_sym_LPAREN] = ACTIONS(3514), + [anon_sym_await] = ACTIONS(3514), + [anon_sym_of] = ACTIONS(3514), + [anon_sym_while] = ACTIONS(3514), + [anon_sym_do] = ACTIONS(3514), + [anon_sym_try] = ACTIONS(3514), + [anon_sym_break] = ACTIONS(3514), + [anon_sym_continue] = ACTIONS(3514), + [anon_sym_debugger] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3514), + [anon_sym_throw] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3514), + [anon_sym_case] = ACTIONS(3514), + [anon_sym_yield] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_LTtemplate_GT] = ACTIONS(3514), + [anon_sym_DQUOTE] = ACTIONS(3514), + [anon_sym_SQUOTE] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_async] = ACTIONS(3514), + [anon_sym_function] = ACTIONS(3514), + [anon_sym_new] = ACTIONS(3514), + [anon_sym_using] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_SLASH] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_void] = ACTIONS(3514), + [anon_sym_delete] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3514), + [sym_number] = ACTIONS(3514), + [sym_private_property_identifier] = ACTIONS(3514), + [sym_this] = ACTIONS(3514), + [sym_super] = ACTIONS(3514), + [sym_true] = ACTIONS(3514), + [sym_false] = ACTIONS(3514), + [sym_null] = ACTIONS(3514), + [sym_undefined] = ACTIONS(3514), + [anon_sym_AT] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_readonly] = ACTIONS(3514), + [anon_sym_get] = ACTIONS(3514), + [anon_sym_set] = ACTIONS(3514), + [anon_sym_declare] = ACTIONS(3514), + [anon_sym_public] = ACTIONS(3514), + [anon_sym_private] = ACTIONS(3514), + [anon_sym_protected] = ACTIONS(3514), + [anon_sym_override] = ACTIONS(3514), + [anon_sym_module] = ACTIONS(3514), + [anon_sym_any] = ACTIONS(3514), + [anon_sym_number] = ACTIONS(3514), + [anon_sym_boolean] = ACTIONS(3514), + [anon_sym_string] = ACTIONS(3514), + [anon_sym_symbol] = ACTIONS(3514), + [anon_sym_object] = ACTIONS(3514), + [anon_sym_property] = ACTIONS(3514), + [anon_sym_signal] = ACTIONS(3514), + [anon_sym_on] = ACTIONS(3514), + [anon_sym_required] = ACTIONS(3514), + [anon_sym_component] = ACTIONS(3514), + [anon_sym_abstract] = ACTIONS(3514), + [anon_sym_interface] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), + [sym_html_comment] = ACTIONS(5), }, - [652] = { - [sym__call_signature] = STATE(4947), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2261), - [anon_sym_export] = ACTIONS(2263), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2263), - [anon_sym_EQ] = ACTIONS(1563), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(65), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_from] = ACTIONS(2263), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2263), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(1565), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2263), - [anon_sym_readonly] = ACTIONS(2263), - [anon_sym_get] = ACTIONS(2263), - [anon_sym_set] = ACTIONS(2263), - [anon_sym_declare] = ACTIONS(2263), - [anon_sym_public] = ACTIONS(2263), - [anon_sym_private] = ACTIONS(2263), - [anon_sym_protected] = ACTIONS(2263), - [anon_sym_override] = ACTIONS(2263), - [anon_sym_module] = ACTIONS(2263), - [anon_sym_any] = ACTIONS(2263), - [anon_sym_number] = ACTIONS(2263), - [anon_sym_boolean] = ACTIONS(2263), - [anon_sym_string] = ACTIONS(2263), - [anon_sym_symbol] = ACTIONS(2263), - [anon_sym_property] = ACTIONS(2263), - [anon_sym_signal] = ACTIONS(2263), - [anon_sym_on] = ACTIONS(2263), - [anon_sym_required] = ACTIONS(2263), - [anon_sym_component] = ACTIONS(2263), - [anon_sym_satisfies] = ACTIONS(26), - [anon_sym_implements] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1083] = { + [sym_comment] = STATE(1083), + [sym_identifier] = ACTIONS(3516), + [anon_sym_export] = ACTIONS(3516), + [anon_sym_default] = ACTIONS(3516), + [anon_sym_type] = ACTIONS(3516), + [anon_sym_namespace] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3516), + [anon_sym_RBRACE] = ACTIONS(3516), + [anon_sym_typeof] = ACTIONS(3516), + [anon_sym_import] = ACTIONS(3516), + [anon_sym_from] = ACTIONS(3516), + [anon_sym_with] = ACTIONS(3516), + [anon_sym_var] = ACTIONS(3516), + [anon_sym_let] = ACTIONS(3516), + [anon_sym_const] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_else] = ACTIONS(3516), + [anon_sym_if] = ACTIONS(3516), + [anon_sym_switch] = ACTIONS(3516), + [anon_sym_for] = ACTIONS(3516), + [anon_sym_LPAREN] = ACTIONS(3516), + [anon_sym_await] = ACTIONS(3516), + [anon_sym_of] = ACTIONS(3516), + [anon_sym_while] = ACTIONS(3516), + [anon_sym_do] = ACTIONS(3516), + [anon_sym_try] = ACTIONS(3516), + [anon_sym_break] = ACTIONS(3516), + [anon_sym_continue] = ACTIONS(3516), + [anon_sym_debugger] = ACTIONS(3516), + [anon_sym_return] = ACTIONS(3516), + [anon_sym_throw] = ACTIONS(3516), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym_case] = ACTIONS(3516), + [anon_sym_yield] = ACTIONS(3516), + [anon_sym_LBRACK] = ACTIONS(3516), + [anon_sym_LTtemplate_GT] = ACTIONS(3516), + [anon_sym_DQUOTE] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3516), + [anon_sym_class] = ACTIONS(3516), + [anon_sym_async] = ACTIONS(3516), + [anon_sym_function] = ACTIONS(3516), + [anon_sym_new] = ACTIONS(3516), + [anon_sym_using] = ACTIONS(3516), + [anon_sym_PLUS] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3516), + [anon_sym_SLASH] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_void] = ACTIONS(3516), + [anon_sym_delete] = ACTIONS(3516), + [anon_sym_PLUS_PLUS] = ACTIONS(3516), + [anon_sym_DASH_DASH] = ACTIONS(3516), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3516), + [sym_number] = ACTIONS(3516), + [sym_private_property_identifier] = ACTIONS(3516), + [sym_this] = ACTIONS(3516), + [sym_super] = ACTIONS(3516), + [sym_true] = ACTIONS(3516), + [sym_false] = ACTIONS(3516), + [sym_null] = ACTIONS(3516), + [sym_undefined] = ACTIONS(3516), + [anon_sym_AT] = ACTIONS(3516), + [anon_sym_static] = ACTIONS(3516), + [anon_sym_readonly] = ACTIONS(3516), + [anon_sym_get] = ACTIONS(3516), + [anon_sym_set] = ACTIONS(3516), + [anon_sym_declare] = ACTIONS(3516), + [anon_sym_public] = ACTIONS(3516), + [anon_sym_private] = ACTIONS(3516), + [anon_sym_protected] = ACTIONS(3516), + [anon_sym_override] = ACTIONS(3516), + [anon_sym_module] = ACTIONS(3516), + [anon_sym_any] = ACTIONS(3516), + [anon_sym_number] = ACTIONS(3516), + [anon_sym_boolean] = ACTIONS(3516), + [anon_sym_string] = ACTIONS(3516), + [anon_sym_symbol] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(3516), + [anon_sym_property] = ACTIONS(3516), + [anon_sym_signal] = ACTIONS(3516), + [anon_sym_on] = ACTIONS(3516), + [anon_sym_required] = ACTIONS(3516), + [anon_sym_component] = ACTIONS(3516), + [anon_sym_abstract] = ACTIONS(3516), + [anon_sym_interface] = ACTIONS(3516), + [anon_sym_enum] = ACTIONS(3516), + [sym_html_comment] = ACTIONS(5), }, - [653] = { - [sym__call_signature] = STATE(4866), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2274), - [anon_sym_export] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2276), - [anon_sym_EQ] = ACTIONS(1448), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2276), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_from] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2276), - [anon_sym_function] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(1450), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_readonly] = ACTIONS(2276), - [anon_sym_get] = ACTIONS(2276), - [anon_sym_set] = ACTIONS(2276), - [anon_sym_declare] = ACTIONS(2276), - [anon_sym_public] = ACTIONS(2276), - [anon_sym_private] = ACTIONS(2276), - [anon_sym_protected] = ACTIONS(2276), - [anon_sym_override] = ACTIONS(2276), - [anon_sym_module] = ACTIONS(2276), - [anon_sym_any] = ACTIONS(2276), - [anon_sym_number] = ACTIONS(2276), - [anon_sym_boolean] = ACTIONS(2276), - [anon_sym_string] = ACTIONS(2276), - [anon_sym_symbol] = ACTIONS(2276), - [anon_sym_property] = ACTIONS(2276), - [anon_sym_signal] = ACTIONS(2276), - [anon_sym_on] = ACTIONS(2276), - [anon_sym_required] = ACTIONS(2276), - [anon_sym_component] = ACTIONS(2276), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1084] = { + [sym_comment] = STATE(1084), + [sym_identifier] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_type] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3518), + [anon_sym_RBRACE] = ACTIONS(3518), + [anon_sym_typeof] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_from] = ACTIONS(3518), + [anon_sym_with] = ACTIONS(3518), + [anon_sym_var] = ACTIONS(3518), + [anon_sym_let] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_BANG] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_LPAREN] = ACTIONS(3518), + [anon_sym_await] = ACTIONS(3518), + [anon_sym_of] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_debugger] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3518), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_yield] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_LTtemplate_GT] = ACTIONS(3518), + [anon_sym_DQUOTE] = ACTIONS(3518), + [anon_sym_SQUOTE] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_async] = ACTIONS(3518), + [anon_sym_function] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(3518), + [anon_sym_void] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_PLUS_PLUS] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3518), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3518), + [sym_number] = ACTIONS(3518), + [sym_private_property_identifier] = ACTIONS(3518), + [sym_this] = ACTIONS(3518), + [sym_super] = ACTIONS(3518), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [sym_null] = ACTIONS(3518), + [sym_undefined] = ACTIONS(3518), + [anon_sym_AT] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_readonly] = ACTIONS(3518), + [anon_sym_get] = ACTIONS(3518), + [anon_sym_set] = ACTIONS(3518), + [anon_sym_declare] = ACTIONS(3518), + [anon_sym_public] = ACTIONS(3518), + [anon_sym_private] = ACTIONS(3518), + [anon_sym_protected] = ACTIONS(3518), + [anon_sym_override] = ACTIONS(3518), + [anon_sym_module] = ACTIONS(3518), + [anon_sym_any] = ACTIONS(3518), + [anon_sym_number] = ACTIONS(3518), + [anon_sym_boolean] = ACTIONS(3518), + [anon_sym_string] = ACTIONS(3518), + [anon_sym_symbol] = ACTIONS(3518), + [anon_sym_object] = ACTIONS(3518), + [anon_sym_property] = ACTIONS(3518), + [anon_sym_signal] = ACTIONS(3518), + [anon_sym_on] = ACTIONS(3518), + [anon_sym_required] = ACTIONS(3518), + [anon_sym_component] = ACTIONS(3518), + [anon_sym_abstract] = ACTIONS(3518), + [anon_sym_interface] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [sym_html_comment] = ACTIONS(5), }, - [654] = { - [sym__call_signature] = STATE(4851), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2281), - [anon_sym_export] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2283), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2283), - [anon_sym_from] = ACTIONS(2283), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2283), - [anon_sym_function] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(1669), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2283), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_get] = ACTIONS(2283), - [anon_sym_set] = ACTIONS(2283), - [anon_sym_declare] = ACTIONS(2283), - [anon_sym_public] = ACTIONS(2283), - [anon_sym_private] = ACTIONS(2283), - [anon_sym_protected] = ACTIONS(2283), - [anon_sym_override] = ACTIONS(2283), - [anon_sym_module] = ACTIONS(2283), - [anon_sym_any] = ACTIONS(2283), - [anon_sym_number] = ACTIONS(2283), - [anon_sym_boolean] = ACTIONS(2283), - [anon_sym_string] = ACTIONS(2283), - [anon_sym_symbol] = ACTIONS(2283), - [anon_sym_property] = ACTIONS(2283), - [anon_sym_signal] = ACTIONS(2283), - [anon_sym_on] = ACTIONS(2283), - [anon_sym_required] = ACTIONS(2283), - [anon_sym_component] = ACTIONS(2283), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1085] = { + [sym_comment] = STATE(1085), + [sym_identifier] = ACTIONS(3520), + [anon_sym_export] = ACTIONS(3520), + [anon_sym_default] = ACTIONS(3520), + [anon_sym_type] = ACTIONS(3520), + [anon_sym_namespace] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_typeof] = ACTIONS(3520), + [anon_sym_import] = ACTIONS(3520), + [anon_sym_from] = ACTIONS(3520), + [anon_sym_with] = ACTIONS(3520), + [anon_sym_var] = ACTIONS(3520), + [anon_sym_let] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_else] = ACTIONS(3520), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_switch] = ACTIONS(3520), + [anon_sym_for] = ACTIONS(3520), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym_await] = ACTIONS(3520), + [anon_sym_of] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(3520), + [anon_sym_do] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3520), + [anon_sym_break] = ACTIONS(3520), + [anon_sym_continue] = ACTIONS(3520), + [anon_sym_debugger] = ACTIONS(3520), + [anon_sym_return] = ACTIONS(3520), + [anon_sym_throw] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_case] = ACTIONS(3520), + [anon_sym_yield] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_LTtemplate_GT] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_class] = ACTIONS(3520), + [anon_sym_async] = ACTIONS(3520), + [anon_sym_function] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3520), + [anon_sym_LT] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_void] = ACTIONS(3520), + [anon_sym_delete] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3520), + [sym_number] = ACTIONS(3520), + [sym_private_property_identifier] = ACTIONS(3520), + [sym_this] = ACTIONS(3520), + [sym_super] = ACTIONS(3520), + [sym_true] = ACTIONS(3520), + [sym_false] = ACTIONS(3520), + [sym_null] = ACTIONS(3520), + [sym_undefined] = ACTIONS(3520), + [anon_sym_AT] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_readonly] = ACTIONS(3520), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3520), + [anon_sym_declare] = ACTIONS(3520), + [anon_sym_public] = ACTIONS(3520), + [anon_sym_private] = ACTIONS(3520), + [anon_sym_protected] = ACTIONS(3520), + [anon_sym_override] = ACTIONS(3520), + [anon_sym_module] = ACTIONS(3520), + [anon_sym_any] = ACTIONS(3520), + [anon_sym_number] = ACTIONS(3520), + [anon_sym_boolean] = ACTIONS(3520), + [anon_sym_string] = ACTIONS(3520), + [anon_sym_symbol] = ACTIONS(3520), + [anon_sym_object] = ACTIONS(3520), + [anon_sym_property] = ACTIONS(3520), + [anon_sym_signal] = ACTIONS(3520), + [anon_sym_on] = ACTIONS(3520), + [anon_sym_required] = ACTIONS(3520), + [anon_sym_component] = ACTIONS(3520), + [anon_sym_abstract] = ACTIONS(3520), + [anon_sym_interface] = ACTIONS(3520), + [anon_sym_enum] = ACTIONS(3520), + [sym_html_comment] = ACTIONS(5), }, - [655] = { - [sym__call_signature] = STATE(4851), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2281), - [anon_sym_export] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2283), - [anon_sym_EQ] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2283), - [anon_sym_from] = ACTIONS(2283), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2283), - [anon_sym_function] = ACTIONS(2252), - [anon_sym_EQ_GT] = ACTIONS(1669), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2283), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_get] = ACTIONS(2283), - [anon_sym_set] = ACTIONS(2283), - [anon_sym_declare] = ACTIONS(2283), - [anon_sym_public] = ACTIONS(2283), - [anon_sym_private] = ACTIONS(2283), - [anon_sym_protected] = ACTIONS(2283), - [anon_sym_override] = ACTIONS(2283), - [anon_sym_module] = ACTIONS(2283), - [anon_sym_any] = ACTIONS(2283), - [anon_sym_number] = ACTIONS(2283), - [anon_sym_boolean] = ACTIONS(2283), - [anon_sym_string] = ACTIONS(2283), - [anon_sym_symbol] = ACTIONS(2283), - [anon_sym_property] = ACTIONS(2283), - [anon_sym_signal] = ACTIONS(2283), - [anon_sym_on] = ACTIONS(2283), - [anon_sym_required] = ACTIONS(2283), - [anon_sym_component] = ACTIONS(2283), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1086] = { + [sym_comment] = STATE(1086), + [sym_identifier] = ACTIONS(3522), + [anon_sym_export] = ACTIONS(3522), + [anon_sym_default] = ACTIONS(3522), + [anon_sym_type] = ACTIONS(3522), + [anon_sym_namespace] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3522), + [anon_sym_RBRACE] = ACTIONS(3522), + [anon_sym_typeof] = ACTIONS(3522), + [anon_sym_import] = ACTIONS(3522), + [anon_sym_from] = ACTIONS(3522), + [anon_sym_with] = ACTIONS(3522), + [anon_sym_var] = ACTIONS(3522), + [anon_sym_let] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_else] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_LPAREN] = ACTIONS(3522), + [anon_sym_await] = ACTIONS(3522), + [anon_sym_of] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_try] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_debugger] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_throw] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym_case] = ACTIONS(3522), + [anon_sym_yield] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_LTtemplate_GT] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(3522), + [anon_sym_SQUOTE] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_async] = ACTIONS(3522), + [anon_sym_function] = ACTIONS(3522), + [anon_sym_new] = ACTIONS(3522), + [anon_sym_using] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_SLASH] = ACTIONS(3522), + [anon_sym_LT] = ACTIONS(3522), + [anon_sym_TILDE] = ACTIONS(3522), + [anon_sym_void] = ACTIONS(3522), + [anon_sym_delete] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3522), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3522), + [sym_number] = ACTIONS(3522), + [sym_private_property_identifier] = ACTIONS(3522), + [sym_this] = ACTIONS(3522), + [sym_super] = ACTIONS(3522), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [sym_null] = ACTIONS(3522), + [sym_undefined] = ACTIONS(3522), + [anon_sym_AT] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_readonly] = ACTIONS(3522), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_declare] = ACTIONS(3522), + [anon_sym_public] = ACTIONS(3522), + [anon_sym_private] = ACTIONS(3522), + [anon_sym_protected] = ACTIONS(3522), + [anon_sym_override] = ACTIONS(3522), + [anon_sym_module] = ACTIONS(3522), + [anon_sym_any] = ACTIONS(3522), + [anon_sym_number] = ACTIONS(3522), + [anon_sym_boolean] = ACTIONS(3522), + [anon_sym_string] = ACTIONS(3522), + [anon_sym_symbol] = ACTIONS(3522), + [anon_sym_object] = ACTIONS(3522), + [anon_sym_property] = ACTIONS(3522), + [anon_sym_signal] = ACTIONS(3522), + [anon_sym_on] = ACTIONS(3522), + [anon_sym_required] = ACTIONS(3522), + [anon_sym_component] = ACTIONS(3522), + [anon_sym_abstract] = ACTIONS(3522), + [anon_sym_interface] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [sym_html_comment] = ACTIONS(5), }, - [656] = { - [sym__call_signature] = STATE(4851), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2281), - [anon_sym_export] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2283), - [anon_sym_EQ] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2283), - [anon_sym_from] = ACTIONS(2283), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2283), - [anon_sym_function] = ACTIONS(2031), - [anon_sym_EQ_GT] = ACTIONS(1669), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2283), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_get] = ACTIONS(2283), - [anon_sym_set] = ACTIONS(2283), - [anon_sym_declare] = ACTIONS(2283), - [anon_sym_public] = ACTIONS(2283), - [anon_sym_private] = ACTIONS(2283), - [anon_sym_protected] = ACTIONS(2283), - [anon_sym_override] = ACTIONS(2283), - [anon_sym_module] = ACTIONS(2283), - [anon_sym_any] = ACTIONS(2283), - [anon_sym_number] = ACTIONS(2283), - [anon_sym_boolean] = ACTIONS(2283), - [anon_sym_string] = ACTIONS(2283), - [anon_sym_symbol] = ACTIONS(2283), - [anon_sym_property] = ACTIONS(2283), - [anon_sym_signal] = ACTIONS(2283), - [anon_sym_on] = ACTIONS(2283), - [anon_sym_required] = ACTIONS(2283), - [anon_sym_component] = ACTIONS(2283), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1087] = { + [sym_comment] = STATE(1087), + [sym_identifier] = ACTIONS(3524), + [anon_sym_export] = ACTIONS(3524), + [anon_sym_default] = ACTIONS(3524), + [anon_sym_type] = ACTIONS(3524), + [anon_sym_namespace] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_typeof] = ACTIONS(3524), + [anon_sym_import] = ACTIONS(3524), + [anon_sym_from] = ACTIONS(3524), + [anon_sym_with] = ACTIONS(3524), + [anon_sym_var] = ACTIONS(3524), + [anon_sym_let] = ACTIONS(3524), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_else] = ACTIONS(3524), + [anon_sym_if] = ACTIONS(3524), + [anon_sym_switch] = ACTIONS(3524), + [anon_sym_for] = ACTIONS(3524), + [anon_sym_LPAREN] = ACTIONS(3524), + [anon_sym_await] = ACTIONS(3524), + [anon_sym_of] = ACTIONS(3524), + [anon_sym_while] = ACTIONS(3524), + [anon_sym_do] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3524), + [anon_sym_break] = ACTIONS(3524), + [anon_sym_continue] = ACTIONS(3524), + [anon_sym_debugger] = ACTIONS(3524), + [anon_sym_return] = ACTIONS(3524), + [anon_sym_throw] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym_case] = ACTIONS(3524), + [anon_sym_yield] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_LTtemplate_GT] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3524), + [anon_sym_class] = ACTIONS(3524), + [anon_sym_async] = ACTIONS(3524), + [anon_sym_function] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_using] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_void] = ACTIONS(3524), + [anon_sym_delete] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_DASH_DASH] = ACTIONS(3524), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3524), + [sym_number] = ACTIONS(3524), + [sym_private_property_identifier] = ACTIONS(3524), + [sym_this] = ACTIONS(3524), + [sym_super] = ACTIONS(3524), + [sym_true] = ACTIONS(3524), + [sym_false] = ACTIONS(3524), + [sym_null] = ACTIONS(3524), + [sym_undefined] = ACTIONS(3524), + [anon_sym_AT] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_readonly] = ACTIONS(3524), + [anon_sym_get] = ACTIONS(3524), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_declare] = ACTIONS(3524), + [anon_sym_public] = ACTIONS(3524), + [anon_sym_private] = ACTIONS(3524), + [anon_sym_protected] = ACTIONS(3524), + [anon_sym_override] = ACTIONS(3524), + [anon_sym_module] = ACTIONS(3524), + [anon_sym_any] = ACTIONS(3524), + [anon_sym_number] = ACTIONS(3524), + [anon_sym_boolean] = ACTIONS(3524), + [anon_sym_string] = ACTIONS(3524), + [anon_sym_symbol] = ACTIONS(3524), + [anon_sym_object] = ACTIONS(3524), + [anon_sym_property] = ACTIONS(3524), + [anon_sym_signal] = ACTIONS(3524), + [anon_sym_on] = ACTIONS(3524), + [anon_sym_required] = ACTIONS(3524), + [anon_sym_component] = ACTIONS(3524), + [anon_sym_abstract] = ACTIONS(3524), + [anon_sym_interface] = ACTIONS(3524), + [anon_sym_enum] = ACTIONS(3524), + [sym_html_comment] = ACTIONS(5), }, - [657] = { - [sym__call_signature] = STATE(4647), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2265), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_EQ] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2267), - [anon_sym_from] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2267), - [anon_sym_COLON] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2267), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(1758), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2267), - [anon_sym_readonly] = ACTIONS(2267), - [anon_sym_get] = ACTIONS(2267), - [anon_sym_set] = ACTIONS(2267), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_public] = ACTIONS(2267), - [anon_sym_private] = ACTIONS(2267), - [anon_sym_protected] = ACTIONS(2267), - [anon_sym_override] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2267), - [anon_sym_any] = ACTIONS(2267), - [anon_sym_number] = ACTIONS(2267), - [anon_sym_boolean] = ACTIONS(2267), - [anon_sym_string] = ACTIONS(2267), - [anon_sym_symbol] = ACTIONS(2267), - [anon_sym_property] = ACTIONS(2267), - [anon_sym_signal] = ACTIONS(2267), - [anon_sym_on] = ACTIONS(2267), - [anon_sym_required] = ACTIONS(2267), - [anon_sym_component] = ACTIONS(2267), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1088] = { + [sym_comment] = STATE(1088), + [sym_identifier] = ACTIONS(3526), + [anon_sym_export] = ACTIONS(3526), + [anon_sym_default] = ACTIONS(3526), + [anon_sym_type] = ACTIONS(3526), + [anon_sym_namespace] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_RBRACE] = ACTIONS(3526), + [anon_sym_typeof] = ACTIONS(3526), + [anon_sym_import] = ACTIONS(3526), + [anon_sym_from] = ACTIONS(3526), + [anon_sym_with] = ACTIONS(3526), + [anon_sym_var] = ACTIONS(3526), + [anon_sym_let] = ACTIONS(3526), + [anon_sym_const] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_else] = ACTIONS(3526), + [anon_sym_if] = ACTIONS(3526), + [anon_sym_switch] = ACTIONS(3526), + [anon_sym_for] = ACTIONS(3526), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_await] = ACTIONS(3526), + [anon_sym_of] = ACTIONS(3526), + [anon_sym_while] = ACTIONS(3526), + [anon_sym_do] = ACTIONS(3526), + [anon_sym_try] = ACTIONS(3526), + [anon_sym_break] = ACTIONS(3526), + [anon_sym_continue] = ACTIONS(3526), + [anon_sym_debugger] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3526), + [anon_sym_throw] = ACTIONS(3526), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_case] = ACTIONS(3526), + [anon_sym_yield] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_LTtemplate_GT] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [anon_sym_SQUOTE] = ACTIONS(3526), + [anon_sym_class] = ACTIONS(3526), + [anon_sym_async] = ACTIONS(3526), + [anon_sym_function] = ACTIONS(3526), + [anon_sym_new] = ACTIONS(3526), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3526), + [anon_sym_DASH] = ACTIONS(3526), + [anon_sym_SLASH] = ACTIONS(3526), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_TILDE] = ACTIONS(3526), + [anon_sym_void] = ACTIONS(3526), + [anon_sym_delete] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3526), + [sym_number] = ACTIONS(3526), + [sym_private_property_identifier] = ACTIONS(3526), + [sym_this] = ACTIONS(3526), + [sym_super] = ACTIONS(3526), + [sym_true] = ACTIONS(3526), + [sym_false] = ACTIONS(3526), + [sym_null] = ACTIONS(3526), + [sym_undefined] = ACTIONS(3526), + [anon_sym_AT] = ACTIONS(3526), + [anon_sym_static] = ACTIONS(3526), + [anon_sym_readonly] = ACTIONS(3526), + [anon_sym_get] = ACTIONS(3526), + [anon_sym_set] = ACTIONS(3526), + [anon_sym_declare] = ACTIONS(3526), + [anon_sym_public] = ACTIONS(3526), + [anon_sym_private] = ACTIONS(3526), + [anon_sym_protected] = ACTIONS(3526), + [anon_sym_override] = ACTIONS(3526), + [anon_sym_module] = ACTIONS(3526), + [anon_sym_any] = ACTIONS(3526), + [anon_sym_number] = ACTIONS(3526), + [anon_sym_boolean] = ACTIONS(3526), + [anon_sym_string] = ACTIONS(3526), + [anon_sym_symbol] = ACTIONS(3526), + [anon_sym_object] = ACTIONS(3526), + [anon_sym_property] = ACTIONS(3526), + [anon_sym_signal] = ACTIONS(3526), + [anon_sym_on] = ACTIONS(3526), + [anon_sym_required] = ACTIONS(3526), + [anon_sym_component] = ACTIONS(3526), + [anon_sym_abstract] = ACTIONS(3526), + [anon_sym_interface] = ACTIONS(3526), + [anon_sym_enum] = ACTIONS(3526), + [sym_html_comment] = ACTIONS(5), }, - [658] = { - [sym__call_signature] = STATE(4647), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2265), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_EQ] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2267), - [anon_sym_from] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2267), - [anon_sym_COLON] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2267), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(1758), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2267), - [anon_sym_readonly] = ACTIONS(2267), - [anon_sym_get] = ACTIONS(2267), - [anon_sym_set] = ACTIONS(2267), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_public] = ACTIONS(2267), - [anon_sym_private] = ACTIONS(2267), - [anon_sym_protected] = ACTIONS(2267), - [anon_sym_override] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2267), - [anon_sym_any] = ACTIONS(2267), - [anon_sym_number] = ACTIONS(2267), - [anon_sym_boolean] = ACTIONS(2267), - [anon_sym_string] = ACTIONS(2267), - [anon_sym_symbol] = ACTIONS(2267), - [anon_sym_property] = ACTIONS(2267), - [anon_sym_signal] = ACTIONS(2267), - [anon_sym_on] = ACTIONS(2267), - [anon_sym_required] = ACTIONS(2267), - [anon_sym_component] = ACTIONS(2267), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1089] = { + [sym_comment] = STATE(1089), + [sym_identifier] = ACTIONS(3528), + [anon_sym_export] = ACTIONS(3528), + [anon_sym_default] = ACTIONS(3528), + [anon_sym_type] = ACTIONS(3528), + [anon_sym_namespace] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_typeof] = ACTIONS(3528), + [anon_sym_import] = ACTIONS(3528), + [anon_sym_from] = ACTIONS(3528), + [anon_sym_with] = ACTIONS(3528), + [anon_sym_var] = ACTIONS(3528), + [anon_sym_let] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_else] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_LPAREN] = ACTIONS(3528), + [anon_sym_await] = ACTIONS(3528), + [anon_sym_of] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_do] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_debugger] = ACTIONS(3528), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_throw] = ACTIONS(3528), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_case] = ACTIONS(3528), + [anon_sym_yield] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_LTtemplate_GT] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [anon_sym_class] = ACTIONS(3528), + [anon_sym_async] = ACTIONS(3528), + [anon_sym_function] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_using] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_SLASH] = ACTIONS(3528), + [anon_sym_LT] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_void] = ACTIONS(3528), + [anon_sym_delete] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3528), + [anon_sym_DASH_DASH] = ACTIONS(3528), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3528), + [sym_number] = ACTIONS(3528), + [sym_private_property_identifier] = ACTIONS(3528), + [sym_this] = ACTIONS(3528), + [sym_super] = ACTIONS(3528), + [sym_true] = ACTIONS(3528), + [sym_false] = ACTIONS(3528), + [sym_null] = ACTIONS(3528), + [sym_undefined] = ACTIONS(3528), + [anon_sym_AT] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_readonly] = ACTIONS(3528), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3528), + [anon_sym_declare] = ACTIONS(3528), + [anon_sym_public] = ACTIONS(3528), + [anon_sym_private] = ACTIONS(3528), + [anon_sym_protected] = ACTIONS(3528), + [anon_sym_override] = ACTIONS(3528), + [anon_sym_module] = ACTIONS(3528), + [anon_sym_any] = ACTIONS(3528), + [anon_sym_number] = ACTIONS(3528), + [anon_sym_boolean] = ACTIONS(3528), + [anon_sym_string] = ACTIONS(3528), + [anon_sym_symbol] = ACTIONS(3528), + [anon_sym_object] = ACTIONS(3528), + [anon_sym_property] = ACTIONS(3528), + [anon_sym_signal] = ACTIONS(3528), + [anon_sym_on] = ACTIONS(3528), + [anon_sym_required] = ACTIONS(3528), + [anon_sym_component] = ACTIONS(3528), + [anon_sym_abstract] = ACTIONS(3528), + [anon_sym_interface] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), + [sym_html_comment] = ACTIONS(5), }, - [659] = { - [sym_catch_clause] = STATE(674), - [sym_finally_clause] = STATE(851), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2291), - [anon_sym_finally] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_LTtemplate_GT] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2289), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2289), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2289), - [sym_number] = ACTIONS(2289), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2289), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), + [1090] = { + [sym_comment] = STATE(1090), + [sym_identifier] = ACTIONS(3530), + [anon_sym_export] = ACTIONS(3530), + [anon_sym_default] = ACTIONS(3530), + [anon_sym_type] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(3530), + [anon_sym_LBRACE] = ACTIONS(3530), + [anon_sym_RBRACE] = ACTIONS(3530), + [anon_sym_typeof] = ACTIONS(3530), + [anon_sym_import] = ACTIONS(3530), + [anon_sym_from] = ACTIONS(3530), + [anon_sym_with] = ACTIONS(3530), + [anon_sym_var] = ACTIONS(3530), + [anon_sym_let] = ACTIONS(3530), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_BANG] = ACTIONS(3530), + [anon_sym_else] = ACTIONS(3530), + [anon_sym_if] = ACTIONS(3530), + [anon_sym_switch] = ACTIONS(3530), + [anon_sym_for] = ACTIONS(3530), + [anon_sym_LPAREN] = ACTIONS(3530), + [anon_sym_await] = ACTIONS(3530), + [anon_sym_of] = ACTIONS(3530), + [anon_sym_while] = ACTIONS(3530), + [anon_sym_do] = ACTIONS(3530), + [anon_sym_try] = ACTIONS(3530), + [anon_sym_break] = ACTIONS(3530), + [anon_sym_continue] = ACTIONS(3530), + [anon_sym_debugger] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3530), + [anon_sym_throw] = ACTIONS(3530), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym_case] = ACTIONS(3530), + [anon_sym_yield] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_LTtemplate_GT] = ACTIONS(3530), + [anon_sym_DQUOTE] = ACTIONS(3530), + [anon_sym_SQUOTE] = ACTIONS(3530), + [anon_sym_class] = ACTIONS(3530), + [anon_sym_async] = ACTIONS(3530), + [anon_sym_function] = ACTIONS(3530), + [anon_sym_new] = ACTIONS(3530), + [anon_sym_using] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3530), + [anon_sym_DASH] = ACTIONS(3530), + [anon_sym_SLASH] = ACTIONS(3530), + [anon_sym_LT] = ACTIONS(3530), + [anon_sym_TILDE] = ACTIONS(3530), + [anon_sym_void] = ACTIONS(3530), + [anon_sym_delete] = ACTIONS(3530), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3530), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3530), + [sym_number] = ACTIONS(3530), + [sym_private_property_identifier] = ACTIONS(3530), + [sym_this] = ACTIONS(3530), + [sym_super] = ACTIONS(3530), + [sym_true] = ACTIONS(3530), + [sym_false] = ACTIONS(3530), + [sym_null] = ACTIONS(3530), + [sym_undefined] = ACTIONS(3530), + [anon_sym_AT] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(3530), + [anon_sym_readonly] = ACTIONS(3530), + [anon_sym_get] = ACTIONS(3530), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_declare] = ACTIONS(3530), + [anon_sym_public] = ACTIONS(3530), + [anon_sym_private] = ACTIONS(3530), + [anon_sym_protected] = ACTIONS(3530), + [anon_sym_override] = ACTIONS(3530), + [anon_sym_module] = ACTIONS(3530), + [anon_sym_any] = ACTIONS(3530), + [anon_sym_number] = ACTIONS(3530), + [anon_sym_boolean] = ACTIONS(3530), + [anon_sym_string] = ACTIONS(3530), + [anon_sym_symbol] = ACTIONS(3530), + [anon_sym_object] = ACTIONS(3530), + [anon_sym_property] = ACTIONS(3530), + [anon_sym_signal] = ACTIONS(3530), + [anon_sym_on] = ACTIONS(3530), + [anon_sym_required] = ACTIONS(3530), + [anon_sym_component] = ACTIONS(3530), + [anon_sym_abstract] = ACTIONS(3530), + [anon_sym_interface] = ACTIONS(3530), + [anon_sym_enum] = ACTIONS(3530), + [sym_html_comment] = ACTIONS(5), }, - [660] = { - [sym__call_signature] = STATE(4851), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2281), - [anon_sym_export] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2283), - [anon_sym_EQ] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2283), - [anon_sym_from] = ACTIONS(2283), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2283), - [anon_sym_function] = ACTIONS(2254), - [anon_sym_EQ_GT] = ACTIONS(1669), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2283), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_get] = ACTIONS(2283), - [anon_sym_set] = ACTIONS(2283), - [anon_sym_declare] = ACTIONS(2283), - [anon_sym_public] = ACTIONS(2283), - [anon_sym_private] = ACTIONS(2283), - [anon_sym_protected] = ACTIONS(2283), - [anon_sym_override] = ACTIONS(2283), - [anon_sym_module] = ACTIONS(2283), - [anon_sym_any] = ACTIONS(2283), - [anon_sym_number] = ACTIONS(2283), - [anon_sym_boolean] = ACTIONS(2283), - [anon_sym_string] = ACTIONS(2283), - [anon_sym_symbol] = ACTIONS(2283), - [anon_sym_property] = ACTIONS(2283), - [anon_sym_signal] = ACTIONS(2283), - [anon_sym_on] = ACTIONS(2283), - [anon_sym_required] = ACTIONS(2283), - [anon_sym_component] = ACTIONS(2283), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1091] = { + [sym_comment] = STATE(1091), + [sym_identifier] = ACTIONS(3532), + [anon_sym_export] = ACTIONS(3532), + [anon_sym_default] = ACTIONS(3532), + [anon_sym_type] = ACTIONS(3532), + [anon_sym_namespace] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_RBRACE] = ACTIONS(3532), + [anon_sym_typeof] = ACTIONS(3532), + [anon_sym_import] = ACTIONS(3532), + [anon_sym_from] = ACTIONS(3532), + [anon_sym_with] = ACTIONS(3532), + [anon_sym_var] = ACTIONS(3532), + [anon_sym_let] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_else] = ACTIONS(3532), + [anon_sym_if] = ACTIONS(3532), + [anon_sym_switch] = ACTIONS(3532), + [anon_sym_for] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(3532), + [anon_sym_await] = ACTIONS(3532), + [anon_sym_of] = ACTIONS(3532), + [anon_sym_while] = ACTIONS(3532), + [anon_sym_do] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3532), + [anon_sym_break] = ACTIONS(3532), + [anon_sym_continue] = ACTIONS(3532), + [anon_sym_debugger] = ACTIONS(3532), + [anon_sym_return] = ACTIONS(3532), + [anon_sym_throw] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym_case] = ACTIONS(3532), + [anon_sym_yield] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LTtemplate_GT] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_async] = ACTIONS(3532), + [anon_sym_function] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3532), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_SLASH] = ACTIONS(3532), + [anon_sym_LT] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_void] = ACTIONS(3532), + [anon_sym_delete] = ACTIONS(3532), + [anon_sym_PLUS_PLUS] = ACTIONS(3532), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3532), + [sym_number] = ACTIONS(3532), + [sym_private_property_identifier] = ACTIONS(3532), + [sym_this] = ACTIONS(3532), + [sym_super] = ACTIONS(3532), + [sym_true] = ACTIONS(3532), + [sym_false] = ACTIONS(3532), + [sym_null] = ACTIONS(3532), + [sym_undefined] = ACTIONS(3532), + [anon_sym_AT] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_readonly] = ACTIONS(3532), + [anon_sym_get] = ACTIONS(3532), + [anon_sym_set] = ACTIONS(3532), + [anon_sym_declare] = ACTIONS(3532), + [anon_sym_public] = ACTIONS(3532), + [anon_sym_private] = ACTIONS(3532), + [anon_sym_protected] = ACTIONS(3532), + [anon_sym_override] = ACTIONS(3532), + [anon_sym_module] = ACTIONS(3532), + [anon_sym_any] = ACTIONS(3532), + [anon_sym_number] = ACTIONS(3532), + [anon_sym_boolean] = ACTIONS(3532), + [anon_sym_string] = ACTIONS(3532), + [anon_sym_symbol] = ACTIONS(3532), + [anon_sym_object] = ACTIONS(3532), + [anon_sym_property] = ACTIONS(3532), + [anon_sym_signal] = ACTIONS(3532), + [anon_sym_on] = ACTIONS(3532), + [anon_sym_required] = ACTIONS(3532), + [anon_sym_component] = ACTIONS(3532), + [anon_sym_abstract] = ACTIONS(3532), + [anon_sym_interface] = ACTIONS(3532), + [anon_sym_enum] = ACTIONS(3532), + [sym_html_comment] = ACTIONS(5), }, - [661] = { - [sym__call_signature] = STATE(4647), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2265), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_EQ] = ACTIONS(2269), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2267), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_from] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(32), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2267), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(1758), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2267), - [anon_sym_readonly] = ACTIONS(2267), - [anon_sym_get] = ACTIONS(2267), - [anon_sym_set] = ACTIONS(2267), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_public] = ACTIONS(2267), - [anon_sym_private] = ACTIONS(2267), - [anon_sym_protected] = ACTIONS(2267), - [anon_sym_override] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2267), - [anon_sym_any] = ACTIONS(2267), - [anon_sym_number] = ACTIONS(2267), - [anon_sym_boolean] = ACTIONS(2267), - [anon_sym_string] = ACTIONS(2267), - [anon_sym_symbol] = ACTIONS(2267), - [anon_sym_property] = ACTIONS(2267), - [anon_sym_signal] = ACTIONS(2267), - [anon_sym_on] = ACTIONS(2267), - [anon_sym_required] = ACTIONS(2267), - [anon_sym_component] = ACTIONS(2267), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1092] = { + [sym_comment] = STATE(1092), + [sym_identifier] = ACTIONS(3534), + [anon_sym_export] = ACTIONS(3534), + [anon_sym_default] = ACTIONS(3534), + [anon_sym_type] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_RBRACE] = ACTIONS(3534), + [anon_sym_typeof] = ACTIONS(3534), + [anon_sym_import] = ACTIONS(3534), + [anon_sym_from] = ACTIONS(3534), + [anon_sym_with] = ACTIONS(3534), + [anon_sym_var] = ACTIONS(3534), + [anon_sym_let] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_else] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3534), + [anon_sym_await] = ACTIONS(3534), + [anon_sym_of] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_debugger] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym_case] = ACTIONS(3534), + [anon_sym_yield] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_LTtemplate_GT] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [anon_sym_SQUOTE] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_async] = ACTIONS(3534), + [anon_sym_function] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_SLASH] = ACTIONS(3534), + [anon_sym_LT] = ACTIONS(3534), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_void] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3534), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3534), + [sym_number] = ACTIONS(3534), + [sym_private_property_identifier] = ACTIONS(3534), + [sym_this] = ACTIONS(3534), + [sym_super] = ACTIONS(3534), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [sym_null] = ACTIONS(3534), + [sym_undefined] = ACTIONS(3534), + [anon_sym_AT] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_readonly] = ACTIONS(3534), + [anon_sym_get] = ACTIONS(3534), + [anon_sym_set] = ACTIONS(3534), + [anon_sym_declare] = ACTIONS(3534), + [anon_sym_public] = ACTIONS(3534), + [anon_sym_private] = ACTIONS(3534), + [anon_sym_protected] = ACTIONS(3534), + [anon_sym_override] = ACTIONS(3534), + [anon_sym_module] = ACTIONS(3534), + [anon_sym_any] = ACTIONS(3534), + [anon_sym_number] = ACTIONS(3534), + [anon_sym_boolean] = ACTIONS(3534), + [anon_sym_string] = ACTIONS(3534), + [anon_sym_symbol] = ACTIONS(3534), + [anon_sym_object] = ACTIONS(3534), + [anon_sym_property] = ACTIONS(3534), + [anon_sym_signal] = ACTIONS(3534), + [anon_sym_on] = ACTIONS(3534), + [anon_sym_required] = ACTIONS(3534), + [anon_sym_component] = ACTIONS(3534), + [anon_sym_abstract] = ACTIONS(3534), + [anon_sym_interface] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [sym_html_comment] = ACTIONS(5), }, - [662] = { - [sym__call_signature] = STATE(4851), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2281), - [anon_sym_export] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2283), - [anon_sym_EQ] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2283), - [anon_sym_from] = ACTIONS(2283), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2283), - [anon_sym_function] = ACTIONS(2295), - [anon_sym_EQ_GT] = ACTIONS(1669), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2283), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_get] = ACTIONS(2283), - [anon_sym_set] = ACTIONS(2283), - [anon_sym_declare] = ACTIONS(2283), - [anon_sym_public] = ACTIONS(2283), - [anon_sym_private] = ACTIONS(2283), - [anon_sym_protected] = ACTIONS(2283), - [anon_sym_override] = ACTIONS(2283), - [anon_sym_module] = ACTIONS(2283), - [anon_sym_any] = ACTIONS(2283), - [anon_sym_number] = ACTIONS(2283), - [anon_sym_boolean] = ACTIONS(2283), - [anon_sym_string] = ACTIONS(2283), - [anon_sym_symbol] = ACTIONS(2283), - [anon_sym_property] = ACTIONS(2283), - [anon_sym_signal] = ACTIONS(2283), - [anon_sym_on] = ACTIONS(2283), - [anon_sym_required] = ACTIONS(2283), - [anon_sym_component] = ACTIONS(2283), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1093] = { + [sym_comment] = STATE(1093), + [sym_identifier] = ACTIONS(3536), + [anon_sym_export] = ACTIONS(3536), + [anon_sym_default] = ACTIONS(3536), + [anon_sym_type] = ACTIONS(3536), + [anon_sym_namespace] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_RBRACE] = ACTIONS(3536), + [anon_sym_typeof] = ACTIONS(3536), + [anon_sym_import] = ACTIONS(3536), + [anon_sym_from] = ACTIONS(3536), + [anon_sym_with] = ACTIONS(3536), + [anon_sym_var] = ACTIONS(3536), + [anon_sym_let] = ACTIONS(3536), + [anon_sym_const] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_else] = ACTIONS(3536), + [anon_sym_if] = ACTIONS(3536), + [anon_sym_switch] = ACTIONS(3536), + [anon_sym_for] = ACTIONS(3536), + [anon_sym_LPAREN] = ACTIONS(3536), + [anon_sym_await] = ACTIONS(3536), + [anon_sym_of] = ACTIONS(3536), + [anon_sym_while] = ACTIONS(3536), + [anon_sym_do] = ACTIONS(3536), + [anon_sym_try] = ACTIONS(3536), + [anon_sym_break] = ACTIONS(3536), + [anon_sym_continue] = ACTIONS(3536), + [anon_sym_debugger] = ACTIONS(3536), + [anon_sym_return] = ACTIONS(3536), + [anon_sym_throw] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym_case] = ACTIONS(3536), + [anon_sym_yield] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LTtemplate_GT] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_class] = ACTIONS(3536), + [anon_sym_async] = ACTIONS(3536), + [anon_sym_function] = ACTIONS(3536), + [anon_sym_new] = ACTIONS(3536), + [anon_sym_using] = ACTIONS(3536), + [anon_sym_PLUS] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_void] = ACTIONS(3536), + [anon_sym_delete] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_DASH_DASH] = ACTIONS(3536), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3536), + [sym_number] = ACTIONS(3536), + [sym_private_property_identifier] = ACTIONS(3536), + [sym_this] = ACTIONS(3536), + [sym_super] = ACTIONS(3536), + [sym_true] = ACTIONS(3536), + [sym_false] = ACTIONS(3536), + [sym_null] = ACTIONS(3536), + [sym_undefined] = ACTIONS(3536), + [anon_sym_AT] = ACTIONS(3536), + [anon_sym_static] = ACTIONS(3536), + [anon_sym_readonly] = ACTIONS(3536), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3536), + [anon_sym_declare] = ACTIONS(3536), + [anon_sym_public] = ACTIONS(3536), + [anon_sym_private] = ACTIONS(3536), + [anon_sym_protected] = ACTIONS(3536), + [anon_sym_override] = ACTIONS(3536), + [anon_sym_module] = ACTIONS(3536), + [anon_sym_any] = ACTIONS(3536), + [anon_sym_number] = ACTIONS(3536), + [anon_sym_boolean] = ACTIONS(3536), + [anon_sym_string] = ACTIONS(3536), + [anon_sym_symbol] = ACTIONS(3536), + [anon_sym_object] = ACTIONS(3536), + [anon_sym_property] = ACTIONS(3536), + [anon_sym_signal] = ACTIONS(3536), + [anon_sym_on] = ACTIONS(3536), + [anon_sym_required] = ACTIONS(3536), + [anon_sym_component] = ACTIONS(3536), + [anon_sym_abstract] = ACTIONS(3536), + [anon_sym_interface] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3536), + [sym_html_comment] = ACTIONS(5), }, - [663] = { - [sym__call_signature] = STATE(4851), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2281), - [anon_sym_export] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2283), - [anon_sym_EQ] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2283), - [anon_sym_from] = ACTIONS(2283), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2283), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2283), - [anon_sym_function] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(1669), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2283), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_get] = ACTIONS(2283), - [anon_sym_set] = ACTIONS(2283), - [anon_sym_declare] = ACTIONS(2283), - [anon_sym_public] = ACTIONS(2283), - [anon_sym_private] = ACTIONS(2283), - [anon_sym_protected] = ACTIONS(2283), - [anon_sym_override] = ACTIONS(2283), - [anon_sym_module] = ACTIONS(2283), - [anon_sym_any] = ACTIONS(2283), - [anon_sym_number] = ACTIONS(2283), - [anon_sym_boolean] = ACTIONS(2283), - [anon_sym_string] = ACTIONS(2283), - [anon_sym_symbol] = ACTIONS(2283), - [anon_sym_property] = ACTIONS(2283), - [anon_sym_signal] = ACTIONS(2283), - [anon_sym_on] = ACTIONS(2283), - [anon_sym_required] = ACTIONS(2283), - [anon_sym_component] = ACTIONS(2283), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), + [1094] = { + [sym_comment] = STATE(1094), + [sym_identifier] = ACTIONS(3538), + [anon_sym_export] = ACTIONS(3538), + [anon_sym_default] = ACTIONS(3538), + [anon_sym_type] = ACTIONS(3538), + [anon_sym_namespace] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_RBRACE] = ACTIONS(3538), + [anon_sym_typeof] = ACTIONS(3538), + [anon_sym_import] = ACTIONS(3538), + [anon_sym_from] = ACTIONS(3538), + [anon_sym_with] = ACTIONS(3538), + [anon_sym_var] = ACTIONS(3538), + [anon_sym_let] = ACTIONS(3538), + [anon_sym_const] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3538), + [anon_sym_else] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3538), + [anon_sym_switch] = ACTIONS(3538), + [anon_sym_for] = ACTIONS(3538), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_await] = ACTIONS(3538), + [anon_sym_of] = ACTIONS(3538), + [anon_sym_while] = ACTIONS(3538), + [anon_sym_do] = ACTIONS(3538), + [anon_sym_try] = ACTIONS(3538), + [anon_sym_break] = ACTIONS(3538), + [anon_sym_continue] = ACTIONS(3538), + [anon_sym_debugger] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3538), + [anon_sym_throw] = ACTIONS(3538), + [anon_sym_SEMI] = ACTIONS(3538), + [anon_sym_case] = ACTIONS(3538), + [anon_sym_yield] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_LTtemplate_GT] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3538), + [anon_sym_async] = ACTIONS(3538), + [anon_sym_function] = ACTIONS(3538), + [anon_sym_new] = ACTIONS(3538), + [anon_sym_using] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3538), + [anon_sym_DASH] = ACTIONS(3538), + [anon_sym_SLASH] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(3538), + [anon_sym_void] = ACTIONS(3538), + [anon_sym_delete] = ACTIONS(3538), + [anon_sym_PLUS_PLUS] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3538), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3538), + [sym_number] = ACTIONS(3538), + [sym_private_property_identifier] = ACTIONS(3538), + [sym_this] = ACTIONS(3538), + [sym_super] = ACTIONS(3538), + [sym_true] = ACTIONS(3538), + [sym_false] = ACTIONS(3538), + [sym_null] = ACTIONS(3538), + [sym_undefined] = ACTIONS(3538), + [anon_sym_AT] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3538), + [anon_sym_readonly] = ACTIONS(3538), + [anon_sym_get] = ACTIONS(3538), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_declare] = ACTIONS(3538), + [anon_sym_public] = ACTIONS(3538), + [anon_sym_private] = ACTIONS(3538), + [anon_sym_protected] = ACTIONS(3538), + [anon_sym_override] = ACTIONS(3538), + [anon_sym_module] = ACTIONS(3538), + [anon_sym_any] = ACTIONS(3538), + [anon_sym_number] = ACTIONS(3538), + [anon_sym_boolean] = ACTIONS(3538), + [anon_sym_string] = ACTIONS(3538), + [anon_sym_symbol] = ACTIONS(3538), + [anon_sym_object] = ACTIONS(3538), + [anon_sym_property] = ACTIONS(3538), + [anon_sym_signal] = ACTIONS(3538), + [anon_sym_on] = ACTIONS(3538), + [anon_sym_required] = ACTIONS(3538), + [anon_sym_component] = ACTIONS(3538), + [anon_sym_abstract] = ACTIONS(3538), + [anon_sym_interface] = ACTIONS(3538), + [anon_sym_enum] = ACTIONS(3538), + [sym_html_comment] = ACTIONS(5), }, - [664] = { - [sym__call_signature] = STATE(4647), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2265), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2267), - [anon_sym_from] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2267), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(1758), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2267), - [anon_sym_readonly] = ACTIONS(2267), - [anon_sym_get] = ACTIONS(2267), - [anon_sym_set] = ACTIONS(2267), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_public] = ACTIONS(2267), - [anon_sym_private] = ACTIONS(2267), - [anon_sym_protected] = ACTIONS(2267), - [anon_sym_override] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2267), - [anon_sym_any] = ACTIONS(2267), - [anon_sym_number] = ACTIONS(2267), - [anon_sym_boolean] = ACTIONS(2267), - [anon_sym_string] = ACTIONS(2267), - [anon_sym_symbol] = ACTIONS(2267), - [anon_sym_property] = ACTIONS(2267), - [anon_sym_signal] = ACTIONS(2267), - [anon_sym_on] = ACTIONS(2267), - [anon_sym_required] = ACTIONS(2267), - [anon_sym_component] = ACTIONS(2267), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1095] = { + [sym_comment] = STATE(1095), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_from] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_of] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_case] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_LTtemplate_GT] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_property] = ACTIONS(2456), + [anon_sym_signal] = ACTIONS(2456), + [anon_sym_on] = ACTIONS(2456), + [anon_sym_required] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym_html_comment] = ACTIONS(5), }, - [665] = { - [sym__call_signature] = STATE(4761), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2299), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2299), - [anon_sym_from] = ACTIONS(2299), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2299), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2299), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(1772), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2299), - [anon_sym_readonly] = ACTIONS(2299), - [anon_sym_get] = ACTIONS(2299), - [anon_sym_set] = ACTIONS(2299), - [anon_sym_declare] = ACTIONS(2299), - [anon_sym_public] = ACTIONS(2299), - [anon_sym_private] = ACTIONS(2299), - [anon_sym_protected] = ACTIONS(2299), - [anon_sym_override] = ACTIONS(2299), - [anon_sym_module] = ACTIONS(2299), - [anon_sym_any] = ACTIONS(2299), - [anon_sym_number] = ACTIONS(2299), - [anon_sym_boolean] = ACTIONS(2299), - [anon_sym_string] = ACTIONS(2299), - [anon_sym_symbol] = ACTIONS(2299), - [anon_sym_property] = ACTIONS(2299), - [anon_sym_signal] = ACTIONS(2299), - [anon_sym_on] = ACTIONS(2299), - [anon_sym_required] = ACTIONS(2299), - [anon_sym_component] = ACTIONS(2299), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1096] = { + [sym_comment] = STATE(1096), + [sym_identifier] = ACTIONS(3540), + [anon_sym_export] = ACTIONS(3540), + [anon_sym_default] = ACTIONS(3540), + [anon_sym_type] = ACTIONS(3540), + [anon_sym_namespace] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3540), + [anon_sym_RBRACE] = ACTIONS(3540), + [anon_sym_typeof] = ACTIONS(3540), + [anon_sym_import] = ACTIONS(3540), + [anon_sym_from] = ACTIONS(3540), + [anon_sym_with] = ACTIONS(3540), + [anon_sym_var] = ACTIONS(3540), + [anon_sym_let] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3540), + [anon_sym_else] = ACTIONS(3540), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_LPAREN] = ACTIONS(3540), + [anon_sym_await] = ACTIONS(3540), + [anon_sym_of] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_debugger] = ACTIONS(3540), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym_case] = ACTIONS(3540), + [anon_sym_yield] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_LTtemplate_GT] = ACTIONS(3540), + [anon_sym_DQUOTE] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3540), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_async] = ACTIONS(3540), + [anon_sym_function] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_using] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_SLASH] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3540), + [anon_sym_void] = ACTIONS(3540), + [anon_sym_delete] = ACTIONS(3540), + [anon_sym_PLUS_PLUS] = ACTIONS(3540), + [anon_sym_DASH_DASH] = ACTIONS(3540), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3540), + [sym_number] = ACTIONS(3540), + [sym_private_property_identifier] = ACTIONS(3540), + [sym_this] = ACTIONS(3540), + [sym_super] = ACTIONS(3540), + [sym_true] = ACTIONS(3540), + [sym_false] = ACTIONS(3540), + [sym_null] = ACTIONS(3540), + [sym_undefined] = ACTIONS(3540), + [anon_sym_AT] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_readonly] = ACTIONS(3540), + [anon_sym_get] = ACTIONS(3540), + [anon_sym_set] = ACTIONS(3540), + [anon_sym_declare] = ACTIONS(3540), + [anon_sym_public] = ACTIONS(3540), + [anon_sym_private] = ACTIONS(3540), + [anon_sym_protected] = ACTIONS(3540), + [anon_sym_override] = ACTIONS(3540), + [anon_sym_module] = ACTIONS(3540), + [anon_sym_any] = ACTIONS(3540), + [anon_sym_number] = ACTIONS(3540), + [anon_sym_boolean] = ACTIONS(3540), + [anon_sym_string] = ACTIONS(3540), + [anon_sym_symbol] = ACTIONS(3540), + [anon_sym_object] = ACTIONS(3540), + [anon_sym_property] = ACTIONS(3540), + [anon_sym_signal] = ACTIONS(3540), + [anon_sym_on] = ACTIONS(3540), + [anon_sym_required] = ACTIONS(3540), + [anon_sym_component] = ACTIONS(3540), + [anon_sym_abstract] = ACTIONS(3540), + [anon_sym_interface] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), + [sym_html_comment] = ACTIONS(5), }, - [666] = { - [sym__call_signature] = STATE(4761), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2299), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2299), - [anon_sym_from] = ACTIONS(2299), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2299), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2299), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(1772), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2299), - [anon_sym_readonly] = ACTIONS(2299), - [anon_sym_get] = ACTIONS(2299), - [anon_sym_set] = ACTIONS(2299), - [anon_sym_declare] = ACTIONS(2299), - [anon_sym_public] = ACTIONS(2299), - [anon_sym_private] = ACTIONS(2299), - [anon_sym_protected] = ACTIONS(2299), - [anon_sym_override] = ACTIONS(2299), - [anon_sym_module] = ACTIONS(2299), - [anon_sym_any] = ACTIONS(2299), - [anon_sym_number] = ACTIONS(2299), - [anon_sym_boolean] = ACTIONS(2299), - [anon_sym_string] = ACTIONS(2299), - [anon_sym_symbol] = ACTIONS(2299), - [anon_sym_property] = ACTIONS(2299), - [anon_sym_signal] = ACTIONS(2299), - [anon_sym_on] = ACTIONS(2299), - [anon_sym_required] = ACTIONS(2299), - [anon_sym_component] = ACTIONS(2299), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1097] = { + [sym_comment] = STATE(1097), + [sym_identifier] = ACTIONS(3542), + [anon_sym_export] = ACTIONS(3542), + [anon_sym_default] = ACTIONS(3542), + [anon_sym_type] = ACTIONS(3542), + [anon_sym_namespace] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_RBRACE] = ACTIONS(3542), + [anon_sym_typeof] = ACTIONS(3542), + [anon_sym_import] = ACTIONS(3542), + [anon_sym_from] = ACTIONS(3542), + [anon_sym_with] = ACTIONS(3542), + [anon_sym_var] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_const] = ACTIONS(3542), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_else] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_switch] = ACTIONS(3542), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_await] = ACTIONS(3542), + [anon_sym_of] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_break] = ACTIONS(3542), + [anon_sym_continue] = ACTIONS(3542), + [anon_sym_debugger] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_throw] = ACTIONS(3542), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym_case] = ACTIONS(3542), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LTtemplate_GT] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_SQUOTE] = ACTIONS(3542), + [anon_sym_class] = ACTIONS(3542), + [anon_sym_async] = ACTIONS(3542), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_using] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_void] = ACTIONS(3542), + [anon_sym_delete] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3542), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3542), + [sym_number] = ACTIONS(3542), + [sym_private_property_identifier] = ACTIONS(3542), + [sym_this] = ACTIONS(3542), + [sym_super] = ACTIONS(3542), + [sym_true] = ACTIONS(3542), + [sym_false] = ACTIONS(3542), + [sym_null] = ACTIONS(3542), + [sym_undefined] = ACTIONS(3542), + [anon_sym_AT] = ACTIONS(3542), + [anon_sym_static] = ACTIONS(3542), + [anon_sym_readonly] = ACTIONS(3542), + [anon_sym_get] = ACTIONS(3542), + [anon_sym_set] = ACTIONS(3542), + [anon_sym_declare] = ACTIONS(3542), + [anon_sym_public] = ACTIONS(3542), + [anon_sym_private] = ACTIONS(3542), + [anon_sym_protected] = ACTIONS(3542), + [anon_sym_override] = ACTIONS(3542), + [anon_sym_module] = ACTIONS(3542), + [anon_sym_any] = ACTIONS(3542), + [anon_sym_number] = ACTIONS(3542), + [anon_sym_boolean] = ACTIONS(3542), + [anon_sym_string] = ACTIONS(3542), + [anon_sym_symbol] = ACTIONS(3542), + [anon_sym_object] = ACTIONS(3542), + [anon_sym_property] = ACTIONS(3542), + [anon_sym_signal] = ACTIONS(3542), + [anon_sym_on] = ACTIONS(3542), + [anon_sym_required] = ACTIONS(3542), + [anon_sym_component] = ACTIONS(3542), + [anon_sym_abstract] = ACTIONS(3542), + [anon_sym_interface] = ACTIONS(3542), + [anon_sym_enum] = ACTIONS(3542), + [sym_html_comment] = ACTIONS(5), }, - [667] = { - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_type] = ACTIONS(1529), - [anon_sym_namespace] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_COMMA] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_typeof] = ACTIONS(1529), - [anon_sym_import] = ACTIONS(1529), - [anon_sym_from] = ACTIONS(1529), - [anon_sym_var] = ACTIONS(1529), - [anon_sym_let] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_else] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_await] = ACTIONS(1529), - [anon_sym_of] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [anon_sym_with] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_debugger] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_throw] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_yield] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_LTtemplate_GT] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_SLASH] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_async] = ACTIONS(1529), - [anon_sym_function] = ACTIONS(1529), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_void] = ACTIONS(1529), - [anon_sym_delete] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1531), - [sym_number] = ACTIONS(1531), - [sym_this] = ACTIONS(1529), - [sym_super] = ACTIONS(1529), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), - [sym_undefined] = ACTIONS(1529), - [anon_sym_AT] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(1529), - [anon_sym_get] = ACTIONS(1529), - [anon_sym_set] = ACTIONS(1529), - [anon_sym_declare] = ACTIONS(1529), - [anon_sym_public] = ACTIONS(1529), - [anon_sym_private] = ACTIONS(1529), - [anon_sym_protected] = ACTIONS(1529), - [anon_sym_override] = ACTIONS(1529), - [anon_sym_module] = ACTIONS(1529), - [anon_sym_any] = ACTIONS(1529), - [anon_sym_number] = ACTIONS(1529), - [anon_sym_boolean] = ACTIONS(1529), - [anon_sym_string] = ACTIONS(1529), - [anon_sym_symbol] = ACTIONS(1529), - [anon_sym_property] = ACTIONS(1529), - [anon_sym_signal] = ACTIONS(1529), - [anon_sym_on] = ACTIONS(1529), - [anon_sym_required] = ACTIONS(1529), - [anon_sym_component] = ACTIONS(1529), - [anon_sym_abstract] = ACTIONS(1529), - [anon_sym_interface] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [anon_sym_PIPE_RBRACE] = ACTIONS(1531), - [sym__automatic_semicolon] = ACTIONS(1531), + [1098] = { + [sym_comment] = STATE(1098), + [sym_identifier] = ACTIONS(3544), + [anon_sym_export] = ACTIONS(3544), + [anon_sym_default] = ACTIONS(3544), + [anon_sym_type] = ACTIONS(3544), + [anon_sym_namespace] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3544), + [anon_sym_RBRACE] = ACTIONS(3544), + [anon_sym_typeof] = ACTIONS(3544), + [anon_sym_import] = ACTIONS(3544), + [anon_sym_from] = ACTIONS(3544), + [anon_sym_with] = ACTIONS(3544), + [anon_sym_var] = ACTIONS(3544), + [anon_sym_let] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3544), + [anon_sym_else] = ACTIONS(3544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_await] = ACTIONS(3544), + [anon_sym_of] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_debugger] = ACTIONS(3544), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym_case] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3544), + [anon_sym_LTtemplate_GT] = ACTIONS(3544), + [anon_sym_DQUOTE] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3544), + [anon_sym_async] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_using] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3544), + [anon_sym_void] = ACTIONS(3544), + [anon_sym_delete] = ACTIONS(3544), + [anon_sym_PLUS_PLUS] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3544), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3544), + [sym_number] = ACTIONS(3544), + [sym_private_property_identifier] = ACTIONS(3544), + [sym_this] = ACTIONS(3544), + [sym_super] = ACTIONS(3544), + [sym_true] = ACTIONS(3544), + [sym_false] = ACTIONS(3544), + [sym_null] = ACTIONS(3544), + [sym_undefined] = ACTIONS(3544), + [anon_sym_AT] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_readonly] = ACTIONS(3544), + [anon_sym_get] = ACTIONS(3544), + [anon_sym_set] = ACTIONS(3544), + [anon_sym_declare] = ACTIONS(3544), + [anon_sym_public] = ACTIONS(3544), + [anon_sym_private] = ACTIONS(3544), + [anon_sym_protected] = ACTIONS(3544), + [anon_sym_override] = ACTIONS(3544), + [anon_sym_module] = ACTIONS(3544), + [anon_sym_any] = ACTIONS(3544), + [anon_sym_number] = ACTIONS(3544), + [anon_sym_boolean] = ACTIONS(3544), + [anon_sym_string] = ACTIONS(3544), + [anon_sym_symbol] = ACTIONS(3544), + [anon_sym_object] = ACTIONS(3544), + [anon_sym_property] = ACTIONS(3544), + [anon_sym_signal] = ACTIONS(3544), + [anon_sym_on] = ACTIONS(3544), + [anon_sym_required] = ACTIONS(3544), + [anon_sym_component] = ACTIONS(3544), + [anon_sym_abstract] = ACTIONS(3544), + [anon_sym_interface] = ACTIONS(3544), + [anon_sym_enum] = ACTIONS(3544), + [sym_html_comment] = ACTIONS(5), }, - [668] = { - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_namespace] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1497), - [anon_sym_from] = ACTIONS(1497), - [anon_sym_var] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_else] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_of] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_with] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_debugger] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_throw] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_case] = ACTIONS(1497), - [anon_sym_catch] = ACTIONS(1497), - [anon_sym_finally] = ACTIONS(1497), - [anon_sym_yield] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_LTtemplate_GT] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_class] = ACTIONS(1497), - [anon_sym_async] = ACTIONS(1497), - [anon_sym_function] = ACTIONS(1497), - [anon_sym_new] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_void] = ACTIONS(1497), - [anon_sym_delete] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1503), - [sym_number] = ACTIONS(1503), - [sym_this] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_true] = ACTIONS(1497), - [sym_false] = ACTIONS(1497), - [sym_null] = ACTIONS(1497), - [sym_undefined] = ACTIONS(1497), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_readonly] = ACTIONS(1497), - [anon_sym_get] = ACTIONS(1497), - [anon_sym_set] = ACTIONS(1497), - [anon_sym_declare] = ACTIONS(1497), - [anon_sym_public] = ACTIONS(1497), - [anon_sym_private] = ACTIONS(1497), - [anon_sym_protected] = ACTIONS(1497), - [anon_sym_override] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_any] = ACTIONS(1497), - [anon_sym_number] = ACTIONS(1497), - [anon_sym_boolean] = ACTIONS(1497), - [anon_sym_string] = ACTIONS(1497), - [anon_sym_symbol] = ACTIONS(1497), - [anon_sym_property] = ACTIONS(1497), - [anon_sym_signal] = ACTIONS(1497), - [anon_sym_on] = ACTIONS(1497), - [anon_sym_required] = ACTIONS(1497), - [anon_sym_component] = ACTIONS(1497), - [anon_sym_abstract] = ACTIONS(1497), - [anon_sym_interface] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [sym__automatic_semicolon] = ACTIONS(1507), + [1099] = { + [sym_comment] = STATE(1099), + [sym_identifier] = ACTIONS(3546), + [anon_sym_export] = ACTIONS(3546), + [anon_sym_default] = ACTIONS(3546), + [anon_sym_type] = ACTIONS(3546), + [anon_sym_namespace] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym_typeof] = ACTIONS(3546), + [anon_sym_import] = ACTIONS(3546), + [anon_sym_from] = ACTIONS(3546), + [anon_sym_with] = ACTIONS(3546), + [anon_sym_var] = ACTIONS(3546), + [anon_sym_let] = ACTIONS(3546), + [anon_sym_const] = ACTIONS(3546), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_else] = ACTIONS(3546), + [anon_sym_if] = ACTIONS(3546), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3546), + [anon_sym_await] = ACTIONS(3546), + [anon_sym_of] = ACTIONS(3546), + [anon_sym_while] = ACTIONS(3546), + [anon_sym_do] = ACTIONS(3546), + [anon_sym_try] = ACTIONS(3546), + [anon_sym_break] = ACTIONS(3546), + [anon_sym_continue] = ACTIONS(3546), + [anon_sym_debugger] = ACTIONS(3546), + [anon_sym_return] = ACTIONS(3546), + [anon_sym_throw] = ACTIONS(3546), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_LTtemplate_GT] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [anon_sym_SQUOTE] = ACTIONS(3546), + [anon_sym_class] = ACTIONS(3546), + [anon_sym_async] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3546), + [anon_sym_using] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3546), + [anon_sym_DASH] = ACTIONS(3546), + [anon_sym_SLASH] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_void] = ACTIONS(3546), + [anon_sym_delete] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3546), + [sym_number] = ACTIONS(3546), + [sym_private_property_identifier] = ACTIONS(3546), + [sym_this] = ACTIONS(3546), + [sym_super] = ACTIONS(3546), + [sym_true] = ACTIONS(3546), + [sym_false] = ACTIONS(3546), + [sym_null] = ACTIONS(3546), + [sym_undefined] = ACTIONS(3546), + [anon_sym_AT] = ACTIONS(3546), + [anon_sym_static] = ACTIONS(3546), + [anon_sym_readonly] = ACTIONS(3546), + [anon_sym_get] = ACTIONS(3546), + [anon_sym_set] = ACTIONS(3546), + [anon_sym_declare] = ACTIONS(3546), + [anon_sym_public] = ACTIONS(3546), + [anon_sym_private] = ACTIONS(3546), + [anon_sym_protected] = ACTIONS(3546), + [anon_sym_override] = ACTIONS(3546), + [anon_sym_module] = ACTIONS(3546), + [anon_sym_any] = ACTIONS(3546), + [anon_sym_number] = ACTIONS(3546), + [anon_sym_boolean] = ACTIONS(3546), + [anon_sym_string] = ACTIONS(3546), + [anon_sym_symbol] = ACTIONS(3546), + [anon_sym_object] = ACTIONS(3546), + [anon_sym_property] = ACTIONS(3546), + [anon_sym_signal] = ACTIONS(3546), + [anon_sym_on] = ACTIONS(3546), + [anon_sym_required] = ACTIONS(3546), + [anon_sym_component] = ACTIONS(3546), + [anon_sym_abstract] = ACTIONS(3546), + [anon_sym_interface] = ACTIONS(3546), + [anon_sym_enum] = ACTIONS(3546), + [sym_html_comment] = ACTIONS(5), }, - [669] = { - [sym_identifier] = ACTIONS(1597), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_COMMA] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_typeof] = ACTIONS(1597), - [anon_sym_import] = ACTIONS(1597), - [anon_sym_from] = ACTIONS(1597), - [anon_sym_var] = ACTIONS(1597), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_else] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_of] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1597), - [anon_sym_with] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_debugger] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_throw] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_case] = ACTIONS(1597), - [anon_sym_yield] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LTtemplate_GT] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1597), - [anon_sym_SLASH] = ACTIONS(1597), - [anon_sym_class] = ACTIONS(1597), - [anon_sym_async] = ACTIONS(1597), - [anon_sym_function] = ACTIONS(1597), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1597), - [anon_sym_delete] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1599), - [sym_number] = ACTIONS(1599), - [sym_this] = ACTIONS(1597), - [sym_super] = ACTIONS(1597), - [sym_true] = ACTIONS(1597), - [sym_false] = ACTIONS(1597), - [sym_null] = ACTIONS(1597), - [sym_undefined] = ACTIONS(1597), - [anon_sym_AT] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_property] = ACTIONS(1597), - [anon_sym_signal] = ACTIONS(1597), - [anon_sym_on] = ACTIONS(1597), - [anon_sym_required] = ACTIONS(1597), - [anon_sym_component] = ACTIONS(1597), - [anon_sym_abstract] = ACTIONS(1597), - [anon_sym_interface] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [anon_sym_PIPE_RBRACE] = ACTIONS(1599), - [sym__automatic_semicolon] = ACTIONS(1599), + [1100] = { + [sym_comment] = STATE(1100), + [sym_identifier] = ACTIONS(3548), + [anon_sym_export] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3548), + [anon_sym_type] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3548), + [anon_sym_RBRACE] = ACTIONS(3548), + [anon_sym_typeof] = ACTIONS(3548), + [anon_sym_import] = ACTIONS(3548), + [anon_sym_from] = ACTIONS(3548), + [anon_sym_with] = ACTIONS(3548), + [anon_sym_var] = ACTIONS(3548), + [anon_sym_let] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_BANG] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(3548), + [anon_sym_await] = ACTIONS(3548), + [anon_sym_of] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_debugger] = ACTIONS(3548), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3548), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_yield] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_LTtemplate_GT] = ACTIONS(3548), + [anon_sym_DQUOTE] = ACTIONS(3548), + [anon_sym_SQUOTE] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_async] = ACTIONS(3548), + [anon_sym_function] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_using] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_LT] = ACTIONS(3548), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_void] = ACTIONS(3548), + [anon_sym_delete] = ACTIONS(3548), + [anon_sym_PLUS_PLUS] = ACTIONS(3548), + [anon_sym_DASH_DASH] = ACTIONS(3548), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3548), + [sym_number] = ACTIONS(3548), + [sym_private_property_identifier] = ACTIONS(3548), + [sym_this] = ACTIONS(3548), + [sym_super] = ACTIONS(3548), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [sym_null] = ACTIONS(3548), + [sym_undefined] = ACTIONS(3548), + [anon_sym_AT] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_readonly] = ACTIONS(3548), + [anon_sym_get] = ACTIONS(3548), + [anon_sym_set] = ACTIONS(3548), + [anon_sym_declare] = ACTIONS(3548), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_override] = ACTIONS(3548), + [anon_sym_module] = ACTIONS(3548), + [anon_sym_any] = ACTIONS(3548), + [anon_sym_number] = ACTIONS(3548), + [anon_sym_boolean] = ACTIONS(3548), + [anon_sym_string] = ACTIONS(3548), + [anon_sym_symbol] = ACTIONS(3548), + [anon_sym_object] = ACTIONS(3548), + [anon_sym_property] = ACTIONS(3548), + [anon_sym_signal] = ACTIONS(3548), + [anon_sym_on] = ACTIONS(3548), + [anon_sym_required] = ACTIONS(3548), + [anon_sym_component] = ACTIONS(3548), + [anon_sym_abstract] = ACTIONS(3548), + [anon_sym_interface] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), + [sym_html_comment] = ACTIONS(5), }, - [670] = { - [sym__call_signature] = STATE(4647), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2265), - [anon_sym_export] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2267), - [anon_sym_EQ] = ACTIONS(1756), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2267), - [anon_sym_from] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2267), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(1758), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2267), - [anon_sym_readonly] = ACTIONS(2267), - [anon_sym_get] = ACTIONS(2267), - [anon_sym_set] = ACTIONS(2267), - [anon_sym_declare] = ACTIONS(2267), - [anon_sym_public] = ACTIONS(2267), - [anon_sym_private] = ACTIONS(2267), - [anon_sym_protected] = ACTIONS(2267), - [anon_sym_override] = ACTIONS(2267), - [anon_sym_module] = ACTIONS(2267), - [anon_sym_any] = ACTIONS(2267), - [anon_sym_number] = ACTIONS(2267), - [anon_sym_boolean] = ACTIONS(2267), - [anon_sym_string] = ACTIONS(2267), - [anon_sym_symbol] = ACTIONS(2267), - [anon_sym_property] = ACTIONS(2267), - [anon_sym_signal] = ACTIONS(2267), - [anon_sym_on] = ACTIONS(2267), - [anon_sym_required] = ACTIONS(2267), - [anon_sym_component] = ACTIONS(2267), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1101] = { + [sym_comment] = STATE(1101), + [sym_identifier] = ACTIONS(3550), + [anon_sym_export] = ACTIONS(3550), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_type] = ACTIONS(3550), + [anon_sym_namespace] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_RBRACE] = ACTIONS(3550), + [anon_sym_typeof] = ACTIONS(3550), + [anon_sym_import] = ACTIONS(3550), + [anon_sym_from] = ACTIONS(3550), + [anon_sym_with] = ACTIONS(3550), + [anon_sym_var] = ACTIONS(3550), + [anon_sym_let] = ACTIONS(3550), + [anon_sym_const] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_else] = ACTIONS(3550), + [anon_sym_if] = ACTIONS(3550), + [anon_sym_switch] = ACTIONS(3550), + [anon_sym_for] = ACTIONS(3550), + [anon_sym_LPAREN] = ACTIONS(3550), + [anon_sym_await] = ACTIONS(3550), + [anon_sym_of] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3550), + [anon_sym_do] = ACTIONS(3550), + [anon_sym_try] = ACTIONS(3550), + [anon_sym_break] = ACTIONS(3550), + [anon_sym_continue] = ACTIONS(3550), + [anon_sym_debugger] = ACTIONS(3550), + [anon_sym_return] = ACTIONS(3550), + [anon_sym_throw] = ACTIONS(3550), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_case] = ACTIONS(3550), + [anon_sym_yield] = ACTIONS(3550), + [anon_sym_LBRACK] = ACTIONS(3550), + [anon_sym_LTtemplate_GT] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(3550), + [anon_sym_class] = ACTIONS(3550), + [anon_sym_async] = ACTIONS(3550), + [anon_sym_function] = ACTIONS(3550), + [anon_sym_new] = ACTIONS(3550), + [anon_sym_using] = ACTIONS(3550), + [anon_sym_PLUS] = ACTIONS(3550), + [anon_sym_DASH] = ACTIONS(3550), + [anon_sym_SLASH] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(3550), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_void] = ACTIONS(3550), + [anon_sym_delete] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_DASH_DASH] = ACTIONS(3550), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3550), + [sym_number] = ACTIONS(3550), + [sym_private_property_identifier] = ACTIONS(3550), + [sym_this] = ACTIONS(3550), + [sym_super] = ACTIONS(3550), + [sym_true] = ACTIONS(3550), + [sym_false] = ACTIONS(3550), + [sym_null] = ACTIONS(3550), + [sym_undefined] = ACTIONS(3550), + [anon_sym_AT] = ACTIONS(3550), + [anon_sym_static] = ACTIONS(3550), + [anon_sym_readonly] = ACTIONS(3550), + [anon_sym_get] = ACTIONS(3550), + [anon_sym_set] = ACTIONS(3550), + [anon_sym_declare] = ACTIONS(3550), + [anon_sym_public] = ACTIONS(3550), + [anon_sym_private] = ACTIONS(3550), + [anon_sym_protected] = ACTIONS(3550), + [anon_sym_override] = ACTIONS(3550), + [anon_sym_module] = ACTIONS(3550), + [anon_sym_any] = ACTIONS(3550), + [anon_sym_number] = ACTIONS(3550), + [anon_sym_boolean] = ACTIONS(3550), + [anon_sym_string] = ACTIONS(3550), + [anon_sym_symbol] = ACTIONS(3550), + [anon_sym_object] = ACTIONS(3550), + [anon_sym_property] = ACTIONS(3550), + [anon_sym_signal] = ACTIONS(3550), + [anon_sym_on] = ACTIONS(3550), + [anon_sym_required] = ACTIONS(3550), + [anon_sym_component] = ACTIONS(3550), + [anon_sym_abstract] = ACTIONS(3550), + [anon_sym_interface] = ACTIONS(3550), + [anon_sym_enum] = ACTIONS(3550), + [sym_html_comment] = ACTIONS(5), }, - [671] = { - [sym_identifier] = ACTIONS(1537), - [anon_sym_export] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_typeof] = ACTIONS(1537), - [anon_sym_import] = ACTIONS(1537), - [anon_sym_from] = ACTIONS(1537), - [anon_sym_var] = ACTIONS(1537), - [anon_sym_let] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_await] = ACTIONS(1537), - [anon_sym_of] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [anon_sym_with] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_debugger] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_catch] = ACTIONS(1537), - [anon_sym_finally] = ACTIONS(1537), - [anon_sym_yield] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LTtemplate_GT] = ACTIONS(1539), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_class] = ACTIONS(1537), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_function] = ACTIONS(1537), - [anon_sym_new] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_void] = ACTIONS(1537), - [anon_sym_delete] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1539), - [sym_number] = ACTIONS(1539), - [sym_this] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [sym_null] = ACTIONS(1537), - [sym_undefined] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_readonly] = ACTIONS(1537), - [anon_sym_get] = ACTIONS(1537), - [anon_sym_set] = ACTIONS(1537), - [anon_sym_declare] = ACTIONS(1537), - [anon_sym_public] = ACTIONS(1537), - [anon_sym_private] = ACTIONS(1537), - [anon_sym_protected] = ACTIONS(1537), - [anon_sym_override] = ACTIONS(1537), - [anon_sym_module] = ACTIONS(1537), - [anon_sym_any] = ACTIONS(1537), - [anon_sym_number] = ACTIONS(1537), - [anon_sym_boolean] = ACTIONS(1537), - [anon_sym_string] = ACTIONS(1537), - [anon_sym_symbol] = ACTIONS(1537), - [anon_sym_property] = ACTIONS(1537), - [anon_sym_signal] = ACTIONS(1537), - [anon_sym_on] = ACTIONS(1537), - [anon_sym_required] = ACTIONS(1537), - [anon_sym_component] = ACTIONS(1537), - [anon_sym_abstract] = ACTIONS(1537), - [anon_sym_interface] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [sym__automatic_semicolon] = ACTIONS(2301), + [1102] = { + [sym_comment] = STATE(1102), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_default] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_else] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_case] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [sym_html_comment] = ACTIONS(5), }, - [672] = { - [sym__call_signature] = STATE(4996), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2303), - [anon_sym_export] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2305), - [anon_sym_from] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(1754), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2305), - [anon_sym_readonly] = ACTIONS(2305), - [anon_sym_get] = ACTIONS(2305), - [anon_sym_set] = ACTIONS(2305), - [anon_sym_declare] = ACTIONS(2305), - [anon_sym_public] = ACTIONS(2305), - [anon_sym_private] = ACTIONS(2305), - [anon_sym_protected] = ACTIONS(2305), - [anon_sym_override] = ACTIONS(2305), - [anon_sym_module] = ACTIONS(2305), - [anon_sym_any] = ACTIONS(2305), - [anon_sym_number] = ACTIONS(2305), - [anon_sym_boolean] = ACTIONS(2305), - [anon_sym_string] = ACTIONS(2305), - [anon_sym_symbol] = ACTIONS(2305), - [anon_sym_property] = ACTIONS(2305), - [anon_sym_signal] = ACTIONS(2305), - [anon_sym_on] = ACTIONS(2305), - [anon_sym_required] = ACTIONS(2305), - [anon_sym_component] = ACTIONS(2305), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1103] = { + [sym_comment] = STATE(1103), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_default] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_else] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_case] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [sym_html_comment] = ACTIONS(5), }, - [673] = { - [sym__call_signature] = STATE(4996), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2303), - [anon_sym_export] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2305), - [anon_sym_EQ] = ACTIONS(1752), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2305), - [anon_sym_from] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2307), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2305), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(1754), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2305), - [anon_sym_readonly] = ACTIONS(2305), - [anon_sym_get] = ACTIONS(2305), - [anon_sym_set] = ACTIONS(2305), - [anon_sym_declare] = ACTIONS(2305), - [anon_sym_public] = ACTIONS(2305), - [anon_sym_private] = ACTIONS(2305), - [anon_sym_protected] = ACTIONS(2305), - [anon_sym_override] = ACTIONS(2305), - [anon_sym_module] = ACTIONS(2305), - [anon_sym_any] = ACTIONS(2305), - [anon_sym_number] = ACTIONS(2305), - [anon_sym_boolean] = ACTIONS(2305), - [anon_sym_string] = ACTIONS(2305), - [anon_sym_symbol] = ACTIONS(2305), - [anon_sym_property] = ACTIONS(2305), - [anon_sym_signal] = ACTIONS(2305), - [anon_sym_on] = ACTIONS(2305), - [anon_sym_required] = ACTIONS(2305), - [anon_sym_component] = ACTIONS(2305), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1104] = { + [sym_comment] = STATE(1104), + [sym_identifier] = ACTIONS(3554), + [anon_sym_export] = ACTIONS(3554), + [anon_sym_default] = ACTIONS(3554), + [anon_sym_type] = ACTIONS(3554), + [anon_sym_namespace] = ACTIONS(3554), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_RBRACE] = ACTIONS(3554), + [anon_sym_typeof] = ACTIONS(3554), + [anon_sym_import] = ACTIONS(3554), + [anon_sym_from] = ACTIONS(3554), + [anon_sym_with] = ACTIONS(3554), + [anon_sym_var] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_const] = ACTIONS(3554), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_else] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_switch] = ACTIONS(3554), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_await] = ACTIONS(3554), + [anon_sym_of] = ACTIONS(3554), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_break] = ACTIONS(3554), + [anon_sym_continue] = ACTIONS(3554), + [anon_sym_debugger] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_throw] = ACTIONS(3554), + [anon_sym_SEMI] = ACTIONS(3554), + [anon_sym_case] = ACTIONS(3554), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LTtemplate_GT] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_SQUOTE] = ACTIONS(3554), + [anon_sym_class] = ACTIONS(3554), + [anon_sym_async] = ACTIONS(3554), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_using] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_SLASH] = ACTIONS(3554), + [anon_sym_LT] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3554), + [anon_sym_void] = ACTIONS(3554), + [anon_sym_delete] = ACTIONS(3554), + [anon_sym_PLUS_PLUS] = ACTIONS(3554), + [anon_sym_DASH_DASH] = ACTIONS(3554), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3554), + [sym_number] = ACTIONS(3554), + [sym_private_property_identifier] = ACTIONS(3554), + [sym_this] = ACTIONS(3554), + [sym_super] = ACTIONS(3554), + [sym_true] = ACTIONS(3554), + [sym_false] = ACTIONS(3554), + [sym_null] = ACTIONS(3554), + [sym_undefined] = ACTIONS(3554), + [anon_sym_AT] = ACTIONS(3554), + [anon_sym_static] = ACTIONS(3554), + [anon_sym_readonly] = ACTIONS(3554), + [anon_sym_get] = ACTIONS(3554), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_declare] = ACTIONS(3554), + [anon_sym_public] = ACTIONS(3554), + [anon_sym_private] = ACTIONS(3554), + [anon_sym_protected] = ACTIONS(3554), + [anon_sym_override] = ACTIONS(3554), + [anon_sym_module] = ACTIONS(3554), + [anon_sym_any] = ACTIONS(3554), + [anon_sym_number] = ACTIONS(3554), + [anon_sym_boolean] = ACTIONS(3554), + [anon_sym_string] = ACTIONS(3554), + [anon_sym_symbol] = ACTIONS(3554), + [anon_sym_object] = ACTIONS(3554), + [anon_sym_property] = ACTIONS(3554), + [anon_sym_signal] = ACTIONS(3554), + [anon_sym_on] = ACTIONS(3554), + [anon_sym_required] = ACTIONS(3554), + [anon_sym_component] = ACTIONS(3554), + [anon_sym_abstract] = ACTIONS(3554), + [anon_sym_interface] = ACTIONS(3554), + [anon_sym_enum] = ACTIONS(3554), + [sym_html_comment] = ACTIONS(5), }, - [674] = { - [sym_finally_clause] = STATE(761), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_RBRACE] = ACTIONS(2312), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_from] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_else] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2312), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_of] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_break] = ACTIONS(2310), - [anon_sym_continue] = ACTIONS(2310), - [anon_sym_debugger] = ACTIONS(2310), - [anon_sym_return] = ACTIONS(2310), - [anon_sym_throw] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2312), - [anon_sym_case] = ACTIONS(2310), - [anon_sym_finally] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2312), - [anon_sym_LTtemplate_GT] = ACTIONS(2312), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2312), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2312), - [anon_sym_DASH_DASH] = ACTIONS(2312), - [anon_sym_DQUOTE] = ACTIONS(2312), - [anon_sym_SQUOTE] = ACTIONS(2312), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2312), - [sym_number] = ACTIONS(2312), - [sym_this] = ACTIONS(2310), - [sym_super] = ACTIONS(2310), - [sym_true] = ACTIONS(2310), - [sym_false] = ACTIONS(2310), - [sym_null] = ACTIONS(2310), - [sym_undefined] = ACTIONS(2310), - [anon_sym_AT] = ACTIONS(2312), - [anon_sym_static] = ACTIONS(2310), - [anon_sym_readonly] = ACTIONS(2310), - [anon_sym_get] = ACTIONS(2310), - [anon_sym_set] = ACTIONS(2310), - [anon_sym_declare] = ACTIONS(2310), - [anon_sym_public] = ACTIONS(2310), - [anon_sym_private] = ACTIONS(2310), - [anon_sym_protected] = ACTIONS(2310), - [anon_sym_override] = ACTIONS(2310), - [anon_sym_module] = ACTIONS(2310), - [anon_sym_any] = ACTIONS(2310), - [anon_sym_number] = ACTIONS(2310), - [anon_sym_boolean] = ACTIONS(2310), - [anon_sym_string] = ACTIONS(2310), - [anon_sym_symbol] = ACTIONS(2310), - [anon_sym_property] = ACTIONS(2310), - [anon_sym_signal] = ACTIONS(2310), - [anon_sym_on] = ACTIONS(2310), - [anon_sym_required] = ACTIONS(2310), - [anon_sym_component] = ACTIONS(2310), - [anon_sym_abstract] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), + [1105] = { + [sym_comment] = STATE(1105), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_from] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_of] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_case] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_LTtemplate_GT] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_property] = ACTIONS(2456), + [anon_sym_signal] = ACTIONS(2456), + [anon_sym_on] = ACTIONS(2456), + [anon_sym_required] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym_html_comment] = ACTIONS(5), + }, + [1106] = { + [sym_comment] = STATE(1106), + [sym_identifier] = ACTIONS(3556), + [anon_sym_export] = ACTIONS(3556), + [anon_sym_default] = ACTIONS(3556), + [anon_sym_type] = ACTIONS(3556), + [anon_sym_namespace] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_RBRACE] = ACTIONS(3556), + [anon_sym_typeof] = ACTIONS(3556), + [anon_sym_import] = ACTIONS(3556), + [anon_sym_from] = ACTIONS(3556), + [anon_sym_with] = ACTIONS(3556), + [anon_sym_var] = ACTIONS(3556), + [anon_sym_let] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3556), + [anon_sym_else] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3556), + [anon_sym_await] = ACTIONS(3556), + [anon_sym_of] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_debugger] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym_case] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3556), + [anon_sym_LTtemplate_GT] = ACTIONS(3556), + [anon_sym_DQUOTE] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3556), + [anon_sym_async] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_using] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_SLASH] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_void] = ACTIONS(3556), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3556), + [anon_sym_DASH_DASH] = ACTIONS(3556), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3556), + [sym_number] = ACTIONS(3556), + [sym_private_property_identifier] = ACTIONS(3556), + [sym_this] = ACTIONS(3556), + [sym_super] = ACTIONS(3556), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [sym_null] = ACTIONS(3556), + [sym_undefined] = ACTIONS(3556), + [anon_sym_AT] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_readonly] = ACTIONS(3556), + [anon_sym_get] = ACTIONS(3556), + [anon_sym_set] = ACTIONS(3556), + [anon_sym_declare] = ACTIONS(3556), + [anon_sym_public] = ACTIONS(3556), + [anon_sym_private] = ACTIONS(3556), + [anon_sym_protected] = ACTIONS(3556), + [anon_sym_override] = ACTIONS(3556), + [anon_sym_module] = ACTIONS(3556), + [anon_sym_any] = ACTIONS(3556), + [anon_sym_number] = ACTIONS(3556), + [anon_sym_boolean] = ACTIONS(3556), + [anon_sym_string] = ACTIONS(3556), + [anon_sym_symbol] = ACTIONS(3556), + [anon_sym_object] = ACTIONS(3556), + [anon_sym_property] = ACTIONS(3556), + [anon_sym_signal] = ACTIONS(3556), + [anon_sym_on] = ACTIONS(3556), + [anon_sym_required] = ACTIONS(3556), + [anon_sym_component] = ACTIONS(3556), + [anon_sym_abstract] = ACTIONS(3556), + [anon_sym_interface] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), + [sym_html_comment] = ACTIONS(5), + }, + [1107] = { + [sym_comment] = STATE(1107), + [sym_identifier] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_default] = ACTIONS(3558), + [anon_sym_type] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_typeof] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_from] = ACTIONS(3558), + [anon_sym_with] = ACTIONS(3558), + [anon_sym_var] = ACTIONS(3558), + [anon_sym_let] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_else] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_await] = ACTIONS(3558), + [anon_sym_of] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_debugger] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym_case] = ACTIONS(3558), + [anon_sym_yield] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_LTtemplate_GT] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_async] = ACTIONS(3558), + [anon_sym_function] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_void] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3558), + [sym_number] = ACTIONS(3558), + [sym_private_property_identifier] = ACTIONS(3558), + [sym_this] = ACTIONS(3558), + [sym_super] = ACTIONS(3558), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [sym_null] = ACTIONS(3558), + [sym_undefined] = ACTIONS(3558), + [anon_sym_AT] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_readonly] = ACTIONS(3558), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3558), + [anon_sym_declare] = ACTIONS(3558), + [anon_sym_public] = ACTIONS(3558), + [anon_sym_private] = ACTIONS(3558), + [anon_sym_protected] = ACTIONS(3558), + [anon_sym_override] = ACTIONS(3558), + [anon_sym_module] = ACTIONS(3558), + [anon_sym_any] = ACTIONS(3558), + [anon_sym_number] = ACTIONS(3558), + [anon_sym_boolean] = ACTIONS(3558), + [anon_sym_string] = ACTIONS(3558), + [anon_sym_symbol] = ACTIONS(3558), + [anon_sym_object] = ACTIONS(3558), + [anon_sym_property] = ACTIONS(3558), + [anon_sym_signal] = ACTIONS(3558), + [anon_sym_on] = ACTIONS(3558), + [anon_sym_required] = ACTIONS(3558), + [anon_sym_component] = ACTIONS(3558), + [anon_sym_abstract] = ACTIONS(3558), + [anon_sym_interface] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), + [sym_html_comment] = ACTIONS(5), + }, + [1108] = { + [sym_comment] = STATE(1108), + [sym_identifier] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_default] = ACTIONS(3558), + [anon_sym_type] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_typeof] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_from] = ACTIONS(3558), + [anon_sym_with] = ACTIONS(3558), + [anon_sym_var] = ACTIONS(3558), + [anon_sym_let] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_else] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_await] = ACTIONS(3558), + [anon_sym_of] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_debugger] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym_case] = ACTIONS(3558), + [anon_sym_yield] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_LTtemplate_GT] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_async] = ACTIONS(3558), + [anon_sym_function] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_void] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3558), + [sym_number] = ACTIONS(3558), + [sym_private_property_identifier] = ACTIONS(3558), + [sym_this] = ACTIONS(3558), + [sym_super] = ACTIONS(3558), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [sym_null] = ACTIONS(3558), + [sym_undefined] = ACTIONS(3558), + [anon_sym_AT] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_readonly] = ACTIONS(3558), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3558), + [anon_sym_declare] = ACTIONS(3558), + [anon_sym_public] = ACTIONS(3558), + [anon_sym_private] = ACTIONS(3558), + [anon_sym_protected] = ACTIONS(3558), + [anon_sym_override] = ACTIONS(3558), + [anon_sym_module] = ACTIONS(3558), + [anon_sym_any] = ACTIONS(3558), + [anon_sym_number] = ACTIONS(3558), + [anon_sym_boolean] = ACTIONS(3558), + [anon_sym_string] = ACTIONS(3558), + [anon_sym_symbol] = ACTIONS(3558), + [anon_sym_object] = ACTIONS(3558), + [anon_sym_property] = ACTIONS(3558), + [anon_sym_signal] = ACTIONS(3558), + [anon_sym_on] = ACTIONS(3558), + [anon_sym_required] = ACTIONS(3558), + [anon_sym_component] = ACTIONS(3558), + [anon_sym_abstract] = ACTIONS(3558), + [anon_sym_interface] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), + [sym_html_comment] = ACTIONS(5), + }, + [1109] = { + [sym_comment] = STATE(1109), + [sym_identifier] = ACTIONS(3560), + [anon_sym_export] = ACTIONS(3560), + [anon_sym_default] = ACTIONS(3560), + [anon_sym_type] = ACTIONS(3560), + [anon_sym_namespace] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_RBRACE] = ACTIONS(3560), + [anon_sym_typeof] = ACTIONS(3560), + [anon_sym_import] = ACTIONS(3560), + [anon_sym_from] = ACTIONS(3560), + [anon_sym_with] = ACTIONS(3560), + [anon_sym_var] = ACTIONS(3560), + [anon_sym_let] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3560), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_switch] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_LPAREN] = ACTIONS(3560), + [anon_sym_await] = ACTIONS(3560), + [anon_sym_of] = ACTIONS(3560), + [anon_sym_while] = ACTIONS(3560), + [anon_sym_do] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_debugger] = ACTIONS(3560), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_throw] = ACTIONS(3560), + [anon_sym_SEMI] = ACTIONS(3560), + [anon_sym_case] = ACTIONS(3560), + [anon_sym_yield] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_LTtemplate_GT] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3560), + [anon_sym_class] = ACTIONS(3560), + [anon_sym_async] = ACTIONS(3560), + [anon_sym_function] = ACTIONS(3560), + [anon_sym_new] = ACTIONS(3560), + [anon_sym_using] = ACTIONS(3560), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3560), + [anon_sym_void] = ACTIONS(3560), + [anon_sym_delete] = ACTIONS(3560), + [anon_sym_PLUS_PLUS] = ACTIONS(3560), + [anon_sym_DASH_DASH] = ACTIONS(3560), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3560), + [sym_number] = ACTIONS(3560), + [sym_private_property_identifier] = ACTIONS(3560), + [sym_this] = ACTIONS(3560), + [sym_super] = ACTIONS(3560), + [sym_true] = ACTIONS(3560), + [sym_false] = ACTIONS(3560), + [sym_null] = ACTIONS(3560), + [sym_undefined] = ACTIONS(3560), + [anon_sym_AT] = ACTIONS(3560), + [anon_sym_static] = ACTIONS(3560), + [anon_sym_readonly] = ACTIONS(3560), + [anon_sym_get] = ACTIONS(3560), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_declare] = ACTIONS(3560), + [anon_sym_public] = ACTIONS(3560), + [anon_sym_private] = ACTIONS(3560), + [anon_sym_protected] = ACTIONS(3560), + [anon_sym_override] = ACTIONS(3560), + [anon_sym_module] = ACTIONS(3560), + [anon_sym_any] = ACTIONS(3560), + [anon_sym_number] = ACTIONS(3560), + [anon_sym_boolean] = ACTIONS(3560), + [anon_sym_string] = ACTIONS(3560), + [anon_sym_symbol] = ACTIONS(3560), + [anon_sym_object] = ACTIONS(3560), + [anon_sym_property] = ACTIONS(3560), + [anon_sym_signal] = ACTIONS(3560), + [anon_sym_on] = ACTIONS(3560), + [anon_sym_required] = ACTIONS(3560), + [anon_sym_component] = ACTIONS(3560), + [anon_sym_abstract] = ACTIONS(3560), + [anon_sym_interface] = ACTIONS(3560), + [anon_sym_enum] = ACTIONS(3560), + [sym_html_comment] = ACTIONS(5), + }, + [1110] = { + [sym_comment] = STATE(1110), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3562), + [sym_html_comment] = ACTIONS(5), + }, + [1111] = { + [sym_comment] = STATE(1111), + [sym_identifier] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_default] = ACTIONS(3564), + [anon_sym_type] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_typeof] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_from] = ACTIONS(3564), + [anon_sym_with] = ACTIONS(3564), + [anon_sym_var] = ACTIONS(3564), + [anon_sym_let] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_else] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_await] = ACTIONS(3564), + [anon_sym_of] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_debugger] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym_case] = ACTIONS(3564), + [anon_sym_yield] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LTtemplate_GT] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_async] = ACTIONS(3564), + [anon_sym_function] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_void] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3564), + [sym_number] = ACTIONS(3564), + [sym_private_property_identifier] = ACTIONS(3564), + [sym_this] = ACTIONS(3564), + [sym_super] = ACTIONS(3564), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_undefined] = ACTIONS(3564), + [anon_sym_AT] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_readonly] = ACTIONS(3564), + [anon_sym_get] = ACTIONS(3564), + [anon_sym_set] = ACTIONS(3564), + [anon_sym_declare] = ACTIONS(3564), + [anon_sym_public] = ACTIONS(3564), + [anon_sym_private] = ACTIONS(3564), + [anon_sym_protected] = ACTIONS(3564), + [anon_sym_override] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_any] = ACTIONS(3564), + [anon_sym_number] = ACTIONS(3564), + [anon_sym_boolean] = ACTIONS(3564), + [anon_sym_string] = ACTIONS(3564), + [anon_sym_symbol] = ACTIONS(3564), + [anon_sym_object] = ACTIONS(3564), + [anon_sym_property] = ACTIONS(3564), + [anon_sym_signal] = ACTIONS(3564), + [anon_sym_on] = ACTIONS(3564), + [anon_sym_required] = ACTIONS(3564), + [anon_sym_component] = ACTIONS(3564), + [anon_sym_abstract] = ACTIONS(3564), + [anon_sym_interface] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), + [sym_html_comment] = ACTIONS(5), + }, + [1112] = { + [sym_comment] = STATE(1112), + [sym_identifier] = ACTIONS(3566), + [anon_sym_export] = ACTIONS(3566), + [anon_sym_default] = ACTIONS(3566), + [anon_sym_type] = ACTIONS(3566), + [anon_sym_namespace] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_RBRACE] = ACTIONS(3566), + [anon_sym_typeof] = ACTIONS(3566), + [anon_sym_import] = ACTIONS(3566), + [anon_sym_from] = ACTIONS(3566), + [anon_sym_with] = ACTIONS(3566), + [anon_sym_var] = ACTIONS(3566), + [anon_sym_let] = ACTIONS(3566), + [anon_sym_const] = ACTIONS(3566), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_else] = ACTIONS(3566), + [anon_sym_if] = ACTIONS(3566), + [anon_sym_switch] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_await] = ACTIONS(3566), + [anon_sym_of] = ACTIONS(3566), + [anon_sym_while] = ACTIONS(3566), + [anon_sym_do] = ACTIONS(3566), + [anon_sym_try] = ACTIONS(3566), + [anon_sym_break] = ACTIONS(3566), + [anon_sym_continue] = ACTIONS(3566), + [anon_sym_debugger] = ACTIONS(3566), + [anon_sym_return] = ACTIONS(3566), + [anon_sym_throw] = ACTIONS(3566), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym_case] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3566), + [anon_sym_LBRACK] = ACTIONS(3566), + [anon_sym_LTtemplate_GT] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [anon_sym_SQUOTE] = ACTIONS(3566), + [anon_sym_class] = ACTIONS(3566), + [anon_sym_async] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3566), + [anon_sym_using] = ACTIONS(3566), + [anon_sym_PLUS] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3566), + [anon_sym_SLASH] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_TILDE] = ACTIONS(3566), + [anon_sym_void] = ACTIONS(3566), + [anon_sym_delete] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3566), + [sym_number] = ACTIONS(3566), + [sym_private_property_identifier] = ACTIONS(3566), + [sym_this] = ACTIONS(3566), + [sym_super] = ACTIONS(3566), + [sym_true] = ACTIONS(3566), + [sym_false] = ACTIONS(3566), + [sym_null] = ACTIONS(3566), + [sym_undefined] = ACTIONS(3566), + [anon_sym_AT] = ACTIONS(3566), + [anon_sym_static] = ACTIONS(3566), + [anon_sym_readonly] = ACTIONS(3566), + [anon_sym_get] = ACTIONS(3566), + [anon_sym_set] = ACTIONS(3566), + [anon_sym_declare] = ACTIONS(3566), + [anon_sym_public] = ACTIONS(3566), + [anon_sym_private] = ACTIONS(3566), + [anon_sym_protected] = ACTIONS(3566), + [anon_sym_override] = ACTIONS(3566), + [anon_sym_module] = ACTIONS(3566), + [anon_sym_any] = ACTIONS(3566), + [anon_sym_number] = ACTIONS(3566), + [anon_sym_boolean] = ACTIONS(3566), + [anon_sym_string] = ACTIONS(3566), + [anon_sym_symbol] = ACTIONS(3566), + [anon_sym_object] = ACTIONS(3566), + [anon_sym_property] = ACTIONS(3566), + [anon_sym_signal] = ACTIONS(3566), + [anon_sym_on] = ACTIONS(3566), + [anon_sym_required] = ACTIONS(3566), + [anon_sym_component] = ACTIONS(3566), + [anon_sym_abstract] = ACTIONS(3566), + [anon_sym_interface] = ACTIONS(3566), + [anon_sym_enum] = ACTIONS(3566), + [sym_html_comment] = ACTIONS(5), + }, + [1113] = { + [sym_comment] = STATE(1113), + [sym_identifier] = ACTIONS(3568), + [anon_sym_export] = ACTIONS(3568), + [anon_sym_default] = ACTIONS(3568), + [anon_sym_type] = ACTIONS(3568), + [anon_sym_namespace] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_RBRACE] = ACTIONS(3568), + [anon_sym_typeof] = ACTIONS(3568), + [anon_sym_import] = ACTIONS(3568), + [anon_sym_from] = ACTIONS(3568), + [anon_sym_with] = ACTIONS(3568), + [anon_sym_var] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_const] = ACTIONS(3568), + [anon_sym_BANG] = ACTIONS(3568), + [anon_sym_else] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_switch] = ACTIONS(3568), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_await] = ACTIONS(3568), + [anon_sym_of] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_break] = ACTIONS(3568), + [anon_sym_continue] = ACTIONS(3568), + [anon_sym_debugger] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_throw] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3568), + [anon_sym_case] = ACTIONS(3568), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LTtemplate_GT] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_SQUOTE] = ACTIONS(3568), + [anon_sym_class] = ACTIONS(3568), + [anon_sym_async] = ACTIONS(3568), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_using] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_SLASH] = ACTIONS(3568), + [anon_sym_LT] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3568), + [anon_sym_void] = ACTIONS(3568), + [anon_sym_delete] = ACTIONS(3568), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3568), + [sym_number] = ACTIONS(3568), + [sym_private_property_identifier] = ACTIONS(3568), + [sym_this] = ACTIONS(3568), + [sym_super] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_null] = ACTIONS(3568), + [sym_undefined] = ACTIONS(3568), + [anon_sym_AT] = ACTIONS(3568), + [anon_sym_static] = ACTIONS(3568), + [anon_sym_readonly] = ACTIONS(3568), + [anon_sym_get] = ACTIONS(3568), + [anon_sym_set] = ACTIONS(3568), + [anon_sym_declare] = ACTIONS(3568), + [anon_sym_public] = ACTIONS(3568), + [anon_sym_private] = ACTIONS(3568), + [anon_sym_protected] = ACTIONS(3568), + [anon_sym_override] = ACTIONS(3568), + [anon_sym_module] = ACTIONS(3568), + [anon_sym_any] = ACTIONS(3568), + [anon_sym_number] = ACTIONS(3568), + [anon_sym_boolean] = ACTIONS(3568), + [anon_sym_string] = ACTIONS(3568), + [anon_sym_symbol] = ACTIONS(3568), + [anon_sym_object] = ACTIONS(3568), + [anon_sym_property] = ACTIONS(3568), + [anon_sym_signal] = ACTIONS(3568), + [anon_sym_on] = ACTIONS(3568), + [anon_sym_required] = ACTIONS(3568), + [anon_sym_component] = ACTIONS(3568), + [anon_sym_abstract] = ACTIONS(3568), + [anon_sym_interface] = ACTIONS(3568), + [anon_sym_enum] = ACTIONS(3568), + [sym_html_comment] = ACTIONS(5), + }, + [1114] = { + [sym_comment] = STATE(1114), + [sym_identifier] = ACTIONS(3570), + [anon_sym_export] = ACTIONS(3570), + [anon_sym_default] = ACTIONS(3570), + [anon_sym_type] = ACTIONS(3570), + [anon_sym_namespace] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_RBRACE] = ACTIONS(3570), + [anon_sym_typeof] = ACTIONS(3570), + [anon_sym_import] = ACTIONS(3570), + [anon_sym_from] = ACTIONS(3570), + [anon_sym_with] = ACTIONS(3570), + [anon_sym_var] = ACTIONS(3570), + [anon_sym_let] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_BANG] = ACTIONS(3570), + [anon_sym_else] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_switch] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3570), + [anon_sym_await] = ACTIONS(3570), + [anon_sym_of] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_do] = ACTIONS(3570), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_debugger] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_throw] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym_case] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_LTtemplate_GT] = ACTIONS(3570), + [anon_sym_DQUOTE] = ACTIONS(3570), + [anon_sym_SQUOTE] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_async] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_TILDE] = ACTIONS(3570), + [anon_sym_void] = ACTIONS(3570), + [anon_sym_delete] = ACTIONS(3570), + [anon_sym_PLUS_PLUS] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3570), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3570), + [sym_number] = ACTIONS(3570), + [sym_private_property_identifier] = ACTIONS(3570), + [sym_this] = ACTIONS(3570), + [sym_super] = ACTIONS(3570), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [sym_null] = ACTIONS(3570), + [sym_undefined] = ACTIONS(3570), + [anon_sym_AT] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_readonly] = ACTIONS(3570), + [anon_sym_get] = ACTIONS(3570), + [anon_sym_set] = ACTIONS(3570), + [anon_sym_declare] = ACTIONS(3570), + [anon_sym_public] = ACTIONS(3570), + [anon_sym_private] = ACTIONS(3570), + [anon_sym_protected] = ACTIONS(3570), + [anon_sym_override] = ACTIONS(3570), + [anon_sym_module] = ACTIONS(3570), + [anon_sym_any] = ACTIONS(3570), + [anon_sym_number] = ACTIONS(3570), + [anon_sym_boolean] = ACTIONS(3570), + [anon_sym_string] = ACTIONS(3570), + [anon_sym_symbol] = ACTIONS(3570), + [anon_sym_object] = ACTIONS(3570), + [anon_sym_property] = ACTIONS(3570), + [anon_sym_signal] = ACTIONS(3570), + [anon_sym_on] = ACTIONS(3570), + [anon_sym_required] = ACTIONS(3570), + [anon_sym_component] = ACTIONS(3570), + [anon_sym_abstract] = ACTIONS(3570), + [anon_sym_interface] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [sym_html_comment] = ACTIONS(5), + }, + [1115] = { + [sym_comment] = STATE(1115), + [sym_identifier] = ACTIONS(3572), + [anon_sym_export] = ACTIONS(3572), + [anon_sym_default] = ACTIONS(3572), + [anon_sym_type] = ACTIONS(3572), + [anon_sym_namespace] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_RBRACE] = ACTIONS(3572), + [anon_sym_typeof] = ACTIONS(3572), + [anon_sym_import] = ACTIONS(3572), + [anon_sym_from] = ACTIONS(3572), + [anon_sym_with] = ACTIONS(3572), + [anon_sym_var] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_const] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_else] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_switch] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_await] = ACTIONS(3572), + [anon_sym_of] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_break] = ACTIONS(3572), + [anon_sym_continue] = ACTIONS(3572), + [anon_sym_debugger] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_throw] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym_case] = ACTIONS(3572), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LTtemplate_GT] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_class] = ACTIONS(3572), + [anon_sym_async] = ACTIONS(3572), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_using] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_SLASH] = ACTIONS(3572), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_void] = ACTIONS(3572), + [anon_sym_delete] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3572), + [sym_number] = ACTIONS(3572), + [sym_private_property_identifier] = ACTIONS(3572), + [sym_this] = ACTIONS(3572), + [sym_super] = ACTIONS(3572), + [sym_true] = ACTIONS(3572), + [sym_false] = ACTIONS(3572), + [sym_null] = ACTIONS(3572), + [sym_undefined] = ACTIONS(3572), + [anon_sym_AT] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3572), + [anon_sym_readonly] = ACTIONS(3572), + [anon_sym_get] = ACTIONS(3572), + [anon_sym_set] = ACTIONS(3572), + [anon_sym_declare] = ACTIONS(3572), + [anon_sym_public] = ACTIONS(3572), + [anon_sym_private] = ACTIONS(3572), + [anon_sym_protected] = ACTIONS(3572), + [anon_sym_override] = ACTIONS(3572), + [anon_sym_module] = ACTIONS(3572), + [anon_sym_any] = ACTIONS(3572), + [anon_sym_number] = ACTIONS(3572), + [anon_sym_boolean] = ACTIONS(3572), + [anon_sym_string] = ACTIONS(3572), + [anon_sym_symbol] = ACTIONS(3572), + [anon_sym_object] = ACTIONS(3572), + [anon_sym_property] = ACTIONS(3572), + [anon_sym_signal] = ACTIONS(3572), + [anon_sym_on] = ACTIONS(3572), + [anon_sym_required] = ACTIONS(3572), + [anon_sym_component] = ACTIONS(3572), + [anon_sym_abstract] = ACTIONS(3572), + [anon_sym_interface] = ACTIONS(3572), + [anon_sym_enum] = ACTIONS(3572), + [sym_html_comment] = ACTIONS(5), + }, + [1116] = { + [sym_comment] = STATE(1116), + [sym_identifier] = ACTIONS(3574), + [anon_sym_export] = ACTIONS(3574), + [anon_sym_default] = ACTIONS(3574), + [anon_sym_type] = ACTIONS(3574), + [anon_sym_namespace] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_RBRACE] = ACTIONS(3574), + [anon_sym_typeof] = ACTIONS(3574), + [anon_sym_import] = ACTIONS(3574), + [anon_sym_from] = ACTIONS(3574), + [anon_sym_with] = ACTIONS(3574), + [anon_sym_var] = ACTIONS(3574), + [anon_sym_let] = ACTIONS(3574), + [anon_sym_const] = ACTIONS(3574), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_switch] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_LPAREN] = ACTIONS(3574), + [anon_sym_await] = ACTIONS(3574), + [anon_sym_of] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_do] = ACTIONS(3574), + [anon_sym_try] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_debugger] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_throw] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym_case] = ACTIONS(3574), + [anon_sym_yield] = ACTIONS(3574), + [anon_sym_LBRACK] = ACTIONS(3574), + [anon_sym_LTtemplate_GT] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [anon_sym_SQUOTE] = ACTIONS(3574), + [anon_sym_class] = ACTIONS(3574), + [anon_sym_async] = ACTIONS(3574), + [anon_sym_function] = ACTIONS(3574), + [anon_sym_new] = ACTIONS(3574), + [anon_sym_using] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3574), + [anon_sym_SLASH] = ACTIONS(3574), + [anon_sym_LT] = ACTIONS(3574), + [anon_sym_TILDE] = ACTIONS(3574), + [anon_sym_void] = ACTIONS(3574), + [anon_sym_delete] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3574), + [sym_number] = ACTIONS(3574), + [sym_private_property_identifier] = ACTIONS(3574), + [sym_this] = ACTIONS(3574), + [sym_super] = ACTIONS(3574), + [sym_true] = ACTIONS(3574), + [sym_false] = ACTIONS(3574), + [sym_null] = ACTIONS(3574), + [sym_undefined] = ACTIONS(3574), + [anon_sym_AT] = ACTIONS(3574), + [anon_sym_static] = ACTIONS(3574), + [anon_sym_readonly] = ACTIONS(3574), + [anon_sym_get] = ACTIONS(3574), + [anon_sym_set] = ACTIONS(3574), + [anon_sym_declare] = ACTIONS(3574), + [anon_sym_public] = ACTIONS(3574), + [anon_sym_private] = ACTIONS(3574), + [anon_sym_protected] = ACTIONS(3574), + [anon_sym_override] = ACTIONS(3574), + [anon_sym_module] = ACTIONS(3574), + [anon_sym_any] = ACTIONS(3574), + [anon_sym_number] = ACTIONS(3574), + [anon_sym_boolean] = ACTIONS(3574), + [anon_sym_string] = ACTIONS(3574), + [anon_sym_symbol] = ACTIONS(3574), + [anon_sym_object] = ACTIONS(3574), + [anon_sym_property] = ACTIONS(3574), + [anon_sym_signal] = ACTIONS(3574), + [anon_sym_on] = ACTIONS(3574), + [anon_sym_required] = ACTIONS(3574), + [anon_sym_component] = ACTIONS(3574), + [anon_sym_abstract] = ACTIONS(3574), + [anon_sym_interface] = ACTIONS(3574), + [anon_sym_enum] = ACTIONS(3574), + [sym_html_comment] = ACTIONS(5), + }, + [1117] = { + [sym_statement_block] = STATE(1551), + [sym_comment] = STATE(1117), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3576), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym_html_comment] = ACTIONS(5), + }, + [1118] = { + [sym_comment] = STATE(1118), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [sym_html_comment] = ACTIONS(5), + }, + [1119] = { + [sym_comment] = STATE(1119), + [sym_identifier] = ACTIONS(3582), + [anon_sym_export] = ACTIONS(3582), + [anon_sym_default] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_namespace] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_RBRACE] = ACTIONS(3582), + [anon_sym_typeof] = ACTIONS(3582), + [anon_sym_import] = ACTIONS(3582), + [anon_sym_from] = ACTIONS(3582), + [anon_sym_with] = ACTIONS(3582), + [anon_sym_var] = ACTIONS(3582), + [anon_sym_let] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_else] = ACTIONS(3582), + [anon_sym_if] = ACTIONS(3582), + [anon_sym_switch] = ACTIONS(3582), + [anon_sym_for] = ACTIONS(3582), + [anon_sym_LPAREN] = ACTIONS(3582), + [anon_sym_await] = ACTIONS(3582), + [anon_sym_of] = ACTIONS(3582), + [anon_sym_while] = ACTIONS(3582), + [anon_sym_do] = ACTIONS(3582), + [anon_sym_try] = ACTIONS(3582), + [anon_sym_break] = ACTIONS(3582), + [anon_sym_continue] = ACTIONS(3582), + [anon_sym_debugger] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3582), + [anon_sym_throw] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_case] = ACTIONS(3582), + [anon_sym_yield] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LTtemplate_GT] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_async] = ACTIONS(3582), + [anon_sym_function] = ACTIONS(3582), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_using] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3582), + [anon_sym_SLASH] = ACTIONS(3582), + [anon_sym_LT] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_void] = ACTIONS(3582), + [anon_sym_delete] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3582), + [sym_number] = ACTIONS(3582), + [sym_private_property_identifier] = ACTIONS(3582), + [sym_this] = ACTIONS(3582), + [sym_super] = ACTIONS(3582), + [sym_true] = ACTIONS(3582), + [sym_false] = ACTIONS(3582), + [sym_null] = ACTIONS(3582), + [sym_undefined] = ACTIONS(3582), + [anon_sym_AT] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_readonly] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(3582), + [anon_sym_set] = ACTIONS(3582), + [anon_sym_declare] = ACTIONS(3582), + [anon_sym_public] = ACTIONS(3582), + [anon_sym_private] = ACTIONS(3582), + [anon_sym_protected] = ACTIONS(3582), + [anon_sym_override] = ACTIONS(3582), + [anon_sym_module] = ACTIONS(3582), + [anon_sym_any] = ACTIONS(3582), + [anon_sym_number] = ACTIONS(3582), + [anon_sym_boolean] = ACTIONS(3582), + [anon_sym_string] = ACTIONS(3582), + [anon_sym_symbol] = ACTIONS(3582), + [anon_sym_object] = ACTIONS(3582), + [anon_sym_property] = ACTIONS(3582), + [anon_sym_signal] = ACTIONS(3582), + [anon_sym_on] = ACTIONS(3582), + [anon_sym_required] = ACTIONS(3582), + [anon_sym_component] = ACTIONS(3582), + [anon_sym_abstract] = ACTIONS(3582), + [anon_sym_interface] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), + [sym_html_comment] = ACTIONS(5), + }, + [1120] = { + [sym_comment] = STATE(1120), + [sym_identifier] = ACTIONS(3584), + [anon_sym_export] = ACTIONS(3584), + [anon_sym_default] = ACTIONS(3584), + [anon_sym_type] = ACTIONS(3584), + [anon_sym_namespace] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3584), + [anon_sym_RBRACE] = ACTIONS(3584), + [anon_sym_typeof] = ACTIONS(3584), + [anon_sym_import] = ACTIONS(3584), + [anon_sym_from] = ACTIONS(3584), + [anon_sym_with] = ACTIONS(3584), + [anon_sym_var] = ACTIONS(3584), + [anon_sym_let] = ACTIONS(3584), + [anon_sym_const] = ACTIONS(3584), + [anon_sym_BANG] = ACTIONS(3584), + [anon_sym_else] = ACTIONS(3584), + [anon_sym_if] = ACTIONS(3584), + [anon_sym_switch] = ACTIONS(3584), + [anon_sym_for] = ACTIONS(3584), + [anon_sym_LPAREN] = ACTIONS(3584), + [anon_sym_await] = ACTIONS(3584), + [anon_sym_of] = ACTIONS(3584), + [anon_sym_while] = ACTIONS(3584), + [anon_sym_do] = ACTIONS(3584), + [anon_sym_try] = ACTIONS(3584), + [anon_sym_break] = ACTIONS(3584), + [anon_sym_continue] = ACTIONS(3584), + [anon_sym_debugger] = ACTIONS(3584), + [anon_sym_return] = ACTIONS(3584), + [anon_sym_throw] = ACTIONS(3584), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym_case] = ACTIONS(3584), + [anon_sym_yield] = ACTIONS(3584), + [anon_sym_LBRACK] = ACTIONS(3584), + [anon_sym_LTtemplate_GT] = ACTIONS(3584), + [anon_sym_DQUOTE] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3584), + [anon_sym_class] = ACTIONS(3584), + [anon_sym_async] = ACTIONS(3584), + [anon_sym_function] = ACTIONS(3584), + [anon_sym_new] = ACTIONS(3584), + [anon_sym_using] = ACTIONS(3584), + [anon_sym_PLUS] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3584), + [anon_sym_SLASH] = ACTIONS(3584), + [anon_sym_LT] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_void] = ACTIONS(3584), + [anon_sym_delete] = ACTIONS(3584), + [anon_sym_PLUS_PLUS] = ACTIONS(3584), + [anon_sym_DASH_DASH] = ACTIONS(3584), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3584), + [sym_number] = ACTIONS(3584), + [sym_private_property_identifier] = ACTIONS(3584), + [sym_this] = ACTIONS(3584), + [sym_super] = ACTIONS(3584), + [sym_true] = ACTIONS(3584), + [sym_false] = ACTIONS(3584), + [sym_null] = ACTIONS(3584), + [sym_undefined] = ACTIONS(3584), + [anon_sym_AT] = ACTIONS(3584), + [anon_sym_static] = ACTIONS(3584), + [anon_sym_readonly] = ACTIONS(3584), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3584), + [anon_sym_declare] = ACTIONS(3584), + [anon_sym_public] = ACTIONS(3584), + [anon_sym_private] = ACTIONS(3584), + [anon_sym_protected] = ACTIONS(3584), + [anon_sym_override] = ACTIONS(3584), + [anon_sym_module] = ACTIONS(3584), + [anon_sym_any] = ACTIONS(3584), + [anon_sym_number] = ACTIONS(3584), + [anon_sym_boolean] = ACTIONS(3584), + [anon_sym_string] = ACTIONS(3584), + [anon_sym_symbol] = ACTIONS(3584), + [anon_sym_object] = ACTIONS(3584), + [anon_sym_property] = ACTIONS(3584), + [anon_sym_signal] = ACTIONS(3584), + [anon_sym_on] = ACTIONS(3584), + [anon_sym_required] = ACTIONS(3584), + [anon_sym_component] = ACTIONS(3584), + [anon_sym_abstract] = ACTIONS(3584), + [anon_sym_interface] = ACTIONS(3584), + [anon_sym_enum] = ACTIONS(3584), + [sym_html_comment] = ACTIONS(5), + }, + [1121] = { + [sym_comment] = STATE(1121), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_typeof] = ACTIONS(2440), + [anon_sym_import] = ACTIONS(2440), + [anon_sym_from] = ACTIONS(2440), + [anon_sym_with] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_await] = ACTIONS(2440), + [anon_sym_of] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_debugger] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_case] = ACTIONS(2440), + [anon_sym_yield] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_LTtemplate_GT] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_SQUOTE] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_TILDE] = ACTIONS(2440), + [anon_sym_void] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2440), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2440), + [sym_number] = ACTIONS(2440), + [sym_private_property_identifier] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [sym_super] = ACTIONS(2440), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [sym_null] = ACTIONS(2440), + [sym_undefined] = ACTIONS(2440), + [anon_sym_AT] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), + [anon_sym_property] = ACTIONS(2440), + [anon_sym_signal] = ACTIONS(2440), + [anon_sym_on] = ACTIONS(2440), + [anon_sym_required] = ACTIONS(2440), + [anon_sym_component] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_interface] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [sym__automatic_semicolon] = ACTIONS(2512), + [sym_html_comment] = ACTIONS(5), + }, + [1122] = { + [sym_comment] = STATE(1122), + [sym_identifier] = ACTIONS(3586), + [anon_sym_export] = ACTIONS(3586), + [anon_sym_default] = ACTIONS(3586), + [anon_sym_type] = ACTIONS(3586), + [anon_sym_namespace] = ACTIONS(3586), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_RBRACE] = ACTIONS(3586), + [anon_sym_typeof] = ACTIONS(3586), + [anon_sym_import] = ACTIONS(3586), + [anon_sym_from] = ACTIONS(3586), + [anon_sym_with] = ACTIONS(3586), + [anon_sym_var] = ACTIONS(3586), + [anon_sym_let] = ACTIONS(3586), + [anon_sym_const] = ACTIONS(3586), + [anon_sym_BANG] = ACTIONS(3586), + [anon_sym_else] = ACTIONS(3586), + [anon_sym_if] = ACTIONS(3586), + [anon_sym_switch] = ACTIONS(3586), + [anon_sym_for] = ACTIONS(3586), + [anon_sym_LPAREN] = ACTIONS(3586), + [anon_sym_await] = ACTIONS(3586), + [anon_sym_of] = ACTIONS(3586), + [anon_sym_while] = ACTIONS(3586), + [anon_sym_do] = ACTIONS(3586), + [anon_sym_try] = ACTIONS(3586), + [anon_sym_break] = ACTIONS(3586), + [anon_sym_continue] = ACTIONS(3586), + [anon_sym_debugger] = ACTIONS(3586), + [anon_sym_return] = ACTIONS(3586), + [anon_sym_throw] = ACTIONS(3586), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_case] = ACTIONS(3586), + [anon_sym_yield] = ACTIONS(3586), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LTtemplate_GT] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3586), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_class] = ACTIONS(3586), + [anon_sym_async] = ACTIONS(3586), + [anon_sym_function] = ACTIONS(3586), + [anon_sym_new] = ACTIONS(3586), + [anon_sym_using] = ACTIONS(3586), + [anon_sym_PLUS] = ACTIONS(3586), + [anon_sym_DASH] = ACTIONS(3586), + [anon_sym_SLASH] = ACTIONS(3586), + [anon_sym_LT] = ACTIONS(3586), + [anon_sym_TILDE] = ACTIONS(3586), + [anon_sym_void] = ACTIONS(3586), + [anon_sym_delete] = ACTIONS(3586), + [anon_sym_PLUS_PLUS] = ACTIONS(3586), + [anon_sym_DASH_DASH] = ACTIONS(3586), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3586), + [sym_number] = ACTIONS(3586), + [sym_private_property_identifier] = ACTIONS(3586), + [sym_this] = ACTIONS(3586), + [sym_super] = ACTIONS(3586), + [sym_true] = ACTIONS(3586), + [sym_false] = ACTIONS(3586), + [sym_null] = ACTIONS(3586), + [sym_undefined] = ACTIONS(3586), + [anon_sym_AT] = ACTIONS(3586), + [anon_sym_static] = ACTIONS(3586), + [anon_sym_readonly] = ACTIONS(3586), + [anon_sym_get] = ACTIONS(3586), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_declare] = ACTIONS(3586), + [anon_sym_public] = ACTIONS(3586), + [anon_sym_private] = ACTIONS(3586), + [anon_sym_protected] = ACTIONS(3586), + [anon_sym_override] = ACTIONS(3586), + [anon_sym_module] = ACTIONS(3586), + [anon_sym_any] = ACTIONS(3586), + [anon_sym_number] = ACTIONS(3586), + [anon_sym_boolean] = ACTIONS(3586), + [anon_sym_string] = ACTIONS(3586), + [anon_sym_symbol] = ACTIONS(3586), + [anon_sym_object] = ACTIONS(3586), + [anon_sym_property] = ACTIONS(3586), + [anon_sym_signal] = ACTIONS(3586), + [anon_sym_on] = ACTIONS(3586), + [anon_sym_required] = ACTIONS(3586), + [anon_sym_component] = ACTIONS(3586), + [anon_sym_abstract] = ACTIONS(3586), + [anon_sym_interface] = ACTIONS(3586), + [anon_sym_enum] = ACTIONS(3586), + [sym_html_comment] = ACTIONS(5), + }, + [1123] = { + [sym_comment] = STATE(1123), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [sym_html_comment] = ACTIONS(5), + }, + [1124] = { + [sym_comment] = STATE(1124), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_default] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_else] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_case] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), + [sym_html_comment] = ACTIONS(5), + }, + [1125] = { + [sym_comment] = STATE(1125), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_case] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym__automatic_semicolon] = ACTIONS(2358), + [sym_html_comment] = ACTIONS(5), + }, + [1126] = { + [sym_comment] = STATE(1126), + [sym_identifier] = ACTIONS(3590), + [anon_sym_export] = ACTIONS(3590), + [anon_sym_default] = ACTIONS(3590), + [anon_sym_type] = ACTIONS(3590), + [anon_sym_namespace] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3590), + [anon_sym_RBRACE] = ACTIONS(3590), + [anon_sym_typeof] = ACTIONS(3590), + [anon_sym_import] = ACTIONS(3590), + [anon_sym_from] = ACTIONS(3590), + [anon_sym_with] = ACTIONS(3590), + [anon_sym_var] = ACTIONS(3590), + [anon_sym_let] = ACTIONS(3590), + [anon_sym_const] = ACTIONS(3590), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_else] = ACTIONS(3590), + [anon_sym_if] = ACTIONS(3590), + [anon_sym_switch] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3590), + [anon_sym_await] = ACTIONS(3590), + [anon_sym_of] = ACTIONS(3590), + [anon_sym_while] = ACTIONS(3590), + [anon_sym_do] = ACTIONS(3590), + [anon_sym_try] = ACTIONS(3590), + [anon_sym_break] = ACTIONS(3590), + [anon_sym_continue] = ACTIONS(3590), + [anon_sym_debugger] = ACTIONS(3590), + [anon_sym_return] = ACTIONS(3590), + [anon_sym_throw] = ACTIONS(3590), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_case] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_LTtemplate_GT] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3590), + [anon_sym_SQUOTE] = ACTIONS(3590), + [anon_sym_class] = ACTIONS(3590), + [anon_sym_async] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3590), + [anon_sym_using] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3590), + [anon_sym_SLASH] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_void] = ACTIONS(3590), + [anon_sym_delete] = ACTIONS(3590), + [anon_sym_PLUS_PLUS] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3590), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3590), + [sym_number] = ACTIONS(3590), + [sym_private_property_identifier] = ACTIONS(3590), + [sym_this] = ACTIONS(3590), + [sym_super] = ACTIONS(3590), + [sym_true] = ACTIONS(3590), + [sym_false] = ACTIONS(3590), + [sym_null] = ACTIONS(3590), + [sym_undefined] = ACTIONS(3590), + [anon_sym_AT] = ACTIONS(3590), + [anon_sym_static] = ACTIONS(3590), + [anon_sym_readonly] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(3590), + [anon_sym_set] = ACTIONS(3590), + [anon_sym_declare] = ACTIONS(3590), + [anon_sym_public] = ACTIONS(3590), + [anon_sym_private] = ACTIONS(3590), + [anon_sym_protected] = ACTIONS(3590), + [anon_sym_override] = ACTIONS(3590), + [anon_sym_module] = ACTIONS(3590), + [anon_sym_any] = ACTIONS(3590), + [anon_sym_number] = ACTIONS(3590), + [anon_sym_boolean] = ACTIONS(3590), + [anon_sym_string] = ACTIONS(3590), + [anon_sym_symbol] = ACTIONS(3590), + [anon_sym_object] = ACTIONS(3590), + [anon_sym_property] = ACTIONS(3590), + [anon_sym_signal] = ACTIONS(3590), + [anon_sym_on] = ACTIONS(3590), + [anon_sym_required] = ACTIONS(3590), + [anon_sym_component] = ACTIONS(3590), + [anon_sym_abstract] = ACTIONS(3590), + [anon_sym_interface] = ACTIONS(3590), + [anon_sym_enum] = ACTIONS(3590), + [sym_html_comment] = ACTIONS(5), + }, + [1127] = { + [sym_comment] = STATE(1127), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [1128] = { + [sym_comment] = STATE(1128), + [sym_identifier] = ACTIONS(3592), + [anon_sym_export] = ACTIONS(3592), + [anon_sym_default] = ACTIONS(3592), + [anon_sym_type] = ACTIONS(3592), + [anon_sym_namespace] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_RBRACE] = ACTIONS(3592), + [anon_sym_typeof] = ACTIONS(3592), + [anon_sym_import] = ACTIONS(3592), + [anon_sym_from] = ACTIONS(3592), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_var] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_BANG] = ACTIONS(3592), + [anon_sym_else] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_await] = ACTIONS(3592), + [anon_sym_of] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_debugger] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_throw] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_case] = ACTIONS(3592), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LTtemplate_GT] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(3592), + [anon_sym_class] = ACTIONS(3592), + [anon_sym_async] = ACTIONS(3592), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_using] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_SLASH] = ACTIONS(3592), + [anon_sym_LT] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3592), + [anon_sym_void] = ACTIONS(3592), + [anon_sym_delete] = ACTIONS(3592), + [anon_sym_PLUS_PLUS] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3592), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3592), + [sym_number] = ACTIONS(3592), + [sym_private_property_identifier] = ACTIONS(3592), + [sym_this] = ACTIONS(3592), + [sym_super] = ACTIONS(3592), + [sym_true] = ACTIONS(3592), + [sym_false] = ACTIONS(3592), + [sym_null] = ACTIONS(3592), + [sym_undefined] = ACTIONS(3592), + [anon_sym_AT] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3592), + [anon_sym_readonly] = ACTIONS(3592), + [anon_sym_get] = ACTIONS(3592), + [anon_sym_set] = ACTIONS(3592), + [anon_sym_declare] = ACTIONS(3592), + [anon_sym_public] = ACTIONS(3592), + [anon_sym_private] = ACTIONS(3592), + [anon_sym_protected] = ACTIONS(3592), + [anon_sym_override] = ACTIONS(3592), + [anon_sym_module] = ACTIONS(3592), + [anon_sym_any] = ACTIONS(3592), + [anon_sym_number] = ACTIONS(3592), + [anon_sym_boolean] = ACTIONS(3592), + [anon_sym_string] = ACTIONS(3592), + [anon_sym_symbol] = ACTIONS(3592), + [anon_sym_object] = ACTIONS(3592), + [anon_sym_property] = ACTIONS(3592), + [anon_sym_signal] = ACTIONS(3592), + [anon_sym_on] = ACTIONS(3592), + [anon_sym_required] = ACTIONS(3592), + [anon_sym_component] = ACTIONS(3592), + [anon_sym_abstract] = ACTIONS(3592), + [anon_sym_interface] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), + [sym_html_comment] = ACTIONS(5), + }, + [1129] = { + [sym_comment] = STATE(1129), + [sym_identifier] = ACTIONS(3594), + [anon_sym_export] = ACTIONS(3594), + [anon_sym_default] = ACTIONS(3594), + [anon_sym_type] = ACTIONS(3594), + [anon_sym_namespace] = ACTIONS(3594), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_RBRACE] = ACTIONS(3594), + [anon_sym_typeof] = ACTIONS(3594), + [anon_sym_import] = ACTIONS(3594), + [anon_sym_from] = ACTIONS(3594), + [anon_sym_with] = ACTIONS(3594), + [anon_sym_var] = ACTIONS(3594), + [anon_sym_let] = ACTIONS(3594), + [anon_sym_const] = ACTIONS(3594), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_else] = ACTIONS(3594), + [anon_sym_if] = ACTIONS(3594), + [anon_sym_switch] = ACTIONS(3594), + [anon_sym_for] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3594), + [anon_sym_await] = ACTIONS(3594), + [anon_sym_of] = ACTIONS(3594), + [anon_sym_while] = ACTIONS(3594), + [anon_sym_do] = ACTIONS(3594), + [anon_sym_try] = ACTIONS(3594), + [anon_sym_break] = ACTIONS(3594), + [anon_sym_continue] = ACTIONS(3594), + [anon_sym_debugger] = ACTIONS(3594), + [anon_sym_return] = ACTIONS(3594), + [anon_sym_throw] = ACTIONS(3594), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_case] = ACTIONS(3594), + [anon_sym_yield] = ACTIONS(3594), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LTtemplate_GT] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [anon_sym_SQUOTE] = ACTIONS(3594), + [anon_sym_class] = ACTIONS(3594), + [anon_sym_async] = ACTIONS(3594), + [anon_sym_function] = ACTIONS(3594), + [anon_sym_new] = ACTIONS(3594), + [anon_sym_using] = ACTIONS(3594), + [anon_sym_PLUS] = ACTIONS(3594), + [anon_sym_DASH] = ACTIONS(3594), + [anon_sym_SLASH] = ACTIONS(3594), + [anon_sym_LT] = ACTIONS(3594), + [anon_sym_TILDE] = ACTIONS(3594), + [anon_sym_void] = ACTIONS(3594), + [anon_sym_delete] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_DASH_DASH] = ACTIONS(3594), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3594), + [sym_number] = ACTIONS(3594), + [sym_private_property_identifier] = ACTIONS(3594), + [sym_this] = ACTIONS(3594), + [sym_super] = ACTIONS(3594), + [sym_true] = ACTIONS(3594), + [sym_false] = ACTIONS(3594), + [sym_null] = ACTIONS(3594), + [sym_undefined] = ACTIONS(3594), + [anon_sym_AT] = ACTIONS(3594), + [anon_sym_static] = ACTIONS(3594), + [anon_sym_readonly] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(3594), + [anon_sym_set] = ACTIONS(3594), + [anon_sym_declare] = ACTIONS(3594), + [anon_sym_public] = ACTIONS(3594), + [anon_sym_private] = ACTIONS(3594), + [anon_sym_protected] = ACTIONS(3594), + [anon_sym_override] = ACTIONS(3594), + [anon_sym_module] = ACTIONS(3594), + [anon_sym_any] = ACTIONS(3594), + [anon_sym_number] = ACTIONS(3594), + [anon_sym_boolean] = ACTIONS(3594), + [anon_sym_string] = ACTIONS(3594), + [anon_sym_symbol] = ACTIONS(3594), + [anon_sym_object] = ACTIONS(3594), + [anon_sym_property] = ACTIONS(3594), + [anon_sym_signal] = ACTIONS(3594), + [anon_sym_on] = ACTIONS(3594), + [anon_sym_required] = ACTIONS(3594), + [anon_sym_component] = ACTIONS(3594), + [anon_sym_abstract] = ACTIONS(3594), + [anon_sym_interface] = ACTIONS(3594), + [anon_sym_enum] = ACTIONS(3594), + [sym_html_comment] = ACTIONS(5), + }, + [1130] = { + [sym_comment] = STATE(1130), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), + }, + [1131] = { + [sym_comment] = STATE(1131), + [sym_identifier] = ACTIONS(3596), + [anon_sym_export] = ACTIONS(3596), + [anon_sym_default] = ACTIONS(3596), + [anon_sym_type] = ACTIONS(3596), + [anon_sym_namespace] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3596), + [anon_sym_RBRACE] = ACTIONS(3596), + [anon_sym_typeof] = ACTIONS(3596), + [anon_sym_import] = ACTIONS(3596), + [anon_sym_from] = ACTIONS(3596), + [anon_sym_with] = ACTIONS(3596), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_let] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_LPAREN] = ACTIONS(3596), + [anon_sym_await] = ACTIONS(3596), + [anon_sym_of] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_debugger] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3596), + [anon_sym_case] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_LTtemplate_GT] = ACTIONS(3596), + [anon_sym_DQUOTE] = ACTIONS(3596), + [anon_sym_SQUOTE] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_async] = ACTIONS(3596), + [anon_sym_function] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_SLASH] = ACTIONS(3596), + [anon_sym_LT] = ACTIONS(3596), + [anon_sym_TILDE] = ACTIONS(3596), + [anon_sym_void] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_PLUS_PLUS] = ACTIONS(3596), + [anon_sym_DASH_DASH] = ACTIONS(3596), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3596), + [sym_number] = ACTIONS(3596), + [sym_private_property_identifier] = ACTIONS(3596), + [sym_this] = ACTIONS(3596), + [sym_super] = ACTIONS(3596), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [sym_null] = ACTIONS(3596), + [sym_undefined] = ACTIONS(3596), + [anon_sym_AT] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_readonly] = ACTIONS(3596), + [anon_sym_get] = ACTIONS(3596), + [anon_sym_set] = ACTIONS(3596), + [anon_sym_declare] = ACTIONS(3596), + [anon_sym_public] = ACTIONS(3596), + [anon_sym_private] = ACTIONS(3596), + [anon_sym_protected] = ACTIONS(3596), + [anon_sym_override] = ACTIONS(3596), + [anon_sym_module] = ACTIONS(3596), + [anon_sym_any] = ACTIONS(3596), + [anon_sym_number] = ACTIONS(3596), + [anon_sym_boolean] = ACTIONS(3596), + [anon_sym_string] = ACTIONS(3596), + [anon_sym_symbol] = ACTIONS(3596), + [anon_sym_object] = ACTIONS(3596), + [anon_sym_property] = ACTIONS(3596), + [anon_sym_signal] = ACTIONS(3596), + [anon_sym_on] = ACTIONS(3596), + [anon_sym_required] = ACTIONS(3596), + [anon_sym_component] = ACTIONS(3596), + [anon_sym_abstract] = ACTIONS(3596), + [anon_sym_interface] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [sym_html_comment] = ACTIONS(5), + }, + [1132] = { + [sym_comment] = STATE(1132), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_case] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym_html_comment] = ACTIONS(5), + }, + [1133] = { + [sym_comment] = STATE(1133), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_catch] = ACTIONS(2285), + [anon_sym_finally] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3598), + [sym_html_comment] = ACTIONS(5), + }, + [1134] = { + [sym_comment] = STATE(1134), + [sym_identifier] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_default] = ACTIONS(3600), + [anon_sym_type] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_typeof] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_from] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3600), + [anon_sym_var] = ACTIONS(3600), + [anon_sym_let] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_await] = ACTIONS(3600), + [anon_sym_of] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_debugger] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_case] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LTtemplate_GT] = ACTIONS(3600), + [anon_sym_DQUOTE] = ACTIONS(3600), + [anon_sym_SQUOTE] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_async] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_TILDE] = ACTIONS(3600), + [anon_sym_void] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3600), + [sym_number] = ACTIONS(3600), + [sym_private_property_identifier] = ACTIONS(3600), + [sym_this] = ACTIONS(3600), + [sym_super] = ACTIONS(3600), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [sym_null] = ACTIONS(3600), + [sym_undefined] = ACTIONS(3600), + [anon_sym_AT] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_readonly] = ACTIONS(3600), + [anon_sym_get] = ACTIONS(3600), + [anon_sym_set] = ACTIONS(3600), + [anon_sym_declare] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_override] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_any] = ACTIONS(3600), + [anon_sym_number] = ACTIONS(3600), + [anon_sym_boolean] = ACTIONS(3600), + [anon_sym_string] = ACTIONS(3600), + [anon_sym_symbol] = ACTIONS(3600), + [anon_sym_object] = ACTIONS(3600), + [anon_sym_property] = ACTIONS(3600), + [anon_sym_signal] = ACTIONS(3600), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_required] = ACTIONS(3600), + [anon_sym_component] = ACTIONS(3600), + [anon_sym_abstract] = ACTIONS(3600), + [anon_sym_interface] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [sym_html_comment] = ACTIONS(5), + }, + [1135] = { + [sym_comment] = STATE(1135), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3602), + [sym_html_comment] = ACTIONS(5), + }, + [1136] = { + [sym_comment] = STATE(1136), + [sym_identifier] = ACTIONS(3604), + [anon_sym_export] = ACTIONS(3604), + [anon_sym_default] = ACTIONS(3604), + [anon_sym_type] = ACTIONS(3604), + [anon_sym_namespace] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_RBRACE] = ACTIONS(3604), + [anon_sym_typeof] = ACTIONS(3604), + [anon_sym_import] = ACTIONS(3604), + [anon_sym_from] = ACTIONS(3604), + [anon_sym_with] = ACTIONS(3604), + [anon_sym_var] = ACTIONS(3604), + [anon_sym_let] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_BANG] = ACTIONS(3604), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_if] = ACTIONS(3604), + [anon_sym_switch] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3604), + [anon_sym_await] = ACTIONS(3604), + [anon_sym_of] = ACTIONS(3604), + [anon_sym_while] = ACTIONS(3604), + [anon_sym_do] = ACTIONS(3604), + [anon_sym_try] = ACTIONS(3604), + [anon_sym_break] = ACTIONS(3604), + [anon_sym_continue] = ACTIONS(3604), + [anon_sym_debugger] = ACTIONS(3604), + [anon_sym_return] = ACTIONS(3604), + [anon_sym_throw] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3604), + [anon_sym_case] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LTtemplate_GT] = ACTIONS(3604), + [anon_sym_DQUOTE] = ACTIONS(3604), + [anon_sym_SQUOTE] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_async] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(3604), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_SLASH] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_TILDE] = ACTIONS(3604), + [anon_sym_void] = ACTIONS(3604), + [anon_sym_delete] = ACTIONS(3604), + [anon_sym_PLUS_PLUS] = ACTIONS(3604), + [anon_sym_DASH_DASH] = ACTIONS(3604), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3604), + [sym_number] = ACTIONS(3604), + [sym_private_property_identifier] = ACTIONS(3604), + [sym_this] = ACTIONS(3604), + [sym_super] = ACTIONS(3604), + [sym_true] = ACTIONS(3604), + [sym_false] = ACTIONS(3604), + [sym_null] = ACTIONS(3604), + [sym_undefined] = ACTIONS(3604), + [anon_sym_AT] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_readonly] = ACTIONS(3604), + [anon_sym_get] = ACTIONS(3604), + [anon_sym_set] = ACTIONS(3604), + [anon_sym_declare] = ACTIONS(3604), + [anon_sym_public] = ACTIONS(3604), + [anon_sym_private] = ACTIONS(3604), + [anon_sym_protected] = ACTIONS(3604), + [anon_sym_override] = ACTIONS(3604), + [anon_sym_module] = ACTIONS(3604), + [anon_sym_any] = ACTIONS(3604), + [anon_sym_number] = ACTIONS(3604), + [anon_sym_boolean] = ACTIONS(3604), + [anon_sym_string] = ACTIONS(3604), + [anon_sym_symbol] = ACTIONS(3604), + [anon_sym_object] = ACTIONS(3604), + [anon_sym_property] = ACTIONS(3604), + [anon_sym_signal] = ACTIONS(3604), + [anon_sym_on] = ACTIONS(3604), + [anon_sym_required] = ACTIONS(3604), + [anon_sym_component] = ACTIONS(3604), + [anon_sym_abstract] = ACTIONS(3604), + [anon_sym_interface] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), + [sym_html_comment] = ACTIONS(5), + }, + [1137] = { + [sym_comment] = STATE(1137), + [sym_identifier] = ACTIONS(3606), + [anon_sym_export] = ACTIONS(3606), + [anon_sym_default] = ACTIONS(3606), + [anon_sym_type] = ACTIONS(3606), + [anon_sym_namespace] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_typeof] = ACTIONS(3606), + [anon_sym_import] = ACTIONS(3606), + [anon_sym_from] = ACTIONS(3606), + [anon_sym_with] = ACTIONS(3606), + [anon_sym_var] = ACTIONS(3606), + [anon_sym_let] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_else] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_await] = ACTIONS(3606), + [anon_sym_of] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_debugger] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_throw] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_case] = ACTIONS(3606), + [anon_sym_yield] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_LTtemplate_GT] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_async] = ACTIONS(3606), + [anon_sym_function] = ACTIONS(3606), + [anon_sym_new] = ACTIONS(3606), + [anon_sym_using] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_SLASH] = ACTIONS(3606), + [anon_sym_LT] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_void] = ACTIONS(3606), + [anon_sym_delete] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3606), + [sym_number] = ACTIONS(3606), + [sym_private_property_identifier] = ACTIONS(3606), + [sym_this] = ACTIONS(3606), + [sym_super] = ACTIONS(3606), + [sym_true] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [sym_undefined] = ACTIONS(3606), + [anon_sym_AT] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_readonly] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(3606), + [anon_sym_set] = ACTIONS(3606), + [anon_sym_declare] = ACTIONS(3606), + [anon_sym_public] = ACTIONS(3606), + [anon_sym_private] = ACTIONS(3606), + [anon_sym_protected] = ACTIONS(3606), + [anon_sym_override] = ACTIONS(3606), + [anon_sym_module] = ACTIONS(3606), + [anon_sym_any] = ACTIONS(3606), + [anon_sym_number] = ACTIONS(3606), + [anon_sym_boolean] = ACTIONS(3606), + [anon_sym_string] = ACTIONS(3606), + [anon_sym_symbol] = ACTIONS(3606), + [anon_sym_object] = ACTIONS(3606), + [anon_sym_property] = ACTIONS(3606), + [anon_sym_signal] = ACTIONS(3606), + [anon_sym_on] = ACTIONS(3606), + [anon_sym_required] = ACTIONS(3606), + [anon_sym_component] = ACTIONS(3606), + [anon_sym_abstract] = ACTIONS(3606), + [anon_sym_interface] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [sym_html_comment] = ACTIONS(5), + }, + [1138] = { + [sym_comment] = STATE(1138), + [sym_identifier] = ACTIONS(3606), + [anon_sym_export] = ACTIONS(3606), + [anon_sym_default] = ACTIONS(3606), + [anon_sym_type] = ACTIONS(3606), + [anon_sym_namespace] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_typeof] = ACTIONS(3606), + [anon_sym_import] = ACTIONS(3606), + [anon_sym_from] = ACTIONS(3606), + [anon_sym_with] = ACTIONS(3606), + [anon_sym_var] = ACTIONS(3606), + [anon_sym_let] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_else] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_await] = ACTIONS(3606), + [anon_sym_of] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_debugger] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_throw] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_case] = ACTIONS(3606), + [anon_sym_yield] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_LTtemplate_GT] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_async] = ACTIONS(3606), + [anon_sym_function] = ACTIONS(3606), + [anon_sym_new] = ACTIONS(3606), + [anon_sym_using] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_SLASH] = ACTIONS(3606), + [anon_sym_LT] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_void] = ACTIONS(3606), + [anon_sym_delete] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3606), + [sym_number] = ACTIONS(3606), + [sym_private_property_identifier] = ACTIONS(3606), + [sym_this] = ACTIONS(3606), + [sym_super] = ACTIONS(3606), + [sym_true] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [sym_undefined] = ACTIONS(3606), + [anon_sym_AT] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_readonly] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(3606), + [anon_sym_set] = ACTIONS(3606), + [anon_sym_declare] = ACTIONS(3606), + [anon_sym_public] = ACTIONS(3606), + [anon_sym_private] = ACTIONS(3606), + [anon_sym_protected] = ACTIONS(3606), + [anon_sym_override] = ACTIONS(3606), + [anon_sym_module] = ACTIONS(3606), + [anon_sym_any] = ACTIONS(3606), + [anon_sym_number] = ACTIONS(3606), + [anon_sym_boolean] = ACTIONS(3606), + [anon_sym_string] = ACTIONS(3606), + [anon_sym_symbol] = ACTIONS(3606), + [anon_sym_object] = ACTIONS(3606), + [anon_sym_property] = ACTIONS(3606), + [anon_sym_signal] = ACTIONS(3606), + [anon_sym_on] = ACTIONS(3606), + [anon_sym_required] = ACTIONS(3606), + [anon_sym_component] = ACTIONS(3606), + [anon_sym_abstract] = ACTIONS(3606), + [anon_sym_interface] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [sym_html_comment] = ACTIONS(5), + }, + [1139] = { + [sym_comment] = STATE(1139), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), + }, + [1140] = { + [sym_comment] = STATE(1140), + [sym_identifier] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_default] = ACTIONS(2422), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_typeof] = ACTIONS(2422), + [anon_sym_import] = ACTIONS(2422), + [anon_sym_from] = ACTIONS(2422), + [anon_sym_with] = ACTIONS(2422), + [anon_sym_var] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_if] = ACTIONS(2422), + [anon_sym_switch] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_await] = ACTIONS(2422), + [anon_sym_of] = ACTIONS(2422), + [anon_sym_while] = ACTIONS(2422), + [anon_sym_do] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2422), + [anon_sym_continue] = ACTIONS(2422), + [anon_sym_debugger] = ACTIONS(2422), + [anon_sym_return] = ACTIONS(2422), + [anon_sym_throw] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_case] = ACTIONS(2422), + [anon_sym_yield] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_LTtemplate_GT] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_class] = ACTIONS(2422), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2422), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_using] = ACTIONS(2422), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_SLASH] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_void] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2422), + [sym_number] = ACTIONS(2422), + [sym_private_property_identifier] = ACTIONS(2422), + [sym_this] = ACTIONS(2422), + [sym_super] = ACTIONS(2422), + [sym_true] = ACTIONS(2422), + [sym_false] = ACTIONS(2422), + [sym_null] = ACTIONS(2422), + [sym_undefined] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_property] = ACTIONS(2422), + [anon_sym_signal] = ACTIONS(2422), + [anon_sym_on] = ACTIONS(2422), + [anon_sym_required] = ACTIONS(2422), + [anon_sym_component] = ACTIONS(2422), + [anon_sym_abstract] = ACTIONS(2422), + [anon_sym_interface] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [sym__automatic_semicolon] = ACTIONS(2528), + [sym_html_comment] = ACTIONS(5), }, - [675] = { - [sym__call_signature] = STATE(4705), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2185), - [anon_sym_export] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2187), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2187), - [anon_sym_from] = ACTIONS(2187), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(26), - [anon_sym_of] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2187), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_readonly] = ACTIONS(2187), - [anon_sym_get] = ACTIONS(2187), - [anon_sym_set] = ACTIONS(2187), - [anon_sym_declare] = ACTIONS(2187), - [anon_sym_public] = ACTIONS(2187), - [anon_sym_private] = ACTIONS(2187), - [anon_sym_protected] = ACTIONS(2187), - [anon_sym_override] = ACTIONS(2187), - [anon_sym_module] = ACTIONS(2187), - [anon_sym_any] = ACTIONS(2187), - [anon_sym_number] = ACTIONS(2187), - [anon_sym_boolean] = ACTIONS(2187), - [anon_sym_string] = ACTIONS(2187), - [anon_sym_symbol] = ACTIONS(2187), - [anon_sym_property] = ACTIONS(2187), - [anon_sym_signal] = ACTIONS(2187), - [anon_sym_on] = ACTIONS(2187), - [anon_sym_required] = ACTIONS(2187), - [anon_sym_component] = ACTIONS(2187), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), + [1141] = { + [sym_comment] = STATE(1141), + [sym_identifier] = ACTIONS(2402), + [anon_sym_export] = ACTIONS(2402), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_type] = ACTIONS(2402), + [anon_sym_namespace] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2402), + [anon_sym_import] = ACTIONS(2402), + [anon_sym_from] = ACTIONS(2402), + [anon_sym_with] = ACTIONS(2402), + [anon_sym_var] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_switch] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_await] = ACTIONS(2402), + [anon_sym_of] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_debugger] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_throw] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_case] = ACTIONS(2402), + [anon_sym_yield] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LTtemplate_GT] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_class] = ACTIONS(2402), + [anon_sym_async] = ACTIONS(2402), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_new] = ACTIONS(2402), + [anon_sym_using] = ACTIONS(2402), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_SLASH] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_void] = ACTIONS(2402), + [anon_sym_delete] = ACTIONS(2402), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2402), + [sym_number] = ACTIONS(2402), + [sym_private_property_identifier] = ACTIONS(2402), + [sym_this] = ACTIONS(2402), + [sym_super] = ACTIONS(2402), + [sym_true] = ACTIONS(2402), + [sym_false] = ACTIONS(2402), + [sym_null] = ACTIONS(2402), + [sym_undefined] = ACTIONS(2402), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_readonly] = ACTIONS(2402), + [anon_sym_get] = ACTIONS(2402), + [anon_sym_set] = ACTIONS(2402), + [anon_sym_declare] = ACTIONS(2402), + [anon_sym_public] = ACTIONS(2402), + [anon_sym_private] = ACTIONS(2402), + [anon_sym_protected] = ACTIONS(2402), + [anon_sym_override] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_any] = ACTIONS(2402), + [anon_sym_number] = ACTIONS(2402), + [anon_sym_boolean] = ACTIONS(2402), + [anon_sym_string] = ACTIONS(2402), + [anon_sym_symbol] = ACTIONS(2402), + [anon_sym_object] = ACTIONS(2402), + [anon_sym_property] = ACTIONS(2402), + [anon_sym_signal] = ACTIONS(2402), + [anon_sym_on] = ACTIONS(2402), + [anon_sym_required] = ACTIONS(2402), + [anon_sym_component] = ACTIONS(2402), + [anon_sym_abstract] = ACTIONS(2402), + [anon_sym_interface] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [sym__automatic_semicolon] = ACTIONS(2530), + [sym_html_comment] = ACTIONS(5), }, - [676] = { - [sym_identifier] = ACTIONS(1707), - [anon_sym_export] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), - [anon_sym_namespace] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_typeof] = ACTIONS(1707), - [anon_sym_import] = ACTIONS(1707), - [anon_sym_from] = ACTIONS(1707), - [anon_sym_var] = ACTIONS(1707), - [anon_sym_let] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_await] = ACTIONS(1707), - [anon_sym_of] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_with] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_debugger] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_throw] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_case] = ACTIONS(1707), - [anon_sym_catch] = ACTIONS(1707), - [anon_sym_finally] = ACTIONS(1707), - [anon_sym_yield] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_LTtemplate_GT] = ACTIONS(1709), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1707), - [anon_sym_class] = ACTIONS(1707), - [anon_sym_async] = ACTIONS(1707), - [anon_sym_function] = ACTIONS(1707), - [anon_sym_new] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_void] = ACTIONS(1707), - [anon_sym_delete] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [anon_sym_SQUOTE] = ACTIONS(1709), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1709), - [sym_number] = ACTIONS(1709), - [sym_this] = ACTIONS(1707), - [sym_super] = ACTIONS(1707), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_undefined] = ACTIONS(1707), - [anon_sym_AT] = ACTIONS(1709), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_readonly] = ACTIONS(1707), - [anon_sym_get] = ACTIONS(1707), - [anon_sym_set] = ACTIONS(1707), - [anon_sym_declare] = ACTIONS(1707), - [anon_sym_public] = ACTIONS(1707), - [anon_sym_private] = ACTIONS(1707), - [anon_sym_protected] = ACTIONS(1707), - [anon_sym_override] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_any] = ACTIONS(1707), - [anon_sym_number] = ACTIONS(1707), - [anon_sym_boolean] = ACTIONS(1707), - [anon_sym_string] = ACTIONS(1707), - [anon_sym_symbol] = ACTIONS(1707), - [anon_sym_property] = ACTIONS(1707), - [anon_sym_signal] = ACTIONS(1707), - [anon_sym_on] = ACTIONS(1707), - [anon_sym_required] = ACTIONS(1707), - [anon_sym_component] = ACTIONS(1707), - [anon_sym_abstract] = ACTIONS(1707), - [anon_sym_interface] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), + [1142] = { + [sym_comment] = STATE(1142), + [sym_identifier] = ACTIONS(2430), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_default] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_typeof] = ACTIONS(2430), + [anon_sym_import] = ACTIONS(2430), + [anon_sym_from] = ACTIONS(2430), + [anon_sym_with] = ACTIONS(2430), + [anon_sym_var] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_const] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_switch] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_await] = ACTIONS(2430), + [anon_sym_of] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2430), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_debugger] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_throw] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_case] = ACTIONS(2430), + [anon_sym_yield] = ACTIONS(2430), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_LTtemplate_GT] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_class] = ACTIONS(2430), + [anon_sym_async] = ACTIONS(2430), + [anon_sym_function] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_using] = ACTIONS(2430), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_SLASH] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_void] = ACTIONS(2430), + [anon_sym_delete] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_number] = ACTIONS(2430), + [sym_private_property_identifier] = ACTIONS(2430), + [sym_this] = ACTIONS(2430), + [sym_super] = ACTIONS(2430), + [sym_true] = ACTIONS(2430), + [sym_false] = ACTIONS(2430), + [sym_null] = ACTIONS(2430), + [sym_undefined] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2430), + [anon_sym_readonly] = ACTIONS(2430), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_declare] = ACTIONS(2430), + [anon_sym_public] = ACTIONS(2430), + [anon_sym_private] = ACTIONS(2430), + [anon_sym_protected] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_any] = ACTIONS(2430), + [anon_sym_number] = ACTIONS(2430), + [anon_sym_boolean] = ACTIONS(2430), + [anon_sym_string] = ACTIONS(2430), + [anon_sym_symbol] = ACTIONS(2430), + [anon_sym_object] = ACTIONS(2430), + [anon_sym_property] = ACTIONS(2430), + [anon_sym_signal] = ACTIONS(2430), + [anon_sym_on] = ACTIONS(2430), + [anon_sym_required] = ACTIONS(2430), + [anon_sym_component] = ACTIONS(2430), + [anon_sym_abstract] = ACTIONS(2430), + [anon_sym_interface] = ACTIONS(2430), + [anon_sym_enum] = ACTIONS(2430), + [sym__automatic_semicolon] = ACTIONS(2486), + [sym_html_comment] = ACTIONS(5), + }, + [1143] = { + [sym_comment] = STATE(1143), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_case] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(2438), + [sym_html_comment] = ACTIONS(5), + }, + [1144] = { + [sym_statement_block] = STATE(1358), + [sym_comment] = STATE(1144), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_case] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym_html_comment] = ACTIONS(5), + }, + [1145] = { + [sym_finally_clause] = STATE(1611), + [sym_comment] = STATE(1145), + [sym_identifier] = ACTIONS(3412), + [anon_sym_export] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_namespace] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3412), + [anon_sym_import] = ACTIONS(3412), + [anon_sym_from] = ACTIONS(3412), + [anon_sym_with] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_switch] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3412), + [anon_sym_of] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_debugger] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_throw] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_finally] = ACTIONS(3424), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LTtemplate_GT] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_class] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_function] = ACTIONS(3412), + [anon_sym_new] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_private_property_identifier] = ACTIONS(3412), + [sym_this] = ACTIONS(3412), + [sym_super] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_null] = ACTIONS(3412), + [sym_undefined] = ACTIONS(3412), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_readonly] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3412), + [anon_sym_set] = ACTIONS(3412), + [anon_sym_declare] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_protected] = ACTIONS(3412), + [anon_sym_override] = ACTIONS(3412), + [anon_sym_module] = ACTIONS(3412), + [anon_sym_any] = ACTIONS(3412), + [anon_sym_number] = ACTIONS(3412), + [anon_sym_boolean] = ACTIONS(3412), + [anon_sym_string] = ACTIONS(3412), + [anon_sym_symbol] = ACTIONS(3412), + [anon_sym_object] = ACTIONS(3412), + [anon_sym_property] = ACTIONS(3412), + [anon_sym_signal] = ACTIONS(3412), + [anon_sym_on] = ACTIONS(3412), + [anon_sym_required] = ACTIONS(3412), + [anon_sym_component] = ACTIONS(3412), + [anon_sym_abstract] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), + [sym_html_comment] = ACTIONS(5), + }, + [1146] = { + [sym_comment] = STATE(1146), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [sym_html_comment] = ACTIONS(5), + }, + [1147] = { + [sym_comment] = STATE(1147), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym_html_comment] = ACTIONS(5), }, - [677] = { - [sym_identifier] = ACTIONS(1537), - [anon_sym_export] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_typeof] = ACTIONS(1537), - [anon_sym_import] = ACTIONS(1537), - [anon_sym_from] = ACTIONS(1537), - [anon_sym_var] = ACTIONS(1537), - [anon_sym_let] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_await] = ACTIONS(1537), - [anon_sym_of] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [anon_sym_with] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_debugger] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_catch] = ACTIONS(1537), - [anon_sym_finally] = ACTIONS(1537), - [anon_sym_yield] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LTtemplate_GT] = ACTIONS(1539), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_class] = ACTIONS(1537), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_function] = ACTIONS(1537), - [anon_sym_new] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_void] = ACTIONS(1537), - [anon_sym_delete] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1539), - [sym_number] = ACTIONS(1539), - [sym_this] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [sym_null] = ACTIONS(1537), - [sym_undefined] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_readonly] = ACTIONS(1537), - [anon_sym_get] = ACTIONS(1537), - [anon_sym_set] = ACTIONS(1537), - [anon_sym_declare] = ACTIONS(1537), - [anon_sym_public] = ACTIONS(1537), - [anon_sym_private] = ACTIONS(1537), - [anon_sym_protected] = ACTIONS(1537), - [anon_sym_override] = ACTIONS(1537), - [anon_sym_module] = ACTIONS(1537), - [anon_sym_any] = ACTIONS(1537), - [anon_sym_number] = ACTIONS(1537), - [anon_sym_boolean] = ACTIONS(1537), - [anon_sym_string] = ACTIONS(1537), - [anon_sym_symbol] = ACTIONS(1537), - [anon_sym_property] = ACTIONS(1537), - [anon_sym_signal] = ACTIONS(1537), - [anon_sym_on] = ACTIONS(1537), - [anon_sym_required] = ACTIONS(1537), - [anon_sym_component] = ACTIONS(1537), - [anon_sym_abstract] = ACTIONS(1537), - [anon_sym_interface] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), + [1148] = { + [sym_comment] = STATE(1148), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_from] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_else] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_of] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_LTtemplate_GT] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2328), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_using] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2328), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2328), + [sym_number] = ACTIONS(2328), + [sym_private_property_identifier] = ACTIONS(2328), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_property] = ACTIONS(2328), + [anon_sym_signal] = ACTIONS(2328), + [anon_sym_on] = ACTIONS(2328), + [anon_sym_required] = ACTIONS(2328), + [anon_sym_component] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym_html_comment] = ACTIONS(5), + }, + [1149] = { + [sym_comment] = STATE(1149), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_finally] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3608), + [sym_html_comment] = ACTIONS(5), + }, + [1150] = { + [sym_comment] = STATE(1150), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3610), + [sym_html_comment] = ACTIONS(5), + }, + [1151] = { + [sym_statement_block] = STATE(1551), + [sym_comment] = STATE(1151), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3576), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym_html_comment] = ACTIONS(5), + }, + [1152] = { + [sym_comment] = STATE(1152), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_default] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_else] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_case] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [sym_html_comment] = ACTIONS(5), + }, + [1153] = { + [sym_comment] = STATE(1153), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3614), + [sym_html_comment] = ACTIONS(5), + }, + [1154] = { + [sym_comment] = STATE(1154), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_case] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2542), + [sym_html_comment] = ACTIONS(5), + }, + [1155] = { + [sym_comment] = STATE(1155), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3616), + [sym_html_comment] = ACTIONS(5), + }, + [1156] = { + [sym_comment] = STATE(1156), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_from] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_of] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_LTtemplate_GT] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2328), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_using] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2328), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2328), + [sym_number] = ACTIONS(2328), + [sym_private_property_identifier] = ACTIONS(2328), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_property] = ACTIONS(2328), + [anon_sym_signal] = ACTIONS(2328), + [anon_sym_on] = ACTIONS(2328), + [anon_sym_required] = ACTIONS(2328), + [anon_sym_component] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym__automatic_semicolon] = ACTIONS(2330), + [sym_html_comment] = ACTIONS(5), }, - [678] = { - [sym_statement_block] = STATE(706), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_type] = ACTIONS(1489), - [anon_sym_namespace] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1489), - [anon_sym_import] = ACTIONS(1489), - [anon_sym_from] = ACTIONS(1489), - [anon_sym_var] = ACTIONS(1489), - [anon_sym_let] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_else] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_switch] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_of] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_do] = ACTIONS(1489), - [anon_sym_try] = ACTIONS(1489), - [anon_sym_with] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_debugger] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_throw] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LTtemplate_GT] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1489), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(2316), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_async] = ACTIONS(1489), - [anon_sym_function] = ACTIONS(1489), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1489), - [anon_sym_delete] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_number] = ACTIONS(1493), - [sym_this] = ACTIONS(1489), - [sym_super] = ACTIONS(1489), - [sym_true] = ACTIONS(1489), - [sym_false] = ACTIONS(1489), - [sym_null] = ACTIONS(1489), - [sym_undefined] = ACTIONS(1489), - [anon_sym_AT] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_readonly] = ACTIONS(1489), - [anon_sym_get] = ACTIONS(1489), - [anon_sym_set] = ACTIONS(1489), - [anon_sym_declare] = ACTIONS(1489), - [anon_sym_public] = ACTIONS(1489), - [anon_sym_private] = ACTIONS(1489), - [anon_sym_protected] = ACTIONS(1489), - [anon_sym_override] = ACTIONS(1489), - [anon_sym_module] = ACTIONS(1489), - [anon_sym_any] = ACTIONS(1489), - [anon_sym_number] = ACTIONS(1489), - [anon_sym_boolean] = ACTIONS(1489), - [anon_sym_string] = ACTIONS(1489), - [anon_sym_symbol] = ACTIONS(1489), - [anon_sym_property] = ACTIONS(1489), - [anon_sym_signal] = ACTIONS(1489), - [anon_sym_on] = ACTIONS(1489), - [anon_sym_required] = ACTIONS(1489), - [anon_sym_component] = ACTIONS(1489), - [anon_sym_abstract] = ACTIONS(1489), - [anon_sym_interface] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), + [1157] = { + [sym_comment] = STATE(1157), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2538), + [sym_html_comment] = ACTIONS(5), }, - [679] = { - [sym__call_signature] = STATE(4705), - [sym_formal_parameters] = STATE(3438), - [sym_type_parameters] = STATE(4523), - [sym_identifier] = ACTIONS(2185), - [anon_sym_export] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_type] = ACTIONS(2187), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_namespace] = ACTIONS(2187), - [anon_sym_from] = ACTIONS(2187), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_in] = ACTIONS(2256), + [1158] = { + [sym_comment] = STATE(1158), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_typeof] = ACTIONS(2332), + [anon_sym_import] = ACTIONS(2332), + [anon_sym_from] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_switch] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_await] = ACTIONS(2332), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_throw] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_case] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_LTtemplate_GT] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2332), + [anon_sym_class] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_using] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_void] = ACTIONS(2332), + [anon_sym_delete] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2332), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2332), + [sym_number] = ACTIONS(2332), + [sym_private_property_identifier] = ACTIONS(2332), + [sym_this] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_undefined] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_property] = ACTIONS(2332), + [anon_sym_signal] = ACTIONS(2332), + [anon_sym_on] = ACTIONS(2332), + [anon_sym_required] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(2532), + [sym_html_comment] = ACTIONS(5), + }, + [1159] = { + [sym_comment] = STATE(1159), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_case] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym_html_comment] = ACTIONS(5), + }, + [1160] = { + [sym_comment] = STATE(1160), + [sym_identifier] = ACTIONS(2380), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_namespace] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2380), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_typeof] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2380), + [anon_sym_from] = ACTIONS(2380), + [anon_sym_with] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2380), + [anon_sym_else] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_switch] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_await] = ACTIONS(2380), + [anon_sym_of] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_debugger] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_case] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_LTtemplate_GT] = ACTIONS(2380), + [anon_sym_DQUOTE] = ACTIONS(2380), + [anon_sym_SQUOTE] = ACTIONS(2380), + [anon_sym_class] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_using] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_TILDE] = ACTIONS(2380), + [anon_sym_void] = ACTIONS(2380), + [anon_sym_delete] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2380), + [anon_sym_DASH_DASH] = ACTIONS(2380), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2380), + [sym_number] = ACTIONS(2380), + [sym_private_property_identifier] = ACTIONS(2380), + [sym_this] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_true] = ACTIONS(2380), + [sym_false] = ACTIONS(2380), + [sym_null] = ACTIONS(2380), + [sym_undefined] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_readonly] = ACTIONS(2380), + [anon_sym_get] = ACTIONS(2380), + [anon_sym_set] = ACTIONS(2380), + [anon_sym_declare] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_protected] = ACTIONS(2380), + [anon_sym_override] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_any] = ACTIONS(2380), + [anon_sym_number] = ACTIONS(2380), + [anon_sym_boolean] = ACTIONS(2380), + [anon_sym_string] = ACTIONS(2380), + [anon_sym_symbol] = ACTIONS(2380), + [anon_sym_object] = ACTIONS(2380), + [anon_sym_property] = ACTIONS(2380), + [anon_sym_signal] = ACTIONS(2380), + [anon_sym_on] = ACTIONS(2380), + [anon_sym_required] = ACTIONS(2380), + [anon_sym_component] = ACTIONS(2380), + [anon_sym_abstract] = ACTIONS(2380), + [anon_sym_interface] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [sym_html_comment] = ACTIONS(5), + }, + [1161] = { + [sym_comment] = STATE(1161), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2420), + [sym_html_comment] = ACTIONS(5), + }, + [1162] = { + [sym_comment] = STATE(1162), + [sym_identifier] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_type] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_typeof] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_from] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3618), + [anon_sym_var] = ACTIONS(3618), + [anon_sym_let] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_await] = ACTIONS(3618), + [anon_sym_of] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_debugger] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_LTtemplate_GT] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_async] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_SLASH] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_void] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3618), + [sym_number] = ACTIONS(3618), + [sym_private_property_identifier] = ACTIONS(3618), + [sym_this] = ACTIONS(3618), + [sym_super] = ACTIONS(3618), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [sym_null] = ACTIONS(3618), + [sym_undefined] = ACTIONS(3618), + [anon_sym_AT] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_readonly] = ACTIONS(3618), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3618), + [anon_sym_declare] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_override] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_any] = ACTIONS(3618), + [anon_sym_number] = ACTIONS(3618), + [anon_sym_boolean] = ACTIONS(3618), + [anon_sym_string] = ACTIONS(3618), + [anon_sym_symbol] = ACTIONS(3618), + [anon_sym_object] = ACTIONS(3618), + [anon_sym_property] = ACTIONS(3618), + [anon_sym_signal] = ACTIONS(3618), + [anon_sym_on] = ACTIONS(3618), + [anon_sym_required] = ACTIONS(3618), + [anon_sym_component] = ACTIONS(3618), + [anon_sym_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [sym_html_comment] = ACTIONS(5), + }, + [1163] = { + [sym_comment] = STATE(1163), + [sym_identifier] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_type] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_typeof] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_from] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3618), + [anon_sym_var] = ACTIONS(3618), + [anon_sym_let] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_await] = ACTIONS(3618), + [anon_sym_of] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_debugger] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_LTtemplate_GT] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_async] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_SLASH] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_void] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3618), + [sym_number] = ACTIONS(3618), + [sym_private_property_identifier] = ACTIONS(3618), + [sym_this] = ACTIONS(3618), + [sym_super] = ACTIONS(3618), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [sym_null] = ACTIONS(3618), + [sym_undefined] = ACTIONS(3618), + [anon_sym_AT] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_readonly] = ACTIONS(3618), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3618), + [anon_sym_declare] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_override] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_any] = ACTIONS(3618), + [anon_sym_number] = ACTIONS(3618), + [anon_sym_boolean] = ACTIONS(3618), + [anon_sym_string] = ACTIONS(3618), + [anon_sym_symbol] = ACTIONS(3618), + [anon_sym_object] = ACTIONS(3618), + [anon_sym_property] = ACTIONS(3618), + [anon_sym_signal] = ACTIONS(3618), + [anon_sym_on] = ACTIONS(3618), + [anon_sym_required] = ACTIONS(3618), + [anon_sym_component] = ACTIONS(3618), + [anon_sym_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [sym_html_comment] = ACTIONS(5), + }, + [1164] = { + [sym_comment] = STATE(1164), + [sym_identifier] = ACTIONS(3446), + [anon_sym_export] = ACTIONS(3446), + [anon_sym_default] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_namespace] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_typeof] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_from] = ACTIONS(3446), + [anon_sym_with] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(3446), + [anon_sym_const] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_await] = ACTIONS(3446), + [anon_sym_of] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_debugger] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_case] = ACTIONS(3446), + [anon_sym_finally] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_LTtemplate_GT] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_async] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_using] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_delete] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3446), + [sym_number] = ACTIONS(3446), + [sym_private_property_identifier] = ACTIONS(3446), + [sym_this] = ACTIONS(3446), + [sym_super] = ACTIONS(3446), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3446), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3446), + [anon_sym_set] = ACTIONS(3446), + [anon_sym_declare] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_protected] = ACTIONS(3446), + [anon_sym_override] = ACTIONS(3446), + [anon_sym_module] = ACTIONS(3446), + [anon_sym_any] = ACTIONS(3446), + [anon_sym_number] = ACTIONS(3446), + [anon_sym_boolean] = ACTIONS(3446), + [anon_sym_string] = ACTIONS(3446), + [anon_sym_symbol] = ACTIONS(3446), + [anon_sym_object] = ACTIONS(3446), + [anon_sym_property] = ACTIONS(3446), + [anon_sym_signal] = ACTIONS(3446), + [anon_sym_on] = ACTIONS(3446), + [anon_sym_required] = ACTIONS(3446), + [anon_sym_component] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), + [sym_html_comment] = ACTIONS(5), + }, + [1165] = { + [sym_comment] = STATE(1165), + [sym_identifier] = ACTIONS(3620), + [anon_sym_export] = ACTIONS(3620), + [anon_sym_default] = ACTIONS(3620), + [anon_sym_type] = ACTIONS(3620), + [anon_sym_namespace] = ACTIONS(3620), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_typeof] = ACTIONS(3620), + [anon_sym_import] = ACTIONS(3620), + [anon_sym_from] = ACTIONS(3620), + [anon_sym_with] = ACTIONS(3620), + [anon_sym_var] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_const] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_else] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_switch] = ACTIONS(3620), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_await] = ACTIONS(3620), + [anon_sym_of] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_break] = ACTIONS(3620), + [anon_sym_continue] = ACTIONS(3620), + [anon_sym_debugger] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_throw] = ACTIONS(3620), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym_case] = ACTIONS(3620), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LTtemplate_GT] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_class] = ACTIONS(3620), + [anon_sym_async] = ACTIONS(3620), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_using] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_SLASH] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_void] = ACTIONS(3620), + [anon_sym_delete] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3620), + [sym_number] = ACTIONS(3620), + [sym_private_property_identifier] = ACTIONS(3620), + [sym_this] = ACTIONS(3620), + [sym_super] = ACTIONS(3620), + [sym_true] = ACTIONS(3620), + [sym_false] = ACTIONS(3620), + [sym_null] = ACTIONS(3620), + [sym_undefined] = ACTIONS(3620), + [anon_sym_AT] = ACTIONS(3620), + [anon_sym_static] = ACTIONS(3620), + [anon_sym_readonly] = ACTIONS(3620), + [anon_sym_get] = ACTIONS(3620), + [anon_sym_set] = ACTIONS(3620), + [anon_sym_declare] = ACTIONS(3620), + [anon_sym_public] = ACTIONS(3620), + [anon_sym_private] = ACTIONS(3620), + [anon_sym_protected] = ACTIONS(3620), + [anon_sym_override] = ACTIONS(3620), + [anon_sym_module] = ACTIONS(3620), + [anon_sym_any] = ACTIONS(3620), + [anon_sym_number] = ACTIONS(3620), + [anon_sym_boolean] = ACTIONS(3620), + [anon_sym_string] = ACTIONS(3620), + [anon_sym_symbol] = ACTIONS(3620), + [anon_sym_object] = ACTIONS(3620), + [anon_sym_property] = ACTIONS(3620), + [anon_sym_signal] = ACTIONS(3620), + [anon_sym_on] = ACTIONS(3620), + [anon_sym_required] = ACTIONS(3620), + [anon_sym_component] = ACTIONS(3620), + [anon_sym_abstract] = ACTIONS(3620), + [anon_sym_interface] = ACTIONS(3620), + [anon_sym_enum] = ACTIONS(3620), + [sym_html_comment] = ACTIONS(5), + }, + [1166] = { + [sym_comment] = STATE(1166), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_DOT] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym_html_comment] = ACTIONS(5), + }, + [1167] = { + [sym_comment] = STATE(1167), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [sym_html_comment] = ACTIONS(5), + }, + [1168] = { + [sym_comment] = STATE(1168), + [sym_identifier] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_type] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_typeof] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_from] = ACTIONS(3624), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_var] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_else] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_await] = ACTIONS(3624), + [anon_sym_of] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_debugger] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym_case] = ACTIONS(3624), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LTtemplate_GT] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_async] = ACTIONS(3624), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_SLASH] = ACTIONS(3624), + [anon_sym_LT] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_void] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3624), + [sym_number] = ACTIONS(3624), + [sym_private_property_identifier] = ACTIONS(3624), + [sym_this] = ACTIONS(3624), + [sym_super] = ACTIONS(3624), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [sym_null] = ACTIONS(3624), + [sym_undefined] = ACTIONS(3624), + [anon_sym_AT] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_readonly] = ACTIONS(3624), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3624), + [anon_sym_declare] = ACTIONS(3624), + [anon_sym_public] = ACTIONS(3624), + [anon_sym_private] = ACTIONS(3624), + [anon_sym_protected] = ACTIONS(3624), + [anon_sym_override] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_any] = ACTIONS(3624), + [anon_sym_number] = ACTIONS(3624), + [anon_sym_boolean] = ACTIONS(3624), + [anon_sym_string] = ACTIONS(3624), + [anon_sym_symbol] = ACTIONS(3624), + [anon_sym_object] = ACTIONS(3624), + [anon_sym_property] = ACTIONS(3624), + [anon_sym_signal] = ACTIONS(3624), + [anon_sym_on] = ACTIONS(3624), + [anon_sym_required] = ACTIONS(3624), + [anon_sym_component] = ACTIONS(3624), + [anon_sym_abstract] = ACTIONS(3624), + [anon_sym_interface] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), + [sym_html_comment] = ACTIONS(5), + }, + [1169] = { + [sym_comment] = STATE(1169), + [sym_identifier] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_type] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_typeof] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_from] = ACTIONS(3624), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_var] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_else] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_await] = ACTIONS(3624), + [anon_sym_of] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_debugger] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym_case] = ACTIONS(3624), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LTtemplate_GT] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_async] = ACTIONS(3624), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_SLASH] = ACTIONS(3624), + [anon_sym_LT] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_void] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3624), + [sym_number] = ACTIONS(3624), + [sym_private_property_identifier] = ACTIONS(3624), + [sym_this] = ACTIONS(3624), + [sym_super] = ACTIONS(3624), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [sym_null] = ACTIONS(3624), + [sym_undefined] = ACTIONS(3624), + [anon_sym_AT] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_readonly] = ACTIONS(3624), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3624), + [anon_sym_declare] = ACTIONS(3624), + [anon_sym_public] = ACTIONS(3624), + [anon_sym_private] = ACTIONS(3624), + [anon_sym_protected] = ACTIONS(3624), + [anon_sym_override] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_any] = ACTIONS(3624), + [anon_sym_number] = ACTIONS(3624), + [anon_sym_boolean] = ACTIONS(3624), + [anon_sym_string] = ACTIONS(3624), + [anon_sym_symbol] = ACTIONS(3624), + [anon_sym_object] = ACTIONS(3624), + [anon_sym_property] = ACTIONS(3624), + [anon_sym_signal] = ACTIONS(3624), + [anon_sym_on] = ACTIONS(3624), + [anon_sym_required] = ACTIONS(3624), + [anon_sym_component] = ACTIONS(3624), + [anon_sym_abstract] = ACTIONS(3624), + [anon_sym_interface] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), + [sym_html_comment] = ACTIONS(5), + }, + [1170] = { + [sym_comment] = STATE(1170), + [sym_identifier] = ACTIONS(2448), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_default] = ACTIONS(2448), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_namespace] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_typeof] = ACTIONS(2448), + [anon_sym_import] = ACTIONS(2448), + [anon_sym_from] = ACTIONS(2448), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_switch] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_await] = ACTIONS(2448), + [anon_sym_of] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_debugger] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_case] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LTtemplate_GT] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_class] = ACTIONS(2448), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_new] = ACTIONS(2448), + [anon_sym_using] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_SLASH] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_void] = ACTIONS(2448), + [anon_sym_delete] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2448), + [sym_number] = ACTIONS(2448), + [sym_private_property_identifier] = ACTIONS(2448), + [sym_this] = ACTIONS(2448), + [sym_super] = ACTIONS(2448), + [sym_true] = ACTIONS(2448), + [sym_false] = ACTIONS(2448), + [sym_null] = ACTIONS(2448), + [sym_undefined] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_readonly] = ACTIONS(2448), + [anon_sym_get] = ACTIONS(2448), + [anon_sym_set] = ACTIONS(2448), + [anon_sym_declare] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_protected] = ACTIONS(2448), + [anon_sym_override] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_any] = ACTIONS(2448), + [anon_sym_number] = ACTIONS(2448), + [anon_sym_boolean] = ACTIONS(2448), + [anon_sym_string] = ACTIONS(2448), + [anon_sym_symbol] = ACTIONS(2448), + [anon_sym_object] = ACTIONS(2448), + [anon_sym_property] = ACTIONS(2448), + [anon_sym_signal] = ACTIONS(2448), + [anon_sym_on] = ACTIONS(2448), + [anon_sym_required] = ACTIONS(2448), + [anon_sym_component] = ACTIONS(2448), + [anon_sym_abstract] = ACTIONS(2448), + [anon_sym_interface] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [sym__automatic_semicolon] = ACTIONS(2522), + [sym_html_comment] = ACTIONS(5), + }, + [1171] = { + [sym_comment] = STATE(1171), + [sym_identifier] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_namespace] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_import] = ACTIONS(2478), + [anon_sym_from] = ACTIONS(2478), + [anon_sym_with] = ACTIONS(2478), + [anon_sym_var] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_await] = ACTIONS(2478), + [anon_sym_of] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_debugger] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_throw] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_case] = ACTIONS(2478), + [anon_sym_yield] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_LTtemplate_GT] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_class] = ACTIONS(2478), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_new] = ACTIONS(2478), + [anon_sym_using] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_SLASH] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2478), + [sym_number] = ACTIONS(2478), + [sym_private_property_identifier] = ACTIONS(2478), + [sym_this] = ACTIONS(2478), + [sym_super] = ACTIONS(2478), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [sym_null] = ACTIONS(2478), + [sym_undefined] = ACTIONS(2478), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_override] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_any] = ACTIONS(2478), + [anon_sym_number] = ACTIONS(2478), + [anon_sym_boolean] = ACTIONS(2478), + [anon_sym_string] = ACTIONS(2478), + [anon_sym_symbol] = ACTIONS(2478), + [anon_sym_object] = ACTIONS(2478), + [anon_sym_property] = ACTIONS(2478), + [anon_sym_signal] = ACTIONS(2478), + [anon_sym_on] = ACTIONS(2478), + [anon_sym_required] = ACTIONS(2478), + [anon_sym_component] = ACTIONS(2478), + [anon_sym_abstract] = ACTIONS(2478), + [anon_sym_interface] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [sym__automatic_semicolon] = ACTIONS(2540), + [sym_html_comment] = ACTIONS(5), + }, + [1172] = { + [sym_comment] = STATE(1172), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_case] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2558), + [sym_html_comment] = ACTIONS(5), + }, + [1173] = { + [sym_comment] = STATE(1173), + [sym_identifier] = ACTIONS(2360), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_default] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_namespace] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_typeof] = ACTIONS(2360), + [anon_sym_import] = ACTIONS(2360), + [anon_sym_from] = ACTIONS(2360), + [anon_sym_with] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_switch] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_await] = ACTIONS(2360), + [anon_sym_of] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_debugger] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_throw] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_case] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [anon_sym_LTtemplate_GT] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_class] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_new] = ACTIONS(2360), + [anon_sym_using] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_void] = ACTIONS(2360), + [anon_sym_delete] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2360), + [sym_number] = ACTIONS(2360), + [sym_private_property_identifier] = ACTIONS(2360), + [sym_this] = ACTIONS(2360), + [sym_super] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_null] = ACTIONS(2360), + [sym_undefined] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_readonly] = ACTIONS(2360), + [anon_sym_get] = ACTIONS(2360), + [anon_sym_set] = ACTIONS(2360), + [anon_sym_declare] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_protected] = ACTIONS(2360), + [anon_sym_override] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_any] = ACTIONS(2360), + [anon_sym_number] = ACTIONS(2360), + [anon_sym_boolean] = ACTIONS(2360), + [anon_sym_string] = ACTIONS(2360), + [anon_sym_symbol] = ACTIONS(2360), + [anon_sym_object] = ACTIONS(2360), + [anon_sym_property] = ACTIONS(2360), + [anon_sym_signal] = ACTIONS(2360), + [anon_sym_on] = ACTIONS(2360), + [anon_sym_required] = ACTIONS(2360), + [anon_sym_component] = ACTIONS(2360), + [anon_sym_abstract] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [sym__automatic_semicolon] = ACTIONS(2560), + [sym_html_comment] = ACTIONS(5), + }, + [1174] = { + [sym_comment] = STATE(1174), + [sym_identifier] = ACTIONS(3454), + [anon_sym_export] = ACTIONS(3454), + [anon_sym_default] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_namespace] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_RBRACE] = ACTIONS(3454), + [anon_sym_typeof] = ACTIONS(3454), + [anon_sym_import] = ACTIONS(3454), + [anon_sym_from] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(3454), + [anon_sym_var] = ACTIONS(3454), + [anon_sym_let] = ACTIONS(3454), + [anon_sym_const] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_switch] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3454), + [anon_sym_await] = ACTIONS(3454), + [anon_sym_of] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_try] = ACTIONS(3454), + [anon_sym_break] = ACTIONS(3454), + [anon_sym_continue] = ACTIONS(3454), + [anon_sym_debugger] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_throw] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym_case] = ACTIONS(3454), + [anon_sym_finally] = ACTIONS(3454), + [anon_sym_yield] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3454), + [anon_sym_LTtemplate_GT] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_class] = ACTIONS(3454), + [anon_sym_async] = ACTIONS(3454), + [anon_sym_function] = ACTIONS(3454), + [anon_sym_new] = ACTIONS(3454), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3454), + [anon_sym_LT] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_void] = ACTIONS(3454), + [anon_sym_delete] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3454), + [sym_number] = ACTIONS(3454), + [sym_private_property_identifier] = ACTIONS(3454), + [sym_this] = ACTIONS(3454), + [sym_super] = ACTIONS(3454), + [sym_true] = ACTIONS(3454), + [sym_false] = ACTIONS(3454), + [sym_null] = ACTIONS(3454), + [sym_undefined] = ACTIONS(3454), + [anon_sym_AT] = ACTIONS(3454), + [anon_sym_static] = ACTIONS(3454), + [anon_sym_readonly] = ACTIONS(3454), + [anon_sym_get] = ACTIONS(3454), + [anon_sym_set] = ACTIONS(3454), + [anon_sym_declare] = ACTIONS(3454), + [anon_sym_public] = ACTIONS(3454), + [anon_sym_private] = ACTIONS(3454), + [anon_sym_protected] = ACTIONS(3454), + [anon_sym_override] = ACTIONS(3454), + [anon_sym_module] = ACTIONS(3454), + [anon_sym_any] = ACTIONS(3454), + [anon_sym_number] = ACTIONS(3454), + [anon_sym_boolean] = ACTIONS(3454), + [anon_sym_string] = ACTIONS(3454), + [anon_sym_symbol] = ACTIONS(3454), + [anon_sym_object] = ACTIONS(3454), + [anon_sym_property] = ACTIONS(3454), + [anon_sym_signal] = ACTIONS(3454), + [anon_sym_on] = ACTIONS(3454), + [anon_sym_required] = ACTIONS(3454), + [anon_sym_component] = ACTIONS(3454), + [anon_sym_abstract] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), + [sym_html_comment] = ACTIONS(5), + }, + [1175] = { + [sym_comment] = STATE(1175), + [sym_identifier] = ACTIONS(3458), + [anon_sym_export] = ACTIONS(3458), + [anon_sym_default] = ACTIONS(3458), + [anon_sym_type] = ACTIONS(3458), + [anon_sym_namespace] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(3458), + [anon_sym_typeof] = ACTIONS(3458), + [anon_sym_import] = ACTIONS(3458), + [anon_sym_from] = ACTIONS(3458), + [anon_sym_with] = ACTIONS(3458), + [anon_sym_var] = ACTIONS(3458), + [anon_sym_let] = ACTIONS(3458), + [anon_sym_const] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_if] = ACTIONS(3458), + [anon_sym_switch] = ACTIONS(3458), + [anon_sym_for] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3458), + [anon_sym_await] = ACTIONS(3458), + [anon_sym_of] = ACTIONS(3458), + [anon_sym_while] = ACTIONS(3458), + [anon_sym_do] = ACTIONS(3458), + [anon_sym_try] = ACTIONS(3458), + [anon_sym_break] = ACTIONS(3458), + [anon_sym_continue] = ACTIONS(3458), + [anon_sym_debugger] = ACTIONS(3458), + [anon_sym_return] = ACTIONS(3458), + [anon_sym_throw] = ACTIONS(3458), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_case] = ACTIONS(3458), + [anon_sym_finally] = ACTIONS(3458), + [anon_sym_yield] = ACTIONS(3458), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_LTtemplate_GT] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3458), + [anon_sym_class] = ACTIONS(3458), + [anon_sym_async] = ACTIONS(3458), + [anon_sym_function] = ACTIONS(3458), + [anon_sym_new] = ACTIONS(3458), + [anon_sym_using] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_SLASH] = ACTIONS(3458), + [anon_sym_LT] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_void] = ACTIONS(3458), + [anon_sym_delete] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3458), + [sym_number] = ACTIONS(3458), + [sym_private_property_identifier] = ACTIONS(3458), + [sym_this] = ACTIONS(3458), + [sym_super] = ACTIONS(3458), + [sym_true] = ACTIONS(3458), + [sym_false] = ACTIONS(3458), + [sym_null] = ACTIONS(3458), + [sym_undefined] = ACTIONS(3458), + [anon_sym_AT] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(3458), + [anon_sym_readonly] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3458), + [anon_sym_set] = ACTIONS(3458), + [anon_sym_declare] = ACTIONS(3458), + [anon_sym_public] = ACTIONS(3458), + [anon_sym_private] = ACTIONS(3458), + [anon_sym_protected] = ACTIONS(3458), + [anon_sym_override] = ACTIONS(3458), + [anon_sym_module] = ACTIONS(3458), + [anon_sym_any] = ACTIONS(3458), + [anon_sym_number] = ACTIONS(3458), + [anon_sym_boolean] = ACTIONS(3458), + [anon_sym_string] = ACTIONS(3458), + [anon_sym_symbol] = ACTIONS(3458), + [anon_sym_object] = ACTIONS(3458), + [anon_sym_property] = ACTIONS(3458), + [anon_sym_signal] = ACTIONS(3458), + [anon_sym_on] = ACTIONS(3458), + [anon_sym_required] = ACTIONS(3458), + [anon_sym_component] = ACTIONS(3458), + [anon_sym_abstract] = ACTIONS(3458), + [anon_sym_interface] = ACTIONS(3458), + [anon_sym_enum] = ACTIONS(3458), + [sym_html_comment] = ACTIONS(5), + }, + [1176] = { + [sym_comment] = STATE(1176), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_default] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_typeof] = ACTIONS(2410), + [anon_sym_import] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2410), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_debugger] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_throw] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_case] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LTtemplate_GT] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_class] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2410), + [anon_sym_delete] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_private_property_identifier] = ACTIONS(2410), + [sym_this] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_true] = ACTIONS(2410), + [sym_false] = ACTIONS(2410), + [sym_null] = ACTIONS(2410), + [sym_undefined] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_abstract] = ACTIONS(2410), + [anon_sym_interface] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym_html_comment] = ACTIONS(5), + }, + [1177] = { + [sym_comment] = STATE(1177), + [sym_identifier] = ACTIONS(3626), + [anon_sym_export] = ACTIONS(3626), + [anon_sym_default] = ACTIONS(3626), + [anon_sym_type] = ACTIONS(3626), + [anon_sym_namespace] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3626), + [anon_sym_RBRACE] = ACTIONS(3626), + [anon_sym_typeof] = ACTIONS(3626), + [anon_sym_import] = ACTIONS(3626), + [anon_sym_from] = ACTIONS(3626), + [anon_sym_with] = ACTIONS(3626), + [anon_sym_var] = ACTIONS(3626), + [anon_sym_let] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_else] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3626), + [anon_sym_await] = ACTIONS(3626), + [anon_sym_of] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_debugger] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym_case] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_LTtemplate_GT] = ACTIONS(3626), + [anon_sym_DQUOTE] = ACTIONS(3626), + [anon_sym_SQUOTE] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_async] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_SLASH] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_TILDE] = ACTIONS(3626), + [anon_sym_void] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3626), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3626), + [sym_number] = ACTIONS(3626), + [sym_private_property_identifier] = ACTIONS(3626), + [sym_this] = ACTIONS(3626), + [sym_super] = ACTIONS(3626), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [sym_null] = ACTIONS(3626), + [sym_undefined] = ACTIONS(3626), + [anon_sym_AT] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_readonly] = ACTIONS(3626), + [anon_sym_get] = ACTIONS(3626), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_declare] = ACTIONS(3626), + [anon_sym_public] = ACTIONS(3626), + [anon_sym_private] = ACTIONS(3626), + [anon_sym_protected] = ACTIONS(3626), + [anon_sym_override] = ACTIONS(3626), + [anon_sym_module] = ACTIONS(3626), + [anon_sym_any] = ACTIONS(3626), + [anon_sym_number] = ACTIONS(3626), + [anon_sym_boolean] = ACTIONS(3626), + [anon_sym_string] = ACTIONS(3626), + [anon_sym_symbol] = ACTIONS(3626), + [anon_sym_object] = ACTIONS(3626), + [anon_sym_property] = ACTIONS(3626), + [anon_sym_signal] = ACTIONS(3626), + [anon_sym_on] = ACTIONS(3626), + [anon_sym_required] = ACTIONS(3626), + [anon_sym_component] = ACTIONS(3626), + [anon_sym_abstract] = ACTIONS(3626), + [anon_sym_interface] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [sym_html_comment] = ACTIONS(5), + }, + [1178] = { + [sym_comment] = STATE(1178), + [sym_identifier] = ACTIONS(3628), + [anon_sym_export] = ACTIONS(3628), + [anon_sym_default] = ACTIONS(3628), + [anon_sym_type] = ACTIONS(3628), + [anon_sym_namespace] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_RBRACE] = ACTIONS(3628), + [anon_sym_typeof] = ACTIONS(3628), + [anon_sym_import] = ACTIONS(3628), + [anon_sym_from] = ACTIONS(3628), + [anon_sym_with] = ACTIONS(3628), + [anon_sym_var] = ACTIONS(3628), + [anon_sym_let] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_else] = ACTIONS(3628), + [anon_sym_if] = ACTIONS(3628), + [anon_sym_switch] = ACTIONS(3628), + [anon_sym_for] = ACTIONS(3628), + [anon_sym_LPAREN] = ACTIONS(3628), + [anon_sym_await] = ACTIONS(3628), + [anon_sym_of] = ACTIONS(3628), + [anon_sym_while] = ACTIONS(3628), + [anon_sym_do] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3628), + [anon_sym_break] = ACTIONS(3628), + [anon_sym_continue] = ACTIONS(3628), + [anon_sym_debugger] = ACTIONS(3628), + [anon_sym_return] = ACTIONS(3628), + [anon_sym_throw] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_case] = ACTIONS(3628), + [anon_sym_yield] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3628), + [anon_sym_LTtemplate_GT] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_async] = ACTIONS(3628), + [anon_sym_function] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_using] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_LT] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_void] = ACTIONS(3628), + [anon_sym_delete] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3628), + [sym_number] = ACTIONS(3628), + [sym_private_property_identifier] = ACTIONS(3628), + [sym_this] = ACTIONS(3628), + [sym_super] = ACTIONS(3628), + [sym_true] = ACTIONS(3628), + [sym_false] = ACTIONS(3628), + [sym_null] = ACTIONS(3628), + [sym_undefined] = ACTIONS(3628), + [anon_sym_AT] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_readonly] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(3628), + [anon_sym_set] = ACTIONS(3628), + [anon_sym_declare] = ACTIONS(3628), + [anon_sym_public] = ACTIONS(3628), + [anon_sym_private] = ACTIONS(3628), + [anon_sym_protected] = ACTIONS(3628), + [anon_sym_override] = ACTIONS(3628), + [anon_sym_module] = ACTIONS(3628), + [anon_sym_any] = ACTIONS(3628), + [anon_sym_number] = ACTIONS(3628), + [anon_sym_boolean] = ACTIONS(3628), + [anon_sym_string] = ACTIONS(3628), + [anon_sym_symbol] = ACTIONS(3628), + [anon_sym_object] = ACTIONS(3628), + [anon_sym_property] = ACTIONS(3628), + [anon_sym_signal] = ACTIONS(3628), + [anon_sym_on] = ACTIONS(3628), + [anon_sym_required] = ACTIONS(3628), + [anon_sym_component] = ACTIONS(3628), + [anon_sym_abstract] = ACTIONS(3628), + [anon_sym_interface] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), + [sym_html_comment] = ACTIONS(5), + }, + [1179] = { + [sym_comment] = STATE(1179), + [sym_identifier] = ACTIONS(3630), + [anon_sym_export] = ACTIONS(3630), + [anon_sym_default] = ACTIONS(3630), + [anon_sym_type] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_typeof] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), + [anon_sym_from] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3630), + [anon_sym_var] = ACTIONS(3630), + [anon_sym_let] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_await] = ACTIONS(3630), + [anon_sym_of] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_debugger] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_case] = ACTIONS(3630), + [anon_sym_yield] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LTtemplate_GT] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3630), + [anon_sym_SQUOTE] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_async] = ACTIONS(3630), + [anon_sym_function] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_SLASH] = ACTIONS(3630), + [anon_sym_LT] = ACTIONS(3630), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_void] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3630), + [sym_number] = ACTIONS(3630), + [sym_private_property_identifier] = ACTIONS(3630), + [sym_this] = ACTIONS(3630), + [sym_super] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_null] = ACTIONS(3630), + [sym_undefined] = ACTIONS(3630), + [anon_sym_AT] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_readonly] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(3630), + [anon_sym_set] = ACTIONS(3630), + [anon_sym_declare] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_override] = ACTIONS(3630), + [anon_sym_module] = ACTIONS(3630), + [anon_sym_any] = ACTIONS(3630), + [anon_sym_number] = ACTIONS(3630), + [anon_sym_boolean] = ACTIONS(3630), + [anon_sym_string] = ACTIONS(3630), + [anon_sym_symbol] = ACTIONS(3630), + [anon_sym_object] = ACTIONS(3630), + [anon_sym_property] = ACTIONS(3630), + [anon_sym_signal] = ACTIONS(3630), + [anon_sym_on] = ACTIONS(3630), + [anon_sym_required] = ACTIONS(3630), + [anon_sym_component] = ACTIONS(3630), + [anon_sym_abstract] = ACTIONS(3630), + [anon_sym_interface] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [sym_html_comment] = ACTIONS(5), + }, + [1180] = { + [sym_comment] = STATE(1180), + [sym_identifier] = ACTIONS(2384), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_typeof] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2384), + [anon_sym_from] = ACTIONS(2384), + [anon_sym_with] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2384), + [anon_sym_await] = ACTIONS(2384), + [anon_sym_of] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_debugger] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_case] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_LTtemplate_GT] = ACTIONS(2384), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DQUOTE] = ACTIONS(2384), + [anon_sym_SQUOTE] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_using] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_TILDE] = ACTIONS(2384), + [anon_sym_void] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2384), + [sym_number] = ACTIONS(2384), + [sym_private_property_identifier] = ACTIONS(2384), + [sym_this] = ACTIONS(2384), + [sym_super] = ACTIONS(2384), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_undefined] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_readonly] = ACTIONS(2384), + [anon_sym_get] = ACTIONS(2384), + [anon_sym_set] = ACTIONS(2384), + [anon_sym_declare] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_protected] = ACTIONS(2384), + [anon_sym_override] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_any] = ACTIONS(2384), + [anon_sym_number] = ACTIONS(2384), + [anon_sym_boolean] = ACTIONS(2384), + [anon_sym_string] = ACTIONS(2384), + [anon_sym_symbol] = ACTIONS(2384), + [anon_sym_object] = ACTIONS(2384), + [anon_sym_property] = ACTIONS(2384), + [anon_sym_signal] = ACTIONS(2384), + [anon_sym_on] = ACTIONS(2384), + [anon_sym_required] = ACTIONS(2384), + [anon_sym_component] = ACTIONS(2384), + [anon_sym_abstract] = ACTIONS(2384), + [anon_sym_interface] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [sym_html_comment] = ACTIONS(5), + }, + [1181] = { + [sym_comment] = STATE(1181), + [sym_identifier] = ACTIONS(3632), + [anon_sym_export] = ACTIONS(3632), + [anon_sym_default] = ACTIONS(3632), + [anon_sym_type] = ACTIONS(3632), + [anon_sym_namespace] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_typeof] = ACTIONS(3632), + [anon_sym_import] = ACTIONS(3632), + [anon_sym_from] = ACTIONS(3632), + [anon_sym_with] = ACTIONS(3632), + [anon_sym_var] = ACTIONS(3632), + [anon_sym_let] = ACTIONS(3632), + [anon_sym_const] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_else] = ACTIONS(3632), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_switch] = ACTIONS(3632), + [anon_sym_for] = ACTIONS(3632), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_await] = ACTIONS(3632), + [anon_sym_of] = ACTIONS(3632), + [anon_sym_while] = ACTIONS(3632), + [anon_sym_do] = ACTIONS(3632), + [anon_sym_try] = ACTIONS(3632), + [anon_sym_break] = ACTIONS(3632), + [anon_sym_continue] = ACTIONS(3632), + [anon_sym_debugger] = ACTIONS(3632), + [anon_sym_return] = ACTIONS(3632), + [anon_sym_throw] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_case] = ACTIONS(3632), + [anon_sym_yield] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3632), + [anon_sym_LTtemplate_GT] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_class] = ACTIONS(3632), + [anon_sym_async] = ACTIONS(3632), + [anon_sym_function] = ACTIONS(3632), + [anon_sym_new] = ACTIONS(3632), + [anon_sym_using] = ACTIONS(3632), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_SLASH] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_void] = ACTIONS(3632), + [anon_sym_delete] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3632), + [sym_number] = ACTIONS(3632), + [sym_private_property_identifier] = ACTIONS(3632), + [sym_this] = ACTIONS(3632), + [sym_super] = ACTIONS(3632), + [sym_true] = ACTIONS(3632), + [sym_false] = ACTIONS(3632), + [sym_null] = ACTIONS(3632), + [sym_undefined] = ACTIONS(3632), + [anon_sym_AT] = ACTIONS(3632), + [anon_sym_static] = ACTIONS(3632), + [anon_sym_readonly] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(3632), + [anon_sym_set] = ACTIONS(3632), + [anon_sym_declare] = ACTIONS(3632), + [anon_sym_public] = ACTIONS(3632), + [anon_sym_private] = ACTIONS(3632), + [anon_sym_protected] = ACTIONS(3632), + [anon_sym_override] = ACTIONS(3632), + [anon_sym_module] = ACTIONS(3632), + [anon_sym_any] = ACTIONS(3632), + [anon_sym_number] = ACTIONS(3632), + [anon_sym_boolean] = ACTIONS(3632), + [anon_sym_string] = ACTIONS(3632), + [anon_sym_symbol] = ACTIONS(3632), + [anon_sym_object] = ACTIONS(3632), + [anon_sym_property] = ACTIONS(3632), + [anon_sym_signal] = ACTIONS(3632), + [anon_sym_on] = ACTIONS(3632), + [anon_sym_required] = ACTIONS(3632), + [anon_sym_component] = ACTIONS(3632), + [anon_sym_abstract] = ACTIONS(3632), + [anon_sym_interface] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(3632), + [sym_html_comment] = ACTIONS(5), + }, + [1182] = { + [sym_comment] = STATE(1182), + [sym_identifier] = ACTIONS(3634), + [anon_sym_export] = ACTIONS(3634), + [anon_sym_default] = ACTIONS(3634), + [anon_sym_type] = ACTIONS(3634), + [anon_sym_namespace] = ACTIONS(3634), + [anon_sym_LBRACE] = ACTIONS(3634), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_typeof] = ACTIONS(3634), + [anon_sym_import] = ACTIONS(3634), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_with] = ACTIONS(3634), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_const] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3634), + [anon_sym_if] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_for] = ACTIONS(3634), + [anon_sym_LPAREN] = ACTIONS(3634), + [anon_sym_await] = ACTIONS(3634), + [anon_sym_of] = ACTIONS(3634), + [anon_sym_while] = ACTIONS(3634), + [anon_sym_do] = ACTIONS(3634), + [anon_sym_try] = ACTIONS(3634), + [anon_sym_break] = ACTIONS(3634), + [anon_sym_continue] = ACTIONS(3634), + [anon_sym_debugger] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3634), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_case] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3634), + [anon_sym_LTtemplate_GT] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(3634), + [anon_sym_SQUOTE] = ACTIONS(3634), + [anon_sym_class] = ACTIONS(3634), + [anon_sym_async] = ACTIONS(3634), + [anon_sym_function] = ACTIONS(3634), + [anon_sym_new] = ACTIONS(3634), + [anon_sym_using] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(3634), + [anon_sym_void] = ACTIONS(3634), + [anon_sym_delete] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3634), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3634), + [sym_number] = ACTIONS(3634), + [sym_private_property_identifier] = ACTIONS(3634), + [sym_this] = ACTIONS(3634), + [sym_super] = ACTIONS(3634), + [sym_true] = ACTIONS(3634), + [sym_false] = ACTIONS(3634), + [sym_null] = ACTIONS(3634), + [sym_undefined] = ACTIONS(3634), + [anon_sym_AT] = ACTIONS(3634), + [anon_sym_static] = ACTIONS(3634), + [anon_sym_readonly] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(3634), + [anon_sym_set] = ACTIONS(3634), + [anon_sym_declare] = ACTIONS(3634), + [anon_sym_public] = ACTIONS(3634), + [anon_sym_private] = ACTIONS(3634), + [anon_sym_protected] = ACTIONS(3634), + [anon_sym_override] = ACTIONS(3634), + [anon_sym_module] = ACTIONS(3634), + [anon_sym_any] = ACTIONS(3634), + [anon_sym_number] = ACTIONS(3634), + [anon_sym_boolean] = ACTIONS(3634), + [anon_sym_string] = ACTIONS(3634), + [anon_sym_symbol] = ACTIONS(3634), + [anon_sym_object] = ACTIONS(3634), + [anon_sym_property] = ACTIONS(3634), + [anon_sym_signal] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_required] = ACTIONS(3634), + [anon_sym_component] = ACTIONS(3634), + [anon_sym_abstract] = ACTIONS(3634), + [anon_sym_interface] = ACTIONS(3634), + [anon_sym_enum] = ACTIONS(3634), + [sym_html_comment] = ACTIONS(5), + }, + [1183] = { + [sym_comment] = STATE(1183), + [sym_identifier] = ACTIONS(3636), + [anon_sym_export] = ACTIONS(3636), + [anon_sym_default] = ACTIONS(3636), + [anon_sym_type] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_typeof] = ACTIONS(3636), + [anon_sym_import] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3636), + [anon_sym_let] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_else] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_await] = ACTIONS(3636), + [anon_sym_of] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_debugger] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_case] = ACTIONS(3636), + [anon_sym_yield] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_LTtemplate_GT] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(3636), + [anon_sym_SQUOTE] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_async] = ACTIONS(3636), + [anon_sym_function] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3636), + [anon_sym_void] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3636), + [sym_number] = ACTIONS(3636), + [sym_private_property_identifier] = ACTIONS(3636), + [sym_this] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [sym_null] = ACTIONS(3636), + [sym_undefined] = ACTIONS(3636), + [anon_sym_AT] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_readonly] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(3636), + [anon_sym_set] = ACTIONS(3636), + [anon_sym_declare] = ACTIONS(3636), + [anon_sym_public] = ACTIONS(3636), + [anon_sym_private] = ACTIONS(3636), + [anon_sym_protected] = ACTIONS(3636), + [anon_sym_override] = ACTIONS(3636), + [anon_sym_module] = ACTIONS(3636), + [anon_sym_any] = ACTIONS(3636), + [anon_sym_number] = ACTIONS(3636), + [anon_sym_boolean] = ACTIONS(3636), + [anon_sym_string] = ACTIONS(3636), + [anon_sym_symbol] = ACTIONS(3636), + [anon_sym_object] = ACTIONS(3636), + [anon_sym_property] = ACTIONS(3636), + [anon_sym_signal] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_required] = ACTIONS(3636), + [anon_sym_component] = ACTIONS(3636), + [anon_sym_abstract] = ACTIONS(3636), + [anon_sym_interface] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [sym_html_comment] = ACTIONS(5), + }, + [1184] = { + [sym_comment] = STATE(1184), + [sym_identifier] = ACTIONS(3638), + [anon_sym_export] = ACTIONS(3638), + [anon_sym_default] = ACTIONS(3638), + [anon_sym_type] = ACTIONS(3638), + [anon_sym_namespace] = ACTIONS(3638), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_typeof] = ACTIONS(3638), + [anon_sym_import] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_with] = ACTIONS(3638), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_const] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_else] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_await] = ACTIONS(3638), + [anon_sym_of] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_break] = ACTIONS(3638), + [anon_sym_continue] = ACTIONS(3638), + [anon_sym_debugger] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_throw] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_case] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LTtemplate_GT] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_class] = ACTIONS(3638), + [anon_sym_async] = ACTIONS(3638), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_using] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_void] = ACTIONS(3638), + [anon_sym_delete] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3638), + [sym_number] = ACTIONS(3638), + [sym_private_property_identifier] = ACTIONS(3638), + [sym_this] = ACTIONS(3638), + [sym_super] = ACTIONS(3638), + [sym_true] = ACTIONS(3638), + [sym_false] = ACTIONS(3638), + [sym_null] = ACTIONS(3638), + [sym_undefined] = ACTIONS(3638), + [anon_sym_AT] = ACTIONS(3638), + [anon_sym_static] = ACTIONS(3638), + [anon_sym_readonly] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(3638), + [anon_sym_set] = ACTIONS(3638), + [anon_sym_declare] = ACTIONS(3638), + [anon_sym_public] = ACTIONS(3638), + [anon_sym_private] = ACTIONS(3638), + [anon_sym_protected] = ACTIONS(3638), + [anon_sym_override] = ACTIONS(3638), + [anon_sym_module] = ACTIONS(3638), + [anon_sym_any] = ACTIONS(3638), + [anon_sym_number] = ACTIONS(3638), + [anon_sym_boolean] = ACTIONS(3638), + [anon_sym_string] = ACTIONS(3638), + [anon_sym_symbol] = ACTIONS(3638), + [anon_sym_object] = ACTIONS(3638), + [anon_sym_property] = ACTIONS(3638), + [anon_sym_signal] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_required] = ACTIONS(3638), + [anon_sym_component] = ACTIONS(3638), + [anon_sym_abstract] = ACTIONS(3638), + [anon_sym_interface] = ACTIONS(3638), + [anon_sym_enum] = ACTIONS(3638), + [sym_html_comment] = ACTIONS(5), + }, + [1185] = { + [sym_comment] = STATE(1185), + [sym_identifier] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_type] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_typeof] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [anon_sym_var] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_await] = ACTIONS(3640), + [anon_sym_of] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_debugger] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_LTtemplate_GT] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_async] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3640), + [anon_sym_void] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3640), + [sym_number] = ACTIONS(3640), + [sym_private_property_identifier] = ACTIONS(3640), + [sym_this] = ACTIONS(3640), + [sym_super] = ACTIONS(3640), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [sym_null] = ACTIONS(3640), + [sym_undefined] = ACTIONS(3640), + [anon_sym_AT] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_readonly] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(3640), + [anon_sym_set] = ACTIONS(3640), + [anon_sym_declare] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_override] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_any] = ACTIONS(3640), + [anon_sym_number] = ACTIONS(3640), + [anon_sym_boolean] = ACTIONS(3640), + [anon_sym_string] = ACTIONS(3640), + [anon_sym_symbol] = ACTIONS(3640), + [anon_sym_object] = ACTIONS(3640), + [anon_sym_property] = ACTIONS(3640), + [anon_sym_signal] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_required] = ACTIONS(3640), + [anon_sym_component] = ACTIONS(3640), + [anon_sym_abstract] = ACTIONS(3640), + [anon_sym_interface] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [sym_html_comment] = ACTIONS(5), + }, + [1186] = { + [sym_comment] = STATE(1186), + [sym_identifier] = ACTIONS(3642), + [anon_sym_export] = ACTIONS(3642), + [anon_sym_default] = ACTIONS(3642), + [anon_sym_type] = ACTIONS(3642), + [anon_sym_namespace] = ACTIONS(3642), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_typeof] = ACTIONS(3642), + [anon_sym_import] = ACTIONS(3642), + [anon_sym_from] = ACTIONS(3642), + [anon_sym_with] = ACTIONS(3642), + [anon_sym_var] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_const] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_else] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_await] = ACTIONS(3642), + [anon_sym_of] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_break] = ACTIONS(3642), + [anon_sym_continue] = ACTIONS(3642), + [anon_sym_debugger] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_throw] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_case] = ACTIONS(3642), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LTtemplate_GT] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_class] = ACTIONS(3642), + [anon_sym_async] = ACTIONS(3642), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_using] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_void] = ACTIONS(3642), + [anon_sym_delete] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3642), + [sym_number] = ACTIONS(3642), + [sym_private_property_identifier] = ACTIONS(3642), + [sym_this] = ACTIONS(3642), + [sym_super] = ACTIONS(3642), + [sym_true] = ACTIONS(3642), + [sym_false] = ACTIONS(3642), + [sym_null] = ACTIONS(3642), + [sym_undefined] = ACTIONS(3642), + [anon_sym_AT] = ACTIONS(3642), + [anon_sym_static] = ACTIONS(3642), + [anon_sym_readonly] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(3642), + [anon_sym_set] = ACTIONS(3642), + [anon_sym_declare] = ACTIONS(3642), + [anon_sym_public] = ACTIONS(3642), + [anon_sym_private] = ACTIONS(3642), + [anon_sym_protected] = ACTIONS(3642), + [anon_sym_override] = ACTIONS(3642), + [anon_sym_module] = ACTIONS(3642), + [anon_sym_any] = ACTIONS(3642), + [anon_sym_number] = ACTIONS(3642), + [anon_sym_boolean] = ACTIONS(3642), + [anon_sym_string] = ACTIONS(3642), + [anon_sym_symbol] = ACTIONS(3642), + [anon_sym_object] = ACTIONS(3642), + [anon_sym_property] = ACTIONS(3642), + [anon_sym_signal] = ACTIONS(3642), + [anon_sym_on] = ACTIONS(3642), + [anon_sym_required] = ACTIONS(3642), + [anon_sym_component] = ACTIONS(3642), + [anon_sym_abstract] = ACTIONS(3642), + [anon_sym_interface] = ACTIONS(3642), + [anon_sym_enum] = ACTIONS(3642), + [sym_html_comment] = ACTIONS(5), + }, + [1187] = { + [sym_comment] = STATE(1187), + [sym_identifier] = ACTIONS(3644), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_default] = ACTIONS(3644), + [anon_sym_type] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_typeof] = ACTIONS(3644), + [anon_sym_import] = ACTIONS(3644), + [anon_sym_from] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [anon_sym_var] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_await] = ACTIONS(3644), + [anon_sym_of] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_debugger] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_case] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_LTtemplate_GT] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [anon_sym_SQUOTE] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_async] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [anon_sym_void] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3644), + [sym_number] = ACTIONS(3644), + [sym_private_property_identifier] = ACTIONS(3644), + [sym_this] = ACTIONS(3644), + [sym_super] = ACTIONS(3644), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [sym_null] = ACTIONS(3644), + [sym_undefined] = ACTIONS(3644), + [anon_sym_AT] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_readonly] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(3644), + [anon_sym_set] = ACTIONS(3644), + [anon_sym_declare] = ACTIONS(3644), + [anon_sym_public] = ACTIONS(3644), + [anon_sym_private] = ACTIONS(3644), + [anon_sym_protected] = ACTIONS(3644), + [anon_sym_override] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_any] = ACTIONS(3644), + [anon_sym_number] = ACTIONS(3644), + [anon_sym_boolean] = ACTIONS(3644), + [anon_sym_string] = ACTIONS(3644), + [anon_sym_symbol] = ACTIONS(3644), + [anon_sym_object] = ACTIONS(3644), + [anon_sym_property] = ACTIONS(3644), + [anon_sym_signal] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_required] = ACTIONS(3644), + [anon_sym_component] = ACTIONS(3644), + [anon_sym_abstract] = ACTIONS(3644), + [anon_sym_interface] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [sym_html_comment] = ACTIONS(5), + }, + [1188] = { + [sym_comment] = STATE(1188), + [sym_identifier] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_default] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_typeof] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_from] = ACTIONS(3646), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_var] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_else] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_await] = ACTIONS(3646), + [anon_sym_of] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_debugger] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_case] = ACTIONS(3646), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LTtemplate_GT] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_async] = ACTIONS(3646), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_SLASH] = ACTIONS(3646), + [anon_sym_LT] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_void] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3646), + [sym_number] = ACTIONS(3646), + [sym_private_property_identifier] = ACTIONS(3646), + [sym_this] = ACTIONS(3646), + [sym_super] = ACTIONS(3646), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [sym_null] = ACTIONS(3646), + [sym_undefined] = ACTIONS(3646), + [anon_sym_AT] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_readonly] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(3646), + [anon_sym_set] = ACTIONS(3646), + [anon_sym_declare] = ACTIONS(3646), + [anon_sym_public] = ACTIONS(3646), + [anon_sym_private] = ACTIONS(3646), + [anon_sym_protected] = ACTIONS(3646), + [anon_sym_override] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_any] = ACTIONS(3646), + [anon_sym_number] = ACTIONS(3646), + [anon_sym_boolean] = ACTIONS(3646), + [anon_sym_string] = ACTIONS(3646), + [anon_sym_symbol] = ACTIONS(3646), + [anon_sym_object] = ACTIONS(3646), + [anon_sym_property] = ACTIONS(3646), + [anon_sym_signal] = ACTIONS(3646), + [anon_sym_on] = ACTIONS(3646), + [anon_sym_required] = ACTIONS(3646), + [anon_sym_component] = ACTIONS(3646), + [anon_sym_abstract] = ACTIONS(3646), + [anon_sym_interface] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), + [sym_html_comment] = ACTIONS(5), + }, + [1189] = { + [sym_comment] = STATE(1189), + [sym_identifier] = ACTIONS(3648), + [anon_sym_export] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_type] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3648), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_typeof] = ACTIONS(3648), + [anon_sym_import] = ACTIONS(3648), + [anon_sym_from] = ACTIONS(3648), + [anon_sym_with] = ACTIONS(3648), + [anon_sym_var] = ACTIONS(3648), + [anon_sym_let] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3648), + [anon_sym_await] = ACTIONS(3648), + [anon_sym_of] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_debugger] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_LTtemplate_GT] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3648), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_async] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_SLASH] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3648), + [anon_sym_void] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_PLUS_PLUS] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3648), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3648), + [sym_number] = ACTIONS(3648), + [sym_private_property_identifier] = ACTIONS(3648), + [sym_this] = ACTIONS(3648), + [sym_super] = ACTIONS(3648), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [sym_null] = ACTIONS(3648), + [sym_undefined] = ACTIONS(3648), + [anon_sym_AT] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_readonly] = ACTIONS(3648), + [anon_sym_get] = ACTIONS(3648), + [anon_sym_set] = ACTIONS(3648), + [anon_sym_declare] = ACTIONS(3648), + [anon_sym_public] = ACTIONS(3648), + [anon_sym_private] = ACTIONS(3648), + [anon_sym_protected] = ACTIONS(3648), + [anon_sym_override] = ACTIONS(3648), + [anon_sym_module] = ACTIONS(3648), + [anon_sym_any] = ACTIONS(3648), + [anon_sym_number] = ACTIONS(3648), + [anon_sym_boolean] = ACTIONS(3648), + [anon_sym_string] = ACTIONS(3648), + [anon_sym_symbol] = ACTIONS(3648), + [anon_sym_object] = ACTIONS(3648), + [anon_sym_property] = ACTIONS(3648), + [anon_sym_signal] = ACTIONS(3648), + [anon_sym_on] = ACTIONS(3648), + [anon_sym_required] = ACTIONS(3648), + [anon_sym_component] = ACTIONS(3648), + [anon_sym_abstract] = ACTIONS(3648), + [anon_sym_interface] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [sym_html_comment] = ACTIONS(5), + }, + [1190] = { + [sym_comment] = STATE(1190), + [sym_identifier] = ACTIONS(3650), + [anon_sym_export] = ACTIONS(3650), + [anon_sym_default] = ACTIONS(3650), + [anon_sym_type] = ACTIONS(3650), + [anon_sym_namespace] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_typeof] = ACTIONS(3650), + [anon_sym_import] = ACTIONS(3650), + [anon_sym_from] = ACTIONS(3650), + [anon_sym_with] = ACTIONS(3650), + [anon_sym_var] = ACTIONS(3650), + [anon_sym_let] = ACTIONS(3650), + [anon_sym_const] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_else] = ACTIONS(3650), + [anon_sym_if] = ACTIONS(3650), + [anon_sym_switch] = ACTIONS(3650), + [anon_sym_for] = ACTIONS(3650), + [anon_sym_LPAREN] = ACTIONS(3650), + [anon_sym_await] = ACTIONS(3650), + [anon_sym_of] = ACTIONS(3650), + [anon_sym_while] = ACTIONS(3650), + [anon_sym_do] = ACTIONS(3650), + [anon_sym_try] = ACTIONS(3650), + [anon_sym_break] = ACTIONS(3650), + [anon_sym_continue] = ACTIONS(3650), + [anon_sym_debugger] = ACTIONS(3650), + [anon_sym_return] = ACTIONS(3650), + [anon_sym_throw] = ACTIONS(3650), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym_case] = ACTIONS(3650), + [anon_sym_yield] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_LTtemplate_GT] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_class] = ACTIONS(3650), + [anon_sym_async] = ACTIONS(3650), + [anon_sym_function] = ACTIONS(3650), + [anon_sym_new] = ACTIONS(3650), + [anon_sym_using] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3650), + [anon_sym_LT] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_void] = ACTIONS(3650), + [anon_sym_delete] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3650), + [sym_number] = ACTIONS(3650), + [sym_private_property_identifier] = ACTIONS(3650), + [sym_this] = ACTIONS(3650), + [sym_super] = ACTIONS(3650), + [sym_true] = ACTIONS(3650), + [sym_false] = ACTIONS(3650), + [sym_null] = ACTIONS(3650), + [sym_undefined] = ACTIONS(3650), + [anon_sym_AT] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3650), + [anon_sym_readonly] = ACTIONS(3650), + [anon_sym_get] = ACTIONS(3650), + [anon_sym_set] = ACTIONS(3650), + [anon_sym_declare] = ACTIONS(3650), + [anon_sym_public] = ACTIONS(3650), + [anon_sym_private] = ACTIONS(3650), + [anon_sym_protected] = ACTIONS(3650), + [anon_sym_override] = ACTIONS(3650), + [anon_sym_module] = ACTIONS(3650), + [anon_sym_any] = ACTIONS(3650), + [anon_sym_number] = ACTIONS(3650), + [anon_sym_boolean] = ACTIONS(3650), + [anon_sym_string] = ACTIONS(3650), + [anon_sym_symbol] = ACTIONS(3650), + [anon_sym_object] = ACTIONS(3650), + [anon_sym_property] = ACTIONS(3650), + [anon_sym_signal] = ACTIONS(3650), + [anon_sym_on] = ACTIONS(3650), + [anon_sym_required] = ACTIONS(3650), + [anon_sym_component] = ACTIONS(3650), + [anon_sym_abstract] = ACTIONS(3650), + [anon_sym_interface] = ACTIONS(3650), + [anon_sym_enum] = ACTIONS(3650), + [sym_html_comment] = ACTIONS(5), + }, + [1191] = { + [sym_comment] = STATE(1191), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), + }, + [1192] = { + [sym_comment] = STATE(1192), + [sym_identifier] = ACTIONS(3652), + [anon_sym_export] = ACTIONS(3652), + [anon_sym_default] = ACTIONS(3652), + [anon_sym_type] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_RBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3652), + [anon_sym_import] = ACTIONS(3652), + [anon_sym_from] = ACTIONS(3652), + [anon_sym_with] = ACTIONS(3652), + [anon_sym_var] = ACTIONS(3652), + [anon_sym_let] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_await] = ACTIONS(3652), + [anon_sym_of] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_debugger] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3652), + [anon_sym_case] = ACTIONS(3652), + [anon_sym_yield] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_LTtemplate_GT] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_async] = ACTIONS(3652), + [anon_sym_function] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_SLASH] = ACTIONS(3652), + [anon_sym_LT] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3652), + [sym_number] = ACTIONS(3652), + [sym_private_property_identifier] = ACTIONS(3652), + [sym_this] = ACTIONS(3652), + [sym_super] = ACTIONS(3652), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [sym_null] = ACTIONS(3652), + [sym_undefined] = ACTIONS(3652), + [anon_sym_AT] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_readonly] = ACTIONS(3652), + [anon_sym_get] = ACTIONS(3652), + [anon_sym_set] = ACTIONS(3652), + [anon_sym_declare] = ACTIONS(3652), + [anon_sym_public] = ACTIONS(3652), + [anon_sym_private] = ACTIONS(3652), + [anon_sym_protected] = ACTIONS(3652), + [anon_sym_override] = ACTIONS(3652), + [anon_sym_module] = ACTIONS(3652), + [anon_sym_any] = ACTIONS(3652), + [anon_sym_number] = ACTIONS(3652), + [anon_sym_boolean] = ACTIONS(3652), + [anon_sym_string] = ACTIONS(3652), + [anon_sym_symbol] = ACTIONS(3652), + [anon_sym_object] = ACTIONS(3652), + [anon_sym_property] = ACTIONS(3652), + [anon_sym_signal] = ACTIONS(3652), + [anon_sym_on] = ACTIONS(3652), + [anon_sym_required] = ACTIONS(3652), + [anon_sym_component] = ACTIONS(3652), + [anon_sym_abstract] = ACTIONS(3652), + [anon_sym_interface] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1193] = { + [sym_comment] = STATE(1193), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1194] = { + [sym_comment] = STATE(1194), + [sym_identifier] = ACTIONS(3654), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_default] = ACTIONS(3654), + [anon_sym_type] = ACTIONS(3654), + [anon_sym_namespace] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_RBRACE] = ACTIONS(3654), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_from] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_await] = ACTIONS(3654), + [anon_sym_of] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym_case] = ACTIONS(3654), + [anon_sym_yield] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_LTtemplate_GT] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_class] = ACTIONS(3654), + [anon_sym_async] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_using] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_LT] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_void] = ACTIONS(3654), + [anon_sym_delete] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3654), + [sym_number] = ACTIONS(3654), + [sym_private_property_identifier] = ACTIONS(3654), + [sym_this] = ACTIONS(3654), + [sym_super] = ACTIONS(3654), + [sym_true] = ACTIONS(3654), + [sym_false] = ACTIONS(3654), + [sym_null] = ACTIONS(3654), + [sym_undefined] = ACTIONS(3654), + [anon_sym_AT] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_readonly] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_declare] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_protected] = ACTIONS(3654), + [anon_sym_override] = ACTIONS(3654), + [anon_sym_module] = ACTIONS(3654), + [anon_sym_any] = ACTIONS(3654), + [anon_sym_number] = ACTIONS(3654), + [anon_sym_boolean] = ACTIONS(3654), + [anon_sym_string] = ACTIONS(3654), + [anon_sym_symbol] = ACTIONS(3654), + [anon_sym_object] = ACTIONS(3654), + [anon_sym_property] = ACTIONS(3654), + [anon_sym_signal] = ACTIONS(3654), + [anon_sym_on] = ACTIONS(3654), + [anon_sym_required] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_enum] = ACTIONS(3654), + [sym_html_comment] = ACTIONS(5), + }, + [1195] = { + [sym_comment] = STATE(1195), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1196] = { + [sym_comment] = STATE(1196), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1197] = { + [sym_comment] = STATE(1197), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1198] = { + [sym_comment] = STATE(1198), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1199] = { + [sym_comment] = STATE(1199), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1200] = { + [sym_comment] = STATE(1200), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1201] = { + [sym_comment] = STATE(1201), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1202] = { + [sym_comment] = STATE(1202), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1203] = { + [sym_comment] = STATE(1203), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1204] = { + [sym_comment] = STATE(1204), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1205] = { + [sym_comment] = STATE(1205), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1206] = { + [sym_comment] = STATE(1206), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1207] = { + [sym_comment] = STATE(1207), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1208] = { + [sym_comment] = STATE(1208), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1209] = { + [sym_comment] = STATE(1209), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1210] = { + [sym_comment] = STATE(1210), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1211] = { + [sym_comment] = STATE(1211), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1212] = { + [sym_comment] = STATE(1212), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1213] = { + [sym_comment] = STATE(1213), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1214] = { + [sym_comment] = STATE(1214), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1215] = { + [sym_comment] = STATE(1215), + [sym_identifier] = ACTIONS(3658), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_default] = ACTIONS(3658), + [anon_sym_type] = ACTIONS(3658), + [anon_sym_namespace] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_RBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_from] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_else] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_await] = ACTIONS(3658), + [anon_sym_of] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_case] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LTtemplate_GT] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_async] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_void] = ACTIONS(3658), + [anon_sym_delete] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3658), + [sym_number] = ACTIONS(3658), + [sym_private_property_identifier] = ACTIONS(3658), + [sym_this] = ACTIONS(3658), + [sym_super] = ACTIONS(3658), + [sym_true] = ACTIONS(3658), + [sym_false] = ACTIONS(3658), + [sym_null] = ACTIONS(3658), + [sym_undefined] = ACTIONS(3658), + [anon_sym_AT] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_readonly] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_declare] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_protected] = ACTIONS(3658), + [anon_sym_override] = ACTIONS(3658), + [anon_sym_module] = ACTIONS(3658), + [anon_sym_any] = ACTIONS(3658), + [anon_sym_number] = ACTIONS(3658), + [anon_sym_boolean] = ACTIONS(3658), + [anon_sym_string] = ACTIONS(3658), + [anon_sym_symbol] = ACTIONS(3658), + [anon_sym_object] = ACTIONS(3658), + [anon_sym_property] = ACTIONS(3658), + [anon_sym_signal] = ACTIONS(3658), + [anon_sym_on] = ACTIONS(3658), + [anon_sym_required] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1216] = { + [sym_comment] = STATE(1216), + [sym_identifier] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_from] = ACTIONS(3660), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_var] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_await] = ACTIONS(3660), + [anon_sym_of] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_debugger] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LTtemplate_GT] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_async] = ACTIONS(3660), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_SLASH] = ACTIONS(3660), + [anon_sym_LT] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_void] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3660), + [sym_number] = ACTIONS(3660), + [sym_private_property_identifier] = ACTIONS(3660), + [sym_this] = ACTIONS(3660), + [sym_super] = ACTIONS(3660), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_null] = ACTIONS(3660), + [sym_undefined] = ACTIONS(3660), + [anon_sym_AT] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_readonly] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(3660), + [anon_sym_set] = ACTIONS(3660), + [anon_sym_declare] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_override] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_any] = ACTIONS(3660), + [anon_sym_number] = ACTIONS(3660), + [anon_sym_boolean] = ACTIONS(3660), + [anon_sym_string] = ACTIONS(3660), + [anon_sym_symbol] = ACTIONS(3660), + [anon_sym_object] = ACTIONS(3660), + [anon_sym_property] = ACTIONS(3660), + [anon_sym_signal] = ACTIONS(3660), + [anon_sym_on] = ACTIONS(3660), + [anon_sym_required] = ACTIONS(3660), + [anon_sym_component] = ACTIONS(3660), + [anon_sym_abstract] = ACTIONS(3660), + [anon_sym_interface] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [sym_html_comment] = ACTIONS(5), + }, + [1217] = { + [sym_comment] = STATE(1217), + [sym_identifier] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_from] = ACTIONS(3660), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_var] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_await] = ACTIONS(3660), + [anon_sym_of] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_debugger] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LTtemplate_GT] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_async] = ACTIONS(3660), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_SLASH] = ACTIONS(3660), + [anon_sym_LT] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_void] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3660), + [sym_number] = ACTIONS(3660), + [sym_private_property_identifier] = ACTIONS(3660), + [sym_this] = ACTIONS(3660), + [sym_super] = ACTIONS(3660), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_null] = ACTIONS(3660), + [sym_undefined] = ACTIONS(3660), + [anon_sym_AT] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_readonly] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(3660), + [anon_sym_set] = ACTIONS(3660), + [anon_sym_declare] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_override] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_any] = ACTIONS(3660), + [anon_sym_number] = ACTIONS(3660), + [anon_sym_boolean] = ACTIONS(3660), + [anon_sym_string] = ACTIONS(3660), + [anon_sym_symbol] = ACTIONS(3660), + [anon_sym_object] = ACTIONS(3660), + [anon_sym_property] = ACTIONS(3660), + [anon_sym_signal] = ACTIONS(3660), + [anon_sym_on] = ACTIONS(3660), + [anon_sym_required] = ACTIONS(3660), + [anon_sym_component] = ACTIONS(3660), + [anon_sym_abstract] = ACTIONS(3660), + [anon_sym_interface] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [sym_html_comment] = ACTIONS(5), + }, + [1218] = { + [sym_comment] = STATE(1218), + [sym_identifier] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_default] = ACTIONS(3662), + [anon_sym_type] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_RBRACE] = ACTIONS(3662), + [anon_sym_typeof] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_from] = ACTIONS(3662), + [anon_sym_with] = ACTIONS(3662), + [anon_sym_var] = ACTIONS(3662), + [anon_sym_let] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3662), + [anon_sym_await] = ACTIONS(3662), + [anon_sym_of] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_debugger] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_case] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_LTtemplate_GT] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_async] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_void] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3662), + [sym_number] = ACTIONS(3662), + [sym_private_property_identifier] = ACTIONS(3662), + [sym_this] = ACTIONS(3662), + [sym_super] = ACTIONS(3662), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [sym_null] = ACTIONS(3662), + [sym_undefined] = ACTIONS(3662), + [anon_sym_AT] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_readonly] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(3662), + [anon_sym_set] = ACTIONS(3662), + [anon_sym_declare] = ACTIONS(3662), + [anon_sym_public] = ACTIONS(3662), + [anon_sym_private] = ACTIONS(3662), + [anon_sym_protected] = ACTIONS(3662), + [anon_sym_override] = ACTIONS(3662), + [anon_sym_module] = ACTIONS(3662), + [anon_sym_any] = ACTIONS(3662), + [anon_sym_number] = ACTIONS(3662), + [anon_sym_boolean] = ACTIONS(3662), + [anon_sym_string] = ACTIONS(3662), + [anon_sym_symbol] = ACTIONS(3662), + [anon_sym_object] = ACTIONS(3662), + [anon_sym_property] = ACTIONS(3662), + [anon_sym_signal] = ACTIONS(3662), + [anon_sym_on] = ACTIONS(3662), + [anon_sym_required] = ACTIONS(3662), + [anon_sym_component] = ACTIONS(3662), + [anon_sym_abstract] = ACTIONS(3662), + [anon_sym_interface] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [sym_html_comment] = ACTIONS(5), + }, + [1219] = { + [sym_comment] = STATE(1219), + [sym_identifier] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_type] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_typeof] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_from] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [anon_sym_var] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_await] = ACTIONS(3664), + [anon_sym_of] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_debugger] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_yield] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_LTtemplate_GT] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_async] = ACTIONS(3664), + [anon_sym_function] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_void] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3664), + [sym_number] = ACTIONS(3664), + [sym_private_property_identifier] = ACTIONS(3664), + [sym_this] = ACTIONS(3664), + [sym_super] = ACTIONS(3664), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [sym_null] = ACTIONS(3664), + [sym_undefined] = ACTIONS(3664), + [anon_sym_AT] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_readonly] = ACTIONS(3664), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3664), + [anon_sym_declare] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_override] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_any] = ACTIONS(3664), + [anon_sym_number] = ACTIONS(3664), + [anon_sym_boolean] = ACTIONS(3664), + [anon_sym_string] = ACTIONS(3664), + [anon_sym_symbol] = ACTIONS(3664), + [anon_sym_object] = ACTIONS(3664), + [anon_sym_property] = ACTIONS(3664), + [anon_sym_signal] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_required] = ACTIONS(3664), + [anon_sym_component] = ACTIONS(3664), + [anon_sym_abstract] = ACTIONS(3664), + [anon_sym_interface] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [sym_html_comment] = ACTIONS(5), + }, + [1220] = { + [sym_comment] = STATE(1220), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_default] = ACTIONS(2388), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_namespace] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_typeof] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(2388), + [anon_sym_from] = ACTIONS(2388), + [anon_sym_with] = ACTIONS(2388), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_switch] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2388), + [anon_sym_await] = ACTIONS(2388), + [anon_sym_of] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_do] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_debugger] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_throw] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2388), + [anon_sym_case] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2388), + [anon_sym_LTtemplate_GT] = ACTIONS(2388), + [anon_sym_DQUOTE] = ACTIONS(2388), + [anon_sym_SQUOTE] = ACTIONS(2388), + [anon_sym_class] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_using] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_void] = ACTIONS(2388), + [anon_sym_delete] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(2388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2388), + [sym_number] = ACTIONS(2388), + [sym_private_property_identifier] = ACTIONS(2388), + [sym_this] = ACTIONS(2388), + [sym_super] = ACTIONS(2388), + [sym_true] = ACTIONS(2388), + [sym_false] = ACTIONS(2388), + [sym_null] = ACTIONS(2388), + [sym_undefined] = ACTIONS(2388), + [anon_sym_AT] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_readonly] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_declare] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_protected] = ACTIONS(2388), + [anon_sym_override] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_any] = ACTIONS(2388), + [anon_sym_number] = ACTIONS(2388), + [anon_sym_boolean] = ACTIONS(2388), + [anon_sym_string] = ACTIONS(2388), + [anon_sym_symbol] = ACTIONS(2388), + [anon_sym_object] = ACTIONS(2388), + [anon_sym_property] = ACTIONS(2388), + [anon_sym_signal] = ACTIONS(2388), + [anon_sym_on] = ACTIONS(2388), + [anon_sym_required] = ACTIONS(2388), + [anon_sym_component] = ACTIONS(2388), + [anon_sym_abstract] = ACTIONS(2388), + [anon_sym_interface] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [sym__automatic_semicolon] = ACTIONS(2570), + [sym_html_comment] = ACTIONS(5), + }, + [1221] = { + [sym_comment] = STATE(1221), + [sym_identifier] = ACTIONS(3666), + [anon_sym_export] = ACTIONS(3666), + [anon_sym_default] = ACTIONS(3666), + [anon_sym_type] = ACTIONS(3666), + [anon_sym_namespace] = ACTIONS(3666), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_typeof] = ACTIONS(3666), + [anon_sym_import] = ACTIONS(3666), + [anon_sym_from] = ACTIONS(3666), + [anon_sym_with] = ACTIONS(3666), + [anon_sym_var] = ACTIONS(3666), + [anon_sym_let] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_else] = ACTIONS(3666), + [anon_sym_if] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_for] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_await] = ACTIONS(3666), + [anon_sym_of] = ACTIONS(3666), + [anon_sym_while] = ACTIONS(3666), + [anon_sym_do] = ACTIONS(3666), + [anon_sym_try] = ACTIONS(3666), + [anon_sym_break] = ACTIONS(3666), + [anon_sym_continue] = ACTIONS(3666), + [anon_sym_debugger] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3666), + [anon_sym_throw] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym_case] = ACTIONS(3666), + [anon_sym_yield] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_LTtemplate_GT] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_async] = ACTIONS(3666), + [anon_sym_function] = ACTIONS(3666), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_void] = ACTIONS(3666), + [anon_sym_delete] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3666), + [sym_number] = ACTIONS(3666), + [sym_private_property_identifier] = ACTIONS(3666), + [sym_this] = ACTIONS(3666), + [sym_super] = ACTIONS(3666), + [sym_true] = ACTIONS(3666), + [sym_false] = ACTIONS(3666), + [sym_null] = ACTIONS(3666), + [sym_undefined] = ACTIONS(3666), + [anon_sym_AT] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_readonly] = ACTIONS(3666), + [anon_sym_get] = ACTIONS(3666), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_declare] = ACTIONS(3666), + [anon_sym_public] = ACTIONS(3666), + [anon_sym_private] = ACTIONS(3666), + [anon_sym_protected] = ACTIONS(3666), + [anon_sym_override] = ACTIONS(3666), + [anon_sym_module] = ACTIONS(3666), + [anon_sym_any] = ACTIONS(3666), + [anon_sym_number] = ACTIONS(3666), + [anon_sym_boolean] = ACTIONS(3666), + [anon_sym_string] = ACTIONS(3666), + [anon_sym_symbol] = ACTIONS(3666), + [anon_sym_object] = ACTIONS(3666), + [anon_sym_property] = ACTIONS(3666), + [anon_sym_signal] = ACTIONS(3666), + [anon_sym_on] = ACTIONS(3666), + [anon_sym_required] = ACTIONS(3666), + [anon_sym_component] = ACTIONS(3666), + [anon_sym_abstract] = ACTIONS(3666), + [anon_sym_interface] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), + [sym_html_comment] = ACTIONS(5), + }, + [1222] = { + [sym_comment] = STATE(1222), + [sym_identifier] = ACTIONS(3668), + [anon_sym_export] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_type] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_typeof] = ACTIONS(3668), + [anon_sym_import] = ACTIONS(3668), + [anon_sym_from] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [anon_sym_var] = ACTIONS(3668), + [anon_sym_let] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_await] = ACTIONS(3668), + [anon_sym_of] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_debugger] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_yield] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_LTtemplate_GT] = ACTIONS(3668), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_async] = ACTIONS(3668), + [anon_sym_function] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_void] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3668), + [sym_number] = ACTIONS(3668), + [sym_private_property_identifier] = ACTIONS(3668), + [sym_this] = ACTIONS(3668), + [sym_super] = ACTIONS(3668), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [sym_null] = ACTIONS(3668), + [sym_undefined] = ACTIONS(3668), + [anon_sym_AT] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_readonly] = ACTIONS(3668), + [anon_sym_get] = ACTIONS(3668), + [anon_sym_set] = ACTIONS(3668), + [anon_sym_declare] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_override] = ACTIONS(3668), + [anon_sym_module] = ACTIONS(3668), + [anon_sym_any] = ACTIONS(3668), + [anon_sym_number] = ACTIONS(3668), + [anon_sym_boolean] = ACTIONS(3668), + [anon_sym_string] = ACTIONS(3668), + [anon_sym_symbol] = ACTIONS(3668), + [anon_sym_object] = ACTIONS(3668), + [anon_sym_property] = ACTIONS(3668), + [anon_sym_signal] = ACTIONS(3668), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_required] = ACTIONS(3668), + [anon_sym_component] = ACTIONS(3668), + [anon_sym_abstract] = ACTIONS(3668), + [anon_sym_interface] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [sym_html_comment] = ACTIONS(5), + }, + [1223] = { + [sym_comment] = STATE(1223), + [sym_identifier] = ACTIONS(3670), + [anon_sym_export] = ACTIONS(3670), + [anon_sym_default] = ACTIONS(3670), + [anon_sym_type] = ACTIONS(3670), + [anon_sym_namespace] = ACTIONS(3670), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_typeof] = ACTIONS(3670), + [anon_sym_import] = ACTIONS(3670), + [anon_sym_from] = ACTIONS(3670), + [anon_sym_with] = ACTIONS(3670), + [anon_sym_var] = ACTIONS(3670), + [anon_sym_let] = ACTIONS(3670), + [anon_sym_const] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_else] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_for] = ACTIONS(3670), + [anon_sym_LPAREN] = ACTIONS(3670), + [anon_sym_await] = ACTIONS(3670), + [anon_sym_of] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(3670), + [anon_sym_do] = ACTIONS(3670), + [anon_sym_try] = ACTIONS(3670), + [anon_sym_break] = ACTIONS(3670), + [anon_sym_continue] = ACTIONS(3670), + [anon_sym_debugger] = ACTIONS(3670), + [anon_sym_return] = ACTIONS(3670), + [anon_sym_throw] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym_case] = ACTIONS(3670), + [anon_sym_yield] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_LTtemplate_GT] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_class] = ACTIONS(3670), + [anon_sym_async] = ACTIONS(3670), + [anon_sym_function] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3670), + [anon_sym_using] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_void] = ACTIONS(3670), + [anon_sym_delete] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3670), + [sym_number] = ACTIONS(3670), + [sym_private_property_identifier] = ACTIONS(3670), + [sym_this] = ACTIONS(3670), + [sym_super] = ACTIONS(3670), + [sym_true] = ACTIONS(3670), + [sym_false] = ACTIONS(3670), + [sym_null] = ACTIONS(3670), + [sym_undefined] = ACTIONS(3670), + [anon_sym_AT] = ACTIONS(3670), + [anon_sym_static] = ACTIONS(3670), + [anon_sym_readonly] = ACTIONS(3670), + [anon_sym_get] = ACTIONS(3670), + [anon_sym_set] = ACTIONS(3670), + [anon_sym_declare] = ACTIONS(3670), + [anon_sym_public] = ACTIONS(3670), + [anon_sym_private] = ACTIONS(3670), + [anon_sym_protected] = ACTIONS(3670), + [anon_sym_override] = ACTIONS(3670), + [anon_sym_module] = ACTIONS(3670), + [anon_sym_any] = ACTIONS(3670), + [anon_sym_number] = ACTIONS(3670), + [anon_sym_boolean] = ACTIONS(3670), + [anon_sym_string] = ACTIONS(3670), + [anon_sym_symbol] = ACTIONS(3670), + [anon_sym_object] = ACTIONS(3670), + [anon_sym_property] = ACTIONS(3670), + [anon_sym_signal] = ACTIONS(3670), + [anon_sym_on] = ACTIONS(3670), + [anon_sym_required] = ACTIONS(3670), + [anon_sym_component] = ACTIONS(3670), + [anon_sym_abstract] = ACTIONS(3670), + [anon_sym_interface] = ACTIONS(3670), + [anon_sym_enum] = ACTIONS(3670), + [sym_html_comment] = ACTIONS(5), + }, + [1224] = { + [sym_comment] = STATE(1224), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_catch] = ACTIONS(2356), + [anon_sym_finally] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym_html_comment] = ACTIONS(5), + }, + [1225] = { + [sym_comment] = STATE(1225), + [sym_identifier] = ACTIONS(3672), + [anon_sym_export] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_type] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_typeof] = ACTIONS(3672), + [anon_sym_import] = ACTIONS(3672), + [anon_sym_from] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3672), + [anon_sym_var] = ACTIONS(3672), + [anon_sym_let] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_else] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_await] = ACTIONS(3672), + [anon_sym_of] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_debugger] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_yield] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_LTtemplate_GT] = ACTIONS(3672), + [anon_sym_DQUOTE] = ACTIONS(3672), + [anon_sym_SQUOTE] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_async] = ACTIONS(3672), + [anon_sym_function] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3672), + [anon_sym_void] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3672), + [sym_number] = ACTIONS(3672), + [sym_private_property_identifier] = ACTIONS(3672), + [sym_this] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [sym_null] = ACTIONS(3672), + [sym_undefined] = ACTIONS(3672), + [anon_sym_AT] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_readonly] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(3672), + [anon_sym_set] = ACTIONS(3672), + [anon_sym_declare] = ACTIONS(3672), + [anon_sym_public] = ACTIONS(3672), + [anon_sym_private] = ACTIONS(3672), + [anon_sym_protected] = ACTIONS(3672), + [anon_sym_override] = ACTIONS(3672), + [anon_sym_module] = ACTIONS(3672), + [anon_sym_any] = ACTIONS(3672), + [anon_sym_number] = ACTIONS(3672), + [anon_sym_boolean] = ACTIONS(3672), + [anon_sym_string] = ACTIONS(3672), + [anon_sym_symbol] = ACTIONS(3672), + [anon_sym_object] = ACTIONS(3672), + [anon_sym_property] = ACTIONS(3672), + [anon_sym_signal] = ACTIONS(3672), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_required] = ACTIONS(3672), + [anon_sym_component] = ACTIONS(3672), + [anon_sym_abstract] = ACTIONS(3672), + [anon_sym_interface] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [sym_html_comment] = ACTIONS(5), + }, + [1226] = { + [sym_comment] = STATE(1226), + [sym_identifier] = ACTIONS(3674), + [anon_sym_export] = ACTIONS(3674), + [anon_sym_default] = ACTIONS(3674), + [anon_sym_type] = ACTIONS(3674), + [anon_sym_namespace] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_typeof] = ACTIONS(3674), + [anon_sym_import] = ACTIONS(3674), + [anon_sym_from] = ACTIONS(3674), + [anon_sym_with] = ACTIONS(3674), + [anon_sym_var] = ACTIONS(3674), + [anon_sym_let] = ACTIONS(3674), + [anon_sym_const] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_else] = ACTIONS(3674), + [anon_sym_if] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_for] = ACTIONS(3674), + [anon_sym_LPAREN] = ACTIONS(3674), + [anon_sym_await] = ACTIONS(3674), + [anon_sym_of] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_do] = ACTIONS(3674), + [anon_sym_try] = ACTIONS(3674), + [anon_sym_break] = ACTIONS(3674), + [anon_sym_continue] = ACTIONS(3674), + [anon_sym_debugger] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3674), + [anon_sym_throw] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_case] = ACTIONS(3674), + [anon_sym_yield] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_LTtemplate_GT] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_class] = ACTIONS(3674), + [anon_sym_async] = ACTIONS(3674), + [anon_sym_function] = ACTIONS(3674), + [anon_sym_new] = ACTIONS(3674), + [anon_sym_using] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_void] = ACTIONS(3674), + [anon_sym_delete] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3674), + [sym_number] = ACTIONS(3674), + [sym_private_property_identifier] = ACTIONS(3674), + [sym_this] = ACTIONS(3674), + [sym_super] = ACTIONS(3674), + [sym_true] = ACTIONS(3674), + [sym_false] = ACTIONS(3674), + [sym_null] = ACTIONS(3674), + [sym_undefined] = ACTIONS(3674), + [anon_sym_AT] = ACTIONS(3674), + [anon_sym_static] = ACTIONS(3674), + [anon_sym_readonly] = ACTIONS(3674), + [anon_sym_get] = ACTIONS(3674), + [anon_sym_set] = ACTIONS(3674), + [anon_sym_declare] = ACTIONS(3674), + [anon_sym_public] = ACTIONS(3674), + [anon_sym_private] = ACTIONS(3674), + [anon_sym_protected] = ACTIONS(3674), + [anon_sym_override] = ACTIONS(3674), + [anon_sym_module] = ACTIONS(3674), + [anon_sym_any] = ACTIONS(3674), + [anon_sym_number] = ACTIONS(3674), + [anon_sym_boolean] = ACTIONS(3674), + [anon_sym_string] = ACTIONS(3674), + [anon_sym_symbol] = ACTIONS(3674), + [anon_sym_object] = ACTIONS(3674), + [anon_sym_property] = ACTIONS(3674), + [anon_sym_signal] = ACTIONS(3674), + [anon_sym_on] = ACTIONS(3674), + [anon_sym_required] = ACTIONS(3674), + [anon_sym_component] = ACTIONS(3674), + [anon_sym_abstract] = ACTIONS(3674), + [anon_sym_interface] = ACTIONS(3674), + [anon_sym_enum] = ACTIONS(3674), + [sym_html_comment] = ACTIONS(5), + }, + [1227] = { + [sym_comment] = STATE(1227), + [sym_identifier] = ACTIONS(3676), + [anon_sym_export] = ACTIONS(3676), + [anon_sym_default] = ACTIONS(3676), + [anon_sym_type] = ACTIONS(3676), + [anon_sym_namespace] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_typeof] = ACTIONS(3676), + [anon_sym_import] = ACTIONS(3676), + [anon_sym_from] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3676), + [anon_sym_var] = ACTIONS(3676), + [anon_sym_let] = ACTIONS(3676), + [anon_sym_const] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3676), + [anon_sym_else] = ACTIONS(3676), + [anon_sym_if] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_for] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_await] = ACTIONS(3676), + [anon_sym_of] = ACTIONS(3676), + [anon_sym_while] = ACTIONS(3676), + [anon_sym_do] = ACTIONS(3676), + [anon_sym_try] = ACTIONS(3676), + [anon_sym_break] = ACTIONS(3676), + [anon_sym_continue] = ACTIONS(3676), + [anon_sym_debugger] = ACTIONS(3676), + [anon_sym_return] = ACTIONS(3676), + [anon_sym_throw] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym_case] = ACTIONS(3676), + [anon_sym_yield] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_LTtemplate_GT] = ACTIONS(3676), + [anon_sym_DQUOTE] = ACTIONS(3676), + [anon_sym_SQUOTE] = ACTIONS(3676), + [anon_sym_class] = ACTIONS(3676), + [anon_sym_async] = ACTIONS(3676), + [anon_sym_function] = ACTIONS(3676), + [anon_sym_new] = ACTIONS(3676), + [anon_sym_using] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(3676), + [anon_sym_SLASH] = ACTIONS(3676), + [anon_sym_LT] = ACTIONS(3676), + [anon_sym_TILDE] = ACTIONS(3676), + [anon_sym_void] = ACTIONS(3676), + [anon_sym_delete] = ACTIONS(3676), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3676), + [sym_private_property_identifier] = ACTIONS(3676), + [sym_this] = ACTIONS(3676), + [sym_super] = ACTIONS(3676), + [sym_true] = ACTIONS(3676), + [sym_false] = ACTIONS(3676), + [sym_null] = ACTIONS(3676), + [sym_undefined] = ACTIONS(3676), + [anon_sym_AT] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3676), + [anon_sym_readonly] = ACTIONS(3676), + [anon_sym_get] = ACTIONS(3676), + [anon_sym_set] = ACTIONS(3676), + [anon_sym_declare] = ACTIONS(3676), + [anon_sym_public] = ACTIONS(3676), + [anon_sym_private] = ACTIONS(3676), + [anon_sym_protected] = ACTIONS(3676), + [anon_sym_override] = ACTIONS(3676), + [anon_sym_module] = ACTIONS(3676), + [anon_sym_any] = ACTIONS(3676), + [anon_sym_number] = ACTIONS(3676), + [anon_sym_boolean] = ACTIONS(3676), + [anon_sym_string] = ACTIONS(3676), + [anon_sym_symbol] = ACTIONS(3676), + [anon_sym_object] = ACTIONS(3676), + [anon_sym_property] = ACTIONS(3676), + [anon_sym_signal] = ACTIONS(3676), + [anon_sym_on] = ACTIONS(3676), + [anon_sym_required] = ACTIONS(3676), + [anon_sym_component] = ACTIONS(3676), + [anon_sym_abstract] = ACTIONS(3676), + [anon_sym_interface] = ACTIONS(3676), + [anon_sym_enum] = ACTIONS(3676), + [sym_html_comment] = ACTIONS(5), + }, + [1228] = { + [sym_comment] = STATE(1228), + [sym_identifier] = ACTIONS(3678), + [anon_sym_export] = ACTIONS(3678), + [anon_sym_default] = ACTIONS(3678), + [anon_sym_type] = ACTIONS(3678), + [anon_sym_namespace] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_typeof] = ACTIONS(3678), + [anon_sym_import] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_with] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_else] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_await] = ACTIONS(3678), + [anon_sym_of] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_debugger] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_throw] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_case] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_LTtemplate_GT] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [anon_sym_SQUOTE] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_async] = ACTIONS(3678), + [anon_sym_function] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_void] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3678), + [sym_number] = ACTIONS(3678), + [sym_private_property_identifier] = ACTIONS(3678), + [sym_this] = ACTIONS(3678), + [sym_super] = ACTIONS(3678), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_AT] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3678), + [anon_sym_get] = ACTIONS(3678), + [anon_sym_set] = ACTIONS(3678), + [anon_sym_declare] = ACTIONS(3678), + [anon_sym_public] = ACTIONS(3678), + [anon_sym_private] = ACTIONS(3678), + [anon_sym_protected] = ACTIONS(3678), + [anon_sym_override] = ACTIONS(3678), + [anon_sym_module] = ACTIONS(3678), + [anon_sym_any] = ACTIONS(3678), + [anon_sym_number] = ACTIONS(3678), + [anon_sym_boolean] = ACTIONS(3678), + [anon_sym_string] = ACTIONS(3678), + [anon_sym_symbol] = ACTIONS(3678), + [anon_sym_object] = ACTIONS(3678), + [anon_sym_property] = ACTIONS(3678), + [anon_sym_signal] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_required] = ACTIONS(3678), + [anon_sym_component] = ACTIONS(3678), + [anon_sym_abstract] = ACTIONS(3678), + [anon_sym_interface] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), + [sym_html_comment] = ACTIONS(5), + }, + [1229] = { + [sym_comment] = STATE(1229), + [sym_identifier] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_default] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_typeof] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_from] = ACTIONS(3646), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_var] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_else] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_await] = ACTIONS(3646), + [anon_sym_of] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_debugger] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_case] = ACTIONS(3646), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LTtemplate_GT] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_async] = ACTIONS(3646), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_SLASH] = ACTIONS(3646), + [anon_sym_LT] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_void] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3646), + [sym_number] = ACTIONS(3646), + [sym_private_property_identifier] = ACTIONS(3646), + [sym_this] = ACTIONS(3646), + [sym_super] = ACTIONS(3646), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [sym_null] = ACTIONS(3646), + [sym_undefined] = ACTIONS(3646), + [anon_sym_AT] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_readonly] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(3646), + [anon_sym_set] = ACTIONS(3646), + [anon_sym_declare] = ACTIONS(3646), + [anon_sym_public] = ACTIONS(3646), + [anon_sym_private] = ACTIONS(3646), + [anon_sym_protected] = ACTIONS(3646), + [anon_sym_override] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_any] = ACTIONS(3646), + [anon_sym_number] = ACTIONS(3646), + [anon_sym_boolean] = ACTIONS(3646), + [anon_sym_string] = ACTIONS(3646), + [anon_sym_symbol] = ACTIONS(3646), + [anon_sym_object] = ACTIONS(3646), + [anon_sym_property] = ACTIONS(3646), + [anon_sym_signal] = ACTIONS(3646), + [anon_sym_on] = ACTIONS(3646), + [anon_sym_required] = ACTIONS(3646), + [anon_sym_component] = ACTIONS(3646), + [anon_sym_abstract] = ACTIONS(3646), + [anon_sym_interface] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), + [sym_html_comment] = ACTIONS(5), + }, + [1230] = { + [sym_comment] = STATE(1230), + [sym_identifier] = ACTIONS(3680), + [anon_sym_export] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_type] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_typeof] = ACTIONS(3680), + [anon_sym_import] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_await] = ACTIONS(3680), + [anon_sym_of] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_debugger] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LTtemplate_GT] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_async] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_void] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3680), + [sym_number] = ACTIONS(3680), + [sym_private_property_identifier] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [sym_super] = ACTIONS(3680), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [sym_null] = ACTIONS(3680), + [sym_undefined] = ACTIONS(3680), + [anon_sym_AT] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_readonly] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(3680), + [anon_sym_set] = ACTIONS(3680), + [anon_sym_declare] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_override] = ACTIONS(3680), + [anon_sym_module] = ACTIONS(3680), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_property] = ACTIONS(3680), + [anon_sym_signal] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_required] = ACTIONS(3680), + [anon_sym_component] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3680), + [anon_sym_interface] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [sym_html_comment] = ACTIONS(5), + }, + [1231] = { + [sym_comment] = STATE(1231), + [sym_identifier] = ACTIONS(3682), + [anon_sym_export] = ACTIONS(3682), + [anon_sym_default] = ACTIONS(3682), + [anon_sym_type] = ACTIONS(3682), + [anon_sym_namespace] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym_typeof] = ACTIONS(3682), + [anon_sym_import] = ACTIONS(3682), + [anon_sym_from] = ACTIONS(3682), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_var] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_else] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_switch] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_await] = ACTIONS(3682), + [anon_sym_of] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_break] = ACTIONS(3682), + [anon_sym_continue] = ACTIONS(3682), + [anon_sym_debugger] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_throw] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym_case] = ACTIONS(3682), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LTtemplate_GT] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_class] = ACTIONS(3682), + [anon_sym_async] = ACTIONS(3682), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_SLASH] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_void] = ACTIONS(3682), + [anon_sym_delete] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3682), + [sym_private_property_identifier] = ACTIONS(3682), + [sym_this] = ACTIONS(3682), + [sym_super] = ACTIONS(3682), + [sym_true] = ACTIONS(3682), + [sym_false] = ACTIONS(3682), + [sym_null] = ACTIONS(3682), + [sym_undefined] = ACTIONS(3682), + [anon_sym_AT] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_get] = ACTIONS(3682), + [anon_sym_set] = ACTIONS(3682), + [anon_sym_declare] = ACTIONS(3682), + [anon_sym_public] = ACTIONS(3682), + [anon_sym_private] = ACTIONS(3682), + [anon_sym_protected] = ACTIONS(3682), + [anon_sym_override] = ACTIONS(3682), + [anon_sym_module] = ACTIONS(3682), + [anon_sym_any] = ACTIONS(3682), + [anon_sym_number] = ACTIONS(3682), + [anon_sym_boolean] = ACTIONS(3682), + [anon_sym_string] = ACTIONS(3682), + [anon_sym_symbol] = ACTIONS(3682), + [anon_sym_object] = ACTIONS(3682), + [anon_sym_property] = ACTIONS(3682), + [anon_sym_signal] = ACTIONS(3682), + [anon_sym_on] = ACTIONS(3682), + [anon_sym_required] = ACTIONS(3682), + [anon_sym_component] = ACTIONS(3682), + [anon_sym_abstract] = ACTIONS(3682), + [anon_sym_interface] = ACTIONS(3682), + [anon_sym_enum] = ACTIONS(3682), + [sym_html_comment] = ACTIONS(5), + }, + [1232] = { + [sym_comment] = STATE(1232), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_default] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_typeof] = ACTIONS(2414), + [anon_sym_import] = ACTIONS(2414), + [anon_sym_from] = ACTIONS(2414), + [anon_sym_with] = ACTIONS(2414), + [anon_sym_var] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_switch] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_await] = ACTIONS(2414), + [anon_sym_of] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_debugger] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_throw] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_case] = ACTIONS(2414), + [anon_sym_yield] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_LTtemplate_GT] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_class] = ACTIONS(2414), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2414), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_using] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_void] = ACTIONS(2414), + [anon_sym_delete] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2414), + [sym_number] = ACTIONS(2414), + [sym_private_property_identifier] = ACTIONS(2414), + [sym_this] = ACTIONS(2414), + [sym_super] = ACTIONS(2414), + [sym_true] = ACTIONS(2414), + [sym_false] = ACTIONS(2414), + [sym_null] = ACTIONS(2414), + [sym_undefined] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_property] = ACTIONS(2414), + [anon_sym_signal] = ACTIONS(2414), + [anon_sym_on] = ACTIONS(2414), + [anon_sym_required] = ACTIONS(2414), + [anon_sym_component] = ACTIONS(2414), + [anon_sym_abstract] = ACTIONS(2414), + [anon_sym_interface] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [sym_html_comment] = ACTIONS(5), + }, + [1233] = { + [sym_comment] = STATE(1233), + [sym_identifier] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_type] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_typeof] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_from] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3684), + [anon_sym_var] = ACTIONS(3684), + [anon_sym_let] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_else] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3684), + [anon_sym_await] = ACTIONS(3684), + [anon_sym_of] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_debugger] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_LTtemplate_GT] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_async] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_void] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3684), + [sym_number] = ACTIONS(3684), + [sym_private_property_identifier] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [sym_super] = ACTIONS(3684), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_AT] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(3684), + [anon_sym_set] = ACTIONS(3684), + [anon_sym_declare] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_any] = ACTIONS(3684), + [anon_sym_number] = ACTIONS(3684), + [anon_sym_boolean] = ACTIONS(3684), + [anon_sym_string] = ACTIONS(3684), + [anon_sym_symbol] = ACTIONS(3684), + [anon_sym_object] = ACTIONS(3684), + [anon_sym_property] = ACTIONS(3684), + [anon_sym_signal] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3684), + [anon_sym_required] = ACTIONS(3684), + [anon_sym_component] = ACTIONS(3684), + [anon_sym_abstract] = ACTIONS(3684), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [sym_html_comment] = ACTIONS(5), + }, + [1234] = { + [sym_comment] = STATE(1234), + [sym_identifier] = ACTIONS(3686), + [anon_sym_export] = ACTIONS(3686), + [anon_sym_default] = ACTIONS(3686), + [anon_sym_type] = ACTIONS(3686), + [anon_sym_namespace] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_typeof] = ACTIONS(3686), + [anon_sym_import] = ACTIONS(3686), + [anon_sym_from] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [anon_sym_var] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_const] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_else] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_await] = ACTIONS(3686), + [anon_sym_of] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_break] = ACTIONS(3686), + [anon_sym_continue] = ACTIONS(3686), + [anon_sym_debugger] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_throw] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_case] = ACTIONS(3686), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LTtemplate_GT] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_class] = ACTIONS(3686), + [anon_sym_async] = ACTIONS(3686), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_using] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_void] = ACTIONS(3686), + [anon_sym_delete] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3686), + [sym_number] = ACTIONS(3686), + [sym_private_property_identifier] = ACTIONS(3686), + [sym_this] = ACTIONS(3686), + [sym_super] = ACTIONS(3686), + [sym_true] = ACTIONS(3686), + [sym_false] = ACTIONS(3686), + [sym_null] = ACTIONS(3686), + [sym_undefined] = ACTIONS(3686), + [anon_sym_AT] = ACTIONS(3686), + [anon_sym_static] = ACTIONS(3686), + [anon_sym_readonly] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(3686), + [anon_sym_set] = ACTIONS(3686), + [anon_sym_declare] = ACTIONS(3686), + [anon_sym_public] = ACTIONS(3686), + [anon_sym_private] = ACTIONS(3686), + [anon_sym_protected] = ACTIONS(3686), + [anon_sym_override] = ACTIONS(3686), + [anon_sym_module] = ACTIONS(3686), + [anon_sym_any] = ACTIONS(3686), + [anon_sym_number] = ACTIONS(3686), + [anon_sym_boolean] = ACTIONS(3686), + [anon_sym_string] = ACTIONS(3686), + [anon_sym_symbol] = ACTIONS(3686), + [anon_sym_object] = ACTIONS(3686), + [anon_sym_property] = ACTIONS(3686), + [anon_sym_signal] = ACTIONS(3686), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_required] = ACTIONS(3686), + [anon_sym_component] = ACTIONS(3686), + [anon_sym_abstract] = ACTIONS(3686), + [anon_sym_interface] = ACTIONS(3686), + [anon_sym_enum] = ACTIONS(3686), + [sym_html_comment] = ACTIONS(5), + }, + [1235] = { + [sym_comment] = STATE(1235), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1236] = { + [sym_comment] = STATE(1236), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1237] = { + [sym_comment] = STATE(1237), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1238] = { + [sym_comment] = STATE(1238), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1239] = { + [sym_comment] = STATE(1239), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1240] = { + [sym_comment] = STATE(1240), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1241] = { + [sym_comment] = STATE(1241), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1242] = { + [sym_comment] = STATE(1242), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1243] = { + [sym_comment] = STATE(1243), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1244] = { + [sym_comment] = STATE(1244), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1245] = { + [sym_comment] = STATE(1245), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1246] = { + [sym_comment] = STATE(1246), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1247] = { + [sym_comment] = STATE(1247), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1248] = { + [sym_comment] = STATE(1248), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1249] = { + [sym_comment] = STATE(1249), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1250] = { + [sym_comment] = STATE(1250), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1251] = { + [sym_comment] = STATE(1251), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1252] = { + [sym_comment] = STATE(1252), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1253] = { + [sym_comment] = STATE(1253), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3688), + [sym_html_comment] = ACTIONS(5), + }, + [1254] = { + [sym_comment] = STATE(1254), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1255] = { + [sym_comment] = STATE(1255), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1256] = { + [sym_comment] = STATE(1256), + [sym_identifier] = ACTIONS(3484), + [anon_sym_export] = ACTIONS(3484), + [anon_sym_default] = ACTIONS(3484), + [anon_sym_type] = ACTIONS(3484), + [anon_sym_namespace] = ACTIONS(3484), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_RBRACE] = ACTIONS(3484), + [anon_sym_typeof] = ACTIONS(3484), + [anon_sym_import] = ACTIONS(3484), + [anon_sym_from] = ACTIONS(3484), + [anon_sym_with] = ACTIONS(3484), + [anon_sym_var] = ACTIONS(3484), + [anon_sym_let] = ACTIONS(3484), + [anon_sym_const] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_if] = ACTIONS(3484), + [anon_sym_switch] = ACTIONS(3484), + [anon_sym_for] = ACTIONS(3484), + [anon_sym_LPAREN] = ACTIONS(3484), + [anon_sym_await] = ACTIONS(3484), + [anon_sym_of] = ACTIONS(3484), + [anon_sym_while] = ACTIONS(3484), + [anon_sym_do] = ACTIONS(3484), + [anon_sym_try] = ACTIONS(3484), + [anon_sym_break] = ACTIONS(3484), + [anon_sym_continue] = ACTIONS(3484), + [anon_sym_debugger] = ACTIONS(3484), + [anon_sym_return] = ACTIONS(3484), + [anon_sym_throw] = ACTIONS(3484), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_case] = ACTIONS(3484), + [anon_sym_yield] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3484), + [anon_sym_LTtemplate_GT] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3484), + [anon_sym_class] = ACTIONS(3484), + [anon_sym_async] = ACTIONS(3484), + [anon_sym_function] = ACTIONS(3484), + [anon_sym_new] = ACTIONS(3484), + [anon_sym_using] = ACTIONS(3484), + [anon_sym_PLUS] = ACTIONS(3484), + [anon_sym_DASH] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3484), + [anon_sym_LT] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_void] = ACTIONS(3484), + [anon_sym_delete] = ACTIONS(3484), + [anon_sym_PLUS_PLUS] = ACTIONS(3484), + [anon_sym_DASH_DASH] = ACTIONS(3484), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3484), + [sym_number] = ACTIONS(3484), + [sym_private_property_identifier] = ACTIONS(3484), + [sym_this] = ACTIONS(3484), + [sym_super] = ACTIONS(3484), + [sym_true] = ACTIONS(3484), + [sym_false] = ACTIONS(3484), + [sym_null] = ACTIONS(3484), + [sym_undefined] = ACTIONS(3484), + [anon_sym_AT] = ACTIONS(3484), + [anon_sym_static] = ACTIONS(3484), + [anon_sym_readonly] = ACTIONS(3484), + [anon_sym_get] = ACTIONS(3484), + [anon_sym_set] = ACTIONS(3484), + [anon_sym_declare] = ACTIONS(3484), + [anon_sym_public] = ACTIONS(3484), + [anon_sym_private] = ACTIONS(3484), + [anon_sym_protected] = ACTIONS(3484), + [anon_sym_override] = ACTIONS(3484), + [anon_sym_module] = ACTIONS(3484), + [anon_sym_any] = ACTIONS(3484), + [anon_sym_number] = ACTIONS(3484), + [anon_sym_boolean] = ACTIONS(3484), + [anon_sym_string] = ACTIONS(3484), + [anon_sym_symbol] = ACTIONS(3484), + [anon_sym_object] = ACTIONS(3484), + [anon_sym_property] = ACTIONS(3484), + [anon_sym_signal] = ACTIONS(3484), + [anon_sym_on] = ACTIONS(3484), + [anon_sym_required] = ACTIONS(3484), + [anon_sym_component] = ACTIONS(3484), + [anon_sym_abstract] = ACTIONS(3484), + [anon_sym_interface] = ACTIONS(3484), + [anon_sym_enum] = ACTIONS(3484), + [sym_html_comment] = ACTIONS(5), + }, + [1257] = { + [sym_comment] = STATE(1257), + [sym_identifier] = ACTIONS(3486), + [anon_sym_export] = ACTIONS(3486), + [anon_sym_default] = ACTIONS(3486), + [anon_sym_type] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3486), + [anon_sym_RBRACE] = ACTIONS(3486), + [anon_sym_typeof] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_from] = ACTIONS(3486), + [anon_sym_with] = ACTIONS(3486), + [anon_sym_var] = ACTIONS(3486), + [anon_sym_let] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_BANG] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_await] = ACTIONS(3486), + [anon_sym_of] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_debugger] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3486), + [anon_sym_case] = ACTIONS(3486), + [anon_sym_yield] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_LTtemplate_GT] = ACTIONS(3486), + [anon_sym_DQUOTE] = ACTIONS(3486), + [anon_sym_SQUOTE] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_async] = ACTIONS(3486), + [anon_sym_function] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_using] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_SLASH] = ACTIONS(3486), + [anon_sym_LT] = ACTIONS(3486), + [anon_sym_TILDE] = ACTIONS(3486), + [anon_sym_void] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_PLUS_PLUS] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3486), + [sym_number] = ACTIONS(3486), + [sym_private_property_identifier] = ACTIONS(3486), + [sym_this] = ACTIONS(3486), + [sym_super] = ACTIONS(3486), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [sym_null] = ACTIONS(3486), + [sym_undefined] = ACTIONS(3486), + [anon_sym_AT] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_readonly] = ACTIONS(3486), + [anon_sym_get] = ACTIONS(3486), + [anon_sym_set] = ACTIONS(3486), + [anon_sym_declare] = ACTIONS(3486), + [anon_sym_public] = ACTIONS(3486), + [anon_sym_private] = ACTIONS(3486), + [anon_sym_protected] = ACTIONS(3486), + [anon_sym_override] = ACTIONS(3486), + [anon_sym_module] = ACTIONS(3486), + [anon_sym_any] = ACTIONS(3486), + [anon_sym_number] = ACTIONS(3486), + [anon_sym_boolean] = ACTIONS(3486), + [anon_sym_string] = ACTIONS(3486), + [anon_sym_symbol] = ACTIONS(3486), + [anon_sym_object] = ACTIONS(3486), + [anon_sym_property] = ACTIONS(3486), + [anon_sym_signal] = ACTIONS(3486), + [anon_sym_on] = ACTIONS(3486), + [anon_sym_required] = ACTIONS(3486), + [anon_sym_component] = ACTIONS(3486), + [anon_sym_abstract] = ACTIONS(3486), + [anon_sym_interface] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), + [sym_html_comment] = ACTIONS(5), + }, + [1258] = { + [sym_comment] = STATE(1258), + [sym_identifier] = ACTIONS(3510), + [anon_sym_export] = ACTIONS(3510), + [anon_sym_default] = ACTIONS(3510), + [anon_sym_type] = ACTIONS(3510), + [anon_sym_namespace] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(3510), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_typeof] = ACTIONS(3510), + [anon_sym_import] = ACTIONS(3510), + [anon_sym_from] = ACTIONS(3510), + [anon_sym_with] = ACTIONS(3510), + [anon_sym_var] = ACTIONS(3510), + [anon_sym_let] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3510), + [anon_sym_switch] = ACTIONS(3510), + [anon_sym_for] = ACTIONS(3510), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_await] = ACTIONS(3510), + [anon_sym_of] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(3510), + [anon_sym_do] = ACTIONS(3510), + [anon_sym_try] = ACTIONS(3510), + [anon_sym_break] = ACTIONS(3510), + [anon_sym_continue] = ACTIONS(3510), + [anon_sym_debugger] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3510), + [anon_sym_throw] = ACTIONS(3510), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_case] = ACTIONS(3510), + [anon_sym_yield] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_LTtemplate_GT] = ACTIONS(3510), + [anon_sym_DQUOTE] = ACTIONS(3510), + [anon_sym_SQUOTE] = ACTIONS(3510), + [anon_sym_class] = ACTIONS(3510), + [anon_sym_async] = ACTIONS(3510), + [anon_sym_function] = ACTIONS(3510), + [anon_sym_new] = ACTIONS(3510), + [anon_sym_using] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3510), + [anon_sym_DASH] = ACTIONS(3510), + [anon_sym_SLASH] = ACTIONS(3510), + [anon_sym_LT] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(3510), + [anon_sym_void] = ACTIONS(3510), + [anon_sym_delete] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3510), + [sym_number] = ACTIONS(3510), + [sym_private_property_identifier] = ACTIONS(3510), + [sym_this] = ACTIONS(3510), + [sym_super] = ACTIONS(3510), + [sym_true] = ACTIONS(3510), + [sym_false] = ACTIONS(3510), + [sym_null] = ACTIONS(3510), + [sym_undefined] = ACTIONS(3510), + [anon_sym_AT] = ACTIONS(3510), + [anon_sym_static] = ACTIONS(3510), + [anon_sym_readonly] = ACTIONS(3510), + [anon_sym_get] = ACTIONS(3510), + [anon_sym_set] = ACTIONS(3510), + [anon_sym_declare] = ACTIONS(3510), + [anon_sym_public] = ACTIONS(3510), + [anon_sym_private] = ACTIONS(3510), + [anon_sym_protected] = ACTIONS(3510), + [anon_sym_override] = ACTIONS(3510), + [anon_sym_module] = ACTIONS(3510), + [anon_sym_any] = ACTIONS(3510), + [anon_sym_number] = ACTIONS(3510), + [anon_sym_boolean] = ACTIONS(3510), + [anon_sym_string] = ACTIONS(3510), + [anon_sym_symbol] = ACTIONS(3510), + [anon_sym_object] = ACTIONS(3510), + [anon_sym_property] = ACTIONS(3510), + [anon_sym_signal] = ACTIONS(3510), + [anon_sym_on] = ACTIONS(3510), + [anon_sym_required] = ACTIONS(3510), + [anon_sym_component] = ACTIONS(3510), + [anon_sym_abstract] = ACTIONS(3510), + [anon_sym_interface] = ACTIONS(3510), + [anon_sym_enum] = ACTIONS(3510), + [sym_html_comment] = ACTIONS(5), + }, + [1259] = { + [sym_comment] = STATE(1259), + [sym_identifier] = ACTIONS(3498), + [anon_sym_export] = ACTIONS(3498), + [anon_sym_default] = ACTIONS(3498), + [anon_sym_type] = ACTIONS(3498), + [anon_sym_namespace] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3498), + [anon_sym_RBRACE] = ACTIONS(3498), + [anon_sym_typeof] = ACTIONS(3498), + [anon_sym_import] = ACTIONS(3498), + [anon_sym_from] = ACTIONS(3498), + [anon_sym_with] = ACTIONS(3498), + [anon_sym_var] = ACTIONS(3498), + [anon_sym_let] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(3498), + [anon_sym_BANG] = ACTIONS(3498), + [anon_sym_if] = ACTIONS(3498), + [anon_sym_switch] = ACTIONS(3498), + [anon_sym_for] = ACTIONS(3498), + [anon_sym_LPAREN] = ACTIONS(3498), + [anon_sym_await] = ACTIONS(3498), + [anon_sym_of] = ACTIONS(3498), + [anon_sym_while] = ACTIONS(3498), + [anon_sym_do] = ACTIONS(3498), + [anon_sym_try] = ACTIONS(3498), + [anon_sym_break] = ACTIONS(3498), + [anon_sym_continue] = ACTIONS(3498), + [anon_sym_debugger] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3498), + [anon_sym_throw] = ACTIONS(3498), + [anon_sym_SEMI] = ACTIONS(3498), + [anon_sym_case] = ACTIONS(3498), + [anon_sym_yield] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3498), + [anon_sym_LTtemplate_GT] = ACTIONS(3498), + [anon_sym_DQUOTE] = ACTIONS(3498), + [anon_sym_SQUOTE] = ACTIONS(3498), + [anon_sym_class] = ACTIONS(3498), + [anon_sym_async] = ACTIONS(3498), + [anon_sym_function] = ACTIONS(3498), + [anon_sym_new] = ACTIONS(3498), + [anon_sym_using] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_SLASH] = ACTIONS(3498), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_TILDE] = ACTIONS(3498), + [anon_sym_void] = ACTIONS(3498), + [anon_sym_delete] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3498), + [sym_number] = ACTIONS(3498), + [sym_private_property_identifier] = ACTIONS(3498), + [sym_this] = ACTIONS(3498), + [sym_super] = ACTIONS(3498), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [sym_null] = ACTIONS(3498), + [sym_undefined] = ACTIONS(3498), + [anon_sym_AT] = ACTIONS(3498), + [anon_sym_static] = ACTIONS(3498), + [anon_sym_readonly] = ACTIONS(3498), + [anon_sym_get] = ACTIONS(3498), + [anon_sym_set] = ACTIONS(3498), + [anon_sym_declare] = ACTIONS(3498), + [anon_sym_public] = ACTIONS(3498), + [anon_sym_private] = ACTIONS(3498), + [anon_sym_protected] = ACTIONS(3498), + [anon_sym_override] = ACTIONS(3498), + [anon_sym_module] = ACTIONS(3498), + [anon_sym_any] = ACTIONS(3498), + [anon_sym_number] = ACTIONS(3498), + [anon_sym_boolean] = ACTIONS(3498), + [anon_sym_string] = ACTIONS(3498), + [anon_sym_symbol] = ACTIONS(3498), + [anon_sym_object] = ACTIONS(3498), + [anon_sym_property] = ACTIONS(3498), + [anon_sym_signal] = ACTIONS(3498), + [anon_sym_on] = ACTIONS(3498), + [anon_sym_required] = ACTIONS(3498), + [anon_sym_component] = ACTIONS(3498), + [anon_sym_abstract] = ACTIONS(3498), + [anon_sym_interface] = ACTIONS(3498), + [anon_sym_enum] = ACTIONS(3498), + [sym_html_comment] = ACTIONS(5), + }, + [1260] = { + [sym_comment] = STATE(1260), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1261] = { + [sym_comment] = STATE(1261), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1262] = { + [sym_comment] = STATE(1262), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), + }, + [1263] = { + [sym_comment] = STATE(1263), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1264] = { + [sym_comment] = STATE(1264), + [sym_identifier] = ACTIONS(3546), + [anon_sym_export] = ACTIONS(3546), + [anon_sym_default] = ACTIONS(3546), + [anon_sym_type] = ACTIONS(3546), + [anon_sym_namespace] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym_typeof] = ACTIONS(3546), + [anon_sym_import] = ACTIONS(3546), + [anon_sym_from] = ACTIONS(3546), + [anon_sym_with] = ACTIONS(3546), + [anon_sym_var] = ACTIONS(3546), + [anon_sym_let] = ACTIONS(3546), + [anon_sym_const] = ACTIONS(3546), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_if] = ACTIONS(3546), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3546), + [anon_sym_await] = ACTIONS(3546), + [anon_sym_of] = ACTIONS(3546), + [anon_sym_while] = ACTIONS(3546), + [anon_sym_do] = ACTIONS(3546), + [anon_sym_try] = ACTIONS(3546), + [anon_sym_break] = ACTIONS(3546), + [anon_sym_continue] = ACTIONS(3546), + [anon_sym_debugger] = ACTIONS(3546), + [anon_sym_return] = ACTIONS(3546), + [anon_sym_throw] = ACTIONS(3546), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_LTtemplate_GT] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [anon_sym_SQUOTE] = ACTIONS(3546), + [anon_sym_class] = ACTIONS(3546), + [anon_sym_async] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3546), + [anon_sym_using] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3546), + [anon_sym_DASH] = ACTIONS(3546), + [anon_sym_SLASH] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_void] = ACTIONS(3546), + [anon_sym_delete] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3546), + [sym_number] = ACTIONS(3546), + [sym_private_property_identifier] = ACTIONS(3546), + [sym_this] = ACTIONS(3546), + [sym_super] = ACTIONS(3546), + [sym_true] = ACTIONS(3546), + [sym_false] = ACTIONS(3546), + [sym_null] = ACTIONS(3546), + [sym_undefined] = ACTIONS(3546), + [anon_sym_AT] = ACTIONS(3546), + [anon_sym_static] = ACTIONS(3546), + [anon_sym_readonly] = ACTIONS(3546), + [anon_sym_get] = ACTIONS(3546), + [anon_sym_set] = ACTIONS(3546), + [anon_sym_declare] = ACTIONS(3546), + [anon_sym_public] = ACTIONS(3546), + [anon_sym_private] = ACTIONS(3546), + [anon_sym_protected] = ACTIONS(3546), + [anon_sym_override] = ACTIONS(3546), + [anon_sym_module] = ACTIONS(3546), + [anon_sym_any] = ACTIONS(3546), + [anon_sym_number] = ACTIONS(3546), + [anon_sym_boolean] = ACTIONS(3546), + [anon_sym_string] = ACTIONS(3546), + [anon_sym_symbol] = ACTIONS(3546), + [anon_sym_object] = ACTIONS(3546), + [anon_sym_property] = ACTIONS(3546), + [anon_sym_signal] = ACTIONS(3546), + [anon_sym_on] = ACTIONS(3546), + [anon_sym_required] = ACTIONS(3546), + [anon_sym_component] = ACTIONS(3546), + [anon_sym_abstract] = ACTIONS(3546), + [anon_sym_interface] = ACTIONS(3546), + [anon_sym_enum] = ACTIONS(3546), + [sym_html_comment] = ACTIONS(5), + }, + [1265] = { + [sym_comment] = STATE(1265), + [sym_identifier] = ACTIONS(3530), + [anon_sym_export] = ACTIONS(3530), + [anon_sym_default] = ACTIONS(3530), + [anon_sym_type] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(3530), + [anon_sym_LBRACE] = ACTIONS(3530), + [anon_sym_RBRACE] = ACTIONS(3530), + [anon_sym_typeof] = ACTIONS(3530), + [anon_sym_import] = ACTIONS(3530), + [anon_sym_from] = ACTIONS(3530), + [anon_sym_with] = ACTIONS(3530), + [anon_sym_var] = ACTIONS(3530), + [anon_sym_let] = ACTIONS(3530), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_BANG] = ACTIONS(3530), + [anon_sym_if] = ACTIONS(3530), + [anon_sym_switch] = ACTIONS(3530), + [anon_sym_for] = ACTIONS(3530), + [anon_sym_LPAREN] = ACTIONS(3530), + [anon_sym_await] = ACTIONS(3530), + [anon_sym_of] = ACTIONS(3530), + [anon_sym_while] = ACTIONS(3530), + [anon_sym_do] = ACTIONS(3530), + [anon_sym_try] = ACTIONS(3530), + [anon_sym_break] = ACTIONS(3530), + [anon_sym_continue] = ACTIONS(3530), + [anon_sym_debugger] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3530), + [anon_sym_throw] = ACTIONS(3530), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym_case] = ACTIONS(3530), + [anon_sym_yield] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_LTtemplate_GT] = ACTIONS(3530), + [anon_sym_DQUOTE] = ACTIONS(3530), + [anon_sym_SQUOTE] = ACTIONS(3530), + [anon_sym_class] = ACTIONS(3530), + [anon_sym_async] = ACTIONS(3530), + [anon_sym_function] = ACTIONS(3530), + [anon_sym_new] = ACTIONS(3530), + [anon_sym_using] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3530), + [anon_sym_DASH] = ACTIONS(3530), + [anon_sym_SLASH] = ACTIONS(3530), + [anon_sym_LT] = ACTIONS(3530), + [anon_sym_TILDE] = ACTIONS(3530), + [anon_sym_void] = ACTIONS(3530), + [anon_sym_delete] = ACTIONS(3530), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3530), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3530), + [sym_number] = ACTIONS(3530), + [sym_private_property_identifier] = ACTIONS(3530), + [sym_this] = ACTIONS(3530), + [sym_super] = ACTIONS(3530), + [sym_true] = ACTIONS(3530), + [sym_false] = ACTIONS(3530), + [sym_null] = ACTIONS(3530), + [sym_undefined] = ACTIONS(3530), + [anon_sym_AT] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(3530), + [anon_sym_readonly] = ACTIONS(3530), + [anon_sym_get] = ACTIONS(3530), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_declare] = ACTIONS(3530), + [anon_sym_public] = ACTIONS(3530), + [anon_sym_private] = ACTIONS(3530), + [anon_sym_protected] = ACTIONS(3530), + [anon_sym_override] = ACTIONS(3530), + [anon_sym_module] = ACTIONS(3530), + [anon_sym_any] = ACTIONS(3530), + [anon_sym_number] = ACTIONS(3530), + [anon_sym_boolean] = ACTIONS(3530), + [anon_sym_string] = ACTIONS(3530), + [anon_sym_symbol] = ACTIONS(3530), + [anon_sym_object] = ACTIONS(3530), + [anon_sym_property] = ACTIONS(3530), + [anon_sym_signal] = ACTIONS(3530), + [anon_sym_on] = ACTIONS(3530), + [anon_sym_required] = ACTIONS(3530), + [anon_sym_component] = ACTIONS(3530), + [anon_sym_abstract] = ACTIONS(3530), + [anon_sym_interface] = ACTIONS(3530), + [anon_sym_enum] = ACTIONS(3530), + [sym_html_comment] = ACTIONS(5), + }, + [1266] = { + [sym_comment] = STATE(1266), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2420), + [sym_html_comment] = ACTIONS(5), + }, + [1267] = { + [sym_comment] = STATE(1267), + [sym_identifier] = ACTIONS(3446), + [anon_sym_export] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_namespace] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_typeof] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_from] = ACTIONS(3446), + [anon_sym_with] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(3446), + [anon_sym_const] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_else] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_await] = ACTIONS(3446), + [anon_sym_of] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_debugger] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_finally] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_LTtemplate_GT] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_async] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_using] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_delete] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3446), + [sym_number] = ACTIONS(3446), + [sym_private_property_identifier] = ACTIONS(3446), + [sym_this] = ACTIONS(3446), + [sym_super] = ACTIONS(3446), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3446), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3446), + [anon_sym_set] = ACTIONS(3446), + [anon_sym_declare] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_protected] = ACTIONS(3446), + [anon_sym_override] = ACTIONS(3446), + [anon_sym_module] = ACTIONS(3446), + [anon_sym_any] = ACTIONS(3446), + [anon_sym_number] = ACTIONS(3446), + [anon_sym_boolean] = ACTIONS(3446), + [anon_sym_string] = ACTIONS(3446), + [anon_sym_symbol] = ACTIONS(3446), + [anon_sym_object] = ACTIONS(3446), + [anon_sym_property] = ACTIONS(3446), + [anon_sym_signal] = ACTIONS(3446), + [anon_sym_on] = ACTIONS(3446), + [anon_sym_required] = ACTIONS(3446), + [anon_sym_component] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), + [sym_html_comment] = ACTIONS(5), + }, + [1268] = { + [sym_comment] = STATE(1268), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1269] = { + [sym_comment] = STATE(1269), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2624), + [sym_html_comment] = ACTIONS(5), + }, + [1270] = { + [sym_comment] = STATE(1270), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_catch] = ACTIONS(2356), + [anon_sym_finally] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym_html_comment] = ACTIONS(5), + }, + [1271] = { + [sym_comment] = STATE(1271), + [sym_identifier] = ACTIONS(3500), + [anon_sym_export] = ACTIONS(3500), + [anon_sym_default] = ACTIONS(3500), + [anon_sym_type] = ACTIONS(3500), + [anon_sym_namespace] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(3500), + [anon_sym_RBRACE] = ACTIONS(3500), + [anon_sym_typeof] = ACTIONS(3500), + [anon_sym_import] = ACTIONS(3500), + [anon_sym_from] = ACTIONS(3500), + [anon_sym_with] = ACTIONS(3500), + [anon_sym_var] = ACTIONS(3500), + [anon_sym_let] = ACTIONS(3500), + [anon_sym_const] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_if] = ACTIONS(3500), + [anon_sym_switch] = ACTIONS(3500), + [anon_sym_for] = ACTIONS(3500), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym_await] = ACTIONS(3500), + [anon_sym_of] = ACTIONS(3500), + [anon_sym_while] = ACTIONS(3500), + [anon_sym_do] = ACTIONS(3500), + [anon_sym_try] = ACTIONS(3500), + [anon_sym_break] = ACTIONS(3500), + [anon_sym_continue] = ACTIONS(3500), + [anon_sym_debugger] = ACTIONS(3500), + [anon_sym_return] = ACTIONS(3500), + [anon_sym_throw] = ACTIONS(3500), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_case] = ACTIONS(3500), + [anon_sym_yield] = ACTIONS(3500), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_LTtemplate_GT] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3500), + [anon_sym_class] = ACTIONS(3500), + [anon_sym_async] = ACTIONS(3500), + [anon_sym_function] = ACTIONS(3500), + [anon_sym_new] = ACTIONS(3500), + [anon_sym_using] = ACTIONS(3500), + [anon_sym_PLUS] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3500), + [anon_sym_void] = ACTIONS(3500), + [anon_sym_delete] = ACTIONS(3500), + [anon_sym_PLUS_PLUS] = ACTIONS(3500), + [anon_sym_DASH_DASH] = ACTIONS(3500), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3500), + [sym_number] = ACTIONS(3500), + [sym_private_property_identifier] = ACTIONS(3500), + [sym_this] = ACTIONS(3500), + [sym_super] = ACTIONS(3500), + [sym_true] = ACTIONS(3500), + [sym_false] = ACTIONS(3500), + [sym_null] = ACTIONS(3500), + [sym_undefined] = ACTIONS(3500), + [anon_sym_AT] = ACTIONS(3500), + [anon_sym_static] = ACTIONS(3500), + [anon_sym_readonly] = ACTIONS(3500), + [anon_sym_get] = ACTIONS(3500), + [anon_sym_set] = ACTIONS(3500), + [anon_sym_declare] = ACTIONS(3500), + [anon_sym_public] = ACTIONS(3500), + [anon_sym_private] = ACTIONS(3500), + [anon_sym_protected] = ACTIONS(3500), + [anon_sym_override] = ACTIONS(3500), + [anon_sym_module] = ACTIONS(3500), + [anon_sym_any] = ACTIONS(3500), + [anon_sym_number] = ACTIONS(3500), + [anon_sym_boolean] = ACTIONS(3500), + [anon_sym_string] = ACTIONS(3500), + [anon_sym_symbol] = ACTIONS(3500), + [anon_sym_object] = ACTIONS(3500), + [anon_sym_property] = ACTIONS(3500), + [anon_sym_signal] = ACTIONS(3500), + [anon_sym_on] = ACTIONS(3500), + [anon_sym_required] = ACTIONS(3500), + [anon_sym_component] = ACTIONS(3500), + [anon_sym_abstract] = ACTIONS(3500), + [anon_sym_interface] = ACTIONS(3500), + [anon_sym_enum] = ACTIONS(3500), + [sym_html_comment] = ACTIONS(5), + }, + [1272] = { + [sym_comment] = STATE(1272), + [sym_identifier] = ACTIONS(3502), + [anon_sym_export] = ACTIONS(3502), + [anon_sym_default] = ACTIONS(3502), + [anon_sym_type] = ACTIONS(3502), + [anon_sym_namespace] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3502), + [anon_sym_RBRACE] = ACTIONS(3502), + [anon_sym_typeof] = ACTIONS(3502), + [anon_sym_import] = ACTIONS(3502), + [anon_sym_from] = ACTIONS(3502), + [anon_sym_with] = ACTIONS(3502), + [anon_sym_var] = ACTIONS(3502), + [anon_sym_let] = ACTIONS(3502), + [anon_sym_const] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_if] = ACTIONS(3502), + [anon_sym_switch] = ACTIONS(3502), + [anon_sym_for] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3502), + [anon_sym_await] = ACTIONS(3502), + [anon_sym_of] = ACTIONS(3502), + [anon_sym_while] = ACTIONS(3502), + [anon_sym_do] = ACTIONS(3502), + [anon_sym_try] = ACTIONS(3502), + [anon_sym_break] = ACTIONS(3502), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_debugger] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3502), + [anon_sym_throw] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3502), + [anon_sym_case] = ACTIONS(3502), + [anon_sym_yield] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_LTtemplate_GT] = ACTIONS(3502), + [anon_sym_DQUOTE] = ACTIONS(3502), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_class] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(3502), + [anon_sym_function] = ACTIONS(3502), + [anon_sym_new] = ACTIONS(3502), + [anon_sym_using] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_SLASH] = ACTIONS(3502), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_TILDE] = ACTIONS(3502), + [anon_sym_void] = ACTIONS(3502), + [anon_sym_delete] = ACTIONS(3502), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3502), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3502), + [sym_number] = ACTIONS(3502), + [sym_private_property_identifier] = ACTIONS(3502), + [sym_this] = ACTIONS(3502), + [sym_super] = ACTIONS(3502), + [sym_true] = ACTIONS(3502), + [sym_false] = ACTIONS(3502), + [sym_null] = ACTIONS(3502), + [sym_undefined] = ACTIONS(3502), + [anon_sym_AT] = ACTIONS(3502), + [anon_sym_static] = ACTIONS(3502), + [anon_sym_readonly] = ACTIONS(3502), + [anon_sym_get] = ACTIONS(3502), + [anon_sym_set] = ACTIONS(3502), + [anon_sym_declare] = ACTIONS(3502), + [anon_sym_public] = ACTIONS(3502), + [anon_sym_private] = ACTIONS(3502), + [anon_sym_protected] = ACTIONS(3502), + [anon_sym_override] = ACTIONS(3502), + [anon_sym_module] = ACTIONS(3502), + [anon_sym_any] = ACTIONS(3502), + [anon_sym_number] = ACTIONS(3502), + [anon_sym_boolean] = ACTIONS(3502), + [anon_sym_string] = ACTIONS(3502), + [anon_sym_symbol] = ACTIONS(3502), + [anon_sym_object] = ACTIONS(3502), + [anon_sym_property] = ACTIONS(3502), + [anon_sym_signal] = ACTIONS(3502), + [anon_sym_on] = ACTIONS(3502), + [anon_sym_required] = ACTIONS(3502), + [anon_sym_component] = ACTIONS(3502), + [anon_sym_abstract] = ACTIONS(3502), + [anon_sym_interface] = ACTIONS(3502), + [anon_sym_enum] = ACTIONS(3502), + [sym_html_comment] = ACTIONS(5), + }, + [1273] = { + [sym_comment] = STATE(1273), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_default] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_typeof] = ACTIONS(2414), + [anon_sym_import] = ACTIONS(2414), + [anon_sym_from] = ACTIONS(2414), + [anon_sym_with] = ACTIONS(2414), + [anon_sym_var] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_switch] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_await] = ACTIONS(2414), + [anon_sym_of] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_debugger] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_throw] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_case] = ACTIONS(2414), + [anon_sym_yield] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_LTtemplate_GT] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_class] = ACTIONS(2414), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2414), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_using] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_void] = ACTIONS(2414), + [anon_sym_delete] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2414), + [sym_number] = ACTIONS(2414), + [sym_private_property_identifier] = ACTIONS(2414), + [sym_this] = ACTIONS(2414), + [sym_super] = ACTIONS(2414), + [sym_true] = ACTIONS(2414), + [sym_false] = ACTIONS(2414), + [sym_null] = ACTIONS(2414), + [sym_undefined] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_property] = ACTIONS(2414), + [anon_sym_signal] = ACTIONS(2414), + [anon_sym_on] = ACTIONS(2414), + [anon_sym_required] = ACTIONS(2414), + [anon_sym_component] = ACTIONS(2414), + [anon_sym_abstract] = ACTIONS(2414), + [anon_sym_interface] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [sym_html_comment] = ACTIONS(5), + }, + [1274] = { + [sym_comment] = STATE(1274), + [sym_identifier] = ACTIONS(3504), + [anon_sym_export] = ACTIONS(3504), + [anon_sym_default] = ACTIONS(3504), + [anon_sym_type] = ACTIONS(3504), + [anon_sym_namespace] = ACTIONS(3504), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_RBRACE] = ACTIONS(3504), + [anon_sym_typeof] = ACTIONS(3504), + [anon_sym_import] = ACTIONS(3504), + [anon_sym_from] = ACTIONS(3504), + [anon_sym_with] = ACTIONS(3504), + [anon_sym_var] = ACTIONS(3504), + [anon_sym_let] = ACTIONS(3504), + [anon_sym_const] = ACTIONS(3504), + [anon_sym_BANG] = ACTIONS(3504), + [anon_sym_if] = ACTIONS(3504), + [anon_sym_switch] = ACTIONS(3504), + [anon_sym_for] = ACTIONS(3504), + [anon_sym_LPAREN] = ACTIONS(3504), + [anon_sym_await] = ACTIONS(3504), + [anon_sym_of] = ACTIONS(3504), + [anon_sym_while] = ACTIONS(3504), + [anon_sym_do] = ACTIONS(3504), + [anon_sym_try] = ACTIONS(3504), + [anon_sym_break] = ACTIONS(3504), + [anon_sym_continue] = ACTIONS(3504), + [anon_sym_debugger] = ACTIONS(3504), + [anon_sym_return] = ACTIONS(3504), + [anon_sym_throw] = ACTIONS(3504), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym_case] = ACTIONS(3504), + [anon_sym_yield] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_LTtemplate_GT] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(3504), + [anon_sym_SQUOTE] = ACTIONS(3504), + [anon_sym_class] = ACTIONS(3504), + [anon_sym_async] = ACTIONS(3504), + [anon_sym_function] = ACTIONS(3504), + [anon_sym_new] = ACTIONS(3504), + [anon_sym_using] = ACTIONS(3504), + [anon_sym_PLUS] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(3504), + [anon_sym_TILDE] = ACTIONS(3504), + [anon_sym_void] = ACTIONS(3504), + [anon_sym_delete] = ACTIONS(3504), + [anon_sym_PLUS_PLUS] = ACTIONS(3504), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3504), + [sym_number] = ACTIONS(3504), + [sym_private_property_identifier] = ACTIONS(3504), + [sym_this] = ACTIONS(3504), + [sym_super] = ACTIONS(3504), + [sym_true] = ACTIONS(3504), + [sym_false] = ACTIONS(3504), + [sym_null] = ACTIONS(3504), + [sym_undefined] = ACTIONS(3504), + [anon_sym_AT] = ACTIONS(3504), + [anon_sym_static] = ACTIONS(3504), + [anon_sym_readonly] = ACTIONS(3504), + [anon_sym_get] = ACTIONS(3504), + [anon_sym_set] = ACTIONS(3504), + [anon_sym_declare] = ACTIONS(3504), + [anon_sym_public] = ACTIONS(3504), + [anon_sym_private] = ACTIONS(3504), + [anon_sym_protected] = ACTIONS(3504), + [anon_sym_override] = ACTIONS(3504), + [anon_sym_module] = ACTIONS(3504), + [anon_sym_any] = ACTIONS(3504), + [anon_sym_number] = ACTIONS(3504), + [anon_sym_boolean] = ACTIONS(3504), + [anon_sym_string] = ACTIONS(3504), + [anon_sym_symbol] = ACTIONS(3504), + [anon_sym_object] = ACTIONS(3504), + [anon_sym_property] = ACTIONS(3504), + [anon_sym_signal] = ACTIONS(3504), + [anon_sym_on] = ACTIONS(3504), + [anon_sym_required] = ACTIONS(3504), + [anon_sym_component] = ACTIONS(3504), + [anon_sym_abstract] = ACTIONS(3504), + [anon_sym_interface] = ACTIONS(3504), + [anon_sym_enum] = ACTIONS(3504), + [sym_html_comment] = ACTIONS(5), + }, + [1275] = { + [sym_comment] = STATE(1275), + [sym_identifier] = ACTIONS(3508), + [anon_sym_export] = ACTIONS(3508), + [anon_sym_default] = ACTIONS(3508), + [anon_sym_type] = ACTIONS(3508), + [anon_sym_namespace] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3508), + [anon_sym_RBRACE] = ACTIONS(3508), + [anon_sym_typeof] = ACTIONS(3508), + [anon_sym_import] = ACTIONS(3508), + [anon_sym_from] = ACTIONS(3508), + [anon_sym_with] = ACTIONS(3508), + [anon_sym_var] = ACTIONS(3508), + [anon_sym_let] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_if] = ACTIONS(3508), + [anon_sym_switch] = ACTIONS(3508), + [anon_sym_for] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(3508), + [anon_sym_await] = ACTIONS(3508), + [anon_sym_of] = ACTIONS(3508), + [anon_sym_while] = ACTIONS(3508), + [anon_sym_do] = ACTIONS(3508), + [anon_sym_try] = ACTIONS(3508), + [anon_sym_break] = ACTIONS(3508), + [anon_sym_continue] = ACTIONS(3508), + [anon_sym_debugger] = ACTIONS(3508), + [anon_sym_return] = ACTIONS(3508), + [anon_sym_throw] = ACTIONS(3508), + [anon_sym_SEMI] = ACTIONS(3508), + [anon_sym_case] = ACTIONS(3508), + [anon_sym_yield] = ACTIONS(3508), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LTtemplate_GT] = ACTIONS(3508), + [anon_sym_DQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3508), + [anon_sym_class] = ACTIONS(3508), + [anon_sym_async] = ACTIONS(3508), + [anon_sym_function] = ACTIONS(3508), + [anon_sym_new] = ACTIONS(3508), + [anon_sym_using] = ACTIONS(3508), + [anon_sym_PLUS] = ACTIONS(3508), + [anon_sym_DASH] = ACTIONS(3508), + [anon_sym_SLASH] = ACTIONS(3508), + [anon_sym_LT] = ACTIONS(3508), + [anon_sym_TILDE] = ACTIONS(3508), + [anon_sym_void] = ACTIONS(3508), + [anon_sym_delete] = ACTIONS(3508), + [anon_sym_PLUS_PLUS] = ACTIONS(3508), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3508), + [sym_number] = ACTIONS(3508), + [sym_private_property_identifier] = ACTIONS(3508), + [sym_this] = ACTIONS(3508), + [sym_super] = ACTIONS(3508), + [sym_true] = ACTIONS(3508), + [sym_false] = ACTIONS(3508), + [sym_null] = ACTIONS(3508), + [sym_undefined] = ACTIONS(3508), + [anon_sym_AT] = ACTIONS(3508), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_readonly] = ACTIONS(3508), + [anon_sym_get] = ACTIONS(3508), + [anon_sym_set] = ACTIONS(3508), + [anon_sym_declare] = ACTIONS(3508), + [anon_sym_public] = ACTIONS(3508), + [anon_sym_private] = ACTIONS(3508), + [anon_sym_protected] = ACTIONS(3508), + [anon_sym_override] = ACTIONS(3508), + [anon_sym_module] = ACTIONS(3508), + [anon_sym_any] = ACTIONS(3508), + [anon_sym_number] = ACTIONS(3508), + [anon_sym_boolean] = ACTIONS(3508), + [anon_sym_string] = ACTIONS(3508), + [anon_sym_symbol] = ACTIONS(3508), + [anon_sym_object] = ACTIONS(3508), + [anon_sym_property] = ACTIONS(3508), + [anon_sym_signal] = ACTIONS(3508), + [anon_sym_on] = ACTIONS(3508), + [anon_sym_required] = ACTIONS(3508), + [anon_sym_component] = ACTIONS(3508), + [anon_sym_abstract] = ACTIONS(3508), + [anon_sym_interface] = ACTIONS(3508), + [anon_sym_enum] = ACTIONS(3508), + [sym_html_comment] = ACTIONS(5), + }, + [1276] = { + [sym_comment] = STATE(1276), + [sym_identifier] = ACTIONS(3474), + [anon_sym_export] = ACTIONS(3474), + [anon_sym_default] = ACTIONS(3474), + [anon_sym_type] = ACTIONS(3474), + [anon_sym_namespace] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3474), + [anon_sym_RBRACE] = ACTIONS(3474), + [anon_sym_typeof] = ACTIONS(3474), + [anon_sym_import] = ACTIONS(3474), + [anon_sym_from] = ACTIONS(3474), + [anon_sym_with] = ACTIONS(3474), + [anon_sym_var] = ACTIONS(3474), + [anon_sym_let] = ACTIONS(3474), + [anon_sym_const] = ACTIONS(3474), + [anon_sym_BANG] = ACTIONS(3474), + [anon_sym_if] = ACTIONS(3474), + [anon_sym_switch] = ACTIONS(3474), + [anon_sym_for] = ACTIONS(3474), + [anon_sym_LPAREN] = ACTIONS(3474), + [anon_sym_await] = ACTIONS(3474), + [anon_sym_of] = ACTIONS(3474), + [anon_sym_while] = ACTIONS(3474), + [anon_sym_do] = ACTIONS(3474), + [anon_sym_try] = ACTIONS(3474), + [anon_sym_break] = ACTIONS(3474), + [anon_sym_continue] = ACTIONS(3474), + [anon_sym_debugger] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3474), + [anon_sym_throw] = ACTIONS(3474), + [anon_sym_SEMI] = ACTIONS(3474), + [anon_sym_case] = ACTIONS(3474), + [anon_sym_yield] = ACTIONS(3474), + [anon_sym_LBRACK] = ACTIONS(3474), + [anon_sym_LTtemplate_GT] = ACTIONS(3474), + [anon_sym_DQUOTE] = ACTIONS(3474), + [anon_sym_SQUOTE] = ACTIONS(3474), + [anon_sym_class] = ACTIONS(3474), + [anon_sym_async] = ACTIONS(3474), + [anon_sym_function] = ACTIONS(3474), + [anon_sym_new] = ACTIONS(3474), + [anon_sym_using] = ACTIONS(3474), + [anon_sym_PLUS] = ACTIONS(3474), + [anon_sym_DASH] = ACTIONS(3474), + [anon_sym_SLASH] = ACTIONS(3474), + [anon_sym_LT] = ACTIONS(3474), + [anon_sym_TILDE] = ACTIONS(3474), + [anon_sym_void] = ACTIONS(3474), + [anon_sym_delete] = ACTIONS(3474), + [anon_sym_PLUS_PLUS] = ACTIONS(3474), + [anon_sym_DASH_DASH] = ACTIONS(3474), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3474), + [sym_number] = ACTIONS(3474), + [sym_private_property_identifier] = ACTIONS(3474), + [sym_this] = ACTIONS(3474), + [sym_super] = ACTIONS(3474), + [sym_true] = ACTIONS(3474), + [sym_false] = ACTIONS(3474), + [sym_null] = ACTIONS(3474), + [sym_undefined] = ACTIONS(3474), + [anon_sym_AT] = ACTIONS(3474), + [anon_sym_static] = ACTIONS(3474), + [anon_sym_readonly] = ACTIONS(3474), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_declare] = ACTIONS(3474), + [anon_sym_public] = ACTIONS(3474), + [anon_sym_private] = ACTIONS(3474), + [anon_sym_protected] = ACTIONS(3474), + [anon_sym_override] = ACTIONS(3474), + [anon_sym_module] = ACTIONS(3474), + [anon_sym_any] = ACTIONS(3474), + [anon_sym_number] = ACTIONS(3474), + [anon_sym_boolean] = ACTIONS(3474), + [anon_sym_string] = ACTIONS(3474), + [anon_sym_symbol] = ACTIONS(3474), + [anon_sym_object] = ACTIONS(3474), + [anon_sym_property] = ACTIONS(3474), + [anon_sym_signal] = ACTIONS(3474), + [anon_sym_on] = ACTIONS(3474), + [anon_sym_required] = ACTIONS(3474), + [anon_sym_component] = ACTIONS(3474), + [anon_sym_abstract] = ACTIONS(3474), + [anon_sym_interface] = ACTIONS(3474), + [anon_sym_enum] = ACTIONS(3474), + [sym_html_comment] = ACTIONS(5), + }, + [1277] = { + [sym_comment] = STATE(1277), + [sym_identifier] = ACTIONS(3480), + [anon_sym_export] = ACTIONS(3480), + [anon_sym_default] = ACTIONS(3480), + [anon_sym_type] = ACTIONS(3480), + [anon_sym_namespace] = ACTIONS(3480), + [anon_sym_LBRACE] = ACTIONS(3480), + [anon_sym_RBRACE] = ACTIONS(3480), + [anon_sym_typeof] = ACTIONS(3480), + [anon_sym_import] = ACTIONS(3480), + [anon_sym_from] = ACTIONS(3480), + [anon_sym_with] = ACTIONS(3480), + [anon_sym_var] = ACTIONS(3480), + [anon_sym_let] = ACTIONS(3480), + [anon_sym_const] = ACTIONS(3480), + [anon_sym_BANG] = ACTIONS(3480), + [anon_sym_if] = ACTIONS(3480), + [anon_sym_switch] = ACTIONS(3480), + [anon_sym_for] = ACTIONS(3480), + [anon_sym_LPAREN] = ACTIONS(3480), + [anon_sym_await] = ACTIONS(3480), + [anon_sym_of] = ACTIONS(3480), + [anon_sym_while] = ACTIONS(3480), + [anon_sym_do] = ACTIONS(3480), + [anon_sym_try] = ACTIONS(3480), + [anon_sym_break] = ACTIONS(3480), + [anon_sym_continue] = ACTIONS(3480), + [anon_sym_debugger] = ACTIONS(3480), + [anon_sym_return] = ACTIONS(3480), + [anon_sym_throw] = ACTIONS(3480), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym_case] = ACTIONS(3480), + [anon_sym_yield] = ACTIONS(3480), + [anon_sym_LBRACK] = ACTIONS(3480), + [anon_sym_LTtemplate_GT] = ACTIONS(3480), + [anon_sym_DQUOTE] = ACTIONS(3480), + [anon_sym_SQUOTE] = ACTIONS(3480), + [anon_sym_class] = ACTIONS(3480), + [anon_sym_async] = ACTIONS(3480), + [anon_sym_function] = ACTIONS(3480), + [anon_sym_new] = ACTIONS(3480), + [anon_sym_using] = ACTIONS(3480), + [anon_sym_PLUS] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_SLASH] = ACTIONS(3480), + [anon_sym_LT] = ACTIONS(3480), + [anon_sym_TILDE] = ACTIONS(3480), + [anon_sym_void] = ACTIONS(3480), + [anon_sym_delete] = ACTIONS(3480), + [anon_sym_PLUS_PLUS] = ACTIONS(3480), + [anon_sym_DASH_DASH] = ACTIONS(3480), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3480), + [sym_number] = ACTIONS(3480), + [sym_private_property_identifier] = ACTIONS(3480), + [sym_this] = ACTIONS(3480), + [sym_super] = ACTIONS(3480), + [sym_true] = ACTIONS(3480), + [sym_false] = ACTIONS(3480), + [sym_null] = ACTIONS(3480), + [sym_undefined] = ACTIONS(3480), + [anon_sym_AT] = ACTIONS(3480), + [anon_sym_static] = ACTIONS(3480), + [anon_sym_readonly] = ACTIONS(3480), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3480), + [anon_sym_declare] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3480), + [anon_sym_protected] = ACTIONS(3480), + [anon_sym_override] = ACTIONS(3480), + [anon_sym_module] = ACTIONS(3480), + [anon_sym_any] = ACTIONS(3480), + [anon_sym_number] = ACTIONS(3480), + [anon_sym_boolean] = ACTIONS(3480), + [anon_sym_string] = ACTIONS(3480), + [anon_sym_symbol] = ACTIONS(3480), + [anon_sym_object] = ACTIONS(3480), + [anon_sym_property] = ACTIONS(3480), + [anon_sym_signal] = ACTIONS(3480), + [anon_sym_on] = ACTIONS(3480), + [anon_sym_required] = ACTIONS(3480), + [anon_sym_component] = ACTIONS(3480), + [anon_sym_abstract] = ACTIONS(3480), + [anon_sym_interface] = ACTIONS(3480), + [anon_sym_enum] = ACTIONS(3480), + [sym_html_comment] = ACTIONS(5), + }, + [1278] = { + [sym_comment] = STATE(1278), + [sym_identifier] = ACTIONS(3482), + [anon_sym_export] = ACTIONS(3482), + [anon_sym_default] = ACTIONS(3482), + [anon_sym_type] = ACTIONS(3482), + [anon_sym_namespace] = ACTIONS(3482), + [anon_sym_LBRACE] = ACTIONS(3482), + [anon_sym_RBRACE] = ACTIONS(3482), + [anon_sym_typeof] = ACTIONS(3482), + [anon_sym_import] = ACTIONS(3482), + [anon_sym_from] = ACTIONS(3482), + [anon_sym_with] = ACTIONS(3482), + [anon_sym_var] = ACTIONS(3482), + [anon_sym_let] = ACTIONS(3482), + [anon_sym_const] = ACTIONS(3482), + [anon_sym_BANG] = ACTIONS(3482), + [anon_sym_if] = ACTIONS(3482), + [anon_sym_switch] = ACTIONS(3482), + [anon_sym_for] = ACTIONS(3482), + [anon_sym_LPAREN] = ACTIONS(3482), + [anon_sym_await] = ACTIONS(3482), + [anon_sym_of] = ACTIONS(3482), + [anon_sym_while] = ACTIONS(3482), + [anon_sym_do] = ACTIONS(3482), + [anon_sym_try] = ACTIONS(3482), + [anon_sym_break] = ACTIONS(3482), + [anon_sym_continue] = ACTIONS(3482), + [anon_sym_debugger] = ACTIONS(3482), + [anon_sym_return] = ACTIONS(3482), + [anon_sym_throw] = ACTIONS(3482), + [anon_sym_SEMI] = ACTIONS(3482), + [anon_sym_case] = ACTIONS(3482), + [anon_sym_yield] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_LTtemplate_GT] = ACTIONS(3482), + [anon_sym_DQUOTE] = ACTIONS(3482), + [anon_sym_SQUOTE] = ACTIONS(3482), + [anon_sym_class] = ACTIONS(3482), + [anon_sym_async] = ACTIONS(3482), + [anon_sym_function] = ACTIONS(3482), + [anon_sym_new] = ACTIONS(3482), + [anon_sym_using] = ACTIONS(3482), + [anon_sym_PLUS] = ACTIONS(3482), + [anon_sym_DASH] = ACTIONS(3482), + [anon_sym_SLASH] = ACTIONS(3482), + [anon_sym_LT] = ACTIONS(3482), + [anon_sym_TILDE] = ACTIONS(3482), + [anon_sym_void] = ACTIONS(3482), + [anon_sym_delete] = ACTIONS(3482), + [anon_sym_PLUS_PLUS] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(3482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3482), + [sym_number] = ACTIONS(3482), + [sym_private_property_identifier] = ACTIONS(3482), + [sym_this] = ACTIONS(3482), + [sym_super] = ACTIONS(3482), + [sym_true] = ACTIONS(3482), + [sym_false] = ACTIONS(3482), + [sym_null] = ACTIONS(3482), + [sym_undefined] = ACTIONS(3482), + [anon_sym_AT] = ACTIONS(3482), + [anon_sym_static] = ACTIONS(3482), + [anon_sym_readonly] = ACTIONS(3482), + [anon_sym_get] = ACTIONS(3482), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_declare] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3482), + [anon_sym_private] = ACTIONS(3482), + [anon_sym_protected] = ACTIONS(3482), + [anon_sym_override] = ACTIONS(3482), + [anon_sym_module] = ACTIONS(3482), + [anon_sym_any] = ACTIONS(3482), + [anon_sym_number] = ACTIONS(3482), + [anon_sym_boolean] = ACTIONS(3482), + [anon_sym_string] = ACTIONS(3482), + [anon_sym_symbol] = ACTIONS(3482), + [anon_sym_object] = ACTIONS(3482), + [anon_sym_property] = ACTIONS(3482), + [anon_sym_signal] = ACTIONS(3482), + [anon_sym_on] = ACTIONS(3482), + [anon_sym_required] = ACTIONS(3482), + [anon_sym_component] = ACTIONS(3482), + [anon_sym_abstract] = ACTIONS(3482), + [anon_sym_interface] = ACTIONS(3482), + [anon_sym_enum] = ACTIONS(3482), + [sym_html_comment] = ACTIONS(5), + }, + [1279] = { + [sym_comment] = STATE(1279), + [sym_identifier] = ACTIONS(3668), + [anon_sym_export] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_type] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_typeof] = ACTIONS(3668), + [anon_sym_import] = ACTIONS(3668), + [anon_sym_from] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [anon_sym_var] = ACTIONS(3668), + [anon_sym_let] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_await] = ACTIONS(3668), + [anon_sym_of] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_debugger] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_yield] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_LTtemplate_GT] = ACTIONS(3668), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_async] = ACTIONS(3668), + [anon_sym_function] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_void] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3668), + [sym_number] = ACTIONS(3668), + [sym_private_property_identifier] = ACTIONS(3668), + [sym_this] = ACTIONS(3668), + [sym_super] = ACTIONS(3668), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [sym_null] = ACTIONS(3668), + [sym_undefined] = ACTIONS(3668), + [anon_sym_AT] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_readonly] = ACTIONS(3668), + [anon_sym_get] = ACTIONS(3668), + [anon_sym_set] = ACTIONS(3668), + [anon_sym_declare] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_override] = ACTIONS(3668), + [anon_sym_module] = ACTIONS(3668), + [anon_sym_any] = ACTIONS(3668), + [anon_sym_number] = ACTIONS(3668), + [anon_sym_boolean] = ACTIONS(3668), + [anon_sym_string] = ACTIONS(3668), + [anon_sym_symbol] = ACTIONS(3668), + [anon_sym_object] = ACTIONS(3668), + [anon_sym_property] = ACTIONS(3668), + [anon_sym_signal] = ACTIONS(3668), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_required] = ACTIONS(3668), + [anon_sym_component] = ACTIONS(3668), + [anon_sym_abstract] = ACTIONS(3668), + [anon_sym_interface] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [sym_html_comment] = ACTIONS(5), + }, + [1280] = { + [sym_comment] = STATE(1280), + [sym_identifier] = ACTIONS(2448), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_namespace] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_typeof] = ACTIONS(2448), + [anon_sym_import] = ACTIONS(2448), + [anon_sym_from] = ACTIONS(2448), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_switch] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_await] = ACTIONS(2448), + [anon_sym_of] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_debugger] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LTtemplate_GT] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_class] = ACTIONS(2448), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_new] = ACTIONS(2448), + [anon_sym_using] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_SLASH] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_void] = ACTIONS(2448), + [anon_sym_delete] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2448), + [sym_number] = ACTIONS(2448), + [sym_private_property_identifier] = ACTIONS(2448), + [sym_this] = ACTIONS(2448), + [sym_super] = ACTIONS(2448), + [sym_true] = ACTIONS(2448), + [sym_false] = ACTIONS(2448), + [sym_null] = ACTIONS(2448), + [sym_undefined] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_readonly] = ACTIONS(2448), + [anon_sym_get] = ACTIONS(2448), + [anon_sym_set] = ACTIONS(2448), + [anon_sym_declare] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_protected] = ACTIONS(2448), + [anon_sym_override] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_any] = ACTIONS(2448), + [anon_sym_number] = ACTIONS(2448), + [anon_sym_boolean] = ACTIONS(2448), + [anon_sym_string] = ACTIONS(2448), + [anon_sym_symbol] = ACTIONS(2448), + [anon_sym_object] = ACTIONS(2448), + [anon_sym_property] = ACTIONS(2448), + [anon_sym_signal] = ACTIONS(2448), + [anon_sym_on] = ACTIONS(2448), + [anon_sym_required] = ACTIONS(2448), + [anon_sym_component] = ACTIONS(2448), + [anon_sym_abstract] = ACTIONS(2448), + [anon_sym_interface] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [sym__automatic_semicolon] = ACTIONS(2630), + [sym_html_comment] = ACTIONS(5), + }, + [1281] = { + [sym_comment] = STATE(1281), + [sym_identifier] = ACTIONS(3468), + [anon_sym_export] = ACTIONS(3468), + [anon_sym_default] = ACTIONS(3468), + [anon_sym_type] = ACTIONS(3468), + [anon_sym_namespace] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3468), + [anon_sym_RBRACE] = ACTIONS(3468), + [anon_sym_typeof] = ACTIONS(3468), + [anon_sym_import] = ACTIONS(3468), + [anon_sym_from] = ACTIONS(3468), + [anon_sym_with] = ACTIONS(3468), + [anon_sym_var] = ACTIONS(3468), + [anon_sym_let] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_BANG] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_await] = ACTIONS(3468), + [anon_sym_of] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_debugger] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_case] = ACTIONS(3468), + [anon_sym_yield] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_LTtemplate_GT] = ACTIONS(3468), + [anon_sym_DQUOTE] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_async] = ACTIONS(3468), + [anon_sym_function] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_using] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_SLASH] = ACTIONS(3468), + [anon_sym_LT] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(3468), + [anon_sym_void] = ACTIONS(3468), + [anon_sym_delete] = ACTIONS(3468), + [anon_sym_PLUS_PLUS] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3468), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3468), + [sym_number] = ACTIONS(3468), + [sym_private_property_identifier] = ACTIONS(3468), + [sym_this] = ACTIONS(3468), + [sym_super] = ACTIONS(3468), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [sym_null] = ACTIONS(3468), + [sym_undefined] = ACTIONS(3468), + [anon_sym_AT] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_readonly] = ACTIONS(3468), + [anon_sym_get] = ACTIONS(3468), + [anon_sym_set] = ACTIONS(3468), + [anon_sym_declare] = ACTIONS(3468), + [anon_sym_public] = ACTIONS(3468), + [anon_sym_private] = ACTIONS(3468), + [anon_sym_protected] = ACTIONS(3468), + [anon_sym_override] = ACTIONS(3468), + [anon_sym_module] = ACTIONS(3468), + [anon_sym_any] = ACTIONS(3468), + [anon_sym_number] = ACTIONS(3468), + [anon_sym_boolean] = ACTIONS(3468), + [anon_sym_string] = ACTIONS(3468), + [anon_sym_symbol] = ACTIONS(3468), + [anon_sym_object] = ACTIONS(3468), + [anon_sym_property] = ACTIONS(3468), + [anon_sym_signal] = ACTIONS(3468), + [anon_sym_on] = ACTIONS(3468), + [anon_sym_required] = ACTIONS(3468), + [anon_sym_component] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(3468), + [anon_sym_interface] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), + [sym_html_comment] = ACTIONS(5), + }, + [1282] = { + [sym_comment] = STATE(1282), + [sym_identifier] = ACTIONS(3514), + [anon_sym_export] = ACTIONS(3514), + [anon_sym_default] = ACTIONS(3514), + [anon_sym_type] = ACTIONS(3514), + [anon_sym_namespace] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_RBRACE] = ACTIONS(3514), + [anon_sym_typeof] = ACTIONS(3514), + [anon_sym_import] = ACTIONS(3514), + [anon_sym_from] = ACTIONS(3514), + [anon_sym_with] = ACTIONS(3514), + [anon_sym_var] = ACTIONS(3514), + [anon_sym_let] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3514), + [anon_sym_switch] = ACTIONS(3514), + [anon_sym_for] = ACTIONS(3514), + [anon_sym_LPAREN] = ACTIONS(3514), + [anon_sym_await] = ACTIONS(3514), + [anon_sym_of] = ACTIONS(3514), + [anon_sym_while] = ACTIONS(3514), + [anon_sym_do] = ACTIONS(3514), + [anon_sym_try] = ACTIONS(3514), + [anon_sym_break] = ACTIONS(3514), + [anon_sym_continue] = ACTIONS(3514), + [anon_sym_debugger] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3514), + [anon_sym_throw] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3514), + [anon_sym_case] = ACTIONS(3514), + [anon_sym_yield] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_LTtemplate_GT] = ACTIONS(3514), + [anon_sym_DQUOTE] = ACTIONS(3514), + [anon_sym_SQUOTE] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_async] = ACTIONS(3514), + [anon_sym_function] = ACTIONS(3514), + [anon_sym_new] = ACTIONS(3514), + [anon_sym_using] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_SLASH] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_void] = ACTIONS(3514), + [anon_sym_delete] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3514), + [sym_number] = ACTIONS(3514), + [sym_private_property_identifier] = ACTIONS(3514), + [sym_this] = ACTIONS(3514), + [sym_super] = ACTIONS(3514), + [sym_true] = ACTIONS(3514), + [sym_false] = ACTIONS(3514), + [sym_null] = ACTIONS(3514), + [sym_undefined] = ACTIONS(3514), + [anon_sym_AT] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_readonly] = ACTIONS(3514), + [anon_sym_get] = ACTIONS(3514), + [anon_sym_set] = ACTIONS(3514), + [anon_sym_declare] = ACTIONS(3514), + [anon_sym_public] = ACTIONS(3514), + [anon_sym_private] = ACTIONS(3514), + [anon_sym_protected] = ACTIONS(3514), + [anon_sym_override] = ACTIONS(3514), + [anon_sym_module] = ACTIONS(3514), + [anon_sym_any] = ACTIONS(3514), + [anon_sym_number] = ACTIONS(3514), + [anon_sym_boolean] = ACTIONS(3514), + [anon_sym_string] = ACTIONS(3514), + [anon_sym_symbol] = ACTIONS(3514), + [anon_sym_object] = ACTIONS(3514), + [anon_sym_property] = ACTIONS(3514), + [anon_sym_signal] = ACTIONS(3514), + [anon_sym_on] = ACTIONS(3514), + [anon_sym_required] = ACTIONS(3514), + [anon_sym_component] = ACTIONS(3514), + [anon_sym_abstract] = ACTIONS(3514), + [anon_sym_interface] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), + [sym_html_comment] = ACTIONS(5), + }, + [1283] = { + [sym_comment] = STATE(1283), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_default] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_case] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [sym_html_comment] = ACTIONS(5), + }, + [1284] = { + [sym_comment] = STATE(1284), + [sym_identifier] = ACTIONS(3516), + [anon_sym_export] = ACTIONS(3516), + [anon_sym_default] = ACTIONS(3516), + [anon_sym_type] = ACTIONS(3516), + [anon_sym_namespace] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3516), + [anon_sym_RBRACE] = ACTIONS(3516), + [anon_sym_typeof] = ACTIONS(3516), + [anon_sym_import] = ACTIONS(3516), + [anon_sym_from] = ACTIONS(3516), + [anon_sym_with] = ACTIONS(3516), + [anon_sym_var] = ACTIONS(3516), + [anon_sym_let] = ACTIONS(3516), + [anon_sym_const] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_if] = ACTIONS(3516), + [anon_sym_switch] = ACTIONS(3516), + [anon_sym_for] = ACTIONS(3516), + [anon_sym_LPAREN] = ACTIONS(3516), + [anon_sym_await] = ACTIONS(3516), + [anon_sym_of] = ACTIONS(3516), + [anon_sym_while] = ACTIONS(3516), + [anon_sym_do] = ACTIONS(3516), + [anon_sym_try] = ACTIONS(3516), + [anon_sym_break] = ACTIONS(3516), + [anon_sym_continue] = ACTIONS(3516), + [anon_sym_debugger] = ACTIONS(3516), + [anon_sym_return] = ACTIONS(3516), + [anon_sym_throw] = ACTIONS(3516), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym_case] = ACTIONS(3516), + [anon_sym_yield] = ACTIONS(3516), + [anon_sym_LBRACK] = ACTIONS(3516), + [anon_sym_LTtemplate_GT] = ACTIONS(3516), + [anon_sym_DQUOTE] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3516), + [anon_sym_class] = ACTIONS(3516), + [anon_sym_async] = ACTIONS(3516), + [anon_sym_function] = ACTIONS(3516), + [anon_sym_new] = ACTIONS(3516), + [anon_sym_using] = ACTIONS(3516), + [anon_sym_PLUS] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3516), + [anon_sym_SLASH] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_void] = ACTIONS(3516), + [anon_sym_delete] = ACTIONS(3516), + [anon_sym_PLUS_PLUS] = ACTIONS(3516), + [anon_sym_DASH_DASH] = ACTIONS(3516), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3516), + [sym_number] = ACTIONS(3516), + [sym_private_property_identifier] = ACTIONS(3516), + [sym_this] = ACTIONS(3516), + [sym_super] = ACTIONS(3516), + [sym_true] = ACTIONS(3516), + [sym_false] = ACTIONS(3516), + [sym_null] = ACTIONS(3516), + [sym_undefined] = ACTIONS(3516), + [anon_sym_AT] = ACTIONS(3516), + [anon_sym_static] = ACTIONS(3516), + [anon_sym_readonly] = ACTIONS(3516), + [anon_sym_get] = ACTIONS(3516), + [anon_sym_set] = ACTIONS(3516), + [anon_sym_declare] = ACTIONS(3516), + [anon_sym_public] = ACTIONS(3516), + [anon_sym_private] = ACTIONS(3516), + [anon_sym_protected] = ACTIONS(3516), + [anon_sym_override] = ACTIONS(3516), + [anon_sym_module] = ACTIONS(3516), + [anon_sym_any] = ACTIONS(3516), + [anon_sym_number] = ACTIONS(3516), + [anon_sym_boolean] = ACTIONS(3516), + [anon_sym_string] = ACTIONS(3516), + [anon_sym_symbol] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(3516), + [anon_sym_property] = ACTIONS(3516), + [anon_sym_signal] = ACTIONS(3516), + [anon_sym_on] = ACTIONS(3516), + [anon_sym_required] = ACTIONS(3516), + [anon_sym_component] = ACTIONS(3516), + [anon_sym_abstract] = ACTIONS(3516), + [anon_sym_interface] = ACTIONS(3516), + [anon_sym_enum] = ACTIONS(3516), + [sym_html_comment] = ACTIONS(5), + }, + [1285] = { + [sym_comment] = STATE(1285), + [sym_identifier] = ACTIONS(3524), + [anon_sym_export] = ACTIONS(3524), + [anon_sym_default] = ACTIONS(3524), + [anon_sym_type] = ACTIONS(3524), + [anon_sym_namespace] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_typeof] = ACTIONS(3524), + [anon_sym_import] = ACTIONS(3524), + [anon_sym_from] = ACTIONS(3524), + [anon_sym_with] = ACTIONS(3524), + [anon_sym_var] = ACTIONS(3524), + [anon_sym_let] = ACTIONS(3524), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_if] = ACTIONS(3524), + [anon_sym_switch] = ACTIONS(3524), + [anon_sym_for] = ACTIONS(3524), + [anon_sym_LPAREN] = ACTIONS(3524), + [anon_sym_await] = ACTIONS(3524), + [anon_sym_of] = ACTIONS(3524), + [anon_sym_while] = ACTIONS(3524), + [anon_sym_do] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3524), + [anon_sym_break] = ACTIONS(3524), + [anon_sym_continue] = ACTIONS(3524), + [anon_sym_debugger] = ACTIONS(3524), + [anon_sym_return] = ACTIONS(3524), + [anon_sym_throw] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym_case] = ACTIONS(3524), + [anon_sym_yield] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_LTtemplate_GT] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3524), + [anon_sym_class] = ACTIONS(3524), + [anon_sym_async] = ACTIONS(3524), + [anon_sym_function] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_using] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_void] = ACTIONS(3524), + [anon_sym_delete] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_DASH_DASH] = ACTIONS(3524), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3524), + [sym_number] = ACTIONS(3524), + [sym_private_property_identifier] = ACTIONS(3524), + [sym_this] = ACTIONS(3524), + [sym_super] = ACTIONS(3524), + [sym_true] = ACTIONS(3524), + [sym_false] = ACTIONS(3524), + [sym_null] = ACTIONS(3524), + [sym_undefined] = ACTIONS(3524), + [anon_sym_AT] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_readonly] = ACTIONS(3524), + [anon_sym_get] = ACTIONS(3524), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_declare] = ACTIONS(3524), + [anon_sym_public] = ACTIONS(3524), + [anon_sym_private] = ACTIONS(3524), + [anon_sym_protected] = ACTIONS(3524), + [anon_sym_override] = ACTIONS(3524), + [anon_sym_module] = ACTIONS(3524), + [anon_sym_any] = ACTIONS(3524), + [anon_sym_number] = ACTIONS(3524), + [anon_sym_boolean] = ACTIONS(3524), + [anon_sym_string] = ACTIONS(3524), + [anon_sym_symbol] = ACTIONS(3524), + [anon_sym_object] = ACTIONS(3524), + [anon_sym_property] = ACTIONS(3524), + [anon_sym_signal] = ACTIONS(3524), + [anon_sym_on] = ACTIONS(3524), + [anon_sym_required] = ACTIONS(3524), + [anon_sym_component] = ACTIONS(3524), + [anon_sym_abstract] = ACTIONS(3524), + [anon_sym_interface] = ACTIONS(3524), + [anon_sym_enum] = ACTIONS(3524), + [sym_html_comment] = ACTIONS(5), + }, + [1286] = { + [sym_statement_block] = STATE(1551), + [sym_comment] = STATE(1286), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3576), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), [anon_sym_of] = ACTIONS(2318), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_async] = ACTIONS(2187), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_readonly] = ACTIONS(2187), - [anon_sym_get] = ACTIONS(2187), - [anon_sym_set] = ACTIONS(2187), - [anon_sym_declare] = ACTIONS(2187), - [anon_sym_public] = ACTIONS(2187), - [anon_sym_private] = ACTIONS(2187), - [anon_sym_protected] = ACTIONS(2187), - [anon_sym_override] = ACTIONS(2187), - [anon_sym_module] = ACTIONS(2187), - [anon_sym_any] = ACTIONS(2187), - [anon_sym_number] = ACTIONS(2187), - [anon_sym_boolean] = ACTIONS(2187), - [anon_sym_string] = ACTIONS(2187), - [anon_sym_symbol] = ACTIONS(2187), - [anon_sym_property] = ACTIONS(2187), - [anon_sym_signal] = ACTIONS(2187), - [anon_sym_on] = ACTIONS(2187), - [anon_sym_required] = ACTIONS(2187), - [anon_sym_component] = ACTIONS(2187), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [680] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_export] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_type] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_typeof] = ACTIONS(1533), - [anon_sym_import] = ACTIONS(1533), - [anon_sym_from] = ACTIONS(1533), - [anon_sym_var] = ACTIONS(1533), - [anon_sym_let] = ACTIONS(1533), - [anon_sym_const] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1535), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_switch] = ACTIONS(1533), - [anon_sym_for] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_of] = ACTIONS(1533), - [anon_sym_while] = ACTIONS(1533), - [anon_sym_do] = ACTIONS(1533), - [anon_sym_try] = ACTIONS(1533), - [anon_sym_with] = ACTIONS(1533), - [anon_sym_break] = ACTIONS(1533), - [anon_sym_continue] = ACTIONS(1533), - [anon_sym_debugger] = ACTIONS(1533), - [anon_sym_return] = ACTIONS(1533), - [anon_sym_throw] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_case] = ACTIONS(1533), - [anon_sym_yield] = ACTIONS(1533), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_LTtemplate_GT] = ACTIONS(1535), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_DOT] = ACTIONS(1533), - [anon_sym_class] = ACTIONS(1533), - [anon_sym_async] = ACTIONS(1533), - [anon_sym_function] = ACTIONS(1533), - [anon_sym_new] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_TILDE] = ACTIONS(1535), - [anon_sym_void] = ACTIONS(1533), - [anon_sym_delete] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [anon_sym_DQUOTE] = ACTIONS(1535), - [anon_sym_SQUOTE] = ACTIONS(1535), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1535), - [sym_number] = ACTIONS(1535), - [sym_this] = ACTIONS(1533), - [sym_super] = ACTIONS(1533), - [sym_true] = ACTIONS(1533), - [sym_false] = ACTIONS(1533), - [sym_null] = ACTIONS(1533), - [sym_undefined] = ACTIONS(1533), - [anon_sym_AT] = ACTIONS(1535), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_readonly] = ACTIONS(1533), - [anon_sym_get] = ACTIONS(1533), - [anon_sym_set] = ACTIONS(1533), - [anon_sym_declare] = ACTIONS(1533), - [anon_sym_public] = ACTIONS(1533), - [anon_sym_private] = ACTIONS(1533), - [anon_sym_protected] = ACTIONS(1533), - [anon_sym_override] = ACTIONS(1533), - [anon_sym_module] = ACTIONS(1533), - [anon_sym_any] = ACTIONS(1533), - [anon_sym_number] = ACTIONS(1533), - [anon_sym_boolean] = ACTIONS(1533), - [anon_sym_string] = ACTIONS(1533), - [anon_sym_symbol] = ACTIONS(1533), - [anon_sym_property] = ACTIONS(1533), - [anon_sym_signal] = ACTIONS(1533), - [anon_sym_on] = ACTIONS(1533), - [anon_sym_required] = ACTIONS(1533), - [anon_sym_component] = ACTIONS(1533), - [anon_sym_abstract] = ACTIONS(1533), - [anon_sym_interface] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - }, - [681] = { - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1519), - [anon_sym_default] = ACTIONS(1519), - [anon_sym_type] = ACTIONS(1519), - [anon_sym_namespace] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1523), - [anon_sym_RBRACE] = ACTIONS(1523), - [anon_sym_typeof] = ACTIONS(1519), - [anon_sym_import] = ACTIONS(1519), - [anon_sym_from] = ACTIONS(1519), - [anon_sym_var] = ACTIONS(1519), - [anon_sym_let] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1523), - [anon_sym_else] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_switch] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1523), - [anon_sym_await] = ACTIONS(1519), - [anon_sym_of] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_try] = ACTIONS(1519), - [anon_sym_with] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_debugger] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_throw] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_case] = ACTIONS(1519), - [anon_sym_yield] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1523), - [anon_sym_LTtemplate_GT] = ACTIONS(1523), - [anon_sym_LT] = ACTIONS(1519), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_class] = ACTIONS(1519), - [anon_sym_async] = ACTIONS(1519), - [anon_sym_function] = ACTIONS(1519), - [anon_sym_new] = ACTIONS(1519), - [anon_sym_PLUS] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), - [anon_sym_TILDE] = ACTIONS(1523), - [anon_sym_void] = ACTIONS(1519), - [anon_sym_delete] = ACTIONS(1519), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1523), - [anon_sym_SQUOTE] = ACTIONS(1523), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1523), - [sym_number] = ACTIONS(1523), - [sym_this] = ACTIONS(1519), - [sym_super] = ACTIONS(1519), - [sym_true] = ACTIONS(1519), - [sym_false] = ACTIONS(1519), - [sym_null] = ACTIONS(1519), - [sym_undefined] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1519), - [anon_sym_readonly] = ACTIONS(1519), - [anon_sym_get] = ACTIONS(1519), - [anon_sym_set] = ACTIONS(1519), - [anon_sym_declare] = ACTIONS(1519), - [anon_sym_public] = ACTIONS(1519), - [anon_sym_private] = ACTIONS(1519), - [anon_sym_protected] = ACTIONS(1519), - [anon_sym_override] = ACTIONS(1519), - [anon_sym_module] = ACTIONS(1519), - [anon_sym_any] = ACTIONS(1519), - [anon_sym_number] = ACTIONS(1519), - [anon_sym_boolean] = ACTIONS(1519), - [anon_sym_string] = ACTIONS(1519), - [anon_sym_symbol] = ACTIONS(1519), - [anon_sym_property] = ACTIONS(1519), - [anon_sym_signal] = ACTIONS(1519), - [anon_sym_on] = ACTIONS(1519), - [anon_sym_required] = ACTIONS(1519), - [anon_sym_component] = ACTIONS(1519), - [anon_sym_abstract] = ACTIONS(1519), - [anon_sym_interface] = ACTIONS(1519), - [anon_sym_enum] = ACTIONS(1519), - [sym__automatic_semicolon] = ACTIONS(1527), - }, - [682] = { - [sym_identifier] = ACTIONS(1587), - [anon_sym_export] = ACTIONS(1587), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_type] = ACTIONS(1587), - [anon_sym_namespace] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1591), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_typeof] = ACTIONS(1587), - [anon_sym_import] = ACTIONS(1587), - [anon_sym_from] = ACTIONS(1587), - [anon_sym_var] = ACTIONS(1587), - [anon_sym_let] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1591), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_switch] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1591), - [anon_sym_await] = ACTIONS(1587), - [anon_sym_of] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_try] = ACTIONS(1587), - [anon_sym_with] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_debugger] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_throw] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1591), - [anon_sym_case] = ACTIONS(1587), - [anon_sym_yield] = ACTIONS(1587), - [anon_sym_LBRACK] = ACTIONS(1591), - [anon_sym_LTtemplate_GT] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_class] = ACTIONS(1587), - [anon_sym_async] = ACTIONS(1587), - [anon_sym_function] = ACTIONS(1587), - [anon_sym_new] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_TILDE] = ACTIONS(1591), - [anon_sym_void] = ACTIONS(1587), - [anon_sym_delete] = ACTIONS(1587), - [anon_sym_PLUS_PLUS] = ACTIONS(1591), - [anon_sym_DASH_DASH] = ACTIONS(1591), - [anon_sym_DQUOTE] = ACTIONS(1591), - [anon_sym_SQUOTE] = ACTIONS(1591), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1591), - [sym_number] = ACTIONS(1591), - [sym_this] = ACTIONS(1587), - [sym_super] = ACTIONS(1587), - [sym_true] = ACTIONS(1587), - [sym_false] = ACTIONS(1587), - [sym_null] = ACTIONS(1587), - [sym_undefined] = ACTIONS(1587), - [anon_sym_AT] = ACTIONS(1591), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_readonly] = ACTIONS(1587), - [anon_sym_get] = ACTIONS(1587), - [anon_sym_set] = ACTIONS(1587), - [anon_sym_declare] = ACTIONS(1587), - [anon_sym_public] = ACTIONS(1587), - [anon_sym_private] = ACTIONS(1587), - [anon_sym_protected] = ACTIONS(1587), - [anon_sym_override] = ACTIONS(1587), - [anon_sym_module] = ACTIONS(1587), - [anon_sym_any] = ACTIONS(1587), - [anon_sym_number] = ACTIONS(1587), - [anon_sym_boolean] = ACTIONS(1587), - [anon_sym_string] = ACTIONS(1587), - [anon_sym_symbol] = ACTIONS(1587), - [anon_sym_property] = ACTIONS(1587), - [anon_sym_signal] = ACTIONS(1587), - [anon_sym_on] = ACTIONS(1587), - [anon_sym_required] = ACTIONS(1587), - [anon_sym_component] = ACTIONS(1587), - [anon_sym_abstract] = ACTIONS(1587), - [anon_sym_interface] = ACTIONS(1587), - [anon_sym_enum] = ACTIONS(1587), - [sym__automatic_semicolon] = ACTIONS(1595), - }, - [683] = { - [sym_identifier] = ACTIONS(1637), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_typeof] = ACTIONS(1637), - [anon_sym_import] = ACTIONS(1637), - [anon_sym_from] = ACTIONS(1637), - [anon_sym_var] = ACTIONS(1637), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_const] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(1641), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_if] = ACTIONS(1637), - [anon_sym_switch] = ACTIONS(1637), - [anon_sym_for] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1641), - [anon_sym_await] = ACTIONS(1637), - [anon_sym_of] = ACTIONS(1637), - [anon_sym_while] = ACTIONS(1637), - [anon_sym_do] = ACTIONS(1637), - [anon_sym_try] = ACTIONS(1637), - [anon_sym_with] = ACTIONS(1637), - [anon_sym_break] = ACTIONS(1637), - [anon_sym_continue] = ACTIONS(1637), - [anon_sym_debugger] = ACTIONS(1637), - [anon_sym_return] = ACTIONS(1637), - [anon_sym_throw] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_case] = ACTIONS(1637), - [anon_sym_yield] = ACTIONS(1637), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_LTtemplate_GT] = ACTIONS(1641), - [anon_sym_LT] = ACTIONS(1637), - [anon_sym_SLASH] = ACTIONS(1637), - [anon_sym_class] = ACTIONS(1637), - [anon_sym_async] = ACTIONS(1637), - [anon_sym_function] = ACTIONS(1637), - [anon_sym_new] = ACTIONS(1637), - [anon_sym_PLUS] = ACTIONS(1637), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_TILDE] = ACTIONS(1641), - [anon_sym_void] = ACTIONS(1637), - [anon_sym_delete] = ACTIONS(1637), - [anon_sym_PLUS_PLUS] = ACTIONS(1641), - [anon_sym_DASH_DASH] = ACTIONS(1641), - [anon_sym_DQUOTE] = ACTIONS(1641), - [anon_sym_SQUOTE] = ACTIONS(1641), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1641), - [sym_number] = ACTIONS(1641), - [sym_this] = ACTIONS(1637), - [sym_super] = ACTIONS(1637), - [sym_true] = ACTIONS(1637), - [sym_false] = ACTIONS(1637), - [sym_null] = ACTIONS(1637), - [sym_undefined] = ACTIONS(1637), - [anon_sym_AT] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_readonly] = ACTIONS(1637), - [anon_sym_get] = ACTIONS(1637), - [anon_sym_set] = ACTIONS(1637), - [anon_sym_declare] = ACTIONS(1637), - [anon_sym_public] = ACTIONS(1637), - [anon_sym_private] = ACTIONS(1637), - [anon_sym_protected] = ACTIONS(1637), - [anon_sym_override] = ACTIONS(1637), - [anon_sym_module] = ACTIONS(1637), - [anon_sym_any] = ACTIONS(1637), - [anon_sym_number] = ACTIONS(1637), - [anon_sym_boolean] = ACTIONS(1637), - [anon_sym_string] = ACTIONS(1637), - [anon_sym_symbol] = ACTIONS(1637), - [anon_sym_property] = ACTIONS(1637), - [anon_sym_signal] = ACTIONS(1637), - [anon_sym_on] = ACTIONS(1637), - [anon_sym_required] = ACTIONS(1637), - [anon_sym_component] = ACTIONS(1637), - [anon_sym_abstract] = ACTIONS(1637), - [anon_sym_interface] = ACTIONS(1637), - [anon_sym_enum] = ACTIONS(1637), - [sym__automatic_semicolon] = ACTIONS(1645), - }, - [684] = { - [sym_identifier] = ACTIONS(1567), - [anon_sym_export] = ACTIONS(1567), - [anon_sym_default] = ACTIONS(1567), - [anon_sym_type] = ACTIONS(1567), - [anon_sym_namespace] = ACTIONS(1567), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_typeof] = ACTIONS(1567), - [anon_sym_import] = ACTIONS(1567), - [anon_sym_from] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(1567), - [anon_sym_let] = ACTIONS(1567), - [anon_sym_const] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_else] = ACTIONS(1567), - [anon_sym_if] = ACTIONS(1567), - [anon_sym_switch] = ACTIONS(1567), - [anon_sym_for] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_await] = ACTIONS(1567), - [anon_sym_of] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1567), - [anon_sym_do] = ACTIONS(1567), - [anon_sym_try] = ACTIONS(1567), - [anon_sym_with] = ACTIONS(1567), - [anon_sym_break] = ACTIONS(1567), - [anon_sym_continue] = ACTIONS(1567), - [anon_sym_debugger] = ACTIONS(1567), - [anon_sym_return] = ACTIONS(1567), - [anon_sym_throw] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_case] = ACTIONS(1567), - [anon_sym_yield] = ACTIONS(1567), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LTtemplate_GT] = ACTIONS(1571), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_SLASH] = ACTIONS(1567), - [anon_sym_class] = ACTIONS(1567), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_function] = ACTIONS(1567), - [anon_sym_new] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_delete] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [anon_sym_SQUOTE] = ACTIONS(1571), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1571), - [sym_number] = ACTIONS(1571), - [sym_this] = ACTIONS(1567), - [sym_super] = ACTIONS(1567), - [sym_true] = ACTIONS(1567), - [sym_false] = ACTIONS(1567), - [sym_null] = ACTIONS(1567), - [sym_undefined] = ACTIONS(1567), - [anon_sym_AT] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1567), - [anon_sym_get] = ACTIONS(1567), - [anon_sym_set] = ACTIONS(1567), - [anon_sym_declare] = ACTIONS(1567), - [anon_sym_public] = ACTIONS(1567), - [anon_sym_private] = ACTIONS(1567), - [anon_sym_protected] = ACTIONS(1567), - [anon_sym_override] = ACTIONS(1567), - [anon_sym_module] = ACTIONS(1567), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_property] = ACTIONS(1567), - [anon_sym_signal] = ACTIONS(1567), - [anon_sym_on] = ACTIONS(1567), - [anon_sym_required] = ACTIONS(1567), - [anon_sym_component] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1567), - [anon_sym_interface] = ACTIONS(1567), - [anon_sym_enum] = ACTIONS(1567), - [sym__automatic_semicolon] = ACTIONS(1575), - }, - [685] = { - [sym_else_clause] = STATE(755), - [sym_identifier] = ACTIONS(2320), - [anon_sym_export] = ACTIONS(2320), - [anon_sym_default] = ACTIONS(2320), - [anon_sym_type] = ACTIONS(2320), - [anon_sym_namespace] = ACTIONS(2320), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_typeof] = ACTIONS(2320), - [anon_sym_import] = ACTIONS(2320), - [anon_sym_from] = ACTIONS(2320), - [anon_sym_var] = ACTIONS(2320), - [anon_sym_let] = ACTIONS(2320), - [anon_sym_const] = ACTIONS(2320), - [anon_sym_BANG] = ACTIONS(2322), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2320), - [anon_sym_switch] = ACTIONS(2320), - [anon_sym_for] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_await] = ACTIONS(2320), - [anon_sym_of] = ACTIONS(2320), - [anon_sym_while] = ACTIONS(2320), - [anon_sym_do] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2320), - [anon_sym_with] = ACTIONS(2320), - [anon_sym_break] = ACTIONS(2320), - [anon_sym_continue] = ACTIONS(2320), - [anon_sym_debugger] = ACTIONS(2320), - [anon_sym_return] = ACTIONS(2320), - [anon_sym_throw] = ACTIONS(2320), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_case] = ACTIONS(2320), - [anon_sym_yield] = ACTIONS(2320), - [anon_sym_LBRACK] = ACTIONS(2322), - [anon_sym_LTtemplate_GT] = ACTIONS(2322), - [anon_sym_LT] = ACTIONS(2320), - [anon_sym_SLASH] = ACTIONS(2320), - [anon_sym_class] = ACTIONS(2320), - [anon_sym_async] = ACTIONS(2320), - [anon_sym_function] = ACTIONS(2320), - [anon_sym_new] = ACTIONS(2320), - [anon_sym_PLUS] = ACTIONS(2320), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_TILDE] = ACTIONS(2322), - [anon_sym_void] = ACTIONS(2320), - [anon_sym_delete] = ACTIONS(2320), - [anon_sym_PLUS_PLUS] = ACTIONS(2322), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_DQUOTE] = ACTIONS(2322), - [anon_sym_SQUOTE] = ACTIONS(2322), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2322), - [sym_number] = ACTIONS(2322), - [sym_this] = ACTIONS(2320), - [sym_super] = ACTIONS(2320), - [sym_true] = ACTIONS(2320), - [sym_false] = ACTIONS(2320), - [sym_null] = ACTIONS(2320), - [sym_undefined] = ACTIONS(2320), - [anon_sym_AT] = ACTIONS(2322), - [anon_sym_static] = ACTIONS(2320), - [anon_sym_readonly] = ACTIONS(2320), - [anon_sym_get] = ACTIONS(2320), - [anon_sym_set] = ACTIONS(2320), - [anon_sym_declare] = ACTIONS(2320), - [anon_sym_public] = ACTIONS(2320), - [anon_sym_private] = ACTIONS(2320), - [anon_sym_protected] = ACTIONS(2320), - [anon_sym_override] = ACTIONS(2320), - [anon_sym_module] = ACTIONS(2320), - [anon_sym_any] = ACTIONS(2320), - [anon_sym_number] = ACTIONS(2320), - [anon_sym_boolean] = ACTIONS(2320), - [anon_sym_string] = ACTIONS(2320), - [anon_sym_symbol] = ACTIONS(2320), - [anon_sym_property] = ACTIONS(2320), - [anon_sym_signal] = ACTIONS(2320), - [anon_sym_on] = ACTIONS(2320), - [anon_sym_required] = ACTIONS(2320), - [anon_sym_component] = ACTIONS(2320), - [anon_sym_abstract] = ACTIONS(2320), - [anon_sym_interface] = ACTIONS(2320), - [anon_sym_enum] = ACTIONS(2320), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym_html_comment] = ACTIONS(5), + }, + [1287] = { + [sym_comment] = STATE(1287), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_default] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_case] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [sym_html_comment] = ACTIONS(5), + }, + [1288] = { + [sym_comment] = STATE(1288), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_case] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym_html_comment] = ACTIONS(5), + }, + [1289] = { + [sym_comment] = STATE(1289), + [sym_identifier] = ACTIONS(3464), + [anon_sym_export] = ACTIONS(3464), + [anon_sym_default] = ACTIONS(3464), + [anon_sym_type] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3464), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_typeof] = ACTIONS(3464), + [anon_sym_import] = ACTIONS(3464), + [anon_sym_from] = ACTIONS(3464), + [anon_sym_with] = ACTIONS(3464), + [anon_sym_var] = ACTIONS(3464), + [anon_sym_let] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_await] = ACTIONS(3464), + [anon_sym_of] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_debugger] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_case] = ACTIONS(3464), + [anon_sym_yield] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_LTtemplate_GT] = ACTIONS(3464), + [anon_sym_DQUOTE] = ACTIONS(3464), + [anon_sym_SQUOTE] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_async] = ACTIONS(3464), + [anon_sym_function] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_SLASH] = ACTIONS(3464), + [anon_sym_LT] = ACTIONS(3464), + [anon_sym_TILDE] = ACTIONS(3464), + [anon_sym_void] = ACTIONS(3464), + [anon_sym_delete] = ACTIONS(3464), + [anon_sym_PLUS_PLUS] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3464), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3464), + [sym_number] = ACTIONS(3464), + [sym_private_property_identifier] = ACTIONS(3464), + [sym_this] = ACTIONS(3464), + [sym_super] = ACTIONS(3464), + [sym_true] = ACTIONS(3464), + [sym_false] = ACTIONS(3464), + [sym_null] = ACTIONS(3464), + [sym_undefined] = ACTIONS(3464), + [anon_sym_AT] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_readonly] = ACTIONS(3464), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3464), + [anon_sym_declare] = ACTIONS(3464), + [anon_sym_public] = ACTIONS(3464), + [anon_sym_private] = ACTIONS(3464), + [anon_sym_protected] = ACTIONS(3464), + [anon_sym_override] = ACTIONS(3464), + [anon_sym_module] = ACTIONS(3464), + [anon_sym_any] = ACTIONS(3464), + [anon_sym_number] = ACTIONS(3464), + [anon_sym_boolean] = ACTIONS(3464), + [anon_sym_string] = ACTIONS(3464), + [anon_sym_symbol] = ACTIONS(3464), + [anon_sym_object] = ACTIONS(3464), + [anon_sym_property] = ACTIONS(3464), + [anon_sym_signal] = ACTIONS(3464), + [anon_sym_on] = ACTIONS(3464), + [anon_sym_required] = ACTIONS(3464), + [anon_sym_component] = ACTIONS(3464), + [anon_sym_abstract] = ACTIONS(3464), + [anon_sym_interface] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), + [sym_html_comment] = ACTIONS(5), + }, + [1290] = { + [sym_comment] = STATE(1290), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_default] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_case] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [sym_html_comment] = ACTIONS(5), + }, + [1291] = { + [sym_comment] = STATE(1291), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_DOT] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym_html_comment] = ACTIONS(5), + }, + [1292] = { + [sym_comment] = STATE(1292), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3690), + [sym_html_comment] = ACTIONS(5), + }, + [1293] = { + [sym_comment] = STATE(1293), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_case] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), + }, + [1294] = { + [sym_comment] = STATE(1294), + [sym_identifier] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_default] = ACTIONS(3558), + [anon_sym_type] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_typeof] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_from] = ACTIONS(3558), + [anon_sym_with] = ACTIONS(3558), + [anon_sym_var] = ACTIONS(3558), + [anon_sym_let] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_await] = ACTIONS(3558), + [anon_sym_of] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_debugger] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym_case] = ACTIONS(3558), + [anon_sym_yield] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_LTtemplate_GT] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_async] = ACTIONS(3558), + [anon_sym_function] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_void] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3558), + [sym_number] = ACTIONS(3558), + [sym_private_property_identifier] = ACTIONS(3558), + [sym_this] = ACTIONS(3558), + [sym_super] = ACTIONS(3558), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [sym_null] = ACTIONS(3558), + [sym_undefined] = ACTIONS(3558), + [anon_sym_AT] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_readonly] = ACTIONS(3558), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3558), + [anon_sym_declare] = ACTIONS(3558), + [anon_sym_public] = ACTIONS(3558), + [anon_sym_private] = ACTIONS(3558), + [anon_sym_protected] = ACTIONS(3558), + [anon_sym_override] = ACTIONS(3558), + [anon_sym_module] = ACTIONS(3558), + [anon_sym_any] = ACTIONS(3558), + [anon_sym_number] = ACTIONS(3558), + [anon_sym_boolean] = ACTIONS(3558), + [anon_sym_string] = ACTIONS(3558), + [anon_sym_symbol] = ACTIONS(3558), + [anon_sym_object] = ACTIONS(3558), + [anon_sym_property] = ACTIONS(3558), + [anon_sym_signal] = ACTIONS(3558), + [anon_sym_on] = ACTIONS(3558), + [anon_sym_required] = ACTIONS(3558), + [anon_sym_component] = ACTIONS(3558), + [anon_sym_abstract] = ACTIONS(3558), + [anon_sym_interface] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), + [sym_html_comment] = ACTIONS(5), + }, + [1295] = { + [sym_comment] = STATE(1295), + [sym_identifier] = ACTIONS(2380), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_namespace] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2380), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_typeof] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2380), + [anon_sym_from] = ACTIONS(2380), + [anon_sym_with] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_switch] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_await] = ACTIONS(2380), + [anon_sym_of] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_debugger] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_case] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_LTtemplate_GT] = ACTIONS(2380), + [anon_sym_DQUOTE] = ACTIONS(2380), + [anon_sym_SQUOTE] = ACTIONS(2380), + [anon_sym_class] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_using] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_TILDE] = ACTIONS(2380), + [anon_sym_void] = ACTIONS(2380), + [anon_sym_delete] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2380), + [anon_sym_DASH_DASH] = ACTIONS(2380), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2380), + [sym_number] = ACTIONS(2380), + [sym_private_property_identifier] = ACTIONS(2380), + [sym_this] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_true] = ACTIONS(2380), + [sym_false] = ACTIONS(2380), + [sym_null] = ACTIONS(2380), + [sym_undefined] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_readonly] = ACTIONS(2380), + [anon_sym_get] = ACTIONS(2380), + [anon_sym_set] = ACTIONS(2380), + [anon_sym_declare] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_protected] = ACTIONS(2380), + [anon_sym_override] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_any] = ACTIONS(2380), + [anon_sym_number] = ACTIONS(2380), + [anon_sym_boolean] = ACTIONS(2380), + [anon_sym_string] = ACTIONS(2380), + [anon_sym_symbol] = ACTIONS(2380), + [anon_sym_object] = ACTIONS(2380), + [anon_sym_property] = ACTIONS(2380), + [anon_sym_signal] = ACTIONS(2380), + [anon_sym_on] = ACTIONS(2380), + [anon_sym_required] = ACTIONS(2380), + [anon_sym_component] = ACTIONS(2380), + [anon_sym_abstract] = ACTIONS(2380), + [anon_sym_interface] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [sym_html_comment] = ACTIONS(5), + }, + [1296] = { + [sym_comment] = STATE(1296), + [sym_identifier] = ACTIONS(3586), + [anon_sym_export] = ACTIONS(3586), + [anon_sym_default] = ACTIONS(3586), + [anon_sym_type] = ACTIONS(3586), + [anon_sym_namespace] = ACTIONS(3586), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_RBRACE] = ACTIONS(3586), + [anon_sym_typeof] = ACTIONS(3586), + [anon_sym_import] = ACTIONS(3586), + [anon_sym_from] = ACTIONS(3586), + [anon_sym_with] = ACTIONS(3586), + [anon_sym_var] = ACTIONS(3586), + [anon_sym_let] = ACTIONS(3586), + [anon_sym_const] = ACTIONS(3586), + [anon_sym_BANG] = ACTIONS(3586), + [anon_sym_if] = ACTIONS(3586), + [anon_sym_switch] = ACTIONS(3586), + [anon_sym_for] = ACTIONS(3586), + [anon_sym_LPAREN] = ACTIONS(3586), + [anon_sym_await] = ACTIONS(3586), + [anon_sym_of] = ACTIONS(3586), + [anon_sym_while] = ACTIONS(3586), + [anon_sym_do] = ACTIONS(3586), + [anon_sym_try] = ACTIONS(3586), + [anon_sym_break] = ACTIONS(3586), + [anon_sym_continue] = ACTIONS(3586), + [anon_sym_debugger] = ACTIONS(3586), + [anon_sym_return] = ACTIONS(3586), + [anon_sym_throw] = ACTIONS(3586), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_case] = ACTIONS(3586), + [anon_sym_yield] = ACTIONS(3586), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LTtemplate_GT] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3586), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_class] = ACTIONS(3586), + [anon_sym_async] = ACTIONS(3586), + [anon_sym_function] = ACTIONS(3586), + [anon_sym_new] = ACTIONS(3586), + [anon_sym_using] = ACTIONS(3586), + [anon_sym_PLUS] = ACTIONS(3586), + [anon_sym_DASH] = ACTIONS(3586), + [anon_sym_SLASH] = ACTIONS(3586), + [anon_sym_LT] = ACTIONS(3586), + [anon_sym_TILDE] = ACTIONS(3586), + [anon_sym_void] = ACTIONS(3586), + [anon_sym_delete] = ACTIONS(3586), + [anon_sym_PLUS_PLUS] = ACTIONS(3586), + [anon_sym_DASH_DASH] = ACTIONS(3586), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3586), + [sym_number] = ACTIONS(3586), + [sym_private_property_identifier] = ACTIONS(3586), + [sym_this] = ACTIONS(3586), + [sym_super] = ACTIONS(3586), + [sym_true] = ACTIONS(3586), + [sym_false] = ACTIONS(3586), + [sym_null] = ACTIONS(3586), + [sym_undefined] = ACTIONS(3586), + [anon_sym_AT] = ACTIONS(3586), + [anon_sym_static] = ACTIONS(3586), + [anon_sym_readonly] = ACTIONS(3586), + [anon_sym_get] = ACTIONS(3586), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_declare] = ACTIONS(3586), + [anon_sym_public] = ACTIONS(3586), + [anon_sym_private] = ACTIONS(3586), + [anon_sym_protected] = ACTIONS(3586), + [anon_sym_override] = ACTIONS(3586), + [anon_sym_module] = ACTIONS(3586), + [anon_sym_any] = ACTIONS(3586), + [anon_sym_number] = ACTIONS(3586), + [anon_sym_boolean] = ACTIONS(3586), + [anon_sym_string] = ACTIONS(3586), + [anon_sym_symbol] = ACTIONS(3586), + [anon_sym_object] = ACTIONS(3586), + [anon_sym_property] = ACTIONS(3586), + [anon_sym_signal] = ACTIONS(3586), + [anon_sym_on] = ACTIONS(3586), + [anon_sym_required] = ACTIONS(3586), + [anon_sym_component] = ACTIONS(3586), + [anon_sym_abstract] = ACTIONS(3586), + [anon_sym_interface] = ACTIONS(3586), + [anon_sym_enum] = ACTIONS(3586), + [sym_html_comment] = ACTIONS(5), + }, + [1297] = { + [sym_comment] = STATE(1297), + [sym_identifier] = ACTIONS(3536), + [anon_sym_export] = ACTIONS(3536), + [anon_sym_default] = ACTIONS(3536), + [anon_sym_type] = ACTIONS(3536), + [anon_sym_namespace] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_RBRACE] = ACTIONS(3536), + [anon_sym_typeof] = ACTIONS(3536), + [anon_sym_import] = ACTIONS(3536), + [anon_sym_from] = ACTIONS(3536), + [anon_sym_with] = ACTIONS(3536), + [anon_sym_var] = ACTIONS(3536), + [anon_sym_let] = ACTIONS(3536), + [anon_sym_const] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_if] = ACTIONS(3536), + [anon_sym_switch] = ACTIONS(3536), + [anon_sym_for] = ACTIONS(3536), + [anon_sym_LPAREN] = ACTIONS(3536), + [anon_sym_await] = ACTIONS(3536), + [anon_sym_of] = ACTIONS(3536), + [anon_sym_while] = ACTIONS(3536), + [anon_sym_do] = ACTIONS(3536), + [anon_sym_try] = ACTIONS(3536), + [anon_sym_break] = ACTIONS(3536), + [anon_sym_continue] = ACTIONS(3536), + [anon_sym_debugger] = ACTIONS(3536), + [anon_sym_return] = ACTIONS(3536), + [anon_sym_throw] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym_case] = ACTIONS(3536), + [anon_sym_yield] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LTtemplate_GT] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_class] = ACTIONS(3536), + [anon_sym_async] = ACTIONS(3536), + [anon_sym_function] = ACTIONS(3536), + [anon_sym_new] = ACTIONS(3536), + [anon_sym_using] = ACTIONS(3536), + [anon_sym_PLUS] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_void] = ACTIONS(3536), + [anon_sym_delete] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_DASH_DASH] = ACTIONS(3536), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3536), + [sym_number] = ACTIONS(3536), + [sym_private_property_identifier] = ACTIONS(3536), + [sym_this] = ACTIONS(3536), + [sym_super] = ACTIONS(3536), + [sym_true] = ACTIONS(3536), + [sym_false] = ACTIONS(3536), + [sym_null] = ACTIONS(3536), + [sym_undefined] = ACTIONS(3536), + [anon_sym_AT] = ACTIONS(3536), + [anon_sym_static] = ACTIONS(3536), + [anon_sym_readonly] = ACTIONS(3536), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3536), + [anon_sym_declare] = ACTIONS(3536), + [anon_sym_public] = ACTIONS(3536), + [anon_sym_private] = ACTIONS(3536), + [anon_sym_protected] = ACTIONS(3536), + [anon_sym_override] = ACTIONS(3536), + [anon_sym_module] = ACTIONS(3536), + [anon_sym_any] = ACTIONS(3536), + [anon_sym_number] = ACTIONS(3536), + [anon_sym_boolean] = ACTIONS(3536), + [anon_sym_string] = ACTIONS(3536), + [anon_sym_symbol] = ACTIONS(3536), + [anon_sym_object] = ACTIONS(3536), + [anon_sym_property] = ACTIONS(3536), + [anon_sym_signal] = ACTIONS(3536), + [anon_sym_on] = ACTIONS(3536), + [anon_sym_required] = ACTIONS(3536), + [anon_sym_component] = ACTIONS(3536), + [anon_sym_abstract] = ACTIONS(3536), + [anon_sym_interface] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3536), + [sym_html_comment] = ACTIONS(5), + }, + [1298] = { + [sym_comment] = STATE(1298), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3692), + [sym_html_comment] = ACTIONS(5), + }, + [1299] = { + [sym_comment] = STATE(1299), + [sym_identifier] = ACTIONS(3538), + [anon_sym_export] = ACTIONS(3538), + [anon_sym_default] = ACTIONS(3538), + [anon_sym_type] = ACTIONS(3538), + [anon_sym_namespace] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_RBRACE] = ACTIONS(3538), + [anon_sym_typeof] = ACTIONS(3538), + [anon_sym_import] = ACTIONS(3538), + [anon_sym_from] = ACTIONS(3538), + [anon_sym_with] = ACTIONS(3538), + [anon_sym_var] = ACTIONS(3538), + [anon_sym_let] = ACTIONS(3538), + [anon_sym_const] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3538), + [anon_sym_switch] = ACTIONS(3538), + [anon_sym_for] = ACTIONS(3538), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_await] = ACTIONS(3538), + [anon_sym_of] = ACTIONS(3538), + [anon_sym_while] = ACTIONS(3538), + [anon_sym_do] = ACTIONS(3538), + [anon_sym_try] = ACTIONS(3538), + [anon_sym_break] = ACTIONS(3538), + [anon_sym_continue] = ACTIONS(3538), + [anon_sym_debugger] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3538), + [anon_sym_throw] = ACTIONS(3538), + [anon_sym_SEMI] = ACTIONS(3538), + [anon_sym_case] = ACTIONS(3538), + [anon_sym_yield] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_LTtemplate_GT] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3538), + [anon_sym_async] = ACTIONS(3538), + [anon_sym_function] = ACTIONS(3538), + [anon_sym_new] = ACTIONS(3538), + [anon_sym_using] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3538), + [anon_sym_DASH] = ACTIONS(3538), + [anon_sym_SLASH] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(3538), + [anon_sym_void] = ACTIONS(3538), + [anon_sym_delete] = ACTIONS(3538), + [anon_sym_PLUS_PLUS] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3538), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3538), + [sym_number] = ACTIONS(3538), + [sym_private_property_identifier] = ACTIONS(3538), + [sym_this] = ACTIONS(3538), + [sym_super] = ACTIONS(3538), + [sym_true] = ACTIONS(3538), + [sym_false] = ACTIONS(3538), + [sym_null] = ACTIONS(3538), + [sym_undefined] = ACTIONS(3538), + [anon_sym_AT] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3538), + [anon_sym_readonly] = ACTIONS(3538), + [anon_sym_get] = ACTIONS(3538), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_declare] = ACTIONS(3538), + [anon_sym_public] = ACTIONS(3538), + [anon_sym_private] = ACTIONS(3538), + [anon_sym_protected] = ACTIONS(3538), + [anon_sym_override] = ACTIONS(3538), + [anon_sym_module] = ACTIONS(3538), + [anon_sym_any] = ACTIONS(3538), + [anon_sym_number] = ACTIONS(3538), + [anon_sym_boolean] = ACTIONS(3538), + [anon_sym_string] = ACTIONS(3538), + [anon_sym_symbol] = ACTIONS(3538), + [anon_sym_object] = ACTIONS(3538), + [anon_sym_property] = ACTIONS(3538), + [anon_sym_signal] = ACTIONS(3538), + [anon_sym_on] = ACTIONS(3538), + [anon_sym_required] = ACTIONS(3538), + [anon_sym_component] = ACTIONS(3538), + [anon_sym_abstract] = ACTIONS(3538), + [anon_sym_interface] = ACTIONS(3538), + [anon_sym_enum] = ACTIONS(3538), + [sym_html_comment] = ACTIONS(5), + }, + [1300] = { + [sym_comment] = STATE(1300), + [sym_identifier] = ACTIONS(3592), + [anon_sym_export] = ACTIONS(3592), + [anon_sym_default] = ACTIONS(3592), + [anon_sym_type] = ACTIONS(3592), + [anon_sym_namespace] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_RBRACE] = ACTIONS(3592), + [anon_sym_typeof] = ACTIONS(3592), + [anon_sym_import] = ACTIONS(3592), + [anon_sym_from] = ACTIONS(3592), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_var] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_BANG] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_await] = ACTIONS(3592), + [anon_sym_of] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_debugger] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_throw] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_case] = ACTIONS(3592), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LTtemplate_GT] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(3592), + [anon_sym_class] = ACTIONS(3592), + [anon_sym_async] = ACTIONS(3592), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_using] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_SLASH] = ACTIONS(3592), + [anon_sym_LT] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3592), + [anon_sym_void] = ACTIONS(3592), + [anon_sym_delete] = ACTIONS(3592), + [anon_sym_PLUS_PLUS] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3592), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3592), + [sym_number] = ACTIONS(3592), + [sym_private_property_identifier] = ACTIONS(3592), + [sym_this] = ACTIONS(3592), + [sym_super] = ACTIONS(3592), + [sym_true] = ACTIONS(3592), + [sym_false] = ACTIONS(3592), + [sym_null] = ACTIONS(3592), + [sym_undefined] = ACTIONS(3592), + [anon_sym_AT] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3592), + [anon_sym_readonly] = ACTIONS(3592), + [anon_sym_get] = ACTIONS(3592), + [anon_sym_set] = ACTIONS(3592), + [anon_sym_declare] = ACTIONS(3592), + [anon_sym_public] = ACTIONS(3592), + [anon_sym_private] = ACTIONS(3592), + [anon_sym_protected] = ACTIONS(3592), + [anon_sym_override] = ACTIONS(3592), + [anon_sym_module] = ACTIONS(3592), + [anon_sym_any] = ACTIONS(3592), + [anon_sym_number] = ACTIONS(3592), + [anon_sym_boolean] = ACTIONS(3592), + [anon_sym_string] = ACTIONS(3592), + [anon_sym_symbol] = ACTIONS(3592), + [anon_sym_object] = ACTIONS(3592), + [anon_sym_property] = ACTIONS(3592), + [anon_sym_signal] = ACTIONS(3592), + [anon_sym_on] = ACTIONS(3592), + [anon_sym_required] = ACTIONS(3592), + [anon_sym_component] = ACTIONS(3592), + [anon_sym_abstract] = ACTIONS(3592), + [anon_sym_interface] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), + [sym_html_comment] = ACTIONS(5), + }, + [1301] = { + [sym_comment] = STATE(1301), + [sym_identifier] = ACTIONS(3560), + [anon_sym_export] = ACTIONS(3560), + [anon_sym_default] = ACTIONS(3560), + [anon_sym_type] = ACTIONS(3560), + [anon_sym_namespace] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_RBRACE] = ACTIONS(3560), + [anon_sym_typeof] = ACTIONS(3560), + [anon_sym_import] = ACTIONS(3560), + [anon_sym_from] = ACTIONS(3560), + [anon_sym_with] = ACTIONS(3560), + [anon_sym_var] = ACTIONS(3560), + [anon_sym_let] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3560), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_switch] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_LPAREN] = ACTIONS(3560), + [anon_sym_await] = ACTIONS(3560), + [anon_sym_of] = ACTIONS(3560), + [anon_sym_while] = ACTIONS(3560), + [anon_sym_do] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_debugger] = ACTIONS(3560), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_throw] = ACTIONS(3560), + [anon_sym_SEMI] = ACTIONS(3560), + [anon_sym_case] = ACTIONS(3560), + [anon_sym_yield] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_LTtemplate_GT] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3560), + [anon_sym_class] = ACTIONS(3560), + [anon_sym_async] = ACTIONS(3560), + [anon_sym_function] = ACTIONS(3560), + [anon_sym_new] = ACTIONS(3560), + [anon_sym_using] = ACTIONS(3560), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3560), + [anon_sym_void] = ACTIONS(3560), + [anon_sym_delete] = ACTIONS(3560), + [anon_sym_PLUS_PLUS] = ACTIONS(3560), + [anon_sym_DASH_DASH] = ACTIONS(3560), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3560), + [sym_number] = ACTIONS(3560), + [sym_private_property_identifier] = ACTIONS(3560), + [sym_this] = ACTIONS(3560), + [sym_super] = ACTIONS(3560), + [sym_true] = ACTIONS(3560), + [sym_false] = ACTIONS(3560), + [sym_null] = ACTIONS(3560), + [sym_undefined] = ACTIONS(3560), + [anon_sym_AT] = ACTIONS(3560), + [anon_sym_static] = ACTIONS(3560), + [anon_sym_readonly] = ACTIONS(3560), + [anon_sym_get] = ACTIONS(3560), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_declare] = ACTIONS(3560), + [anon_sym_public] = ACTIONS(3560), + [anon_sym_private] = ACTIONS(3560), + [anon_sym_protected] = ACTIONS(3560), + [anon_sym_override] = ACTIONS(3560), + [anon_sym_module] = ACTIONS(3560), + [anon_sym_any] = ACTIONS(3560), + [anon_sym_number] = ACTIONS(3560), + [anon_sym_boolean] = ACTIONS(3560), + [anon_sym_string] = ACTIONS(3560), + [anon_sym_symbol] = ACTIONS(3560), + [anon_sym_object] = ACTIONS(3560), + [anon_sym_property] = ACTIONS(3560), + [anon_sym_signal] = ACTIONS(3560), + [anon_sym_on] = ACTIONS(3560), + [anon_sym_required] = ACTIONS(3560), + [anon_sym_component] = ACTIONS(3560), + [anon_sym_abstract] = ACTIONS(3560), + [anon_sym_interface] = ACTIONS(3560), + [anon_sym_enum] = ACTIONS(3560), + [sym_html_comment] = ACTIONS(5), + }, + [1302] = { + [sym_comment] = STATE(1302), + [sym_identifier] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_default] = ACTIONS(3600), + [anon_sym_type] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_typeof] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_from] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3600), + [anon_sym_var] = ACTIONS(3600), + [anon_sym_let] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_await] = ACTIONS(3600), + [anon_sym_of] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_debugger] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_case] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LTtemplate_GT] = ACTIONS(3600), + [anon_sym_DQUOTE] = ACTIONS(3600), + [anon_sym_SQUOTE] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_async] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_TILDE] = ACTIONS(3600), + [anon_sym_void] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3600), + [sym_number] = ACTIONS(3600), + [sym_private_property_identifier] = ACTIONS(3600), + [sym_this] = ACTIONS(3600), + [sym_super] = ACTIONS(3600), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [sym_null] = ACTIONS(3600), + [sym_undefined] = ACTIONS(3600), + [anon_sym_AT] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_readonly] = ACTIONS(3600), + [anon_sym_get] = ACTIONS(3600), + [anon_sym_set] = ACTIONS(3600), + [anon_sym_declare] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_override] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_any] = ACTIONS(3600), + [anon_sym_number] = ACTIONS(3600), + [anon_sym_boolean] = ACTIONS(3600), + [anon_sym_string] = ACTIONS(3600), + [anon_sym_symbol] = ACTIONS(3600), + [anon_sym_object] = ACTIONS(3600), + [anon_sym_property] = ACTIONS(3600), + [anon_sym_signal] = ACTIONS(3600), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_required] = ACTIONS(3600), + [anon_sym_component] = ACTIONS(3600), + [anon_sym_abstract] = ACTIONS(3600), + [anon_sym_interface] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [sym_html_comment] = ACTIONS(5), + }, + [1303] = { + [sym_comment] = STATE(1303), + [sym_identifier] = ACTIONS(3566), + [anon_sym_export] = ACTIONS(3566), + [anon_sym_default] = ACTIONS(3566), + [anon_sym_type] = ACTIONS(3566), + [anon_sym_namespace] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_RBRACE] = ACTIONS(3566), + [anon_sym_typeof] = ACTIONS(3566), + [anon_sym_import] = ACTIONS(3566), + [anon_sym_from] = ACTIONS(3566), + [anon_sym_with] = ACTIONS(3566), + [anon_sym_var] = ACTIONS(3566), + [anon_sym_let] = ACTIONS(3566), + [anon_sym_const] = ACTIONS(3566), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_if] = ACTIONS(3566), + [anon_sym_switch] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_await] = ACTIONS(3566), + [anon_sym_of] = ACTIONS(3566), + [anon_sym_while] = ACTIONS(3566), + [anon_sym_do] = ACTIONS(3566), + [anon_sym_try] = ACTIONS(3566), + [anon_sym_break] = ACTIONS(3566), + [anon_sym_continue] = ACTIONS(3566), + [anon_sym_debugger] = ACTIONS(3566), + [anon_sym_return] = ACTIONS(3566), + [anon_sym_throw] = ACTIONS(3566), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym_case] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3566), + [anon_sym_LBRACK] = ACTIONS(3566), + [anon_sym_LTtemplate_GT] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [anon_sym_SQUOTE] = ACTIONS(3566), + [anon_sym_class] = ACTIONS(3566), + [anon_sym_async] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3566), + [anon_sym_using] = ACTIONS(3566), + [anon_sym_PLUS] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3566), + [anon_sym_SLASH] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_TILDE] = ACTIONS(3566), + [anon_sym_void] = ACTIONS(3566), + [anon_sym_delete] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3566), + [sym_number] = ACTIONS(3566), + [sym_private_property_identifier] = ACTIONS(3566), + [sym_this] = ACTIONS(3566), + [sym_super] = ACTIONS(3566), + [sym_true] = ACTIONS(3566), + [sym_false] = ACTIONS(3566), + [sym_null] = ACTIONS(3566), + [sym_undefined] = ACTIONS(3566), + [anon_sym_AT] = ACTIONS(3566), + [anon_sym_static] = ACTIONS(3566), + [anon_sym_readonly] = ACTIONS(3566), + [anon_sym_get] = ACTIONS(3566), + [anon_sym_set] = ACTIONS(3566), + [anon_sym_declare] = ACTIONS(3566), + [anon_sym_public] = ACTIONS(3566), + [anon_sym_private] = ACTIONS(3566), + [anon_sym_protected] = ACTIONS(3566), + [anon_sym_override] = ACTIONS(3566), + [anon_sym_module] = ACTIONS(3566), + [anon_sym_any] = ACTIONS(3566), + [anon_sym_number] = ACTIONS(3566), + [anon_sym_boolean] = ACTIONS(3566), + [anon_sym_string] = ACTIONS(3566), + [anon_sym_symbol] = ACTIONS(3566), + [anon_sym_object] = ACTIONS(3566), + [anon_sym_property] = ACTIONS(3566), + [anon_sym_signal] = ACTIONS(3566), + [anon_sym_on] = ACTIONS(3566), + [anon_sym_required] = ACTIONS(3566), + [anon_sym_component] = ACTIONS(3566), + [anon_sym_abstract] = ACTIONS(3566), + [anon_sym_interface] = ACTIONS(3566), + [anon_sym_enum] = ACTIONS(3566), + [sym_html_comment] = ACTIONS(5), + }, + [1304] = { + [sym_comment] = STATE(1304), + [sym_identifier] = ACTIONS(3644), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_default] = ACTIONS(3644), + [anon_sym_type] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_typeof] = ACTIONS(3644), + [anon_sym_import] = ACTIONS(3644), + [anon_sym_from] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [anon_sym_var] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_await] = ACTIONS(3644), + [anon_sym_of] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_debugger] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_case] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_LTtemplate_GT] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [anon_sym_SQUOTE] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_async] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [anon_sym_void] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3644), + [sym_number] = ACTIONS(3644), + [sym_private_property_identifier] = ACTIONS(3644), + [sym_this] = ACTIONS(3644), + [sym_super] = ACTIONS(3644), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [sym_null] = ACTIONS(3644), + [sym_undefined] = ACTIONS(3644), + [anon_sym_AT] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_readonly] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(3644), + [anon_sym_set] = ACTIONS(3644), + [anon_sym_declare] = ACTIONS(3644), + [anon_sym_public] = ACTIONS(3644), + [anon_sym_private] = ACTIONS(3644), + [anon_sym_protected] = ACTIONS(3644), + [anon_sym_override] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_any] = ACTIONS(3644), + [anon_sym_number] = ACTIONS(3644), + [anon_sym_boolean] = ACTIONS(3644), + [anon_sym_string] = ACTIONS(3644), + [anon_sym_symbol] = ACTIONS(3644), + [anon_sym_object] = ACTIONS(3644), + [anon_sym_property] = ACTIONS(3644), + [anon_sym_signal] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_required] = ACTIONS(3644), + [anon_sym_component] = ACTIONS(3644), + [anon_sym_abstract] = ACTIONS(3644), + [anon_sym_interface] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [sym_html_comment] = ACTIONS(5), + }, + [1305] = { + [sym_comment] = STATE(1305), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_catch] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), + }, + [1306] = { + [sym_comment] = STATE(1306), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_from] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_of] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_case] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_LTtemplate_GT] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_property] = ACTIONS(2456), + [anon_sym_signal] = ACTIONS(2456), + [anon_sym_on] = ACTIONS(2456), + [anon_sym_required] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym_html_comment] = ACTIONS(5), + }, + [1307] = { + [sym_comment] = STATE(1307), + [sym_identifier] = ACTIONS(3540), + [anon_sym_export] = ACTIONS(3540), + [anon_sym_default] = ACTIONS(3540), + [anon_sym_type] = ACTIONS(3540), + [anon_sym_namespace] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3540), + [anon_sym_RBRACE] = ACTIONS(3540), + [anon_sym_typeof] = ACTIONS(3540), + [anon_sym_import] = ACTIONS(3540), + [anon_sym_from] = ACTIONS(3540), + [anon_sym_with] = ACTIONS(3540), + [anon_sym_var] = ACTIONS(3540), + [anon_sym_let] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3540), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_LPAREN] = ACTIONS(3540), + [anon_sym_await] = ACTIONS(3540), + [anon_sym_of] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_debugger] = ACTIONS(3540), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym_case] = ACTIONS(3540), + [anon_sym_yield] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_LTtemplate_GT] = ACTIONS(3540), + [anon_sym_DQUOTE] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3540), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_async] = ACTIONS(3540), + [anon_sym_function] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_using] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_SLASH] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3540), + [anon_sym_void] = ACTIONS(3540), + [anon_sym_delete] = ACTIONS(3540), + [anon_sym_PLUS_PLUS] = ACTIONS(3540), + [anon_sym_DASH_DASH] = ACTIONS(3540), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3540), + [sym_number] = ACTIONS(3540), + [sym_private_property_identifier] = ACTIONS(3540), + [sym_this] = ACTIONS(3540), + [sym_super] = ACTIONS(3540), + [sym_true] = ACTIONS(3540), + [sym_false] = ACTIONS(3540), + [sym_null] = ACTIONS(3540), + [sym_undefined] = ACTIONS(3540), + [anon_sym_AT] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_readonly] = ACTIONS(3540), + [anon_sym_get] = ACTIONS(3540), + [anon_sym_set] = ACTIONS(3540), + [anon_sym_declare] = ACTIONS(3540), + [anon_sym_public] = ACTIONS(3540), + [anon_sym_private] = ACTIONS(3540), + [anon_sym_protected] = ACTIONS(3540), + [anon_sym_override] = ACTIONS(3540), + [anon_sym_module] = ACTIONS(3540), + [anon_sym_any] = ACTIONS(3540), + [anon_sym_number] = ACTIONS(3540), + [anon_sym_boolean] = ACTIONS(3540), + [anon_sym_string] = ACTIONS(3540), + [anon_sym_symbol] = ACTIONS(3540), + [anon_sym_object] = ACTIONS(3540), + [anon_sym_property] = ACTIONS(3540), + [anon_sym_signal] = ACTIONS(3540), + [anon_sym_on] = ACTIONS(3540), + [anon_sym_required] = ACTIONS(3540), + [anon_sym_component] = ACTIONS(3540), + [anon_sym_abstract] = ACTIONS(3540), + [anon_sym_interface] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), + [sym_html_comment] = ACTIONS(5), + }, + [1308] = { + [sym_comment] = STATE(1308), + [sym_identifier] = ACTIONS(3568), + [anon_sym_export] = ACTIONS(3568), + [anon_sym_default] = ACTIONS(3568), + [anon_sym_type] = ACTIONS(3568), + [anon_sym_namespace] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_RBRACE] = ACTIONS(3568), + [anon_sym_typeof] = ACTIONS(3568), + [anon_sym_import] = ACTIONS(3568), + [anon_sym_from] = ACTIONS(3568), + [anon_sym_with] = ACTIONS(3568), + [anon_sym_var] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_const] = ACTIONS(3568), + [anon_sym_BANG] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_switch] = ACTIONS(3568), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_await] = ACTIONS(3568), + [anon_sym_of] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_break] = ACTIONS(3568), + [anon_sym_continue] = ACTIONS(3568), + [anon_sym_debugger] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_throw] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3568), + [anon_sym_case] = ACTIONS(3568), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LTtemplate_GT] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_SQUOTE] = ACTIONS(3568), + [anon_sym_class] = ACTIONS(3568), + [anon_sym_async] = ACTIONS(3568), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_using] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_SLASH] = ACTIONS(3568), + [anon_sym_LT] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3568), + [anon_sym_void] = ACTIONS(3568), + [anon_sym_delete] = ACTIONS(3568), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3568), + [sym_number] = ACTIONS(3568), + [sym_private_property_identifier] = ACTIONS(3568), + [sym_this] = ACTIONS(3568), + [sym_super] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_null] = ACTIONS(3568), + [sym_undefined] = ACTIONS(3568), + [anon_sym_AT] = ACTIONS(3568), + [anon_sym_static] = ACTIONS(3568), + [anon_sym_readonly] = ACTIONS(3568), + [anon_sym_get] = ACTIONS(3568), + [anon_sym_set] = ACTIONS(3568), + [anon_sym_declare] = ACTIONS(3568), + [anon_sym_public] = ACTIONS(3568), + [anon_sym_private] = ACTIONS(3568), + [anon_sym_protected] = ACTIONS(3568), + [anon_sym_override] = ACTIONS(3568), + [anon_sym_module] = ACTIONS(3568), + [anon_sym_any] = ACTIONS(3568), + [anon_sym_number] = ACTIONS(3568), + [anon_sym_boolean] = ACTIONS(3568), + [anon_sym_string] = ACTIONS(3568), + [anon_sym_symbol] = ACTIONS(3568), + [anon_sym_object] = ACTIONS(3568), + [anon_sym_property] = ACTIONS(3568), + [anon_sym_signal] = ACTIONS(3568), + [anon_sym_on] = ACTIONS(3568), + [anon_sym_required] = ACTIONS(3568), + [anon_sym_component] = ACTIONS(3568), + [anon_sym_abstract] = ACTIONS(3568), + [anon_sym_interface] = ACTIONS(3568), + [anon_sym_enum] = ACTIONS(3568), + [sym_html_comment] = ACTIONS(5), + }, + [1309] = { + [sym_comment] = STATE(1309), + [sym_identifier] = ACTIONS(3548), + [anon_sym_export] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3548), + [anon_sym_type] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3548), + [anon_sym_RBRACE] = ACTIONS(3548), + [anon_sym_typeof] = ACTIONS(3548), + [anon_sym_import] = ACTIONS(3548), + [anon_sym_from] = ACTIONS(3548), + [anon_sym_with] = ACTIONS(3548), + [anon_sym_var] = ACTIONS(3548), + [anon_sym_let] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_BANG] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(3548), + [anon_sym_await] = ACTIONS(3548), + [anon_sym_of] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_debugger] = ACTIONS(3548), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3548), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_yield] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_LTtemplate_GT] = ACTIONS(3548), + [anon_sym_DQUOTE] = ACTIONS(3548), + [anon_sym_SQUOTE] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_async] = ACTIONS(3548), + [anon_sym_function] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_using] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_LT] = ACTIONS(3548), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_void] = ACTIONS(3548), + [anon_sym_delete] = ACTIONS(3548), + [anon_sym_PLUS_PLUS] = ACTIONS(3548), + [anon_sym_DASH_DASH] = ACTIONS(3548), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3548), + [sym_number] = ACTIONS(3548), + [sym_private_property_identifier] = ACTIONS(3548), + [sym_this] = ACTIONS(3548), + [sym_super] = ACTIONS(3548), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [sym_null] = ACTIONS(3548), + [sym_undefined] = ACTIONS(3548), + [anon_sym_AT] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_readonly] = ACTIONS(3548), + [anon_sym_get] = ACTIONS(3548), + [anon_sym_set] = ACTIONS(3548), + [anon_sym_declare] = ACTIONS(3548), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_override] = ACTIONS(3548), + [anon_sym_module] = ACTIONS(3548), + [anon_sym_any] = ACTIONS(3548), + [anon_sym_number] = ACTIONS(3548), + [anon_sym_boolean] = ACTIONS(3548), + [anon_sym_string] = ACTIONS(3548), + [anon_sym_symbol] = ACTIONS(3548), + [anon_sym_object] = ACTIONS(3548), + [anon_sym_property] = ACTIONS(3548), + [anon_sym_signal] = ACTIONS(3548), + [anon_sym_on] = ACTIONS(3548), + [anon_sym_required] = ACTIONS(3548), + [anon_sym_component] = ACTIONS(3548), + [anon_sym_abstract] = ACTIONS(3548), + [anon_sym_interface] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), + [sym_html_comment] = ACTIONS(5), + }, + [1310] = { + [sym_comment] = STATE(1310), + [sym_identifier] = ACTIONS(3676), + [anon_sym_export] = ACTIONS(3676), + [anon_sym_default] = ACTIONS(3676), + [anon_sym_type] = ACTIONS(3676), + [anon_sym_namespace] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_typeof] = ACTIONS(3676), + [anon_sym_import] = ACTIONS(3676), + [anon_sym_from] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3676), + [anon_sym_var] = ACTIONS(3676), + [anon_sym_let] = ACTIONS(3676), + [anon_sym_const] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3676), + [anon_sym_if] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_for] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_await] = ACTIONS(3676), + [anon_sym_of] = ACTIONS(3676), + [anon_sym_while] = ACTIONS(3676), + [anon_sym_do] = ACTIONS(3676), + [anon_sym_try] = ACTIONS(3676), + [anon_sym_break] = ACTIONS(3676), + [anon_sym_continue] = ACTIONS(3676), + [anon_sym_debugger] = ACTIONS(3676), + [anon_sym_return] = ACTIONS(3676), + [anon_sym_throw] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym_case] = ACTIONS(3676), + [anon_sym_yield] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_LTtemplate_GT] = ACTIONS(3676), + [anon_sym_DQUOTE] = ACTIONS(3676), + [anon_sym_SQUOTE] = ACTIONS(3676), + [anon_sym_class] = ACTIONS(3676), + [anon_sym_async] = ACTIONS(3676), + [anon_sym_function] = ACTIONS(3676), + [anon_sym_new] = ACTIONS(3676), + [anon_sym_using] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(3676), + [anon_sym_SLASH] = ACTIONS(3676), + [anon_sym_LT] = ACTIONS(3676), + [anon_sym_TILDE] = ACTIONS(3676), + [anon_sym_void] = ACTIONS(3676), + [anon_sym_delete] = ACTIONS(3676), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3676), + [sym_private_property_identifier] = ACTIONS(3676), + [sym_this] = ACTIONS(3676), + [sym_super] = ACTIONS(3676), + [sym_true] = ACTIONS(3676), + [sym_false] = ACTIONS(3676), + [sym_null] = ACTIONS(3676), + [sym_undefined] = ACTIONS(3676), + [anon_sym_AT] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3676), + [anon_sym_readonly] = ACTIONS(3676), + [anon_sym_get] = ACTIONS(3676), + [anon_sym_set] = ACTIONS(3676), + [anon_sym_declare] = ACTIONS(3676), + [anon_sym_public] = ACTIONS(3676), + [anon_sym_private] = ACTIONS(3676), + [anon_sym_protected] = ACTIONS(3676), + [anon_sym_override] = ACTIONS(3676), + [anon_sym_module] = ACTIONS(3676), + [anon_sym_any] = ACTIONS(3676), + [anon_sym_number] = ACTIONS(3676), + [anon_sym_boolean] = ACTIONS(3676), + [anon_sym_string] = ACTIONS(3676), + [anon_sym_symbol] = ACTIONS(3676), + [anon_sym_object] = ACTIONS(3676), + [anon_sym_property] = ACTIONS(3676), + [anon_sym_signal] = ACTIONS(3676), + [anon_sym_on] = ACTIONS(3676), + [anon_sym_required] = ACTIONS(3676), + [anon_sym_component] = ACTIONS(3676), + [anon_sym_abstract] = ACTIONS(3676), + [anon_sym_interface] = ACTIONS(3676), + [anon_sym_enum] = ACTIONS(3676), + [sym_html_comment] = ACTIONS(5), + }, + [1311] = { + [sym_comment] = STATE(1311), + [sym_identifier] = ACTIONS(3694), + [anon_sym_export] = ACTIONS(3694), + [anon_sym_default] = ACTIONS(3694), + [anon_sym_type] = ACTIONS(3694), + [anon_sym_namespace] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_typeof] = ACTIONS(3694), + [anon_sym_import] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3694), + [anon_sym_let] = ACTIONS(3694), + [anon_sym_const] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3694), + [anon_sym_if] = ACTIONS(3694), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_await] = ACTIONS(3694), + [anon_sym_of] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3694), + [anon_sym_do] = ACTIONS(3694), + [anon_sym_try] = ACTIONS(3694), + [anon_sym_break] = ACTIONS(3694), + [anon_sym_continue] = ACTIONS(3694), + [anon_sym_debugger] = ACTIONS(3694), + [anon_sym_return] = ACTIONS(3694), + [anon_sym_throw] = ACTIONS(3694), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_case] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LTtemplate_GT] = ACTIONS(3694), + [anon_sym_DQUOTE] = ACTIONS(3694), + [anon_sym_SQUOTE] = ACTIONS(3694), + [anon_sym_class] = ACTIONS(3694), + [anon_sym_async] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3694), + [anon_sym_using] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_SLASH] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_TILDE] = ACTIONS(3694), + [anon_sym_void] = ACTIONS(3694), + [anon_sym_delete] = ACTIONS(3694), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3694), + [sym_number] = ACTIONS(3694), + [sym_private_property_identifier] = ACTIONS(3694), + [sym_this] = ACTIONS(3694), + [sym_super] = ACTIONS(3694), + [sym_true] = ACTIONS(3694), + [sym_false] = ACTIONS(3694), + [sym_null] = ACTIONS(3694), + [sym_undefined] = ACTIONS(3694), + [anon_sym_AT] = ACTIONS(3694), + [anon_sym_static] = ACTIONS(3694), + [anon_sym_readonly] = ACTIONS(3694), + [anon_sym_get] = ACTIONS(3694), + [anon_sym_set] = ACTIONS(3694), + [anon_sym_declare] = ACTIONS(3694), + [anon_sym_public] = ACTIONS(3694), + [anon_sym_private] = ACTIONS(3694), + [anon_sym_protected] = ACTIONS(3694), + [anon_sym_override] = ACTIONS(3694), + [anon_sym_module] = ACTIONS(3694), + [anon_sym_any] = ACTIONS(3694), + [anon_sym_number] = ACTIONS(3694), + [anon_sym_boolean] = ACTIONS(3694), + [anon_sym_string] = ACTIONS(3694), + [anon_sym_symbol] = ACTIONS(3694), + [anon_sym_object] = ACTIONS(3694), + [anon_sym_property] = ACTIONS(3694), + [anon_sym_signal] = ACTIONS(3694), + [anon_sym_on] = ACTIONS(3694), + [anon_sym_required] = ACTIONS(3694), + [anon_sym_component] = ACTIONS(3694), + [anon_sym_abstract] = ACTIONS(3694), + [anon_sym_interface] = ACTIONS(3694), + [anon_sym_enum] = ACTIONS(3694), + [sym_html_comment] = ACTIONS(5), + }, + [1312] = { + [sym_comment] = STATE(1312), + [sym_identifier] = ACTIONS(3570), + [anon_sym_export] = ACTIONS(3570), + [anon_sym_default] = ACTIONS(3570), + [anon_sym_type] = ACTIONS(3570), + [anon_sym_namespace] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_RBRACE] = ACTIONS(3570), + [anon_sym_typeof] = ACTIONS(3570), + [anon_sym_import] = ACTIONS(3570), + [anon_sym_from] = ACTIONS(3570), + [anon_sym_with] = ACTIONS(3570), + [anon_sym_var] = ACTIONS(3570), + [anon_sym_let] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_BANG] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_switch] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3570), + [anon_sym_await] = ACTIONS(3570), + [anon_sym_of] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_do] = ACTIONS(3570), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_debugger] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_throw] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym_case] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_LTtemplate_GT] = ACTIONS(3570), + [anon_sym_DQUOTE] = ACTIONS(3570), + [anon_sym_SQUOTE] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_async] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_TILDE] = ACTIONS(3570), + [anon_sym_void] = ACTIONS(3570), + [anon_sym_delete] = ACTIONS(3570), + [anon_sym_PLUS_PLUS] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3570), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3570), + [sym_number] = ACTIONS(3570), + [sym_private_property_identifier] = ACTIONS(3570), + [sym_this] = ACTIONS(3570), + [sym_super] = ACTIONS(3570), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [sym_null] = ACTIONS(3570), + [sym_undefined] = ACTIONS(3570), + [anon_sym_AT] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_readonly] = ACTIONS(3570), + [anon_sym_get] = ACTIONS(3570), + [anon_sym_set] = ACTIONS(3570), + [anon_sym_declare] = ACTIONS(3570), + [anon_sym_public] = ACTIONS(3570), + [anon_sym_private] = ACTIONS(3570), + [anon_sym_protected] = ACTIONS(3570), + [anon_sym_override] = ACTIONS(3570), + [anon_sym_module] = ACTIONS(3570), + [anon_sym_any] = ACTIONS(3570), + [anon_sym_number] = ACTIONS(3570), + [anon_sym_boolean] = ACTIONS(3570), + [anon_sym_string] = ACTIONS(3570), + [anon_sym_symbol] = ACTIONS(3570), + [anon_sym_object] = ACTIONS(3570), + [anon_sym_property] = ACTIONS(3570), + [anon_sym_signal] = ACTIONS(3570), + [anon_sym_on] = ACTIONS(3570), + [anon_sym_required] = ACTIONS(3570), + [anon_sym_component] = ACTIONS(3570), + [anon_sym_abstract] = ACTIONS(3570), + [anon_sym_interface] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [sym_html_comment] = ACTIONS(5), + }, + [1313] = { + [sym_comment] = STATE(1313), + [sym_identifier] = ACTIONS(3572), + [anon_sym_export] = ACTIONS(3572), + [anon_sym_default] = ACTIONS(3572), + [anon_sym_type] = ACTIONS(3572), + [anon_sym_namespace] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_RBRACE] = ACTIONS(3572), + [anon_sym_typeof] = ACTIONS(3572), + [anon_sym_import] = ACTIONS(3572), + [anon_sym_from] = ACTIONS(3572), + [anon_sym_with] = ACTIONS(3572), + [anon_sym_var] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_const] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_switch] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_await] = ACTIONS(3572), + [anon_sym_of] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_break] = ACTIONS(3572), + [anon_sym_continue] = ACTIONS(3572), + [anon_sym_debugger] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_throw] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym_case] = ACTIONS(3572), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LTtemplate_GT] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_class] = ACTIONS(3572), + [anon_sym_async] = ACTIONS(3572), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_using] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_SLASH] = ACTIONS(3572), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_void] = ACTIONS(3572), + [anon_sym_delete] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3572), + [sym_number] = ACTIONS(3572), + [sym_private_property_identifier] = ACTIONS(3572), + [sym_this] = ACTIONS(3572), + [sym_super] = ACTIONS(3572), + [sym_true] = ACTIONS(3572), + [sym_false] = ACTIONS(3572), + [sym_null] = ACTIONS(3572), + [sym_undefined] = ACTIONS(3572), + [anon_sym_AT] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3572), + [anon_sym_readonly] = ACTIONS(3572), + [anon_sym_get] = ACTIONS(3572), + [anon_sym_set] = ACTIONS(3572), + [anon_sym_declare] = ACTIONS(3572), + [anon_sym_public] = ACTIONS(3572), + [anon_sym_private] = ACTIONS(3572), + [anon_sym_protected] = ACTIONS(3572), + [anon_sym_override] = ACTIONS(3572), + [anon_sym_module] = ACTIONS(3572), + [anon_sym_any] = ACTIONS(3572), + [anon_sym_number] = ACTIONS(3572), + [anon_sym_boolean] = ACTIONS(3572), + [anon_sym_string] = ACTIONS(3572), + [anon_sym_symbol] = ACTIONS(3572), + [anon_sym_object] = ACTIONS(3572), + [anon_sym_property] = ACTIONS(3572), + [anon_sym_signal] = ACTIONS(3572), + [anon_sym_on] = ACTIONS(3572), + [anon_sym_required] = ACTIONS(3572), + [anon_sym_component] = ACTIONS(3572), + [anon_sym_abstract] = ACTIONS(3572), + [anon_sym_interface] = ACTIONS(3572), + [anon_sym_enum] = ACTIONS(3572), + [sym_html_comment] = ACTIONS(5), + }, + [1314] = { + [sym_comment] = STATE(1314), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_from] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_of] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_case] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_LTtemplate_GT] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_property] = ACTIONS(2456), + [anon_sym_signal] = ACTIONS(2456), + [anon_sym_on] = ACTIONS(2456), + [anon_sym_required] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym_html_comment] = ACTIONS(5), + }, + [1315] = { + [sym_comment] = STATE(1315), + [sym_identifier] = ACTIONS(3466), + [anon_sym_export] = ACTIONS(3466), + [anon_sym_default] = ACTIONS(3466), + [anon_sym_type] = ACTIONS(3466), + [anon_sym_namespace] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_RBRACE] = ACTIONS(3466), + [anon_sym_typeof] = ACTIONS(3466), + [anon_sym_import] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_with] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_if] = ACTIONS(3466), + [anon_sym_switch] = ACTIONS(3466), + [anon_sym_for] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(3466), + [anon_sym_await] = ACTIONS(3466), + [anon_sym_of] = ACTIONS(3466), + [anon_sym_while] = ACTIONS(3466), + [anon_sym_do] = ACTIONS(3466), + [anon_sym_try] = ACTIONS(3466), + [anon_sym_break] = ACTIONS(3466), + [anon_sym_continue] = ACTIONS(3466), + [anon_sym_debugger] = ACTIONS(3466), + [anon_sym_return] = ACTIONS(3466), + [anon_sym_throw] = ACTIONS(3466), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym_case] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3466), + [anon_sym_LTtemplate_GT] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_function] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_using] = ACTIONS(3466), + [anon_sym_PLUS] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3466), + [anon_sym_SLASH] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_void] = ACTIONS(3466), + [anon_sym_delete] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3466), + [sym_number] = ACTIONS(3466), + [sym_private_property_identifier] = ACTIONS(3466), + [sym_this] = ACTIONS(3466), + [sym_super] = ACTIONS(3466), + [sym_true] = ACTIONS(3466), + [sym_false] = ACTIONS(3466), + [sym_null] = ACTIONS(3466), + [sym_undefined] = ACTIONS(3466), + [anon_sym_AT] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_get] = ACTIONS(3466), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_declare] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_module] = ACTIONS(3466), + [anon_sym_any] = ACTIONS(3466), + [anon_sym_number] = ACTIONS(3466), + [anon_sym_boolean] = ACTIONS(3466), + [anon_sym_string] = ACTIONS(3466), + [anon_sym_symbol] = ACTIONS(3466), + [anon_sym_object] = ACTIONS(3466), + [anon_sym_property] = ACTIONS(3466), + [anon_sym_signal] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_component] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [sym_html_comment] = ACTIONS(5), + }, + [1316] = { + [sym_comment] = STATE(1316), + [sym_identifier] = ACTIONS(3574), + [anon_sym_export] = ACTIONS(3574), + [anon_sym_default] = ACTIONS(3574), + [anon_sym_type] = ACTIONS(3574), + [anon_sym_namespace] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_RBRACE] = ACTIONS(3574), + [anon_sym_typeof] = ACTIONS(3574), + [anon_sym_import] = ACTIONS(3574), + [anon_sym_from] = ACTIONS(3574), + [anon_sym_with] = ACTIONS(3574), + [anon_sym_var] = ACTIONS(3574), + [anon_sym_let] = ACTIONS(3574), + [anon_sym_const] = ACTIONS(3574), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_switch] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_LPAREN] = ACTIONS(3574), + [anon_sym_await] = ACTIONS(3574), + [anon_sym_of] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_do] = ACTIONS(3574), + [anon_sym_try] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_debugger] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_throw] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym_case] = ACTIONS(3574), + [anon_sym_yield] = ACTIONS(3574), + [anon_sym_LBRACK] = ACTIONS(3574), + [anon_sym_LTtemplate_GT] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [anon_sym_SQUOTE] = ACTIONS(3574), + [anon_sym_class] = ACTIONS(3574), + [anon_sym_async] = ACTIONS(3574), + [anon_sym_function] = ACTIONS(3574), + [anon_sym_new] = ACTIONS(3574), + [anon_sym_using] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3574), + [anon_sym_SLASH] = ACTIONS(3574), + [anon_sym_LT] = ACTIONS(3574), + [anon_sym_TILDE] = ACTIONS(3574), + [anon_sym_void] = ACTIONS(3574), + [anon_sym_delete] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3574), + [sym_number] = ACTIONS(3574), + [sym_private_property_identifier] = ACTIONS(3574), + [sym_this] = ACTIONS(3574), + [sym_super] = ACTIONS(3574), + [sym_true] = ACTIONS(3574), + [sym_false] = ACTIONS(3574), + [sym_null] = ACTIONS(3574), + [sym_undefined] = ACTIONS(3574), + [anon_sym_AT] = ACTIONS(3574), + [anon_sym_static] = ACTIONS(3574), + [anon_sym_readonly] = ACTIONS(3574), + [anon_sym_get] = ACTIONS(3574), + [anon_sym_set] = ACTIONS(3574), + [anon_sym_declare] = ACTIONS(3574), + [anon_sym_public] = ACTIONS(3574), + [anon_sym_private] = ACTIONS(3574), + [anon_sym_protected] = ACTIONS(3574), + [anon_sym_override] = ACTIONS(3574), + [anon_sym_module] = ACTIONS(3574), + [anon_sym_any] = ACTIONS(3574), + [anon_sym_number] = ACTIONS(3574), + [anon_sym_boolean] = ACTIONS(3574), + [anon_sym_string] = ACTIONS(3574), + [anon_sym_symbol] = ACTIONS(3574), + [anon_sym_object] = ACTIONS(3574), + [anon_sym_property] = ACTIONS(3574), + [anon_sym_signal] = ACTIONS(3574), + [anon_sym_on] = ACTIONS(3574), + [anon_sym_required] = ACTIONS(3574), + [anon_sym_component] = ACTIONS(3574), + [anon_sym_abstract] = ACTIONS(3574), + [anon_sym_interface] = ACTIONS(3574), + [anon_sym_enum] = ACTIONS(3574), + [sym_html_comment] = ACTIONS(5), + }, + [1317] = { + [sym_comment] = STATE(1317), + [sym_identifier] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_default] = ACTIONS(3564), + [anon_sym_type] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_typeof] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_from] = ACTIONS(3564), + [anon_sym_with] = ACTIONS(3564), + [anon_sym_var] = ACTIONS(3564), + [anon_sym_let] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_await] = ACTIONS(3564), + [anon_sym_of] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_debugger] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym_case] = ACTIONS(3564), + [anon_sym_yield] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LTtemplate_GT] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_async] = ACTIONS(3564), + [anon_sym_function] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_void] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3564), + [sym_number] = ACTIONS(3564), + [sym_private_property_identifier] = ACTIONS(3564), + [sym_this] = ACTIONS(3564), + [sym_super] = ACTIONS(3564), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_undefined] = ACTIONS(3564), + [anon_sym_AT] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_readonly] = ACTIONS(3564), + [anon_sym_get] = ACTIONS(3564), + [anon_sym_set] = ACTIONS(3564), + [anon_sym_declare] = ACTIONS(3564), + [anon_sym_public] = ACTIONS(3564), + [anon_sym_private] = ACTIONS(3564), + [anon_sym_protected] = ACTIONS(3564), + [anon_sym_override] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_any] = ACTIONS(3564), + [anon_sym_number] = ACTIONS(3564), + [anon_sym_boolean] = ACTIONS(3564), + [anon_sym_string] = ACTIONS(3564), + [anon_sym_symbol] = ACTIONS(3564), + [anon_sym_object] = ACTIONS(3564), + [anon_sym_property] = ACTIONS(3564), + [anon_sym_signal] = ACTIONS(3564), + [anon_sym_on] = ACTIONS(3564), + [anon_sym_required] = ACTIONS(3564), + [anon_sym_component] = ACTIONS(3564), + [anon_sym_abstract] = ACTIONS(3564), + [anon_sym_interface] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), + [sym_html_comment] = ACTIONS(5), + }, + [1318] = { + [sym_comment] = STATE(1318), + [sym_identifier] = ACTIONS(3454), + [anon_sym_export] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_namespace] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_RBRACE] = ACTIONS(3454), + [anon_sym_typeof] = ACTIONS(3454), + [anon_sym_import] = ACTIONS(3454), + [anon_sym_from] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(3454), + [anon_sym_var] = ACTIONS(3454), + [anon_sym_let] = ACTIONS(3454), + [anon_sym_const] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_else] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_switch] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3454), + [anon_sym_await] = ACTIONS(3454), + [anon_sym_of] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_try] = ACTIONS(3454), + [anon_sym_break] = ACTIONS(3454), + [anon_sym_continue] = ACTIONS(3454), + [anon_sym_debugger] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_throw] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym_finally] = ACTIONS(3454), + [anon_sym_yield] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3454), + [anon_sym_LTtemplate_GT] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_class] = ACTIONS(3454), + [anon_sym_async] = ACTIONS(3454), + [anon_sym_function] = ACTIONS(3454), + [anon_sym_new] = ACTIONS(3454), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3454), + [anon_sym_LT] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_void] = ACTIONS(3454), + [anon_sym_delete] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3454), + [sym_number] = ACTIONS(3454), + [sym_private_property_identifier] = ACTIONS(3454), + [sym_this] = ACTIONS(3454), + [sym_super] = ACTIONS(3454), + [sym_true] = ACTIONS(3454), + [sym_false] = ACTIONS(3454), + [sym_null] = ACTIONS(3454), + [sym_undefined] = ACTIONS(3454), + [anon_sym_AT] = ACTIONS(3454), + [anon_sym_static] = ACTIONS(3454), + [anon_sym_readonly] = ACTIONS(3454), + [anon_sym_get] = ACTIONS(3454), + [anon_sym_set] = ACTIONS(3454), + [anon_sym_declare] = ACTIONS(3454), + [anon_sym_public] = ACTIONS(3454), + [anon_sym_private] = ACTIONS(3454), + [anon_sym_protected] = ACTIONS(3454), + [anon_sym_override] = ACTIONS(3454), + [anon_sym_module] = ACTIONS(3454), + [anon_sym_any] = ACTIONS(3454), + [anon_sym_number] = ACTIONS(3454), + [anon_sym_boolean] = ACTIONS(3454), + [anon_sym_string] = ACTIONS(3454), + [anon_sym_symbol] = ACTIONS(3454), + [anon_sym_object] = ACTIONS(3454), + [anon_sym_property] = ACTIONS(3454), + [anon_sym_signal] = ACTIONS(3454), + [anon_sym_on] = ACTIONS(3454), + [anon_sym_required] = ACTIONS(3454), + [anon_sym_component] = ACTIONS(3454), + [anon_sym_abstract] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), + [sym_html_comment] = ACTIONS(5), + }, + [1319] = { + [sym_comment] = STATE(1319), + [sym_identifier] = ACTIONS(3470), + [anon_sym_export] = ACTIONS(3470), + [anon_sym_default] = ACTIONS(3470), + [anon_sym_type] = ACTIONS(3470), + [anon_sym_namespace] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_RBRACE] = ACTIONS(3470), + [anon_sym_typeof] = ACTIONS(3470), + [anon_sym_import] = ACTIONS(3470), + [anon_sym_from] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_var] = ACTIONS(3470), + [anon_sym_let] = ACTIONS(3470), + [anon_sym_const] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_switch] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3470), + [anon_sym_await] = ACTIONS(3470), + [anon_sym_of] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_try] = ACTIONS(3470), + [anon_sym_break] = ACTIONS(3470), + [anon_sym_continue] = ACTIONS(3470), + [anon_sym_debugger] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_throw] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_case] = ACTIONS(3470), + [anon_sym_yield] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3470), + [anon_sym_LTtemplate_GT] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_async] = ACTIONS(3470), + [anon_sym_function] = ACTIONS(3470), + [anon_sym_new] = ACTIONS(3470), + [anon_sym_using] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3470), + [anon_sym_SLASH] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_void] = ACTIONS(3470), + [anon_sym_delete] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3470), + [sym_number] = ACTIONS(3470), + [sym_private_property_identifier] = ACTIONS(3470), + [sym_this] = ACTIONS(3470), + [sym_super] = ACTIONS(3470), + [sym_true] = ACTIONS(3470), + [sym_false] = ACTIONS(3470), + [sym_null] = ACTIONS(3470), + [sym_undefined] = ACTIONS(3470), + [anon_sym_AT] = ACTIONS(3470), + [anon_sym_static] = ACTIONS(3470), + [anon_sym_readonly] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3470), + [anon_sym_set] = ACTIONS(3470), + [anon_sym_declare] = ACTIONS(3470), + [anon_sym_public] = ACTIONS(3470), + [anon_sym_private] = ACTIONS(3470), + [anon_sym_protected] = ACTIONS(3470), + [anon_sym_override] = ACTIONS(3470), + [anon_sym_module] = ACTIONS(3470), + [anon_sym_any] = ACTIONS(3470), + [anon_sym_number] = ACTIONS(3470), + [anon_sym_boolean] = ACTIONS(3470), + [anon_sym_string] = ACTIONS(3470), + [anon_sym_symbol] = ACTIONS(3470), + [anon_sym_object] = ACTIONS(3470), + [anon_sym_property] = ACTIONS(3470), + [anon_sym_signal] = ACTIONS(3470), + [anon_sym_on] = ACTIONS(3470), + [anon_sym_required] = ACTIONS(3470), + [anon_sym_component] = ACTIONS(3470), + [anon_sym_abstract] = ACTIONS(3470), + [anon_sym_interface] = ACTIONS(3470), + [anon_sym_enum] = ACTIONS(3470), + [sym_html_comment] = ACTIONS(5), + }, + [1320] = { + [sym_comment] = STATE(1320), + [sym_identifier] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_default] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_typeof] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_from] = ACTIONS(3646), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_var] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_await] = ACTIONS(3646), + [anon_sym_of] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_debugger] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_case] = ACTIONS(3646), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LTtemplate_GT] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_async] = ACTIONS(3646), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_SLASH] = ACTIONS(3646), + [anon_sym_LT] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_void] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3646), + [sym_number] = ACTIONS(3646), + [sym_private_property_identifier] = ACTIONS(3646), + [sym_this] = ACTIONS(3646), + [sym_super] = ACTIONS(3646), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [sym_null] = ACTIONS(3646), + [sym_undefined] = ACTIONS(3646), + [anon_sym_AT] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_readonly] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(3646), + [anon_sym_set] = ACTIONS(3646), + [anon_sym_declare] = ACTIONS(3646), + [anon_sym_public] = ACTIONS(3646), + [anon_sym_private] = ACTIONS(3646), + [anon_sym_protected] = ACTIONS(3646), + [anon_sym_override] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_any] = ACTIONS(3646), + [anon_sym_number] = ACTIONS(3646), + [anon_sym_boolean] = ACTIONS(3646), + [anon_sym_string] = ACTIONS(3646), + [anon_sym_symbol] = ACTIONS(3646), + [anon_sym_object] = ACTIONS(3646), + [anon_sym_property] = ACTIONS(3646), + [anon_sym_signal] = ACTIONS(3646), + [anon_sym_on] = ACTIONS(3646), + [anon_sym_required] = ACTIONS(3646), + [anon_sym_component] = ACTIONS(3646), + [anon_sym_abstract] = ACTIONS(3646), + [anon_sym_interface] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), + [sym_html_comment] = ACTIONS(5), + }, + [1321] = { + [sym_comment] = STATE(1321), + [sym_identifier] = ACTIONS(3584), + [anon_sym_export] = ACTIONS(3584), + [anon_sym_default] = ACTIONS(3584), + [anon_sym_type] = ACTIONS(3584), + [anon_sym_namespace] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3584), + [anon_sym_RBRACE] = ACTIONS(3584), + [anon_sym_typeof] = ACTIONS(3584), + [anon_sym_import] = ACTIONS(3584), + [anon_sym_from] = ACTIONS(3584), + [anon_sym_with] = ACTIONS(3584), + [anon_sym_var] = ACTIONS(3584), + [anon_sym_let] = ACTIONS(3584), + [anon_sym_const] = ACTIONS(3584), + [anon_sym_BANG] = ACTIONS(3584), + [anon_sym_if] = ACTIONS(3584), + [anon_sym_switch] = ACTIONS(3584), + [anon_sym_for] = ACTIONS(3584), + [anon_sym_LPAREN] = ACTIONS(3584), + [anon_sym_await] = ACTIONS(3584), + [anon_sym_of] = ACTIONS(3584), + [anon_sym_while] = ACTIONS(3584), + [anon_sym_do] = ACTIONS(3584), + [anon_sym_try] = ACTIONS(3584), + [anon_sym_break] = ACTIONS(3584), + [anon_sym_continue] = ACTIONS(3584), + [anon_sym_debugger] = ACTIONS(3584), + [anon_sym_return] = ACTIONS(3584), + [anon_sym_throw] = ACTIONS(3584), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym_case] = ACTIONS(3584), + [anon_sym_yield] = ACTIONS(3584), + [anon_sym_LBRACK] = ACTIONS(3584), + [anon_sym_LTtemplate_GT] = ACTIONS(3584), + [anon_sym_DQUOTE] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3584), + [anon_sym_class] = ACTIONS(3584), + [anon_sym_async] = ACTIONS(3584), + [anon_sym_function] = ACTIONS(3584), + [anon_sym_new] = ACTIONS(3584), + [anon_sym_using] = ACTIONS(3584), + [anon_sym_PLUS] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3584), + [anon_sym_SLASH] = ACTIONS(3584), + [anon_sym_LT] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_void] = ACTIONS(3584), + [anon_sym_delete] = ACTIONS(3584), + [anon_sym_PLUS_PLUS] = ACTIONS(3584), + [anon_sym_DASH_DASH] = ACTIONS(3584), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3584), + [sym_number] = ACTIONS(3584), + [sym_private_property_identifier] = ACTIONS(3584), + [sym_this] = ACTIONS(3584), + [sym_super] = ACTIONS(3584), + [sym_true] = ACTIONS(3584), + [sym_false] = ACTIONS(3584), + [sym_null] = ACTIONS(3584), + [sym_undefined] = ACTIONS(3584), + [anon_sym_AT] = ACTIONS(3584), + [anon_sym_static] = ACTIONS(3584), + [anon_sym_readonly] = ACTIONS(3584), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3584), + [anon_sym_declare] = ACTIONS(3584), + [anon_sym_public] = ACTIONS(3584), + [anon_sym_private] = ACTIONS(3584), + [anon_sym_protected] = ACTIONS(3584), + [anon_sym_override] = ACTIONS(3584), + [anon_sym_module] = ACTIONS(3584), + [anon_sym_any] = ACTIONS(3584), + [anon_sym_number] = ACTIONS(3584), + [anon_sym_boolean] = ACTIONS(3584), + [anon_sym_string] = ACTIONS(3584), + [anon_sym_symbol] = ACTIONS(3584), + [anon_sym_object] = ACTIONS(3584), + [anon_sym_property] = ACTIONS(3584), + [anon_sym_signal] = ACTIONS(3584), + [anon_sym_on] = ACTIONS(3584), + [anon_sym_required] = ACTIONS(3584), + [anon_sym_component] = ACTIONS(3584), + [anon_sym_abstract] = ACTIONS(3584), + [anon_sym_interface] = ACTIONS(3584), + [anon_sym_enum] = ACTIONS(3584), + [sym_html_comment] = ACTIONS(5), + }, + [1322] = { + [sym_comment] = STATE(1322), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_typeof] = ACTIONS(2440), + [anon_sym_import] = ACTIONS(2440), + [anon_sym_from] = ACTIONS(2440), + [anon_sym_with] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_else] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_await] = ACTIONS(2440), + [anon_sym_of] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_debugger] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_yield] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_LTtemplate_GT] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_SQUOTE] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_TILDE] = ACTIONS(2440), + [anon_sym_void] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2440), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2440), + [sym_number] = ACTIONS(2440), + [sym_private_property_identifier] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [sym_super] = ACTIONS(2440), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [sym_null] = ACTIONS(2440), + [sym_undefined] = ACTIONS(2440), + [anon_sym_AT] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), + [anon_sym_property] = ACTIONS(2440), + [anon_sym_signal] = ACTIONS(2440), + [anon_sym_on] = ACTIONS(2440), + [anon_sym_required] = ACTIONS(2440), + [anon_sym_component] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_interface] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [sym__automatic_semicolon] = ACTIONS(2626), + [sym_html_comment] = ACTIONS(5), + }, + [1323] = { + [sym_comment] = STATE(1323), + [sym_identifier] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_default] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_typeof] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_from] = ACTIONS(3646), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_var] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_await] = ACTIONS(3646), + [anon_sym_of] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_debugger] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_case] = ACTIONS(3646), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LTtemplate_GT] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_async] = ACTIONS(3646), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_SLASH] = ACTIONS(3646), + [anon_sym_LT] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_void] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3646), + [sym_number] = ACTIONS(3646), + [sym_private_property_identifier] = ACTIONS(3646), + [sym_this] = ACTIONS(3646), + [sym_super] = ACTIONS(3646), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [sym_null] = ACTIONS(3646), + [sym_undefined] = ACTIONS(3646), + [anon_sym_AT] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_readonly] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(3646), + [anon_sym_set] = ACTIONS(3646), + [anon_sym_declare] = ACTIONS(3646), + [anon_sym_public] = ACTIONS(3646), + [anon_sym_private] = ACTIONS(3646), + [anon_sym_protected] = ACTIONS(3646), + [anon_sym_override] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_any] = ACTIONS(3646), + [anon_sym_number] = ACTIONS(3646), + [anon_sym_boolean] = ACTIONS(3646), + [anon_sym_string] = ACTIONS(3646), + [anon_sym_symbol] = ACTIONS(3646), + [anon_sym_object] = ACTIONS(3646), + [anon_sym_property] = ACTIONS(3646), + [anon_sym_signal] = ACTIONS(3646), + [anon_sym_on] = ACTIONS(3646), + [anon_sym_required] = ACTIONS(3646), + [anon_sym_component] = ACTIONS(3646), + [anon_sym_abstract] = ACTIONS(3646), + [anon_sym_interface] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), + [sym_html_comment] = ACTIONS(5), + }, + [1324] = { + [sym_comment] = STATE(1324), + [sym_identifier] = ACTIONS(3604), + [anon_sym_export] = ACTIONS(3604), + [anon_sym_default] = ACTIONS(3604), + [anon_sym_type] = ACTIONS(3604), + [anon_sym_namespace] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_RBRACE] = ACTIONS(3604), + [anon_sym_typeof] = ACTIONS(3604), + [anon_sym_import] = ACTIONS(3604), + [anon_sym_from] = ACTIONS(3604), + [anon_sym_with] = ACTIONS(3604), + [anon_sym_var] = ACTIONS(3604), + [anon_sym_let] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_BANG] = ACTIONS(3604), + [anon_sym_if] = ACTIONS(3604), + [anon_sym_switch] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3604), + [anon_sym_await] = ACTIONS(3604), + [anon_sym_of] = ACTIONS(3604), + [anon_sym_while] = ACTIONS(3604), + [anon_sym_do] = ACTIONS(3604), + [anon_sym_try] = ACTIONS(3604), + [anon_sym_break] = ACTIONS(3604), + [anon_sym_continue] = ACTIONS(3604), + [anon_sym_debugger] = ACTIONS(3604), + [anon_sym_return] = ACTIONS(3604), + [anon_sym_throw] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3604), + [anon_sym_case] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LTtemplate_GT] = ACTIONS(3604), + [anon_sym_DQUOTE] = ACTIONS(3604), + [anon_sym_SQUOTE] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_async] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(3604), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_SLASH] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_TILDE] = ACTIONS(3604), + [anon_sym_void] = ACTIONS(3604), + [anon_sym_delete] = ACTIONS(3604), + [anon_sym_PLUS_PLUS] = ACTIONS(3604), + [anon_sym_DASH_DASH] = ACTIONS(3604), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3604), + [sym_number] = ACTIONS(3604), + [sym_private_property_identifier] = ACTIONS(3604), + [sym_this] = ACTIONS(3604), + [sym_super] = ACTIONS(3604), + [sym_true] = ACTIONS(3604), + [sym_false] = ACTIONS(3604), + [sym_null] = ACTIONS(3604), + [sym_undefined] = ACTIONS(3604), + [anon_sym_AT] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_readonly] = ACTIONS(3604), + [anon_sym_get] = ACTIONS(3604), + [anon_sym_set] = ACTIONS(3604), + [anon_sym_declare] = ACTIONS(3604), + [anon_sym_public] = ACTIONS(3604), + [anon_sym_private] = ACTIONS(3604), + [anon_sym_protected] = ACTIONS(3604), + [anon_sym_override] = ACTIONS(3604), + [anon_sym_module] = ACTIONS(3604), + [anon_sym_any] = ACTIONS(3604), + [anon_sym_number] = ACTIONS(3604), + [anon_sym_boolean] = ACTIONS(3604), + [anon_sym_string] = ACTIONS(3604), + [anon_sym_symbol] = ACTIONS(3604), + [anon_sym_object] = ACTIONS(3604), + [anon_sym_property] = ACTIONS(3604), + [anon_sym_signal] = ACTIONS(3604), + [anon_sym_on] = ACTIONS(3604), + [anon_sym_required] = ACTIONS(3604), + [anon_sym_component] = ACTIONS(3604), + [anon_sym_abstract] = ACTIONS(3604), + [anon_sym_interface] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), + [sym_html_comment] = ACTIONS(5), + }, + [1325] = { + [sym_comment] = STATE(1325), + [sym_identifier] = ACTIONS(3606), + [anon_sym_export] = ACTIONS(3606), + [anon_sym_default] = ACTIONS(3606), + [anon_sym_type] = ACTIONS(3606), + [anon_sym_namespace] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_typeof] = ACTIONS(3606), + [anon_sym_import] = ACTIONS(3606), + [anon_sym_from] = ACTIONS(3606), + [anon_sym_with] = ACTIONS(3606), + [anon_sym_var] = ACTIONS(3606), + [anon_sym_let] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_await] = ACTIONS(3606), + [anon_sym_of] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_debugger] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_throw] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_case] = ACTIONS(3606), + [anon_sym_yield] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_LTtemplate_GT] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_async] = ACTIONS(3606), + [anon_sym_function] = ACTIONS(3606), + [anon_sym_new] = ACTIONS(3606), + [anon_sym_using] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_SLASH] = ACTIONS(3606), + [anon_sym_LT] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_void] = ACTIONS(3606), + [anon_sym_delete] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3606), + [sym_number] = ACTIONS(3606), + [sym_private_property_identifier] = ACTIONS(3606), + [sym_this] = ACTIONS(3606), + [sym_super] = ACTIONS(3606), + [sym_true] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [sym_undefined] = ACTIONS(3606), + [anon_sym_AT] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_readonly] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(3606), + [anon_sym_set] = ACTIONS(3606), + [anon_sym_declare] = ACTIONS(3606), + [anon_sym_public] = ACTIONS(3606), + [anon_sym_private] = ACTIONS(3606), + [anon_sym_protected] = ACTIONS(3606), + [anon_sym_override] = ACTIONS(3606), + [anon_sym_module] = ACTIONS(3606), + [anon_sym_any] = ACTIONS(3606), + [anon_sym_number] = ACTIONS(3606), + [anon_sym_boolean] = ACTIONS(3606), + [anon_sym_string] = ACTIONS(3606), + [anon_sym_symbol] = ACTIONS(3606), + [anon_sym_object] = ACTIONS(3606), + [anon_sym_property] = ACTIONS(3606), + [anon_sym_signal] = ACTIONS(3606), + [anon_sym_on] = ACTIONS(3606), + [anon_sym_required] = ACTIONS(3606), + [anon_sym_component] = ACTIONS(3606), + [anon_sym_abstract] = ACTIONS(3606), + [anon_sym_interface] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [sym_html_comment] = ACTIONS(5), + }, + [1326] = { + [sym_comment] = STATE(1326), + [sym_identifier] = ACTIONS(3606), + [anon_sym_export] = ACTIONS(3606), + [anon_sym_default] = ACTIONS(3606), + [anon_sym_type] = ACTIONS(3606), + [anon_sym_namespace] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_typeof] = ACTIONS(3606), + [anon_sym_import] = ACTIONS(3606), + [anon_sym_from] = ACTIONS(3606), + [anon_sym_with] = ACTIONS(3606), + [anon_sym_var] = ACTIONS(3606), + [anon_sym_let] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_await] = ACTIONS(3606), + [anon_sym_of] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_debugger] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_throw] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_case] = ACTIONS(3606), + [anon_sym_yield] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_LTtemplate_GT] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_async] = ACTIONS(3606), + [anon_sym_function] = ACTIONS(3606), + [anon_sym_new] = ACTIONS(3606), + [anon_sym_using] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_SLASH] = ACTIONS(3606), + [anon_sym_LT] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_void] = ACTIONS(3606), + [anon_sym_delete] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3606), + [sym_number] = ACTIONS(3606), + [sym_private_property_identifier] = ACTIONS(3606), + [sym_this] = ACTIONS(3606), + [sym_super] = ACTIONS(3606), + [sym_true] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [sym_undefined] = ACTIONS(3606), + [anon_sym_AT] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_readonly] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(3606), + [anon_sym_set] = ACTIONS(3606), + [anon_sym_declare] = ACTIONS(3606), + [anon_sym_public] = ACTIONS(3606), + [anon_sym_private] = ACTIONS(3606), + [anon_sym_protected] = ACTIONS(3606), + [anon_sym_override] = ACTIONS(3606), + [anon_sym_module] = ACTIONS(3606), + [anon_sym_any] = ACTIONS(3606), + [anon_sym_number] = ACTIONS(3606), + [anon_sym_boolean] = ACTIONS(3606), + [anon_sym_string] = ACTIONS(3606), + [anon_sym_symbol] = ACTIONS(3606), + [anon_sym_object] = ACTIONS(3606), + [anon_sym_property] = ACTIONS(3606), + [anon_sym_signal] = ACTIONS(3606), + [anon_sym_on] = ACTIONS(3606), + [anon_sym_required] = ACTIONS(3606), + [anon_sym_component] = ACTIONS(3606), + [anon_sym_abstract] = ACTIONS(3606), + [anon_sym_interface] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [sym_html_comment] = ACTIONS(5), + }, + [1327] = { + [sym_comment] = STATE(1327), + [sym_identifier] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_typeof] = ACTIONS(2422), + [anon_sym_import] = ACTIONS(2422), + [anon_sym_from] = ACTIONS(2422), + [anon_sym_with] = ACTIONS(2422), + [anon_sym_var] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_else] = ACTIONS(2422), + [anon_sym_if] = ACTIONS(2422), + [anon_sym_switch] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_await] = ACTIONS(2422), + [anon_sym_of] = ACTIONS(2422), + [anon_sym_while] = ACTIONS(2422), + [anon_sym_do] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2422), + [anon_sym_continue] = ACTIONS(2422), + [anon_sym_debugger] = ACTIONS(2422), + [anon_sym_return] = ACTIONS(2422), + [anon_sym_throw] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_yield] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_LTtemplate_GT] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_class] = ACTIONS(2422), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2422), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_using] = ACTIONS(2422), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_SLASH] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_void] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2422), + [sym_number] = ACTIONS(2422), + [sym_private_property_identifier] = ACTIONS(2422), + [sym_this] = ACTIONS(2422), + [sym_super] = ACTIONS(2422), + [sym_true] = ACTIONS(2422), + [sym_false] = ACTIONS(2422), + [sym_null] = ACTIONS(2422), + [sym_undefined] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_property] = ACTIONS(2422), + [anon_sym_signal] = ACTIONS(2422), + [anon_sym_on] = ACTIONS(2422), + [anon_sym_required] = ACTIONS(2422), + [anon_sym_component] = ACTIONS(2422), + [anon_sym_abstract] = ACTIONS(2422), + [anon_sym_interface] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [sym__automatic_semicolon] = ACTIONS(2640), + [sym_html_comment] = ACTIONS(5), }, - [686] = { - [sym_identifier] = ACTIONS(1537), - [anon_sym_export] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_typeof] = ACTIONS(1537), - [anon_sym_import] = ACTIONS(1537), - [anon_sym_from] = ACTIONS(1537), - [anon_sym_var] = ACTIONS(1537), - [anon_sym_let] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_await] = ACTIONS(1537), - [anon_sym_of] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [anon_sym_with] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_debugger] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_yield] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LTtemplate_GT] = ACTIONS(1539), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_class] = ACTIONS(1537), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_function] = ACTIONS(1537), - [anon_sym_new] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_void] = ACTIONS(1537), - [anon_sym_delete] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1539), - [sym_number] = ACTIONS(1539), - [sym_this] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [sym_null] = ACTIONS(1537), - [sym_undefined] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_readonly] = ACTIONS(1537), - [anon_sym_get] = ACTIONS(1537), - [anon_sym_set] = ACTIONS(1537), - [anon_sym_declare] = ACTIONS(1537), - [anon_sym_public] = ACTIONS(1537), - [anon_sym_private] = ACTIONS(1537), - [anon_sym_protected] = ACTIONS(1537), - [anon_sym_override] = ACTIONS(1537), - [anon_sym_module] = ACTIONS(1537), - [anon_sym_any] = ACTIONS(1537), - [anon_sym_number] = ACTIONS(1537), - [anon_sym_boolean] = ACTIONS(1537), - [anon_sym_string] = ACTIONS(1537), - [anon_sym_symbol] = ACTIONS(1537), - [anon_sym_property] = ACTIONS(1537), - [anon_sym_signal] = ACTIONS(1537), - [anon_sym_on] = ACTIONS(1537), - [anon_sym_required] = ACTIONS(1537), - [anon_sym_component] = ACTIONS(1537), - [anon_sym_abstract] = ACTIONS(1537), - [anon_sym_interface] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [sym__automatic_semicolon] = ACTIONS(2326), + [1328] = { + [sym_comment] = STATE(1328), + [sym_identifier] = ACTIONS(2402), + [anon_sym_export] = ACTIONS(2402), + [anon_sym_type] = ACTIONS(2402), + [anon_sym_namespace] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_typeof] = ACTIONS(2402), + [anon_sym_import] = ACTIONS(2402), + [anon_sym_from] = ACTIONS(2402), + [anon_sym_with] = ACTIONS(2402), + [anon_sym_var] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_switch] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_await] = ACTIONS(2402), + [anon_sym_of] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_debugger] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_throw] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_yield] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LTtemplate_GT] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), + [anon_sym_class] = ACTIONS(2402), + [anon_sym_async] = ACTIONS(2402), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_new] = ACTIONS(2402), + [anon_sym_using] = ACTIONS(2402), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_SLASH] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_TILDE] = ACTIONS(2402), + [anon_sym_void] = ACTIONS(2402), + [anon_sym_delete] = ACTIONS(2402), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2402), + [sym_number] = ACTIONS(2402), + [sym_private_property_identifier] = ACTIONS(2402), + [sym_this] = ACTIONS(2402), + [sym_super] = ACTIONS(2402), + [sym_true] = ACTIONS(2402), + [sym_false] = ACTIONS(2402), + [sym_null] = ACTIONS(2402), + [sym_undefined] = ACTIONS(2402), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_readonly] = ACTIONS(2402), + [anon_sym_get] = ACTIONS(2402), + [anon_sym_set] = ACTIONS(2402), + [anon_sym_declare] = ACTIONS(2402), + [anon_sym_public] = ACTIONS(2402), + [anon_sym_private] = ACTIONS(2402), + [anon_sym_protected] = ACTIONS(2402), + [anon_sym_override] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_any] = ACTIONS(2402), + [anon_sym_number] = ACTIONS(2402), + [anon_sym_boolean] = ACTIONS(2402), + [anon_sym_string] = ACTIONS(2402), + [anon_sym_symbol] = ACTIONS(2402), + [anon_sym_object] = ACTIONS(2402), + [anon_sym_property] = ACTIONS(2402), + [anon_sym_signal] = ACTIONS(2402), + [anon_sym_on] = ACTIONS(2402), + [anon_sym_required] = ACTIONS(2402), + [anon_sym_component] = ACTIONS(2402), + [anon_sym_abstract] = ACTIONS(2402), + [anon_sym_interface] = ACTIONS(2402), + [anon_sym_enum] = ACTIONS(2402), + [sym__automatic_semicolon] = ACTIONS(2634), + [sym_html_comment] = ACTIONS(5), }, - [687] = { - [sym_identifier] = ACTIONS(1707), - [anon_sym_export] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), - [anon_sym_namespace] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_typeof] = ACTIONS(1707), - [anon_sym_import] = ACTIONS(1707), - [anon_sym_from] = ACTIONS(1707), - [anon_sym_var] = ACTIONS(1707), - [anon_sym_let] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_switch] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_await] = ACTIONS(1707), - [anon_sym_of] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_with] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_debugger] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_throw] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_case] = ACTIONS(1707), - [anon_sym_yield] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_LTtemplate_GT] = ACTIONS(1709), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1707), - [anon_sym_class] = ACTIONS(1707), - [anon_sym_async] = ACTIONS(1707), - [anon_sym_function] = ACTIONS(1707), - [anon_sym_new] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_void] = ACTIONS(1707), - [anon_sym_delete] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [anon_sym_SQUOTE] = ACTIONS(1709), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1709), - [sym_number] = ACTIONS(1709), - [sym_this] = ACTIONS(1707), - [sym_super] = ACTIONS(1707), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_null] = ACTIONS(1707), - [sym_undefined] = ACTIONS(1707), - [anon_sym_AT] = ACTIONS(1709), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_readonly] = ACTIONS(1707), - [anon_sym_get] = ACTIONS(1707), - [anon_sym_set] = ACTIONS(1707), - [anon_sym_declare] = ACTIONS(1707), - [anon_sym_public] = ACTIONS(1707), - [anon_sym_private] = ACTIONS(1707), - [anon_sym_protected] = ACTIONS(1707), - [anon_sym_override] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_any] = ACTIONS(1707), - [anon_sym_number] = ACTIONS(1707), - [anon_sym_boolean] = ACTIONS(1707), - [anon_sym_string] = ACTIONS(1707), - [anon_sym_symbol] = ACTIONS(1707), - [anon_sym_property] = ACTIONS(1707), - [anon_sym_signal] = ACTIONS(1707), - [anon_sym_on] = ACTIONS(1707), - [anon_sym_required] = ACTIONS(1707), - [anon_sym_component] = ACTIONS(1707), - [anon_sym_abstract] = ACTIONS(1707), - [anon_sym_interface] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [sym__automatic_semicolon] = ACTIONS(1709), + [1329] = { + [sym_comment] = STATE(1329), + [sym_identifier] = ACTIONS(2430), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_typeof] = ACTIONS(2430), + [anon_sym_import] = ACTIONS(2430), + [anon_sym_from] = ACTIONS(2430), + [anon_sym_with] = ACTIONS(2430), + [anon_sym_var] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_const] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_else] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_switch] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_await] = ACTIONS(2430), + [anon_sym_of] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2430), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_debugger] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_throw] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_yield] = ACTIONS(2430), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_LTtemplate_GT] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_class] = ACTIONS(2430), + [anon_sym_async] = ACTIONS(2430), + [anon_sym_function] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_using] = ACTIONS(2430), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_SLASH] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_void] = ACTIONS(2430), + [anon_sym_delete] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_number] = ACTIONS(2430), + [sym_private_property_identifier] = ACTIONS(2430), + [sym_this] = ACTIONS(2430), + [sym_super] = ACTIONS(2430), + [sym_true] = ACTIONS(2430), + [sym_false] = ACTIONS(2430), + [sym_null] = ACTIONS(2430), + [sym_undefined] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2430), + [anon_sym_readonly] = ACTIONS(2430), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_declare] = ACTIONS(2430), + [anon_sym_public] = ACTIONS(2430), + [anon_sym_private] = ACTIONS(2430), + [anon_sym_protected] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_any] = ACTIONS(2430), + [anon_sym_number] = ACTIONS(2430), + [anon_sym_boolean] = ACTIONS(2430), + [anon_sym_string] = ACTIONS(2430), + [anon_sym_symbol] = ACTIONS(2430), + [anon_sym_object] = ACTIONS(2430), + [anon_sym_property] = ACTIONS(2430), + [anon_sym_signal] = ACTIONS(2430), + [anon_sym_on] = ACTIONS(2430), + [anon_sym_required] = ACTIONS(2430), + [anon_sym_component] = ACTIONS(2430), + [anon_sym_abstract] = ACTIONS(2430), + [anon_sym_interface] = ACTIONS(2430), + [anon_sym_enum] = ACTIONS(2430), + [sym__automatic_semicolon] = ACTIONS(2622), + [sym_html_comment] = ACTIONS(5), }, - [688] = { - [sym_identifier] = ACTIONS(1543), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_namespace] = ACTIONS(1543), - [anon_sym_LBRACE] = ACTIONS(1547), - [anon_sym_RBRACE] = ACTIONS(1547), - [anon_sym_typeof] = ACTIONS(1543), - [anon_sym_import] = ACTIONS(1543), - [anon_sym_from] = ACTIONS(1543), - [anon_sym_var] = ACTIONS(1543), - [anon_sym_let] = ACTIONS(1543), - [anon_sym_const] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_else] = ACTIONS(1543), - [anon_sym_if] = ACTIONS(1543), - [anon_sym_switch] = ACTIONS(1543), - [anon_sym_for] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1547), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_of] = ACTIONS(1543), - [anon_sym_while] = ACTIONS(1543), - [anon_sym_do] = ACTIONS(1543), - [anon_sym_try] = ACTIONS(1543), - [anon_sym_with] = ACTIONS(1543), - [anon_sym_break] = ACTIONS(1543), - [anon_sym_continue] = ACTIONS(1543), - [anon_sym_debugger] = ACTIONS(1543), - [anon_sym_return] = ACTIONS(1543), - [anon_sym_throw] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1547), - [anon_sym_case] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1547), - [anon_sym_LTtemplate_GT] = ACTIONS(1547), - [anon_sym_LT] = ACTIONS(1543), - [anon_sym_SLASH] = ACTIONS(1543), - [anon_sym_class] = ACTIONS(1543), - [anon_sym_async] = ACTIONS(1543), - [anon_sym_function] = ACTIONS(1543), - [anon_sym_new] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1547), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_delete] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1547), - [anon_sym_DASH_DASH] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1547), - [anon_sym_SQUOTE] = ACTIONS(1547), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1547), - [sym_number] = ACTIONS(1547), - [sym_this] = ACTIONS(1543), - [sym_super] = ACTIONS(1543), - [sym_true] = ACTIONS(1543), - [sym_false] = ACTIONS(1543), - [sym_null] = ACTIONS(1543), - [sym_undefined] = ACTIONS(1543), - [anon_sym_AT] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_property] = ACTIONS(1543), - [anon_sym_signal] = ACTIONS(1543), - [anon_sym_on] = ACTIONS(1543), - [anon_sym_required] = ACTIONS(1543), - [anon_sym_component] = ACTIONS(1543), - [anon_sym_abstract] = ACTIONS(1543), - [anon_sym_interface] = ACTIONS(1543), - [anon_sym_enum] = ACTIONS(1543), - [sym__automatic_semicolon] = ACTIONS(1551), + [1330] = { + [sym_comment] = STATE(1330), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2614), + [sym_html_comment] = ACTIONS(5), + }, + [1331] = { + [sym_comment] = STATE(1331), + [sym_identifier] = ACTIONS(3458), + [anon_sym_export] = ACTIONS(3458), + [anon_sym_type] = ACTIONS(3458), + [anon_sym_namespace] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(3458), + [anon_sym_typeof] = ACTIONS(3458), + [anon_sym_import] = ACTIONS(3458), + [anon_sym_from] = ACTIONS(3458), + [anon_sym_with] = ACTIONS(3458), + [anon_sym_var] = ACTIONS(3458), + [anon_sym_let] = ACTIONS(3458), + [anon_sym_const] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_else] = ACTIONS(3458), + [anon_sym_if] = ACTIONS(3458), + [anon_sym_switch] = ACTIONS(3458), + [anon_sym_for] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3458), + [anon_sym_await] = ACTIONS(3458), + [anon_sym_of] = ACTIONS(3458), + [anon_sym_while] = ACTIONS(3458), + [anon_sym_do] = ACTIONS(3458), + [anon_sym_try] = ACTIONS(3458), + [anon_sym_break] = ACTIONS(3458), + [anon_sym_continue] = ACTIONS(3458), + [anon_sym_debugger] = ACTIONS(3458), + [anon_sym_return] = ACTIONS(3458), + [anon_sym_throw] = ACTIONS(3458), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_finally] = ACTIONS(3458), + [anon_sym_yield] = ACTIONS(3458), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_LTtemplate_GT] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3458), + [anon_sym_class] = ACTIONS(3458), + [anon_sym_async] = ACTIONS(3458), + [anon_sym_function] = ACTIONS(3458), + [anon_sym_new] = ACTIONS(3458), + [anon_sym_using] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_SLASH] = ACTIONS(3458), + [anon_sym_LT] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_void] = ACTIONS(3458), + [anon_sym_delete] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3458), + [sym_number] = ACTIONS(3458), + [sym_private_property_identifier] = ACTIONS(3458), + [sym_this] = ACTIONS(3458), + [sym_super] = ACTIONS(3458), + [sym_true] = ACTIONS(3458), + [sym_false] = ACTIONS(3458), + [sym_null] = ACTIONS(3458), + [sym_undefined] = ACTIONS(3458), + [anon_sym_AT] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(3458), + [anon_sym_readonly] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3458), + [anon_sym_set] = ACTIONS(3458), + [anon_sym_declare] = ACTIONS(3458), + [anon_sym_public] = ACTIONS(3458), + [anon_sym_private] = ACTIONS(3458), + [anon_sym_protected] = ACTIONS(3458), + [anon_sym_override] = ACTIONS(3458), + [anon_sym_module] = ACTIONS(3458), + [anon_sym_any] = ACTIONS(3458), + [anon_sym_number] = ACTIONS(3458), + [anon_sym_boolean] = ACTIONS(3458), + [anon_sym_string] = ACTIONS(3458), + [anon_sym_symbol] = ACTIONS(3458), + [anon_sym_object] = ACTIONS(3458), + [anon_sym_property] = ACTIONS(3458), + [anon_sym_signal] = ACTIONS(3458), + [anon_sym_on] = ACTIONS(3458), + [anon_sym_required] = ACTIONS(3458), + [anon_sym_component] = ACTIONS(3458), + [anon_sym_abstract] = ACTIONS(3458), + [anon_sym_interface] = ACTIONS(3458), + [anon_sym_enum] = ACTIONS(3458), + [sym_html_comment] = ACTIONS(5), + }, + [1332] = { + [sym_comment] = STATE(1332), + [sym_identifier] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_type] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_typeof] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_from] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3618), + [anon_sym_var] = ACTIONS(3618), + [anon_sym_let] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_await] = ACTIONS(3618), + [anon_sym_of] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_debugger] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_LTtemplate_GT] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_async] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_SLASH] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_void] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3618), + [sym_number] = ACTIONS(3618), + [sym_private_property_identifier] = ACTIONS(3618), + [sym_this] = ACTIONS(3618), + [sym_super] = ACTIONS(3618), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [sym_null] = ACTIONS(3618), + [sym_undefined] = ACTIONS(3618), + [anon_sym_AT] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_readonly] = ACTIONS(3618), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3618), + [anon_sym_declare] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_override] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_any] = ACTIONS(3618), + [anon_sym_number] = ACTIONS(3618), + [anon_sym_boolean] = ACTIONS(3618), + [anon_sym_string] = ACTIONS(3618), + [anon_sym_symbol] = ACTIONS(3618), + [anon_sym_object] = ACTIONS(3618), + [anon_sym_property] = ACTIONS(3618), + [anon_sym_signal] = ACTIONS(3618), + [anon_sym_on] = ACTIONS(3618), + [anon_sym_required] = ACTIONS(3618), + [anon_sym_component] = ACTIONS(3618), + [anon_sym_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [sym_html_comment] = ACTIONS(5), + }, + [1333] = { + [sym_comment] = STATE(1333), + [sym_identifier] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_type] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_typeof] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_from] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3618), + [anon_sym_var] = ACTIONS(3618), + [anon_sym_let] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_await] = ACTIONS(3618), + [anon_sym_of] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_debugger] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_LTtemplate_GT] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_async] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_SLASH] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_void] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3618), + [sym_number] = ACTIONS(3618), + [sym_private_property_identifier] = ACTIONS(3618), + [sym_this] = ACTIONS(3618), + [sym_super] = ACTIONS(3618), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [sym_null] = ACTIONS(3618), + [sym_undefined] = ACTIONS(3618), + [anon_sym_AT] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_readonly] = ACTIONS(3618), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3618), + [anon_sym_declare] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_override] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_any] = ACTIONS(3618), + [anon_sym_number] = ACTIONS(3618), + [anon_sym_boolean] = ACTIONS(3618), + [anon_sym_string] = ACTIONS(3618), + [anon_sym_symbol] = ACTIONS(3618), + [anon_sym_object] = ACTIONS(3618), + [anon_sym_property] = ACTIONS(3618), + [anon_sym_signal] = ACTIONS(3618), + [anon_sym_on] = ACTIONS(3618), + [anon_sym_required] = ACTIONS(3618), + [anon_sym_component] = ACTIONS(3618), + [anon_sym_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [sym_html_comment] = ACTIONS(5), + }, + [1334] = { + [sym_comment] = STATE(1334), + [sym_identifier] = ACTIONS(3620), + [anon_sym_export] = ACTIONS(3620), + [anon_sym_default] = ACTIONS(3620), + [anon_sym_type] = ACTIONS(3620), + [anon_sym_namespace] = ACTIONS(3620), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_typeof] = ACTIONS(3620), + [anon_sym_import] = ACTIONS(3620), + [anon_sym_from] = ACTIONS(3620), + [anon_sym_with] = ACTIONS(3620), + [anon_sym_var] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_const] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_switch] = ACTIONS(3620), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_await] = ACTIONS(3620), + [anon_sym_of] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_break] = ACTIONS(3620), + [anon_sym_continue] = ACTIONS(3620), + [anon_sym_debugger] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_throw] = ACTIONS(3620), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym_case] = ACTIONS(3620), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LTtemplate_GT] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_class] = ACTIONS(3620), + [anon_sym_async] = ACTIONS(3620), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_using] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_SLASH] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_void] = ACTIONS(3620), + [anon_sym_delete] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3620), + [sym_number] = ACTIONS(3620), + [sym_private_property_identifier] = ACTIONS(3620), + [sym_this] = ACTIONS(3620), + [sym_super] = ACTIONS(3620), + [sym_true] = ACTIONS(3620), + [sym_false] = ACTIONS(3620), + [sym_null] = ACTIONS(3620), + [sym_undefined] = ACTIONS(3620), + [anon_sym_AT] = ACTIONS(3620), + [anon_sym_static] = ACTIONS(3620), + [anon_sym_readonly] = ACTIONS(3620), + [anon_sym_get] = ACTIONS(3620), + [anon_sym_set] = ACTIONS(3620), + [anon_sym_declare] = ACTIONS(3620), + [anon_sym_public] = ACTIONS(3620), + [anon_sym_private] = ACTIONS(3620), + [anon_sym_protected] = ACTIONS(3620), + [anon_sym_override] = ACTIONS(3620), + [anon_sym_module] = ACTIONS(3620), + [anon_sym_any] = ACTIONS(3620), + [anon_sym_number] = ACTIONS(3620), + [anon_sym_boolean] = ACTIONS(3620), + [anon_sym_string] = ACTIONS(3620), + [anon_sym_symbol] = ACTIONS(3620), + [anon_sym_object] = ACTIONS(3620), + [anon_sym_property] = ACTIONS(3620), + [anon_sym_signal] = ACTIONS(3620), + [anon_sym_on] = ACTIONS(3620), + [anon_sym_required] = ACTIONS(3620), + [anon_sym_component] = ACTIONS(3620), + [anon_sym_abstract] = ACTIONS(3620), + [anon_sym_interface] = ACTIONS(3620), + [anon_sym_enum] = ACTIONS(3620), + [sym_html_comment] = ACTIONS(5), + }, + [1335] = { + [sym_comment] = STATE(1335), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [sym_html_comment] = ACTIONS(5), + }, + [1336] = { + [sym_comment] = STATE(1336), + [sym_identifier] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_type] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_typeof] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_from] = ACTIONS(3624), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_var] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_await] = ACTIONS(3624), + [anon_sym_of] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_debugger] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym_case] = ACTIONS(3624), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LTtemplate_GT] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_async] = ACTIONS(3624), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_SLASH] = ACTIONS(3624), + [anon_sym_LT] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_void] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3624), + [sym_number] = ACTIONS(3624), + [sym_private_property_identifier] = ACTIONS(3624), + [sym_this] = ACTIONS(3624), + [sym_super] = ACTIONS(3624), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [sym_null] = ACTIONS(3624), + [sym_undefined] = ACTIONS(3624), + [anon_sym_AT] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_readonly] = ACTIONS(3624), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3624), + [anon_sym_declare] = ACTIONS(3624), + [anon_sym_public] = ACTIONS(3624), + [anon_sym_private] = ACTIONS(3624), + [anon_sym_protected] = ACTIONS(3624), + [anon_sym_override] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_any] = ACTIONS(3624), + [anon_sym_number] = ACTIONS(3624), + [anon_sym_boolean] = ACTIONS(3624), + [anon_sym_string] = ACTIONS(3624), + [anon_sym_symbol] = ACTIONS(3624), + [anon_sym_object] = ACTIONS(3624), + [anon_sym_property] = ACTIONS(3624), + [anon_sym_signal] = ACTIONS(3624), + [anon_sym_on] = ACTIONS(3624), + [anon_sym_required] = ACTIONS(3624), + [anon_sym_component] = ACTIONS(3624), + [anon_sym_abstract] = ACTIONS(3624), + [anon_sym_interface] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), + [sym_html_comment] = ACTIONS(5), + }, + [1337] = { + [sym_comment] = STATE(1337), + [sym_identifier] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_type] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_typeof] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_from] = ACTIONS(3624), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_var] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_await] = ACTIONS(3624), + [anon_sym_of] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_debugger] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym_case] = ACTIONS(3624), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LTtemplate_GT] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_async] = ACTIONS(3624), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_SLASH] = ACTIONS(3624), + [anon_sym_LT] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_void] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3624), + [sym_number] = ACTIONS(3624), + [sym_private_property_identifier] = ACTIONS(3624), + [sym_this] = ACTIONS(3624), + [sym_super] = ACTIONS(3624), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [sym_null] = ACTIONS(3624), + [sym_undefined] = ACTIONS(3624), + [anon_sym_AT] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_readonly] = ACTIONS(3624), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3624), + [anon_sym_declare] = ACTIONS(3624), + [anon_sym_public] = ACTIONS(3624), + [anon_sym_private] = ACTIONS(3624), + [anon_sym_protected] = ACTIONS(3624), + [anon_sym_override] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_any] = ACTIONS(3624), + [anon_sym_number] = ACTIONS(3624), + [anon_sym_boolean] = ACTIONS(3624), + [anon_sym_string] = ACTIONS(3624), + [anon_sym_symbol] = ACTIONS(3624), + [anon_sym_object] = ACTIONS(3624), + [anon_sym_property] = ACTIONS(3624), + [anon_sym_signal] = ACTIONS(3624), + [anon_sym_on] = ACTIONS(3624), + [anon_sym_required] = ACTIONS(3624), + [anon_sym_component] = ACTIONS(3624), + [anon_sym_abstract] = ACTIONS(3624), + [anon_sym_interface] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), + [sym_html_comment] = ACTIONS(5), + }, + [1338] = { + [sym_comment] = STATE(1338), + [sym_identifier] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_namespace] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_import] = ACTIONS(2478), + [anon_sym_from] = ACTIONS(2478), + [anon_sym_with] = ACTIONS(2478), + [anon_sym_var] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_await] = ACTIONS(2478), + [anon_sym_of] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_debugger] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_throw] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_yield] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_LTtemplate_GT] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_class] = ACTIONS(2478), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_new] = ACTIONS(2478), + [anon_sym_using] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_SLASH] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2478), + [sym_number] = ACTIONS(2478), + [sym_private_property_identifier] = ACTIONS(2478), + [sym_this] = ACTIONS(2478), + [sym_super] = ACTIONS(2478), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [sym_null] = ACTIONS(2478), + [sym_undefined] = ACTIONS(2478), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_override] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_any] = ACTIONS(2478), + [anon_sym_number] = ACTIONS(2478), + [anon_sym_boolean] = ACTIONS(2478), + [anon_sym_string] = ACTIONS(2478), + [anon_sym_symbol] = ACTIONS(2478), + [anon_sym_object] = ACTIONS(2478), + [anon_sym_property] = ACTIONS(2478), + [anon_sym_signal] = ACTIONS(2478), + [anon_sym_on] = ACTIONS(2478), + [anon_sym_required] = ACTIONS(2478), + [anon_sym_component] = ACTIONS(2478), + [anon_sym_abstract] = ACTIONS(2478), + [anon_sym_interface] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [sym__automatic_semicolon] = ACTIONS(2618), + [sym_html_comment] = ACTIONS(5), + }, + [1339] = { + [sym_comment] = STATE(1339), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2610), + [sym_html_comment] = ACTIONS(5), + }, + [1340] = { + [sym_comment] = STATE(1340), + [sym_identifier] = ACTIONS(2360), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_namespace] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_typeof] = ACTIONS(2360), + [anon_sym_import] = ACTIONS(2360), + [anon_sym_from] = ACTIONS(2360), + [anon_sym_with] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_switch] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_await] = ACTIONS(2360), + [anon_sym_of] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_debugger] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_throw] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [anon_sym_LTtemplate_GT] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_class] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_new] = ACTIONS(2360), + [anon_sym_using] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_void] = ACTIONS(2360), + [anon_sym_delete] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2360), + [sym_number] = ACTIONS(2360), + [sym_private_property_identifier] = ACTIONS(2360), + [sym_this] = ACTIONS(2360), + [sym_super] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_null] = ACTIONS(2360), + [sym_undefined] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_readonly] = ACTIONS(2360), + [anon_sym_get] = ACTIONS(2360), + [anon_sym_set] = ACTIONS(2360), + [anon_sym_declare] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_protected] = ACTIONS(2360), + [anon_sym_override] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_any] = ACTIONS(2360), + [anon_sym_number] = ACTIONS(2360), + [anon_sym_boolean] = ACTIONS(2360), + [anon_sym_string] = ACTIONS(2360), + [anon_sym_symbol] = ACTIONS(2360), + [anon_sym_object] = ACTIONS(2360), + [anon_sym_property] = ACTIONS(2360), + [anon_sym_signal] = ACTIONS(2360), + [anon_sym_on] = ACTIONS(2360), + [anon_sym_required] = ACTIONS(2360), + [anon_sym_component] = ACTIONS(2360), + [anon_sym_abstract] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [sym__automatic_semicolon] = ACTIONS(2606), + [sym_html_comment] = ACTIONS(5), + }, + [1341] = { + [sym_comment] = STATE(1341), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_finally] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym_html_comment] = ACTIONS(5), + }, + [1342] = { + [sym_comment] = STATE(1342), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym_html_comment] = ACTIONS(5), }, - [689] = { + [1343] = { + [sym_comment] = STATE(1343), [sym_identifier] = ACTIONS(2328), [anon_sym_export] = ACTIONS(2328), [anon_sym_default] = ACTIONS(2328), [anon_sym_type] = ACTIONS(2328), [anon_sym_namespace] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2330), - [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), [anon_sym_typeof] = ACTIONS(2328), [anon_sym_import] = ACTIONS(2328), [anon_sym_from] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), [anon_sym_var] = ACTIONS(2328), [anon_sym_let] = ACTIONS(2328), [anon_sym_const] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_else] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), [anon_sym_if] = ACTIONS(2328), [anon_sym_switch] = ACTIONS(2328), [anon_sym_for] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_LPAREN] = ACTIONS(2328), [anon_sym_await] = ACTIONS(2328), [anon_sym_of] = ACTIONS(2328), [anon_sym_while] = ACTIONS(2328), [anon_sym_do] = ACTIONS(2328), [anon_sym_try] = ACTIONS(2328), - [anon_sym_with] = ACTIONS(2328), [anon_sym_break] = ACTIONS(2328), [anon_sym_continue] = ACTIONS(2328), [anon_sym_debugger] = ACTIONS(2328), [anon_sym_return] = ACTIONS(2328), [anon_sym_throw] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2328), [anon_sym_case] = ACTIONS(2328), - [anon_sym_finally] = ACTIONS(2328), [anon_sym_yield] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2330), - [anon_sym_LTtemplate_GT] = ACTIONS(2330), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_LTtemplate_GT] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2328), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_using] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), [anon_sym_LT] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2328), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2328), + [sym_number] = ACTIONS(2328), + [sym_private_property_identifier] = ACTIONS(2328), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_property] = ACTIONS(2328), + [anon_sym_signal] = ACTIONS(2328), + [anon_sym_on] = ACTIONS(2328), + [anon_sym_required] = ACTIONS(2328), + [anon_sym_component] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym_html_comment] = ACTIONS(5), + }, + [1344] = { + [sym_comment] = STATE(1344), + [sym_identifier] = ACTIONS(3628), + [anon_sym_export] = ACTIONS(3628), + [anon_sym_default] = ACTIONS(3628), + [anon_sym_type] = ACTIONS(3628), + [anon_sym_namespace] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_RBRACE] = ACTIONS(3628), + [anon_sym_typeof] = ACTIONS(3628), + [anon_sym_import] = ACTIONS(3628), + [anon_sym_from] = ACTIONS(3628), + [anon_sym_with] = ACTIONS(3628), + [anon_sym_var] = ACTIONS(3628), + [anon_sym_let] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_if] = ACTIONS(3628), + [anon_sym_switch] = ACTIONS(3628), + [anon_sym_for] = ACTIONS(3628), + [anon_sym_LPAREN] = ACTIONS(3628), + [anon_sym_await] = ACTIONS(3628), + [anon_sym_of] = ACTIONS(3628), + [anon_sym_while] = ACTIONS(3628), + [anon_sym_do] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3628), + [anon_sym_break] = ACTIONS(3628), + [anon_sym_continue] = ACTIONS(3628), + [anon_sym_debugger] = ACTIONS(3628), + [anon_sym_return] = ACTIONS(3628), + [anon_sym_throw] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_case] = ACTIONS(3628), + [anon_sym_yield] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3628), + [anon_sym_LTtemplate_GT] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_async] = ACTIONS(3628), + [anon_sym_function] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_using] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_LT] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_void] = ACTIONS(3628), + [anon_sym_delete] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3628), + [sym_number] = ACTIONS(3628), + [sym_private_property_identifier] = ACTIONS(3628), + [sym_this] = ACTIONS(3628), + [sym_super] = ACTIONS(3628), + [sym_true] = ACTIONS(3628), + [sym_false] = ACTIONS(3628), + [sym_null] = ACTIONS(3628), + [sym_undefined] = ACTIONS(3628), + [anon_sym_AT] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_readonly] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(3628), + [anon_sym_set] = ACTIONS(3628), + [anon_sym_declare] = ACTIONS(3628), + [anon_sym_public] = ACTIONS(3628), + [anon_sym_private] = ACTIONS(3628), + [anon_sym_protected] = ACTIONS(3628), + [anon_sym_override] = ACTIONS(3628), + [anon_sym_module] = ACTIONS(3628), + [anon_sym_any] = ACTIONS(3628), + [anon_sym_number] = ACTIONS(3628), + [anon_sym_boolean] = ACTIONS(3628), + [anon_sym_string] = ACTIONS(3628), + [anon_sym_symbol] = ACTIONS(3628), + [anon_sym_object] = ACTIONS(3628), + [anon_sym_property] = ACTIONS(3628), + [anon_sym_signal] = ACTIONS(3628), + [anon_sym_on] = ACTIONS(3628), + [anon_sym_required] = ACTIONS(3628), + [anon_sym_component] = ACTIONS(3628), + [anon_sym_abstract] = ACTIONS(3628), + [anon_sym_interface] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), + [sym_html_comment] = ACTIONS(5), + }, + [1345] = { + [sym_comment] = STATE(1345), + [sym_identifier] = ACTIONS(3630), + [anon_sym_export] = ACTIONS(3630), + [anon_sym_default] = ACTIONS(3630), + [anon_sym_type] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_typeof] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), + [anon_sym_from] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3630), + [anon_sym_var] = ACTIONS(3630), + [anon_sym_let] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_await] = ACTIONS(3630), + [anon_sym_of] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_debugger] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_case] = ACTIONS(3630), + [anon_sym_yield] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LTtemplate_GT] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3630), + [anon_sym_SQUOTE] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_async] = ACTIONS(3630), + [anon_sym_function] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_SLASH] = ACTIONS(3630), + [anon_sym_LT] = ACTIONS(3630), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_void] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3630), + [sym_number] = ACTIONS(3630), + [sym_private_property_identifier] = ACTIONS(3630), + [sym_this] = ACTIONS(3630), + [sym_super] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_null] = ACTIONS(3630), + [sym_undefined] = ACTIONS(3630), + [anon_sym_AT] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_readonly] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(3630), + [anon_sym_set] = ACTIONS(3630), + [anon_sym_declare] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_override] = ACTIONS(3630), + [anon_sym_module] = ACTIONS(3630), + [anon_sym_any] = ACTIONS(3630), + [anon_sym_number] = ACTIONS(3630), + [anon_sym_boolean] = ACTIONS(3630), + [anon_sym_string] = ACTIONS(3630), + [anon_sym_symbol] = ACTIONS(3630), + [anon_sym_object] = ACTIONS(3630), + [anon_sym_property] = ACTIONS(3630), + [anon_sym_signal] = ACTIONS(3630), + [anon_sym_on] = ACTIONS(3630), + [anon_sym_required] = ACTIONS(3630), + [anon_sym_component] = ACTIONS(3630), + [anon_sym_abstract] = ACTIONS(3630), + [anon_sym_interface] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [sym_html_comment] = ACTIONS(5), + }, + [1346] = { + [sym_comment] = STATE(1346), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(2556), + [sym_html_comment] = ACTIONS(5), + }, + [1347] = { + [sym_comment] = STATE(1347), + [sym_identifier] = ACTIONS(3654), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_default] = ACTIONS(3654), + [anon_sym_type] = ACTIONS(3654), + [anon_sym_namespace] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_RBRACE] = ACTIONS(3654), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_from] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_await] = ACTIONS(3654), + [anon_sym_of] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym_case] = ACTIONS(3654), + [anon_sym_yield] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_LTtemplate_GT] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_class] = ACTIONS(3654), + [anon_sym_async] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_using] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_LT] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_void] = ACTIONS(3654), + [anon_sym_delete] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3654), + [sym_number] = ACTIONS(3654), + [sym_private_property_identifier] = ACTIONS(3654), + [sym_this] = ACTIONS(3654), + [sym_super] = ACTIONS(3654), + [sym_true] = ACTIONS(3654), + [sym_false] = ACTIONS(3654), + [sym_null] = ACTIONS(3654), + [sym_undefined] = ACTIONS(3654), + [anon_sym_AT] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_readonly] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_declare] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_protected] = ACTIONS(3654), + [anon_sym_override] = ACTIONS(3654), + [anon_sym_module] = ACTIONS(3654), + [anon_sym_any] = ACTIONS(3654), + [anon_sym_number] = ACTIONS(3654), + [anon_sym_boolean] = ACTIONS(3654), + [anon_sym_string] = ACTIONS(3654), + [anon_sym_symbol] = ACTIONS(3654), + [anon_sym_object] = ACTIONS(3654), + [anon_sym_property] = ACTIONS(3654), + [anon_sym_signal] = ACTIONS(3654), + [anon_sym_on] = ACTIONS(3654), + [anon_sym_required] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_enum] = ACTIONS(3654), + [sym_html_comment] = ACTIONS(5), + }, + [1348] = { + [sym_comment] = STATE(1348), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1349] = { + [sym_comment] = STATE(1349), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1350] = { + [sym_comment] = STATE(1350), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1351] = { + [sym_comment] = STATE(1351), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1352] = { + [sym_comment] = STATE(1352), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1353] = { + [sym_comment] = STATE(1353), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1354] = { + [sym_comment] = STATE(1354), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1355] = { + [sym_comment] = STATE(1355), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1356] = { + [sym_comment] = STATE(1356), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1357] = { + [sym_comment] = STATE(1357), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1358] = { + [sym_comment] = STATE(1358), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_default] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_typeof] = ACTIONS(2410), + [anon_sym_import] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2410), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_debugger] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_throw] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_case] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LTtemplate_GT] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_class] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2410), + [anon_sym_delete] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_private_property_identifier] = ACTIONS(2410), + [sym_this] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_true] = ACTIONS(2410), + [sym_false] = ACTIONS(2410), + [sym_null] = ACTIONS(2410), + [sym_undefined] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_abstract] = ACTIONS(2410), + [anon_sym_interface] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym_html_comment] = ACTIONS(5), + }, + [1359] = { + [sym_comment] = STATE(1359), + [sym_identifier] = ACTIONS(3556), + [anon_sym_export] = ACTIONS(3556), + [anon_sym_default] = ACTIONS(3556), + [anon_sym_type] = ACTIONS(3556), + [anon_sym_namespace] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_RBRACE] = ACTIONS(3556), + [anon_sym_typeof] = ACTIONS(3556), + [anon_sym_import] = ACTIONS(3556), + [anon_sym_from] = ACTIONS(3556), + [anon_sym_with] = ACTIONS(3556), + [anon_sym_var] = ACTIONS(3556), + [anon_sym_let] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3556), + [anon_sym_await] = ACTIONS(3556), + [anon_sym_of] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_debugger] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym_case] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3556), + [anon_sym_LTtemplate_GT] = ACTIONS(3556), + [anon_sym_DQUOTE] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3556), + [anon_sym_async] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_using] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_SLASH] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_void] = ACTIONS(3556), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3556), + [anon_sym_DASH_DASH] = ACTIONS(3556), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3556), + [sym_number] = ACTIONS(3556), + [sym_private_property_identifier] = ACTIONS(3556), + [sym_this] = ACTIONS(3556), + [sym_super] = ACTIONS(3556), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [sym_null] = ACTIONS(3556), + [sym_undefined] = ACTIONS(3556), + [anon_sym_AT] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_readonly] = ACTIONS(3556), + [anon_sym_get] = ACTIONS(3556), + [anon_sym_set] = ACTIONS(3556), + [anon_sym_declare] = ACTIONS(3556), + [anon_sym_public] = ACTIONS(3556), + [anon_sym_private] = ACTIONS(3556), + [anon_sym_protected] = ACTIONS(3556), + [anon_sym_override] = ACTIONS(3556), + [anon_sym_module] = ACTIONS(3556), + [anon_sym_any] = ACTIONS(3556), + [anon_sym_number] = ACTIONS(3556), + [anon_sym_boolean] = ACTIONS(3556), + [anon_sym_string] = ACTIONS(3556), + [anon_sym_symbol] = ACTIONS(3556), + [anon_sym_object] = ACTIONS(3556), + [anon_sym_property] = ACTIONS(3556), + [anon_sym_signal] = ACTIONS(3556), + [anon_sym_on] = ACTIONS(3556), + [anon_sym_required] = ACTIONS(3556), + [anon_sym_component] = ACTIONS(3556), + [anon_sym_abstract] = ACTIONS(3556), + [anon_sym_interface] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), + [sym_html_comment] = ACTIONS(5), + }, + [1360] = { + [sym_comment] = STATE(1360), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3696), + [sym_html_comment] = ACTIONS(5), + }, + [1361] = { + [sym_else_clause] = STATE(1773), + [sym_comment] = STATE(1361), + [sym_identifier] = ACTIONS(3426), + [anon_sym_export] = ACTIONS(3426), + [anon_sym_type] = ACTIONS(3426), + [anon_sym_namespace] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_RBRACE] = ACTIONS(3426), + [anon_sym_typeof] = ACTIONS(3426), + [anon_sym_import] = ACTIONS(3426), + [anon_sym_from] = ACTIONS(3426), + [anon_sym_with] = ACTIONS(3426), + [anon_sym_var] = ACTIONS(3426), + [anon_sym_let] = ACTIONS(3426), + [anon_sym_const] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3426), + [anon_sym_else] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3426), + [anon_sym_switch] = ACTIONS(3426), + [anon_sym_for] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3426), + [anon_sym_await] = ACTIONS(3426), + [anon_sym_of] = ACTIONS(3426), + [anon_sym_while] = ACTIONS(3426), + [anon_sym_do] = ACTIONS(3426), + [anon_sym_try] = ACTIONS(3426), + [anon_sym_break] = ACTIONS(3426), + [anon_sym_continue] = ACTIONS(3426), + [anon_sym_debugger] = ACTIONS(3426), + [anon_sym_return] = ACTIONS(3426), + [anon_sym_throw] = ACTIONS(3426), + [anon_sym_SEMI] = ACTIONS(3426), + [anon_sym_yield] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3426), + [anon_sym_LTtemplate_GT] = ACTIONS(3426), + [anon_sym_DQUOTE] = ACTIONS(3426), + [anon_sym_SQUOTE] = ACTIONS(3426), + [anon_sym_class] = ACTIONS(3426), + [anon_sym_async] = ACTIONS(3426), + [anon_sym_function] = ACTIONS(3426), + [anon_sym_new] = ACTIONS(3426), + [anon_sym_using] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_TILDE] = ACTIONS(3426), + [anon_sym_void] = ACTIONS(3426), + [anon_sym_delete] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3426), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3426), + [sym_number] = ACTIONS(3426), + [sym_private_property_identifier] = ACTIONS(3426), + [sym_this] = ACTIONS(3426), + [sym_super] = ACTIONS(3426), + [sym_true] = ACTIONS(3426), + [sym_false] = ACTIONS(3426), + [sym_null] = ACTIONS(3426), + [sym_undefined] = ACTIONS(3426), + [anon_sym_AT] = ACTIONS(3426), + [anon_sym_static] = ACTIONS(3426), + [anon_sym_readonly] = ACTIONS(3426), + [anon_sym_get] = ACTIONS(3426), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_declare] = ACTIONS(3426), + [anon_sym_public] = ACTIONS(3426), + [anon_sym_private] = ACTIONS(3426), + [anon_sym_protected] = ACTIONS(3426), + [anon_sym_override] = ACTIONS(3426), + [anon_sym_module] = ACTIONS(3426), + [anon_sym_any] = ACTIONS(3426), + [anon_sym_number] = ACTIONS(3426), + [anon_sym_boolean] = ACTIONS(3426), + [anon_sym_string] = ACTIONS(3426), + [anon_sym_symbol] = ACTIONS(3426), + [anon_sym_object] = ACTIONS(3426), + [anon_sym_property] = ACTIONS(3426), + [anon_sym_signal] = ACTIONS(3426), + [anon_sym_on] = ACTIONS(3426), + [anon_sym_required] = ACTIONS(3426), + [anon_sym_component] = ACTIONS(3426), + [anon_sym_abstract] = ACTIONS(3426), + [anon_sym_interface] = ACTIONS(3426), + [anon_sym_enum] = ACTIONS(3426), + [sym_html_comment] = ACTIONS(5), + }, + [1362] = { + [sym_comment] = STATE(1362), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1363] = { + [sym_comment] = STATE(1363), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1364] = { + [sym_comment] = STATE(1364), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1365] = { + [sym_comment] = STATE(1365), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1366] = { + [sym_comment] = STATE(1366), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1367] = { + [sym_comment] = STATE(1367), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1368] = { + [sym_comment] = STATE(1368), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1369] = { + [sym_comment] = STATE(1369), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1370] = { + [sym_comment] = STATE(1370), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1371] = { + [sym_comment] = STATE(1371), + [sym_identifier] = ACTIONS(3626), + [anon_sym_export] = ACTIONS(3626), + [anon_sym_default] = ACTIONS(3626), + [anon_sym_type] = ACTIONS(3626), + [anon_sym_namespace] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3626), + [anon_sym_RBRACE] = ACTIONS(3626), + [anon_sym_typeof] = ACTIONS(3626), + [anon_sym_import] = ACTIONS(3626), + [anon_sym_from] = ACTIONS(3626), + [anon_sym_with] = ACTIONS(3626), + [anon_sym_var] = ACTIONS(3626), + [anon_sym_let] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3626), + [anon_sym_await] = ACTIONS(3626), + [anon_sym_of] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_debugger] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym_case] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_LTtemplate_GT] = ACTIONS(3626), + [anon_sym_DQUOTE] = ACTIONS(3626), + [anon_sym_SQUOTE] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_async] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_SLASH] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_TILDE] = ACTIONS(3626), + [anon_sym_void] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3626), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3626), + [sym_number] = ACTIONS(3626), + [sym_private_property_identifier] = ACTIONS(3626), + [sym_this] = ACTIONS(3626), + [sym_super] = ACTIONS(3626), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [sym_null] = ACTIONS(3626), + [sym_undefined] = ACTIONS(3626), + [anon_sym_AT] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_readonly] = ACTIONS(3626), + [anon_sym_get] = ACTIONS(3626), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_declare] = ACTIONS(3626), + [anon_sym_public] = ACTIONS(3626), + [anon_sym_private] = ACTIONS(3626), + [anon_sym_protected] = ACTIONS(3626), + [anon_sym_override] = ACTIONS(3626), + [anon_sym_module] = ACTIONS(3626), + [anon_sym_any] = ACTIONS(3626), + [anon_sym_number] = ACTIONS(3626), + [anon_sym_boolean] = ACTIONS(3626), + [anon_sym_string] = ACTIONS(3626), + [anon_sym_symbol] = ACTIONS(3626), + [anon_sym_object] = ACTIONS(3626), + [anon_sym_property] = ACTIONS(3626), + [anon_sym_signal] = ACTIONS(3626), + [anon_sym_on] = ACTIONS(3626), + [anon_sym_required] = ACTIONS(3626), + [anon_sym_component] = ACTIONS(3626), + [anon_sym_abstract] = ACTIONS(3626), + [anon_sym_interface] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [sym_html_comment] = ACTIONS(5), + }, + [1372] = { + [sym_comment] = STATE(1372), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1373] = { + [sym_comment] = STATE(1373), + [sym_identifier] = ACTIONS(3658), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_default] = ACTIONS(3658), + [anon_sym_type] = ACTIONS(3658), + [anon_sym_namespace] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_RBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_from] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_await] = ACTIONS(3658), + [anon_sym_of] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_case] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LTtemplate_GT] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_async] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_void] = ACTIONS(3658), + [anon_sym_delete] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3658), + [sym_number] = ACTIONS(3658), + [sym_private_property_identifier] = ACTIONS(3658), + [sym_this] = ACTIONS(3658), + [sym_super] = ACTIONS(3658), + [sym_true] = ACTIONS(3658), + [sym_false] = ACTIONS(3658), + [sym_null] = ACTIONS(3658), + [sym_undefined] = ACTIONS(3658), + [anon_sym_AT] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_readonly] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_declare] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_protected] = ACTIONS(3658), + [anon_sym_override] = ACTIONS(3658), + [anon_sym_module] = ACTIONS(3658), + [anon_sym_any] = ACTIONS(3658), + [anon_sym_number] = ACTIONS(3658), + [anon_sym_boolean] = ACTIONS(3658), + [anon_sym_string] = ACTIONS(3658), + [anon_sym_symbol] = ACTIONS(3658), + [anon_sym_object] = ACTIONS(3658), + [anon_sym_property] = ACTIONS(3658), + [anon_sym_signal] = ACTIONS(3658), + [anon_sym_on] = ACTIONS(3658), + [anon_sym_required] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1374] = { + [sym_comment] = STATE(1374), + [sym_identifier] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_from] = ACTIONS(3660), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_var] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_await] = ACTIONS(3660), + [anon_sym_of] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_debugger] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LTtemplate_GT] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_async] = ACTIONS(3660), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_SLASH] = ACTIONS(3660), + [anon_sym_LT] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_void] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3660), + [sym_number] = ACTIONS(3660), + [sym_private_property_identifier] = ACTIONS(3660), + [sym_this] = ACTIONS(3660), + [sym_super] = ACTIONS(3660), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_null] = ACTIONS(3660), + [sym_undefined] = ACTIONS(3660), + [anon_sym_AT] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_readonly] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(3660), + [anon_sym_set] = ACTIONS(3660), + [anon_sym_declare] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_override] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_any] = ACTIONS(3660), + [anon_sym_number] = ACTIONS(3660), + [anon_sym_boolean] = ACTIONS(3660), + [anon_sym_string] = ACTIONS(3660), + [anon_sym_symbol] = ACTIONS(3660), + [anon_sym_object] = ACTIONS(3660), + [anon_sym_property] = ACTIONS(3660), + [anon_sym_signal] = ACTIONS(3660), + [anon_sym_on] = ACTIONS(3660), + [anon_sym_required] = ACTIONS(3660), + [anon_sym_component] = ACTIONS(3660), + [anon_sym_abstract] = ACTIONS(3660), + [anon_sym_interface] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [sym_html_comment] = ACTIONS(5), + }, + [1375] = { + [sym_finally_clause] = STATE(1779), + [sym_comment] = STATE(1375), + [sym_identifier] = ACTIONS(3412), + [anon_sym_export] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_namespace] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3412), + [anon_sym_import] = ACTIONS(3412), + [anon_sym_from] = ACTIONS(3412), + [anon_sym_with] = ACTIONS(3412), + [anon_sym_var] = ACTIONS(3412), + [anon_sym_let] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_switch] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3412), + [anon_sym_of] = ACTIONS(3412), + [anon_sym_while] = ACTIONS(3412), + [anon_sym_do] = ACTIONS(3412), + [anon_sym_try] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_debugger] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_throw] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_finally] = ACTIONS(3434), + [anon_sym_yield] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LTtemplate_GT] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [anon_sym_class] = ACTIONS(3412), + [anon_sym_async] = ACTIONS(3412), + [anon_sym_function] = ACTIONS(3412), + [anon_sym_new] = ACTIONS(3412), + [anon_sym_using] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_private_property_identifier] = ACTIONS(3412), + [sym_this] = ACTIONS(3412), + [sym_super] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_null] = ACTIONS(3412), + [sym_undefined] = ACTIONS(3412), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3412), + [anon_sym_readonly] = ACTIONS(3412), + [anon_sym_get] = ACTIONS(3412), + [anon_sym_set] = ACTIONS(3412), + [anon_sym_declare] = ACTIONS(3412), + [anon_sym_public] = ACTIONS(3412), + [anon_sym_private] = ACTIONS(3412), + [anon_sym_protected] = ACTIONS(3412), + [anon_sym_override] = ACTIONS(3412), + [anon_sym_module] = ACTIONS(3412), + [anon_sym_any] = ACTIONS(3412), + [anon_sym_number] = ACTIONS(3412), + [anon_sym_boolean] = ACTIONS(3412), + [anon_sym_string] = ACTIONS(3412), + [anon_sym_symbol] = ACTIONS(3412), + [anon_sym_object] = ACTIONS(3412), + [anon_sym_property] = ACTIONS(3412), + [anon_sym_signal] = ACTIONS(3412), + [anon_sym_on] = ACTIONS(3412), + [anon_sym_required] = ACTIONS(3412), + [anon_sym_component] = ACTIONS(3412), + [anon_sym_abstract] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), + [sym_html_comment] = ACTIONS(5), + }, + [1376] = { + [sym_comment] = STATE(1376), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_case] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym_html_comment] = ACTIONS(5), + }, + [1377] = { + [sym_comment] = STATE(1377), + [sym_identifier] = ACTIONS(3472), + [anon_sym_export] = ACTIONS(3472), + [anon_sym_default] = ACTIONS(3472), + [anon_sym_type] = ACTIONS(3472), + [anon_sym_namespace] = ACTIONS(3472), + [anon_sym_LBRACE] = ACTIONS(3472), + [anon_sym_RBRACE] = ACTIONS(3472), + [anon_sym_typeof] = ACTIONS(3472), + [anon_sym_import] = ACTIONS(3472), + [anon_sym_from] = ACTIONS(3472), + [anon_sym_with] = ACTIONS(3472), + [anon_sym_var] = ACTIONS(3472), + [anon_sym_let] = ACTIONS(3472), + [anon_sym_const] = ACTIONS(3472), + [anon_sym_BANG] = ACTIONS(3472), + [anon_sym_if] = ACTIONS(3472), + [anon_sym_switch] = ACTIONS(3472), + [anon_sym_for] = ACTIONS(3472), + [anon_sym_LPAREN] = ACTIONS(3472), + [anon_sym_await] = ACTIONS(3472), + [anon_sym_of] = ACTIONS(3472), + [anon_sym_while] = ACTIONS(3472), + [anon_sym_do] = ACTIONS(3472), + [anon_sym_try] = ACTIONS(3472), + [anon_sym_break] = ACTIONS(3472), + [anon_sym_continue] = ACTIONS(3472), + [anon_sym_debugger] = ACTIONS(3472), + [anon_sym_return] = ACTIONS(3472), + [anon_sym_throw] = ACTIONS(3472), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym_case] = ACTIONS(3472), + [anon_sym_yield] = ACTIONS(3472), + [anon_sym_LBRACK] = ACTIONS(3472), + [anon_sym_LTtemplate_GT] = ACTIONS(3472), + [anon_sym_DQUOTE] = ACTIONS(3472), + [anon_sym_SQUOTE] = ACTIONS(3472), + [anon_sym_class] = ACTIONS(3472), + [anon_sym_async] = ACTIONS(3472), + [anon_sym_function] = ACTIONS(3472), + [anon_sym_new] = ACTIONS(3472), + [anon_sym_using] = ACTIONS(3472), + [anon_sym_PLUS] = ACTIONS(3472), + [anon_sym_DASH] = ACTIONS(3472), + [anon_sym_SLASH] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(3472), + [anon_sym_TILDE] = ACTIONS(3472), + [anon_sym_void] = ACTIONS(3472), + [anon_sym_delete] = ACTIONS(3472), + [anon_sym_PLUS_PLUS] = ACTIONS(3472), + [anon_sym_DASH_DASH] = ACTIONS(3472), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3472), + [sym_number] = ACTIONS(3472), + [sym_private_property_identifier] = ACTIONS(3472), + [sym_this] = ACTIONS(3472), + [sym_super] = ACTIONS(3472), + [sym_true] = ACTIONS(3472), + [sym_false] = ACTIONS(3472), + [sym_null] = ACTIONS(3472), + [sym_undefined] = ACTIONS(3472), + [anon_sym_AT] = ACTIONS(3472), + [anon_sym_static] = ACTIONS(3472), + [anon_sym_readonly] = ACTIONS(3472), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3472), + [anon_sym_declare] = ACTIONS(3472), + [anon_sym_public] = ACTIONS(3472), + [anon_sym_private] = ACTIONS(3472), + [anon_sym_protected] = ACTIONS(3472), + [anon_sym_override] = ACTIONS(3472), + [anon_sym_module] = ACTIONS(3472), + [anon_sym_any] = ACTIONS(3472), + [anon_sym_number] = ACTIONS(3472), + [anon_sym_boolean] = ACTIONS(3472), + [anon_sym_string] = ACTIONS(3472), + [anon_sym_symbol] = ACTIONS(3472), + [anon_sym_object] = ACTIONS(3472), + [anon_sym_property] = ACTIONS(3472), + [anon_sym_signal] = ACTIONS(3472), + [anon_sym_on] = ACTIONS(3472), + [anon_sym_required] = ACTIONS(3472), + [anon_sym_component] = ACTIONS(3472), + [anon_sym_abstract] = ACTIONS(3472), + [anon_sym_interface] = ACTIONS(3472), + [anon_sym_enum] = ACTIONS(3472), + [sym_html_comment] = ACTIONS(5), + }, + [1378] = { + [sym_comment] = STATE(1378), + [sym_identifier] = ACTIONS(3632), + [anon_sym_export] = ACTIONS(3632), + [anon_sym_default] = ACTIONS(3632), + [anon_sym_type] = ACTIONS(3632), + [anon_sym_namespace] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_typeof] = ACTIONS(3632), + [anon_sym_import] = ACTIONS(3632), + [anon_sym_from] = ACTIONS(3632), + [anon_sym_with] = ACTIONS(3632), + [anon_sym_var] = ACTIONS(3632), + [anon_sym_let] = ACTIONS(3632), + [anon_sym_const] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_switch] = ACTIONS(3632), + [anon_sym_for] = ACTIONS(3632), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_await] = ACTIONS(3632), + [anon_sym_of] = ACTIONS(3632), + [anon_sym_while] = ACTIONS(3632), + [anon_sym_do] = ACTIONS(3632), + [anon_sym_try] = ACTIONS(3632), + [anon_sym_break] = ACTIONS(3632), + [anon_sym_continue] = ACTIONS(3632), + [anon_sym_debugger] = ACTIONS(3632), + [anon_sym_return] = ACTIONS(3632), + [anon_sym_throw] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_case] = ACTIONS(3632), + [anon_sym_yield] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3632), + [anon_sym_LTtemplate_GT] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_class] = ACTIONS(3632), + [anon_sym_async] = ACTIONS(3632), + [anon_sym_function] = ACTIONS(3632), + [anon_sym_new] = ACTIONS(3632), + [anon_sym_using] = ACTIONS(3632), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_SLASH] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_void] = ACTIONS(3632), + [anon_sym_delete] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3632), + [sym_number] = ACTIONS(3632), + [sym_private_property_identifier] = ACTIONS(3632), + [sym_this] = ACTIONS(3632), + [sym_super] = ACTIONS(3632), + [sym_true] = ACTIONS(3632), + [sym_false] = ACTIONS(3632), + [sym_null] = ACTIONS(3632), + [sym_undefined] = ACTIONS(3632), + [anon_sym_AT] = ACTIONS(3632), + [anon_sym_static] = ACTIONS(3632), + [anon_sym_readonly] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(3632), + [anon_sym_set] = ACTIONS(3632), + [anon_sym_declare] = ACTIONS(3632), + [anon_sym_public] = ACTIONS(3632), + [anon_sym_private] = ACTIONS(3632), + [anon_sym_protected] = ACTIONS(3632), + [anon_sym_override] = ACTIONS(3632), + [anon_sym_module] = ACTIONS(3632), + [anon_sym_any] = ACTIONS(3632), + [anon_sym_number] = ACTIONS(3632), + [anon_sym_boolean] = ACTIONS(3632), + [anon_sym_string] = ACTIONS(3632), + [anon_sym_symbol] = ACTIONS(3632), + [anon_sym_object] = ACTIONS(3632), + [anon_sym_property] = ACTIONS(3632), + [anon_sym_signal] = ACTIONS(3632), + [anon_sym_on] = ACTIONS(3632), + [anon_sym_required] = ACTIONS(3632), + [anon_sym_component] = ACTIONS(3632), + [anon_sym_abstract] = ACTIONS(3632), + [anon_sym_interface] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(3632), + [sym_html_comment] = ACTIONS(5), + }, + [1379] = { + [sym_comment] = STATE(1379), + [sym_identifier] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_from] = ACTIONS(3660), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_var] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_await] = ACTIONS(3660), + [anon_sym_of] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_debugger] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LTtemplate_GT] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_async] = ACTIONS(3660), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_SLASH] = ACTIONS(3660), + [anon_sym_LT] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_void] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3660), + [sym_number] = ACTIONS(3660), + [sym_private_property_identifier] = ACTIONS(3660), + [sym_this] = ACTIONS(3660), + [sym_super] = ACTIONS(3660), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_null] = ACTIONS(3660), + [sym_undefined] = ACTIONS(3660), + [anon_sym_AT] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_readonly] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(3660), + [anon_sym_set] = ACTIONS(3660), + [anon_sym_declare] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_override] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_any] = ACTIONS(3660), + [anon_sym_number] = ACTIONS(3660), + [anon_sym_boolean] = ACTIONS(3660), + [anon_sym_string] = ACTIONS(3660), + [anon_sym_symbol] = ACTIONS(3660), + [anon_sym_object] = ACTIONS(3660), + [anon_sym_property] = ACTIONS(3660), + [anon_sym_signal] = ACTIONS(3660), + [anon_sym_on] = ACTIONS(3660), + [anon_sym_required] = ACTIONS(3660), + [anon_sym_component] = ACTIONS(3660), + [anon_sym_abstract] = ACTIONS(3660), + [anon_sym_interface] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [sym_html_comment] = ACTIONS(5), + }, + [1380] = { + [sym_comment] = STATE(1380), + [sym_identifier] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_default] = ACTIONS(3662), + [anon_sym_type] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_RBRACE] = ACTIONS(3662), + [anon_sym_typeof] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_from] = ACTIONS(3662), + [anon_sym_with] = ACTIONS(3662), + [anon_sym_var] = ACTIONS(3662), + [anon_sym_let] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3662), + [anon_sym_await] = ACTIONS(3662), + [anon_sym_of] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_debugger] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_case] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_LTtemplate_GT] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_async] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_void] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3662), + [sym_number] = ACTIONS(3662), + [sym_private_property_identifier] = ACTIONS(3662), + [sym_this] = ACTIONS(3662), + [sym_super] = ACTIONS(3662), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [sym_null] = ACTIONS(3662), + [sym_undefined] = ACTIONS(3662), + [anon_sym_AT] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_readonly] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(3662), + [anon_sym_set] = ACTIONS(3662), + [anon_sym_declare] = ACTIONS(3662), + [anon_sym_public] = ACTIONS(3662), + [anon_sym_private] = ACTIONS(3662), + [anon_sym_protected] = ACTIONS(3662), + [anon_sym_override] = ACTIONS(3662), + [anon_sym_module] = ACTIONS(3662), + [anon_sym_any] = ACTIONS(3662), + [anon_sym_number] = ACTIONS(3662), + [anon_sym_boolean] = ACTIONS(3662), + [anon_sym_string] = ACTIONS(3662), + [anon_sym_symbol] = ACTIONS(3662), + [anon_sym_object] = ACTIONS(3662), + [anon_sym_property] = ACTIONS(3662), + [anon_sym_signal] = ACTIONS(3662), + [anon_sym_on] = ACTIONS(3662), + [anon_sym_required] = ACTIONS(3662), + [anon_sym_component] = ACTIONS(3662), + [anon_sym_abstract] = ACTIONS(3662), + [anon_sym_interface] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [sym_html_comment] = ACTIONS(5), + }, + [1381] = { + [sym_comment] = STATE(1381), + [sym_identifier] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_type] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_typeof] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_from] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [anon_sym_var] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_await] = ACTIONS(3664), + [anon_sym_of] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_debugger] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_yield] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_LTtemplate_GT] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_async] = ACTIONS(3664), + [anon_sym_function] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_void] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3664), + [sym_number] = ACTIONS(3664), + [sym_private_property_identifier] = ACTIONS(3664), + [sym_this] = ACTIONS(3664), + [sym_super] = ACTIONS(3664), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [sym_null] = ACTIONS(3664), + [sym_undefined] = ACTIONS(3664), + [anon_sym_AT] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_readonly] = ACTIONS(3664), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3664), + [anon_sym_declare] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_override] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_any] = ACTIONS(3664), + [anon_sym_number] = ACTIONS(3664), + [anon_sym_boolean] = ACTIONS(3664), + [anon_sym_string] = ACTIONS(3664), + [anon_sym_symbol] = ACTIONS(3664), + [anon_sym_object] = ACTIONS(3664), + [anon_sym_property] = ACTIONS(3664), + [anon_sym_signal] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_required] = ACTIONS(3664), + [anon_sym_component] = ACTIONS(3664), + [anon_sym_abstract] = ACTIONS(3664), + [anon_sym_interface] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [sym_html_comment] = ACTIONS(5), + }, + [1382] = { + [sym_comment] = STATE(1382), + [sym_identifier] = ACTIONS(3634), + [anon_sym_export] = ACTIONS(3634), + [anon_sym_default] = ACTIONS(3634), + [anon_sym_type] = ACTIONS(3634), + [anon_sym_namespace] = ACTIONS(3634), + [anon_sym_LBRACE] = ACTIONS(3634), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_typeof] = ACTIONS(3634), + [anon_sym_import] = ACTIONS(3634), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_with] = ACTIONS(3634), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_const] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_if] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_for] = ACTIONS(3634), + [anon_sym_LPAREN] = ACTIONS(3634), + [anon_sym_await] = ACTIONS(3634), + [anon_sym_of] = ACTIONS(3634), + [anon_sym_while] = ACTIONS(3634), + [anon_sym_do] = ACTIONS(3634), + [anon_sym_try] = ACTIONS(3634), + [anon_sym_break] = ACTIONS(3634), + [anon_sym_continue] = ACTIONS(3634), + [anon_sym_debugger] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3634), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_case] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3634), + [anon_sym_LTtemplate_GT] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(3634), + [anon_sym_SQUOTE] = ACTIONS(3634), + [anon_sym_class] = ACTIONS(3634), + [anon_sym_async] = ACTIONS(3634), + [anon_sym_function] = ACTIONS(3634), + [anon_sym_new] = ACTIONS(3634), + [anon_sym_using] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(3634), + [anon_sym_void] = ACTIONS(3634), + [anon_sym_delete] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3634), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3634), + [sym_number] = ACTIONS(3634), + [sym_private_property_identifier] = ACTIONS(3634), + [sym_this] = ACTIONS(3634), + [sym_super] = ACTIONS(3634), + [sym_true] = ACTIONS(3634), + [sym_false] = ACTIONS(3634), + [sym_null] = ACTIONS(3634), + [sym_undefined] = ACTIONS(3634), + [anon_sym_AT] = ACTIONS(3634), + [anon_sym_static] = ACTIONS(3634), + [anon_sym_readonly] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(3634), + [anon_sym_set] = ACTIONS(3634), + [anon_sym_declare] = ACTIONS(3634), + [anon_sym_public] = ACTIONS(3634), + [anon_sym_private] = ACTIONS(3634), + [anon_sym_protected] = ACTIONS(3634), + [anon_sym_override] = ACTIONS(3634), + [anon_sym_module] = ACTIONS(3634), + [anon_sym_any] = ACTIONS(3634), + [anon_sym_number] = ACTIONS(3634), + [anon_sym_boolean] = ACTIONS(3634), + [anon_sym_string] = ACTIONS(3634), + [anon_sym_symbol] = ACTIONS(3634), + [anon_sym_object] = ACTIONS(3634), + [anon_sym_property] = ACTIONS(3634), + [anon_sym_signal] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_required] = ACTIONS(3634), + [anon_sym_component] = ACTIONS(3634), + [anon_sym_abstract] = ACTIONS(3634), + [anon_sym_interface] = ACTIONS(3634), + [anon_sym_enum] = ACTIONS(3634), + [sym_html_comment] = ACTIONS(5), + }, + [1383] = { + [sym_comment] = STATE(1383), + [sym_identifier] = ACTIONS(3636), + [anon_sym_export] = ACTIONS(3636), + [anon_sym_default] = ACTIONS(3636), + [anon_sym_type] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_typeof] = ACTIONS(3636), + [anon_sym_import] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3636), + [anon_sym_let] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_await] = ACTIONS(3636), + [anon_sym_of] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_debugger] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_case] = ACTIONS(3636), + [anon_sym_yield] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_LTtemplate_GT] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(3636), + [anon_sym_SQUOTE] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_async] = ACTIONS(3636), + [anon_sym_function] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3636), + [anon_sym_void] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3636), + [sym_number] = ACTIONS(3636), + [sym_private_property_identifier] = ACTIONS(3636), + [sym_this] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [sym_null] = ACTIONS(3636), + [sym_undefined] = ACTIONS(3636), + [anon_sym_AT] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_readonly] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(3636), + [anon_sym_set] = ACTIONS(3636), + [anon_sym_declare] = ACTIONS(3636), + [anon_sym_public] = ACTIONS(3636), + [anon_sym_private] = ACTIONS(3636), + [anon_sym_protected] = ACTIONS(3636), + [anon_sym_override] = ACTIONS(3636), + [anon_sym_module] = ACTIONS(3636), + [anon_sym_any] = ACTIONS(3636), + [anon_sym_number] = ACTIONS(3636), + [anon_sym_boolean] = ACTIONS(3636), + [anon_sym_string] = ACTIONS(3636), + [anon_sym_symbol] = ACTIONS(3636), + [anon_sym_object] = ACTIONS(3636), + [anon_sym_property] = ACTIONS(3636), + [anon_sym_signal] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_required] = ACTIONS(3636), + [anon_sym_component] = ACTIONS(3636), + [anon_sym_abstract] = ACTIONS(3636), + [anon_sym_interface] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [sym_html_comment] = ACTIONS(5), + }, + [1384] = { + [sym_comment] = STATE(1384), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [sym_html_comment] = ACTIONS(5), + }, + [1385] = { + [sym_comment] = STATE(1385), + [sym_identifier] = ACTIONS(3638), + [anon_sym_export] = ACTIONS(3638), + [anon_sym_default] = ACTIONS(3638), + [anon_sym_type] = ACTIONS(3638), + [anon_sym_namespace] = ACTIONS(3638), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_typeof] = ACTIONS(3638), + [anon_sym_import] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_with] = ACTIONS(3638), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_const] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_await] = ACTIONS(3638), + [anon_sym_of] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_break] = ACTIONS(3638), + [anon_sym_continue] = ACTIONS(3638), + [anon_sym_debugger] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_throw] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_case] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LTtemplate_GT] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_class] = ACTIONS(3638), + [anon_sym_async] = ACTIONS(3638), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_using] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_void] = ACTIONS(3638), + [anon_sym_delete] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3638), + [sym_number] = ACTIONS(3638), + [sym_private_property_identifier] = ACTIONS(3638), + [sym_this] = ACTIONS(3638), + [sym_super] = ACTIONS(3638), + [sym_true] = ACTIONS(3638), + [sym_false] = ACTIONS(3638), + [sym_null] = ACTIONS(3638), + [sym_undefined] = ACTIONS(3638), + [anon_sym_AT] = ACTIONS(3638), + [anon_sym_static] = ACTIONS(3638), + [anon_sym_readonly] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(3638), + [anon_sym_set] = ACTIONS(3638), + [anon_sym_declare] = ACTIONS(3638), + [anon_sym_public] = ACTIONS(3638), + [anon_sym_private] = ACTIONS(3638), + [anon_sym_protected] = ACTIONS(3638), + [anon_sym_override] = ACTIONS(3638), + [anon_sym_module] = ACTIONS(3638), + [anon_sym_any] = ACTIONS(3638), + [anon_sym_number] = ACTIONS(3638), + [anon_sym_boolean] = ACTIONS(3638), + [anon_sym_string] = ACTIONS(3638), + [anon_sym_symbol] = ACTIONS(3638), + [anon_sym_object] = ACTIONS(3638), + [anon_sym_property] = ACTIONS(3638), + [anon_sym_signal] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_required] = ACTIONS(3638), + [anon_sym_component] = ACTIONS(3638), + [anon_sym_abstract] = ACTIONS(3638), + [anon_sym_interface] = ACTIONS(3638), + [anon_sym_enum] = ACTIONS(3638), + [sym_html_comment] = ACTIONS(5), + }, + [1386] = { + [sym_comment] = STATE(1386), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_namespace] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_typeof] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(2388), + [anon_sym_from] = ACTIONS(2388), + [anon_sym_with] = ACTIONS(2388), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_else] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_switch] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2388), + [anon_sym_await] = ACTIONS(2388), + [anon_sym_of] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_do] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_debugger] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_throw] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2388), + [anon_sym_LTtemplate_GT] = ACTIONS(2388), + [anon_sym_DQUOTE] = ACTIONS(2388), + [anon_sym_SQUOTE] = ACTIONS(2388), + [anon_sym_class] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_using] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_void] = ACTIONS(2388), + [anon_sym_delete] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(2388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2388), + [sym_number] = ACTIONS(2388), + [sym_private_property_identifier] = ACTIONS(2388), + [sym_this] = ACTIONS(2388), + [sym_super] = ACTIONS(2388), + [sym_true] = ACTIONS(2388), + [sym_false] = ACTIONS(2388), + [sym_null] = ACTIONS(2388), + [sym_undefined] = ACTIONS(2388), + [anon_sym_AT] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_readonly] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_declare] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_protected] = ACTIONS(2388), + [anon_sym_override] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_any] = ACTIONS(2388), + [anon_sym_number] = ACTIONS(2388), + [anon_sym_boolean] = ACTIONS(2388), + [anon_sym_string] = ACTIONS(2388), + [anon_sym_symbol] = ACTIONS(2388), + [anon_sym_object] = ACTIONS(2388), + [anon_sym_property] = ACTIONS(2388), + [anon_sym_signal] = ACTIONS(2388), + [anon_sym_on] = ACTIONS(2388), + [anon_sym_required] = ACTIONS(2388), + [anon_sym_component] = ACTIONS(2388), + [anon_sym_abstract] = ACTIONS(2388), + [anon_sym_interface] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [sym__automatic_semicolon] = ACTIONS(2604), + [sym_html_comment] = ACTIONS(5), + }, + [1387] = { + [sym_comment] = STATE(1387), + [sym_identifier] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_type] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_typeof] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [anon_sym_var] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_await] = ACTIONS(3640), + [anon_sym_of] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_debugger] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_LTtemplate_GT] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_async] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3640), + [anon_sym_void] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3640), + [sym_number] = ACTIONS(3640), + [sym_private_property_identifier] = ACTIONS(3640), + [sym_this] = ACTIONS(3640), + [sym_super] = ACTIONS(3640), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [sym_null] = ACTIONS(3640), + [sym_undefined] = ACTIONS(3640), + [anon_sym_AT] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_readonly] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(3640), + [anon_sym_set] = ACTIONS(3640), + [anon_sym_declare] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_override] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_any] = ACTIONS(3640), + [anon_sym_number] = ACTIONS(3640), + [anon_sym_boolean] = ACTIONS(3640), + [anon_sym_string] = ACTIONS(3640), + [anon_sym_symbol] = ACTIONS(3640), + [anon_sym_object] = ACTIONS(3640), + [anon_sym_property] = ACTIONS(3640), + [anon_sym_signal] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_required] = ACTIONS(3640), + [anon_sym_component] = ACTIONS(3640), + [anon_sym_abstract] = ACTIONS(3640), + [anon_sym_interface] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [sym_html_comment] = ACTIONS(5), + }, + [1388] = { + [sym_comment] = STATE(1388), + [sym_identifier] = ACTIONS(3642), + [anon_sym_export] = ACTIONS(3642), + [anon_sym_default] = ACTIONS(3642), + [anon_sym_type] = ACTIONS(3642), + [anon_sym_namespace] = ACTIONS(3642), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_typeof] = ACTIONS(3642), + [anon_sym_import] = ACTIONS(3642), + [anon_sym_from] = ACTIONS(3642), + [anon_sym_with] = ACTIONS(3642), + [anon_sym_var] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_const] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_await] = ACTIONS(3642), + [anon_sym_of] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_break] = ACTIONS(3642), + [anon_sym_continue] = ACTIONS(3642), + [anon_sym_debugger] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_throw] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_case] = ACTIONS(3642), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LTtemplate_GT] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_class] = ACTIONS(3642), + [anon_sym_async] = ACTIONS(3642), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_using] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_void] = ACTIONS(3642), + [anon_sym_delete] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3642), + [sym_number] = ACTIONS(3642), + [sym_private_property_identifier] = ACTIONS(3642), + [sym_this] = ACTIONS(3642), + [sym_super] = ACTIONS(3642), + [sym_true] = ACTIONS(3642), + [sym_false] = ACTIONS(3642), + [sym_null] = ACTIONS(3642), + [sym_undefined] = ACTIONS(3642), + [anon_sym_AT] = ACTIONS(3642), + [anon_sym_static] = ACTIONS(3642), + [anon_sym_readonly] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(3642), + [anon_sym_set] = ACTIONS(3642), + [anon_sym_declare] = ACTIONS(3642), + [anon_sym_public] = ACTIONS(3642), + [anon_sym_private] = ACTIONS(3642), + [anon_sym_protected] = ACTIONS(3642), + [anon_sym_override] = ACTIONS(3642), + [anon_sym_module] = ACTIONS(3642), + [anon_sym_any] = ACTIONS(3642), + [anon_sym_number] = ACTIONS(3642), + [anon_sym_boolean] = ACTIONS(3642), + [anon_sym_string] = ACTIONS(3642), + [anon_sym_symbol] = ACTIONS(3642), + [anon_sym_object] = ACTIONS(3642), + [anon_sym_property] = ACTIONS(3642), + [anon_sym_signal] = ACTIONS(3642), + [anon_sym_on] = ACTIONS(3642), + [anon_sym_required] = ACTIONS(3642), + [anon_sym_component] = ACTIONS(3642), + [anon_sym_abstract] = ACTIONS(3642), + [anon_sym_interface] = ACTIONS(3642), + [anon_sym_enum] = ACTIONS(3642), + [sym_html_comment] = ACTIONS(5), + }, + [1389] = { + [sym_comment] = STATE(1389), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [sym_html_comment] = ACTIONS(5), + }, + [1390] = { + [sym_comment] = STATE(1390), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [sym_html_comment] = ACTIONS(5), + }, + [1391] = { + [sym_comment] = STATE(1391), + [sym_identifier] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_default] = ACTIONS(3558), + [anon_sym_type] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_typeof] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_from] = ACTIONS(3558), + [anon_sym_with] = ACTIONS(3558), + [anon_sym_var] = ACTIONS(3558), + [anon_sym_let] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_await] = ACTIONS(3558), + [anon_sym_of] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_debugger] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym_case] = ACTIONS(3558), + [anon_sym_yield] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_LTtemplate_GT] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_async] = ACTIONS(3558), + [anon_sym_function] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_void] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3558), + [sym_number] = ACTIONS(3558), + [sym_private_property_identifier] = ACTIONS(3558), + [sym_this] = ACTIONS(3558), + [sym_super] = ACTIONS(3558), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [sym_null] = ACTIONS(3558), + [sym_undefined] = ACTIONS(3558), + [anon_sym_AT] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_readonly] = ACTIONS(3558), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3558), + [anon_sym_declare] = ACTIONS(3558), + [anon_sym_public] = ACTIONS(3558), + [anon_sym_private] = ACTIONS(3558), + [anon_sym_protected] = ACTIONS(3558), + [anon_sym_override] = ACTIONS(3558), + [anon_sym_module] = ACTIONS(3558), + [anon_sym_any] = ACTIONS(3558), + [anon_sym_number] = ACTIONS(3558), + [anon_sym_boolean] = ACTIONS(3558), + [anon_sym_string] = ACTIONS(3558), + [anon_sym_symbol] = ACTIONS(3558), + [anon_sym_object] = ACTIONS(3558), + [anon_sym_property] = ACTIONS(3558), + [anon_sym_signal] = ACTIONS(3558), + [anon_sym_on] = ACTIONS(3558), + [anon_sym_required] = ACTIONS(3558), + [anon_sym_component] = ACTIONS(3558), + [anon_sym_abstract] = ACTIONS(3558), + [anon_sym_interface] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), + [sym_html_comment] = ACTIONS(5), + }, + [1392] = { + [sym_comment] = STATE(1392), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [1393] = { + [sym_comment] = STATE(1393), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_default] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_case] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), + [sym_html_comment] = ACTIONS(5), + }, + [1394] = { + [sym_comment] = STATE(1394), + [sym_identifier] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_type] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3518), + [anon_sym_RBRACE] = ACTIONS(3518), + [anon_sym_typeof] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_from] = ACTIONS(3518), + [anon_sym_with] = ACTIONS(3518), + [anon_sym_var] = ACTIONS(3518), + [anon_sym_let] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_BANG] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_LPAREN] = ACTIONS(3518), + [anon_sym_await] = ACTIONS(3518), + [anon_sym_of] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_debugger] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3518), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_yield] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_LTtemplate_GT] = ACTIONS(3518), + [anon_sym_DQUOTE] = ACTIONS(3518), + [anon_sym_SQUOTE] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_async] = ACTIONS(3518), + [anon_sym_function] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(3518), + [anon_sym_void] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_PLUS_PLUS] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3518), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3518), + [sym_number] = ACTIONS(3518), + [sym_private_property_identifier] = ACTIONS(3518), + [sym_this] = ACTIONS(3518), + [sym_super] = ACTIONS(3518), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [sym_null] = ACTIONS(3518), + [sym_undefined] = ACTIONS(3518), + [anon_sym_AT] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_readonly] = ACTIONS(3518), + [anon_sym_get] = ACTIONS(3518), + [anon_sym_set] = ACTIONS(3518), + [anon_sym_declare] = ACTIONS(3518), + [anon_sym_public] = ACTIONS(3518), + [anon_sym_private] = ACTIONS(3518), + [anon_sym_protected] = ACTIONS(3518), + [anon_sym_override] = ACTIONS(3518), + [anon_sym_module] = ACTIONS(3518), + [anon_sym_any] = ACTIONS(3518), + [anon_sym_number] = ACTIONS(3518), + [anon_sym_boolean] = ACTIONS(3518), + [anon_sym_string] = ACTIONS(3518), + [anon_sym_symbol] = ACTIONS(3518), + [anon_sym_object] = ACTIONS(3518), + [anon_sym_property] = ACTIONS(3518), + [anon_sym_signal] = ACTIONS(3518), + [anon_sym_on] = ACTIONS(3518), + [anon_sym_required] = ACTIONS(3518), + [anon_sym_component] = ACTIONS(3518), + [anon_sym_abstract] = ACTIONS(3518), + [anon_sym_interface] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [sym_html_comment] = ACTIONS(5), + }, + [1395] = { + [sym_comment] = STATE(1395), + [sym_identifier] = ACTIONS(3666), + [anon_sym_export] = ACTIONS(3666), + [anon_sym_default] = ACTIONS(3666), + [anon_sym_type] = ACTIONS(3666), + [anon_sym_namespace] = ACTIONS(3666), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_typeof] = ACTIONS(3666), + [anon_sym_import] = ACTIONS(3666), + [anon_sym_from] = ACTIONS(3666), + [anon_sym_with] = ACTIONS(3666), + [anon_sym_var] = ACTIONS(3666), + [anon_sym_let] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_if] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_for] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_await] = ACTIONS(3666), + [anon_sym_of] = ACTIONS(3666), + [anon_sym_while] = ACTIONS(3666), + [anon_sym_do] = ACTIONS(3666), + [anon_sym_try] = ACTIONS(3666), + [anon_sym_break] = ACTIONS(3666), + [anon_sym_continue] = ACTIONS(3666), + [anon_sym_debugger] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3666), + [anon_sym_throw] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym_case] = ACTIONS(3666), + [anon_sym_yield] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_LTtemplate_GT] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_async] = ACTIONS(3666), + [anon_sym_function] = ACTIONS(3666), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_void] = ACTIONS(3666), + [anon_sym_delete] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3666), + [sym_number] = ACTIONS(3666), + [sym_private_property_identifier] = ACTIONS(3666), + [sym_this] = ACTIONS(3666), + [sym_super] = ACTIONS(3666), + [sym_true] = ACTIONS(3666), + [sym_false] = ACTIONS(3666), + [sym_null] = ACTIONS(3666), + [sym_undefined] = ACTIONS(3666), + [anon_sym_AT] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_readonly] = ACTIONS(3666), + [anon_sym_get] = ACTIONS(3666), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_declare] = ACTIONS(3666), + [anon_sym_public] = ACTIONS(3666), + [anon_sym_private] = ACTIONS(3666), + [anon_sym_protected] = ACTIONS(3666), + [anon_sym_override] = ACTIONS(3666), + [anon_sym_module] = ACTIONS(3666), + [anon_sym_any] = ACTIONS(3666), + [anon_sym_number] = ACTIONS(3666), + [anon_sym_boolean] = ACTIONS(3666), + [anon_sym_string] = ACTIONS(3666), + [anon_sym_symbol] = ACTIONS(3666), + [anon_sym_object] = ACTIONS(3666), + [anon_sym_property] = ACTIONS(3666), + [anon_sym_signal] = ACTIONS(3666), + [anon_sym_on] = ACTIONS(3666), + [anon_sym_required] = ACTIONS(3666), + [anon_sym_component] = ACTIONS(3666), + [anon_sym_abstract] = ACTIONS(3666), + [anon_sym_interface] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), + [sym_html_comment] = ACTIONS(5), + }, + [1396] = { + [sym_comment] = STATE(1396), + [sym_identifier] = ACTIONS(3670), + [anon_sym_export] = ACTIONS(3670), + [anon_sym_default] = ACTIONS(3670), + [anon_sym_type] = ACTIONS(3670), + [anon_sym_namespace] = ACTIONS(3670), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_typeof] = ACTIONS(3670), + [anon_sym_import] = ACTIONS(3670), + [anon_sym_from] = ACTIONS(3670), + [anon_sym_with] = ACTIONS(3670), + [anon_sym_var] = ACTIONS(3670), + [anon_sym_let] = ACTIONS(3670), + [anon_sym_const] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_for] = ACTIONS(3670), + [anon_sym_LPAREN] = ACTIONS(3670), + [anon_sym_await] = ACTIONS(3670), + [anon_sym_of] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(3670), + [anon_sym_do] = ACTIONS(3670), + [anon_sym_try] = ACTIONS(3670), + [anon_sym_break] = ACTIONS(3670), + [anon_sym_continue] = ACTIONS(3670), + [anon_sym_debugger] = ACTIONS(3670), + [anon_sym_return] = ACTIONS(3670), + [anon_sym_throw] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym_case] = ACTIONS(3670), + [anon_sym_yield] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_LTtemplate_GT] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_class] = ACTIONS(3670), + [anon_sym_async] = ACTIONS(3670), + [anon_sym_function] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3670), + [anon_sym_using] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_void] = ACTIONS(3670), + [anon_sym_delete] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3670), + [sym_number] = ACTIONS(3670), + [sym_private_property_identifier] = ACTIONS(3670), + [sym_this] = ACTIONS(3670), + [sym_super] = ACTIONS(3670), + [sym_true] = ACTIONS(3670), + [sym_false] = ACTIONS(3670), + [sym_null] = ACTIONS(3670), + [sym_undefined] = ACTIONS(3670), + [anon_sym_AT] = ACTIONS(3670), + [anon_sym_static] = ACTIONS(3670), + [anon_sym_readonly] = ACTIONS(3670), + [anon_sym_get] = ACTIONS(3670), + [anon_sym_set] = ACTIONS(3670), + [anon_sym_declare] = ACTIONS(3670), + [anon_sym_public] = ACTIONS(3670), + [anon_sym_private] = ACTIONS(3670), + [anon_sym_protected] = ACTIONS(3670), + [anon_sym_override] = ACTIONS(3670), + [anon_sym_module] = ACTIONS(3670), + [anon_sym_any] = ACTIONS(3670), + [anon_sym_number] = ACTIONS(3670), + [anon_sym_boolean] = ACTIONS(3670), + [anon_sym_string] = ACTIONS(3670), + [anon_sym_symbol] = ACTIONS(3670), + [anon_sym_object] = ACTIONS(3670), + [anon_sym_property] = ACTIONS(3670), + [anon_sym_signal] = ACTIONS(3670), + [anon_sym_on] = ACTIONS(3670), + [anon_sym_required] = ACTIONS(3670), + [anon_sym_component] = ACTIONS(3670), + [anon_sym_abstract] = ACTIONS(3670), + [anon_sym_interface] = ACTIONS(3670), + [anon_sym_enum] = ACTIONS(3670), + [sym_html_comment] = ACTIONS(5), + }, + [1397] = { + [sym_comment] = STATE(1397), + [sym_identifier] = ACTIONS(3596), + [anon_sym_export] = ACTIONS(3596), + [anon_sym_default] = ACTIONS(3596), + [anon_sym_type] = ACTIONS(3596), + [anon_sym_namespace] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3596), + [anon_sym_RBRACE] = ACTIONS(3596), + [anon_sym_typeof] = ACTIONS(3596), + [anon_sym_import] = ACTIONS(3596), + [anon_sym_from] = ACTIONS(3596), + [anon_sym_with] = ACTIONS(3596), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_let] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_LPAREN] = ACTIONS(3596), + [anon_sym_await] = ACTIONS(3596), + [anon_sym_of] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_debugger] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3596), + [anon_sym_case] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_LTtemplate_GT] = ACTIONS(3596), + [anon_sym_DQUOTE] = ACTIONS(3596), + [anon_sym_SQUOTE] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_async] = ACTIONS(3596), + [anon_sym_function] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_SLASH] = ACTIONS(3596), + [anon_sym_LT] = ACTIONS(3596), + [anon_sym_TILDE] = ACTIONS(3596), + [anon_sym_void] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_PLUS_PLUS] = ACTIONS(3596), + [anon_sym_DASH_DASH] = ACTIONS(3596), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3596), + [sym_number] = ACTIONS(3596), + [sym_private_property_identifier] = ACTIONS(3596), + [sym_this] = ACTIONS(3596), + [sym_super] = ACTIONS(3596), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [sym_null] = ACTIONS(3596), + [sym_undefined] = ACTIONS(3596), + [anon_sym_AT] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_readonly] = ACTIONS(3596), + [anon_sym_get] = ACTIONS(3596), + [anon_sym_set] = ACTIONS(3596), + [anon_sym_declare] = ACTIONS(3596), + [anon_sym_public] = ACTIONS(3596), + [anon_sym_private] = ACTIONS(3596), + [anon_sym_protected] = ACTIONS(3596), + [anon_sym_override] = ACTIONS(3596), + [anon_sym_module] = ACTIONS(3596), + [anon_sym_any] = ACTIONS(3596), + [anon_sym_number] = ACTIONS(3596), + [anon_sym_boolean] = ACTIONS(3596), + [anon_sym_string] = ACTIONS(3596), + [anon_sym_symbol] = ACTIONS(3596), + [anon_sym_object] = ACTIONS(3596), + [anon_sym_property] = ACTIONS(3596), + [anon_sym_signal] = ACTIONS(3596), + [anon_sym_on] = ACTIONS(3596), + [anon_sym_required] = ACTIONS(3596), + [anon_sym_component] = ACTIONS(3596), + [anon_sym_abstract] = ACTIONS(3596), + [anon_sym_interface] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [sym_html_comment] = ACTIONS(5), + }, + [1398] = { + [sym_comment] = STATE(1398), + [sym_identifier] = ACTIONS(3672), + [anon_sym_export] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_type] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_typeof] = ACTIONS(3672), + [anon_sym_import] = ACTIONS(3672), + [anon_sym_from] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3672), + [anon_sym_var] = ACTIONS(3672), + [anon_sym_let] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_await] = ACTIONS(3672), + [anon_sym_of] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_debugger] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_yield] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_LTtemplate_GT] = ACTIONS(3672), + [anon_sym_DQUOTE] = ACTIONS(3672), + [anon_sym_SQUOTE] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_async] = ACTIONS(3672), + [anon_sym_function] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3672), + [anon_sym_void] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3672), + [sym_number] = ACTIONS(3672), + [sym_private_property_identifier] = ACTIONS(3672), + [sym_this] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [sym_null] = ACTIONS(3672), + [sym_undefined] = ACTIONS(3672), + [anon_sym_AT] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_readonly] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(3672), + [anon_sym_set] = ACTIONS(3672), + [anon_sym_declare] = ACTIONS(3672), + [anon_sym_public] = ACTIONS(3672), + [anon_sym_private] = ACTIONS(3672), + [anon_sym_protected] = ACTIONS(3672), + [anon_sym_override] = ACTIONS(3672), + [anon_sym_module] = ACTIONS(3672), + [anon_sym_any] = ACTIONS(3672), + [anon_sym_number] = ACTIONS(3672), + [anon_sym_boolean] = ACTIONS(3672), + [anon_sym_string] = ACTIONS(3672), + [anon_sym_symbol] = ACTIONS(3672), + [anon_sym_object] = ACTIONS(3672), + [anon_sym_property] = ACTIONS(3672), + [anon_sym_signal] = ACTIONS(3672), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_required] = ACTIONS(3672), + [anon_sym_component] = ACTIONS(3672), + [anon_sym_abstract] = ACTIONS(3672), + [anon_sym_interface] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [sym_html_comment] = ACTIONS(5), + }, + [1399] = { + [sym_comment] = STATE(1399), + [sym_identifier] = ACTIONS(3674), + [anon_sym_export] = ACTIONS(3674), + [anon_sym_default] = ACTIONS(3674), + [anon_sym_type] = ACTIONS(3674), + [anon_sym_namespace] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_typeof] = ACTIONS(3674), + [anon_sym_import] = ACTIONS(3674), + [anon_sym_from] = ACTIONS(3674), + [anon_sym_with] = ACTIONS(3674), + [anon_sym_var] = ACTIONS(3674), + [anon_sym_let] = ACTIONS(3674), + [anon_sym_const] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_if] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_for] = ACTIONS(3674), + [anon_sym_LPAREN] = ACTIONS(3674), + [anon_sym_await] = ACTIONS(3674), + [anon_sym_of] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_do] = ACTIONS(3674), + [anon_sym_try] = ACTIONS(3674), + [anon_sym_break] = ACTIONS(3674), + [anon_sym_continue] = ACTIONS(3674), + [anon_sym_debugger] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3674), + [anon_sym_throw] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_case] = ACTIONS(3674), + [anon_sym_yield] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_LTtemplate_GT] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_class] = ACTIONS(3674), + [anon_sym_async] = ACTIONS(3674), + [anon_sym_function] = ACTIONS(3674), + [anon_sym_new] = ACTIONS(3674), + [anon_sym_using] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_void] = ACTIONS(3674), + [anon_sym_delete] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3674), + [sym_number] = ACTIONS(3674), + [sym_private_property_identifier] = ACTIONS(3674), + [sym_this] = ACTIONS(3674), + [sym_super] = ACTIONS(3674), + [sym_true] = ACTIONS(3674), + [sym_false] = ACTIONS(3674), + [sym_null] = ACTIONS(3674), + [sym_undefined] = ACTIONS(3674), + [anon_sym_AT] = ACTIONS(3674), + [anon_sym_static] = ACTIONS(3674), + [anon_sym_readonly] = ACTIONS(3674), + [anon_sym_get] = ACTIONS(3674), + [anon_sym_set] = ACTIONS(3674), + [anon_sym_declare] = ACTIONS(3674), + [anon_sym_public] = ACTIONS(3674), + [anon_sym_private] = ACTIONS(3674), + [anon_sym_protected] = ACTIONS(3674), + [anon_sym_override] = ACTIONS(3674), + [anon_sym_module] = ACTIONS(3674), + [anon_sym_any] = ACTIONS(3674), + [anon_sym_number] = ACTIONS(3674), + [anon_sym_boolean] = ACTIONS(3674), + [anon_sym_string] = ACTIONS(3674), + [anon_sym_symbol] = ACTIONS(3674), + [anon_sym_object] = ACTIONS(3674), + [anon_sym_property] = ACTIONS(3674), + [anon_sym_signal] = ACTIONS(3674), + [anon_sym_on] = ACTIONS(3674), + [anon_sym_required] = ACTIONS(3674), + [anon_sym_component] = ACTIONS(3674), + [anon_sym_abstract] = ACTIONS(3674), + [anon_sym_interface] = ACTIONS(3674), + [anon_sym_enum] = ACTIONS(3674), + [sym_html_comment] = ACTIONS(5), + }, + [1400] = { + [sym_comment] = STATE(1400), + [sym_identifier] = ACTIONS(3594), + [anon_sym_export] = ACTIONS(3594), + [anon_sym_default] = ACTIONS(3594), + [anon_sym_type] = ACTIONS(3594), + [anon_sym_namespace] = ACTIONS(3594), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_RBRACE] = ACTIONS(3594), + [anon_sym_typeof] = ACTIONS(3594), + [anon_sym_import] = ACTIONS(3594), + [anon_sym_from] = ACTIONS(3594), + [anon_sym_with] = ACTIONS(3594), + [anon_sym_var] = ACTIONS(3594), + [anon_sym_let] = ACTIONS(3594), + [anon_sym_const] = ACTIONS(3594), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_if] = ACTIONS(3594), + [anon_sym_switch] = ACTIONS(3594), + [anon_sym_for] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3594), + [anon_sym_await] = ACTIONS(3594), + [anon_sym_of] = ACTIONS(3594), + [anon_sym_while] = ACTIONS(3594), + [anon_sym_do] = ACTIONS(3594), + [anon_sym_try] = ACTIONS(3594), + [anon_sym_break] = ACTIONS(3594), + [anon_sym_continue] = ACTIONS(3594), + [anon_sym_debugger] = ACTIONS(3594), + [anon_sym_return] = ACTIONS(3594), + [anon_sym_throw] = ACTIONS(3594), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_case] = ACTIONS(3594), + [anon_sym_yield] = ACTIONS(3594), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LTtemplate_GT] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [anon_sym_SQUOTE] = ACTIONS(3594), + [anon_sym_class] = ACTIONS(3594), + [anon_sym_async] = ACTIONS(3594), + [anon_sym_function] = ACTIONS(3594), + [anon_sym_new] = ACTIONS(3594), + [anon_sym_using] = ACTIONS(3594), + [anon_sym_PLUS] = ACTIONS(3594), + [anon_sym_DASH] = ACTIONS(3594), + [anon_sym_SLASH] = ACTIONS(3594), + [anon_sym_LT] = ACTIONS(3594), + [anon_sym_TILDE] = ACTIONS(3594), + [anon_sym_void] = ACTIONS(3594), + [anon_sym_delete] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_DASH_DASH] = ACTIONS(3594), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3594), + [sym_number] = ACTIONS(3594), + [sym_private_property_identifier] = ACTIONS(3594), + [sym_this] = ACTIONS(3594), + [sym_super] = ACTIONS(3594), + [sym_true] = ACTIONS(3594), + [sym_false] = ACTIONS(3594), + [sym_null] = ACTIONS(3594), + [sym_undefined] = ACTIONS(3594), + [anon_sym_AT] = ACTIONS(3594), + [anon_sym_static] = ACTIONS(3594), + [anon_sym_readonly] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(3594), + [anon_sym_set] = ACTIONS(3594), + [anon_sym_declare] = ACTIONS(3594), + [anon_sym_public] = ACTIONS(3594), + [anon_sym_private] = ACTIONS(3594), + [anon_sym_protected] = ACTIONS(3594), + [anon_sym_override] = ACTIONS(3594), + [anon_sym_module] = ACTIONS(3594), + [anon_sym_any] = ACTIONS(3594), + [anon_sym_number] = ACTIONS(3594), + [anon_sym_boolean] = ACTIONS(3594), + [anon_sym_string] = ACTIONS(3594), + [anon_sym_symbol] = ACTIONS(3594), + [anon_sym_object] = ACTIONS(3594), + [anon_sym_property] = ACTIONS(3594), + [anon_sym_signal] = ACTIONS(3594), + [anon_sym_on] = ACTIONS(3594), + [anon_sym_required] = ACTIONS(3594), + [anon_sym_component] = ACTIONS(3594), + [anon_sym_abstract] = ACTIONS(3594), + [anon_sym_interface] = ACTIONS(3594), + [anon_sym_enum] = ACTIONS(3594), + [sym_html_comment] = ACTIONS(5), + }, + [1401] = { + [sym_comment] = STATE(1401), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym__automatic_semicolon] = ACTIONS(2358), + [sym_html_comment] = ACTIONS(5), + }, + [1402] = { + [sym_comment] = STATE(1402), + [sym_identifier] = ACTIONS(3554), + [anon_sym_export] = ACTIONS(3554), + [anon_sym_default] = ACTIONS(3554), + [anon_sym_type] = ACTIONS(3554), + [anon_sym_namespace] = ACTIONS(3554), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_RBRACE] = ACTIONS(3554), + [anon_sym_typeof] = ACTIONS(3554), + [anon_sym_import] = ACTIONS(3554), + [anon_sym_from] = ACTIONS(3554), + [anon_sym_with] = ACTIONS(3554), + [anon_sym_var] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_const] = ACTIONS(3554), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_switch] = ACTIONS(3554), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_await] = ACTIONS(3554), + [anon_sym_of] = ACTIONS(3554), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_break] = ACTIONS(3554), + [anon_sym_continue] = ACTIONS(3554), + [anon_sym_debugger] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_throw] = ACTIONS(3554), + [anon_sym_SEMI] = ACTIONS(3554), + [anon_sym_case] = ACTIONS(3554), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LTtemplate_GT] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_SQUOTE] = ACTIONS(3554), + [anon_sym_class] = ACTIONS(3554), + [anon_sym_async] = ACTIONS(3554), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_using] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_SLASH] = ACTIONS(3554), + [anon_sym_LT] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3554), + [anon_sym_void] = ACTIONS(3554), + [anon_sym_delete] = ACTIONS(3554), + [anon_sym_PLUS_PLUS] = ACTIONS(3554), + [anon_sym_DASH_DASH] = ACTIONS(3554), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3554), + [sym_number] = ACTIONS(3554), + [sym_private_property_identifier] = ACTIONS(3554), + [sym_this] = ACTIONS(3554), + [sym_super] = ACTIONS(3554), + [sym_true] = ACTIONS(3554), + [sym_false] = ACTIONS(3554), + [sym_null] = ACTIONS(3554), + [sym_undefined] = ACTIONS(3554), + [anon_sym_AT] = ACTIONS(3554), + [anon_sym_static] = ACTIONS(3554), + [anon_sym_readonly] = ACTIONS(3554), + [anon_sym_get] = ACTIONS(3554), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_declare] = ACTIONS(3554), + [anon_sym_public] = ACTIONS(3554), + [anon_sym_private] = ACTIONS(3554), + [anon_sym_protected] = ACTIONS(3554), + [anon_sym_override] = ACTIONS(3554), + [anon_sym_module] = ACTIONS(3554), + [anon_sym_any] = ACTIONS(3554), + [anon_sym_number] = ACTIONS(3554), + [anon_sym_boolean] = ACTIONS(3554), + [anon_sym_string] = ACTIONS(3554), + [anon_sym_symbol] = ACTIONS(3554), + [anon_sym_object] = ACTIONS(3554), + [anon_sym_property] = ACTIONS(3554), + [anon_sym_signal] = ACTIONS(3554), + [anon_sym_on] = ACTIONS(3554), + [anon_sym_required] = ACTIONS(3554), + [anon_sym_component] = ACTIONS(3554), + [anon_sym_abstract] = ACTIONS(3554), + [anon_sym_interface] = ACTIONS(3554), + [anon_sym_enum] = ACTIONS(3554), + [sym_html_comment] = ACTIONS(5), + }, + [1403] = { + [sym_comment] = STATE(1403), + [sym_identifier] = ACTIONS(3550), + [anon_sym_export] = ACTIONS(3550), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_type] = ACTIONS(3550), + [anon_sym_namespace] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_RBRACE] = ACTIONS(3550), + [anon_sym_typeof] = ACTIONS(3550), + [anon_sym_import] = ACTIONS(3550), + [anon_sym_from] = ACTIONS(3550), + [anon_sym_with] = ACTIONS(3550), + [anon_sym_var] = ACTIONS(3550), + [anon_sym_let] = ACTIONS(3550), + [anon_sym_const] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_if] = ACTIONS(3550), + [anon_sym_switch] = ACTIONS(3550), + [anon_sym_for] = ACTIONS(3550), + [anon_sym_LPAREN] = ACTIONS(3550), + [anon_sym_await] = ACTIONS(3550), + [anon_sym_of] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3550), + [anon_sym_do] = ACTIONS(3550), + [anon_sym_try] = ACTIONS(3550), + [anon_sym_break] = ACTIONS(3550), + [anon_sym_continue] = ACTIONS(3550), + [anon_sym_debugger] = ACTIONS(3550), + [anon_sym_return] = ACTIONS(3550), + [anon_sym_throw] = ACTIONS(3550), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_case] = ACTIONS(3550), + [anon_sym_yield] = ACTIONS(3550), + [anon_sym_LBRACK] = ACTIONS(3550), + [anon_sym_LTtemplate_GT] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(3550), + [anon_sym_class] = ACTIONS(3550), + [anon_sym_async] = ACTIONS(3550), + [anon_sym_function] = ACTIONS(3550), + [anon_sym_new] = ACTIONS(3550), + [anon_sym_using] = ACTIONS(3550), + [anon_sym_PLUS] = ACTIONS(3550), + [anon_sym_DASH] = ACTIONS(3550), + [anon_sym_SLASH] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(3550), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_void] = ACTIONS(3550), + [anon_sym_delete] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_DASH_DASH] = ACTIONS(3550), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3550), + [sym_number] = ACTIONS(3550), + [sym_private_property_identifier] = ACTIONS(3550), + [sym_this] = ACTIONS(3550), + [sym_super] = ACTIONS(3550), + [sym_true] = ACTIONS(3550), + [sym_false] = ACTIONS(3550), + [sym_null] = ACTIONS(3550), + [sym_undefined] = ACTIONS(3550), + [anon_sym_AT] = ACTIONS(3550), + [anon_sym_static] = ACTIONS(3550), + [anon_sym_readonly] = ACTIONS(3550), + [anon_sym_get] = ACTIONS(3550), + [anon_sym_set] = ACTIONS(3550), + [anon_sym_declare] = ACTIONS(3550), + [anon_sym_public] = ACTIONS(3550), + [anon_sym_private] = ACTIONS(3550), + [anon_sym_protected] = ACTIONS(3550), + [anon_sym_override] = ACTIONS(3550), + [anon_sym_module] = ACTIONS(3550), + [anon_sym_any] = ACTIONS(3550), + [anon_sym_number] = ACTIONS(3550), + [anon_sym_boolean] = ACTIONS(3550), + [anon_sym_string] = ACTIONS(3550), + [anon_sym_symbol] = ACTIONS(3550), + [anon_sym_object] = ACTIONS(3550), + [anon_sym_property] = ACTIONS(3550), + [anon_sym_signal] = ACTIONS(3550), + [anon_sym_on] = ACTIONS(3550), + [anon_sym_required] = ACTIONS(3550), + [anon_sym_component] = ACTIONS(3550), + [anon_sym_abstract] = ACTIONS(3550), + [anon_sym_interface] = ACTIONS(3550), + [anon_sym_enum] = ACTIONS(3550), + [sym_html_comment] = ACTIONS(5), + }, + [1404] = { + [sym_comment] = STATE(1404), + [sym_identifier] = ACTIONS(3678), + [anon_sym_export] = ACTIONS(3678), + [anon_sym_default] = ACTIONS(3678), + [anon_sym_type] = ACTIONS(3678), + [anon_sym_namespace] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_typeof] = ACTIONS(3678), + [anon_sym_import] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_with] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_await] = ACTIONS(3678), + [anon_sym_of] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_debugger] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_throw] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_case] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_LTtemplate_GT] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [anon_sym_SQUOTE] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_async] = ACTIONS(3678), + [anon_sym_function] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_void] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3678), + [sym_number] = ACTIONS(3678), + [sym_private_property_identifier] = ACTIONS(3678), + [sym_this] = ACTIONS(3678), + [sym_super] = ACTIONS(3678), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_AT] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3678), + [anon_sym_get] = ACTIONS(3678), + [anon_sym_set] = ACTIONS(3678), + [anon_sym_declare] = ACTIONS(3678), + [anon_sym_public] = ACTIONS(3678), + [anon_sym_private] = ACTIONS(3678), + [anon_sym_protected] = ACTIONS(3678), + [anon_sym_override] = ACTIONS(3678), + [anon_sym_module] = ACTIONS(3678), + [anon_sym_any] = ACTIONS(3678), + [anon_sym_number] = ACTIONS(3678), + [anon_sym_boolean] = ACTIONS(3678), + [anon_sym_string] = ACTIONS(3678), + [anon_sym_symbol] = ACTIONS(3678), + [anon_sym_object] = ACTIONS(3678), + [anon_sym_property] = ACTIONS(3678), + [anon_sym_signal] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_required] = ACTIONS(3678), + [anon_sym_component] = ACTIONS(3678), + [anon_sym_abstract] = ACTIONS(3678), + [anon_sym_interface] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), + [sym_html_comment] = ACTIONS(5), + }, + [1405] = { + [sym_comment] = STATE(1405), + [sym_identifier] = ACTIONS(3680), + [anon_sym_export] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_type] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_typeof] = ACTIONS(3680), + [anon_sym_import] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_await] = ACTIONS(3680), + [anon_sym_of] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_debugger] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LTtemplate_GT] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_async] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_void] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3680), + [sym_number] = ACTIONS(3680), + [sym_private_property_identifier] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [sym_super] = ACTIONS(3680), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [sym_null] = ACTIONS(3680), + [sym_undefined] = ACTIONS(3680), + [anon_sym_AT] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_readonly] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(3680), + [anon_sym_set] = ACTIONS(3680), + [anon_sym_declare] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_override] = ACTIONS(3680), + [anon_sym_module] = ACTIONS(3680), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_property] = ACTIONS(3680), + [anon_sym_signal] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_required] = ACTIONS(3680), + [anon_sym_component] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3680), + [anon_sym_interface] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [sym_html_comment] = ACTIONS(5), + }, + [1406] = { + [sym_comment] = STATE(1406), + [sym_identifier] = ACTIONS(3682), + [anon_sym_export] = ACTIONS(3682), + [anon_sym_default] = ACTIONS(3682), + [anon_sym_type] = ACTIONS(3682), + [anon_sym_namespace] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym_typeof] = ACTIONS(3682), + [anon_sym_import] = ACTIONS(3682), + [anon_sym_from] = ACTIONS(3682), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_var] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_switch] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_await] = ACTIONS(3682), + [anon_sym_of] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_break] = ACTIONS(3682), + [anon_sym_continue] = ACTIONS(3682), + [anon_sym_debugger] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_throw] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym_case] = ACTIONS(3682), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LTtemplate_GT] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_class] = ACTIONS(3682), + [anon_sym_async] = ACTIONS(3682), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_SLASH] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_void] = ACTIONS(3682), + [anon_sym_delete] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3682), + [sym_private_property_identifier] = ACTIONS(3682), + [sym_this] = ACTIONS(3682), + [sym_super] = ACTIONS(3682), + [sym_true] = ACTIONS(3682), + [sym_false] = ACTIONS(3682), + [sym_null] = ACTIONS(3682), + [sym_undefined] = ACTIONS(3682), + [anon_sym_AT] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_get] = ACTIONS(3682), + [anon_sym_set] = ACTIONS(3682), + [anon_sym_declare] = ACTIONS(3682), + [anon_sym_public] = ACTIONS(3682), + [anon_sym_private] = ACTIONS(3682), + [anon_sym_protected] = ACTIONS(3682), + [anon_sym_override] = ACTIONS(3682), + [anon_sym_module] = ACTIONS(3682), + [anon_sym_any] = ACTIONS(3682), + [anon_sym_number] = ACTIONS(3682), + [anon_sym_boolean] = ACTIONS(3682), + [anon_sym_string] = ACTIONS(3682), + [anon_sym_symbol] = ACTIONS(3682), + [anon_sym_object] = ACTIONS(3682), + [anon_sym_property] = ACTIONS(3682), + [anon_sym_signal] = ACTIONS(3682), + [anon_sym_on] = ACTIONS(3682), + [anon_sym_required] = ACTIONS(3682), + [anon_sym_component] = ACTIONS(3682), + [anon_sym_abstract] = ACTIONS(3682), + [anon_sym_interface] = ACTIONS(3682), + [anon_sym_enum] = ACTIONS(3682), + [sym_html_comment] = ACTIONS(5), + }, + [1407] = { + [sym_comment] = STATE(1407), + [sym_identifier] = ACTIONS(3648), + [anon_sym_export] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_type] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3648), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_typeof] = ACTIONS(3648), + [anon_sym_import] = ACTIONS(3648), + [anon_sym_from] = ACTIONS(3648), + [anon_sym_with] = ACTIONS(3648), + [anon_sym_var] = ACTIONS(3648), + [anon_sym_let] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3648), + [anon_sym_await] = ACTIONS(3648), + [anon_sym_of] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_debugger] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_LTtemplate_GT] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3648), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_async] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_SLASH] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3648), + [anon_sym_void] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_PLUS_PLUS] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3648), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3648), + [sym_number] = ACTIONS(3648), + [sym_private_property_identifier] = ACTIONS(3648), + [sym_this] = ACTIONS(3648), + [sym_super] = ACTIONS(3648), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [sym_null] = ACTIONS(3648), + [sym_undefined] = ACTIONS(3648), + [anon_sym_AT] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_readonly] = ACTIONS(3648), + [anon_sym_get] = ACTIONS(3648), + [anon_sym_set] = ACTIONS(3648), + [anon_sym_declare] = ACTIONS(3648), + [anon_sym_public] = ACTIONS(3648), + [anon_sym_private] = ACTIONS(3648), + [anon_sym_protected] = ACTIONS(3648), + [anon_sym_override] = ACTIONS(3648), + [anon_sym_module] = ACTIONS(3648), + [anon_sym_any] = ACTIONS(3648), + [anon_sym_number] = ACTIONS(3648), + [anon_sym_boolean] = ACTIONS(3648), + [anon_sym_string] = ACTIONS(3648), + [anon_sym_symbol] = ACTIONS(3648), + [anon_sym_object] = ACTIONS(3648), + [anon_sym_property] = ACTIONS(3648), + [anon_sym_signal] = ACTIONS(3648), + [anon_sym_on] = ACTIONS(3648), + [anon_sym_required] = ACTIONS(3648), + [anon_sym_component] = ACTIONS(3648), + [anon_sym_abstract] = ACTIONS(3648), + [anon_sym_interface] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [sym_html_comment] = ACTIONS(5), + }, + [1408] = { + [sym_comment] = STATE(1408), + [sym_identifier] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_type] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_typeof] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_from] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3684), + [anon_sym_var] = ACTIONS(3684), + [anon_sym_let] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3684), + [anon_sym_await] = ACTIONS(3684), + [anon_sym_of] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_debugger] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_LTtemplate_GT] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_async] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_void] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3684), + [sym_number] = ACTIONS(3684), + [sym_private_property_identifier] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [sym_super] = ACTIONS(3684), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_AT] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(3684), + [anon_sym_set] = ACTIONS(3684), + [anon_sym_declare] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_any] = ACTIONS(3684), + [anon_sym_number] = ACTIONS(3684), + [anon_sym_boolean] = ACTIONS(3684), + [anon_sym_string] = ACTIONS(3684), + [anon_sym_symbol] = ACTIONS(3684), + [anon_sym_object] = ACTIONS(3684), + [anon_sym_property] = ACTIONS(3684), + [anon_sym_signal] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3684), + [anon_sym_required] = ACTIONS(3684), + [anon_sym_component] = ACTIONS(3684), + [anon_sym_abstract] = ACTIONS(3684), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [sym_html_comment] = ACTIONS(5), + }, + [1409] = { + [sym_comment] = STATE(1409), + [sym_identifier] = ACTIONS(3650), + [anon_sym_export] = ACTIONS(3650), + [anon_sym_default] = ACTIONS(3650), + [anon_sym_type] = ACTIONS(3650), + [anon_sym_namespace] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_typeof] = ACTIONS(3650), + [anon_sym_import] = ACTIONS(3650), + [anon_sym_from] = ACTIONS(3650), + [anon_sym_with] = ACTIONS(3650), + [anon_sym_var] = ACTIONS(3650), + [anon_sym_let] = ACTIONS(3650), + [anon_sym_const] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_if] = ACTIONS(3650), + [anon_sym_switch] = ACTIONS(3650), + [anon_sym_for] = ACTIONS(3650), + [anon_sym_LPAREN] = ACTIONS(3650), + [anon_sym_await] = ACTIONS(3650), + [anon_sym_of] = ACTIONS(3650), + [anon_sym_while] = ACTIONS(3650), + [anon_sym_do] = ACTIONS(3650), + [anon_sym_try] = ACTIONS(3650), + [anon_sym_break] = ACTIONS(3650), + [anon_sym_continue] = ACTIONS(3650), + [anon_sym_debugger] = ACTIONS(3650), + [anon_sym_return] = ACTIONS(3650), + [anon_sym_throw] = ACTIONS(3650), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym_case] = ACTIONS(3650), + [anon_sym_yield] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_LTtemplate_GT] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_class] = ACTIONS(3650), + [anon_sym_async] = ACTIONS(3650), + [anon_sym_function] = ACTIONS(3650), + [anon_sym_new] = ACTIONS(3650), + [anon_sym_using] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3650), + [anon_sym_LT] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_void] = ACTIONS(3650), + [anon_sym_delete] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3650), + [sym_number] = ACTIONS(3650), + [sym_private_property_identifier] = ACTIONS(3650), + [sym_this] = ACTIONS(3650), + [sym_super] = ACTIONS(3650), + [sym_true] = ACTIONS(3650), + [sym_false] = ACTIONS(3650), + [sym_null] = ACTIONS(3650), + [sym_undefined] = ACTIONS(3650), + [anon_sym_AT] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3650), + [anon_sym_readonly] = ACTIONS(3650), + [anon_sym_get] = ACTIONS(3650), + [anon_sym_set] = ACTIONS(3650), + [anon_sym_declare] = ACTIONS(3650), + [anon_sym_public] = ACTIONS(3650), + [anon_sym_private] = ACTIONS(3650), + [anon_sym_protected] = ACTIONS(3650), + [anon_sym_override] = ACTIONS(3650), + [anon_sym_module] = ACTIONS(3650), + [anon_sym_any] = ACTIONS(3650), + [anon_sym_number] = ACTIONS(3650), + [anon_sym_boolean] = ACTIONS(3650), + [anon_sym_string] = ACTIONS(3650), + [anon_sym_symbol] = ACTIONS(3650), + [anon_sym_object] = ACTIONS(3650), + [anon_sym_property] = ACTIONS(3650), + [anon_sym_signal] = ACTIONS(3650), + [anon_sym_on] = ACTIONS(3650), + [anon_sym_required] = ACTIONS(3650), + [anon_sym_component] = ACTIONS(3650), + [anon_sym_abstract] = ACTIONS(3650), + [anon_sym_interface] = ACTIONS(3650), + [anon_sym_enum] = ACTIONS(3650), + [sym_html_comment] = ACTIONS(5), + }, + [1410] = { + [sym_comment] = STATE(1410), + [sym_identifier] = ACTIONS(3652), + [anon_sym_export] = ACTIONS(3652), + [anon_sym_default] = ACTIONS(3652), + [anon_sym_type] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_RBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3652), + [anon_sym_import] = ACTIONS(3652), + [anon_sym_from] = ACTIONS(3652), + [anon_sym_with] = ACTIONS(3652), + [anon_sym_var] = ACTIONS(3652), + [anon_sym_let] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_await] = ACTIONS(3652), + [anon_sym_of] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_debugger] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3652), + [anon_sym_case] = ACTIONS(3652), + [anon_sym_yield] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_LTtemplate_GT] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_async] = ACTIONS(3652), + [anon_sym_function] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_SLASH] = ACTIONS(3652), + [anon_sym_LT] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3652), + [sym_number] = ACTIONS(3652), + [sym_private_property_identifier] = ACTIONS(3652), + [sym_this] = ACTIONS(3652), + [sym_super] = ACTIONS(3652), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [sym_null] = ACTIONS(3652), + [sym_undefined] = ACTIONS(3652), + [anon_sym_AT] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_readonly] = ACTIONS(3652), + [anon_sym_get] = ACTIONS(3652), + [anon_sym_set] = ACTIONS(3652), + [anon_sym_declare] = ACTIONS(3652), + [anon_sym_public] = ACTIONS(3652), + [anon_sym_private] = ACTIONS(3652), + [anon_sym_protected] = ACTIONS(3652), + [anon_sym_override] = ACTIONS(3652), + [anon_sym_module] = ACTIONS(3652), + [anon_sym_any] = ACTIONS(3652), + [anon_sym_number] = ACTIONS(3652), + [anon_sym_boolean] = ACTIONS(3652), + [anon_sym_string] = ACTIONS(3652), + [anon_sym_symbol] = ACTIONS(3652), + [anon_sym_object] = ACTIONS(3652), + [anon_sym_property] = ACTIONS(3652), + [anon_sym_signal] = ACTIONS(3652), + [anon_sym_on] = ACTIONS(3652), + [anon_sym_required] = ACTIONS(3652), + [anon_sym_component] = ACTIONS(3652), + [anon_sym_abstract] = ACTIONS(3652), + [anon_sym_interface] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1411] = { + [sym_comment] = STATE(1411), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1412] = { + [sym_comment] = STATE(1412), + [sym_identifier] = ACTIONS(3686), + [anon_sym_export] = ACTIONS(3686), + [anon_sym_default] = ACTIONS(3686), + [anon_sym_type] = ACTIONS(3686), + [anon_sym_namespace] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_typeof] = ACTIONS(3686), + [anon_sym_import] = ACTIONS(3686), + [anon_sym_from] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [anon_sym_var] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_const] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_await] = ACTIONS(3686), + [anon_sym_of] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_break] = ACTIONS(3686), + [anon_sym_continue] = ACTIONS(3686), + [anon_sym_debugger] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_throw] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_case] = ACTIONS(3686), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LTtemplate_GT] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_class] = ACTIONS(3686), + [anon_sym_async] = ACTIONS(3686), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_using] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_void] = ACTIONS(3686), + [anon_sym_delete] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3686), + [sym_number] = ACTIONS(3686), + [sym_private_property_identifier] = ACTIONS(3686), + [sym_this] = ACTIONS(3686), + [sym_super] = ACTIONS(3686), + [sym_true] = ACTIONS(3686), + [sym_false] = ACTIONS(3686), + [sym_null] = ACTIONS(3686), + [sym_undefined] = ACTIONS(3686), + [anon_sym_AT] = ACTIONS(3686), + [anon_sym_static] = ACTIONS(3686), + [anon_sym_readonly] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(3686), + [anon_sym_set] = ACTIONS(3686), + [anon_sym_declare] = ACTIONS(3686), + [anon_sym_public] = ACTIONS(3686), + [anon_sym_private] = ACTIONS(3686), + [anon_sym_protected] = ACTIONS(3686), + [anon_sym_override] = ACTIONS(3686), + [anon_sym_module] = ACTIONS(3686), + [anon_sym_any] = ACTIONS(3686), + [anon_sym_number] = ACTIONS(3686), + [anon_sym_boolean] = ACTIONS(3686), + [anon_sym_string] = ACTIONS(3686), + [anon_sym_symbol] = ACTIONS(3686), + [anon_sym_object] = ACTIONS(3686), + [anon_sym_property] = ACTIONS(3686), + [anon_sym_signal] = ACTIONS(3686), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_required] = ACTIONS(3686), + [anon_sym_component] = ACTIONS(3686), + [anon_sym_abstract] = ACTIONS(3686), + [anon_sym_interface] = ACTIONS(3686), + [anon_sym_enum] = ACTIONS(3686), + [sym_html_comment] = ACTIONS(5), + }, + [1413] = { + [sym_comment] = STATE(1413), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1414] = { + [sym_comment] = STATE(1414), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1415] = { + [sym_comment] = STATE(1415), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1416] = { + [sym_comment] = STATE(1416), + [sym_identifier] = ACTIONS(3476), + [anon_sym_export] = ACTIONS(3476), + [anon_sym_default] = ACTIONS(3476), + [anon_sym_type] = ACTIONS(3476), + [anon_sym_namespace] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_RBRACE] = ACTIONS(3476), + [anon_sym_typeof] = ACTIONS(3476), + [anon_sym_import] = ACTIONS(3476), + [anon_sym_from] = ACTIONS(3476), + [anon_sym_with] = ACTIONS(3476), + [anon_sym_var] = ACTIONS(3476), + [anon_sym_let] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_await] = ACTIONS(3476), + [anon_sym_of] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [anon_sym_try] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_debugger] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_throw] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_case] = ACTIONS(3476), + [anon_sym_yield] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(3476), + [anon_sym_LTtemplate_GT] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_class] = ACTIONS(3476), + [anon_sym_async] = ACTIONS(3476), + [anon_sym_function] = ACTIONS(3476), + [anon_sym_new] = ACTIONS(3476), + [anon_sym_using] = ACTIONS(3476), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_SLASH] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_void] = ACTIONS(3476), + [anon_sym_delete] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3476), + [sym_number] = ACTIONS(3476), + [sym_private_property_identifier] = ACTIONS(3476), + [sym_this] = ACTIONS(3476), + [sym_super] = ACTIONS(3476), + [sym_true] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [sym_null] = ACTIONS(3476), + [sym_undefined] = ACTIONS(3476), + [anon_sym_AT] = ACTIONS(3476), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_readonly] = ACTIONS(3476), + [anon_sym_get] = ACTIONS(3476), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_declare] = ACTIONS(3476), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_override] = ACTIONS(3476), + [anon_sym_module] = ACTIONS(3476), + [anon_sym_any] = ACTIONS(3476), + [anon_sym_number] = ACTIONS(3476), + [anon_sym_boolean] = ACTIONS(3476), + [anon_sym_string] = ACTIONS(3476), + [anon_sym_symbol] = ACTIONS(3476), + [anon_sym_object] = ACTIONS(3476), + [anon_sym_property] = ACTIONS(3476), + [anon_sym_signal] = ACTIONS(3476), + [anon_sym_on] = ACTIONS(3476), + [anon_sym_required] = ACTIONS(3476), + [anon_sym_component] = ACTIONS(3476), + [anon_sym_abstract] = ACTIONS(3476), + [anon_sym_interface] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), + [sym_html_comment] = ACTIONS(5), + }, + [1417] = { + [sym_comment] = STATE(1417), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1418] = { + [sym_comment] = STATE(1418), + [sym_identifier] = ACTIONS(3590), + [anon_sym_export] = ACTIONS(3590), + [anon_sym_default] = ACTIONS(3590), + [anon_sym_type] = ACTIONS(3590), + [anon_sym_namespace] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3590), + [anon_sym_RBRACE] = ACTIONS(3590), + [anon_sym_typeof] = ACTIONS(3590), + [anon_sym_import] = ACTIONS(3590), + [anon_sym_from] = ACTIONS(3590), + [anon_sym_with] = ACTIONS(3590), + [anon_sym_var] = ACTIONS(3590), + [anon_sym_let] = ACTIONS(3590), + [anon_sym_const] = ACTIONS(3590), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_if] = ACTIONS(3590), + [anon_sym_switch] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3590), + [anon_sym_await] = ACTIONS(3590), + [anon_sym_of] = ACTIONS(3590), + [anon_sym_while] = ACTIONS(3590), + [anon_sym_do] = ACTIONS(3590), + [anon_sym_try] = ACTIONS(3590), + [anon_sym_break] = ACTIONS(3590), + [anon_sym_continue] = ACTIONS(3590), + [anon_sym_debugger] = ACTIONS(3590), + [anon_sym_return] = ACTIONS(3590), + [anon_sym_throw] = ACTIONS(3590), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_case] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_LTtemplate_GT] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3590), + [anon_sym_SQUOTE] = ACTIONS(3590), + [anon_sym_class] = ACTIONS(3590), + [anon_sym_async] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3590), + [anon_sym_using] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3590), + [anon_sym_SLASH] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_void] = ACTIONS(3590), + [anon_sym_delete] = ACTIONS(3590), + [anon_sym_PLUS_PLUS] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3590), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3590), + [sym_number] = ACTIONS(3590), + [sym_private_property_identifier] = ACTIONS(3590), + [sym_this] = ACTIONS(3590), + [sym_super] = ACTIONS(3590), + [sym_true] = ACTIONS(3590), + [sym_false] = ACTIONS(3590), + [sym_null] = ACTIONS(3590), + [sym_undefined] = ACTIONS(3590), + [anon_sym_AT] = ACTIONS(3590), + [anon_sym_static] = ACTIONS(3590), + [anon_sym_readonly] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(3590), + [anon_sym_set] = ACTIONS(3590), + [anon_sym_declare] = ACTIONS(3590), + [anon_sym_public] = ACTIONS(3590), + [anon_sym_private] = ACTIONS(3590), + [anon_sym_protected] = ACTIONS(3590), + [anon_sym_override] = ACTIONS(3590), + [anon_sym_module] = ACTIONS(3590), + [anon_sym_any] = ACTIONS(3590), + [anon_sym_number] = ACTIONS(3590), + [anon_sym_boolean] = ACTIONS(3590), + [anon_sym_string] = ACTIONS(3590), + [anon_sym_symbol] = ACTIONS(3590), + [anon_sym_object] = ACTIONS(3590), + [anon_sym_property] = ACTIONS(3590), + [anon_sym_signal] = ACTIONS(3590), + [anon_sym_on] = ACTIONS(3590), + [anon_sym_required] = ACTIONS(3590), + [anon_sym_component] = ACTIONS(3590), + [anon_sym_abstract] = ACTIONS(3590), + [anon_sym_interface] = ACTIONS(3590), + [anon_sym_enum] = ACTIONS(3590), + [sym_html_comment] = ACTIONS(5), + }, + [1419] = { + [sym_comment] = STATE(1419), + [sym_identifier] = ACTIONS(2384), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_typeof] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2384), + [anon_sym_from] = ACTIONS(2384), + [anon_sym_with] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2384), + [anon_sym_await] = ACTIONS(2384), + [anon_sym_of] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_debugger] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_LTtemplate_GT] = ACTIONS(2384), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DQUOTE] = ACTIONS(2384), + [anon_sym_SQUOTE] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_using] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_TILDE] = ACTIONS(2384), + [anon_sym_void] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2384), + [sym_number] = ACTIONS(2384), + [sym_private_property_identifier] = ACTIONS(2384), + [sym_this] = ACTIONS(2384), + [sym_super] = ACTIONS(2384), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_undefined] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_readonly] = ACTIONS(2384), + [anon_sym_get] = ACTIONS(2384), + [anon_sym_set] = ACTIONS(2384), + [anon_sym_declare] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_protected] = ACTIONS(2384), + [anon_sym_override] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_any] = ACTIONS(2384), + [anon_sym_number] = ACTIONS(2384), + [anon_sym_boolean] = ACTIONS(2384), + [anon_sym_string] = ACTIONS(2384), + [anon_sym_symbol] = ACTIONS(2384), + [anon_sym_object] = ACTIONS(2384), + [anon_sym_property] = ACTIONS(2384), + [anon_sym_signal] = ACTIONS(2384), + [anon_sym_on] = ACTIONS(2384), + [anon_sym_required] = ACTIONS(2384), + [anon_sym_component] = ACTIONS(2384), + [anon_sym_abstract] = ACTIONS(2384), + [anon_sym_interface] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [sym_html_comment] = ACTIONS(5), + }, + [1420] = { + [sym_comment] = STATE(1420), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1421] = { + [sym_comment] = STATE(1421), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1422] = { + [sym_comment] = STATE(1422), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1423] = { + [sym_comment] = STATE(1423), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1424] = { + [sym_comment] = STATE(1424), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_from] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_else] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_of] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_LTtemplate_GT] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2328), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_using] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2328), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2328), + [sym_number] = ACTIONS(2328), + [sym_private_property_identifier] = ACTIONS(2328), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_property] = ACTIONS(2328), + [anon_sym_signal] = ACTIONS(2328), + [anon_sym_on] = ACTIONS(2328), + [anon_sym_required] = ACTIONS(2328), + [anon_sym_component] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym__automatic_semicolon] = ACTIONS(2330), + [sym_html_comment] = ACTIONS(5), + }, + [1425] = { + [sym_comment] = STATE(1425), + [sym_identifier] = ACTIONS(3488), + [anon_sym_export] = ACTIONS(3488), + [anon_sym_default] = ACTIONS(3488), + [anon_sym_type] = ACTIONS(3488), + [anon_sym_namespace] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_RBRACE] = ACTIONS(3488), + [anon_sym_typeof] = ACTIONS(3488), + [anon_sym_import] = ACTIONS(3488), + [anon_sym_from] = ACTIONS(3488), + [anon_sym_with] = ACTIONS(3488), + [anon_sym_var] = ACTIONS(3488), + [anon_sym_let] = ACTIONS(3488), + [anon_sym_const] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_if] = ACTIONS(3488), + [anon_sym_switch] = ACTIONS(3488), + [anon_sym_for] = ACTIONS(3488), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_await] = ACTIONS(3488), + [anon_sym_of] = ACTIONS(3488), + [anon_sym_while] = ACTIONS(3488), + [anon_sym_do] = ACTIONS(3488), + [anon_sym_try] = ACTIONS(3488), + [anon_sym_break] = ACTIONS(3488), + [anon_sym_continue] = ACTIONS(3488), + [anon_sym_debugger] = ACTIONS(3488), + [anon_sym_return] = ACTIONS(3488), + [anon_sym_throw] = ACTIONS(3488), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym_case] = ACTIONS(3488), + [anon_sym_yield] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3488), + [anon_sym_LTtemplate_GT] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [anon_sym_SQUOTE] = ACTIONS(3488), + [anon_sym_class] = ACTIONS(3488), + [anon_sym_async] = ACTIONS(3488), + [anon_sym_function] = ACTIONS(3488), + [anon_sym_new] = ACTIONS(3488), + [anon_sym_using] = ACTIONS(3488), + [anon_sym_PLUS] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3488), + [anon_sym_SLASH] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_void] = ACTIONS(3488), + [anon_sym_delete] = ACTIONS(3488), + [anon_sym_PLUS_PLUS] = ACTIONS(3488), + [anon_sym_DASH_DASH] = ACTIONS(3488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3488), + [sym_number] = ACTIONS(3488), + [sym_private_property_identifier] = ACTIONS(3488), + [sym_this] = ACTIONS(3488), + [sym_super] = ACTIONS(3488), + [sym_true] = ACTIONS(3488), + [sym_false] = ACTIONS(3488), + [sym_null] = ACTIONS(3488), + [sym_undefined] = ACTIONS(3488), + [anon_sym_AT] = ACTIONS(3488), + [anon_sym_static] = ACTIONS(3488), + [anon_sym_readonly] = ACTIONS(3488), + [anon_sym_get] = ACTIONS(3488), + [anon_sym_set] = ACTIONS(3488), + [anon_sym_declare] = ACTIONS(3488), + [anon_sym_public] = ACTIONS(3488), + [anon_sym_private] = ACTIONS(3488), + [anon_sym_protected] = ACTIONS(3488), + [anon_sym_override] = ACTIONS(3488), + [anon_sym_module] = ACTIONS(3488), + [anon_sym_any] = ACTIONS(3488), + [anon_sym_number] = ACTIONS(3488), + [anon_sym_boolean] = ACTIONS(3488), + [anon_sym_string] = ACTIONS(3488), + [anon_sym_symbol] = ACTIONS(3488), + [anon_sym_object] = ACTIONS(3488), + [anon_sym_property] = ACTIONS(3488), + [anon_sym_signal] = ACTIONS(3488), + [anon_sym_on] = ACTIONS(3488), + [anon_sym_required] = ACTIONS(3488), + [anon_sym_component] = ACTIONS(3488), + [anon_sym_abstract] = ACTIONS(3488), + [anon_sym_interface] = ACTIONS(3488), + [anon_sym_enum] = ACTIONS(3488), + [sym_html_comment] = ACTIONS(5), + }, + [1426] = { + [sym_comment] = STATE(1426), + [sym_identifier] = ACTIONS(3490), + [anon_sym_export] = ACTIONS(3490), + [anon_sym_default] = ACTIONS(3490), + [anon_sym_type] = ACTIONS(3490), + [anon_sym_namespace] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3490), + [anon_sym_RBRACE] = ACTIONS(3490), + [anon_sym_typeof] = ACTIONS(3490), + [anon_sym_import] = ACTIONS(3490), + [anon_sym_from] = ACTIONS(3490), + [anon_sym_with] = ACTIONS(3490), + [anon_sym_var] = ACTIONS(3490), + [anon_sym_let] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_switch] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3490), + [anon_sym_await] = ACTIONS(3490), + [anon_sym_of] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_debugger] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_throw] = ACTIONS(3490), + [anon_sym_SEMI] = ACTIONS(3490), + [anon_sym_case] = ACTIONS(3490), + [anon_sym_yield] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_LTtemplate_GT] = ACTIONS(3490), + [anon_sym_DQUOTE] = ACTIONS(3490), + [anon_sym_SQUOTE] = ACTIONS(3490), + [anon_sym_class] = ACTIONS(3490), + [anon_sym_async] = ACTIONS(3490), + [anon_sym_function] = ACTIONS(3490), + [anon_sym_new] = ACTIONS(3490), + [anon_sym_using] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3490), + [anon_sym_DASH] = ACTIONS(3490), + [anon_sym_SLASH] = ACTIONS(3490), + [anon_sym_LT] = ACTIONS(3490), + [anon_sym_TILDE] = ACTIONS(3490), + [anon_sym_void] = ACTIONS(3490), + [anon_sym_delete] = ACTIONS(3490), + [anon_sym_PLUS_PLUS] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3490), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3490), + [sym_number] = ACTIONS(3490), + [sym_private_property_identifier] = ACTIONS(3490), + [sym_this] = ACTIONS(3490), + [sym_super] = ACTIONS(3490), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [sym_null] = ACTIONS(3490), + [sym_undefined] = ACTIONS(3490), + [anon_sym_AT] = ACTIONS(3490), + [anon_sym_static] = ACTIONS(3490), + [anon_sym_readonly] = ACTIONS(3490), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3490), + [anon_sym_declare] = ACTIONS(3490), + [anon_sym_public] = ACTIONS(3490), + [anon_sym_private] = ACTIONS(3490), + [anon_sym_protected] = ACTIONS(3490), + [anon_sym_override] = ACTIONS(3490), + [anon_sym_module] = ACTIONS(3490), + [anon_sym_any] = ACTIONS(3490), + [anon_sym_number] = ACTIONS(3490), + [anon_sym_boolean] = ACTIONS(3490), + [anon_sym_string] = ACTIONS(3490), + [anon_sym_symbol] = ACTIONS(3490), + [anon_sym_object] = ACTIONS(3490), + [anon_sym_property] = ACTIONS(3490), + [anon_sym_signal] = ACTIONS(3490), + [anon_sym_on] = ACTIONS(3490), + [anon_sym_required] = ACTIONS(3490), + [anon_sym_component] = ACTIONS(3490), + [anon_sym_abstract] = ACTIONS(3490), + [anon_sym_interface] = ACTIONS(3490), + [anon_sym_enum] = ACTIONS(3490), + [sym_html_comment] = ACTIONS(5), + }, + [1427] = { + [sym_comment] = STATE(1427), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1428] = { + [sym_comment] = STATE(1428), + [sym_identifier] = ACTIONS(3492), + [anon_sym_export] = ACTIONS(3492), + [anon_sym_default] = ACTIONS(3492), + [anon_sym_type] = ACTIONS(3492), + [anon_sym_namespace] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_RBRACE] = ACTIONS(3492), + [anon_sym_typeof] = ACTIONS(3492), + [anon_sym_import] = ACTIONS(3492), + [anon_sym_from] = ACTIONS(3492), + [anon_sym_with] = ACTIONS(3492), + [anon_sym_var] = ACTIONS(3492), + [anon_sym_let] = ACTIONS(3492), + [anon_sym_const] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_if] = ACTIONS(3492), + [anon_sym_switch] = ACTIONS(3492), + [anon_sym_for] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym_await] = ACTIONS(3492), + [anon_sym_of] = ACTIONS(3492), + [anon_sym_while] = ACTIONS(3492), + [anon_sym_do] = ACTIONS(3492), + [anon_sym_try] = ACTIONS(3492), + [anon_sym_break] = ACTIONS(3492), + [anon_sym_continue] = ACTIONS(3492), + [anon_sym_debugger] = ACTIONS(3492), + [anon_sym_return] = ACTIONS(3492), + [anon_sym_throw] = ACTIONS(3492), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_case] = ACTIONS(3492), + [anon_sym_yield] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3492), + [anon_sym_LTtemplate_GT] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3492), + [anon_sym_class] = ACTIONS(3492), + [anon_sym_async] = ACTIONS(3492), + [anon_sym_function] = ACTIONS(3492), + [anon_sym_new] = ACTIONS(3492), + [anon_sym_using] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_SLASH] = ACTIONS(3492), + [anon_sym_LT] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_void] = ACTIONS(3492), + [anon_sym_delete] = ACTIONS(3492), + [anon_sym_PLUS_PLUS] = ACTIONS(3492), + [anon_sym_DASH_DASH] = ACTIONS(3492), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3492), + [sym_number] = ACTIONS(3492), + [sym_private_property_identifier] = ACTIONS(3492), + [sym_this] = ACTIONS(3492), + [sym_super] = ACTIONS(3492), + [sym_true] = ACTIONS(3492), + [sym_false] = ACTIONS(3492), + [sym_null] = ACTIONS(3492), + [sym_undefined] = ACTIONS(3492), + [anon_sym_AT] = ACTIONS(3492), + [anon_sym_static] = ACTIONS(3492), + [anon_sym_readonly] = ACTIONS(3492), + [anon_sym_get] = ACTIONS(3492), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_declare] = ACTIONS(3492), + [anon_sym_public] = ACTIONS(3492), + [anon_sym_private] = ACTIONS(3492), + [anon_sym_protected] = ACTIONS(3492), + [anon_sym_override] = ACTIONS(3492), + [anon_sym_module] = ACTIONS(3492), + [anon_sym_any] = ACTIONS(3492), + [anon_sym_number] = ACTIONS(3492), + [anon_sym_boolean] = ACTIONS(3492), + [anon_sym_string] = ACTIONS(3492), + [anon_sym_symbol] = ACTIONS(3492), + [anon_sym_object] = ACTIONS(3492), + [anon_sym_property] = ACTIONS(3492), + [anon_sym_signal] = ACTIONS(3492), + [anon_sym_on] = ACTIONS(3492), + [anon_sym_required] = ACTIONS(3492), + [anon_sym_component] = ACTIONS(3492), + [anon_sym_abstract] = ACTIONS(3492), + [anon_sym_interface] = ACTIONS(3492), + [anon_sym_enum] = ACTIONS(3492), + [sym_html_comment] = ACTIONS(5), + }, + [1429] = { + [sym_comment] = STATE(1429), + [sym_identifier] = ACTIONS(3494), + [anon_sym_export] = ACTIONS(3494), + [anon_sym_default] = ACTIONS(3494), + [anon_sym_type] = ACTIONS(3494), + [anon_sym_namespace] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(3494), + [anon_sym_RBRACE] = ACTIONS(3494), + [anon_sym_typeof] = ACTIONS(3494), + [anon_sym_import] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_with] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3494), + [anon_sym_switch] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(3494), + [anon_sym_await] = ACTIONS(3494), + [anon_sym_of] = ACTIONS(3494), + [anon_sym_while] = ACTIONS(3494), + [anon_sym_do] = ACTIONS(3494), + [anon_sym_try] = ACTIONS(3494), + [anon_sym_break] = ACTIONS(3494), + [anon_sym_continue] = ACTIONS(3494), + [anon_sym_debugger] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3494), + [anon_sym_throw] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(3494), + [anon_sym_case] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_LTtemplate_GT] = ACTIONS(3494), + [anon_sym_DQUOTE] = ACTIONS(3494), + [anon_sym_SQUOTE] = ACTIONS(3494), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_function] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_using] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_SLASH] = ACTIONS(3494), + [anon_sym_LT] = ACTIONS(3494), + [anon_sym_TILDE] = ACTIONS(3494), + [anon_sym_void] = ACTIONS(3494), + [anon_sym_delete] = ACTIONS(3494), + [anon_sym_PLUS_PLUS] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3494), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3494), + [sym_number] = ACTIONS(3494), + [sym_private_property_identifier] = ACTIONS(3494), + [sym_this] = ACTIONS(3494), + [sym_super] = ACTIONS(3494), + [sym_true] = ACTIONS(3494), + [sym_false] = ACTIONS(3494), + [sym_null] = ACTIONS(3494), + [sym_undefined] = ACTIONS(3494), + [anon_sym_AT] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_get] = ACTIONS(3494), + [anon_sym_set] = ACTIONS(3494), + [anon_sym_declare] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_module] = ACTIONS(3494), + [anon_sym_any] = ACTIONS(3494), + [anon_sym_number] = ACTIONS(3494), + [anon_sym_boolean] = ACTIONS(3494), + [anon_sym_string] = ACTIONS(3494), + [anon_sym_symbol] = ACTIONS(3494), + [anon_sym_object] = ACTIONS(3494), + [anon_sym_property] = ACTIONS(3494), + [anon_sym_signal] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_component] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [sym_html_comment] = ACTIONS(5), + }, + [1430] = { + [sym_comment] = STATE(1430), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1431] = { + [sym_comment] = STATE(1431), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1432] = { + [sym_statement_block] = STATE(1729), + [sym_comment] = STATE(1432), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym_html_comment] = ACTIONS(5), + }, + [1433] = { + [sym_statement_block] = STATE(1729), + [sym_comment] = STATE(1433), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3704), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym_html_comment] = ACTIONS(5), + }, + [1434] = { + [sym_comment] = STATE(1434), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1435] = { + [sym_comment] = STATE(1435), + [sym_identifier] = ACTIONS(3496), + [anon_sym_export] = ACTIONS(3496), + [anon_sym_default] = ACTIONS(3496), + [anon_sym_type] = ACTIONS(3496), + [anon_sym_namespace] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_RBRACE] = ACTIONS(3496), + [anon_sym_typeof] = ACTIONS(3496), + [anon_sym_import] = ACTIONS(3496), + [anon_sym_from] = ACTIONS(3496), + [anon_sym_with] = ACTIONS(3496), + [anon_sym_var] = ACTIONS(3496), + [anon_sym_let] = ACTIONS(3496), + [anon_sym_const] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3496), + [anon_sym_if] = ACTIONS(3496), + [anon_sym_switch] = ACTIONS(3496), + [anon_sym_for] = ACTIONS(3496), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_await] = ACTIONS(3496), + [anon_sym_of] = ACTIONS(3496), + [anon_sym_while] = ACTIONS(3496), + [anon_sym_do] = ACTIONS(3496), + [anon_sym_try] = ACTIONS(3496), + [anon_sym_break] = ACTIONS(3496), + [anon_sym_continue] = ACTIONS(3496), + [anon_sym_debugger] = ACTIONS(3496), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_throw] = ACTIONS(3496), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym_case] = ACTIONS(3496), + [anon_sym_yield] = ACTIONS(3496), + [anon_sym_LBRACK] = ACTIONS(3496), + [anon_sym_LTtemplate_GT] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(3496), + [anon_sym_class] = ACTIONS(3496), + [anon_sym_async] = ACTIONS(3496), + [anon_sym_function] = ACTIONS(3496), + [anon_sym_new] = ACTIONS(3496), + [anon_sym_using] = ACTIONS(3496), + [anon_sym_PLUS] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(3496), + [anon_sym_void] = ACTIONS(3496), + [anon_sym_delete] = ACTIONS(3496), + [anon_sym_PLUS_PLUS] = ACTIONS(3496), + [anon_sym_DASH_DASH] = ACTIONS(3496), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3496), + [sym_number] = ACTIONS(3496), + [sym_private_property_identifier] = ACTIONS(3496), + [sym_this] = ACTIONS(3496), + [sym_super] = ACTIONS(3496), + [sym_true] = ACTIONS(3496), + [sym_false] = ACTIONS(3496), + [sym_null] = ACTIONS(3496), + [sym_undefined] = ACTIONS(3496), + [anon_sym_AT] = ACTIONS(3496), + [anon_sym_static] = ACTIONS(3496), + [anon_sym_readonly] = ACTIONS(3496), + [anon_sym_get] = ACTIONS(3496), + [anon_sym_set] = ACTIONS(3496), + [anon_sym_declare] = ACTIONS(3496), + [anon_sym_public] = ACTIONS(3496), + [anon_sym_private] = ACTIONS(3496), + [anon_sym_protected] = ACTIONS(3496), + [anon_sym_override] = ACTIONS(3496), + [anon_sym_module] = ACTIONS(3496), + [anon_sym_any] = ACTIONS(3496), + [anon_sym_number] = ACTIONS(3496), + [anon_sym_boolean] = ACTIONS(3496), + [anon_sym_string] = ACTIONS(3496), + [anon_sym_symbol] = ACTIONS(3496), + [anon_sym_object] = ACTIONS(3496), + [anon_sym_property] = ACTIONS(3496), + [anon_sym_signal] = ACTIONS(3496), + [anon_sym_on] = ACTIONS(3496), + [anon_sym_required] = ACTIONS(3496), + [anon_sym_component] = ACTIONS(3496), + [anon_sym_abstract] = ACTIONS(3496), + [anon_sym_interface] = ACTIONS(3496), + [anon_sym_enum] = ACTIONS(3496), + [sym_html_comment] = ACTIONS(5), + }, + [1436] = { + [sym_else_clause] = STATE(1615), + [sym_comment] = STATE(1436), + [sym_identifier] = ACTIONS(3426), + [anon_sym_export] = ACTIONS(3426), + [anon_sym_type] = ACTIONS(3426), + [anon_sym_namespace] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_RBRACE] = ACTIONS(3426), + [anon_sym_typeof] = ACTIONS(3426), + [anon_sym_import] = ACTIONS(3426), + [anon_sym_from] = ACTIONS(3426), + [anon_sym_with] = ACTIONS(3426), + [anon_sym_var] = ACTIONS(3426), + [anon_sym_let] = ACTIONS(3426), + [anon_sym_const] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3426), + [anon_sym_else] = ACTIONS(3706), + [anon_sym_if] = ACTIONS(3426), + [anon_sym_switch] = ACTIONS(3426), + [anon_sym_for] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3426), + [anon_sym_await] = ACTIONS(3426), + [anon_sym_of] = ACTIONS(3426), + [anon_sym_while] = ACTIONS(3426), + [anon_sym_do] = ACTIONS(3426), + [anon_sym_try] = ACTIONS(3426), + [anon_sym_break] = ACTIONS(3426), + [anon_sym_continue] = ACTIONS(3426), + [anon_sym_debugger] = ACTIONS(3426), + [anon_sym_return] = ACTIONS(3426), + [anon_sym_throw] = ACTIONS(3426), + [anon_sym_SEMI] = ACTIONS(3426), + [anon_sym_yield] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3426), + [anon_sym_LTtemplate_GT] = ACTIONS(3426), + [anon_sym_DQUOTE] = ACTIONS(3426), + [anon_sym_SQUOTE] = ACTIONS(3426), + [anon_sym_class] = ACTIONS(3426), + [anon_sym_async] = ACTIONS(3426), + [anon_sym_function] = ACTIONS(3426), + [anon_sym_new] = ACTIONS(3426), + [anon_sym_using] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3426), + [anon_sym_TILDE] = ACTIONS(3426), + [anon_sym_void] = ACTIONS(3426), + [anon_sym_delete] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3426), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3426), + [sym_number] = ACTIONS(3426), + [sym_private_property_identifier] = ACTIONS(3426), + [sym_this] = ACTIONS(3426), + [sym_super] = ACTIONS(3426), + [sym_true] = ACTIONS(3426), + [sym_false] = ACTIONS(3426), + [sym_null] = ACTIONS(3426), + [sym_undefined] = ACTIONS(3426), + [anon_sym_AT] = ACTIONS(3426), + [anon_sym_static] = ACTIONS(3426), + [anon_sym_readonly] = ACTIONS(3426), + [anon_sym_get] = ACTIONS(3426), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_declare] = ACTIONS(3426), + [anon_sym_public] = ACTIONS(3426), + [anon_sym_private] = ACTIONS(3426), + [anon_sym_protected] = ACTIONS(3426), + [anon_sym_override] = ACTIONS(3426), + [anon_sym_module] = ACTIONS(3426), + [anon_sym_any] = ACTIONS(3426), + [anon_sym_number] = ACTIONS(3426), + [anon_sym_boolean] = ACTIONS(3426), + [anon_sym_string] = ACTIONS(3426), + [anon_sym_symbol] = ACTIONS(3426), + [anon_sym_object] = ACTIONS(3426), + [anon_sym_property] = ACTIONS(3426), + [anon_sym_signal] = ACTIONS(3426), + [anon_sym_on] = ACTIONS(3426), + [anon_sym_required] = ACTIONS(3426), + [anon_sym_component] = ACTIONS(3426), + [anon_sym_abstract] = ACTIONS(3426), + [anon_sym_interface] = ACTIONS(3426), + [anon_sym_enum] = ACTIONS(3426), + [sym_html_comment] = ACTIONS(5), + }, + [1437] = { + [sym_comment] = STATE(1437), + [sym_identifier] = ACTIONS(3506), + [anon_sym_export] = ACTIONS(3506), + [anon_sym_default] = ACTIONS(3506), + [anon_sym_type] = ACTIONS(3506), + [anon_sym_namespace] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(3506), + [anon_sym_RBRACE] = ACTIONS(3506), + [anon_sym_typeof] = ACTIONS(3506), + [anon_sym_import] = ACTIONS(3506), + [anon_sym_from] = ACTIONS(3506), + [anon_sym_with] = ACTIONS(3506), + [anon_sym_var] = ACTIONS(3506), + [anon_sym_let] = ACTIONS(3506), + [anon_sym_const] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3506), + [anon_sym_if] = ACTIONS(3506), + [anon_sym_switch] = ACTIONS(3506), + [anon_sym_for] = ACTIONS(3506), + [anon_sym_LPAREN] = ACTIONS(3506), + [anon_sym_await] = ACTIONS(3506), + [anon_sym_of] = ACTIONS(3506), + [anon_sym_while] = ACTIONS(3506), + [anon_sym_do] = ACTIONS(3506), + [anon_sym_try] = ACTIONS(3506), + [anon_sym_break] = ACTIONS(3506), + [anon_sym_continue] = ACTIONS(3506), + [anon_sym_debugger] = ACTIONS(3506), + [anon_sym_return] = ACTIONS(3506), + [anon_sym_throw] = ACTIONS(3506), + [anon_sym_SEMI] = ACTIONS(3506), + [anon_sym_case] = ACTIONS(3506), + [anon_sym_yield] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3506), + [anon_sym_LTtemplate_GT] = ACTIONS(3506), + [anon_sym_DQUOTE] = ACTIONS(3506), + [anon_sym_SQUOTE] = ACTIONS(3506), + [anon_sym_class] = ACTIONS(3506), + [anon_sym_async] = ACTIONS(3506), + [anon_sym_function] = ACTIONS(3506), + [anon_sym_new] = ACTIONS(3506), + [anon_sym_using] = ACTIONS(3506), + [anon_sym_PLUS] = ACTIONS(3506), + [anon_sym_DASH] = ACTIONS(3506), + [anon_sym_SLASH] = ACTIONS(3506), + [anon_sym_LT] = ACTIONS(3506), + [anon_sym_TILDE] = ACTIONS(3506), + [anon_sym_void] = ACTIONS(3506), + [anon_sym_delete] = ACTIONS(3506), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3506), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3506), + [sym_number] = ACTIONS(3506), + [sym_private_property_identifier] = ACTIONS(3506), + [sym_this] = ACTIONS(3506), + [sym_super] = ACTIONS(3506), + [sym_true] = ACTIONS(3506), + [sym_false] = ACTIONS(3506), + [sym_null] = ACTIONS(3506), + [sym_undefined] = ACTIONS(3506), + [anon_sym_AT] = ACTIONS(3506), + [anon_sym_static] = ACTIONS(3506), + [anon_sym_readonly] = ACTIONS(3506), + [anon_sym_get] = ACTIONS(3506), + [anon_sym_set] = ACTIONS(3506), + [anon_sym_declare] = ACTIONS(3506), + [anon_sym_public] = ACTIONS(3506), + [anon_sym_private] = ACTIONS(3506), + [anon_sym_protected] = ACTIONS(3506), + [anon_sym_override] = ACTIONS(3506), + [anon_sym_module] = ACTIONS(3506), + [anon_sym_any] = ACTIONS(3506), + [anon_sym_number] = ACTIONS(3506), + [anon_sym_boolean] = ACTIONS(3506), + [anon_sym_string] = ACTIONS(3506), + [anon_sym_symbol] = ACTIONS(3506), + [anon_sym_object] = ACTIONS(3506), + [anon_sym_property] = ACTIONS(3506), + [anon_sym_signal] = ACTIONS(3506), + [anon_sym_on] = ACTIONS(3506), + [anon_sym_required] = ACTIONS(3506), + [anon_sym_component] = ACTIONS(3506), + [anon_sym_abstract] = ACTIONS(3506), + [anon_sym_interface] = ACTIONS(3506), + [anon_sym_enum] = ACTIONS(3506), + [sym_html_comment] = ACTIONS(5), + }, + [1438] = { + [sym_comment] = STATE(1438), + [sym_identifier] = ACTIONS(3512), + [anon_sym_export] = ACTIONS(3512), + [anon_sym_default] = ACTIONS(3512), + [anon_sym_type] = ACTIONS(3512), + [anon_sym_namespace] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_typeof] = ACTIONS(3512), + [anon_sym_import] = ACTIONS(3512), + [anon_sym_from] = ACTIONS(3512), + [anon_sym_with] = ACTIONS(3512), + [anon_sym_var] = ACTIONS(3512), + [anon_sym_let] = ACTIONS(3512), + [anon_sym_const] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_if] = ACTIONS(3512), + [anon_sym_switch] = ACTIONS(3512), + [anon_sym_for] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym_await] = ACTIONS(3512), + [anon_sym_of] = ACTIONS(3512), + [anon_sym_while] = ACTIONS(3512), + [anon_sym_do] = ACTIONS(3512), + [anon_sym_try] = ACTIONS(3512), + [anon_sym_break] = ACTIONS(3512), + [anon_sym_continue] = ACTIONS(3512), + [anon_sym_debugger] = ACTIONS(3512), + [anon_sym_return] = ACTIONS(3512), + [anon_sym_throw] = ACTIONS(3512), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym_case] = ACTIONS(3512), + [anon_sym_yield] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LTtemplate_GT] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3512), + [anon_sym_class] = ACTIONS(3512), + [anon_sym_async] = ACTIONS(3512), + [anon_sym_function] = ACTIONS(3512), + [anon_sym_new] = ACTIONS(3512), + [anon_sym_using] = ACTIONS(3512), + [anon_sym_PLUS] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3512), + [anon_sym_SLASH] = ACTIONS(3512), + [anon_sym_LT] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_void] = ACTIONS(3512), + [anon_sym_delete] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3512), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3512), + [sym_number] = ACTIONS(3512), + [sym_private_property_identifier] = ACTIONS(3512), + [sym_this] = ACTIONS(3512), + [sym_super] = ACTIONS(3512), + [sym_true] = ACTIONS(3512), + [sym_false] = ACTIONS(3512), + [sym_null] = ACTIONS(3512), + [sym_undefined] = ACTIONS(3512), + [anon_sym_AT] = ACTIONS(3512), + [anon_sym_static] = ACTIONS(3512), + [anon_sym_readonly] = ACTIONS(3512), + [anon_sym_get] = ACTIONS(3512), + [anon_sym_set] = ACTIONS(3512), + [anon_sym_declare] = ACTIONS(3512), + [anon_sym_public] = ACTIONS(3512), + [anon_sym_private] = ACTIONS(3512), + [anon_sym_protected] = ACTIONS(3512), + [anon_sym_override] = ACTIONS(3512), + [anon_sym_module] = ACTIONS(3512), + [anon_sym_any] = ACTIONS(3512), + [anon_sym_number] = ACTIONS(3512), + [anon_sym_boolean] = ACTIONS(3512), + [anon_sym_string] = ACTIONS(3512), + [anon_sym_symbol] = ACTIONS(3512), + [anon_sym_object] = ACTIONS(3512), + [anon_sym_property] = ACTIONS(3512), + [anon_sym_signal] = ACTIONS(3512), + [anon_sym_on] = ACTIONS(3512), + [anon_sym_required] = ACTIONS(3512), + [anon_sym_component] = ACTIONS(3512), + [anon_sym_abstract] = ACTIONS(3512), + [anon_sym_interface] = ACTIONS(3512), + [anon_sym_enum] = ACTIONS(3512), + [sym_html_comment] = ACTIONS(5), + }, + [1439] = { + [sym_comment] = STATE(1439), + [sym_identifier] = ACTIONS(3520), + [anon_sym_export] = ACTIONS(3520), + [anon_sym_default] = ACTIONS(3520), + [anon_sym_type] = ACTIONS(3520), + [anon_sym_namespace] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_typeof] = ACTIONS(3520), + [anon_sym_import] = ACTIONS(3520), + [anon_sym_from] = ACTIONS(3520), + [anon_sym_with] = ACTIONS(3520), + [anon_sym_var] = ACTIONS(3520), + [anon_sym_let] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_switch] = ACTIONS(3520), + [anon_sym_for] = ACTIONS(3520), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym_await] = ACTIONS(3520), + [anon_sym_of] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(3520), + [anon_sym_do] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3520), + [anon_sym_break] = ACTIONS(3520), + [anon_sym_continue] = ACTIONS(3520), + [anon_sym_debugger] = ACTIONS(3520), + [anon_sym_return] = ACTIONS(3520), + [anon_sym_throw] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_case] = ACTIONS(3520), + [anon_sym_yield] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_LTtemplate_GT] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_class] = ACTIONS(3520), + [anon_sym_async] = ACTIONS(3520), + [anon_sym_function] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3520), + [anon_sym_LT] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_void] = ACTIONS(3520), + [anon_sym_delete] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3520), + [sym_number] = ACTIONS(3520), + [sym_private_property_identifier] = ACTIONS(3520), + [sym_this] = ACTIONS(3520), + [sym_super] = ACTIONS(3520), + [sym_true] = ACTIONS(3520), + [sym_false] = ACTIONS(3520), + [sym_null] = ACTIONS(3520), + [sym_undefined] = ACTIONS(3520), + [anon_sym_AT] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_readonly] = ACTIONS(3520), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3520), + [anon_sym_declare] = ACTIONS(3520), + [anon_sym_public] = ACTIONS(3520), + [anon_sym_private] = ACTIONS(3520), + [anon_sym_protected] = ACTIONS(3520), + [anon_sym_override] = ACTIONS(3520), + [anon_sym_module] = ACTIONS(3520), + [anon_sym_any] = ACTIONS(3520), + [anon_sym_number] = ACTIONS(3520), + [anon_sym_boolean] = ACTIONS(3520), + [anon_sym_string] = ACTIONS(3520), + [anon_sym_symbol] = ACTIONS(3520), + [anon_sym_object] = ACTIONS(3520), + [anon_sym_property] = ACTIONS(3520), + [anon_sym_signal] = ACTIONS(3520), + [anon_sym_on] = ACTIONS(3520), + [anon_sym_required] = ACTIONS(3520), + [anon_sym_component] = ACTIONS(3520), + [anon_sym_abstract] = ACTIONS(3520), + [anon_sym_interface] = ACTIONS(3520), + [anon_sym_enum] = ACTIONS(3520), + [sym_html_comment] = ACTIONS(5), + }, + [1440] = { + [sym_comment] = STATE(1440), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1441] = { + [sym_comment] = STATE(1441), + [sym_identifier] = ACTIONS(3522), + [anon_sym_export] = ACTIONS(3522), + [anon_sym_default] = ACTIONS(3522), + [anon_sym_type] = ACTIONS(3522), + [anon_sym_namespace] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3522), + [anon_sym_RBRACE] = ACTIONS(3522), + [anon_sym_typeof] = ACTIONS(3522), + [anon_sym_import] = ACTIONS(3522), + [anon_sym_from] = ACTIONS(3522), + [anon_sym_with] = ACTIONS(3522), + [anon_sym_var] = ACTIONS(3522), + [anon_sym_let] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_LPAREN] = ACTIONS(3522), + [anon_sym_await] = ACTIONS(3522), + [anon_sym_of] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_try] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_debugger] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_throw] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym_case] = ACTIONS(3522), + [anon_sym_yield] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_LTtemplate_GT] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(3522), + [anon_sym_SQUOTE] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_async] = ACTIONS(3522), + [anon_sym_function] = ACTIONS(3522), + [anon_sym_new] = ACTIONS(3522), + [anon_sym_using] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_SLASH] = ACTIONS(3522), + [anon_sym_LT] = ACTIONS(3522), + [anon_sym_TILDE] = ACTIONS(3522), + [anon_sym_void] = ACTIONS(3522), + [anon_sym_delete] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3522), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3522), + [sym_number] = ACTIONS(3522), + [sym_private_property_identifier] = ACTIONS(3522), + [sym_this] = ACTIONS(3522), + [sym_super] = ACTIONS(3522), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [sym_null] = ACTIONS(3522), + [sym_undefined] = ACTIONS(3522), + [anon_sym_AT] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_readonly] = ACTIONS(3522), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_declare] = ACTIONS(3522), + [anon_sym_public] = ACTIONS(3522), + [anon_sym_private] = ACTIONS(3522), + [anon_sym_protected] = ACTIONS(3522), + [anon_sym_override] = ACTIONS(3522), + [anon_sym_module] = ACTIONS(3522), + [anon_sym_any] = ACTIONS(3522), + [anon_sym_number] = ACTIONS(3522), + [anon_sym_boolean] = ACTIONS(3522), + [anon_sym_string] = ACTIONS(3522), + [anon_sym_symbol] = ACTIONS(3522), + [anon_sym_object] = ACTIONS(3522), + [anon_sym_property] = ACTIONS(3522), + [anon_sym_signal] = ACTIONS(3522), + [anon_sym_on] = ACTIONS(3522), + [anon_sym_required] = ACTIONS(3522), + [anon_sym_component] = ACTIONS(3522), + [anon_sym_abstract] = ACTIONS(3522), + [anon_sym_interface] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [sym_html_comment] = ACTIONS(5), + }, + [1442] = { + [sym_comment] = STATE(1442), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_finally] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3708), + [sym_html_comment] = ACTIONS(5), + }, + [1443] = { + [sym_comment] = STATE(1443), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1444] = { + [sym_comment] = STATE(1444), + [sym_identifier] = ACTIONS(3528), + [anon_sym_export] = ACTIONS(3528), + [anon_sym_default] = ACTIONS(3528), + [anon_sym_type] = ACTIONS(3528), + [anon_sym_namespace] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_typeof] = ACTIONS(3528), + [anon_sym_import] = ACTIONS(3528), + [anon_sym_from] = ACTIONS(3528), + [anon_sym_with] = ACTIONS(3528), + [anon_sym_var] = ACTIONS(3528), + [anon_sym_let] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_LPAREN] = ACTIONS(3528), + [anon_sym_await] = ACTIONS(3528), + [anon_sym_of] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_do] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_debugger] = ACTIONS(3528), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_throw] = ACTIONS(3528), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_case] = ACTIONS(3528), + [anon_sym_yield] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_LTtemplate_GT] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [anon_sym_class] = ACTIONS(3528), + [anon_sym_async] = ACTIONS(3528), + [anon_sym_function] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_using] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_SLASH] = ACTIONS(3528), + [anon_sym_LT] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_void] = ACTIONS(3528), + [anon_sym_delete] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3528), + [anon_sym_DASH_DASH] = ACTIONS(3528), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3528), + [sym_number] = ACTIONS(3528), + [sym_private_property_identifier] = ACTIONS(3528), + [sym_this] = ACTIONS(3528), + [sym_super] = ACTIONS(3528), + [sym_true] = ACTIONS(3528), + [sym_false] = ACTIONS(3528), + [sym_null] = ACTIONS(3528), + [sym_undefined] = ACTIONS(3528), + [anon_sym_AT] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_readonly] = ACTIONS(3528), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3528), + [anon_sym_declare] = ACTIONS(3528), + [anon_sym_public] = ACTIONS(3528), + [anon_sym_private] = ACTIONS(3528), + [anon_sym_protected] = ACTIONS(3528), + [anon_sym_override] = ACTIONS(3528), + [anon_sym_module] = ACTIONS(3528), + [anon_sym_any] = ACTIONS(3528), + [anon_sym_number] = ACTIONS(3528), + [anon_sym_boolean] = ACTIONS(3528), + [anon_sym_string] = ACTIONS(3528), + [anon_sym_symbol] = ACTIONS(3528), + [anon_sym_object] = ACTIONS(3528), + [anon_sym_property] = ACTIONS(3528), + [anon_sym_signal] = ACTIONS(3528), + [anon_sym_on] = ACTIONS(3528), + [anon_sym_required] = ACTIONS(3528), + [anon_sym_component] = ACTIONS(3528), + [anon_sym_abstract] = ACTIONS(3528), + [anon_sym_interface] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), + [sym_html_comment] = ACTIONS(5), + }, + [1445] = { + [sym_comment] = STATE(1445), + [sym_identifier] = ACTIONS(3532), + [anon_sym_export] = ACTIONS(3532), + [anon_sym_default] = ACTIONS(3532), + [anon_sym_type] = ACTIONS(3532), + [anon_sym_namespace] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_RBRACE] = ACTIONS(3532), + [anon_sym_typeof] = ACTIONS(3532), + [anon_sym_import] = ACTIONS(3532), + [anon_sym_from] = ACTIONS(3532), + [anon_sym_with] = ACTIONS(3532), + [anon_sym_var] = ACTIONS(3532), + [anon_sym_let] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_if] = ACTIONS(3532), + [anon_sym_switch] = ACTIONS(3532), + [anon_sym_for] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(3532), + [anon_sym_await] = ACTIONS(3532), + [anon_sym_of] = ACTIONS(3532), + [anon_sym_while] = ACTIONS(3532), + [anon_sym_do] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3532), + [anon_sym_break] = ACTIONS(3532), + [anon_sym_continue] = ACTIONS(3532), + [anon_sym_debugger] = ACTIONS(3532), + [anon_sym_return] = ACTIONS(3532), + [anon_sym_throw] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym_case] = ACTIONS(3532), + [anon_sym_yield] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LTtemplate_GT] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_async] = ACTIONS(3532), + [anon_sym_function] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3532), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_SLASH] = ACTIONS(3532), + [anon_sym_LT] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_void] = ACTIONS(3532), + [anon_sym_delete] = ACTIONS(3532), + [anon_sym_PLUS_PLUS] = ACTIONS(3532), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3532), + [sym_number] = ACTIONS(3532), + [sym_private_property_identifier] = ACTIONS(3532), + [sym_this] = ACTIONS(3532), + [sym_super] = ACTIONS(3532), + [sym_true] = ACTIONS(3532), + [sym_false] = ACTIONS(3532), + [sym_null] = ACTIONS(3532), + [sym_undefined] = ACTIONS(3532), + [anon_sym_AT] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_readonly] = ACTIONS(3532), + [anon_sym_get] = ACTIONS(3532), + [anon_sym_set] = ACTIONS(3532), + [anon_sym_declare] = ACTIONS(3532), + [anon_sym_public] = ACTIONS(3532), + [anon_sym_private] = ACTIONS(3532), + [anon_sym_protected] = ACTIONS(3532), + [anon_sym_override] = ACTIONS(3532), + [anon_sym_module] = ACTIONS(3532), + [anon_sym_any] = ACTIONS(3532), + [anon_sym_number] = ACTIONS(3532), + [anon_sym_boolean] = ACTIONS(3532), + [anon_sym_string] = ACTIONS(3532), + [anon_sym_symbol] = ACTIONS(3532), + [anon_sym_object] = ACTIONS(3532), + [anon_sym_property] = ACTIONS(3532), + [anon_sym_signal] = ACTIONS(3532), + [anon_sym_on] = ACTIONS(3532), + [anon_sym_required] = ACTIONS(3532), + [anon_sym_component] = ACTIONS(3532), + [anon_sym_abstract] = ACTIONS(3532), + [anon_sym_interface] = ACTIONS(3532), + [anon_sym_enum] = ACTIONS(3532), + [sym_html_comment] = ACTIONS(5), + }, + [1446] = { + [sym_comment] = STATE(1446), + [sym_identifier] = ACTIONS(3526), + [anon_sym_export] = ACTIONS(3526), + [anon_sym_default] = ACTIONS(3526), + [anon_sym_type] = ACTIONS(3526), + [anon_sym_namespace] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_RBRACE] = ACTIONS(3526), + [anon_sym_typeof] = ACTIONS(3526), + [anon_sym_import] = ACTIONS(3526), + [anon_sym_from] = ACTIONS(3526), + [anon_sym_with] = ACTIONS(3526), + [anon_sym_var] = ACTIONS(3526), + [anon_sym_let] = ACTIONS(3526), + [anon_sym_const] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_if] = ACTIONS(3526), + [anon_sym_switch] = ACTIONS(3526), + [anon_sym_for] = ACTIONS(3526), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_await] = ACTIONS(3526), + [anon_sym_of] = ACTIONS(3526), + [anon_sym_while] = ACTIONS(3526), + [anon_sym_do] = ACTIONS(3526), + [anon_sym_try] = ACTIONS(3526), + [anon_sym_break] = ACTIONS(3526), + [anon_sym_continue] = ACTIONS(3526), + [anon_sym_debugger] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3526), + [anon_sym_throw] = ACTIONS(3526), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_case] = ACTIONS(3526), + [anon_sym_yield] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_LTtemplate_GT] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [anon_sym_SQUOTE] = ACTIONS(3526), + [anon_sym_class] = ACTIONS(3526), + [anon_sym_async] = ACTIONS(3526), + [anon_sym_function] = ACTIONS(3526), + [anon_sym_new] = ACTIONS(3526), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3526), + [anon_sym_DASH] = ACTIONS(3526), + [anon_sym_SLASH] = ACTIONS(3526), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_TILDE] = ACTIONS(3526), + [anon_sym_void] = ACTIONS(3526), + [anon_sym_delete] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3526), + [sym_number] = ACTIONS(3526), + [sym_private_property_identifier] = ACTIONS(3526), + [sym_this] = ACTIONS(3526), + [sym_super] = ACTIONS(3526), + [sym_true] = ACTIONS(3526), + [sym_false] = ACTIONS(3526), + [sym_null] = ACTIONS(3526), + [sym_undefined] = ACTIONS(3526), + [anon_sym_AT] = ACTIONS(3526), + [anon_sym_static] = ACTIONS(3526), + [anon_sym_readonly] = ACTIONS(3526), + [anon_sym_get] = ACTIONS(3526), + [anon_sym_set] = ACTIONS(3526), + [anon_sym_declare] = ACTIONS(3526), + [anon_sym_public] = ACTIONS(3526), + [anon_sym_private] = ACTIONS(3526), + [anon_sym_protected] = ACTIONS(3526), + [anon_sym_override] = ACTIONS(3526), + [anon_sym_module] = ACTIONS(3526), + [anon_sym_any] = ACTIONS(3526), + [anon_sym_number] = ACTIONS(3526), + [anon_sym_boolean] = ACTIONS(3526), + [anon_sym_string] = ACTIONS(3526), + [anon_sym_symbol] = ACTIONS(3526), + [anon_sym_object] = ACTIONS(3526), + [anon_sym_property] = ACTIONS(3526), + [anon_sym_signal] = ACTIONS(3526), + [anon_sym_on] = ACTIONS(3526), + [anon_sym_required] = ACTIONS(3526), + [anon_sym_component] = ACTIONS(3526), + [anon_sym_abstract] = ACTIONS(3526), + [anon_sym_interface] = ACTIONS(3526), + [anon_sym_enum] = ACTIONS(3526), + [sym_html_comment] = ACTIONS(5), + }, + [1447] = { + [sym_comment] = STATE(1447), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1448] = { + [sym_comment] = STATE(1448), + [sym_identifier] = ACTIONS(3544), + [anon_sym_export] = ACTIONS(3544), + [anon_sym_default] = ACTIONS(3544), + [anon_sym_type] = ACTIONS(3544), + [anon_sym_namespace] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3544), + [anon_sym_RBRACE] = ACTIONS(3544), + [anon_sym_typeof] = ACTIONS(3544), + [anon_sym_import] = ACTIONS(3544), + [anon_sym_from] = ACTIONS(3544), + [anon_sym_with] = ACTIONS(3544), + [anon_sym_var] = ACTIONS(3544), + [anon_sym_let] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_await] = ACTIONS(3544), + [anon_sym_of] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_debugger] = ACTIONS(3544), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym_case] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3544), + [anon_sym_LTtemplate_GT] = ACTIONS(3544), + [anon_sym_DQUOTE] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3544), + [anon_sym_async] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_using] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3544), + [anon_sym_void] = ACTIONS(3544), + [anon_sym_delete] = ACTIONS(3544), + [anon_sym_PLUS_PLUS] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3544), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3544), + [sym_number] = ACTIONS(3544), + [sym_private_property_identifier] = ACTIONS(3544), + [sym_this] = ACTIONS(3544), + [sym_super] = ACTIONS(3544), + [sym_true] = ACTIONS(3544), + [sym_false] = ACTIONS(3544), + [sym_null] = ACTIONS(3544), + [sym_undefined] = ACTIONS(3544), + [anon_sym_AT] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_readonly] = ACTIONS(3544), + [anon_sym_get] = ACTIONS(3544), + [anon_sym_set] = ACTIONS(3544), + [anon_sym_declare] = ACTIONS(3544), + [anon_sym_public] = ACTIONS(3544), + [anon_sym_private] = ACTIONS(3544), + [anon_sym_protected] = ACTIONS(3544), + [anon_sym_override] = ACTIONS(3544), + [anon_sym_module] = ACTIONS(3544), + [anon_sym_any] = ACTIONS(3544), + [anon_sym_number] = ACTIONS(3544), + [anon_sym_boolean] = ACTIONS(3544), + [anon_sym_string] = ACTIONS(3544), + [anon_sym_symbol] = ACTIONS(3544), + [anon_sym_object] = ACTIONS(3544), + [anon_sym_property] = ACTIONS(3544), + [anon_sym_signal] = ACTIONS(3544), + [anon_sym_on] = ACTIONS(3544), + [anon_sym_required] = ACTIONS(3544), + [anon_sym_component] = ACTIONS(3544), + [anon_sym_abstract] = ACTIONS(3544), + [anon_sym_interface] = ACTIONS(3544), + [anon_sym_enum] = ACTIONS(3544), + [sym_html_comment] = ACTIONS(5), + }, + [1449] = { + [sym_comment] = STATE(1449), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1450] = { + [sym_comment] = STATE(1450), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1451] = { + [sym_comment] = STATE(1451), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1452] = { + [sym_comment] = STATE(1452), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_typeof] = ACTIONS(2332), + [anon_sym_import] = ACTIONS(2332), + [anon_sym_from] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_switch] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_await] = ACTIONS(2332), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_throw] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_LTtemplate_GT] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2332), + [anon_sym_class] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_using] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_void] = ACTIONS(2332), + [anon_sym_delete] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2332), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2332), + [sym_number] = ACTIONS(2332), + [sym_private_property_identifier] = ACTIONS(2332), + [sym_this] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_undefined] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_property] = ACTIONS(2332), + [anon_sym_signal] = ACTIONS(2332), + [anon_sym_on] = ACTIONS(2332), + [anon_sym_required] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(2628), + [sym_html_comment] = ACTIONS(5), + }, + [1453] = { + [sym_comment] = STATE(1453), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1454] = { + [sym_comment] = STATE(1454), + [sym_identifier] = ACTIONS(3582), + [anon_sym_export] = ACTIONS(3582), + [anon_sym_default] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_namespace] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_RBRACE] = ACTIONS(3582), + [anon_sym_typeof] = ACTIONS(3582), + [anon_sym_import] = ACTIONS(3582), + [anon_sym_from] = ACTIONS(3582), + [anon_sym_with] = ACTIONS(3582), + [anon_sym_var] = ACTIONS(3582), + [anon_sym_let] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_if] = ACTIONS(3582), + [anon_sym_switch] = ACTIONS(3582), + [anon_sym_for] = ACTIONS(3582), + [anon_sym_LPAREN] = ACTIONS(3582), + [anon_sym_await] = ACTIONS(3582), + [anon_sym_of] = ACTIONS(3582), + [anon_sym_while] = ACTIONS(3582), + [anon_sym_do] = ACTIONS(3582), + [anon_sym_try] = ACTIONS(3582), + [anon_sym_break] = ACTIONS(3582), + [anon_sym_continue] = ACTIONS(3582), + [anon_sym_debugger] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3582), + [anon_sym_throw] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_case] = ACTIONS(3582), + [anon_sym_yield] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LTtemplate_GT] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_async] = ACTIONS(3582), + [anon_sym_function] = ACTIONS(3582), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_using] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3582), + [anon_sym_SLASH] = ACTIONS(3582), + [anon_sym_LT] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_void] = ACTIONS(3582), + [anon_sym_delete] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3582), + [sym_number] = ACTIONS(3582), + [sym_private_property_identifier] = ACTIONS(3582), + [sym_this] = ACTIONS(3582), + [sym_super] = ACTIONS(3582), + [sym_true] = ACTIONS(3582), + [sym_false] = ACTIONS(3582), + [sym_null] = ACTIONS(3582), + [sym_undefined] = ACTIONS(3582), + [anon_sym_AT] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_readonly] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(3582), + [anon_sym_set] = ACTIONS(3582), + [anon_sym_declare] = ACTIONS(3582), + [anon_sym_public] = ACTIONS(3582), + [anon_sym_private] = ACTIONS(3582), + [anon_sym_protected] = ACTIONS(3582), + [anon_sym_override] = ACTIONS(3582), + [anon_sym_module] = ACTIONS(3582), + [anon_sym_any] = ACTIONS(3582), + [anon_sym_number] = ACTIONS(3582), + [anon_sym_boolean] = ACTIONS(3582), + [anon_sym_string] = ACTIONS(3582), + [anon_sym_symbol] = ACTIONS(3582), + [anon_sym_object] = ACTIONS(3582), + [anon_sym_property] = ACTIONS(3582), + [anon_sym_signal] = ACTIONS(3582), + [anon_sym_on] = ACTIONS(3582), + [anon_sym_required] = ACTIONS(3582), + [anon_sym_component] = ACTIONS(3582), + [anon_sym_abstract] = ACTIONS(3582), + [anon_sym_interface] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), + [sym_html_comment] = ACTIONS(5), + }, + [1455] = { + [sym_comment] = STATE(1455), + [sym_identifier] = ACTIONS(3534), + [anon_sym_export] = ACTIONS(3534), + [anon_sym_default] = ACTIONS(3534), + [anon_sym_type] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_RBRACE] = ACTIONS(3534), + [anon_sym_typeof] = ACTIONS(3534), + [anon_sym_import] = ACTIONS(3534), + [anon_sym_from] = ACTIONS(3534), + [anon_sym_with] = ACTIONS(3534), + [anon_sym_var] = ACTIONS(3534), + [anon_sym_let] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3534), + [anon_sym_await] = ACTIONS(3534), + [anon_sym_of] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_debugger] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym_case] = ACTIONS(3534), + [anon_sym_yield] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_LTtemplate_GT] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [anon_sym_SQUOTE] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_async] = ACTIONS(3534), + [anon_sym_function] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_SLASH] = ACTIONS(3534), + [anon_sym_LT] = ACTIONS(3534), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_void] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3534), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3534), + [sym_number] = ACTIONS(3534), + [sym_private_property_identifier] = ACTIONS(3534), + [sym_this] = ACTIONS(3534), + [sym_super] = ACTIONS(3534), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [sym_null] = ACTIONS(3534), + [sym_undefined] = ACTIONS(3534), + [anon_sym_AT] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_readonly] = ACTIONS(3534), + [anon_sym_get] = ACTIONS(3534), + [anon_sym_set] = ACTIONS(3534), + [anon_sym_declare] = ACTIONS(3534), + [anon_sym_public] = ACTIONS(3534), + [anon_sym_private] = ACTIONS(3534), + [anon_sym_protected] = ACTIONS(3534), + [anon_sym_override] = ACTIONS(3534), + [anon_sym_module] = ACTIONS(3534), + [anon_sym_any] = ACTIONS(3534), + [anon_sym_number] = ACTIONS(3534), + [anon_sym_boolean] = ACTIONS(3534), + [anon_sym_string] = ACTIONS(3534), + [anon_sym_symbol] = ACTIONS(3534), + [anon_sym_object] = ACTIONS(3534), + [anon_sym_property] = ACTIONS(3534), + [anon_sym_signal] = ACTIONS(3534), + [anon_sym_on] = ACTIONS(3534), + [anon_sym_required] = ACTIONS(3534), + [anon_sym_component] = ACTIONS(3534), + [anon_sym_abstract] = ACTIONS(3534), + [anon_sym_interface] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [sym_html_comment] = ACTIONS(5), + }, + [1456] = { + [sym_comment] = STATE(1456), + [sym_identifier] = ACTIONS(3542), + [anon_sym_export] = ACTIONS(3542), + [anon_sym_default] = ACTIONS(3542), + [anon_sym_type] = ACTIONS(3542), + [anon_sym_namespace] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_RBRACE] = ACTIONS(3542), + [anon_sym_typeof] = ACTIONS(3542), + [anon_sym_import] = ACTIONS(3542), + [anon_sym_from] = ACTIONS(3542), + [anon_sym_with] = ACTIONS(3542), + [anon_sym_var] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_const] = ACTIONS(3542), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_switch] = ACTIONS(3542), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_await] = ACTIONS(3542), + [anon_sym_of] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_break] = ACTIONS(3542), + [anon_sym_continue] = ACTIONS(3542), + [anon_sym_debugger] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_throw] = ACTIONS(3542), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym_case] = ACTIONS(3542), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LTtemplate_GT] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_SQUOTE] = ACTIONS(3542), + [anon_sym_class] = ACTIONS(3542), + [anon_sym_async] = ACTIONS(3542), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_using] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_void] = ACTIONS(3542), + [anon_sym_delete] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3542), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3542), + [sym_number] = ACTIONS(3542), + [sym_private_property_identifier] = ACTIONS(3542), + [sym_this] = ACTIONS(3542), + [sym_super] = ACTIONS(3542), + [sym_true] = ACTIONS(3542), + [sym_false] = ACTIONS(3542), + [sym_null] = ACTIONS(3542), + [sym_undefined] = ACTIONS(3542), + [anon_sym_AT] = ACTIONS(3542), + [anon_sym_static] = ACTIONS(3542), + [anon_sym_readonly] = ACTIONS(3542), + [anon_sym_get] = ACTIONS(3542), + [anon_sym_set] = ACTIONS(3542), + [anon_sym_declare] = ACTIONS(3542), + [anon_sym_public] = ACTIONS(3542), + [anon_sym_private] = ACTIONS(3542), + [anon_sym_protected] = ACTIONS(3542), + [anon_sym_override] = ACTIONS(3542), + [anon_sym_module] = ACTIONS(3542), + [anon_sym_any] = ACTIONS(3542), + [anon_sym_number] = ACTIONS(3542), + [anon_sym_boolean] = ACTIONS(3542), + [anon_sym_string] = ACTIONS(3542), + [anon_sym_symbol] = ACTIONS(3542), + [anon_sym_object] = ACTIONS(3542), + [anon_sym_property] = ACTIONS(3542), + [anon_sym_signal] = ACTIONS(3542), + [anon_sym_on] = ACTIONS(3542), + [anon_sym_required] = ACTIONS(3542), + [anon_sym_component] = ACTIONS(3542), + [anon_sym_abstract] = ACTIONS(3542), + [anon_sym_interface] = ACTIONS(3542), + [anon_sym_enum] = ACTIONS(3542), + [sym_html_comment] = ACTIONS(5), + }, + [1457] = { + [sym_comment] = STATE(1457), + [sym_identifier] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_type] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_typeof] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_from] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3618), + [anon_sym_var] = ACTIONS(3618), + [anon_sym_let] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_await] = ACTIONS(3618), + [anon_sym_of] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_debugger] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_LTtemplate_GT] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_async] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_SLASH] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_void] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3618), + [sym_number] = ACTIONS(3618), + [sym_private_property_identifier] = ACTIONS(3618), + [sym_this] = ACTIONS(3618), + [sym_super] = ACTIONS(3618), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [sym_null] = ACTIONS(3618), + [sym_undefined] = ACTIONS(3618), + [anon_sym_AT] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_readonly] = ACTIONS(3618), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3618), + [anon_sym_declare] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_override] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_any] = ACTIONS(3618), + [anon_sym_number] = ACTIONS(3618), + [anon_sym_boolean] = ACTIONS(3618), + [anon_sym_string] = ACTIONS(3618), + [anon_sym_symbol] = ACTIONS(3618), + [anon_sym_object] = ACTIONS(3618), + [anon_sym_property] = ACTIONS(3618), + [anon_sym_signal] = ACTIONS(3618), + [anon_sym_on] = ACTIONS(3618), + [anon_sym_required] = ACTIONS(3618), + [anon_sym_component] = ACTIONS(3618), + [anon_sym_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [sym_html_comment] = ACTIONS(5), + }, + [1458] = { + [sym_comment] = STATE(1458), + [sym_identifier] = ACTIONS(3508), + [anon_sym_export] = ACTIONS(3508), + [anon_sym_type] = ACTIONS(3508), + [anon_sym_namespace] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3508), + [anon_sym_RBRACE] = ACTIONS(3508), + [anon_sym_typeof] = ACTIONS(3508), + [anon_sym_import] = ACTIONS(3508), + [anon_sym_from] = ACTIONS(3508), + [anon_sym_with] = ACTIONS(3508), + [anon_sym_var] = ACTIONS(3508), + [anon_sym_let] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_else] = ACTIONS(3508), + [anon_sym_if] = ACTIONS(3508), + [anon_sym_switch] = ACTIONS(3508), + [anon_sym_for] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(3508), + [anon_sym_await] = ACTIONS(3508), + [anon_sym_of] = ACTIONS(3508), + [anon_sym_while] = ACTIONS(3508), + [anon_sym_do] = ACTIONS(3508), + [anon_sym_try] = ACTIONS(3508), + [anon_sym_break] = ACTIONS(3508), + [anon_sym_continue] = ACTIONS(3508), + [anon_sym_debugger] = ACTIONS(3508), + [anon_sym_return] = ACTIONS(3508), + [anon_sym_throw] = ACTIONS(3508), + [anon_sym_SEMI] = ACTIONS(3508), + [anon_sym_yield] = ACTIONS(3508), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LTtemplate_GT] = ACTIONS(3508), + [anon_sym_DQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3508), + [anon_sym_class] = ACTIONS(3508), + [anon_sym_async] = ACTIONS(3508), + [anon_sym_function] = ACTIONS(3508), + [anon_sym_new] = ACTIONS(3508), + [anon_sym_using] = ACTIONS(3508), + [anon_sym_PLUS] = ACTIONS(3508), + [anon_sym_DASH] = ACTIONS(3508), + [anon_sym_SLASH] = ACTIONS(3508), + [anon_sym_LT] = ACTIONS(3508), + [anon_sym_TILDE] = ACTIONS(3508), + [anon_sym_void] = ACTIONS(3508), + [anon_sym_delete] = ACTIONS(3508), + [anon_sym_PLUS_PLUS] = ACTIONS(3508), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3508), + [sym_number] = ACTIONS(3508), + [sym_private_property_identifier] = ACTIONS(3508), + [sym_this] = ACTIONS(3508), + [sym_super] = ACTIONS(3508), + [sym_true] = ACTIONS(3508), + [sym_false] = ACTIONS(3508), + [sym_null] = ACTIONS(3508), + [sym_undefined] = ACTIONS(3508), + [anon_sym_AT] = ACTIONS(3508), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_readonly] = ACTIONS(3508), + [anon_sym_get] = ACTIONS(3508), + [anon_sym_set] = ACTIONS(3508), + [anon_sym_declare] = ACTIONS(3508), + [anon_sym_public] = ACTIONS(3508), + [anon_sym_private] = ACTIONS(3508), + [anon_sym_protected] = ACTIONS(3508), + [anon_sym_override] = ACTIONS(3508), + [anon_sym_module] = ACTIONS(3508), + [anon_sym_any] = ACTIONS(3508), + [anon_sym_number] = ACTIONS(3508), + [anon_sym_boolean] = ACTIONS(3508), + [anon_sym_string] = ACTIONS(3508), + [anon_sym_symbol] = ACTIONS(3508), + [anon_sym_object] = ACTIONS(3508), + [anon_sym_property] = ACTIONS(3508), + [anon_sym_signal] = ACTIONS(3508), + [anon_sym_on] = ACTIONS(3508), + [anon_sym_required] = ACTIONS(3508), + [anon_sym_component] = ACTIONS(3508), + [anon_sym_abstract] = ACTIONS(3508), + [anon_sym_interface] = ACTIONS(3508), + [anon_sym_enum] = ACTIONS(3508), + [sym_html_comment] = ACTIONS(5), + }, + [1459] = { + [sym_comment] = STATE(1459), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3710), + [sym_html_comment] = ACTIONS(5), + }, + [1460] = { + [sym_comment] = STATE(1460), + [sym_identifier] = ACTIONS(3542), + [anon_sym_export] = ACTIONS(3542), + [anon_sym_type] = ACTIONS(3542), + [anon_sym_namespace] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_RBRACE] = ACTIONS(3542), + [anon_sym_typeof] = ACTIONS(3542), + [anon_sym_import] = ACTIONS(3542), + [anon_sym_from] = ACTIONS(3542), + [anon_sym_with] = ACTIONS(3542), + [anon_sym_var] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_const] = ACTIONS(3542), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_else] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_switch] = ACTIONS(3542), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_await] = ACTIONS(3542), + [anon_sym_of] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_break] = ACTIONS(3542), + [anon_sym_continue] = ACTIONS(3542), + [anon_sym_debugger] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_throw] = ACTIONS(3542), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LTtemplate_GT] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_SQUOTE] = ACTIONS(3542), + [anon_sym_class] = ACTIONS(3542), + [anon_sym_async] = ACTIONS(3542), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_using] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_void] = ACTIONS(3542), + [anon_sym_delete] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3542), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3542), + [sym_number] = ACTIONS(3542), + [sym_private_property_identifier] = ACTIONS(3542), + [sym_this] = ACTIONS(3542), + [sym_super] = ACTIONS(3542), + [sym_true] = ACTIONS(3542), + [sym_false] = ACTIONS(3542), + [sym_null] = ACTIONS(3542), + [sym_undefined] = ACTIONS(3542), + [anon_sym_AT] = ACTIONS(3542), + [anon_sym_static] = ACTIONS(3542), + [anon_sym_readonly] = ACTIONS(3542), + [anon_sym_get] = ACTIONS(3542), + [anon_sym_set] = ACTIONS(3542), + [anon_sym_declare] = ACTIONS(3542), + [anon_sym_public] = ACTIONS(3542), + [anon_sym_private] = ACTIONS(3542), + [anon_sym_protected] = ACTIONS(3542), + [anon_sym_override] = ACTIONS(3542), + [anon_sym_module] = ACTIONS(3542), + [anon_sym_any] = ACTIONS(3542), + [anon_sym_number] = ACTIONS(3542), + [anon_sym_boolean] = ACTIONS(3542), + [anon_sym_string] = ACTIONS(3542), + [anon_sym_symbol] = ACTIONS(3542), + [anon_sym_object] = ACTIONS(3542), + [anon_sym_property] = ACTIONS(3542), + [anon_sym_signal] = ACTIONS(3542), + [anon_sym_on] = ACTIONS(3542), + [anon_sym_required] = ACTIONS(3542), + [anon_sym_component] = ACTIONS(3542), + [anon_sym_abstract] = ACTIONS(3542), + [anon_sym_interface] = ACTIONS(3542), + [anon_sym_enum] = ACTIONS(3542), + [sym_html_comment] = ACTIONS(5), + }, + [1461] = { + [sym_comment] = STATE(1461), + [sym_identifier] = ACTIONS(3534), + [anon_sym_export] = ACTIONS(3534), + [anon_sym_type] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_RBRACE] = ACTIONS(3534), + [anon_sym_typeof] = ACTIONS(3534), + [anon_sym_import] = ACTIONS(3534), + [anon_sym_from] = ACTIONS(3534), + [anon_sym_with] = ACTIONS(3534), + [anon_sym_var] = ACTIONS(3534), + [anon_sym_let] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_else] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3534), + [anon_sym_await] = ACTIONS(3534), + [anon_sym_of] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_debugger] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym_yield] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_LTtemplate_GT] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [anon_sym_SQUOTE] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_async] = ACTIONS(3534), + [anon_sym_function] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_SLASH] = ACTIONS(3534), + [anon_sym_LT] = ACTIONS(3534), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_void] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3534), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3534), + [sym_number] = ACTIONS(3534), + [sym_private_property_identifier] = ACTIONS(3534), + [sym_this] = ACTIONS(3534), + [sym_super] = ACTIONS(3534), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [sym_null] = ACTIONS(3534), + [sym_undefined] = ACTIONS(3534), + [anon_sym_AT] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_readonly] = ACTIONS(3534), + [anon_sym_get] = ACTIONS(3534), + [anon_sym_set] = ACTIONS(3534), + [anon_sym_declare] = ACTIONS(3534), + [anon_sym_public] = ACTIONS(3534), + [anon_sym_private] = ACTIONS(3534), + [anon_sym_protected] = ACTIONS(3534), + [anon_sym_override] = ACTIONS(3534), + [anon_sym_module] = ACTIONS(3534), + [anon_sym_any] = ACTIONS(3534), + [anon_sym_number] = ACTIONS(3534), + [anon_sym_boolean] = ACTIONS(3534), + [anon_sym_string] = ACTIONS(3534), + [anon_sym_symbol] = ACTIONS(3534), + [anon_sym_object] = ACTIONS(3534), + [anon_sym_property] = ACTIONS(3534), + [anon_sym_signal] = ACTIONS(3534), + [anon_sym_on] = ACTIONS(3534), + [anon_sym_required] = ACTIONS(3534), + [anon_sym_component] = ACTIONS(3534), + [anon_sym_abstract] = ACTIONS(3534), + [anon_sym_interface] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [sym_html_comment] = ACTIONS(5), + }, + [1462] = { + [sym_comment] = STATE(1462), + [sym_identifier] = ACTIONS(3526), + [anon_sym_export] = ACTIONS(3526), + [anon_sym_type] = ACTIONS(3526), + [anon_sym_namespace] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_RBRACE] = ACTIONS(3526), + [anon_sym_typeof] = ACTIONS(3526), + [anon_sym_import] = ACTIONS(3526), + [anon_sym_from] = ACTIONS(3526), + [anon_sym_with] = ACTIONS(3526), + [anon_sym_var] = ACTIONS(3526), + [anon_sym_let] = ACTIONS(3526), + [anon_sym_const] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_else] = ACTIONS(3526), + [anon_sym_if] = ACTIONS(3526), + [anon_sym_switch] = ACTIONS(3526), + [anon_sym_for] = ACTIONS(3526), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_await] = ACTIONS(3526), + [anon_sym_of] = ACTIONS(3526), + [anon_sym_while] = ACTIONS(3526), + [anon_sym_do] = ACTIONS(3526), + [anon_sym_try] = ACTIONS(3526), + [anon_sym_break] = ACTIONS(3526), + [anon_sym_continue] = ACTIONS(3526), + [anon_sym_debugger] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3526), + [anon_sym_throw] = ACTIONS(3526), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_yield] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_LTtemplate_GT] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [anon_sym_SQUOTE] = ACTIONS(3526), + [anon_sym_class] = ACTIONS(3526), + [anon_sym_async] = ACTIONS(3526), + [anon_sym_function] = ACTIONS(3526), + [anon_sym_new] = ACTIONS(3526), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3526), + [anon_sym_DASH] = ACTIONS(3526), + [anon_sym_SLASH] = ACTIONS(3526), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_TILDE] = ACTIONS(3526), + [anon_sym_void] = ACTIONS(3526), + [anon_sym_delete] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3526), + [sym_number] = ACTIONS(3526), + [sym_private_property_identifier] = ACTIONS(3526), + [sym_this] = ACTIONS(3526), + [sym_super] = ACTIONS(3526), + [sym_true] = ACTIONS(3526), + [sym_false] = ACTIONS(3526), + [sym_null] = ACTIONS(3526), + [sym_undefined] = ACTIONS(3526), + [anon_sym_AT] = ACTIONS(3526), + [anon_sym_static] = ACTIONS(3526), + [anon_sym_readonly] = ACTIONS(3526), + [anon_sym_get] = ACTIONS(3526), + [anon_sym_set] = ACTIONS(3526), + [anon_sym_declare] = ACTIONS(3526), + [anon_sym_public] = ACTIONS(3526), + [anon_sym_private] = ACTIONS(3526), + [anon_sym_protected] = ACTIONS(3526), + [anon_sym_override] = ACTIONS(3526), + [anon_sym_module] = ACTIONS(3526), + [anon_sym_any] = ACTIONS(3526), + [anon_sym_number] = ACTIONS(3526), + [anon_sym_boolean] = ACTIONS(3526), + [anon_sym_string] = ACTIONS(3526), + [anon_sym_symbol] = ACTIONS(3526), + [anon_sym_object] = ACTIONS(3526), + [anon_sym_property] = ACTIONS(3526), + [anon_sym_signal] = ACTIONS(3526), + [anon_sym_on] = ACTIONS(3526), + [anon_sym_required] = ACTIONS(3526), + [anon_sym_component] = ACTIONS(3526), + [anon_sym_abstract] = ACTIONS(3526), + [anon_sym_interface] = ACTIONS(3526), + [anon_sym_enum] = ACTIONS(3526), + [sym_html_comment] = ACTIONS(5), + }, + [1463] = { + [sym_comment] = STATE(1463), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym_html_comment] = ACTIONS(5), + }, + [1464] = { + [sym_comment] = STATE(1464), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_finally] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym_html_comment] = ACTIONS(5), + }, + [1465] = { + [sym_comment] = STATE(1465), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_typeof] = ACTIONS(2414), + [anon_sym_import] = ACTIONS(2414), + [anon_sym_from] = ACTIONS(2414), + [anon_sym_with] = ACTIONS(2414), + [anon_sym_var] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_switch] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_await] = ACTIONS(2414), + [anon_sym_of] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_debugger] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_throw] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_yield] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_LTtemplate_GT] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), + [anon_sym_class] = ACTIONS(2414), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2414), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_using] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), + [anon_sym_void] = ACTIONS(2414), + [anon_sym_delete] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2414), + [sym_number] = ACTIONS(2414), + [sym_private_property_identifier] = ACTIONS(2414), + [sym_this] = ACTIONS(2414), + [sym_super] = ACTIONS(2414), + [sym_true] = ACTIONS(2414), + [sym_false] = ACTIONS(2414), + [sym_null] = ACTIONS(2414), + [sym_undefined] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_property] = ACTIONS(2414), + [anon_sym_signal] = ACTIONS(2414), + [anon_sym_on] = ACTIONS(2414), + [anon_sym_required] = ACTIONS(2414), + [anon_sym_component] = ACTIONS(2414), + [anon_sym_abstract] = ACTIONS(2414), + [anon_sym_interface] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [sym_html_comment] = ACTIONS(5), + }, + [1466] = { + [sym_comment] = STATE(1466), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym_html_comment] = ACTIONS(5), + }, + [1467] = { + [sym_comment] = STATE(1467), + [sym_identifier] = ACTIONS(3458), + [anon_sym_export] = ACTIONS(3458), + [anon_sym_type] = ACTIONS(3458), + [anon_sym_namespace] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(3458), + [anon_sym_typeof] = ACTIONS(3458), + [anon_sym_import] = ACTIONS(3458), + [anon_sym_from] = ACTIONS(3458), + [anon_sym_with] = ACTIONS(3458), + [anon_sym_var] = ACTIONS(3458), + [anon_sym_let] = ACTIONS(3458), + [anon_sym_const] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_if] = ACTIONS(3458), + [anon_sym_switch] = ACTIONS(3458), + [anon_sym_for] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3458), + [anon_sym_await] = ACTIONS(3458), + [anon_sym_of] = ACTIONS(3458), + [anon_sym_while] = ACTIONS(3458), + [anon_sym_do] = ACTIONS(3458), + [anon_sym_try] = ACTIONS(3458), + [anon_sym_break] = ACTIONS(3458), + [anon_sym_continue] = ACTIONS(3458), + [anon_sym_debugger] = ACTIONS(3458), + [anon_sym_return] = ACTIONS(3458), + [anon_sym_throw] = ACTIONS(3458), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym_finally] = ACTIONS(3458), + [anon_sym_yield] = ACTIONS(3458), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_LTtemplate_GT] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3458), + [anon_sym_class] = ACTIONS(3458), + [anon_sym_async] = ACTIONS(3458), + [anon_sym_function] = ACTIONS(3458), + [anon_sym_new] = ACTIONS(3458), + [anon_sym_using] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_SLASH] = ACTIONS(3458), + [anon_sym_LT] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_void] = ACTIONS(3458), + [anon_sym_delete] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3458), + [sym_number] = ACTIONS(3458), + [sym_private_property_identifier] = ACTIONS(3458), + [sym_this] = ACTIONS(3458), + [sym_super] = ACTIONS(3458), + [sym_true] = ACTIONS(3458), + [sym_false] = ACTIONS(3458), + [sym_null] = ACTIONS(3458), + [sym_undefined] = ACTIONS(3458), + [anon_sym_AT] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(3458), + [anon_sym_readonly] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3458), + [anon_sym_set] = ACTIONS(3458), + [anon_sym_declare] = ACTIONS(3458), + [anon_sym_public] = ACTIONS(3458), + [anon_sym_private] = ACTIONS(3458), + [anon_sym_protected] = ACTIONS(3458), + [anon_sym_override] = ACTIONS(3458), + [anon_sym_module] = ACTIONS(3458), + [anon_sym_any] = ACTIONS(3458), + [anon_sym_number] = ACTIONS(3458), + [anon_sym_boolean] = ACTIONS(3458), + [anon_sym_string] = ACTIONS(3458), + [anon_sym_symbol] = ACTIONS(3458), + [anon_sym_object] = ACTIONS(3458), + [anon_sym_property] = ACTIONS(3458), + [anon_sym_signal] = ACTIONS(3458), + [anon_sym_on] = ACTIONS(3458), + [anon_sym_required] = ACTIONS(3458), + [anon_sym_component] = ACTIONS(3458), + [anon_sym_abstract] = ACTIONS(3458), + [anon_sym_interface] = ACTIONS(3458), + [anon_sym_enum] = ACTIONS(3458), + [sym_html_comment] = ACTIONS(5), + }, + [1468] = { + [sym_comment] = STATE(1468), + [sym_identifier] = ACTIONS(3514), + [anon_sym_export] = ACTIONS(3514), + [anon_sym_type] = ACTIONS(3514), + [anon_sym_namespace] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_RBRACE] = ACTIONS(3514), + [anon_sym_typeof] = ACTIONS(3514), + [anon_sym_import] = ACTIONS(3514), + [anon_sym_from] = ACTIONS(3514), + [anon_sym_with] = ACTIONS(3514), + [anon_sym_var] = ACTIONS(3514), + [anon_sym_let] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3514), + [anon_sym_else] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3514), + [anon_sym_switch] = ACTIONS(3514), + [anon_sym_for] = ACTIONS(3514), + [anon_sym_LPAREN] = ACTIONS(3514), + [anon_sym_await] = ACTIONS(3514), + [anon_sym_of] = ACTIONS(3514), + [anon_sym_while] = ACTIONS(3514), + [anon_sym_do] = ACTIONS(3514), + [anon_sym_try] = ACTIONS(3514), + [anon_sym_break] = ACTIONS(3514), + [anon_sym_continue] = ACTIONS(3514), + [anon_sym_debugger] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3514), + [anon_sym_throw] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3514), + [anon_sym_yield] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_LTtemplate_GT] = ACTIONS(3514), + [anon_sym_DQUOTE] = ACTIONS(3514), + [anon_sym_SQUOTE] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_async] = ACTIONS(3514), + [anon_sym_function] = ACTIONS(3514), + [anon_sym_new] = ACTIONS(3514), + [anon_sym_using] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_SLASH] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_void] = ACTIONS(3514), + [anon_sym_delete] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3514), + [sym_number] = ACTIONS(3514), + [sym_private_property_identifier] = ACTIONS(3514), + [sym_this] = ACTIONS(3514), + [sym_super] = ACTIONS(3514), + [sym_true] = ACTIONS(3514), + [sym_false] = ACTIONS(3514), + [sym_null] = ACTIONS(3514), + [sym_undefined] = ACTIONS(3514), + [anon_sym_AT] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_readonly] = ACTIONS(3514), + [anon_sym_get] = ACTIONS(3514), + [anon_sym_set] = ACTIONS(3514), + [anon_sym_declare] = ACTIONS(3514), + [anon_sym_public] = ACTIONS(3514), + [anon_sym_private] = ACTIONS(3514), + [anon_sym_protected] = ACTIONS(3514), + [anon_sym_override] = ACTIONS(3514), + [anon_sym_module] = ACTIONS(3514), + [anon_sym_any] = ACTIONS(3514), + [anon_sym_number] = ACTIONS(3514), + [anon_sym_boolean] = ACTIONS(3514), + [anon_sym_string] = ACTIONS(3514), + [anon_sym_symbol] = ACTIONS(3514), + [anon_sym_object] = ACTIONS(3514), + [anon_sym_property] = ACTIONS(3514), + [anon_sym_signal] = ACTIONS(3514), + [anon_sym_on] = ACTIONS(3514), + [anon_sym_required] = ACTIONS(3514), + [anon_sym_component] = ACTIONS(3514), + [anon_sym_abstract] = ACTIONS(3514), + [anon_sym_interface] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), + [sym_html_comment] = ACTIONS(5), + }, + [1469] = { + [sym_comment] = STATE(1469), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_from] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_of] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_LTtemplate_GT] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2328), [anon_sym_class] = ACTIONS(2328), [anon_sym_async] = ACTIONS(2328), [anon_sym_function] = ACTIONS(2328), [anon_sym_new] = ACTIONS(2328), + [anon_sym_using] = ACTIONS(2328), [anon_sym_PLUS] = ACTIONS(2328), [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2328), [anon_sym_void] = ACTIONS(2328), [anon_sym_delete] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2330), - [anon_sym_DASH_DASH] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(2330), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2330), - [sym_number] = ACTIONS(2330), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2328), + [sym_number] = ACTIONS(2328), + [sym_private_property_identifier] = ACTIONS(2328), [sym_this] = ACTIONS(2328), [sym_super] = ACTIONS(2328), [sym_true] = ACTIONS(2328), [sym_false] = ACTIONS(2328), [sym_null] = ACTIONS(2328), [sym_undefined] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2330), + [anon_sym_AT] = ACTIONS(2328), [anon_sym_static] = ACTIONS(2328), [anon_sym_readonly] = ACTIONS(2328), [anon_sym_get] = ACTIONS(2328), @@ -95300,6 +199744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2328), [anon_sym_string] = ACTIONS(2328), [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), [anon_sym_property] = ACTIONS(2328), [anon_sym_signal] = ACTIONS(2328), [anon_sym_on] = ACTIONS(2328), @@ -95308,69 +199753,1302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2328), [anon_sym_interface] = ACTIONS(2328), [anon_sym_enum] = ACTIONS(2328), - }, - [690] = { + [sym__automatic_semicolon] = ACTIONS(2330), + [sym_html_comment] = ACTIONS(5), + }, + [1470] = { + [sym_comment] = STATE(1470), + [sym_identifier] = ACTIONS(3454), + [anon_sym_export] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_namespace] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_RBRACE] = ACTIONS(3454), + [anon_sym_typeof] = ACTIONS(3454), + [anon_sym_import] = ACTIONS(3454), + [anon_sym_from] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(3454), + [anon_sym_var] = ACTIONS(3454), + [anon_sym_let] = ACTIONS(3454), + [anon_sym_const] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_switch] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3454), + [anon_sym_await] = ACTIONS(3454), + [anon_sym_of] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_try] = ACTIONS(3454), + [anon_sym_break] = ACTIONS(3454), + [anon_sym_continue] = ACTIONS(3454), + [anon_sym_debugger] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_throw] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym_finally] = ACTIONS(3454), + [anon_sym_yield] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3454), + [anon_sym_LTtemplate_GT] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_class] = ACTIONS(3454), + [anon_sym_async] = ACTIONS(3454), + [anon_sym_function] = ACTIONS(3454), + [anon_sym_new] = ACTIONS(3454), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3454), + [anon_sym_LT] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_void] = ACTIONS(3454), + [anon_sym_delete] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3454), + [sym_number] = ACTIONS(3454), + [sym_private_property_identifier] = ACTIONS(3454), + [sym_this] = ACTIONS(3454), + [sym_super] = ACTIONS(3454), + [sym_true] = ACTIONS(3454), + [sym_false] = ACTIONS(3454), + [sym_null] = ACTIONS(3454), + [sym_undefined] = ACTIONS(3454), + [anon_sym_AT] = ACTIONS(3454), + [anon_sym_static] = ACTIONS(3454), + [anon_sym_readonly] = ACTIONS(3454), + [anon_sym_get] = ACTIONS(3454), + [anon_sym_set] = ACTIONS(3454), + [anon_sym_declare] = ACTIONS(3454), + [anon_sym_public] = ACTIONS(3454), + [anon_sym_private] = ACTIONS(3454), + [anon_sym_protected] = ACTIONS(3454), + [anon_sym_override] = ACTIONS(3454), + [anon_sym_module] = ACTIONS(3454), + [anon_sym_any] = ACTIONS(3454), + [anon_sym_number] = ACTIONS(3454), + [anon_sym_boolean] = ACTIONS(3454), + [anon_sym_string] = ACTIONS(3454), + [anon_sym_symbol] = ACTIONS(3454), + [anon_sym_object] = ACTIONS(3454), + [anon_sym_property] = ACTIONS(3454), + [anon_sym_signal] = ACTIONS(3454), + [anon_sym_on] = ACTIONS(3454), + [anon_sym_required] = ACTIONS(3454), + [anon_sym_component] = ACTIONS(3454), + [anon_sym_abstract] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), + [sym_html_comment] = ACTIONS(5), + }, + [1471] = { + [sym_comment] = STATE(1471), + [sym_identifier] = ACTIONS(2448), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_namespace] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_typeof] = ACTIONS(2448), + [anon_sym_import] = ACTIONS(2448), + [anon_sym_from] = ACTIONS(2448), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_switch] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_await] = ACTIONS(2448), + [anon_sym_of] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_do] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_debugger] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_throw] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LTtemplate_GT] = ACTIONS(2448), + [anon_sym_DQUOTE] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_class] = ACTIONS(2448), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_new] = ACTIONS(2448), + [anon_sym_using] = ACTIONS(2448), + [anon_sym_PLUS] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_SLASH] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_TILDE] = ACTIONS(2448), + [anon_sym_void] = ACTIONS(2448), + [anon_sym_delete] = ACTIONS(2448), + [anon_sym_PLUS_PLUS] = ACTIONS(2448), + [anon_sym_DASH_DASH] = ACTIONS(2448), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2448), + [sym_number] = ACTIONS(2448), + [sym_private_property_identifier] = ACTIONS(2448), + [sym_this] = ACTIONS(2448), + [sym_super] = ACTIONS(2448), + [sym_true] = ACTIONS(2448), + [sym_false] = ACTIONS(2448), + [sym_null] = ACTIONS(2448), + [sym_undefined] = ACTIONS(2448), + [anon_sym_AT] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_readonly] = ACTIONS(2448), + [anon_sym_get] = ACTIONS(2448), + [anon_sym_set] = ACTIONS(2448), + [anon_sym_declare] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_protected] = ACTIONS(2448), + [anon_sym_override] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_any] = ACTIONS(2448), + [anon_sym_number] = ACTIONS(2448), + [anon_sym_boolean] = ACTIONS(2448), + [anon_sym_string] = ACTIONS(2448), + [anon_sym_symbol] = ACTIONS(2448), + [anon_sym_object] = ACTIONS(2448), + [anon_sym_property] = ACTIONS(2448), + [anon_sym_signal] = ACTIONS(2448), + [anon_sym_on] = ACTIONS(2448), + [anon_sym_required] = ACTIONS(2448), + [anon_sym_component] = ACTIONS(2448), + [anon_sym_abstract] = ACTIONS(2448), + [anon_sym_interface] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [sym__automatic_semicolon] = ACTIONS(2700), + [sym_html_comment] = ACTIONS(5), + }, + [1472] = { + [sym_comment] = STATE(1472), + [sym_identifier] = ACTIONS(3446), + [anon_sym_export] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_namespace] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_typeof] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_from] = ACTIONS(3446), + [anon_sym_with] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(3446), + [anon_sym_const] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_await] = ACTIONS(3446), + [anon_sym_of] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_debugger] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym_finally] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_LTtemplate_GT] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_async] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_using] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_delete] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3446), + [sym_number] = ACTIONS(3446), + [sym_private_property_identifier] = ACTIONS(3446), + [sym_this] = ACTIONS(3446), + [sym_super] = ACTIONS(3446), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3446), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3446), + [anon_sym_set] = ACTIONS(3446), + [anon_sym_declare] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_protected] = ACTIONS(3446), + [anon_sym_override] = ACTIONS(3446), + [anon_sym_module] = ACTIONS(3446), + [anon_sym_any] = ACTIONS(3446), + [anon_sym_number] = ACTIONS(3446), + [anon_sym_boolean] = ACTIONS(3446), + [anon_sym_string] = ACTIONS(3446), + [anon_sym_symbol] = ACTIONS(3446), + [anon_sym_object] = ACTIONS(3446), + [anon_sym_property] = ACTIONS(3446), + [anon_sym_signal] = ACTIONS(3446), + [anon_sym_on] = ACTIONS(3446), + [anon_sym_required] = ACTIONS(3446), + [anon_sym_component] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), + [sym_html_comment] = ACTIONS(5), + }, + [1473] = { + [sym_comment] = STATE(1473), + [sym_identifier] = ACTIONS(3516), + [anon_sym_export] = ACTIONS(3516), + [anon_sym_type] = ACTIONS(3516), + [anon_sym_namespace] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3516), + [anon_sym_RBRACE] = ACTIONS(3516), + [anon_sym_typeof] = ACTIONS(3516), + [anon_sym_import] = ACTIONS(3516), + [anon_sym_from] = ACTIONS(3516), + [anon_sym_with] = ACTIONS(3516), + [anon_sym_var] = ACTIONS(3516), + [anon_sym_let] = ACTIONS(3516), + [anon_sym_const] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_else] = ACTIONS(3516), + [anon_sym_if] = ACTIONS(3516), + [anon_sym_switch] = ACTIONS(3516), + [anon_sym_for] = ACTIONS(3516), + [anon_sym_LPAREN] = ACTIONS(3516), + [anon_sym_await] = ACTIONS(3516), + [anon_sym_of] = ACTIONS(3516), + [anon_sym_while] = ACTIONS(3516), + [anon_sym_do] = ACTIONS(3516), + [anon_sym_try] = ACTIONS(3516), + [anon_sym_break] = ACTIONS(3516), + [anon_sym_continue] = ACTIONS(3516), + [anon_sym_debugger] = ACTIONS(3516), + [anon_sym_return] = ACTIONS(3516), + [anon_sym_throw] = ACTIONS(3516), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym_yield] = ACTIONS(3516), + [anon_sym_LBRACK] = ACTIONS(3516), + [anon_sym_LTtemplate_GT] = ACTIONS(3516), + [anon_sym_DQUOTE] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3516), + [anon_sym_class] = ACTIONS(3516), + [anon_sym_async] = ACTIONS(3516), + [anon_sym_function] = ACTIONS(3516), + [anon_sym_new] = ACTIONS(3516), + [anon_sym_using] = ACTIONS(3516), + [anon_sym_PLUS] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3516), + [anon_sym_SLASH] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_void] = ACTIONS(3516), + [anon_sym_delete] = ACTIONS(3516), + [anon_sym_PLUS_PLUS] = ACTIONS(3516), + [anon_sym_DASH_DASH] = ACTIONS(3516), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3516), + [sym_number] = ACTIONS(3516), + [sym_private_property_identifier] = ACTIONS(3516), + [sym_this] = ACTIONS(3516), + [sym_super] = ACTIONS(3516), + [sym_true] = ACTIONS(3516), + [sym_false] = ACTIONS(3516), + [sym_null] = ACTIONS(3516), + [sym_undefined] = ACTIONS(3516), + [anon_sym_AT] = ACTIONS(3516), + [anon_sym_static] = ACTIONS(3516), + [anon_sym_readonly] = ACTIONS(3516), + [anon_sym_get] = ACTIONS(3516), + [anon_sym_set] = ACTIONS(3516), + [anon_sym_declare] = ACTIONS(3516), + [anon_sym_public] = ACTIONS(3516), + [anon_sym_private] = ACTIONS(3516), + [anon_sym_protected] = ACTIONS(3516), + [anon_sym_override] = ACTIONS(3516), + [anon_sym_module] = ACTIONS(3516), + [anon_sym_any] = ACTIONS(3516), + [anon_sym_number] = ACTIONS(3516), + [anon_sym_boolean] = ACTIONS(3516), + [anon_sym_string] = ACTIONS(3516), + [anon_sym_symbol] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(3516), + [anon_sym_property] = ACTIONS(3516), + [anon_sym_signal] = ACTIONS(3516), + [anon_sym_on] = ACTIONS(3516), + [anon_sym_required] = ACTIONS(3516), + [anon_sym_component] = ACTIONS(3516), + [anon_sym_abstract] = ACTIONS(3516), + [anon_sym_interface] = ACTIONS(3516), + [anon_sym_enum] = ACTIONS(3516), + [sym_html_comment] = ACTIONS(5), + }, + [1474] = { + [sym_comment] = STATE(1474), + [sym_identifier] = ACTIONS(3500), + [anon_sym_export] = ACTIONS(3500), + [anon_sym_type] = ACTIONS(3500), + [anon_sym_namespace] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(3500), + [anon_sym_RBRACE] = ACTIONS(3500), + [anon_sym_typeof] = ACTIONS(3500), + [anon_sym_import] = ACTIONS(3500), + [anon_sym_from] = ACTIONS(3500), + [anon_sym_with] = ACTIONS(3500), + [anon_sym_var] = ACTIONS(3500), + [anon_sym_let] = ACTIONS(3500), + [anon_sym_const] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_else] = ACTIONS(3500), + [anon_sym_if] = ACTIONS(3500), + [anon_sym_switch] = ACTIONS(3500), + [anon_sym_for] = ACTIONS(3500), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym_await] = ACTIONS(3500), + [anon_sym_of] = ACTIONS(3500), + [anon_sym_while] = ACTIONS(3500), + [anon_sym_do] = ACTIONS(3500), + [anon_sym_try] = ACTIONS(3500), + [anon_sym_break] = ACTIONS(3500), + [anon_sym_continue] = ACTIONS(3500), + [anon_sym_debugger] = ACTIONS(3500), + [anon_sym_return] = ACTIONS(3500), + [anon_sym_throw] = ACTIONS(3500), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_yield] = ACTIONS(3500), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_LTtemplate_GT] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3500), + [anon_sym_class] = ACTIONS(3500), + [anon_sym_async] = ACTIONS(3500), + [anon_sym_function] = ACTIONS(3500), + [anon_sym_new] = ACTIONS(3500), + [anon_sym_using] = ACTIONS(3500), + [anon_sym_PLUS] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3500), + [anon_sym_void] = ACTIONS(3500), + [anon_sym_delete] = ACTIONS(3500), + [anon_sym_PLUS_PLUS] = ACTIONS(3500), + [anon_sym_DASH_DASH] = ACTIONS(3500), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3500), + [sym_number] = ACTIONS(3500), + [sym_private_property_identifier] = ACTIONS(3500), + [sym_this] = ACTIONS(3500), + [sym_super] = ACTIONS(3500), + [sym_true] = ACTIONS(3500), + [sym_false] = ACTIONS(3500), + [sym_null] = ACTIONS(3500), + [sym_undefined] = ACTIONS(3500), + [anon_sym_AT] = ACTIONS(3500), + [anon_sym_static] = ACTIONS(3500), + [anon_sym_readonly] = ACTIONS(3500), + [anon_sym_get] = ACTIONS(3500), + [anon_sym_set] = ACTIONS(3500), + [anon_sym_declare] = ACTIONS(3500), + [anon_sym_public] = ACTIONS(3500), + [anon_sym_private] = ACTIONS(3500), + [anon_sym_protected] = ACTIONS(3500), + [anon_sym_override] = ACTIONS(3500), + [anon_sym_module] = ACTIONS(3500), + [anon_sym_any] = ACTIONS(3500), + [anon_sym_number] = ACTIONS(3500), + [anon_sym_boolean] = ACTIONS(3500), + [anon_sym_string] = ACTIONS(3500), + [anon_sym_symbol] = ACTIONS(3500), + [anon_sym_object] = ACTIONS(3500), + [anon_sym_property] = ACTIONS(3500), + [anon_sym_signal] = ACTIONS(3500), + [anon_sym_on] = ACTIONS(3500), + [anon_sym_required] = ACTIONS(3500), + [anon_sym_component] = ACTIONS(3500), + [anon_sym_abstract] = ACTIONS(3500), + [anon_sym_interface] = ACTIONS(3500), + [anon_sym_enum] = ACTIONS(3500), + [sym_html_comment] = ACTIONS(5), + }, + [1475] = { + [sym_comment] = STATE(1475), + [sym_identifier] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_namespace] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_typeof] = ACTIONS(2478), + [anon_sym_import] = ACTIONS(2478), + [anon_sym_from] = ACTIONS(2478), + [anon_sym_with] = ACTIONS(2478), + [anon_sym_var] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_switch] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_await] = ACTIONS(2478), + [anon_sym_of] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_debugger] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_throw] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_yield] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_LTtemplate_GT] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_class] = ACTIONS(2478), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_new] = ACTIONS(2478), + [anon_sym_using] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_SLASH] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_void] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2478), + [sym_number] = ACTIONS(2478), + [sym_private_property_identifier] = ACTIONS(2478), + [sym_this] = ACTIONS(2478), + [sym_super] = ACTIONS(2478), + [sym_true] = ACTIONS(2478), + [sym_false] = ACTIONS(2478), + [sym_null] = ACTIONS(2478), + [sym_undefined] = ACTIONS(2478), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_override] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_any] = ACTIONS(2478), + [anon_sym_number] = ACTIONS(2478), + [anon_sym_boolean] = ACTIONS(2478), + [anon_sym_string] = ACTIONS(2478), + [anon_sym_symbol] = ACTIONS(2478), + [anon_sym_object] = ACTIONS(2478), + [anon_sym_property] = ACTIONS(2478), + [anon_sym_signal] = ACTIONS(2478), + [anon_sym_on] = ACTIONS(2478), + [anon_sym_required] = ACTIONS(2478), + [anon_sym_component] = ACTIONS(2478), + [anon_sym_abstract] = ACTIONS(2478), + [anon_sym_interface] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [sym__automatic_semicolon] = ACTIONS(2658), + [sym_html_comment] = ACTIONS(5), + }, + [1476] = { + [sym_comment] = STATE(1476), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1477] = { + [sym_comment] = STATE(1477), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1478] = { + [sym_comment] = STATE(1478), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2672), + [sym_html_comment] = ACTIONS(5), + }, + [1479] = { + [sym_comment] = STATE(1479), + [sym_identifier] = ACTIONS(3482), + [anon_sym_export] = ACTIONS(3482), + [anon_sym_type] = ACTIONS(3482), + [anon_sym_namespace] = ACTIONS(3482), + [anon_sym_LBRACE] = ACTIONS(3482), + [anon_sym_RBRACE] = ACTIONS(3482), + [anon_sym_typeof] = ACTIONS(3482), + [anon_sym_import] = ACTIONS(3482), + [anon_sym_from] = ACTIONS(3482), + [anon_sym_with] = ACTIONS(3482), + [anon_sym_var] = ACTIONS(3482), + [anon_sym_let] = ACTIONS(3482), + [anon_sym_const] = ACTIONS(3482), + [anon_sym_BANG] = ACTIONS(3482), + [anon_sym_else] = ACTIONS(3482), + [anon_sym_if] = ACTIONS(3482), + [anon_sym_switch] = ACTIONS(3482), + [anon_sym_for] = ACTIONS(3482), + [anon_sym_LPAREN] = ACTIONS(3482), + [anon_sym_await] = ACTIONS(3482), + [anon_sym_of] = ACTIONS(3482), + [anon_sym_while] = ACTIONS(3482), + [anon_sym_do] = ACTIONS(3482), + [anon_sym_try] = ACTIONS(3482), + [anon_sym_break] = ACTIONS(3482), + [anon_sym_continue] = ACTIONS(3482), + [anon_sym_debugger] = ACTIONS(3482), + [anon_sym_return] = ACTIONS(3482), + [anon_sym_throw] = ACTIONS(3482), + [anon_sym_SEMI] = ACTIONS(3482), + [anon_sym_yield] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_LTtemplate_GT] = ACTIONS(3482), + [anon_sym_DQUOTE] = ACTIONS(3482), + [anon_sym_SQUOTE] = ACTIONS(3482), + [anon_sym_class] = ACTIONS(3482), + [anon_sym_async] = ACTIONS(3482), + [anon_sym_function] = ACTIONS(3482), + [anon_sym_new] = ACTIONS(3482), + [anon_sym_using] = ACTIONS(3482), + [anon_sym_PLUS] = ACTIONS(3482), + [anon_sym_DASH] = ACTIONS(3482), + [anon_sym_SLASH] = ACTIONS(3482), + [anon_sym_LT] = ACTIONS(3482), + [anon_sym_TILDE] = ACTIONS(3482), + [anon_sym_void] = ACTIONS(3482), + [anon_sym_delete] = ACTIONS(3482), + [anon_sym_PLUS_PLUS] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(3482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3482), + [sym_number] = ACTIONS(3482), + [sym_private_property_identifier] = ACTIONS(3482), + [sym_this] = ACTIONS(3482), + [sym_super] = ACTIONS(3482), + [sym_true] = ACTIONS(3482), + [sym_false] = ACTIONS(3482), + [sym_null] = ACTIONS(3482), + [sym_undefined] = ACTIONS(3482), + [anon_sym_AT] = ACTIONS(3482), + [anon_sym_static] = ACTIONS(3482), + [anon_sym_readonly] = ACTIONS(3482), + [anon_sym_get] = ACTIONS(3482), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_declare] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3482), + [anon_sym_private] = ACTIONS(3482), + [anon_sym_protected] = ACTIONS(3482), + [anon_sym_override] = ACTIONS(3482), + [anon_sym_module] = ACTIONS(3482), + [anon_sym_any] = ACTIONS(3482), + [anon_sym_number] = ACTIONS(3482), + [anon_sym_boolean] = ACTIONS(3482), + [anon_sym_string] = ACTIONS(3482), + [anon_sym_symbol] = ACTIONS(3482), + [anon_sym_object] = ACTIONS(3482), + [anon_sym_property] = ACTIONS(3482), + [anon_sym_signal] = ACTIONS(3482), + [anon_sym_on] = ACTIONS(3482), + [anon_sym_required] = ACTIONS(3482), + [anon_sym_component] = ACTIONS(3482), + [anon_sym_abstract] = ACTIONS(3482), + [anon_sym_interface] = ACTIONS(3482), + [anon_sym_enum] = ACTIONS(3482), + [sym_html_comment] = ACTIONS(5), + }, + [1480] = { + [sym_comment] = STATE(1480), + [sym_identifier] = ACTIONS(2360), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_namespace] = ACTIONS(2360), + [anon_sym_LBRACE] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_typeof] = ACTIONS(2360), + [anon_sym_import] = ACTIONS(2360), + [anon_sym_from] = ACTIONS(2360), + [anon_sym_with] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_switch] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_await] = ACTIONS(2360), + [anon_sym_of] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_do] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_debugger] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_throw] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [anon_sym_LTtemplate_GT] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_class] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_new] = ACTIONS(2360), + [anon_sym_using] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_TILDE] = ACTIONS(2360), + [anon_sym_void] = ACTIONS(2360), + [anon_sym_delete] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2360), + [sym_number] = ACTIONS(2360), + [sym_private_property_identifier] = ACTIONS(2360), + [sym_this] = ACTIONS(2360), + [sym_super] = ACTIONS(2360), + [sym_true] = ACTIONS(2360), + [sym_false] = ACTIONS(2360), + [sym_null] = ACTIONS(2360), + [sym_undefined] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_readonly] = ACTIONS(2360), + [anon_sym_get] = ACTIONS(2360), + [anon_sym_set] = ACTIONS(2360), + [anon_sym_declare] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_protected] = ACTIONS(2360), + [anon_sym_override] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_any] = ACTIONS(2360), + [anon_sym_number] = ACTIONS(2360), + [anon_sym_boolean] = ACTIONS(2360), + [anon_sym_string] = ACTIONS(2360), + [anon_sym_symbol] = ACTIONS(2360), + [anon_sym_object] = ACTIONS(2360), + [anon_sym_property] = ACTIONS(2360), + [anon_sym_signal] = ACTIONS(2360), + [anon_sym_on] = ACTIONS(2360), + [anon_sym_required] = ACTIONS(2360), + [anon_sym_component] = ACTIONS(2360), + [anon_sym_abstract] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [sym__automatic_semicolon] = ACTIONS(2674), + [sym_html_comment] = ACTIONS(5), + }, + [1481] = { + [sym_comment] = STATE(1481), + [sym_identifier] = ACTIONS(2380), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_namespace] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2380), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_typeof] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2380), + [anon_sym_from] = ACTIONS(2380), + [anon_sym_with] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2380), + [anon_sym_else] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_switch] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_await] = ACTIONS(2380), + [anon_sym_of] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_debugger] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_LTtemplate_GT] = ACTIONS(2380), + [anon_sym_DQUOTE] = ACTIONS(2380), + [anon_sym_SQUOTE] = ACTIONS(2380), + [anon_sym_class] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_using] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_TILDE] = ACTIONS(2380), + [anon_sym_void] = ACTIONS(2380), + [anon_sym_delete] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2380), + [anon_sym_DASH_DASH] = ACTIONS(2380), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2380), + [sym_number] = ACTIONS(2380), + [sym_private_property_identifier] = ACTIONS(2380), + [sym_this] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_true] = ACTIONS(2380), + [sym_false] = ACTIONS(2380), + [sym_null] = ACTIONS(2380), + [sym_undefined] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_readonly] = ACTIONS(2380), + [anon_sym_get] = ACTIONS(2380), + [anon_sym_set] = ACTIONS(2380), + [anon_sym_declare] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_protected] = ACTIONS(2380), + [anon_sym_override] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_any] = ACTIONS(2380), + [anon_sym_number] = ACTIONS(2380), + [anon_sym_boolean] = ACTIONS(2380), + [anon_sym_string] = ACTIONS(2380), + [anon_sym_symbol] = ACTIONS(2380), + [anon_sym_object] = ACTIONS(2380), + [anon_sym_property] = ACTIONS(2380), + [anon_sym_signal] = ACTIONS(2380), + [anon_sym_on] = ACTIONS(2380), + [anon_sym_required] = ACTIONS(2380), + [anon_sym_component] = ACTIONS(2380), + [anon_sym_abstract] = ACTIONS(2380), + [anon_sym_interface] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [sym_html_comment] = ACTIONS(5), + }, + [1482] = { + [sym_comment] = STATE(1482), + [sym_identifier] = ACTIONS(3480), + [anon_sym_export] = ACTIONS(3480), + [anon_sym_type] = ACTIONS(3480), + [anon_sym_namespace] = ACTIONS(3480), + [anon_sym_LBRACE] = ACTIONS(3480), + [anon_sym_RBRACE] = ACTIONS(3480), + [anon_sym_typeof] = ACTIONS(3480), + [anon_sym_import] = ACTIONS(3480), + [anon_sym_from] = ACTIONS(3480), + [anon_sym_with] = ACTIONS(3480), + [anon_sym_var] = ACTIONS(3480), + [anon_sym_let] = ACTIONS(3480), + [anon_sym_const] = ACTIONS(3480), + [anon_sym_BANG] = ACTIONS(3480), + [anon_sym_else] = ACTIONS(3480), + [anon_sym_if] = ACTIONS(3480), + [anon_sym_switch] = ACTIONS(3480), + [anon_sym_for] = ACTIONS(3480), + [anon_sym_LPAREN] = ACTIONS(3480), + [anon_sym_await] = ACTIONS(3480), + [anon_sym_of] = ACTIONS(3480), + [anon_sym_while] = ACTIONS(3480), + [anon_sym_do] = ACTIONS(3480), + [anon_sym_try] = ACTIONS(3480), + [anon_sym_break] = ACTIONS(3480), + [anon_sym_continue] = ACTIONS(3480), + [anon_sym_debugger] = ACTIONS(3480), + [anon_sym_return] = ACTIONS(3480), + [anon_sym_throw] = ACTIONS(3480), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym_yield] = ACTIONS(3480), + [anon_sym_LBRACK] = ACTIONS(3480), + [anon_sym_LTtemplate_GT] = ACTIONS(3480), + [anon_sym_DQUOTE] = ACTIONS(3480), + [anon_sym_SQUOTE] = ACTIONS(3480), + [anon_sym_class] = ACTIONS(3480), + [anon_sym_async] = ACTIONS(3480), + [anon_sym_function] = ACTIONS(3480), + [anon_sym_new] = ACTIONS(3480), + [anon_sym_using] = ACTIONS(3480), + [anon_sym_PLUS] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_SLASH] = ACTIONS(3480), + [anon_sym_LT] = ACTIONS(3480), + [anon_sym_TILDE] = ACTIONS(3480), + [anon_sym_void] = ACTIONS(3480), + [anon_sym_delete] = ACTIONS(3480), + [anon_sym_PLUS_PLUS] = ACTIONS(3480), + [anon_sym_DASH_DASH] = ACTIONS(3480), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3480), + [sym_number] = ACTIONS(3480), + [sym_private_property_identifier] = ACTIONS(3480), + [sym_this] = ACTIONS(3480), + [sym_super] = ACTIONS(3480), + [sym_true] = ACTIONS(3480), + [sym_false] = ACTIONS(3480), + [sym_null] = ACTIONS(3480), + [sym_undefined] = ACTIONS(3480), + [anon_sym_AT] = ACTIONS(3480), + [anon_sym_static] = ACTIONS(3480), + [anon_sym_readonly] = ACTIONS(3480), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3480), + [anon_sym_declare] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3480), + [anon_sym_protected] = ACTIONS(3480), + [anon_sym_override] = ACTIONS(3480), + [anon_sym_module] = ACTIONS(3480), + [anon_sym_any] = ACTIONS(3480), + [anon_sym_number] = ACTIONS(3480), + [anon_sym_boolean] = ACTIONS(3480), + [anon_sym_string] = ACTIONS(3480), + [anon_sym_symbol] = ACTIONS(3480), + [anon_sym_object] = ACTIONS(3480), + [anon_sym_property] = ACTIONS(3480), + [anon_sym_signal] = ACTIONS(3480), + [anon_sym_on] = ACTIONS(3480), + [anon_sym_required] = ACTIONS(3480), + [anon_sym_component] = ACTIONS(3480), + [anon_sym_abstract] = ACTIONS(3480), + [anon_sym_interface] = ACTIONS(3480), + [anon_sym_enum] = ACTIONS(3480), + [sym_html_comment] = ACTIONS(5), + }, + [1483] = { + [sym_comment] = STATE(1483), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_DOT] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym_html_comment] = ACTIONS(5), + }, + [1484] = { + [sym_comment] = STATE(1484), [sym_identifier] = ACTIONS(2332), [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), [anon_sym_type] = ACTIONS(2332), [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2332), [anon_sym_typeof] = ACTIONS(2332), [anon_sym_import] = ACTIONS(2332), [anon_sym_from] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), [anon_sym_var] = ACTIONS(2332), [anon_sym_let] = ACTIONS(2332), [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2334), - [anon_sym_else] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2332), [anon_sym_if] = ACTIONS(2332), [anon_sym_switch] = ACTIONS(2332), [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_RPAREN] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2332), [anon_sym_await] = ACTIONS(2332), [anon_sym_of] = ACTIONS(2332), [anon_sym_while] = ACTIONS(2332), [anon_sym_do] = ACTIONS(2332), [anon_sym_try] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), [anon_sym_break] = ACTIONS(2332), [anon_sym_continue] = ACTIONS(2332), [anon_sym_debugger] = ACTIONS(2332), [anon_sym_return] = ACTIONS(2332), [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2334), - [anon_sym_case] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2332), [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2334), - [anon_sym_LTtemplate_GT] = ACTIONS(2334), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_LTtemplate_GT] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2332), [anon_sym_class] = ACTIONS(2332), [anon_sym_async] = ACTIONS(2332), [anon_sym_function] = ACTIONS(2332), [anon_sym_new] = ACTIONS(2332), + [anon_sym_using] = ACTIONS(2332), [anon_sym_PLUS] = ACTIONS(2332), [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2334), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), [anon_sym_void] = ACTIONS(2332), [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2334), - [anon_sym_DQUOTE] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2334), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2334), - [sym_number] = ACTIONS(2334), + [anon_sym_PLUS_PLUS] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2332), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2332), + [sym_number] = ACTIONS(2332), + [sym_private_property_identifier] = ACTIONS(2332), [sym_this] = ACTIONS(2332), [sym_super] = ACTIONS(2332), [sym_true] = ACTIONS(2332), [sym_false] = ACTIONS(2332), [sym_null] = ACTIONS(2332), [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2334), + [anon_sym_AT] = ACTIONS(2332), [anon_sym_static] = ACTIONS(2332), [anon_sym_readonly] = ACTIONS(2332), [anon_sym_get] = ACTIONS(2332), @@ -95386,6 +201064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2332), [anon_sym_string] = ACTIONS(2332), [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), [anon_sym_property] = ACTIONS(2332), [anon_sym_signal] = ACTIONS(2332), [anon_sym_on] = ACTIONS(2332), @@ -95394,241 +201073,1126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2332), [anon_sym_interface] = ACTIONS(2332), [anon_sym_enum] = ACTIONS(2332), - }, - [691] = { - [sym_identifier] = ACTIONS(1553), - [anon_sym_export] = ACTIONS(1553), - [anon_sym_default] = ACTIONS(1553), - [anon_sym_type] = ACTIONS(1553), - [anon_sym_namespace] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_typeof] = ACTIONS(1553), - [anon_sym_import] = ACTIONS(1553), - [anon_sym_from] = ACTIONS(1553), - [anon_sym_var] = ACTIONS(1553), - [anon_sym_let] = ACTIONS(1553), - [anon_sym_const] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1557), - [anon_sym_else] = ACTIONS(1553), - [anon_sym_if] = ACTIONS(1553), - [anon_sym_switch] = ACTIONS(1553), - [anon_sym_for] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_await] = ACTIONS(1553), - [anon_sym_of] = ACTIONS(1553), - [anon_sym_while] = ACTIONS(1553), - [anon_sym_do] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1553), - [anon_sym_with] = ACTIONS(1553), - [anon_sym_break] = ACTIONS(1553), - [anon_sym_continue] = ACTIONS(1553), - [anon_sym_debugger] = ACTIONS(1553), - [anon_sym_return] = ACTIONS(1553), - [anon_sym_throw] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_case] = ACTIONS(1553), - [anon_sym_yield] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_LTtemplate_GT] = ACTIONS(1557), - [anon_sym_LT] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(1553), - [anon_sym_class] = ACTIONS(1553), - [anon_sym_async] = ACTIONS(1553), - [anon_sym_function] = ACTIONS(1553), - [anon_sym_new] = ACTIONS(1553), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_TILDE] = ACTIONS(1557), - [anon_sym_void] = ACTIONS(1553), - [anon_sym_delete] = ACTIONS(1553), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1557), - [anon_sym_SQUOTE] = ACTIONS(1557), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1557), - [sym_number] = ACTIONS(1557), - [sym_this] = ACTIONS(1553), - [sym_super] = ACTIONS(1553), - [sym_true] = ACTIONS(1553), - [sym_false] = ACTIONS(1553), - [sym_null] = ACTIONS(1553), - [sym_undefined] = ACTIONS(1553), - [anon_sym_AT] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_readonly] = ACTIONS(1553), - [anon_sym_get] = ACTIONS(1553), - [anon_sym_set] = ACTIONS(1553), - [anon_sym_declare] = ACTIONS(1553), - [anon_sym_public] = ACTIONS(1553), - [anon_sym_private] = ACTIONS(1553), - [anon_sym_protected] = ACTIONS(1553), - [anon_sym_override] = ACTIONS(1553), - [anon_sym_module] = ACTIONS(1553), - [anon_sym_any] = ACTIONS(1553), - [anon_sym_number] = ACTIONS(1553), - [anon_sym_boolean] = ACTIONS(1553), - [anon_sym_string] = ACTIONS(1553), - [anon_sym_symbol] = ACTIONS(1553), - [anon_sym_property] = ACTIONS(1553), - [anon_sym_signal] = ACTIONS(1553), - [anon_sym_on] = ACTIONS(1553), - [anon_sym_required] = ACTIONS(1553), - [anon_sym_component] = ACTIONS(1553), - [anon_sym_abstract] = ACTIONS(1553), - [anon_sym_interface] = ACTIONS(1553), - [anon_sym_enum] = ACTIONS(1553), - [sym__automatic_semicolon] = ACTIONS(1561), - }, - [692] = { - [sym_identifier] = ACTIONS(2336), - [anon_sym_export] = ACTIONS(2336), - [anon_sym_default] = ACTIONS(2336), - [anon_sym_type] = ACTIONS(2336), - [anon_sym_namespace] = ACTIONS(2336), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_typeof] = ACTIONS(2336), - [anon_sym_import] = ACTIONS(2336), - [anon_sym_from] = ACTIONS(2336), - [anon_sym_var] = ACTIONS(2336), - [anon_sym_let] = ACTIONS(2336), - [anon_sym_const] = ACTIONS(2336), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_switch] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_RPAREN] = ACTIONS(2338), - [anon_sym_await] = ACTIONS(2336), - [anon_sym_of] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_do] = ACTIONS(2336), - [anon_sym_try] = ACTIONS(2336), - [anon_sym_with] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_debugger] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_throw] = ACTIONS(2336), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_case] = ACTIONS(2336), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LTtemplate_GT] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2336), - [anon_sym_SLASH] = ACTIONS(2336), - [anon_sym_class] = ACTIONS(2336), - [anon_sym_async] = ACTIONS(2336), - [anon_sym_function] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_void] = ACTIONS(2336), - [anon_sym_delete] = ACTIONS(2336), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2338), - [sym_number] = ACTIONS(2338), - [sym_this] = ACTIONS(2336), - [sym_super] = ACTIONS(2336), - [sym_true] = ACTIONS(2336), - [sym_false] = ACTIONS(2336), - [sym_null] = ACTIONS(2336), - [sym_undefined] = ACTIONS(2336), - [anon_sym_AT] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_readonly] = ACTIONS(2336), - [anon_sym_get] = ACTIONS(2336), - [anon_sym_set] = ACTIONS(2336), - [anon_sym_declare] = ACTIONS(2336), - [anon_sym_public] = ACTIONS(2336), - [anon_sym_private] = ACTIONS(2336), - [anon_sym_protected] = ACTIONS(2336), - [anon_sym_override] = ACTIONS(2336), - [anon_sym_module] = ACTIONS(2336), - [anon_sym_any] = ACTIONS(2336), - [anon_sym_number] = ACTIONS(2336), - [anon_sym_boolean] = ACTIONS(2336), - [anon_sym_string] = ACTIONS(2336), - [anon_sym_symbol] = ACTIONS(2336), - [anon_sym_property] = ACTIONS(2336), - [anon_sym_signal] = ACTIONS(2336), - [anon_sym_on] = ACTIONS(2336), - [anon_sym_required] = ACTIONS(2336), - [anon_sym_component] = ACTIONS(2336), - [anon_sym_abstract] = ACTIONS(2336), - [anon_sym_interface] = ACTIONS(2336), - [anon_sym_enum] = ACTIONS(2336), - }, - [693] = { + [sym__automatic_semicolon] = ACTIONS(2682), + [sym_html_comment] = ACTIONS(5), + }, + [1485] = { + [sym_comment] = STATE(1485), + [sym_identifier] = ACTIONS(2384), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_typeof] = ACTIONS(2384), + [anon_sym_import] = ACTIONS(2384), + [anon_sym_from] = ACTIONS(2384), + [anon_sym_with] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_switch] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2384), + [anon_sym_await] = ACTIONS(2384), + [anon_sym_of] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_do] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_debugger] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_throw] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_LTtemplate_GT] = ACTIONS(2384), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DQUOTE] = ACTIONS(2384), + [anon_sym_SQUOTE] = ACTIONS(2384), + [anon_sym_class] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_new] = ACTIONS(2384), + [anon_sym_using] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_TILDE] = ACTIONS(2384), + [anon_sym_void] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2384), + [sym_number] = ACTIONS(2384), + [sym_private_property_identifier] = ACTIONS(2384), + [sym_this] = ACTIONS(2384), + [sym_super] = ACTIONS(2384), + [sym_true] = ACTIONS(2384), + [sym_false] = ACTIONS(2384), + [sym_null] = ACTIONS(2384), + [sym_undefined] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_readonly] = ACTIONS(2384), + [anon_sym_get] = ACTIONS(2384), + [anon_sym_set] = ACTIONS(2384), + [anon_sym_declare] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_protected] = ACTIONS(2384), + [anon_sym_override] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_any] = ACTIONS(2384), + [anon_sym_number] = ACTIONS(2384), + [anon_sym_boolean] = ACTIONS(2384), + [anon_sym_string] = ACTIONS(2384), + [anon_sym_symbol] = ACTIONS(2384), + [anon_sym_object] = ACTIONS(2384), + [anon_sym_property] = ACTIONS(2384), + [anon_sym_signal] = ACTIONS(2384), + [anon_sym_on] = ACTIONS(2384), + [anon_sym_required] = ACTIONS(2384), + [anon_sym_component] = ACTIONS(2384), + [anon_sym_abstract] = ACTIONS(2384), + [anon_sym_interface] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [sym_html_comment] = ACTIONS(5), + }, + [1486] = { + [sym_comment] = STATE(1486), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1487] = { + [sym_comment] = STATE(1487), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1488] = { + [sym_comment] = STATE(1488), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1489] = { + [sym_comment] = STATE(1489), + [sym_identifier] = ACTIONS(3594), + [anon_sym_export] = ACTIONS(3594), + [anon_sym_type] = ACTIONS(3594), + [anon_sym_namespace] = ACTIONS(3594), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_RBRACE] = ACTIONS(3594), + [anon_sym_typeof] = ACTIONS(3594), + [anon_sym_import] = ACTIONS(3594), + [anon_sym_from] = ACTIONS(3594), + [anon_sym_with] = ACTIONS(3594), + [anon_sym_var] = ACTIONS(3594), + [anon_sym_let] = ACTIONS(3594), + [anon_sym_const] = ACTIONS(3594), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_else] = ACTIONS(3594), + [anon_sym_if] = ACTIONS(3594), + [anon_sym_switch] = ACTIONS(3594), + [anon_sym_for] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3594), + [anon_sym_await] = ACTIONS(3594), + [anon_sym_of] = ACTIONS(3594), + [anon_sym_while] = ACTIONS(3594), + [anon_sym_do] = ACTIONS(3594), + [anon_sym_try] = ACTIONS(3594), + [anon_sym_break] = ACTIONS(3594), + [anon_sym_continue] = ACTIONS(3594), + [anon_sym_debugger] = ACTIONS(3594), + [anon_sym_return] = ACTIONS(3594), + [anon_sym_throw] = ACTIONS(3594), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_yield] = ACTIONS(3594), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LTtemplate_GT] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [anon_sym_SQUOTE] = ACTIONS(3594), + [anon_sym_class] = ACTIONS(3594), + [anon_sym_async] = ACTIONS(3594), + [anon_sym_function] = ACTIONS(3594), + [anon_sym_new] = ACTIONS(3594), + [anon_sym_using] = ACTIONS(3594), + [anon_sym_PLUS] = ACTIONS(3594), + [anon_sym_DASH] = ACTIONS(3594), + [anon_sym_SLASH] = ACTIONS(3594), + [anon_sym_LT] = ACTIONS(3594), + [anon_sym_TILDE] = ACTIONS(3594), + [anon_sym_void] = ACTIONS(3594), + [anon_sym_delete] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_DASH_DASH] = ACTIONS(3594), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3594), + [sym_number] = ACTIONS(3594), + [sym_private_property_identifier] = ACTIONS(3594), + [sym_this] = ACTIONS(3594), + [sym_super] = ACTIONS(3594), + [sym_true] = ACTIONS(3594), + [sym_false] = ACTIONS(3594), + [sym_null] = ACTIONS(3594), + [sym_undefined] = ACTIONS(3594), + [anon_sym_AT] = ACTIONS(3594), + [anon_sym_static] = ACTIONS(3594), + [anon_sym_readonly] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(3594), + [anon_sym_set] = ACTIONS(3594), + [anon_sym_declare] = ACTIONS(3594), + [anon_sym_public] = ACTIONS(3594), + [anon_sym_private] = ACTIONS(3594), + [anon_sym_protected] = ACTIONS(3594), + [anon_sym_override] = ACTIONS(3594), + [anon_sym_module] = ACTIONS(3594), + [anon_sym_any] = ACTIONS(3594), + [anon_sym_number] = ACTIONS(3594), + [anon_sym_boolean] = ACTIONS(3594), + [anon_sym_string] = ACTIONS(3594), + [anon_sym_symbol] = ACTIONS(3594), + [anon_sym_object] = ACTIONS(3594), + [anon_sym_property] = ACTIONS(3594), + [anon_sym_signal] = ACTIONS(3594), + [anon_sym_on] = ACTIONS(3594), + [anon_sym_required] = ACTIONS(3594), + [anon_sym_component] = ACTIONS(3594), + [anon_sym_abstract] = ACTIONS(3594), + [anon_sym_interface] = ACTIONS(3594), + [anon_sym_enum] = ACTIONS(3594), + [sym_html_comment] = ACTIONS(5), + }, + [1490] = { + [sym_comment] = STATE(1490), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2692), + [sym_html_comment] = ACTIONS(5), + }, + [1491] = { + [sym_comment] = STATE(1491), + [sym_identifier] = ACTIONS(3498), + [anon_sym_export] = ACTIONS(3498), + [anon_sym_type] = ACTIONS(3498), + [anon_sym_namespace] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3498), + [anon_sym_RBRACE] = ACTIONS(3498), + [anon_sym_typeof] = ACTIONS(3498), + [anon_sym_import] = ACTIONS(3498), + [anon_sym_from] = ACTIONS(3498), + [anon_sym_with] = ACTIONS(3498), + [anon_sym_var] = ACTIONS(3498), + [anon_sym_let] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(3498), + [anon_sym_BANG] = ACTIONS(3498), + [anon_sym_else] = ACTIONS(3498), + [anon_sym_if] = ACTIONS(3498), + [anon_sym_switch] = ACTIONS(3498), + [anon_sym_for] = ACTIONS(3498), + [anon_sym_LPAREN] = ACTIONS(3498), + [anon_sym_await] = ACTIONS(3498), + [anon_sym_of] = ACTIONS(3498), + [anon_sym_while] = ACTIONS(3498), + [anon_sym_do] = ACTIONS(3498), + [anon_sym_try] = ACTIONS(3498), + [anon_sym_break] = ACTIONS(3498), + [anon_sym_continue] = ACTIONS(3498), + [anon_sym_debugger] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3498), + [anon_sym_throw] = ACTIONS(3498), + [anon_sym_SEMI] = ACTIONS(3498), + [anon_sym_yield] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3498), + [anon_sym_LTtemplate_GT] = ACTIONS(3498), + [anon_sym_DQUOTE] = ACTIONS(3498), + [anon_sym_SQUOTE] = ACTIONS(3498), + [anon_sym_class] = ACTIONS(3498), + [anon_sym_async] = ACTIONS(3498), + [anon_sym_function] = ACTIONS(3498), + [anon_sym_new] = ACTIONS(3498), + [anon_sym_using] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_SLASH] = ACTIONS(3498), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_TILDE] = ACTIONS(3498), + [anon_sym_void] = ACTIONS(3498), + [anon_sym_delete] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3498), + [sym_number] = ACTIONS(3498), + [sym_private_property_identifier] = ACTIONS(3498), + [sym_this] = ACTIONS(3498), + [sym_super] = ACTIONS(3498), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [sym_null] = ACTIONS(3498), + [sym_undefined] = ACTIONS(3498), + [anon_sym_AT] = ACTIONS(3498), + [anon_sym_static] = ACTIONS(3498), + [anon_sym_readonly] = ACTIONS(3498), + [anon_sym_get] = ACTIONS(3498), + [anon_sym_set] = ACTIONS(3498), + [anon_sym_declare] = ACTIONS(3498), + [anon_sym_public] = ACTIONS(3498), + [anon_sym_private] = ACTIONS(3498), + [anon_sym_protected] = ACTIONS(3498), + [anon_sym_override] = ACTIONS(3498), + [anon_sym_module] = ACTIONS(3498), + [anon_sym_any] = ACTIONS(3498), + [anon_sym_number] = ACTIONS(3498), + [anon_sym_boolean] = ACTIONS(3498), + [anon_sym_string] = ACTIONS(3498), + [anon_sym_symbol] = ACTIONS(3498), + [anon_sym_object] = ACTIONS(3498), + [anon_sym_property] = ACTIONS(3498), + [anon_sym_signal] = ACTIONS(3498), + [anon_sym_on] = ACTIONS(3498), + [anon_sym_required] = ACTIONS(3498), + [anon_sym_component] = ACTIONS(3498), + [anon_sym_abstract] = ACTIONS(3498), + [anon_sym_interface] = ACTIONS(3498), + [anon_sym_enum] = ACTIONS(3498), + [sym_html_comment] = ACTIONS(5), + }, + [1492] = { + [sym_comment] = STATE(1492), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_namespace] = ACTIONS(2388), + [anon_sym_LBRACE] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_typeof] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(2388), + [anon_sym_from] = ACTIONS(2388), + [anon_sym_with] = ACTIONS(2388), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_switch] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2388), + [anon_sym_await] = ACTIONS(2388), + [anon_sym_of] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_do] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_debugger] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_throw] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2388), + [anon_sym_LTtemplate_GT] = ACTIONS(2388), + [anon_sym_DQUOTE] = ACTIONS(2388), + [anon_sym_SQUOTE] = ACTIONS(2388), + [anon_sym_class] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2388), + [anon_sym_using] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_void] = ACTIONS(2388), + [anon_sym_delete] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(2388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2388), + [sym_number] = ACTIONS(2388), + [sym_private_property_identifier] = ACTIONS(2388), + [sym_this] = ACTIONS(2388), + [sym_super] = ACTIONS(2388), + [sym_true] = ACTIONS(2388), + [sym_false] = ACTIONS(2388), + [sym_null] = ACTIONS(2388), + [sym_undefined] = ACTIONS(2388), + [anon_sym_AT] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_readonly] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_declare] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_protected] = ACTIONS(2388), + [anon_sym_override] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_any] = ACTIONS(2388), + [anon_sym_number] = ACTIONS(2388), + [anon_sym_boolean] = ACTIONS(2388), + [anon_sym_string] = ACTIONS(2388), + [anon_sym_symbol] = ACTIONS(2388), + [anon_sym_object] = ACTIONS(2388), + [anon_sym_property] = ACTIONS(2388), + [anon_sym_signal] = ACTIONS(2388), + [anon_sym_on] = ACTIONS(2388), + [anon_sym_required] = ACTIONS(2388), + [anon_sym_component] = ACTIONS(2388), + [anon_sym_abstract] = ACTIONS(2388), + [anon_sym_interface] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [sym__automatic_semicolon] = ACTIONS(2646), + [sym_html_comment] = ACTIONS(5), + }, + [1493] = { + [sym_comment] = STATE(1493), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_from] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_of] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_LTtemplate_GT] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_property] = ACTIONS(2456), + [anon_sym_signal] = ACTIONS(2456), + [anon_sym_on] = ACTIONS(2456), + [anon_sym_required] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym_html_comment] = ACTIONS(5), + }, + [1494] = { + [sym_comment] = STATE(1494), + [sym_identifier] = ACTIONS(3540), + [anon_sym_export] = ACTIONS(3540), + [anon_sym_type] = ACTIONS(3540), + [anon_sym_namespace] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3540), + [anon_sym_RBRACE] = ACTIONS(3540), + [anon_sym_typeof] = ACTIONS(3540), + [anon_sym_import] = ACTIONS(3540), + [anon_sym_from] = ACTIONS(3540), + [anon_sym_with] = ACTIONS(3540), + [anon_sym_var] = ACTIONS(3540), + [anon_sym_let] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3540), + [anon_sym_else] = ACTIONS(3540), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_LPAREN] = ACTIONS(3540), + [anon_sym_await] = ACTIONS(3540), + [anon_sym_of] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_debugger] = ACTIONS(3540), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym_yield] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_LTtemplate_GT] = ACTIONS(3540), + [anon_sym_DQUOTE] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3540), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_async] = ACTIONS(3540), + [anon_sym_function] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_using] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_SLASH] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3540), + [anon_sym_void] = ACTIONS(3540), + [anon_sym_delete] = ACTIONS(3540), + [anon_sym_PLUS_PLUS] = ACTIONS(3540), + [anon_sym_DASH_DASH] = ACTIONS(3540), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3540), + [sym_number] = ACTIONS(3540), + [sym_private_property_identifier] = ACTIONS(3540), + [sym_this] = ACTIONS(3540), + [sym_super] = ACTIONS(3540), + [sym_true] = ACTIONS(3540), + [sym_false] = ACTIONS(3540), + [sym_null] = ACTIONS(3540), + [sym_undefined] = ACTIONS(3540), + [anon_sym_AT] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_readonly] = ACTIONS(3540), + [anon_sym_get] = ACTIONS(3540), + [anon_sym_set] = ACTIONS(3540), + [anon_sym_declare] = ACTIONS(3540), + [anon_sym_public] = ACTIONS(3540), + [anon_sym_private] = ACTIONS(3540), + [anon_sym_protected] = ACTIONS(3540), + [anon_sym_override] = ACTIONS(3540), + [anon_sym_module] = ACTIONS(3540), + [anon_sym_any] = ACTIONS(3540), + [anon_sym_number] = ACTIONS(3540), + [anon_sym_boolean] = ACTIONS(3540), + [anon_sym_string] = ACTIONS(3540), + [anon_sym_symbol] = ACTIONS(3540), + [anon_sym_object] = ACTIONS(3540), + [anon_sym_property] = ACTIONS(3540), + [anon_sym_signal] = ACTIONS(3540), + [anon_sym_on] = ACTIONS(3540), + [anon_sym_required] = ACTIONS(3540), + [anon_sym_component] = ACTIONS(3540), + [anon_sym_abstract] = ACTIONS(3540), + [anon_sym_interface] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), + [sym_html_comment] = ACTIONS(5), + }, + [1495] = { + [sym_comment] = STATE(1495), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2420), + [sym_html_comment] = ACTIONS(5), + }, + [1496] = { + [sym_comment] = STATE(1496), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3712), + [sym_html_comment] = ACTIONS(5), + }, + [1497] = { + [sym_comment] = STATE(1497), [sym_identifier] = ACTIONS(2340), [anon_sym_export] = ACTIONS(2340), - [anon_sym_default] = ACTIONS(2340), [anon_sym_type] = ACTIONS(2340), [anon_sym_namespace] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_RBRACE] = ACTIONS(2340), [anon_sym_typeof] = ACTIONS(2340), [anon_sym_import] = ACTIONS(2340), [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), [anon_sym_var] = ACTIONS(2340), [anon_sym_let] = ACTIONS(2340), [anon_sym_const] = ACTIONS(2340), - [anon_sym_BANG] = ACTIONS(2342), - [anon_sym_else] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), [anon_sym_if] = ACTIONS(2340), [anon_sym_switch] = ACTIONS(2340), [anon_sym_for] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2340), [anon_sym_await] = ACTIONS(2340), [anon_sym_of] = ACTIONS(2340), [anon_sym_while] = ACTIONS(2340), [anon_sym_do] = ACTIONS(2340), [anon_sym_try] = ACTIONS(2340), - [anon_sym_with] = ACTIONS(2340), [anon_sym_break] = ACTIONS(2340), [anon_sym_continue] = ACTIONS(2340), [anon_sym_debugger] = ACTIONS(2340), [anon_sym_return] = ACTIONS(2340), [anon_sym_throw] = ACTIONS(2340), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_case] = ACTIONS(2340), - [anon_sym_finally] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), [anon_sym_yield] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LTtemplate_GT] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), [anon_sym_class] = ACTIONS(2340), [anon_sym_async] = ACTIONS(2340), [anon_sym_function] = ACTIONS(2340), [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), [anon_sym_PLUS] = ACTIONS(2340), [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_TILDE] = ACTIONS(2342), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), [anon_sym_void] = ACTIONS(2340), [anon_sym_delete] = ACTIONS(2340), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2342), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2342), - [sym_number] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), [sym_this] = ACTIONS(2340), [sym_super] = ACTIONS(2340), [sym_true] = ACTIONS(2340), [sym_false] = ACTIONS(2340), [sym_null] = ACTIONS(2340), [sym_undefined] = ACTIONS(2340), - [anon_sym_AT] = ACTIONS(2342), + [anon_sym_AT] = ACTIONS(2340), [anon_sym_static] = ACTIONS(2340), [anon_sym_readonly] = ACTIONS(2340), [anon_sym_get] = ACTIONS(2340), @@ -95644,6 +202208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2340), [anon_sym_string] = ACTIONS(2340), [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), [anon_sym_property] = ACTIONS(2340), [anon_sym_signal] = ACTIONS(2340), [anon_sym_on] = ACTIONS(2340), @@ -95652,2628 +202217,10454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2340), [anon_sym_interface] = ACTIONS(2340), [anon_sym_enum] = ACTIONS(2340), - }, - [694] = { - [sym_identifier] = ACTIONS(1689), - [anon_sym_export] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1689), - [anon_sym_namespace] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_typeof] = ACTIONS(1689), - [anon_sym_import] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1689), - [anon_sym_var] = ACTIONS(1689), - [anon_sym_let] = ACTIONS(1689), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1693), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_if] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(1689), - [anon_sym_for] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_await] = ACTIONS(1689), - [anon_sym_of] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1689), - [anon_sym_do] = ACTIONS(1689), - [anon_sym_try] = ACTIONS(1689), - [anon_sym_with] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1689), - [anon_sym_continue] = ACTIONS(1689), - [anon_sym_debugger] = ACTIONS(1689), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_throw] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_case] = ACTIONS(1689), - [anon_sym_yield] = ACTIONS(1689), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_LTtemplate_GT] = ACTIONS(1693), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1689), - [anon_sym_class] = ACTIONS(1689), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(1689), - [anon_sym_new] = ACTIONS(1689), - [anon_sym_PLUS] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_TILDE] = ACTIONS(1693), - [anon_sym_void] = ACTIONS(1689), - [anon_sym_delete] = ACTIONS(1689), - [anon_sym_PLUS_PLUS] = ACTIONS(1693), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [anon_sym_SQUOTE] = ACTIONS(1693), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1693), - [sym_number] = ACTIONS(1693), - [sym_this] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_true] = ACTIONS(1689), - [sym_false] = ACTIONS(1689), - [sym_null] = ACTIONS(1689), - [sym_undefined] = ACTIONS(1689), - [anon_sym_AT] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_readonly] = ACTIONS(1689), - [anon_sym_get] = ACTIONS(1689), - [anon_sym_set] = ACTIONS(1689), - [anon_sym_declare] = ACTIONS(1689), - [anon_sym_public] = ACTIONS(1689), - [anon_sym_private] = ACTIONS(1689), - [anon_sym_protected] = ACTIONS(1689), - [anon_sym_override] = ACTIONS(1689), - [anon_sym_module] = ACTIONS(1689), - [anon_sym_any] = ACTIONS(1689), - [anon_sym_number] = ACTIONS(1689), - [anon_sym_boolean] = ACTIONS(1689), - [anon_sym_string] = ACTIONS(1689), - [anon_sym_symbol] = ACTIONS(1689), - [anon_sym_property] = ACTIONS(1689), - [anon_sym_signal] = ACTIONS(1689), - [anon_sym_on] = ACTIONS(1689), - [anon_sym_required] = ACTIONS(1689), - [anon_sym_component] = ACTIONS(1689), - [anon_sym_abstract] = ACTIONS(1689), - [anon_sym_interface] = ACTIONS(1689), - [anon_sym_enum] = ACTIONS(1689), - [sym__automatic_semicolon] = ACTIONS(1697), - }, - [695] = { - [sym_identifier] = ACTIONS(1711), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_type] = ACTIONS(1711), - [anon_sym_namespace] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_typeof] = ACTIONS(1711), - [anon_sym_import] = ACTIONS(1711), - [anon_sym_from] = ACTIONS(1711), - [anon_sym_var] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_switch] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_await] = ACTIONS(1711), - [anon_sym_of] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_with] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_debugger] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_throw] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_case] = ACTIONS(1711), - [anon_sym_yield] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_LTtemplate_GT] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_SLASH] = ACTIONS(1711), - [anon_sym_class] = ACTIONS(1711), - [anon_sym_async] = ACTIONS(1711), - [anon_sym_function] = ACTIONS(1711), - [anon_sym_new] = ACTIONS(1711), - [anon_sym_PLUS] = ACTIONS(1711), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1715), - [anon_sym_void] = ACTIONS(1711), - [anon_sym_delete] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1715), - [anon_sym_DASH_DASH] = ACTIONS(1715), - [anon_sym_DQUOTE] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1715), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1715), - [sym_number] = ACTIONS(1715), - [sym_this] = ACTIONS(1711), - [sym_super] = ACTIONS(1711), - [sym_true] = ACTIONS(1711), - [sym_false] = ACTIONS(1711), - [sym_null] = ACTIONS(1711), - [sym_undefined] = ACTIONS(1711), - [anon_sym_AT] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1711), - [anon_sym_readonly] = ACTIONS(1711), - [anon_sym_get] = ACTIONS(1711), - [anon_sym_set] = ACTIONS(1711), - [anon_sym_declare] = ACTIONS(1711), - [anon_sym_public] = ACTIONS(1711), - [anon_sym_private] = ACTIONS(1711), - [anon_sym_protected] = ACTIONS(1711), - [anon_sym_override] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_any] = ACTIONS(1711), - [anon_sym_number] = ACTIONS(1711), - [anon_sym_boolean] = ACTIONS(1711), - [anon_sym_string] = ACTIONS(1711), - [anon_sym_symbol] = ACTIONS(1711), - [anon_sym_property] = ACTIONS(1711), - [anon_sym_signal] = ACTIONS(1711), - [anon_sym_on] = ACTIONS(1711), - [anon_sym_required] = ACTIONS(1711), - [anon_sym_component] = ACTIONS(1711), - [anon_sym_abstract] = ACTIONS(1711), - [anon_sym_interface] = ACTIONS(1711), - [anon_sym_enum] = ACTIONS(1711), - [sym__automatic_semicolon] = ACTIONS(1719), - }, - [696] = { - [sym_identifier] = ACTIONS(1735), - [anon_sym_export] = ACTIONS(1735), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_type] = ACTIONS(1735), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_typeof] = ACTIONS(1735), - [anon_sym_import] = ACTIONS(1735), - [anon_sym_from] = ACTIONS(1735), - [anon_sym_var] = ACTIONS(1735), - [anon_sym_let] = ACTIONS(1735), - [anon_sym_const] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_else] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1735), - [anon_sym_switch] = ACTIONS(1735), - [anon_sym_for] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_await] = ACTIONS(1735), - [anon_sym_of] = ACTIONS(1735), - [anon_sym_while] = ACTIONS(1735), - [anon_sym_do] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1735), - [anon_sym_with] = ACTIONS(1735), - [anon_sym_break] = ACTIONS(1735), - [anon_sym_continue] = ACTIONS(1735), - [anon_sym_debugger] = ACTIONS(1735), - [anon_sym_return] = ACTIONS(1735), - [anon_sym_throw] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_case] = ACTIONS(1735), - [anon_sym_yield] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_LTtemplate_GT] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_SLASH] = ACTIONS(1735), - [anon_sym_class] = ACTIONS(1735), - [anon_sym_async] = ACTIONS(1735), - [anon_sym_function] = ACTIONS(1735), - [anon_sym_new] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1735), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1739), - [anon_sym_void] = ACTIONS(1735), - [anon_sym_delete] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1739), - [anon_sym_DASH_DASH] = ACTIONS(1739), - [anon_sym_DQUOTE] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1739), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1739), - [sym_number] = ACTIONS(1739), - [sym_this] = ACTIONS(1735), - [sym_super] = ACTIONS(1735), - [sym_true] = ACTIONS(1735), - [sym_false] = ACTIONS(1735), - [sym_null] = ACTIONS(1735), - [sym_undefined] = ACTIONS(1735), - [anon_sym_AT] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_readonly] = ACTIONS(1735), - [anon_sym_get] = ACTIONS(1735), - [anon_sym_set] = ACTIONS(1735), - [anon_sym_declare] = ACTIONS(1735), - [anon_sym_public] = ACTIONS(1735), - [anon_sym_private] = ACTIONS(1735), - [anon_sym_protected] = ACTIONS(1735), - [anon_sym_override] = ACTIONS(1735), - [anon_sym_module] = ACTIONS(1735), - [anon_sym_any] = ACTIONS(1735), - [anon_sym_number] = ACTIONS(1735), - [anon_sym_boolean] = ACTIONS(1735), - [anon_sym_string] = ACTIONS(1735), - [anon_sym_symbol] = ACTIONS(1735), - [anon_sym_property] = ACTIONS(1735), - [anon_sym_signal] = ACTIONS(1735), - [anon_sym_on] = ACTIONS(1735), - [anon_sym_required] = ACTIONS(1735), - [anon_sym_component] = ACTIONS(1735), - [anon_sym_abstract] = ACTIONS(1735), - [anon_sym_interface] = ACTIONS(1735), - [anon_sym_enum] = ACTIONS(1735), - [sym__automatic_semicolon] = ACTIONS(1743), - }, - [697] = { - [sym_identifier] = ACTIONS(1651), - [anon_sym_export] = ACTIONS(1651), - [anon_sym_default] = ACTIONS(1651), - [anon_sym_type] = ACTIONS(1651), - [anon_sym_namespace] = ACTIONS(1651), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_typeof] = ACTIONS(1651), - [anon_sym_import] = ACTIONS(1651), - [anon_sym_from] = ACTIONS(1651), - [anon_sym_var] = ACTIONS(1651), - [anon_sym_let] = ACTIONS(1651), - [anon_sym_const] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(1655), - [anon_sym_else] = ACTIONS(1651), - [anon_sym_if] = ACTIONS(1651), - [anon_sym_switch] = ACTIONS(1651), - [anon_sym_for] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_await] = ACTIONS(1651), - [anon_sym_of] = ACTIONS(1651), - [anon_sym_while] = ACTIONS(1651), - [anon_sym_do] = ACTIONS(1651), - [anon_sym_try] = ACTIONS(1651), - [anon_sym_with] = ACTIONS(1651), - [anon_sym_break] = ACTIONS(1651), - [anon_sym_continue] = ACTIONS(1651), - [anon_sym_debugger] = ACTIONS(1651), - [anon_sym_return] = ACTIONS(1651), - [anon_sym_throw] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_case] = ACTIONS(1651), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_LTtemplate_GT] = ACTIONS(1655), - [anon_sym_LT] = ACTIONS(1651), - [anon_sym_SLASH] = ACTIONS(1651), - [anon_sym_class] = ACTIONS(1651), - [anon_sym_async] = ACTIONS(1651), - [anon_sym_function] = ACTIONS(1651), - [anon_sym_new] = ACTIONS(1651), - [anon_sym_PLUS] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_void] = ACTIONS(1651), - [anon_sym_delete] = ACTIONS(1651), - [anon_sym_PLUS_PLUS] = ACTIONS(1655), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [anon_sym_SQUOTE] = ACTIONS(1655), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1655), - [sym_number] = ACTIONS(1655), - [sym_this] = ACTIONS(1651), - [sym_super] = ACTIONS(1651), - [sym_true] = ACTIONS(1651), - [sym_false] = ACTIONS(1651), - [sym_null] = ACTIONS(1651), - [sym_undefined] = ACTIONS(1651), - [anon_sym_AT] = ACTIONS(1655), - [anon_sym_static] = ACTIONS(1651), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_get] = ACTIONS(1651), - [anon_sym_set] = ACTIONS(1651), - [anon_sym_declare] = ACTIONS(1651), - [anon_sym_public] = ACTIONS(1651), - [anon_sym_private] = ACTIONS(1651), - [anon_sym_protected] = ACTIONS(1651), - [anon_sym_override] = ACTIONS(1651), - [anon_sym_module] = ACTIONS(1651), - [anon_sym_any] = ACTIONS(1651), - [anon_sym_number] = ACTIONS(1651), - [anon_sym_boolean] = ACTIONS(1651), - [anon_sym_string] = ACTIONS(1651), - [anon_sym_symbol] = ACTIONS(1651), - [anon_sym_property] = ACTIONS(1651), - [anon_sym_signal] = ACTIONS(1651), - [anon_sym_on] = ACTIONS(1651), - [anon_sym_required] = ACTIONS(1651), - [anon_sym_component] = ACTIONS(1651), - [anon_sym_abstract] = ACTIONS(1651), - [anon_sym_interface] = ACTIONS(1651), - [anon_sym_enum] = ACTIONS(1651), - [sym__automatic_semicolon] = ACTIONS(1659), - }, - [698] = { - [sym_identifier] = ACTIONS(2344), - [anon_sym_export] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2344), - [anon_sym_type] = ACTIONS(2344), - [anon_sym_namespace] = ACTIONS(2344), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_RBRACE] = ACTIONS(2346), - [anon_sym_typeof] = ACTIONS(2344), - [anon_sym_import] = ACTIONS(2344), - [anon_sym_from] = ACTIONS(2344), - [anon_sym_var] = ACTIONS(2344), - [anon_sym_let] = ACTIONS(2344), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_BANG] = ACTIONS(2346), - [anon_sym_else] = ACTIONS(2344), - [anon_sym_if] = ACTIONS(2344), - [anon_sym_switch] = ACTIONS(2344), - [anon_sym_for] = ACTIONS(2344), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_await] = ACTIONS(2344), - [anon_sym_of] = ACTIONS(2344), - [anon_sym_while] = ACTIONS(2344), - [anon_sym_do] = ACTIONS(2344), - [anon_sym_try] = ACTIONS(2344), - [anon_sym_with] = ACTIONS(2344), - [anon_sym_break] = ACTIONS(2344), - [anon_sym_continue] = ACTIONS(2344), - [anon_sym_debugger] = ACTIONS(2344), - [anon_sym_return] = ACTIONS(2344), - [anon_sym_throw] = ACTIONS(2344), - [anon_sym_SEMI] = ACTIONS(2346), - [anon_sym_case] = ACTIONS(2344), - [anon_sym_finally] = ACTIONS(2344), - [anon_sym_yield] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2346), - [anon_sym_LTtemplate_GT] = ACTIONS(2346), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_class] = ACTIONS(2344), - [anon_sym_async] = ACTIONS(2344), - [anon_sym_function] = ACTIONS(2344), - [anon_sym_new] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_TILDE] = ACTIONS(2346), - [anon_sym_void] = ACTIONS(2344), - [anon_sym_delete] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2346), - [anon_sym_DASH_DASH] = ACTIONS(2346), - [anon_sym_DQUOTE] = ACTIONS(2346), - [anon_sym_SQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2346), - [sym_number] = ACTIONS(2346), - [sym_this] = ACTIONS(2344), - [sym_super] = ACTIONS(2344), - [sym_true] = ACTIONS(2344), - [sym_false] = ACTIONS(2344), - [sym_null] = ACTIONS(2344), - [sym_undefined] = ACTIONS(2344), - [anon_sym_AT] = ACTIONS(2346), - [anon_sym_static] = ACTIONS(2344), - [anon_sym_readonly] = ACTIONS(2344), - [anon_sym_get] = ACTIONS(2344), - [anon_sym_set] = ACTIONS(2344), - [anon_sym_declare] = ACTIONS(2344), - [anon_sym_public] = ACTIONS(2344), - [anon_sym_private] = ACTIONS(2344), - [anon_sym_protected] = ACTIONS(2344), - [anon_sym_override] = ACTIONS(2344), - [anon_sym_module] = ACTIONS(2344), - [anon_sym_any] = ACTIONS(2344), - [anon_sym_number] = ACTIONS(2344), - [anon_sym_boolean] = ACTIONS(2344), - [anon_sym_string] = ACTIONS(2344), - [anon_sym_symbol] = ACTIONS(2344), - [anon_sym_property] = ACTIONS(2344), - [anon_sym_signal] = ACTIONS(2344), - [anon_sym_on] = ACTIONS(2344), - [anon_sym_required] = ACTIONS(2344), - [anon_sym_component] = ACTIONS(2344), - [anon_sym_abstract] = ACTIONS(2344), - [anon_sym_interface] = ACTIONS(2344), - [anon_sym_enum] = ACTIONS(2344), - }, - [699] = { - [sym_identifier] = ACTIONS(1577), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_namespace] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_typeof] = ACTIONS(1577), - [anon_sym_import] = ACTIONS(1577), - [anon_sym_from] = ACTIONS(1577), - [anon_sym_var] = ACTIONS(1577), - [anon_sym_let] = ACTIONS(1577), - [anon_sym_const] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1581), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_if] = ACTIONS(1577), - [anon_sym_switch] = ACTIONS(1577), - [anon_sym_for] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_of] = ACTIONS(1577), - [anon_sym_while] = ACTIONS(1577), - [anon_sym_do] = ACTIONS(1577), - [anon_sym_try] = ACTIONS(1577), - [anon_sym_with] = ACTIONS(1577), - [anon_sym_break] = ACTIONS(1577), - [anon_sym_continue] = ACTIONS(1577), - [anon_sym_debugger] = ACTIONS(1577), - [anon_sym_return] = ACTIONS(1577), - [anon_sym_throw] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_case] = ACTIONS(1577), - [anon_sym_yield] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_LTtemplate_GT] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_SLASH] = ACTIONS(1577), - [anon_sym_class] = ACTIONS(1577), - [anon_sym_async] = ACTIONS(1577), - [anon_sym_function] = ACTIONS(1577), - [anon_sym_new] = ACTIONS(1577), - [anon_sym_PLUS] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_TILDE] = ACTIONS(1581), - [anon_sym_void] = ACTIONS(1577), - [anon_sym_delete] = ACTIONS(1577), - [anon_sym_PLUS_PLUS] = ACTIONS(1581), - [anon_sym_DASH_DASH] = ACTIONS(1581), - [anon_sym_DQUOTE] = ACTIONS(1581), - [anon_sym_SQUOTE] = ACTIONS(1581), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1581), - [sym_number] = ACTIONS(1581), - [sym_this] = ACTIONS(1577), - [sym_super] = ACTIONS(1577), - [sym_true] = ACTIONS(1577), - [sym_false] = ACTIONS(1577), - [sym_null] = ACTIONS(1577), - [sym_undefined] = ACTIONS(1577), - [anon_sym_AT] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_property] = ACTIONS(1577), - [anon_sym_signal] = ACTIONS(1577), - [anon_sym_on] = ACTIONS(1577), - [anon_sym_required] = ACTIONS(1577), - [anon_sym_component] = ACTIONS(1577), - [anon_sym_abstract] = ACTIONS(1577), - [anon_sym_interface] = ACTIONS(1577), - [anon_sym_enum] = ACTIONS(1577), - [sym__automatic_semicolon] = ACTIONS(1585), - }, - [700] = { - [sym_identifier] = ACTIONS(1725), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_default] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_namespace] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_typeof] = ACTIONS(1725), - [anon_sym_import] = ACTIONS(1725), - [anon_sym_from] = ACTIONS(1725), - [anon_sym_var] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_switch] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_await] = ACTIONS(1725), - [anon_sym_of] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_with] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_debugger] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_throw] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1729), - [anon_sym_case] = ACTIONS(1725), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_LTtemplate_GT] = ACTIONS(1729), - [anon_sym_LT] = ACTIONS(1725), - [anon_sym_SLASH] = ACTIONS(1725), - [anon_sym_class] = ACTIONS(1725), - [anon_sym_async] = ACTIONS(1725), - [anon_sym_function] = ACTIONS(1725), - [anon_sym_new] = ACTIONS(1725), - [anon_sym_PLUS] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1725), - [anon_sym_delete] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1729), - [anon_sym_DASH_DASH] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1729), - [anon_sym_SQUOTE] = ACTIONS(1729), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1729), - [sym_number] = ACTIONS(1729), - [sym_this] = ACTIONS(1725), - [sym_super] = ACTIONS(1725), - [sym_true] = ACTIONS(1725), - [sym_false] = ACTIONS(1725), - [sym_null] = ACTIONS(1725), - [sym_undefined] = ACTIONS(1725), - [anon_sym_AT] = ACTIONS(1729), - [anon_sym_static] = ACTIONS(1725), - [anon_sym_readonly] = ACTIONS(1725), - [anon_sym_get] = ACTIONS(1725), - [anon_sym_set] = ACTIONS(1725), - [anon_sym_declare] = ACTIONS(1725), - [anon_sym_public] = ACTIONS(1725), - [anon_sym_private] = ACTIONS(1725), - [anon_sym_protected] = ACTIONS(1725), - [anon_sym_override] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_any] = ACTIONS(1725), - [anon_sym_number] = ACTIONS(1725), - [anon_sym_boolean] = ACTIONS(1725), - [anon_sym_string] = ACTIONS(1725), - [anon_sym_symbol] = ACTIONS(1725), - [anon_sym_property] = ACTIONS(1725), - [anon_sym_signal] = ACTIONS(1725), - [anon_sym_on] = ACTIONS(1725), - [anon_sym_required] = ACTIONS(1725), - [anon_sym_component] = ACTIONS(1725), - [anon_sym_abstract] = ACTIONS(1725), - [anon_sym_interface] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [sym__automatic_semicolon] = ACTIONS(1733), - }, - [701] = { - [sym_statement_block] = STATE(706), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_type] = ACTIONS(1489), - [anon_sym_namespace] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1489), - [anon_sym_import] = ACTIONS(1489), - [anon_sym_from] = ACTIONS(1489), - [anon_sym_var] = ACTIONS(1489), - [anon_sym_let] = ACTIONS(1489), - [anon_sym_const] = ACTIONS(1489), - [anon_sym_BANG] = ACTIONS(1493), - [anon_sym_else] = ACTIONS(1489), - [anon_sym_if] = ACTIONS(1489), - [anon_sym_switch] = ACTIONS(1489), - [anon_sym_for] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_await] = ACTIONS(1489), - [anon_sym_of] = ACTIONS(1489), - [anon_sym_while] = ACTIONS(1489), - [anon_sym_do] = ACTIONS(1489), - [anon_sym_try] = ACTIONS(1489), - [anon_sym_with] = ACTIONS(1489), - [anon_sym_break] = ACTIONS(1489), - [anon_sym_continue] = ACTIONS(1489), - [anon_sym_debugger] = ACTIONS(1489), - [anon_sym_return] = ACTIONS(1489), - [anon_sym_throw] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1489), - [anon_sym_yield] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LTtemplate_GT] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1489), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_class] = ACTIONS(1489), - [anon_sym_async] = ACTIONS(1489), - [anon_sym_function] = ACTIONS(1489), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_TILDE] = ACTIONS(1493), - [anon_sym_void] = ACTIONS(1489), - [anon_sym_delete] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_SQUOTE] = ACTIONS(1493), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1493), - [sym_number] = ACTIONS(1493), - [sym_this] = ACTIONS(1489), - [sym_super] = ACTIONS(1489), - [sym_true] = ACTIONS(1489), - [sym_false] = ACTIONS(1489), - [sym_null] = ACTIONS(1489), - [sym_undefined] = ACTIONS(1489), - [anon_sym_AT] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_readonly] = ACTIONS(1489), - [anon_sym_get] = ACTIONS(1489), - [anon_sym_set] = ACTIONS(1489), - [anon_sym_declare] = ACTIONS(1489), - [anon_sym_public] = ACTIONS(1489), - [anon_sym_private] = ACTIONS(1489), - [anon_sym_protected] = ACTIONS(1489), - [anon_sym_override] = ACTIONS(1489), - [anon_sym_module] = ACTIONS(1489), - [anon_sym_any] = ACTIONS(1489), - [anon_sym_number] = ACTIONS(1489), - [anon_sym_boolean] = ACTIONS(1489), - [anon_sym_string] = ACTIONS(1489), - [anon_sym_symbol] = ACTIONS(1489), - [anon_sym_property] = ACTIONS(1489), - [anon_sym_signal] = ACTIONS(1489), - [anon_sym_on] = ACTIONS(1489), - [anon_sym_required] = ACTIONS(1489), - [anon_sym_component] = ACTIONS(1489), - [anon_sym_abstract] = ACTIONS(1489), - [anon_sym_interface] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - }, - [702] = { - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_namespace] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_typeof] = ACTIONS(1497), - [anon_sym_import] = ACTIONS(1497), - [anon_sym_from] = ACTIONS(1497), - [anon_sym_var] = ACTIONS(1497), - [anon_sym_let] = ACTIONS(1497), - [anon_sym_const] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_else] = ACTIONS(1497), - [anon_sym_if] = ACTIONS(1497), - [anon_sym_switch] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_await] = ACTIONS(1497), - [anon_sym_of] = ACTIONS(1497), - [anon_sym_while] = ACTIONS(1497), - [anon_sym_do] = ACTIONS(1497), - [anon_sym_try] = ACTIONS(1497), - [anon_sym_with] = ACTIONS(1497), - [anon_sym_break] = ACTIONS(1497), - [anon_sym_continue] = ACTIONS(1497), - [anon_sym_debugger] = ACTIONS(1497), - [anon_sym_return] = ACTIONS(1497), - [anon_sym_throw] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_case] = ACTIONS(1497), - [anon_sym_yield] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_LTtemplate_GT] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_class] = ACTIONS(1497), - [anon_sym_async] = ACTIONS(1497), - [anon_sym_function] = ACTIONS(1497), - [anon_sym_new] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_void] = ACTIONS(1497), - [anon_sym_delete] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1503), - [sym_number] = ACTIONS(1503), - [sym_this] = ACTIONS(1497), - [sym_super] = ACTIONS(1497), - [sym_true] = ACTIONS(1497), - [sym_false] = ACTIONS(1497), - [sym_null] = ACTIONS(1497), - [sym_undefined] = ACTIONS(1497), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_readonly] = ACTIONS(1497), - [anon_sym_get] = ACTIONS(1497), - [anon_sym_set] = ACTIONS(1497), - [anon_sym_declare] = ACTIONS(1497), - [anon_sym_public] = ACTIONS(1497), - [anon_sym_private] = ACTIONS(1497), - [anon_sym_protected] = ACTIONS(1497), - [anon_sym_override] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_any] = ACTIONS(1497), - [anon_sym_number] = ACTIONS(1497), - [anon_sym_boolean] = ACTIONS(1497), - [anon_sym_string] = ACTIONS(1497), - [anon_sym_symbol] = ACTIONS(1497), - [anon_sym_property] = ACTIONS(1497), - [anon_sym_signal] = ACTIONS(1497), - [anon_sym_on] = ACTIONS(1497), - [anon_sym_required] = ACTIONS(1497), - [anon_sym_component] = ACTIONS(1497), - [anon_sym_abstract] = ACTIONS(1497), - [anon_sym_interface] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [sym__automatic_semicolon] = ACTIONS(2348), - }, - [703] = { - [sym_identifier] = ACTIONS(1537), - [anon_sym_export] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_typeof] = ACTIONS(1537), - [anon_sym_import] = ACTIONS(1537), - [anon_sym_from] = ACTIONS(1537), - [anon_sym_var] = ACTIONS(1537), - [anon_sym_let] = ACTIONS(1537), - [anon_sym_const] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1537), - [anon_sym_if] = ACTIONS(1537), - [anon_sym_switch] = ACTIONS(1537), - [anon_sym_for] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_await] = ACTIONS(1537), - [anon_sym_of] = ACTIONS(1537), - [anon_sym_while] = ACTIONS(1537), - [anon_sym_do] = ACTIONS(1537), - [anon_sym_try] = ACTIONS(1537), - [anon_sym_with] = ACTIONS(1537), - [anon_sym_break] = ACTIONS(1537), - [anon_sym_continue] = ACTIONS(1537), - [anon_sym_debugger] = ACTIONS(1537), - [anon_sym_return] = ACTIONS(1537), - [anon_sym_throw] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_case] = ACTIONS(1537), - [anon_sym_yield] = ACTIONS(1537), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LTtemplate_GT] = ACTIONS(1539), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_class] = ACTIONS(1537), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_function] = ACTIONS(1537), - [anon_sym_new] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_TILDE] = ACTIONS(1539), - [anon_sym_void] = ACTIONS(1537), - [anon_sym_delete] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [anon_sym_SQUOTE] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1539), - [sym_number] = ACTIONS(1539), - [sym_this] = ACTIONS(1537), - [sym_super] = ACTIONS(1537), - [sym_true] = ACTIONS(1537), - [sym_false] = ACTIONS(1537), - [sym_null] = ACTIONS(1537), - [sym_undefined] = ACTIONS(1537), - [anon_sym_AT] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_readonly] = ACTIONS(1537), - [anon_sym_get] = ACTIONS(1537), - [anon_sym_set] = ACTIONS(1537), - [anon_sym_declare] = ACTIONS(1537), - [anon_sym_public] = ACTIONS(1537), - [anon_sym_private] = ACTIONS(1537), - [anon_sym_protected] = ACTIONS(1537), - [anon_sym_override] = ACTIONS(1537), - [anon_sym_module] = ACTIONS(1537), - [anon_sym_any] = ACTIONS(1537), - [anon_sym_number] = ACTIONS(1537), - [anon_sym_boolean] = ACTIONS(1537), - [anon_sym_string] = ACTIONS(1537), - [anon_sym_symbol] = ACTIONS(1537), - [anon_sym_property] = ACTIONS(1537), - [anon_sym_signal] = ACTIONS(1537), - [anon_sym_on] = ACTIONS(1537), - [anon_sym_required] = ACTIONS(1537), - [anon_sym_component] = ACTIONS(1537), - [anon_sym_abstract] = ACTIONS(1537), - [anon_sym_interface] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [sym__automatic_semicolon] = ACTIONS(1539), - }, - [704] = { - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2352), - [anon_sym_RBRACE] = ACTIONS(2352), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2352), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2352), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2352), - [anon_sym_LTtemplate_GT] = ACTIONS(2352), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2352), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2352), - [anon_sym_DASH_DASH] = ACTIONS(2352), - [anon_sym_DQUOTE] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(2352), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2352), - [sym_number] = ACTIONS(2352), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2352), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - }, - [705] = { - [sym_identifier] = ACTIONS(2354), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_default] = ACTIONS(2354), - [anon_sym_type] = ACTIONS(2354), - [anon_sym_namespace] = ACTIONS(2354), + [sym__automatic_semicolon] = ACTIONS(2666), + [sym_html_comment] = ACTIONS(5), + }, + [1498] = { + [sym_comment] = STATE(1498), + [sym_identifier] = ACTIONS(3530), + [anon_sym_export] = ACTIONS(3530), + [anon_sym_type] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(3530), + [anon_sym_LBRACE] = ACTIONS(3530), + [anon_sym_RBRACE] = ACTIONS(3530), + [anon_sym_typeof] = ACTIONS(3530), + [anon_sym_import] = ACTIONS(3530), + [anon_sym_from] = ACTIONS(3530), + [anon_sym_with] = ACTIONS(3530), + [anon_sym_var] = ACTIONS(3530), + [anon_sym_let] = ACTIONS(3530), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_BANG] = ACTIONS(3530), + [anon_sym_else] = ACTIONS(3530), + [anon_sym_if] = ACTIONS(3530), + [anon_sym_switch] = ACTIONS(3530), + [anon_sym_for] = ACTIONS(3530), + [anon_sym_LPAREN] = ACTIONS(3530), + [anon_sym_await] = ACTIONS(3530), + [anon_sym_of] = ACTIONS(3530), + [anon_sym_while] = ACTIONS(3530), + [anon_sym_do] = ACTIONS(3530), + [anon_sym_try] = ACTIONS(3530), + [anon_sym_break] = ACTIONS(3530), + [anon_sym_continue] = ACTIONS(3530), + [anon_sym_debugger] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3530), + [anon_sym_throw] = ACTIONS(3530), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym_yield] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_LTtemplate_GT] = ACTIONS(3530), + [anon_sym_DQUOTE] = ACTIONS(3530), + [anon_sym_SQUOTE] = ACTIONS(3530), + [anon_sym_class] = ACTIONS(3530), + [anon_sym_async] = ACTIONS(3530), + [anon_sym_function] = ACTIONS(3530), + [anon_sym_new] = ACTIONS(3530), + [anon_sym_using] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3530), + [anon_sym_DASH] = ACTIONS(3530), + [anon_sym_SLASH] = ACTIONS(3530), + [anon_sym_LT] = ACTIONS(3530), + [anon_sym_TILDE] = ACTIONS(3530), + [anon_sym_void] = ACTIONS(3530), + [anon_sym_delete] = ACTIONS(3530), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3530), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3530), + [sym_number] = ACTIONS(3530), + [sym_private_property_identifier] = ACTIONS(3530), + [sym_this] = ACTIONS(3530), + [sym_super] = ACTIONS(3530), + [sym_true] = ACTIONS(3530), + [sym_false] = ACTIONS(3530), + [sym_null] = ACTIONS(3530), + [sym_undefined] = ACTIONS(3530), + [anon_sym_AT] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(3530), + [anon_sym_readonly] = ACTIONS(3530), + [anon_sym_get] = ACTIONS(3530), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_declare] = ACTIONS(3530), + [anon_sym_public] = ACTIONS(3530), + [anon_sym_private] = ACTIONS(3530), + [anon_sym_protected] = ACTIONS(3530), + [anon_sym_override] = ACTIONS(3530), + [anon_sym_module] = ACTIONS(3530), + [anon_sym_any] = ACTIONS(3530), + [anon_sym_number] = ACTIONS(3530), + [anon_sym_boolean] = ACTIONS(3530), + [anon_sym_string] = ACTIONS(3530), + [anon_sym_symbol] = ACTIONS(3530), + [anon_sym_object] = ACTIONS(3530), + [anon_sym_property] = ACTIONS(3530), + [anon_sym_signal] = ACTIONS(3530), + [anon_sym_on] = ACTIONS(3530), + [anon_sym_required] = ACTIONS(3530), + [anon_sym_component] = ACTIONS(3530), + [anon_sym_abstract] = ACTIONS(3530), + [anon_sym_interface] = ACTIONS(3530), + [anon_sym_enum] = ACTIONS(3530), + [sym_html_comment] = ACTIONS(5), + }, + [1499] = { + [sym_comment] = STATE(1499), + [sym_identifier] = ACTIONS(3668), + [anon_sym_export] = ACTIONS(3668), + [anon_sym_type] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_typeof] = ACTIONS(3668), + [anon_sym_import] = ACTIONS(3668), + [anon_sym_from] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [anon_sym_var] = ACTIONS(3668), + [anon_sym_let] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_await] = ACTIONS(3668), + [anon_sym_of] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_debugger] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_yield] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_LTtemplate_GT] = ACTIONS(3668), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_async] = ACTIONS(3668), + [anon_sym_function] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_void] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3668), + [sym_number] = ACTIONS(3668), + [sym_private_property_identifier] = ACTIONS(3668), + [sym_this] = ACTIONS(3668), + [sym_super] = ACTIONS(3668), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [sym_null] = ACTIONS(3668), + [sym_undefined] = ACTIONS(3668), + [anon_sym_AT] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_readonly] = ACTIONS(3668), + [anon_sym_get] = ACTIONS(3668), + [anon_sym_set] = ACTIONS(3668), + [anon_sym_declare] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_override] = ACTIONS(3668), + [anon_sym_module] = ACTIONS(3668), + [anon_sym_any] = ACTIONS(3668), + [anon_sym_number] = ACTIONS(3668), + [anon_sym_boolean] = ACTIONS(3668), + [anon_sym_string] = ACTIONS(3668), + [anon_sym_symbol] = ACTIONS(3668), + [anon_sym_object] = ACTIONS(3668), + [anon_sym_property] = ACTIONS(3668), + [anon_sym_signal] = ACTIONS(3668), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_required] = ACTIONS(3668), + [anon_sym_component] = ACTIONS(3668), + [anon_sym_abstract] = ACTIONS(3668), + [anon_sym_interface] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [sym_html_comment] = ACTIONS(5), + }, + [1500] = { + [sym_comment] = STATE(1500), + [sym_identifier] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_typeof] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_from] = ACTIONS(3646), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_var] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_else] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_await] = ACTIONS(3646), + [anon_sym_of] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_debugger] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LTtemplate_GT] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_async] = ACTIONS(3646), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_SLASH] = ACTIONS(3646), + [anon_sym_LT] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_void] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3646), + [sym_number] = ACTIONS(3646), + [sym_private_property_identifier] = ACTIONS(3646), + [sym_this] = ACTIONS(3646), + [sym_super] = ACTIONS(3646), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [sym_null] = ACTIONS(3646), + [sym_undefined] = ACTIONS(3646), + [anon_sym_AT] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_readonly] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(3646), + [anon_sym_set] = ACTIONS(3646), + [anon_sym_declare] = ACTIONS(3646), + [anon_sym_public] = ACTIONS(3646), + [anon_sym_private] = ACTIONS(3646), + [anon_sym_protected] = ACTIONS(3646), + [anon_sym_override] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_any] = ACTIONS(3646), + [anon_sym_number] = ACTIONS(3646), + [anon_sym_boolean] = ACTIONS(3646), + [anon_sym_string] = ACTIONS(3646), + [anon_sym_symbol] = ACTIONS(3646), + [anon_sym_object] = ACTIONS(3646), + [anon_sym_property] = ACTIONS(3646), + [anon_sym_signal] = ACTIONS(3646), + [anon_sym_on] = ACTIONS(3646), + [anon_sym_required] = ACTIONS(3646), + [anon_sym_component] = ACTIONS(3646), + [anon_sym_abstract] = ACTIONS(3646), + [anon_sym_interface] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), + [sym_html_comment] = ACTIONS(5), + }, + [1501] = { + [sym_comment] = STATE(1501), + [sym_identifier] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_type] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_typeof] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_from] = ACTIONS(3564), + [anon_sym_with] = ACTIONS(3564), + [anon_sym_var] = ACTIONS(3564), + [anon_sym_let] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_else] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_await] = ACTIONS(3564), + [anon_sym_of] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_debugger] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym_yield] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LTtemplate_GT] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_async] = ACTIONS(3564), + [anon_sym_function] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_void] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3564), + [sym_number] = ACTIONS(3564), + [sym_private_property_identifier] = ACTIONS(3564), + [sym_this] = ACTIONS(3564), + [sym_super] = ACTIONS(3564), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_undefined] = ACTIONS(3564), + [anon_sym_AT] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_readonly] = ACTIONS(3564), + [anon_sym_get] = ACTIONS(3564), + [anon_sym_set] = ACTIONS(3564), + [anon_sym_declare] = ACTIONS(3564), + [anon_sym_public] = ACTIONS(3564), + [anon_sym_private] = ACTIONS(3564), + [anon_sym_protected] = ACTIONS(3564), + [anon_sym_override] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_any] = ACTIONS(3564), + [anon_sym_number] = ACTIONS(3564), + [anon_sym_boolean] = ACTIONS(3564), + [anon_sym_string] = ACTIONS(3564), + [anon_sym_symbol] = ACTIONS(3564), + [anon_sym_object] = ACTIONS(3564), + [anon_sym_property] = ACTIONS(3564), + [anon_sym_signal] = ACTIONS(3564), + [anon_sym_on] = ACTIONS(3564), + [anon_sym_required] = ACTIONS(3564), + [anon_sym_component] = ACTIONS(3564), + [anon_sym_abstract] = ACTIONS(3564), + [anon_sym_interface] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), + [sym_html_comment] = ACTIONS(5), + }, + [1502] = { + [sym_comment] = STATE(1502), + [sym_identifier] = ACTIONS(3488), + [anon_sym_export] = ACTIONS(3488), + [anon_sym_type] = ACTIONS(3488), + [anon_sym_namespace] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_RBRACE] = ACTIONS(3488), + [anon_sym_typeof] = ACTIONS(3488), + [anon_sym_import] = ACTIONS(3488), + [anon_sym_from] = ACTIONS(3488), + [anon_sym_with] = ACTIONS(3488), + [anon_sym_var] = ACTIONS(3488), + [anon_sym_let] = ACTIONS(3488), + [anon_sym_const] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_else] = ACTIONS(3488), + [anon_sym_if] = ACTIONS(3488), + [anon_sym_switch] = ACTIONS(3488), + [anon_sym_for] = ACTIONS(3488), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_await] = ACTIONS(3488), + [anon_sym_of] = ACTIONS(3488), + [anon_sym_while] = ACTIONS(3488), + [anon_sym_do] = ACTIONS(3488), + [anon_sym_try] = ACTIONS(3488), + [anon_sym_break] = ACTIONS(3488), + [anon_sym_continue] = ACTIONS(3488), + [anon_sym_debugger] = ACTIONS(3488), + [anon_sym_return] = ACTIONS(3488), + [anon_sym_throw] = ACTIONS(3488), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym_yield] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3488), + [anon_sym_LTtemplate_GT] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [anon_sym_SQUOTE] = ACTIONS(3488), + [anon_sym_class] = ACTIONS(3488), + [anon_sym_async] = ACTIONS(3488), + [anon_sym_function] = ACTIONS(3488), + [anon_sym_new] = ACTIONS(3488), + [anon_sym_using] = ACTIONS(3488), + [anon_sym_PLUS] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3488), + [anon_sym_SLASH] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_void] = ACTIONS(3488), + [anon_sym_delete] = ACTIONS(3488), + [anon_sym_PLUS_PLUS] = ACTIONS(3488), + [anon_sym_DASH_DASH] = ACTIONS(3488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3488), + [sym_number] = ACTIONS(3488), + [sym_private_property_identifier] = ACTIONS(3488), + [sym_this] = ACTIONS(3488), + [sym_super] = ACTIONS(3488), + [sym_true] = ACTIONS(3488), + [sym_false] = ACTIONS(3488), + [sym_null] = ACTIONS(3488), + [sym_undefined] = ACTIONS(3488), + [anon_sym_AT] = ACTIONS(3488), + [anon_sym_static] = ACTIONS(3488), + [anon_sym_readonly] = ACTIONS(3488), + [anon_sym_get] = ACTIONS(3488), + [anon_sym_set] = ACTIONS(3488), + [anon_sym_declare] = ACTIONS(3488), + [anon_sym_public] = ACTIONS(3488), + [anon_sym_private] = ACTIONS(3488), + [anon_sym_protected] = ACTIONS(3488), + [anon_sym_override] = ACTIONS(3488), + [anon_sym_module] = ACTIONS(3488), + [anon_sym_any] = ACTIONS(3488), + [anon_sym_number] = ACTIONS(3488), + [anon_sym_boolean] = ACTIONS(3488), + [anon_sym_string] = ACTIONS(3488), + [anon_sym_symbol] = ACTIONS(3488), + [anon_sym_object] = ACTIONS(3488), + [anon_sym_property] = ACTIONS(3488), + [anon_sym_signal] = ACTIONS(3488), + [anon_sym_on] = ACTIONS(3488), + [anon_sym_required] = ACTIONS(3488), + [anon_sym_component] = ACTIONS(3488), + [anon_sym_abstract] = ACTIONS(3488), + [anon_sym_interface] = ACTIONS(3488), + [anon_sym_enum] = ACTIONS(3488), + [sym_html_comment] = ACTIONS(5), + }, + [1503] = { + [sym_comment] = STATE(1503), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_from] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_of] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_LTtemplate_GT] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_property] = ACTIONS(2456), + [anon_sym_signal] = ACTIONS(2456), + [anon_sym_on] = ACTIONS(2456), + [anon_sym_required] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym_html_comment] = ACTIONS(5), + }, + [1504] = { + [sym_comment] = STATE(1504), + [sym_identifier] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_typeof] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_from] = ACTIONS(3646), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_var] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_else] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_await] = ACTIONS(3646), + [anon_sym_of] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_debugger] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LTtemplate_GT] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_async] = ACTIONS(3646), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_SLASH] = ACTIONS(3646), + [anon_sym_LT] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_void] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3646), + [sym_number] = ACTIONS(3646), + [sym_private_property_identifier] = ACTIONS(3646), + [sym_this] = ACTIONS(3646), + [sym_super] = ACTIONS(3646), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [sym_null] = ACTIONS(3646), + [sym_undefined] = ACTIONS(3646), + [anon_sym_AT] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_readonly] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(3646), + [anon_sym_set] = ACTIONS(3646), + [anon_sym_declare] = ACTIONS(3646), + [anon_sym_public] = ACTIONS(3646), + [anon_sym_private] = ACTIONS(3646), + [anon_sym_protected] = ACTIONS(3646), + [anon_sym_override] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_any] = ACTIONS(3646), + [anon_sym_number] = ACTIONS(3646), + [anon_sym_boolean] = ACTIONS(3646), + [anon_sym_string] = ACTIONS(3646), + [anon_sym_symbol] = ACTIONS(3646), + [anon_sym_object] = ACTIONS(3646), + [anon_sym_property] = ACTIONS(3646), + [anon_sym_signal] = ACTIONS(3646), + [anon_sym_on] = ACTIONS(3646), + [anon_sym_required] = ACTIONS(3646), + [anon_sym_component] = ACTIONS(3646), + [anon_sym_abstract] = ACTIONS(3646), + [anon_sym_interface] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), + [sym_html_comment] = ACTIONS(5), + }, + [1505] = { + [sym_comment] = STATE(1505), + [sym_identifier] = ACTIONS(3644), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_type] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_typeof] = ACTIONS(3644), + [anon_sym_import] = ACTIONS(3644), + [anon_sym_from] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [anon_sym_var] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_await] = ACTIONS(3644), + [anon_sym_of] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_debugger] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_LTtemplate_GT] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [anon_sym_SQUOTE] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_async] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [anon_sym_void] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3644), + [sym_number] = ACTIONS(3644), + [sym_private_property_identifier] = ACTIONS(3644), + [sym_this] = ACTIONS(3644), + [sym_super] = ACTIONS(3644), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [sym_null] = ACTIONS(3644), + [sym_undefined] = ACTIONS(3644), + [anon_sym_AT] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_readonly] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(3644), + [anon_sym_set] = ACTIONS(3644), + [anon_sym_declare] = ACTIONS(3644), + [anon_sym_public] = ACTIONS(3644), + [anon_sym_private] = ACTIONS(3644), + [anon_sym_protected] = ACTIONS(3644), + [anon_sym_override] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_any] = ACTIONS(3644), + [anon_sym_number] = ACTIONS(3644), + [anon_sym_boolean] = ACTIONS(3644), + [anon_sym_string] = ACTIONS(3644), + [anon_sym_symbol] = ACTIONS(3644), + [anon_sym_object] = ACTIONS(3644), + [anon_sym_property] = ACTIONS(3644), + [anon_sym_signal] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_required] = ACTIONS(3644), + [anon_sym_component] = ACTIONS(3644), + [anon_sym_abstract] = ACTIONS(3644), + [anon_sym_interface] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [sym_html_comment] = ACTIONS(5), + }, + [1506] = { + [sym_comment] = STATE(1506), + [sym_identifier] = ACTIONS(3548), + [anon_sym_export] = ACTIONS(3548), + [anon_sym_type] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3548), + [anon_sym_RBRACE] = ACTIONS(3548), + [anon_sym_typeof] = ACTIONS(3548), + [anon_sym_import] = ACTIONS(3548), + [anon_sym_from] = ACTIONS(3548), + [anon_sym_with] = ACTIONS(3548), + [anon_sym_var] = ACTIONS(3548), + [anon_sym_let] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_BANG] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(3548), + [anon_sym_await] = ACTIONS(3548), + [anon_sym_of] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_debugger] = ACTIONS(3548), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3548), + [anon_sym_yield] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_LTtemplate_GT] = ACTIONS(3548), + [anon_sym_DQUOTE] = ACTIONS(3548), + [anon_sym_SQUOTE] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_async] = ACTIONS(3548), + [anon_sym_function] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_using] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_LT] = ACTIONS(3548), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_void] = ACTIONS(3548), + [anon_sym_delete] = ACTIONS(3548), + [anon_sym_PLUS_PLUS] = ACTIONS(3548), + [anon_sym_DASH_DASH] = ACTIONS(3548), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3548), + [sym_number] = ACTIONS(3548), + [sym_private_property_identifier] = ACTIONS(3548), + [sym_this] = ACTIONS(3548), + [sym_super] = ACTIONS(3548), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [sym_null] = ACTIONS(3548), + [sym_undefined] = ACTIONS(3548), + [anon_sym_AT] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_readonly] = ACTIONS(3548), + [anon_sym_get] = ACTIONS(3548), + [anon_sym_set] = ACTIONS(3548), + [anon_sym_declare] = ACTIONS(3548), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_override] = ACTIONS(3548), + [anon_sym_module] = ACTIONS(3548), + [anon_sym_any] = ACTIONS(3548), + [anon_sym_number] = ACTIONS(3548), + [anon_sym_boolean] = ACTIONS(3548), + [anon_sym_string] = ACTIONS(3548), + [anon_sym_symbol] = ACTIONS(3548), + [anon_sym_object] = ACTIONS(3548), + [anon_sym_property] = ACTIONS(3548), + [anon_sym_signal] = ACTIONS(3548), + [anon_sym_on] = ACTIONS(3548), + [anon_sym_required] = ACTIONS(3548), + [anon_sym_component] = ACTIONS(3548), + [anon_sym_abstract] = ACTIONS(3548), + [anon_sym_interface] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), + [sym_html_comment] = ACTIONS(5), + }, + [1507] = { + [sym_comment] = STATE(1507), + [sym_identifier] = ACTIONS(3476), + [anon_sym_export] = ACTIONS(3476), + [anon_sym_type] = ACTIONS(3476), + [anon_sym_namespace] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_RBRACE] = ACTIONS(3476), + [anon_sym_typeof] = ACTIONS(3476), + [anon_sym_import] = ACTIONS(3476), + [anon_sym_from] = ACTIONS(3476), + [anon_sym_with] = ACTIONS(3476), + [anon_sym_var] = ACTIONS(3476), + [anon_sym_let] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_else] = ACTIONS(3476), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_await] = ACTIONS(3476), + [anon_sym_of] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [anon_sym_try] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_debugger] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_throw] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_yield] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(3476), + [anon_sym_LTtemplate_GT] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_class] = ACTIONS(3476), + [anon_sym_async] = ACTIONS(3476), + [anon_sym_function] = ACTIONS(3476), + [anon_sym_new] = ACTIONS(3476), + [anon_sym_using] = ACTIONS(3476), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_SLASH] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_void] = ACTIONS(3476), + [anon_sym_delete] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3476), + [sym_number] = ACTIONS(3476), + [sym_private_property_identifier] = ACTIONS(3476), + [sym_this] = ACTIONS(3476), + [sym_super] = ACTIONS(3476), + [sym_true] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [sym_null] = ACTIONS(3476), + [sym_undefined] = ACTIONS(3476), + [anon_sym_AT] = ACTIONS(3476), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_readonly] = ACTIONS(3476), + [anon_sym_get] = ACTIONS(3476), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_declare] = ACTIONS(3476), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_override] = ACTIONS(3476), + [anon_sym_module] = ACTIONS(3476), + [anon_sym_any] = ACTIONS(3476), + [anon_sym_number] = ACTIONS(3476), + [anon_sym_boolean] = ACTIONS(3476), + [anon_sym_string] = ACTIONS(3476), + [anon_sym_symbol] = ACTIONS(3476), + [anon_sym_object] = ACTIONS(3476), + [anon_sym_property] = ACTIONS(3476), + [anon_sym_signal] = ACTIONS(3476), + [anon_sym_on] = ACTIONS(3476), + [anon_sym_required] = ACTIONS(3476), + [anon_sym_component] = ACTIONS(3476), + [anon_sym_abstract] = ACTIONS(3476), + [anon_sym_interface] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), + [sym_html_comment] = ACTIONS(5), + }, + [1508] = { + [sym_comment] = STATE(1508), + [sym_identifier] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_type] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_typeof] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_from] = ACTIONS(3558), + [anon_sym_with] = ACTIONS(3558), + [anon_sym_var] = ACTIONS(3558), + [anon_sym_let] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_else] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_await] = ACTIONS(3558), + [anon_sym_of] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_debugger] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym_yield] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_LTtemplate_GT] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_async] = ACTIONS(3558), + [anon_sym_function] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_void] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3558), + [sym_number] = ACTIONS(3558), + [sym_private_property_identifier] = ACTIONS(3558), + [sym_this] = ACTIONS(3558), + [sym_super] = ACTIONS(3558), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [sym_null] = ACTIONS(3558), + [sym_undefined] = ACTIONS(3558), + [anon_sym_AT] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_readonly] = ACTIONS(3558), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3558), + [anon_sym_declare] = ACTIONS(3558), + [anon_sym_public] = ACTIONS(3558), + [anon_sym_private] = ACTIONS(3558), + [anon_sym_protected] = ACTIONS(3558), + [anon_sym_override] = ACTIONS(3558), + [anon_sym_module] = ACTIONS(3558), + [anon_sym_any] = ACTIONS(3558), + [anon_sym_number] = ACTIONS(3558), + [anon_sym_boolean] = ACTIONS(3558), + [anon_sym_string] = ACTIONS(3558), + [anon_sym_symbol] = ACTIONS(3558), + [anon_sym_object] = ACTIONS(3558), + [anon_sym_property] = ACTIONS(3558), + [anon_sym_signal] = ACTIONS(3558), + [anon_sym_on] = ACTIONS(3558), + [anon_sym_required] = ACTIONS(3558), + [anon_sym_component] = ACTIONS(3558), + [anon_sym_abstract] = ACTIONS(3558), + [anon_sym_interface] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), + [sym_html_comment] = ACTIONS(5), + }, + [1509] = { + [sym_comment] = STATE(1509), + [sym_identifier] = ACTIONS(3490), + [anon_sym_export] = ACTIONS(3490), + [anon_sym_type] = ACTIONS(3490), + [anon_sym_namespace] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3490), + [anon_sym_RBRACE] = ACTIONS(3490), + [anon_sym_typeof] = ACTIONS(3490), + [anon_sym_import] = ACTIONS(3490), + [anon_sym_from] = ACTIONS(3490), + [anon_sym_with] = ACTIONS(3490), + [anon_sym_var] = ACTIONS(3490), + [anon_sym_let] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(3490), + [anon_sym_else] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_switch] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3490), + [anon_sym_await] = ACTIONS(3490), + [anon_sym_of] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_debugger] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_throw] = ACTIONS(3490), + [anon_sym_SEMI] = ACTIONS(3490), + [anon_sym_yield] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_LTtemplate_GT] = ACTIONS(3490), + [anon_sym_DQUOTE] = ACTIONS(3490), + [anon_sym_SQUOTE] = ACTIONS(3490), + [anon_sym_class] = ACTIONS(3490), + [anon_sym_async] = ACTIONS(3490), + [anon_sym_function] = ACTIONS(3490), + [anon_sym_new] = ACTIONS(3490), + [anon_sym_using] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3490), + [anon_sym_DASH] = ACTIONS(3490), + [anon_sym_SLASH] = ACTIONS(3490), + [anon_sym_LT] = ACTIONS(3490), + [anon_sym_TILDE] = ACTIONS(3490), + [anon_sym_void] = ACTIONS(3490), + [anon_sym_delete] = ACTIONS(3490), + [anon_sym_PLUS_PLUS] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3490), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3490), + [sym_number] = ACTIONS(3490), + [sym_private_property_identifier] = ACTIONS(3490), + [sym_this] = ACTIONS(3490), + [sym_super] = ACTIONS(3490), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [sym_null] = ACTIONS(3490), + [sym_undefined] = ACTIONS(3490), + [anon_sym_AT] = ACTIONS(3490), + [anon_sym_static] = ACTIONS(3490), + [anon_sym_readonly] = ACTIONS(3490), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3490), + [anon_sym_declare] = ACTIONS(3490), + [anon_sym_public] = ACTIONS(3490), + [anon_sym_private] = ACTIONS(3490), + [anon_sym_protected] = ACTIONS(3490), + [anon_sym_override] = ACTIONS(3490), + [anon_sym_module] = ACTIONS(3490), + [anon_sym_any] = ACTIONS(3490), + [anon_sym_number] = ACTIONS(3490), + [anon_sym_boolean] = ACTIONS(3490), + [anon_sym_string] = ACTIONS(3490), + [anon_sym_symbol] = ACTIONS(3490), + [anon_sym_object] = ACTIONS(3490), + [anon_sym_property] = ACTIONS(3490), + [anon_sym_signal] = ACTIONS(3490), + [anon_sym_on] = ACTIONS(3490), + [anon_sym_required] = ACTIONS(3490), + [anon_sym_component] = ACTIONS(3490), + [anon_sym_abstract] = ACTIONS(3490), + [anon_sym_interface] = ACTIONS(3490), + [anon_sym_enum] = ACTIONS(3490), + [sym_html_comment] = ACTIONS(5), + }, + [1510] = { + [sym_comment] = STATE(1510), + [sym_identifier] = ACTIONS(3492), + [anon_sym_export] = ACTIONS(3492), + [anon_sym_type] = ACTIONS(3492), + [anon_sym_namespace] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_RBRACE] = ACTIONS(3492), + [anon_sym_typeof] = ACTIONS(3492), + [anon_sym_import] = ACTIONS(3492), + [anon_sym_from] = ACTIONS(3492), + [anon_sym_with] = ACTIONS(3492), + [anon_sym_var] = ACTIONS(3492), + [anon_sym_let] = ACTIONS(3492), + [anon_sym_const] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_else] = ACTIONS(3492), + [anon_sym_if] = ACTIONS(3492), + [anon_sym_switch] = ACTIONS(3492), + [anon_sym_for] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym_await] = ACTIONS(3492), + [anon_sym_of] = ACTIONS(3492), + [anon_sym_while] = ACTIONS(3492), + [anon_sym_do] = ACTIONS(3492), + [anon_sym_try] = ACTIONS(3492), + [anon_sym_break] = ACTIONS(3492), + [anon_sym_continue] = ACTIONS(3492), + [anon_sym_debugger] = ACTIONS(3492), + [anon_sym_return] = ACTIONS(3492), + [anon_sym_throw] = ACTIONS(3492), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_yield] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3492), + [anon_sym_LTtemplate_GT] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3492), + [anon_sym_class] = ACTIONS(3492), + [anon_sym_async] = ACTIONS(3492), + [anon_sym_function] = ACTIONS(3492), + [anon_sym_new] = ACTIONS(3492), + [anon_sym_using] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_SLASH] = ACTIONS(3492), + [anon_sym_LT] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_void] = ACTIONS(3492), + [anon_sym_delete] = ACTIONS(3492), + [anon_sym_PLUS_PLUS] = ACTIONS(3492), + [anon_sym_DASH_DASH] = ACTIONS(3492), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3492), + [sym_number] = ACTIONS(3492), + [sym_private_property_identifier] = ACTIONS(3492), + [sym_this] = ACTIONS(3492), + [sym_super] = ACTIONS(3492), + [sym_true] = ACTIONS(3492), + [sym_false] = ACTIONS(3492), + [sym_null] = ACTIONS(3492), + [sym_undefined] = ACTIONS(3492), + [anon_sym_AT] = ACTIONS(3492), + [anon_sym_static] = ACTIONS(3492), + [anon_sym_readonly] = ACTIONS(3492), + [anon_sym_get] = ACTIONS(3492), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_declare] = ACTIONS(3492), + [anon_sym_public] = ACTIONS(3492), + [anon_sym_private] = ACTIONS(3492), + [anon_sym_protected] = ACTIONS(3492), + [anon_sym_override] = ACTIONS(3492), + [anon_sym_module] = ACTIONS(3492), + [anon_sym_any] = ACTIONS(3492), + [anon_sym_number] = ACTIONS(3492), + [anon_sym_boolean] = ACTIONS(3492), + [anon_sym_string] = ACTIONS(3492), + [anon_sym_symbol] = ACTIONS(3492), + [anon_sym_object] = ACTIONS(3492), + [anon_sym_property] = ACTIONS(3492), + [anon_sym_signal] = ACTIONS(3492), + [anon_sym_on] = ACTIONS(3492), + [anon_sym_required] = ACTIONS(3492), + [anon_sym_component] = ACTIONS(3492), + [anon_sym_abstract] = ACTIONS(3492), + [anon_sym_interface] = ACTIONS(3492), + [anon_sym_enum] = ACTIONS(3492), + [sym_html_comment] = ACTIONS(5), + }, + [1511] = { + [sym_comment] = STATE(1511), + [sym_identifier] = ACTIONS(3494), + [anon_sym_export] = ACTIONS(3494), + [anon_sym_type] = ACTIONS(3494), + [anon_sym_namespace] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(3494), + [anon_sym_RBRACE] = ACTIONS(3494), + [anon_sym_typeof] = ACTIONS(3494), + [anon_sym_import] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_with] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_else] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3494), + [anon_sym_switch] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(3494), + [anon_sym_await] = ACTIONS(3494), + [anon_sym_of] = ACTIONS(3494), + [anon_sym_while] = ACTIONS(3494), + [anon_sym_do] = ACTIONS(3494), + [anon_sym_try] = ACTIONS(3494), + [anon_sym_break] = ACTIONS(3494), + [anon_sym_continue] = ACTIONS(3494), + [anon_sym_debugger] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3494), + [anon_sym_throw] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_LTtemplate_GT] = ACTIONS(3494), + [anon_sym_DQUOTE] = ACTIONS(3494), + [anon_sym_SQUOTE] = ACTIONS(3494), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_function] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_using] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_SLASH] = ACTIONS(3494), + [anon_sym_LT] = ACTIONS(3494), + [anon_sym_TILDE] = ACTIONS(3494), + [anon_sym_void] = ACTIONS(3494), + [anon_sym_delete] = ACTIONS(3494), + [anon_sym_PLUS_PLUS] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3494), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3494), + [sym_number] = ACTIONS(3494), + [sym_private_property_identifier] = ACTIONS(3494), + [sym_this] = ACTIONS(3494), + [sym_super] = ACTIONS(3494), + [sym_true] = ACTIONS(3494), + [sym_false] = ACTIONS(3494), + [sym_null] = ACTIONS(3494), + [sym_undefined] = ACTIONS(3494), + [anon_sym_AT] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_get] = ACTIONS(3494), + [anon_sym_set] = ACTIONS(3494), + [anon_sym_declare] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_module] = ACTIONS(3494), + [anon_sym_any] = ACTIONS(3494), + [anon_sym_number] = ACTIONS(3494), + [anon_sym_boolean] = ACTIONS(3494), + [anon_sym_string] = ACTIONS(3494), + [anon_sym_symbol] = ACTIONS(3494), + [anon_sym_object] = ACTIONS(3494), + [anon_sym_property] = ACTIONS(3494), + [anon_sym_signal] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_component] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [sym_html_comment] = ACTIONS(5), + }, + [1512] = { + [sym_comment] = STATE(1512), + [sym_identifier] = ACTIONS(3496), + [anon_sym_export] = ACTIONS(3496), + [anon_sym_type] = ACTIONS(3496), + [anon_sym_namespace] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_RBRACE] = ACTIONS(3496), + [anon_sym_typeof] = ACTIONS(3496), + [anon_sym_import] = ACTIONS(3496), + [anon_sym_from] = ACTIONS(3496), + [anon_sym_with] = ACTIONS(3496), + [anon_sym_var] = ACTIONS(3496), + [anon_sym_let] = ACTIONS(3496), + [anon_sym_const] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3496), + [anon_sym_else] = ACTIONS(3496), + [anon_sym_if] = ACTIONS(3496), + [anon_sym_switch] = ACTIONS(3496), + [anon_sym_for] = ACTIONS(3496), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_await] = ACTIONS(3496), + [anon_sym_of] = ACTIONS(3496), + [anon_sym_while] = ACTIONS(3496), + [anon_sym_do] = ACTIONS(3496), + [anon_sym_try] = ACTIONS(3496), + [anon_sym_break] = ACTIONS(3496), + [anon_sym_continue] = ACTIONS(3496), + [anon_sym_debugger] = ACTIONS(3496), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_throw] = ACTIONS(3496), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym_yield] = ACTIONS(3496), + [anon_sym_LBRACK] = ACTIONS(3496), + [anon_sym_LTtemplate_GT] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(3496), + [anon_sym_class] = ACTIONS(3496), + [anon_sym_async] = ACTIONS(3496), + [anon_sym_function] = ACTIONS(3496), + [anon_sym_new] = ACTIONS(3496), + [anon_sym_using] = ACTIONS(3496), + [anon_sym_PLUS] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(3496), + [anon_sym_void] = ACTIONS(3496), + [anon_sym_delete] = ACTIONS(3496), + [anon_sym_PLUS_PLUS] = ACTIONS(3496), + [anon_sym_DASH_DASH] = ACTIONS(3496), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3496), + [sym_number] = ACTIONS(3496), + [sym_private_property_identifier] = ACTIONS(3496), + [sym_this] = ACTIONS(3496), + [sym_super] = ACTIONS(3496), + [sym_true] = ACTIONS(3496), + [sym_false] = ACTIONS(3496), + [sym_null] = ACTIONS(3496), + [sym_undefined] = ACTIONS(3496), + [anon_sym_AT] = ACTIONS(3496), + [anon_sym_static] = ACTIONS(3496), + [anon_sym_readonly] = ACTIONS(3496), + [anon_sym_get] = ACTIONS(3496), + [anon_sym_set] = ACTIONS(3496), + [anon_sym_declare] = ACTIONS(3496), + [anon_sym_public] = ACTIONS(3496), + [anon_sym_private] = ACTIONS(3496), + [anon_sym_protected] = ACTIONS(3496), + [anon_sym_override] = ACTIONS(3496), + [anon_sym_module] = ACTIONS(3496), + [anon_sym_any] = ACTIONS(3496), + [anon_sym_number] = ACTIONS(3496), + [anon_sym_boolean] = ACTIONS(3496), + [anon_sym_string] = ACTIONS(3496), + [anon_sym_symbol] = ACTIONS(3496), + [anon_sym_object] = ACTIONS(3496), + [anon_sym_property] = ACTIONS(3496), + [anon_sym_signal] = ACTIONS(3496), + [anon_sym_on] = ACTIONS(3496), + [anon_sym_required] = ACTIONS(3496), + [anon_sym_component] = ACTIONS(3496), + [anon_sym_abstract] = ACTIONS(3496), + [anon_sym_interface] = ACTIONS(3496), + [anon_sym_enum] = ACTIONS(3496), + [sym_html_comment] = ACTIONS(5), + }, + [1513] = { + [sym_comment] = STATE(1513), + [sym_identifier] = ACTIONS(3506), + [anon_sym_export] = ACTIONS(3506), + [anon_sym_type] = ACTIONS(3506), + [anon_sym_namespace] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(3506), + [anon_sym_RBRACE] = ACTIONS(3506), + [anon_sym_typeof] = ACTIONS(3506), + [anon_sym_import] = ACTIONS(3506), + [anon_sym_from] = ACTIONS(3506), + [anon_sym_with] = ACTIONS(3506), + [anon_sym_var] = ACTIONS(3506), + [anon_sym_let] = ACTIONS(3506), + [anon_sym_const] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3506), + [anon_sym_else] = ACTIONS(3506), + [anon_sym_if] = ACTIONS(3506), + [anon_sym_switch] = ACTIONS(3506), + [anon_sym_for] = ACTIONS(3506), + [anon_sym_LPAREN] = ACTIONS(3506), + [anon_sym_await] = ACTIONS(3506), + [anon_sym_of] = ACTIONS(3506), + [anon_sym_while] = ACTIONS(3506), + [anon_sym_do] = ACTIONS(3506), + [anon_sym_try] = ACTIONS(3506), + [anon_sym_break] = ACTIONS(3506), + [anon_sym_continue] = ACTIONS(3506), + [anon_sym_debugger] = ACTIONS(3506), + [anon_sym_return] = ACTIONS(3506), + [anon_sym_throw] = ACTIONS(3506), + [anon_sym_SEMI] = ACTIONS(3506), + [anon_sym_yield] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3506), + [anon_sym_LTtemplate_GT] = ACTIONS(3506), + [anon_sym_DQUOTE] = ACTIONS(3506), + [anon_sym_SQUOTE] = ACTIONS(3506), + [anon_sym_class] = ACTIONS(3506), + [anon_sym_async] = ACTIONS(3506), + [anon_sym_function] = ACTIONS(3506), + [anon_sym_new] = ACTIONS(3506), + [anon_sym_using] = ACTIONS(3506), + [anon_sym_PLUS] = ACTIONS(3506), + [anon_sym_DASH] = ACTIONS(3506), + [anon_sym_SLASH] = ACTIONS(3506), + [anon_sym_LT] = ACTIONS(3506), + [anon_sym_TILDE] = ACTIONS(3506), + [anon_sym_void] = ACTIONS(3506), + [anon_sym_delete] = ACTIONS(3506), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3506), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3506), + [sym_number] = ACTIONS(3506), + [sym_private_property_identifier] = ACTIONS(3506), + [sym_this] = ACTIONS(3506), + [sym_super] = ACTIONS(3506), + [sym_true] = ACTIONS(3506), + [sym_false] = ACTIONS(3506), + [sym_null] = ACTIONS(3506), + [sym_undefined] = ACTIONS(3506), + [anon_sym_AT] = ACTIONS(3506), + [anon_sym_static] = ACTIONS(3506), + [anon_sym_readonly] = ACTIONS(3506), + [anon_sym_get] = ACTIONS(3506), + [anon_sym_set] = ACTIONS(3506), + [anon_sym_declare] = ACTIONS(3506), + [anon_sym_public] = ACTIONS(3506), + [anon_sym_private] = ACTIONS(3506), + [anon_sym_protected] = ACTIONS(3506), + [anon_sym_override] = ACTIONS(3506), + [anon_sym_module] = ACTIONS(3506), + [anon_sym_any] = ACTIONS(3506), + [anon_sym_number] = ACTIONS(3506), + [anon_sym_boolean] = ACTIONS(3506), + [anon_sym_string] = ACTIONS(3506), + [anon_sym_symbol] = ACTIONS(3506), + [anon_sym_object] = ACTIONS(3506), + [anon_sym_property] = ACTIONS(3506), + [anon_sym_signal] = ACTIONS(3506), + [anon_sym_on] = ACTIONS(3506), + [anon_sym_required] = ACTIONS(3506), + [anon_sym_component] = ACTIONS(3506), + [anon_sym_abstract] = ACTIONS(3506), + [anon_sym_interface] = ACTIONS(3506), + [anon_sym_enum] = ACTIONS(3506), + [sym_html_comment] = ACTIONS(5), + }, + [1514] = { + [sym_comment] = STATE(1514), + [sym_identifier] = ACTIONS(3584), + [anon_sym_export] = ACTIONS(3584), + [anon_sym_type] = ACTIONS(3584), + [anon_sym_namespace] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3584), + [anon_sym_RBRACE] = ACTIONS(3584), + [anon_sym_typeof] = ACTIONS(3584), + [anon_sym_import] = ACTIONS(3584), + [anon_sym_from] = ACTIONS(3584), + [anon_sym_with] = ACTIONS(3584), + [anon_sym_var] = ACTIONS(3584), + [anon_sym_let] = ACTIONS(3584), + [anon_sym_const] = ACTIONS(3584), + [anon_sym_BANG] = ACTIONS(3584), + [anon_sym_else] = ACTIONS(3584), + [anon_sym_if] = ACTIONS(3584), + [anon_sym_switch] = ACTIONS(3584), + [anon_sym_for] = ACTIONS(3584), + [anon_sym_LPAREN] = ACTIONS(3584), + [anon_sym_await] = ACTIONS(3584), + [anon_sym_of] = ACTIONS(3584), + [anon_sym_while] = ACTIONS(3584), + [anon_sym_do] = ACTIONS(3584), + [anon_sym_try] = ACTIONS(3584), + [anon_sym_break] = ACTIONS(3584), + [anon_sym_continue] = ACTIONS(3584), + [anon_sym_debugger] = ACTIONS(3584), + [anon_sym_return] = ACTIONS(3584), + [anon_sym_throw] = ACTIONS(3584), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym_yield] = ACTIONS(3584), + [anon_sym_LBRACK] = ACTIONS(3584), + [anon_sym_LTtemplate_GT] = ACTIONS(3584), + [anon_sym_DQUOTE] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3584), + [anon_sym_class] = ACTIONS(3584), + [anon_sym_async] = ACTIONS(3584), + [anon_sym_function] = ACTIONS(3584), + [anon_sym_new] = ACTIONS(3584), + [anon_sym_using] = ACTIONS(3584), + [anon_sym_PLUS] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3584), + [anon_sym_SLASH] = ACTIONS(3584), + [anon_sym_LT] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_void] = ACTIONS(3584), + [anon_sym_delete] = ACTIONS(3584), + [anon_sym_PLUS_PLUS] = ACTIONS(3584), + [anon_sym_DASH_DASH] = ACTIONS(3584), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3584), + [sym_number] = ACTIONS(3584), + [sym_private_property_identifier] = ACTIONS(3584), + [sym_this] = ACTIONS(3584), + [sym_super] = ACTIONS(3584), + [sym_true] = ACTIONS(3584), + [sym_false] = ACTIONS(3584), + [sym_null] = ACTIONS(3584), + [sym_undefined] = ACTIONS(3584), + [anon_sym_AT] = ACTIONS(3584), + [anon_sym_static] = ACTIONS(3584), + [anon_sym_readonly] = ACTIONS(3584), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3584), + [anon_sym_declare] = ACTIONS(3584), + [anon_sym_public] = ACTIONS(3584), + [anon_sym_private] = ACTIONS(3584), + [anon_sym_protected] = ACTIONS(3584), + [anon_sym_override] = ACTIONS(3584), + [anon_sym_module] = ACTIONS(3584), + [anon_sym_any] = ACTIONS(3584), + [anon_sym_number] = ACTIONS(3584), + [anon_sym_boolean] = ACTIONS(3584), + [anon_sym_string] = ACTIONS(3584), + [anon_sym_symbol] = ACTIONS(3584), + [anon_sym_object] = ACTIONS(3584), + [anon_sym_property] = ACTIONS(3584), + [anon_sym_signal] = ACTIONS(3584), + [anon_sym_on] = ACTIONS(3584), + [anon_sym_required] = ACTIONS(3584), + [anon_sym_component] = ACTIONS(3584), + [anon_sym_abstract] = ACTIONS(3584), + [anon_sym_interface] = ACTIONS(3584), + [anon_sym_enum] = ACTIONS(3584), + [sym_html_comment] = ACTIONS(5), + }, + [1515] = { + [sym_comment] = STATE(1515), + [sym_identifier] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_type] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_typeof] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_from] = ACTIONS(3558), + [anon_sym_with] = ACTIONS(3558), + [anon_sym_var] = ACTIONS(3558), + [anon_sym_let] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_else] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_await] = ACTIONS(3558), + [anon_sym_of] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_debugger] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym_yield] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_LTtemplate_GT] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_async] = ACTIONS(3558), + [anon_sym_function] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_void] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3558), + [sym_number] = ACTIONS(3558), + [sym_private_property_identifier] = ACTIONS(3558), + [sym_this] = ACTIONS(3558), + [sym_super] = ACTIONS(3558), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [sym_null] = ACTIONS(3558), + [sym_undefined] = ACTIONS(3558), + [anon_sym_AT] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_readonly] = ACTIONS(3558), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3558), + [anon_sym_declare] = ACTIONS(3558), + [anon_sym_public] = ACTIONS(3558), + [anon_sym_private] = ACTIONS(3558), + [anon_sym_protected] = ACTIONS(3558), + [anon_sym_override] = ACTIONS(3558), + [anon_sym_module] = ACTIONS(3558), + [anon_sym_any] = ACTIONS(3558), + [anon_sym_number] = ACTIONS(3558), + [anon_sym_boolean] = ACTIONS(3558), + [anon_sym_string] = ACTIONS(3558), + [anon_sym_symbol] = ACTIONS(3558), + [anon_sym_object] = ACTIONS(3558), + [anon_sym_property] = ACTIONS(3558), + [anon_sym_signal] = ACTIONS(3558), + [anon_sym_on] = ACTIONS(3558), + [anon_sym_required] = ACTIONS(3558), + [anon_sym_component] = ACTIONS(3558), + [anon_sym_abstract] = ACTIONS(3558), + [anon_sym_interface] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), + [sym_html_comment] = ACTIONS(5), + }, + [1516] = { + [sym_comment] = STATE(1516), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), [anon_sym_LBRACE] = ACTIONS(2356), [anon_sym_RBRACE] = ACTIONS(2356), - [anon_sym_typeof] = ACTIONS(2354), - [anon_sym_import] = ACTIONS(2354), - [anon_sym_from] = ACTIONS(2354), - [anon_sym_var] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2354), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), [anon_sym_BANG] = ACTIONS(2356), - [anon_sym_else] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2354), - [anon_sym_for] = ACTIONS(2354), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), [anon_sym_LPAREN] = ACTIONS(2356), - [anon_sym_await] = ACTIONS(2354), - [anon_sym_of] = ACTIONS(2354), - [anon_sym_while] = ACTIONS(2354), - [anon_sym_do] = ACTIONS(2354), - [anon_sym_try] = ACTIONS(2354), - [anon_sym_with] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2354), - [anon_sym_continue] = ACTIONS(2354), - [anon_sym_debugger] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2354), - [anon_sym_throw] = ACTIONS(2354), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), [anon_sym_SEMI] = ACTIONS(2356), - [anon_sym_case] = ACTIONS(2354), - [anon_sym_yield] = ACTIONS(2354), + [anon_sym_yield] = ACTIONS(2356), [anon_sym_LBRACK] = ACTIONS(2356), [anon_sym_LTtemplate_GT] = ACTIONS(2356), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_SLASH] = ACTIONS(2354), - [anon_sym_class] = ACTIONS(2354), - [anon_sym_async] = ACTIONS(2354), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_new] = ACTIONS(2354), - [anon_sym_PLUS] = ACTIONS(2354), - [anon_sym_DASH] = ACTIONS(2354), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), [anon_sym_TILDE] = ACTIONS(2356), - [anon_sym_void] = ACTIONS(2354), - [anon_sym_delete] = ACTIONS(2354), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), [anon_sym_PLUS_PLUS] = ACTIONS(2356), [anon_sym_DASH_DASH] = ACTIONS(2356), - [anon_sym_DQUOTE] = ACTIONS(2356), - [anon_sym_SQUOTE] = ACTIONS(2356), - [sym_comment] = ACTIONS(3), + [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(2356), [sym_number] = ACTIONS(2356), - [sym_this] = ACTIONS(2354), - [sym_super] = ACTIONS(2354), - [sym_true] = ACTIONS(2354), - [sym_false] = ACTIONS(2354), - [sym_null] = ACTIONS(2354), - [sym_undefined] = ACTIONS(2354), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), [anon_sym_AT] = ACTIONS(2356), - [anon_sym_static] = ACTIONS(2354), - [anon_sym_readonly] = ACTIONS(2354), - [anon_sym_get] = ACTIONS(2354), - [anon_sym_set] = ACTIONS(2354), - [anon_sym_declare] = ACTIONS(2354), - [anon_sym_public] = ACTIONS(2354), - [anon_sym_private] = ACTIONS(2354), - [anon_sym_protected] = ACTIONS(2354), - [anon_sym_override] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_any] = ACTIONS(2354), - [anon_sym_number] = ACTIONS(2354), - [anon_sym_boolean] = ACTIONS(2354), - [anon_sym_string] = ACTIONS(2354), - [anon_sym_symbol] = ACTIONS(2354), - [anon_sym_property] = ACTIONS(2354), - [anon_sym_signal] = ACTIONS(2354), - [anon_sym_on] = ACTIONS(2354), - [anon_sym_required] = ACTIONS(2354), - [anon_sym_component] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2354), - [anon_sym_interface] = ACTIONS(2354), - [anon_sym_enum] = ACTIONS(2354), - }, - [706] = { - [sym_identifier] = ACTIONS(1661), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_namespace] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_typeof] = ACTIONS(1661), - [anon_sym_import] = ACTIONS(1661), - [anon_sym_from] = ACTIONS(1661), - [anon_sym_var] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_switch] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_await] = ACTIONS(1661), - [anon_sym_of] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_with] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_debugger] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_throw] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_case] = ACTIONS(1661), - [anon_sym_yield] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_LTtemplate_GT] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_class] = ACTIONS(1661), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_function] = ACTIONS(1661), - [anon_sym_new] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1661), - [anon_sym_delete] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [anon_sym_DQUOTE] = ACTIONS(1663), - [anon_sym_SQUOTE] = ACTIONS(1663), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1663), - [sym_number] = ACTIONS(1663), - [sym_this] = ACTIONS(1661), - [sym_super] = ACTIONS(1661), - [sym_true] = ACTIONS(1661), - [sym_false] = ACTIONS(1661), - [sym_null] = ACTIONS(1661), - [sym_undefined] = ACTIONS(1661), - [anon_sym_AT] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_readonly] = ACTIONS(1661), - [anon_sym_get] = ACTIONS(1661), - [anon_sym_set] = ACTIONS(1661), - [anon_sym_declare] = ACTIONS(1661), - [anon_sym_public] = ACTIONS(1661), - [anon_sym_private] = ACTIONS(1661), - [anon_sym_protected] = ACTIONS(1661), - [anon_sym_override] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_any] = ACTIONS(1661), - [anon_sym_number] = ACTIONS(1661), - [anon_sym_boolean] = ACTIONS(1661), - [anon_sym_string] = ACTIONS(1661), - [anon_sym_symbol] = ACTIONS(1661), - [anon_sym_property] = ACTIONS(1661), - [anon_sym_signal] = ACTIONS(1661), - [anon_sym_on] = ACTIONS(1661), - [anon_sym_required] = ACTIONS(1661), - [anon_sym_component] = ACTIONS(1661), - [anon_sym_abstract] = ACTIONS(1661), - [anon_sym_interface] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - }, - [707] = { - [sym_identifier] = ACTIONS(1721), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_default] = ACTIONS(1721), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_typeof] = ACTIONS(1721), - [anon_sym_import] = ACTIONS(1721), - [anon_sym_from] = ACTIONS(1721), - [anon_sym_var] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_switch] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_of] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_with] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_debugger] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_throw] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_case] = ACTIONS(1721), - [anon_sym_yield] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LTtemplate_GT] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_class] = ACTIONS(1721), - [anon_sym_async] = ACTIONS(1721), - [anon_sym_function] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_TILDE] = ACTIONS(1723), - [anon_sym_void] = ACTIONS(1721), - [anon_sym_delete] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [anon_sym_SQUOTE] = ACTIONS(1723), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1723), - [sym_number] = ACTIONS(1723), - [sym_this] = ACTIONS(1721), - [sym_super] = ACTIONS(1721), - [sym_true] = ACTIONS(1721), - [sym_false] = ACTIONS(1721), - [sym_null] = ACTIONS(1721), - [sym_undefined] = ACTIONS(1721), - [anon_sym_AT] = ACTIONS(1723), - [anon_sym_static] = ACTIONS(1721), - [anon_sym_readonly] = ACTIONS(1721), - [anon_sym_get] = ACTIONS(1721), - [anon_sym_set] = ACTIONS(1721), - [anon_sym_declare] = ACTIONS(1721), - [anon_sym_public] = ACTIONS(1721), - [anon_sym_private] = ACTIONS(1721), - [anon_sym_protected] = ACTIONS(1721), - [anon_sym_override] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_any] = ACTIONS(1721), - [anon_sym_number] = ACTIONS(1721), - [anon_sym_boolean] = ACTIONS(1721), - [anon_sym_string] = ACTIONS(1721), - [anon_sym_symbol] = ACTIONS(1721), - [anon_sym_property] = ACTIONS(1721), - [anon_sym_signal] = ACTIONS(1721), - [anon_sym_on] = ACTIONS(1721), - [anon_sym_required] = ACTIONS(1721), - [anon_sym_component] = ACTIONS(1721), - [anon_sym_abstract] = ACTIONS(1721), - [anon_sym_interface] = ACTIONS(1721), - [anon_sym_enum] = ACTIONS(1721), - }, - [708] = { - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2352), - [anon_sym_RBRACE] = ACTIONS(2352), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2352), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2352), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2352), - [anon_sym_LTtemplate_GT] = ACTIONS(2352), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2352), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2352), - [anon_sym_DASH_DASH] = ACTIONS(2352), - [anon_sym_DQUOTE] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(2352), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2352), - [sym_number] = ACTIONS(2352), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2352), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - }, - [709] = { - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2352), - [anon_sym_RBRACE] = ACTIONS(2352), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2352), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2352), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2352), - [anon_sym_LTtemplate_GT] = ACTIONS(2352), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2352), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2352), - [anon_sym_DASH_DASH] = ACTIONS(2352), - [anon_sym_DQUOTE] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(2352), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2352), - [sym_number] = ACTIONS(2352), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2352), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - }, - [710] = { - [sym_identifier] = ACTIONS(2358), - [anon_sym_export] = ACTIONS(2358), - [anon_sym_default] = ACTIONS(2358), - [anon_sym_type] = ACTIONS(2358), - [anon_sym_namespace] = ACTIONS(2358), - [anon_sym_LBRACE] = ACTIONS(2360), - [anon_sym_RBRACE] = ACTIONS(2360), - [anon_sym_typeof] = ACTIONS(2358), - [anon_sym_import] = ACTIONS(2358), - [anon_sym_from] = ACTIONS(2358), - [anon_sym_var] = ACTIONS(2358), - [anon_sym_let] = ACTIONS(2358), - [anon_sym_const] = ACTIONS(2358), - [anon_sym_BANG] = ACTIONS(2360), - [anon_sym_else] = ACTIONS(2358), - [anon_sym_if] = ACTIONS(2358), - [anon_sym_switch] = ACTIONS(2358), - [anon_sym_for] = ACTIONS(2358), - [anon_sym_LPAREN] = ACTIONS(2360), - [anon_sym_await] = ACTIONS(2358), - [anon_sym_of] = ACTIONS(2358), - [anon_sym_while] = ACTIONS(2358), - [anon_sym_do] = ACTIONS(2358), - [anon_sym_try] = ACTIONS(2358), - [anon_sym_with] = ACTIONS(2358), - [anon_sym_break] = ACTIONS(2358), - [anon_sym_continue] = ACTIONS(2358), - [anon_sym_debugger] = ACTIONS(2358), - [anon_sym_return] = ACTIONS(2358), - [anon_sym_throw] = ACTIONS(2358), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_case] = ACTIONS(2358), - [anon_sym_yield] = ACTIONS(2358), - [anon_sym_LBRACK] = ACTIONS(2360), - [anon_sym_LTtemplate_GT] = ACTIONS(2360), - [anon_sym_LT] = ACTIONS(2358), - [anon_sym_SLASH] = ACTIONS(2358), - [anon_sym_class] = ACTIONS(2358), - [anon_sym_async] = ACTIONS(2358), - [anon_sym_function] = ACTIONS(2358), - [anon_sym_new] = ACTIONS(2358), - [anon_sym_PLUS] = ACTIONS(2358), - [anon_sym_DASH] = ACTIONS(2358), - [anon_sym_TILDE] = ACTIONS(2360), - [anon_sym_void] = ACTIONS(2358), - [anon_sym_delete] = ACTIONS(2358), - [anon_sym_PLUS_PLUS] = ACTIONS(2360), - [anon_sym_DASH_DASH] = ACTIONS(2360), - [anon_sym_DQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2360), - [sym_number] = ACTIONS(2360), - [sym_this] = ACTIONS(2358), - [sym_super] = ACTIONS(2358), - [sym_true] = ACTIONS(2358), - [sym_false] = ACTIONS(2358), - [sym_null] = ACTIONS(2358), - [sym_undefined] = ACTIONS(2358), - [anon_sym_AT] = ACTIONS(2360), - [anon_sym_static] = ACTIONS(2358), - [anon_sym_readonly] = ACTIONS(2358), - [anon_sym_get] = ACTIONS(2358), - [anon_sym_set] = ACTIONS(2358), - [anon_sym_declare] = ACTIONS(2358), - [anon_sym_public] = ACTIONS(2358), - [anon_sym_private] = ACTIONS(2358), - [anon_sym_protected] = ACTIONS(2358), - [anon_sym_override] = ACTIONS(2358), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_any] = ACTIONS(2358), - [anon_sym_number] = ACTIONS(2358), - [anon_sym_boolean] = ACTIONS(2358), - [anon_sym_string] = ACTIONS(2358), - [anon_sym_symbol] = ACTIONS(2358), - [anon_sym_property] = ACTIONS(2358), - [anon_sym_signal] = ACTIONS(2358), - [anon_sym_on] = ACTIONS(2358), - [anon_sym_required] = ACTIONS(2358), - [anon_sym_component] = ACTIONS(2358), - [anon_sym_abstract] = ACTIONS(2358), - [anon_sym_interface] = ACTIONS(2358), - [anon_sym_enum] = ACTIONS(2358), - }, - [711] = { - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_default] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_RBRACE] = ACTIONS(2364), - [anon_sym_typeof] = ACTIONS(2362), - [anon_sym_import] = ACTIONS(2362), - [anon_sym_from] = ACTIONS(2362), - [anon_sym_var] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(2364), - [anon_sym_else] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_switch] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2364), - [anon_sym_await] = ACTIONS(2362), - [anon_sym_of] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_with] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_debugger] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_throw] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2364), - [anon_sym_case] = ACTIONS(2362), - [anon_sym_yield] = ACTIONS(2362), - [anon_sym_LBRACK] = ACTIONS(2364), - [anon_sym_LTtemplate_GT] = ACTIONS(2364), - [anon_sym_LT] = ACTIONS(2362), - [anon_sym_SLASH] = ACTIONS(2362), - [anon_sym_class] = ACTIONS(2362), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_function] = ACTIONS(2362), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_TILDE] = ACTIONS(2364), - [anon_sym_void] = ACTIONS(2362), - [anon_sym_delete] = ACTIONS(2362), - [anon_sym_PLUS_PLUS] = ACTIONS(2364), - [anon_sym_DASH_DASH] = ACTIONS(2364), - [anon_sym_DQUOTE] = ACTIONS(2364), - [anon_sym_SQUOTE] = ACTIONS(2364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2364), - [sym_number] = ACTIONS(2364), - [sym_this] = ACTIONS(2362), - [sym_super] = ACTIONS(2362), - [sym_true] = ACTIONS(2362), - [sym_false] = ACTIONS(2362), - [sym_null] = ACTIONS(2362), - [sym_undefined] = ACTIONS(2362), - [anon_sym_AT] = ACTIONS(2364), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_property] = ACTIONS(2362), - [anon_sym_signal] = ACTIONS(2362), - [anon_sym_on] = ACTIONS(2362), - [anon_sym_required] = ACTIONS(2362), - [anon_sym_component] = ACTIONS(2362), - [anon_sym_abstract] = ACTIONS(2362), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2362), - }, - [712] = { - [sym_identifier] = ACTIONS(2366), - [anon_sym_export] = ACTIONS(2366), - [anon_sym_default] = ACTIONS(2366), - [anon_sym_type] = ACTIONS(2366), - [anon_sym_namespace] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym_html_comment] = ACTIONS(5), + }, + [1517] = { + [sym_comment] = STATE(1517), + [sym_identifier] = ACTIONS(3512), + [anon_sym_export] = ACTIONS(3512), + [anon_sym_type] = ACTIONS(3512), + [anon_sym_namespace] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_typeof] = ACTIONS(3512), + [anon_sym_import] = ACTIONS(3512), + [anon_sym_from] = ACTIONS(3512), + [anon_sym_with] = ACTIONS(3512), + [anon_sym_var] = ACTIONS(3512), + [anon_sym_let] = ACTIONS(3512), + [anon_sym_const] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_else] = ACTIONS(3512), + [anon_sym_if] = ACTIONS(3512), + [anon_sym_switch] = ACTIONS(3512), + [anon_sym_for] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym_await] = ACTIONS(3512), + [anon_sym_of] = ACTIONS(3512), + [anon_sym_while] = ACTIONS(3512), + [anon_sym_do] = ACTIONS(3512), + [anon_sym_try] = ACTIONS(3512), + [anon_sym_break] = ACTIONS(3512), + [anon_sym_continue] = ACTIONS(3512), + [anon_sym_debugger] = ACTIONS(3512), + [anon_sym_return] = ACTIONS(3512), + [anon_sym_throw] = ACTIONS(3512), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym_yield] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LTtemplate_GT] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3512), + [anon_sym_class] = ACTIONS(3512), + [anon_sym_async] = ACTIONS(3512), + [anon_sym_function] = ACTIONS(3512), + [anon_sym_new] = ACTIONS(3512), + [anon_sym_using] = ACTIONS(3512), + [anon_sym_PLUS] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3512), + [anon_sym_SLASH] = ACTIONS(3512), + [anon_sym_LT] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_void] = ACTIONS(3512), + [anon_sym_delete] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3512), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3512), + [sym_number] = ACTIONS(3512), + [sym_private_property_identifier] = ACTIONS(3512), + [sym_this] = ACTIONS(3512), + [sym_super] = ACTIONS(3512), + [sym_true] = ACTIONS(3512), + [sym_false] = ACTIONS(3512), + [sym_null] = ACTIONS(3512), + [sym_undefined] = ACTIONS(3512), + [anon_sym_AT] = ACTIONS(3512), + [anon_sym_static] = ACTIONS(3512), + [anon_sym_readonly] = ACTIONS(3512), + [anon_sym_get] = ACTIONS(3512), + [anon_sym_set] = ACTIONS(3512), + [anon_sym_declare] = ACTIONS(3512), + [anon_sym_public] = ACTIONS(3512), + [anon_sym_private] = ACTIONS(3512), + [anon_sym_protected] = ACTIONS(3512), + [anon_sym_override] = ACTIONS(3512), + [anon_sym_module] = ACTIONS(3512), + [anon_sym_any] = ACTIONS(3512), + [anon_sym_number] = ACTIONS(3512), + [anon_sym_boolean] = ACTIONS(3512), + [anon_sym_string] = ACTIONS(3512), + [anon_sym_symbol] = ACTIONS(3512), + [anon_sym_object] = ACTIONS(3512), + [anon_sym_property] = ACTIONS(3512), + [anon_sym_signal] = ACTIONS(3512), + [anon_sym_on] = ACTIONS(3512), + [anon_sym_required] = ACTIONS(3512), + [anon_sym_component] = ACTIONS(3512), + [anon_sym_abstract] = ACTIONS(3512), + [anon_sym_interface] = ACTIONS(3512), + [anon_sym_enum] = ACTIONS(3512), + [sym_html_comment] = ACTIONS(5), + }, + [1518] = { + [sym_comment] = STATE(1518), + [sym_identifier] = ACTIONS(3520), + [anon_sym_export] = ACTIONS(3520), + [anon_sym_type] = ACTIONS(3520), + [anon_sym_namespace] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_typeof] = ACTIONS(3520), + [anon_sym_import] = ACTIONS(3520), + [anon_sym_from] = ACTIONS(3520), + [anon_sym_with] = ACTIONS(3520), + [anon_sym_var] = ACTIONS(3520), + [anon_sym_let] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_else] = ACTIONS(3520), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_switch] = ACTIONS(3520), + [anon_sym_for] = ACTIONS(3520), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym_await] = ACTIONS(3520), + [anon_sym_of] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(3520), + [anon_sym_do] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3520), + [anon_sym_break] = ACTIONS(3520), + [anon_sym_continue] = ACTIONS(3520), + [anon_sym_debugger] = ACTIONS(3520), + [anon_sym_return] = ACTIONS(3520), + [anon_sym_throw] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_yield] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_LTtemplate_GT] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_class] = ACTIONS(3520), + [anon_sym_async] = ACTIONS(3520), + [anon_sym_function] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3520), + [anon_sym_LT] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_void] = ACTIONS(3520), + [anon_sym_delete] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3520), + [sym_number] = ACTIONS(3520), + [sym_private_property_identifier] = ACTIONS(3520), + [sym_this] = ACTIONS(3520), + [sym_super] = ACTIONS(3520), + [sym_true] = ACTIONS(3520), + [sym_false] = ACTIONS(3520), + [sym_null] = ACTIONS(3520), + [sym_undefined] = ACTIONS(3520), + [anon_sym_AT] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_readonly] = ACTIONS(3520), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3520), + [anon_sym_declare] = ACTIONS(3520), + [anon_sym_public] = ACTIONS(3520), + [anon_sym_private] = ACTIONS(3520), + [anon_sym_protected] = ACTIONS(3520), + [anon_sym_override] = ACTIONS(3520), + [anon_sym_module] = ACTIONS(3520), + [anon_sym_any] = ACTIONS(3520), + [anon_sym_number] = ACTIONS(3520), + [anon_sym_boolean] = ACTIONS(3520), + [anon_sym_string] = ACTIONS(3520), + [anon_sym_symbol] = ACTIONS(3520), + [anon_sym_object] = ACTIONS(3520), + [anon_sym_property] = ACTIONS(3520), + [anon_sym_signal] = ACTIONS(3520), + [anon_sym_on] = ACTIONS(3520), + [anon_sym_required] = ACTIONS(3520), + [anon_sym_component] = ACTIONS(3520), + [anon_sym_abstract] = ACTIONS(3520), + [anon_sym_interface] = ACTIONS(3520), + [anon_sym_enum] = ACTIONS(3520), + [sym_html_comment] = ACTIONS(5), + }, + [1519] = { + [sym_comment] = STATE(1519), + [sym_identifier] = ACTIONS(3522), + [anon_sym_export] = ACTIONS(3522), + [anon_sym_type] = ACTIONS(3522), + [anon_sym_namespace] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3522), + [anon_sym_RBRACE] = ACTIONS(3522), + [anon_sym_typeof] = ACTIONS(3522), + [anon_sym_import] = ACTIONS(3522), + [anon_sym_from] = ACTIONS(3522), + [anon_sym_with] = ACTIONS(3522), + [anon_sym_var] = ACTIONS(3522), + [anon_sym_let] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_else] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_LPAREN] = ACTIONS(3522), + [anon_sym_await] = ACTIONS(3522), + [anon_sym_of] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_try] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_debugger] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_throw] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym_yield] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_LTtemplate_GT] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(3522), + [anon_sym_SQUOTE] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_async] = ACTIONS(3522), + [anon_sym_function] = ACTIONS(3522), + [anon_sym_new] = ACTIONS(3522), + [anon_sym_using] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_SLASH] = ACTIONS(3522), + [anon_sym_LT] = ACTIONS(3522), + [anon_sym_TILDE] = ACTIONS(3522), + [anon_sym_void] = ACTIONS(3522), + [anon_sym_delete] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3522), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3522), + [sym_number] = ACTIONS(3522), + [sym_private_property_identifier] = ACTIONS(3522), + [sym_this] = ACTIONS(3522), + [sym_super] = ACTIONS(3522), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [sym_null] = ACTIONS(3522), + [sym_undefined] = ACTIONS(3522), + [anon_sym_AT] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_readonly] = ACTIONS(3522), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_declare] = ACTIONS(3522), + [anon_sym_public] = ACTIONS(3522), + [anon_sym_private] = ACTIONS(3522), + [anon_sym_protected] = ACTIONS(3522), + [anon_sym_override] = ACTIONS(3522), + [anon_sym_module] = ACTIONS(3522), + [anon_sym_any] = ACTIONS(3522), + [anon_sym_number] = ACTIONS(3522), + [anon_sym_boolean] = ACTIONS(3522), + [anon_sym_string] = ACTIONS(3522), + [anon_sym_symbol] = ACTIONS(3522), + [anon_sym_object] = ACTIONS(3522), + [anon_sym_property] = ACTIONS(3522), + [anon_sym_signal] = ACTIONS(3522), + [anon_sym_on] = ACTIONS(3522), + [anon_sym_required] = ACTIONS(3522), + [anon_sym_component] = ACTIONS(3522), + [anon_sym_abstract] = ACTIONS(3522), + [anon_sym_interface] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [sym_html_comment] = ACTIONS(5), + }, + [1520] = { + [sym_comment] = STATE(1520), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), [anon_sym_LBRACE] = ACTIONS(2368), [anon_sym_RBRACE] = ACTIONS(2368), - [anon_sym_typeof] = ACTIONS(2366), - [anon_sym_import] = ACTIONS(2366), - [anon_sym_from] = ACTIONS(2366), - [anon_sym_var] = ACTIONS(2366), - [anon_sym_let] = ACTIONS(2366), - [anon_sym_const] = ACTIONS(2366), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), [anon_sym_BANG] = ACTIONS(2368), - [anon_sym_else] = ACTIONS(2366), - [anon_sym_if] = ACTIONS(2366), - [anon_sym_switch] = ACTIONS(2366), - [anon_sym_for] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), [anon_sym_LPAREN] = ACTIONS(2368), - [anon_sym_await] = ACTIONS(2366), - [anon_sym_of] = ACTIONS(2366), - [anon_sym_while] = ACTIONS(2366), - [anon_sym_do] = ACTIONS(2366), - [anon_sym_try] = ACTIONS(2366), - [anon_sym_with] = ACTIONS(2366), - [anon_sym_break] = ACTIONS(2366), - [anon_sym_continue] = ACTIONS(2366), - [anon_sym_debugger] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2366), - [anon_sym_throw] = ACTIONS(2366), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), [anon_sym_SEMI] = ACTIONS(2368), - [anon_sym_case] = ACTIONS(2366), - [anon_sym_yield] = ACTIONS(2366), + [anon_sym_yield] = ACTIONS(2368), [anon_sym_LBRACK] = ACTIONS(2368), [anon_sym_LTtemplate_GT] = ACTIONS(2368), - [anon_sym_LT] = ACTIONS(2366), - [anon_sym_SLASH] = ACTIONS(2366), - [anon_sym_class] = ACTIONS(2366), - [anon_sym_async] = ACTIONS(2366), - [anon_sym_function] = ACTIONS(2366), - [anon_sym_new] = ACTIONS(2366), - [anon_sym_PLUS] = ACTIONS(2366), - [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), [anon_sym_TILDE] = ACTIONS(2368), - [anon_sym_void] = ACTIONS(2366), - [anon_sym_delete] = ACTIONS(2366), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), [anon_sym_PLUS_PLUS] = ACTIONS(2368), [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [1521] = { + [sym_comment] = STATE(1521), + [sym_identifier] = ACTIONS(3528), + [anon_sym_export] = ACTIONS(3528), + [anon_sym_type] = ACTIONS(3528), + [anon_sym_namespace] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_typeof] = ACTIONS(3528), + [anon_sym_import] = ACTIONS(3528), + [anon_sym_from] = ACTIONS(3528), + [anon_sym_with] = ACTIONS(3528), + [anon_sym_var] = ACTIONS(3528), + [anon_sym_let] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_else] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_LPAREN] = ACTIONS(3528), + [anon_sym_await] = ACTIONS(3528), + [anon_sym_of] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_do] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_debugger] = ACTIONS(3528), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_throw] = ACTIONS(3528), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_yield] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_LTtemplate_GT] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [anon_sym_class] = ACTIONS(3528), + [anon_sym_async] = ACTIONS(3528), + [anon_sym_function] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_using] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_SLASH] = ACTIONS(3528), + [anon_sym_LT] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_void] = ACTIONS(3528), + [anon_sym_delete] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3528), + [anon_sym_DASH_DASH] = ACTIONS(3528), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3528), + [sym_number] = ACTIONS(3528), + [sym_private_property_identifier] = ACTIONS(3528), + [sym_this] = ACTIONS(3528), + [sym_super] = ACTIONS(3528), + [sym_true] = ACTIONS(3528), + [sym_false] = ACTIONS(3528), + [sym_null] = ACTIONS(3528), + [sym_undefined] = ACTIONS(3528), + [anon_sym_AT] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_readonly] = ACTIONS(3528), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3528), + [anon_sym_declare] = ACTIONS(3528), + [anon_sym_public] = ACTIONS(3528), + [anon_sym_private] = ACTIONS(3528), + [anon_sym_protected] = ACTIONS(3528), + [anon_sym_override] = ACTIONS(3528), + [anon_sym_module] = ACTIONS(3528), + [anon_sym_any] = ACTIONS(3528), + [anon_sym_number] = ACTIONS(3528), + [anon_sym_boolean] = ACTIONS(3528), + [anon_sym_string] = ACTIONS(3528), + [anon_sym_symbol] = ACTIONS(3528), + [anon_sym_object] = ACTIONS(3528), + [anon_sym_property] = ACTIONS(3528), + [anon_sym_signal] = ACTIONS(3528), + [anon_sym_on] = ACTIONS(3528), + [anon_sym_required] = ACTIONS(3528), + [anon_sym_component] = ACTIONS(3528), + [anon_sym_abstract] = ACTIONS(3528), + [anon_sym_interface] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), + [sym_html_comment] = ACTIONS(5), + }, + [1522] = { + [sym_comment] = STATE(1522), + [sym_identifier] = ACTIONS(3532), + [anon_sym_export] = ACTIONS(3532), + [anon_sym_type] = ACTIONS(3532), + [anon_sym_namespace] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_RBRACE] = ACTIONS(3532), + [anon_sym_typeof] = ACTIONS(3532), + [anon_sym_import] = ACTIONS(3532), + [anon_sym_from] = ACTIONS(3532), + [anon_sym_with] = ACTIONS(3532), + [anon_sym_var] = ACTIONS(3532), + [anon_sym_let] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_else] = ACTIONS(3532), + [anon_sym_if] = ACTIONS(3532), + [anon_sym_switch] = ACTIONS(3532), + [anon_sym_for] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(3532), + [anon_sym_await] = ACTIONS(3532), + [anon_sym_of] = ACTIONS(3532), + [anon_sym_while] = ACTIONS(3532), + [anon_sym_do] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3532), + [anon_sym_break] = ACTIONS(3532), + [anon_sym_continue] = ACTIONS(3532), + [anon_sym_debugger] = ACTIONS(3532), + [anon_sym_return] = ACTIONS(3532), + [anon_sym_throw] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym_yield] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LTtemplate_GT] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_async] = ACTIONS(3532), + [anon_sym_function] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3532), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_SLASH] = ACTIONS(3532), + [anon_sym_LT] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_void] = ACTIONS(3532), + [anon_sym_delete] = ACTIONS(3532), + [anon_sym_PLUS_PLUS] = ACTIONS(3532), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3532), + [sym_number] = ACTIONS(3532), + [sym_private_property_identifier] = ACTIONS(3532), + [sym_this] = ACTIONS(3532), + [sym_super] = ACTIONS(3532), + [sym_true] = ACTIONS(3532), + [sym_false] = ACTIONS(3532), + [sym_null] = ACTIONS(3532), + [sym_undefined] = ACTIONS(3532), + [anon_sym_AT] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_readonly] = ACTIONS(3532), + [anon_sym_get] = ACTIONS(3532), + [anon_sym_set] = ACTIONS(3532), + [anon_sym_declare] = ACTIONS(3532), + [anon_sym_public] = ACTIONS(3532), + [anon_sym_private] = ACTIONS(3532), + [anon_sym_protected] = ACTIONS(3532), + [anon_sym_override] = ACTIONS(3532), + [anon_sym_module] = ACTIONS(3532), + [anon_sym_any] = ACTIONS(3532), + [anon_sym_number] = ACTIONS(3532), + [anon_sym_boolean] = ACTIONS(3532), + [anon_sym_string] = ACTIONS(3532), + [anon_sym_symbol] = ACTIONS(3532), + [anon_sym_object] = ACTIONS(3532), + [anon_sym_property] = ACTIONS(3532), + [anon_sym_signal] = ACTIONS(3532), + [anon_sym_on] = ACTIONS(3532), + [anon_sym_required] = ACTIONS(3532), + [anon_sym_component] = ACTIONS(3532), + [anon_sym_abstract] = ACTIONS(3532), + [anon_sym_interface] = ACTIONS(3532), + [anon_sym_enum] = ACTIONS(3532), + [sym_html_comment] = ACTIONS(5), + }, + [1523] = { + [sym_comment] = STATE(1523), + [sym_identifier] = ACTIONS(3582), + [anon_sym_export] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_namespace] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_RBRACE] = ACTIONS(3582), + [anon_sym_typeof] = ACTIONS(3582), + [anon_sym_import] = ACTIONS(3582), + [anon_sym_from] = ACTIONS(3582), + [anon_sym_with] = ACTIONS(3582), + [anon_sym_var] = ACTIONS(3582), + [anon_sym_let] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_else] = ACTIONS(3582), + [anon_sym_if] = ACTIONS(3582), + [anon_sym_switch] = ACTIONS(3582), + [anon_sym_for] = ACTIONS(3582), + [anon_sym_LPAREN] = ACTIONS(3582), + [anon_sym_await] = ACTIONS(3582), + [anon_sym_of] = ACTIONS(3582), + [anon_sym_while] = ACTIONS(3582), + [anon_sym_do] = ACTIONS(3582), + [anon_sym_try] = ACTIONS(3582), + [anon_sym_break] = ACTIONS(3582), + [anon_sym_continue] = ACTIONS(3582), + [anon_sym_debugger] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3582), + [anon_sym_throw] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_yield] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LTtemplate_GT] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_async] = ACTIONS(3582), + [anon_sym_function] = ACTIONS(3582), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_using] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3582), + [anon_sym_SLASH] = ACTIONS(3582), + [anon_sym_LT] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_void] = ACTIONS(3582), + [anon_sym_delete] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3582), + [sym_number] = ACTIONS(3582), + [sym_private_property_identifier] = ACTIONS(3582), + [sym_this] = ACTIONS(3582), + [sym_super] = ACTIONS(3582), + [sym_true] = ACTIONS(3582), + [sym_false] = ACTIONS(3582), + [sym_null] = ACTIONS(3582), + [sym_undefined] = ACTIONS(3582), + [anon_sym_AT] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_readonly] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(3582), + [anon_sym_set] = ACTIONS(3582), + [anon_sym_declare] = ACTIONS(3582), + [anon_sym_public] = ACTIONS(3582), + [anon_sym_private] = ACTIONS(3582), + [anon_sym_protected] = ACTIONS(3582), + [anon_sym_override] = ACTIONS(3582), + [anon_sym_module] = ACTIONS(3582), + [anon_sym_any] = ACTIONS(3582), + [anon_sym_number] = ACTIONS(3582), + [anon_sym_boolean] = ACTIONS(3582), + [anon_sym_string] = ACTIONS(3582), + [anon_sym_symbol] = ACTIONS(3582), + [anon_sym_object] = ACTIONS(3582), + [anon_sym_property] = ACTIONS(3582), + [anon_sym_signal] = ACTIONS(3582), + [anon_sym_on] = ACTIONS(3582), + [anon_sym_required] = ACTIONS(3582), + [anon_sym_component] = ACTIONS(3582), + [anon_sym_abstract] = ACTIONS(3582), + [anon_sym_interface] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), + [sym_html_comment] = ACTIONS(5), + }, + [1524] = { + [sym_comment] = STATE(1524), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_from] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_else] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_of] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_LTtemplate_GT] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2328), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_using] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2328), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2328), + [sym_number] = ACTIONS(2328), + [sym_private_property_identifier] = ACTIONS(2328), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_property] = ACTIONS(2328), + [anon_sym_signal] = ACTIONS(2328), + [anon_sym_on] = ACTIONS(2328), + [anon_sym_required] = ACTIONS(2328), + [anon_sym_component] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym_html_comment] = ACTIONS(5), + }, + [1525] = { + [sym_comment] = STATE(1525), + [sym_identifier] = ACTIONS(3626), + [anon_sym_export] = ACTIONS(3626), + [anon_sym_type] = ACTIONS(3626), + [anon_sym_namespace] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3626), + [anon_sym_RBRACE] = ACTIONS(3626), + [anon_sym_typeof] = ACTIONS(3626), + [anon_sym_import] = ACTIONS(3626), + [anon_sym_from] = ACTIONS(3626), + [anon_sym_with] = ACTIONS(3626), + [anon_sym_var] = ACTIONS(3626), + [anon_sym_let] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_else] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3626), + [anon_sym_await] = ACTIONS(3626), + [anon_sym_of] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_debugger] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_LTtemplate_GT] = ACTIONS(3626), + [anon_sym_DQUOTE] = ACTIONS(3626), + [anon_sym_SQUOTE] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_async] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_SLASH] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_TILDE] = ACTIONS(3626), + [anon_sym_void] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3626), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3626), + [sym_number] = ACTIONS(3626), + [sym_private_property_identifier] = ACTIONS(3626), + [sym_this] = ACTIONS(3626), + [sym_super] = ACTIONS(3626), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [sym_null] = ACTIONS(3626), + [sym_undefined] = ACTIONS(3626), + [anon_sym_AT] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_readonly] = ACTIONS(3626), + [anon_sym_get] = ACTIONS(3626), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_declare] = ACTIONS(3626), + [anon_sym_public] = ACTIONS(3626), + [anon_sym_private] = ACTIONS(3626), + [anon_sym_protected] = ACTIONS(3626), + [anon_sym_override] = ACTIONS(3626), + [anon_sym_module] = ACTIONS(3626), + [anon_sym_any] = ACTIONS(3626), + [anon_sym_number] = ACTIONS(3626), + [anon_sym_boolean] = ACTIONS(3626), + [anon_sym_string] = ACTIONS(3626), + [anon_sym_symbol] = ACTIONS(3626), + [anon_sym_object] = ACTIONS(3626), + [anon_sym_property] = ACTIONS(3626), + [anon_sym_signal] = ACTIONS(3626), + [anon_sym_on] = ACTIONS(3626), + [anon_sym_required] = ACTIONS(3626), + [anon_sym_component] = ACTIONS(3626), + [anon_sym_abstract] = ACTIONS(3626), + [anon_sym_interface] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [sym_html_comment] = ACTIONS(5), + }, + [1526] = { + [sym_comment] = STATE(1526), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_finally] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), [anon_sym_DQUOTE] = ACTIONS(2368), [anon_sym_SQUOTE] = ACTIONS(2368), - [sym_comment] = ACTIONS(3), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(2368), [sym_number] = ACTIONS(2368), - [sym_this] = ACTIONS(2366), - [sym_super] = ACTIONS(2366), - [sym_true] = ACTIONS(2366), - [sym_false] = ACTIONS(2366), - [sym_null] = ACTIONS(2366), - [sym_undefined] = ACTIONS(2366), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), [anon_sym_AT] = ACTIONS(2368), - [anon_sym_static] = ACTIONS(2366), - [anon_sym_readonly] = ACTIONS(2366), - [anon_sym_get] = ACTIONS(2366), - [anon_sym_set] = ACTIONS(2366), - [anon_sym_declare] = ACTIONS(2366), - [anon_sym_public] = ACTIONS(2366), - [anon_sym_private] = ACTIONS(2366), - [anon_sym_protected] = ACTIONS(2366), - [anon_sym_override] = ACTIONS(2366), - [anon_sym_module] = ACTIONS(2366), - [anon_sym_any] = ACTIONS(2366), - [anon_sym_number] = ACTIONS(2366), - [anon_sym_boolean] = ACTIONS(2366), - [anon_sym_string] = ACTIONS(2366), - [anon_sym_symbol] = ACTIONS(2366), - [anon_sym_property] = ACTIONS(2366), - [anon_sym_signal] = ACTIONS(2366), - [anon_sym_on] = ACTIONS(2366), - [anon_sym_required] = ACTIONS(2366), - [anon_sym_component] = ACTIONS(2366), - [anon_sym_abstract] = ACTIONS(2366), - [anon_sym_interface] = ACTIONS(2366), - [anon_sym_enum] = ACTIONS(2366), - }, - [713] = { - [sym_identifier] = ACTIONS(2370), - [anon_sym_export] = ACTIONS(2370), - [anon_sym_default] = ACTIONS(2370), - [anon_sym_type] = ACTIONS(2370), - [anon_sym_namespace] = ACTIONS(2370), - [anon_sym_LBRACE] = ACTIONS(2372), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_typeof] = ACTIONS(2370), - [anon_sym_import] = ACTIONS(2370), - [anon_sym_from] = ACTIONS(2370), - [anon_sym_var] = ACTIONS(2370), - [anon_sym_let] = ACTIONS(2370), - [anon_sym_const] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2372), - [anon_sym_else] = ACTIONS(2370), - [anon_sym_if] = ACTIONS(2370), - [anon_sym_switch] = ACTIONS(2370), - [anon_sym_for] = ACTIONS(2370), - [anon_sym_LPAREN] = ACTIONS(2372), - [anon_sym_await] = ACTIONS(2370), - [anon_sym_of] = ACTIONS(2370), - [anon_sym_while] = ACTIONS(2370), - [anon_sym_do] = ACTIONS(2370), - [anon_sym_try] = ACTIONS(2370), - [anon_sym_with] = ACTIONS(2370), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2370), - [anon_sym_debugger] = ACTIONS(2370), - [anon_sym_return] = ACTIONS(2370), - [anon_sym_throw] = ACTIONS(2370), - [anon_sym_SEMI] = ACTIONS(2372), - [anon_sym_case] = ACTIONS(2370), - [anon_sym_yield] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2372), - [anon_sym_LTtemplate_GT] = ACTIONS(2372), - [anon_sym_LT] = ACTIONS(2370), - [anon_sym_SLASH] = ACTIONS(2370), - [anon_sym_class] = ACTIONS(2370), - [anon_sym_async] = ACTIONS(2370), - [anon_sym_function] = ACTIONS(2370), - [anon_sym_new] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(2372), - [anon_sym_void] = ACTIONS(2370), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2372), - [anon_sym_DASH_DASH] = ACTIONS(2372), - [anon_sym_DQUOTE] = ACTIONS(2372), - [anon_sym_SQUOTE] = ACTIONS(2372), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2372), - [sym_number] = ACTIONS(2372), - [sym_this] = ACTIONS(2370), - [sym_super] = ACTIONS(2370), - [sym_true] = ACTIONS(2370), - [sym_false] = ACTIONS(2370), - [sym_null] = ACTIONS(2370), - [sym_undefined] = ACTIONS(2370), - [anon_sym_AT] = ACTIONS(2372), - [anon_sym_static] = ACTIONS(2370), - [anon_sym_readonly] = ACTIONS(2370), - [anon_sym_get] = ACTIONS(2370), - [anon_sym_set] = ACTIONS(2370), - [anon_sym_declare] = ACTIONS(2370), - [anon_sym_public] = ACTIONS(2370), - [anon_sym_private] = ACTIONS(2370), - [anon_sym_protected] = ACTIONS(2370), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2370), - [anon_sym_any] = ACTIONS(2370), - [anon_sym_number] = ACTIONS(2370), - [anon_sym_boolean] = ACTIONS(2370), - [anon_sym_string] = ACTIONS(2370), - [anon_sym_symbol] = ACTIONS(2370), - [anon_sym_property] = ACTIONS(2370), - [anon_sym_signal] = ACTIONS(2370), - [anon_sym_on] = ACTIONS(2370), - [anon_sym_required] = ACTIONS(2370), - [anon_sym_component] = ACTIONS(2370), - [anon_sym_abstract] = ACTIONS(2370), - [anon_sym_interface] = ACTIONS(2370), - [anon_sym_enum] = ACTIONS(2370), - }, - [714] = { - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2352), - [anon_sym_RBRACE] = ACTIONS(2352), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2352), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2352), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2352), - [anon_sym_LTtemplate_GT] = ACTIONS(2352), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2352), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2352), - [anon_sym_DASH_DASH] = ACTIONS(2352), - [anon_sym_DQUOTE] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(2352), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2352), - [sym_number] = ACTIONS(2352), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2352), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - }, - [715] = { - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2352), - [anon_sym_RBRACE] = ACTIONS(2352), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2352), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2352), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2352), - [anon_sym_LTtemplate_GT] = ACTIONS(2352), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2352), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2352), - [anon_sym_DASH_DASH] = ACTIONS(2352), - [anon_sym_DQUOTE] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(2352), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2352), - [sym_number] = ACTIONS(2352), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2352), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - }, - [716] = { - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2352), - [anon_sym_RBRACE] = ACTIONS(2352), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2352), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2352), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2352), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2352), - [anon_sym_LTtemplate_GT] = ACTIONS(2352), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2352), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2352), - [anon_sym_DASH_DASH] = ACTIONS(2352), - [anon_sym_DQUOTE] = ACTIONS(2352), - [anon_sym_SQUOTE] = ACTIONS(2352), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2352), - [sym_number] = ACTIONS(2352), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2352), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - }, - [717] = { - [sym_identifier] = ACTIONS(2374), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_typeof] = ACTIONS(2374), - [anon_sym_import] = ACTIONS(2374), - [anon_sym_from] = ACTIONS(2374), - [anon_sym_var] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2376), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2376), - [anon_sym_await] = ACTIONS(2374), - [anon_sym_of] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_with] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_debugger] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_case] = ACTIONS(2374), - [anon_sym_yield] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2376), - [anon_sym_LTtemplate_GT] = ACTIONS(2376), - [anon_sym_LT] = ACTIONS(2374), - [anon_sym_SLASH] = ACTIONS(2374), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_function] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_TILDE] = ACTIONS(2376), - [anon_sym_void] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2376), - [anon_sym_DASH_DASH] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2376), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2376), - [sym_number] = ACTIONS(2376), - [sym_this] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_undefined] = ACTIONS(2374), - [anon_sym_AT] = ACTIONS(2376), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_readonly] = ACTIONS(2374), - [anon_sym_get] = ACTIONS(2374), - [anon_sym_set] = ACTIONS(2374), - [anon_sym_declare] = ACTIONS(2374), - [anon_sym_public] = ACTIONS(2374), - [anon_sym_private] = ACTIONS(2374), - [anon_sym_protected] = ACTIONS(2374), - [anon_sym_override] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_any] = ACTIONS(2374), - [anon_sym_number] = ACTIONS(2374), - [anon_sym_boolean] = ACTIONS(2374), - [anon_sym_string] = ACTIONS(2374), - [anon_sym_symbol] = ACTIONS(2374), - [anon_sym_property] = ACTIONS(2374), - [anon_sym_signal] = ACTIONS(2374), - [anon_sym_on] = ACTIONS(2374), - [anon_sym_required] = ACTIONS(2374), - [anon_sym_component] = ACTIONS(2374), - [anon_sym_abstract] = ACTIONS(2374), - [anon_sym_interface] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - }, - [718] = { - [sym_identifier] = ACTIONS(2378), - [anon_sym_export] = ACTIONS(2378), - [anon_sym_default] = ACTIONS(2378), - [anon_sym_type] = ACTIONS(2378), - [anon_sym_namespace] = ACTIONS(2378), - [anon_sym_LBRACE] = ACTIONS(2380), - [anon_sym_RBRACE] = ACTIONS(2380), - [anon_sym_typeof] = ACTIONS(2378), - [anon_sym_import] = ACTIONS(2378), - [anon_sym_from] = ACTIONS(2378), - [anon_sym_var] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2378), - [anon_sym_const] = ACTIONS(2378), - [anon_sym_BANG] = ACTIONS(2380), - [anon_sym_else] = ACTIONS(2378), - [anon_sym_if] = ACTIONS(2378), - [anon_sym_switch] = ACTIONS(2378), - [anon_sym_for] = ACTIONS(2378), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_await] = ACTIONS(2378), - [anon_sym_of] = ACTIONS(2378), - [anon_sym_while] = ACTIONS(2378), - [anon_sym_do] = ACTIONS(2378), - [anon_sym_try] = ACTIONS(2378), - [anon_sym_with] = ACTIONS(2378), - [anon_sym_break] = ACTIONS(2378), - [anon_sym_continue] = ACTIONS(2378), - [anon_sym_debugger] = ACTIONS(2378), - [anon_sym_return] = ACTIONS(2378), - [anon_sym_throw] = ACTIONS(2378), - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_case] = ACTIONS(2378), - [anon_sym_yield] = ACTIONS(2378), - [anon_sym_LBRACK] = ACTIONS(2380), - [anon_sym_LTtemplate_GT] = ACTIONS(2380), - [anon_sym_LT] = ACTIONS(2378), - [anon_sym_SLASH] = ACTIONS(2378), - [anon_sym_class] = ACTIONS(2378), - [anon_sym_async] = ACTIONS(2378), - [anon_sym_function] = ACTIONS(2378), - [anon_sym_new] = ACTIONS(2378), - [anon_sym_PLUS] = ACTIONS(2378), - [anon_sym_DASH] = ACTIONS(2378), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_void] = ACTIONS(2378), - [anon_sym_delete] = ACTIONS(2378), - [anon_sym_PLUS_PLUS] = ACTIONS(2380), - [anon_sym_DASH_DASH] = ACTIONS(2380), - [anon_sym_DQUOTE] = ACTIONS(2380), - [anon_sym_SQUOTE] = ACTIONS(2380), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2380), - [sym_number] = ACTIONS(2380), - [sym_this] = ACTIONS(2378), - [sym_super] = ACTIONS(2378), - [sym_true] = ACTIONS(2378), - [sym_false] = ACTIONS(2378), - [sym_null] = ACTIONS(2378), - [sym_undefined] = ACTIONS(2378), - [anon_sym_AT] = ACTIONS(2380), - [anon_sym_static] = ACTIONS(2378), - [anon_sym_readonly] = ACTIONS(2378), - [anon_sym_get] = ACTIONS(2378), - [anon_sym_set] = ACTIONS(2378), - [anon_sym_declare] = ACTIONS(2378), - [anon_sym_public] = ACTIONS(2378), - [anon_sym_private] = ACTIONS(2378), - [anon_sym_protected] = ACTIONS(2378), - [anon_sym_override] = ACTIONS(2378), - [anon_sym_module] = ACTIONS(2378), - [anon_sym_any] = ACTIONS(2378), - [anon_sym_number] = ACTIONS(2378), - [anon_sym_boolean] = ACTIONS(2378), - [anon_sym_string] = ACTIONS(2378), - [anon_sym_symbol] = ACTIONS(2378), - [anon_sym_property] = ACTIONS(2378), - [anon_sym_signal] = ACTIONS(2378), - [anon_sym_on] = ACTIONS(2378), - [anon_sym_required] = ACTIONS(2378), - [anon_sym_component] = ACTIONS(2378), - [anon_sym_abstract] = ACTIONS(2378), - [anon_sym_interface] = ACTIONS(2378), - [anon_sym_enum] = ACTIONS(2378), - }, - [719] = { - [sym_identifier] = ACTIONS(2382), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_namespace] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(2382), - [anon_sym_import] = ACTIONS(2382), - [anon_sym_from] = ACTIONS(2382), - [anon_sym_var] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_await] = ACTIONS(2382), - [anon_sym_of] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_with] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_debugger] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_case] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_LTtemplate_GT] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2382), - [anon_sym_SLASH] = ACTIONS(2382), - [anon_sym_class] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_function] = ACTIONS(2382), - [anon_sym_new] = ACTIONS(2382), - [anon_sym_PLUS] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_TILDE] = ACTIONS(2384), - [anon_sym_void] = ACTIONS(2382), - [anon_sym_delete] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2384), - [anon_sym_DQUOTE] = ACTIONS(2384), - [anon_sym_SQUOTE] = ACTIONS(2384), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2384), - [sym_number] = ACTIONS(2384), - [sym_this] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_undefined] = ACTIONS(2382), - [anon_sym_AT] = ACTIONS(2384), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_readonly] = ACTIONS(2382), - [anon_sym_get] = ACTIONS(2382), - [anon_sym_set] = ACTIONS(2382), - [anon_sym_declare] = ACTIONS(2382), - [anon_sym_public] = ACTIONS(2382), - [anon_sym_private] = ACTIONS(2382), - [anon_sym_protected] = ACTIONS(2382), - [anon_sym_override] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_any] = ACTIONS(2382), - [anon_sym_number] = ACTIONS(2382), - [anon_sym_boolean] = ACTIONS(2382), - [anon_sym_string] = ACTIONS(2382), - [anon_sym_symbol] = ACTIONS(2382), - [anon_sym_property] = ACTIONS(2382), - [anon_sym_signal] = ACTIONS(2382), - [anon_sym_on] = ACTIONS(2382), - [anon_sym_required] = ACTIONS(2382), - [anon_sym_component] = ACTIONS(2382), - [anon_sym_abstract] = ACTIONS(2382), - [anon_sym_interface] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - }, - [720] = { - [sym_identifier] = ACTIONS(2386), - [anon_sym_export] = ACTIONS(2386), - [anon_sym_default] = ACTIONS(2386), - [anon_sym_type] = ACTIONS(2386), - [anon_sym_namespace] = ACTIONS(2386), - [anon_sym_LBRACE] = ACTIONS(2388), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_typeof] = ACTIONS(2386), - [anon_sym_import] = ACTIONS(2386), - [anon_sym_from] = ACTIONS(2386), - [anon_sym_var] = ACTIONS(2386), - [anon_sym_let] = ACTIONS(2386), - [anon_sym_const] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2388), - [anon_sym_else] = ACTIONS(2386), - [anon_sym_if] = ACTIONS(2386), - [anon_sym_switch] = ACTIONS(2386), - [anon_sym_for] = ACTIONS(2386), - [anon_sym_LPAREN] = ACTIONS(2388), - [anon_sym_await] = ACTIONS(2386), - [anon_sym_of] = ACTIONS(2386), - [anon_sym_while] = ACTIONS(2386), - [anon_sym_do] = ACTIONS(2386), - [anon_sym_try] = ACTIONS(2386), - [anon_sym_with] = ACTIONS(2386), - [anon_sym_break] = ACTIONS(2386), - [anon_sym_continue] = ACTIONS(2386), - [anon_sym_debugger] = ACTIONS(2386), - [anon_sym_return] = ACTIONS(2386), - [anon_sym_throw] = ACTIONS(2386), - [anon_sym_SEMI] = ACTIONS(2388), - [anon_sym_case] = ACTIONS(2386), - [anon_sym_yield] = ACTIONS(2386), - [anon_sym_LBRACK] = ACTIONS(2388), - [anon_sym_LTtemplate_GT] = ACTIONS(2388), - [anon_sym_LT] = ACTIONS(2386), - [anon_sym_SLASH] = ACTIONS(2386), - [anon_sym_class] = ACTIONS(2386), - [anon_sym_async] = ACTIONS(2386), - [anon_sym_function] = ACTIONS(2386), - [anon_sym_new] = ACTIONS(2386), - [anon_sym_PLUS] = ACTIONS(2386), - [anon_sym_DASH] = ACTIONS(2386), - [anon_sym_TILDE] = ACTIONS(2388), - [anon_sym_void] = ACTIONS(2386), - [anon_sym_delete] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(2388), - [anon_sym_DQUOTE] = ACTIONS(2388), - [anon_sym_SQUOTE] = ACTIONS(2388), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2388), - [sym_number] = ACTIONS(2388), - [sym_this] = ACTIONS(2386), - [sym_super] = ACTIONS(2386), - [sym_true] = ACTIONS(2386), - [sym_false] = ACTIONS(2386), - [sym_null] = ACTIONS(2386), - [sym_undefined] = ACTIONS(2386), - [anon_sym_AT] = ACTIONS(2388), - [anon_sym_static] = ACTIONS(2386), - [anon_sym_readonly] = ACTIONS(2386), - [anon_sym_get] = ACTIONS(2386), - [anon_sym_set] = ACTIONS(2386), - [anon_sym_declare] = ACTIONS(2386), - [anon_sym_public] = ACTIONS(2386), - [anon_sym_private] = ACTIONS(2386), - [anon_sym_protected] = ACTIONS(2386), - [anon_sym_override] = ACTIONS(2386), - [anon_sym_module] = ACTIONS(2386), - [anon_sym_any] = ACTIONS(2386), - [anon_sym_number] = ACTIONS(2386), - [anon_sym_boolean] = ACTIONS(2386), - [anon_sym_string] = ACTIONS(2386), - [anon_sym_symbol] = ACTIONS(2386), - [anon_sym_property] = ACTIONS(2386), - [anon_sym_signal] = ACTIONS(2386), - [anon_sym_on] = ACTIONS(2386), - [anon_sym_required] = ACTIONS(2386), - [anon_sym_component] = ACTIONS(2386), - [anon_sym_abstract] = ACTIONS(2386), - [anon_sym_interface] = ACTIONS(2386), - [anon_sym_enum] = ACTIONS(2386), - }, - [721] = { - [sym_identifier] = ACTIONS(2390), - [anon_sym_export] = ACTIONS(2390), - [anon_sym_default] = ACTIONS(2390), - [anon_sym_type] = ACTIONS(2390), - [anon_sym_namespace] = ACTIONS(2390), - [anon_sym_LBRACE] = ACTIONS(2392), - [anon_sym_RBRACE] = ACTIONS(2392), - [anon_sym_typeof] = ACTIONS(2390), - [anon_sym_import] = ACTIONS(2390), - [anon_sym_from] = ACTIONS(2390), - [anon_sym_var] = ACTIONS(2390), - [anon_sym_let] = ACTIONS(2390), - [anon_sym_const] = ACTIONS(2390), - [anon_sym_BANG] = ACTIONS(2392), - [anon_sym_else] = ACTIONS(2390), - [anon_sym_if] = ACTIONS(2390), - [anon_sym_switch] = ACTIONS(2390), - [anon_sym_for] = ACTIONS(2390), - [anon_sym_LPAREN] = ACTIONS(2392), - [anon_sym_await] = ACTIONS(2390), - [anon_sym_of] = ACTIONS(2390), - [anon_sym_while] = ACTIONS(2390), - [anon_sym_do] = ACTIONS(2390), - [anon_sym_try] = ACTIONS(2390), - [anon_sym_with] = ACTIONS(2390), - [anon_sym_break] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2390), - [anon_sym_debugger] = ACTIONS(2390), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_throw] = ACTIONS(2390), - [anon_sym_SEMI] = ACTIONS(2392), - [anon_sym_case] = ACTIONS(2390), - [anon_sym_yield] = ACTIONS(2390), - [anon_sym_LBRACK] = ACTIONS(2392), - [anon_sym_LTtemplate_GT] = ACTIONS(2392), - [anon_sym_LT] = ACTIONS(2390), - [anon_sym_SLASH] = ACTIONS(2390), - [anon_sym_class] = ACTIONS(2390), - [anon_sym_async] = ACTIONS(2390), - [anon_sym_function] = ACTIONS(2390), - [anon_sym_new] = ACTIONS(2390), - [anon_sym_PLUS] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2392), - [anon_sym_void] = ACTIONS(2390), - [anon_sym_delete] = ACTIONS(2390), - [anon_sym_PLUS_PLUS] = ACTIONS(2392), - [anon_sym_DASH_DASH] = ACTIONS(2392), - [anon_sym_DQUOTE] = ACTIONS(2392), - [anon_sym_SQUOTE] = ACTIONS(2392), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2392), - [sym_number] = ACTIONS(2392), - [sym_this] = ACTIONS(2390), - [sym_super] = ACTIONS(2390), - [sym_true] = ACTIONS(2390), - [sym_false] = ACTIONS(2390), - [sym_null] = ACTIONS(2390), - [sym_undefined] = ACTIONS(2390), - [anon_sym_AT] = ACTIONS(2392), - [anon_sym_static] = ACTIONS(2390), - [anon_sym_readonly] = ACTIONS(2390), - [anon_sym_get] = ACTIONS(2390), - [anon_sym_set] = ACTIONS(2390), - [anon_sym_declare] = ACTIONS(2390), - [anon_sym_public] = ACTIONS(2390), - [anon_sym_private] = ACTIONS(2390), - [anon_sym_protected] = ACTIONS(2390), - [anon_sym_override] = ACTIONS(2390), - [anon_sym_module] = ACTIONS(2390), - [anon_sym_any] = ACTIONS(2390), - [anon_sym_number] = ACTIONS(2390), - [anon_sym_boolean] = ACTIONS(2390), - [anon_sym_string] = ACTIONS(2390), - [anon_sym_symbol] = ACTIONS(2390), - [anon_sym_property] = ACTIONS(2390), - [anon_sym_signal] = ACTIONS(2390), - [anon_sym_on] = ACTIONS(2390), - [anon_sym_required] = ACTIONS(2390), - [anon_sym_component] = ACTIONS(2390), - [anon_sym_abstract] = ACTIONS(2390), - [anon_sym_interface] = ACTIONS(2390), - [anon_sym_enum] = ACTIONS(2390), - }, - [722] = { - [sym_identifier] = ACTIONS(2394), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2396), - [anon_sym_typeof] = ACTIONS(2394), - [anon_sym_import] = ACTIONS(2394), - [anon_sym_from] = ACTIONS(2394), - [anon_sym_var] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2396), - [anon_sym_else] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_await] = ACTIONS(2394), - [anon_sym_of] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [anon_sym_with] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_debugger] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_throw] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2396), - [anon_sym_case] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_LTtemplate_GT] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_SLASH] = ACTIONS(2394), - [anon_sym_class] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_function] = ACTIONS(2394), - [anon_sym_new] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_TILDE] = ACTIONS(2396), - [anon_sym_void] = ACTIONS(2394), - [anon_sym_delete] = ACTIONS(2394), - [anon_sym_PLUS_PLUS] = ACTIONS(2396), - [anon_sym_DASH_DASH] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_SQUOTE] = ACTIONS(2396), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2396), - [sym_number] = ACTIONS(2396), - [sym_this] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_undefined] = ACTIONS(2394), - [anon_sym_AT] = ACTIONS(2396), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_readonly] = ACTIONS(2394), - [anon_sym_get] = ACTIONS(2394), - [anon_sym_set] = ACTIONS(2394), - [anon_sym_declare] = ACTIONS(2394), - [anon_sym_public] = ACTIONS(2394), - [anon_sym_private] = ACTIONS(2394), - [anon_sym_protected] = ACTIONS(2394), - [anon_sym_override] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_any] = ACTIONS(2394), - [anon_sym_number] = ACTIONS(2394), - [anon_sym_boolean] = ACTIONS(2394), - [anon_sym_string] = ACTIONS(2394), - [anon_sym_symbol] = ACTIONS(2394), - [anon_sym_property] = ACTIONS(2394), - [anon_sym_signal] = ACTIONS(2394), - [anon_sym_on] = ACTIONS(2394), - [anon_sym_required] = ACTIONS(2394), - [anon_sym_component] = ACTIONS(2394), - [anon_sym_abstract] = ACTIONS(2394), - [anon_sym_interface] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - }, - [723] = { - [sym_identifier] = ACTIONS(2398), - [anon_sym_export] = ACTIONS(2398), - [anon_sym_default] = ACTIONS(2398), - [anon_sym_type] = ACTIONS(2398), - [anon_sym_namespace] = ACTIONS(2398), - [anon_sym_LBRACE] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2400), - [anon_sym_typeof] = ACTIONS(2398), - [anon_sym_import] = ACTIONS(2398), - [anon_sym_from] = ACTIONS(2398), - [anon_sym_var] = ACTIONS(2398), - [anon_sym_let] = ACTIONS(2398), - [anon_sym_const] = ACTIONS(2398), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2398), - [anon_sym_switch] = ACTIONS(2398), - [anon_sym_for] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_await] = ACTIONS(2398), - [anon_sym_of] = ACTIONS(2398), - [anon_sym_while] = ACTIONS(2398), - [anon_sym_do] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2398), - [anon_sym_with] = ACTIONS(2398), - [anon_sym_break] = ACTIONS(2398), - [anon_sym_continue] = ACTIONS(2398), - [anon_sym_debugger] = ACTIONS(2398), - [anon_sym_return] = ACTIONS(2398), - [anon_sym_throw] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_case] = ACTIONS(2398), - [anon_sym_yield] = ACTIONS(2398), - [anon_sym_LBRACK] = ACTIONS(2400), - [anon_sym_LTtemplate_GT] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_SLASH] = ACTIONS(2398), - [anon_sym_class] = ACTIONS(2398), - [anon_sym_async] = ACTIONS(2398), - [anon_sym_function] = ACTIONS(2398), - [anon_sym_new] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2398), - [anon_sym_DASH] = ACTIONS(2398), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_void] = ACTIONS(2398), - [anon_sym_delete] = ACTIONS(2398), - [anon_sym_PLUS_PLUS] = ACTIONS(2400), - [anon_sym_DASH_DASH] = ACTIONS(2400), - [anon_sym_DQUOTE] = ACTIONS(2400), - [anon_sym_SQUOTE] = ACTIONS(2400), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2400), - [sym_number] = ACTIONS(2400), - [sym_this] = ACTIONS(2398), - [sym_super] = ACTIONS(2398), - [sym_true] = ACTIONS(2398), - [sym_false] = ACTIONS(2398), - [sym_null] = ACTIONS(2398), - [sym_undefined] = ACTIONS(2398), - [anon_sym_AT] = ACTIONS(2400), - [anon_sym_static] = ACTIONS(2398), - [anon_sym_readonly] = ACTIONS(2398), - [anon_sym_get] = ACTIONS(2398), - [anon_sym_set] = ACTIONS(2398), - [anon_sym_declare] = ACTIONS(2398), - [anon_sym_public] = ACTIONS(2398), - [anon_sym_private] = ACTIONS(2398), - [anon_sym_protected] = ACTIONS(2398), - [anon_sym_override] = ACTIONS(2398), - [anon_sym_module] = ACTIONS(2398), - [anon_sym_any] = ACTIONS(2398), - [anon_sym_number] = ACTIONS(2398), - [anon_sym_boolean] = ACTIONS(2398), - [anon_sym_string] = ACTIONS(2398), - [anon_sym_symbol] = ACTIONS(2398), - [anon_sym_property] = ACTIONS(2398), - [anon_sym_signal] = ACTIONS(2398), - [anon_sym_on] = ACTIONS(2398), - [anon_sym_required] = ACTIONS(2398), - [anon_sym_component] = ACTIONS(2398), - [anon_sym_abstract] = ACTIONS(2398), - [anon_sym_interface] = ACTIONS(2398), - [anon_sym_enum] = ACTIONS(2398), - }, - [724] = { + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), + }, + [1527] = { + [sym_comment] = STATE(1527), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), + }, + [1528] = { + [sym_comment] = STATE(1528), + [sym_identifier] = ACTIONS(3546), + [anon_sym_export] = ACTIONS(3546), + [anon_sym_type] = ACTIONS(3546), + [anon_sym_namespace] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym_typeof] = ACTIONS(3546), + [anon_sym_import] = ACTIONS(3546), + [anon_sym_from] = ACTIONS(3546), + [anon_sym_with] = ACTIONS(3546), + [anon_sym_var] = ACTIONS(3546), + [anon_sym_let] = ACTIONS(3546), + [anon_sym_const] = ACTIONS(3546), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_else] = ACTIONS(3546), + [anon_sym_if] = ACTIONS(3546), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3546), + [anon_sym_await] = ACTIONS(3546), + [anon_sym_of] = ACTIONS(3546), + [anon_sym_while] = ACTIONS(3546), + [anon_sym_do] = ACTIONS(3546), + [anon_sym_try] = ACTIONS(3546), + [anon_sym_break] = ACTIONS(3546), + [anon_sym_continue] = ACTIONS(3546), + [anon_sym_debugger] = ACTIONS(3546), + [anon_sym_return] = ACTIONS(3546), + [anon_sym_throw] = ACTIONS(3546), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_LTtemplate_GT] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [anon_sym_SQUOTE] = ACTIONS(3546), + [anon_sym_class] = ACTIONS(3546), + [anon_sym_async] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3546), + [anon_sym_using] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3546), + [anon_sym_DASH] = ACTIONS(3546), + [anon_sym_SLASH] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_void] = ACTIONS(3546), + [anon_sym_delete] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3546), + [sym_number] = ACTIONS(3546), + [sym_private_property_identifier] = ACTIONS(3546), + [sym_this] = ACTIONS(3546), + [sym_super] = ACTIONS(3546), + [sym_true] = ACTIONS(3546), + [sym_false] = ACTIONS(3546), + [sym_null] = ACTIONS(3546), + [sym_undefined] = ACTIONS(3546), + [anon_sym_AT] = ACTIONS(3546), + [anon_sym_static] = ACTIONS(3546), + [anon_sym_readonly] = ACTIONS(3546), + [anon_sym_get] = ACTIONS(3546), + [anon_sym_set] = ACTIONS(3546), + [anon_sym_declare] = ACTIONS(3546), + [anon_sym_public] = ACTIONS(3546), + [anon_sym_private] = ACTIONS(3546), + [anon_sym_protected] = ACTIONS(3546), + [anon_sym_override] = ACTIONS(3546), + [anon_sym_module] = ACTIONS(3546), + [anon_sym_any] = ACTIONS(3546), + [anon_sym_number] = ACTIONS(3546), + [anon_sym_boolean] = ACTIONS(3546), + [anon_sym_string] = ACTIONS(3546), + [anon_sym_symbol] = ACTIONS(3546), + [anon_sym_object] = ACTIONS(3546), + [anon_sym_property] = ACTIONS(3546), + [anon_sym_signal] = ACTIONS(3546), + [anon_sym_on] = ACTIONS(3546), + [anon_sym_required] = ACTIONS(3546), + [anon_sym_component] = ACTIONS(3546), + [anon_sym_abstract] = ACTIONS(3546), + [anon_sym_interface] = ACTIONS(3546), + [anon_sym_enum] = ACTIONS(3546), + [sym_html_comment] = ACTIONS(5), + }, + [1529] = { + [sym_comment] = STATE(1529), + [sym_identifier] = ACTIONS(3632), + [anon_sym_export] = ACTIONS(3632), + [anon_sym_type] = ACTIONS(3632), + [anon_sym_namespace] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_typeof] = ACTIONS(3632), + [anon_sym_import] = ACTIONS(3632), + [anon_sym_from] = ACTIONS(3632), + [anon_sym_with] = ACTIONS(3632), + [anon_sym_var] = ACTIONS(3632), + [anon_sym_let] = ACTIONS(3632), + [anon_sym_const] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_else] = ACTIONS(3632), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_switch] = ACTIONS(3632), + [anon_sym_for] = ACTIONS(3632), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_await] = ACTIONS(3632), + [anon_sym_of] = ACTIONS(3632), + [anon_sym_while] = ACTIONS(3632), + [anon_sym_do] = ACTIONS(3632), + [anon_sym_try] = ACTIONS(3632), + [anon_sym_break] = ACTIONS(3632), + [anon_sym_continue] = ACTIONS(3632), + [anon_sym_debugger] = ACTIONS(3632), + [anon_sym_return] = ACTIONS(3632), + [anon_sym_throw] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_yield] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3632), + [anon_sym_LTtemplate_GT] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_class] = ACTIONS(3632), + [anon_sym_async] = ACTIONS(3632), + [anon_sym_function] = ACTIONS(3632), + [anon_sym_new] = ACTIONS(3632), + [anon_sym_using] = ACTIONS(3632), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_SLASH] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_void] = ACTIONS(3632), + [anon_sym_delete] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3632), + [sym_number] = ACTIONS(3632), + [sym_private_property_identifier] = ACTIONS(3632), + [sym_this] = ACTIONS(3632), + [sym_super] = ACTIONS(3632), + [sym_true] = ACTIONS(3632), + [sym_false] = ACTIONS(3632), + [sym_null] = ACTIONS(3632), + [sym_undefined] = ACTIONS(3632), + [anon_sym_AT] = ACTIONS(3632), + [anon_sym_static] = ACTIONS(3632), + [anon_sym_readonly] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(3632), + [anon_sym_set] = ACTIONS(3632), + [anon_sym_declare] = ACTIONS(3632), + [anon_sym_public] = ACTIONS(3632), + [anon_sym_private] = ACTIONS(3632), + [anon_sym_protected] = ACTIONS(3632), + [anon_sym_override] = ACTIONS(3632), + [anon_sym_module] = ACTIONS(3632), + [anon_sym_any] = ACTIONS(3632), + [anon_sym_number] = ACTIONS(3632), + [anon_sym_boolean] = ACTIONS(3632), + [anon_sym_string] = ACTIONS(3632), + [anon_sym_symbol] = ACTIONS(3632), + [anon_sym_object] = ACTIONS(3632), + [anon_sym_property] = ACTIONS(3632), + [anon_sym_signal] = ACTIONS(3632), + [anon_sym_on] = ACTIONS(3632), + [anon_sym_required] = ACTIONS(3632), + [anon_sym_component] = ACTIONS(3632), + [anon_sym_abstract] = ACTIONS(3632), + [anon_sym_interface] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(3632), + [sym_html_comment] = ACTIONS(5), + }, + [1530] = { + [sym_comment] = STATE(1530), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym__automatic_semicolon] = ACTIONS(2358), + [sym_html_comment] = ACTIONS(5), + }, + [1531] = { + [sym_comment] = STATE(1531), + [sym_identifier] = ACTIONS(3604), + [anon_sym_export] = ACTIONS(3604), + [anon_sym_type] = ACTIONS(3604), + [anon_sym_namespace] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_RBRACE] = ACTIONS(3604), + [anon_sym_typeof] = ACTIONS(3604), + [anon_sym_import] = ACTIONS(3604), + [anon_sym_from] = ACTIONS(3604), + [anon_sym_with] = ACTIONS(3604), + [anon_sym_var] = ACTIONS(3604), + [anon_sym_let] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_BANG] = ACTIONS(3604), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_if] = ACTIONS(3604), + [anon_sym_switch] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3604), + [anon_sym_await] = ACTIONS(3604), + [anon_sym_of] = ACTIONS(3604), + [anon_sym_while] = ACTIONS(3604), + [anon_sym_do] = ACTIONS(3604), + [anon_sym_try] = ACTIONS(3604), + [anon_sym_break] = ACTIONS(3604), + [anon_sym_continue] = ACTIONS(3604), + [anon_sym_debugger] = ACTIONS(3604), + [anon_sym_return] = ACTIONS(3604), + [anon_sym_throw] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LTtemplate_GT] = ACTIONS(3604), + [anon_sym_DQUOTE] = ACTIONS(3604), + [anon_sym_SQUOTE] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_async] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(3604), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_SLASH] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_TILDE] = ACTIONS(3604), + [anon_sym_void] = ACTIONS(3604), + [anon_sym_delete] = ACTIONS(3604), + [anon_sym_PLUS_PLUS] = ACTIONS(3604), + [anon_sym_DASH_DASH] = ACTIONS(3604), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3604), + [sym_number] = ACTIONS(3604), + [sym_private_property_identifier] = ACTIONS(3604), + [sym_this] = ACTIONS(3604), + [sym_super] = ACTIONS(3604), + [sym_true] = ACTIONS(3604), + [sym_false] = ACTIONS(3604), + [sym_null] = ACTIONS(3604), + [sym_undefined] = ACTIONS(3604), + [anon_sym_AT] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_readonly] = ACTIONS(3604), + [anon_sym_get] = ACTIONS(3604), + [anon_sym_set] = ACTIONS(3604), + [anon_sym_declare] = ACTIONS(3604), + [anon_sym_public] = ACTIONS(3604), + [anon_sym_private] = ACTIONS(3604), + [anon_sym_protected] = ACTIONS(3604), + [anon_sym_override] = ACTIONS(3604), + [anon_sym_module] = ACTIONS(3604), + [anon_sym_any] = ACTIONS(3604), + [anon_sym_number] = ACTIONS(3604), + [anon_sym_boolean] = ACTIONS(3604), + [anon_sym_string] = ACTIONS(3604), + [anon_sym_symbol] = ACTIONS(3604), + [anon_sym_object] = ACTIONS(3604), + [anon_sym_property] = ACTIONS(3604), + [anon_sym_signal] = ACTIONS(3604), + [anon_sym_on] = ACTIONS(3604), + [anon_sym_required] = ACTIONS(3604), + [anon_sym_component] = ACTIONS(3604), + [anon_sym_abstract] = ACTIONS(3604), + [anon_sym_interface] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), + [sym_html_comment] = ACTIONS(5), + }, + [1532] = { + [sym_comment] = STATE(1532), + [sym_identifier] = ACTIONS(3606), + [anon_sym_export] = ACTIONS(3606), + [anon_sym_type] = ACTIONS(3606), + [anon_sym_namespace] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_typeof] = ACTIONS(3606), + [anon_sym_import] = ACTIONS(3606), + [anon_sym_from] = ACTIONS(3606), + [anon_sym_with] = ACTIONS(3606), + [anon_sym_var] = ACTIONS(3606), + [anon_sym_let] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_else] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_await] = ACTIONS(3606), + [anon_sym_of] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_debugger] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_throw] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_yield] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_LTtemplate_GT] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_async] = ACTIONS(3606), + [anon_sym_function] = ACTIONS(3606), + [anon_sym_new] = ACTIONS(3606), + [anon_sym_using] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_SLASH] = ACTIONS(3606), + [anon_sym_LT] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_void] = ACTIONS(3606), + [anon_sym_delete] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3606), + [sym_number] = ACTIONS(3606), + [sym_private_property_identifier] = ACTIONS(3606), + [sym_this] = ACTIONS(3606), + [sym_super] = ACTIONS(3606), + [sym_true] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [sym_undefined] = ACTIONS(3606), + [anon_sym_AT] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_readonly] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(3606), + [anon_sym_set] = ACTIONS(3606), + [anon_sym_declare] = ACTIONS(3606), + [anon_sym_public] = ACTIONS(3606), + [anon_sym_private] = ACTIONS(3606), + [anon_sym_protected] = ACTIONS(3606), + [anon_sym_override] = ACTIONS(3606), + [anon_sym_module] = ACTIONS(3606), + [anon_sym_any] = ACTIONS(3606), + [anon_sym_number] = ACTIONS(3606), + [anon_sym_boolean] = ACTIONS(3606), + [anon_sym_string] = ACTIONS(3606), + [anon_sym_symbol] = ACTIONS(3606), + [anon_sym_object] = ACTIONS(3606), + [anon_sym_property] = ACTIONS(3606), + [anon_sym_signal] = ACTIONS(3606), + [anon_sym_on] = ACTIONS(3606), + [anon_sym_required] = ACTIONS(3606), + [anon_sym_component] = ACTIONS(3606), + [anon_sym_abstract] = ACTIONS(3606), + [anon_sym_interface] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [sym_html_comment] = ACTIONS(5), + }, + [1533] = { + [sym_comment] = STATE(1533), + [sym_identifier] = ACTIONS(3606), + [anon_sym_export] = ACTIONS(3606), + [anon_sym_type] = ACTIONS(3606), + [anon_sym_namespace] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_typeof] = ACTIONS(3606), + [anon_sym_import] = ACTIONS(3606), + [anon_sym_from] = ACTIONS(3606), + [anon_sym_with] = ACTIONS(3606), + [anon_sym_var] = ACTIONS(3606), + [anon_sym_let] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_else] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_await] = ACTIONS(3606), + [anon_sym_of] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_debugger] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_throw] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_yield] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_LTtemplate_GT] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_async] = ACTIONS(3606), + [anon_sym_function] = ACTIONS(3606), + [anon_sym_new] = ACTIONS(3606), + [anon_sym_using] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_SLASH] = ACTIONS(3606), + [anon_sym_LT] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_void] = ACTIONS(3606), + [anon_sym_delete] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3606), + [sym_number] = ACTIONS(3606), + [sym_private_property_identifier] = ACTIONS(3606), + [sym_this] = ACTIONS(3606), + [sym_super] = ACTIONS(3606), + [sym_true] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [sym_undefined] = ACTIONS(3606), + [anon_sym_AT] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_readonly] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(3606), + [anon_sym_set] = ACTIONS(3606), + [anon_sym_declare] = ACTIONS(3606), + [anon_sym_public] = ACTIONS(3606), + [anon_sym_private] = ACTIONS(3606), + [anon_sym_protected] = ACTIONS(3606), + [anon_sym_override] = ACTIONS(3606), + [anon_sym_module] = ACTIONS(3606), + [anon_sym_any] = ACTIONS(3606), + [anon_sym_number] = ACTIONS(3606), + [anon_sym_boolean] = ACTIONS(3606), + [anon_sym_string] = ACTIONS(3606), + [anon_sym_symbol] = ACTIONS(3606), + [anon_sym_object] = ACTIONS(3606), + [anon_sym_property] = ACTIONS(3606), + [anon_sym_signal] = ACTIONS(3606), + [anon_sym_on] = ACTIONS(3606), + [anon_sym_required] = ACTIONS(3606), + [anon_sym_component] = ACTIONS(3606), + [anon_sym_abstract] = ACTIONS(3606), + [anon_sym_interface] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [sym_html_comment] = ACTIONS(5), + }, + [1534] = { + [sym_comment] = STATE(1534), + [sym_identifier] = ACTIONS(3550), + [anon_sym_export] = ACTIONS(3550), + [anon_sym_type] = ACTIONS(3550), + [anon_sym_namespace] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_RBRACE] = ACTIONS(3550), + [anon_sym_typeof] = ACTIONS(3550), + [anon_sym_import] = ACTIONS(3550), + [anon_sym_from] = ACTIONS(3550), + [anon_sym_with] = ACTIONS(3550), + [anon_sym_var] = ACTIONS(3550), + [anon_sym_let] = ACTIONS(3550), + [anon_sym_const] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_else] = ACTIONS(3550), + [anon_sym_if] = ACTIONS(3550), + [anon_sym_switch] = ACTIONS(3550), + [anon_sym_for] = ACTIONS(3550), + [anon_sym_LPAREN] = ACTIONS(3550), + [anon_sym_await] = ACTIONS(3550), + [anon_sym_of] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3550), + [anon_sym_do] = ACTIONS(3550), + [anon_sym_try] = ACTIONS(3550), + [anon_sym_break] = ACTIONS(3550), + [anon_sym_continue] = ACTIONS(3550), + [anon_sym_debugger] = ACTIONS(3550), + [anon_sym_return] = ACTIONS(3550), + [anon_sym_throw] = ACTIONS(3550), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_yield] = ACTIONS(3550), + [anon_sym_LBRACK] = ACTIONS(3550), + [anon_sym_LTtemplate_GT] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(3550), + [anon_sym_class] = ACTIONS(3550), + [anon_sym_async] = ACTIONS(3550), + [anon_sym_function] = ACTIONS(3550), + [anon_sym_new] = ACTIONS(3550), + [anon_sym_using] = ACTIONS(3550), + [anon_sym_PLUS] = ACTIONS(3550), + [anon_sym_DASH] = ACTIONS(3550), + [anon_sym_SLASH] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(3550), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_void] = ACTIONS(3550), + [anon_sym_delete] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_DASH_DASH] = ACTIONS(3550), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3550), + [sym_number] = ACTIONS(3550), + [sym_private_property_identifier] = ACTIONS(3550), + [sym_this] = ACTIONS(3550), + [sym_super] = ACTIONS(3550), + [sym_true] = ACTIONS(3550), + [sym_false] = ACTIONS(3550), + [sym_null] = ACTIONS(3550), + [sym_undefined] = ACTIONS(3550), + [anon_sym_AT] = ACTIONS(3550), + [anon_sym_static] = ACTIONS(3550), + [anon_sym_readonly] = ACTIONS(3550), + [anon_sym_get] = ACTIONS(3550), + [anon_sym_set] = ACTIONS(3550), + [anon_sym_declare] = ACTIONS(3550), + [anon_sym_public] = ACTIONS(3550), + [anon_sym_private] = ACTIONS(3550), + [anon_sym_protected] = ACTIONS(3550), + [anon_sym_override] = ACTIONS(3550), + [anon_sym_module] = ACTIONS(3550), + [anon_sym_any] = ACTIONS(3550), + [anon_sym_number] = ACTIONS(3550), + [anon_sym_boolean] = ACTIONS(3550), + [anon_sym_string] = ACTIONS(3550), + [anon_sym_symbol] = ACTIONS(3550), + [anon_sym_object] = ACTIONS(3550), + [anon_sym_property] = ACTIONS(3550), + [anon_sym_signal] = ACTIONS(3550), + [anon_sym_on] = ACTIONS(3550), + [anon_sym_required] = ACTIONS(3550), + [anon_sym_component] = ACTIONS(3550), + [anon_sym_abstract] = ACTIONS(3550), + [anon_sym_interface] = ACTIONS(3550), + [anon_sym_enum] = ACTIONS(3550), + [sym_html_comment] = ACTIONS(5), + }, + [1535] = { + [sym_comment] = STATE(1535), + [sym_identifier] = ACTIONS(3634), + [anon_sym_export] = ACTIONS(3634), + [anon_sym_type] = ACTIONS(3634), + [anon_sym_namespace] = ACTIONS(3634), + [anon_sym_LBRACE] = ACTIONS(3634), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_typeof] = ACTIONS(3634), + [anon_sym_import] = ACTIONS(3634), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_with] = ACTIONS(3634), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_const] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3634), + [anon_sym_if] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_for] = ACTIONS(3634), + [anon_sym_LPAREN] = ACTIONS(3634), + [anon_sym_await] = ACTIONS(3634), + [anon_sym_of] = ACTIONS(3634), + [anon_sym_while] = ACTIONS(3634), + [anon_sym_do] = ACTIONS(3634), + [anon_sym_try] = ACTIONS(3634), + [anon_sym_break] = ACTIONS(3634), + [anon_sym_continue] = ACTIONS(3634), + [anon_sym_debugger] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3634), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3634), + [anon_sym_LTtemplate_GT] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(3634), + [anon_sym_SQUOTE] = ACTIONS(3634), + [anon_sym_class] = ACTIONS(3634), + [anon_sym_async] = ACTIONS(3634), + [anon_sym_function] = ACTIONS(3634), + [anon_sym_new] = ACTIONS(3634), + [anon_sym_using] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(3634), + [anon_sym_void] = ACTIONS(3634), + [anon_sym_delete] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3634), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3634), + [sym_number] = ACTIONS(3634), + [sym_private_property_identifier] = ACTIONS(3634), + [sym_this] = ACTIONS(3634), + [sym_super] = ACTIONS(3634), + [sym_true] = ACTIONS(3634), + [sym_false] = ACTIONS(3634), + [sym_null] = ACTIONS(3634), + [sym_undefined] = ACTIONS(3634), + [anon_sym_AT] = ACTIONS(3634), + [anon_sym_static] = ACTIONS(3634), + [anon_sym_readonly] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(3634), + [anon_sym_set] = ACTIONS(3634), + [anon_sym_declare] = ACTIONS(3634), + [anon_sym_public] = ACTIONS(3634), + [anon_sym_private] = ACTIONS(3634), + [anon_sym_protected] = ACTIONS(3634), + [anon_sym_override] = ACTIONS(3634), + [anon_sym_module] = ACTIONS(3634), + [anon_sym_any] = ACTIONS(3634), + [anon_sym_number] = ACTIONS(3634), + [anon_sym_boolean] = ACTIONS(3634), + [anon_sym_string] = ACTIONS(3634), + [anon_sym_symbol] = ACTIONS(3634), + [anon_sym_object] = ACTIONS(3634), + [anon_sym_property] = ACTIONS(3634), + [anon_sym_signal] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_required] = ACTIONS(3634), + [anon_sym_component] = ACTIONS(3634), + [anon_sym_abstract] = ACTIONS(3634), + [anon_sym_interface] = ACTIONS(3634), + [anon_sym_enum] = ACTIONS(3634), + [sym_html_comment] = ACTIONS(5), + }, + [1536] = { + [sym_comment] = STATE(1536), + [sym_identifier] = ACTIONS(3554), + [anon_sym_export] = ACTIONS(3554), + [anon_sym_type] = ACTIONS(3554), + [anon_sym_namespace] = ACTIONS(3554), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_RBRACE] = ACTIONS(3554), + [anon_sym_typeof] = ACTIONS(3554), + [anon_sym_import] = ACTIONS(3554), + [anon_sym_from] = ACTIONS(3554), + [anon_sym_with] = ACTIONS(3554), + [anon_sym_var] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_const] = ACTIONS(3554), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_else] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_switch] = ACTIONS(3554), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_await] = ACTIONS(3554), + [anon_sym_of] = ACTIONS(3554), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_break] = ACTIONS(3554), + [anon_sym_continue] = ACTIONS(3554), + [anon_sym_debugger] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_throw] = ACTIONS(3554), + [anon_sym_SEMI] = ACTIONS(3554), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LTtemplate_GT] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_SQUOTE] = ACTIONS(3554), + [anon_sym_class] = ACTIONS(3554), + [anon_sym_async] = ACTIONS(3554), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_using] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_SLASH] = ACTIONS(3554), + [anon_sym_LT] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3554), + [anon_sym_void] = ACTIONS(3554), + [anon_sym_delete] = ACTIONS(3554), + [anon_sym_PLUS_PLUS] = ACTIONS(3554), + [anon_sym_DASH_DASH] = ACTIONS(3554), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3554), + [sym_number] = ACTIONS(3554), + [sym_private_property_identifier] = ACTIONS(3554), + [sym_this] = ACTIONS(3554), + [sym_super] = ACTIONS(3554), + [sym_true] = ACTIONS(3554), + [sym_false] = ACTIONS(3554), + [sym_null] = ACTIONS(3554), + [sym_undefined] = ACTIONS(3554), + [anon_sym_AT] = ACTIONS(3554), + [anon_sym_static] = ACTIONS(3554), + [anon_sym_readonly] = ACTIONS(3554), + [anon_sym_get] = ACTIONS(3554), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_declare] = ACTIONS(3554), + [anon_sym_public] = ACTIONS(3554), + [anon_sym_private] = ACTIONS(3554), + [anon_sym_protected] = ACTIONS(3554), + [anon_sym_override] = ACTIONS(3554), + [anon_sym_module] = ACTIONS(3554), + [anon_sym_any] = ACTIONS(3554), + [anon_sym_number] = ACTIONS(3554), + [anon_sym_boolean] = ACTIONS(3554), + [anon_sym_string] = ACTIONS(3554), + [anon_sym_symbol] = ACTIONS(3554), + [anon_sym_object] = ACTIONS(3554), + [anon_sym_property] = ACTIONS(3554), + [anon_sym_signal] = ACTIONS(3554), + [anon_sym_on] = ACTIONS(3554), + [anon_sym_required] = ACTIONS(3554), + [anon_sym_component] = ACTIONS(3554), + [anon_sym_abstract] = ACTIONS(3554), + [anon_sym_interface] = ACTIONS(3554), + [anon_sym_enum] = ACTIONS(3554), + [sym_html_comment] = ACTIONS(5), + }, + [1537] = { + [sym_comment] = STATE(1537), + [sym_identifier] = ACTIONS(3636), + [anon_sym_export] = ACTIONS(3636), + [anon_sym_type] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_typeof] = ACTIONS(3636), + [anon_sym_import] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3636), + [anon_sym_let] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_else] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_await] = ACTIONS(3636), + [anon_sym_of] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_debugger] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_yield] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_LTtemplate_GT] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(3636), + [anon_sym_SQUOTE] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_async] = ACTIONS(3636), + [anon_sym_function] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3636), + [anon_sym_void] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3636), + [sym_number] = ACTIONS(3636), + [sym_private_property_identifier] = ACTIONS(3636), + [sym_this] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [sym_null] = ACTIONS(3636), + [sym_undefined] = ACTIONS(3636), + [anon_sym_AT] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_readonly] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(3636), + [anon_sym_set] = ACTIONS(3636), + [anon_sym_declare] = ACTIONS(3636), + [anon_sym_public] = ACTIONS(3636), + [anon_sym_private] = ACTIONS(3636), + [anon_sym_protected] = ACTIONS(3636), + [anon_sym_override] = ACTIONS(3636), + [anon_sym_module] = ACTIONS(3636), + [anon_sym_any] = ACTIONS(3636), + [anon_sym_number] = ACTIONS(3636), + [anon_sym_boolean] = ACTIONS(3636), + [anon_sym_string] = ACTIONS(3636), + [anon_sym_symbol] = ACTIONS(3636), + [anon_sym_object] = ACTIONS(3636), + [anon_sym_property] = ACTIONS(3636), + [anon_sym_signal] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_required] = ACTIONS(3636), + [anon_sym_component] = ACTIONS(3636), + [anon_sym_abstract] = ACTIONS(3636), + [anon_sym_interface] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [sym_html_comment] = ACTIONS(5), + }, + [1538] = { + [sym_comment] = STATE(1538), + [sym_identifier] = ACTIONS(3556), + [anon_sym_export] = ACTIONS(3556), + [anon_sym_type] = ACTIONS(3556), + [anon_sym_namespace] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_RBRACE] = ACTIONS(3556), + [anon_sym_typeof] = ACTIONS(3556), + [anon_sym_import] = ACTIONS(3556), + [anon_sym_from] = ACTIONS(3556), + [anon_sym_with] = ACTIONS(3556), + [anon_sym_var] = ACTIONS(3556), + [anon_sym_let] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3556), + [anon_sym_else] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3556), + [anon_sym_await] = ACTIONS(3556), + [anon_sym_of] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_debugger] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3556), + [anon_sym_LTtemplate_GT] = ACTIONS(3556), + [anon_sym_DQUOTE] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3556), + [anon_sym_async] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_using] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_SLASH] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_void] = ACTIONS(3556), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3556), + [anon_sym_DASH_DASH] = ACTIONS(3556), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3556), + [sym_number] = ACTIONS(3556), + [sym_private_property_identifier] = ACTIONS(3556), + [sym_this] = ACTIONS(3556), + [sym_super] = ACTIONS(3556), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [sym_null] = ACTIONS(3556), + [sym_undefined] = ACTIONS(3556), + [anon_sym_AT] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_readonly] = ACTIONS(3556), + [anon_sym_get] = ACTIONS(3556), + [anon_sym_set] = ACTIONS(3556), + [anon_sym_declare] = ACTIONS(3556), + [anon_sym_public] = ACTIONS(3556), + [anon_sym_private] = ACTIONS(3556), + [anon_sym_protected] = ACTIONS(3556), + [anon_sym_override] = ACTIONS(3556), + [anon_sym_module] = ACTIONS(3556), + [anon_sym_any] = ACTIONS(3556), + [anon_sym_number] = ACTIONS(3556), + [anon_sym_boolean] = ACTIONS(3556), + [anon_sym_string] = ACTIONS(3556), + [anon_sym_symbol] = ACTIONS(3556), + [anon_sym_object] = ACTIONS(3556), + [anon_sym_property] = ACTIONS(3556), + [anon_sym_signal] = ACTIONS(3556), + [anon_sym_on] = ACTIONS(3556), + [anon_sym_required] = ACTIONS(3556), + [anon_sym_component] = ACTIONS(3556), + [anon_sym_abstract] = ACTIONS(3556), + [anon_sym_interface] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), + [sym_html_comment] = ACTIONS(5), + }, + [1539] = { + [sym_comment] = STATE(1539), + [sym_identifier] = ACTIONS(3538), + [anon_sym_export] = ACTIONS(3538), + [anon_sym_type] = ACTIONS(3538), + [anon_sym_namespace] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_RBRACE] = ACTIONS(3538), + [anon_sym_typeof] = ACTIONS(3538), + [anon_sym_import] = ACTIONS(3538), + [anon_sym_from] = ACTIONS(3538), + [anon_sym_with] = ACTIONS(3538), + [anon_sym_var] = ACTIONS(3538), + [anon_sym_let] = ACTIONS(3538), + [anon_sym_const] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3538), + [anon_sym_else] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3538), + [anon_sym_switch] = ACTIONS(3538), + [anon_sym_for] = ACTIONS(3538), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_await] = ACTIONS(3538), + [anon_sym_of] = ACTIONS(3538), + [anon_sym_while] = ACTIONS(3538), + [anon_sym_do] = ACTIONS(3538), + [anon_sym_try] = ACTIONS(3538), + [anon_sym_break] = ACTIONS(3538), + [anon_sym_continue] = ACTIONS(3538), + [anon_sym_debugger] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3538), + [anon_sym_throw] = ACTIONS(3538), + [anon_sym_SEMI] = ACTIONS(3538), + [anon_sym_yield] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_LTtemplate_GT] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3538), + [anon_sym_async] = ACTIONS(3538), + [anon_sym_function] = ACTIONS(3538), + [anon_sym_new] = ACTIONS(3538), + [anon_sym_using] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3538), + [anon_sym_DASH] = ACTIONS(3538), + [anon_sym_SLASH] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(3538), + [anon_sym_void] = ACTIONS(3538), + [anon_sym_delete] = ACTIONS(3538), + [anon_sym_PLUS_PLUS] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3538), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3538), + [sym_number] = ACTIONS(3538), + [sym_private_property_identifier] = ACTIONS(3538), + [sym_this] = ACTIONS(3538), + [sym_super] = ACTIONS(3538), + [sym_true] = ACTIONS(3538), + [sym_false] = ACTIONS(3538), + [sym_null] = ACTIONS(3538), + [sym_undefined] = ACTIONS(3538), + [anon_sym_AT] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3538), + [anon_sym_readonly] = ACTIONS(3538), + [anon_sym_get] = ACTIONS(3538), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_declare] = ACTIONS(3538), + [anon_sym_public] = ACTIONS(3538), + [anon_sym_private] = ACTIONS(3538), + [anon_sym_protected] = ACTIONS(3538), + [anon_sym_override] = ACTIONS(3538), + [anon_sym_module] = ACTIONS(3538), + [anon_sym_any] = ACTIONS(3538), + [anon_sym_number] = ACTIONS(3538), + [anon_sym_boolean] = ACTIONS(3538), + [anon_sym_string] = ACTIONS(3538), + [anon_sym_symbol] = ACTIONS(3538), + [anon_sym_object] = ACTIONS(3538), + [anon_sym_property] = ACTIONS(3538), + [anon_sym_signal] = ACTIONS(3538), + [anon_sym_on] = ACTIONS(3538), + [anon_sym_required] = ACTIONS(3538), + [anon_sym_component] = ACTIONS(3538), + [anon_sym_abstract] = ACTIONS(3538), + [anon_sym_interface] = ACTIONS(3538), + [anon_sym_enum] = ACTIONS(3538), + [sym_html_comment] = ACTIONS(5), + }, + [1540] = { + [sym_comment] = STATE(1540), + [sym_identifier] = ACTIONS(3560), + [anon_sym_export] = ACTIONS(3560), + [anon_sym_type] = ACTIONS(3560), + [anon_sym_namespace] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_RBRACE] = ACTIONS(3560), + [anon_sym_typeof] = ACTIONS(3560), + [anon_sym_import] = ACTIONS(3560), + [anon_sym_from] = ACTIONS(3560), + [anon_sym_with] = ACTIONS(3560), + [anon_sym_var] = ACTIONS(3560), + [anon_sym_let] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3560), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_switch] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_LPAREN] = ACTIONS(3560), + [anon_sym_await] = ACTIONS(3560), + [anon_sym_of] = ACTIONS(3560), + [anon_sym_while] = ACTIONS(3560), + [anon_sym_do] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_debugger] = ACTIONS(3560), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_throw] = ACTIONS(3560), + [anon_sym_SEMI] = ACTIONS(3560), + [anon_sym_yield] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_LTtemplate_GT] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3560), + [anon_sym_class] = ACTIONS(3560), + [anon_sym_async] = ACTIONS(3560), + [anon_sym_function] = ACTIONS(3560), + [anon_sym_new] = ACTIONS(3560), + [anon_sym_using] = ACTIONS(3560), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3560), + [anon_sym_void] = ACTIONS(3560), + [anon_sym_delete] = ACTIONS(3560), + [anon_sym_PLUS_PLUS] = ACTIONS(3560), + [anon_sym_DASH_DASH] = ACTIONS(3560), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3560), + [sym_number] = ACTIONS(3560), + [sym_private_property_identifier] = ACTIONS(3560), + [sym_this] = ACTIONS(3560), + [sym_super] = ACTIONS(3560), + [sym_true] = ACTIONS(3560), + [sym_false] = ACTIONS(3560), + [sym_null] = ACTIONS(3560), + [sym_undefined] = ACTIONS(3560), + [anon_sym_AT] = ACTIONS(3560), + [anon_sym_static] = ACTIONS(3560), + [anon_sym_readonly] = ACTIONS(3560), + [anon_sym_get] = ACTIONS(3560), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_declare] = ACTIONS(3560), + [anon_sym_public] = ACTIONS(3560), + [anon_sym_private] = ACTIONS(3560), + [anon_sym_protected] = ACTIONS(3560), + [anon_sym_override] = ACTIONS(3560), + [anon_sym_module] = ACTIONS(3560), + [anon_sym_any] = ACTIONS(3560), + [anon_sym_number] = ACTIONS(3560), + [anon_sym_boolean] = ACTIONS(3560), + [anon_sym_string] = ACTIONS(3560), + [anon_sym_symbol] = ACTIONS(3560), + [anon_sym_object] = ACTIONS(3560), + [anon_sym_property] = ACTIONS(3560), + [anon_sym_signal] = ACTIONS(3560), + [anon_sym_on] = ACTIONS(3560), + [anon_sym_required] = ACTIONS(3560), + [anon_sym_component] = ACTIONS(3560), + [anon_sym_abstract] = ACTIONS(3560), + [anon_sym_interface] = ACTIONS(3560), + [anon_sym_enum] = ACTIONS(3560), + [sym_html_comment] = ACTIONS(5), + }, + [1541] = { + [sym_comment] = STATE(1541), + [sym_identifier] = ACTIONS(3568), + [anon_sym_export] = ACTIONS(3568), + [anon_sym_type] = ACTIONS(3568), + [anon_sym_namespace] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_RBRACE] = ACTIONS(3568), + [anon_sym_typeof] = ACTIONS(3568), + [anon_sym_import] = ACTIONS(3568), + [anon_sym_from] = ACTIONS(3568), + [anon_sym_with] = ACTIONS(3568), + [anon_sym_var] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_const] = ACTIONS(3568), + [anon_sym_BANG] = ACTIONS(3568), + [anon_sym_else] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_switch] = ACTIONS(3568), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_await] = ACTIONS(3568), + [anon_sym_of] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_break] = ACTIONS(3568), + [anon_sym_continue] = ACTIONS(3568), + [anon_sym_debugger] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_throw] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3568), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LTtemplate_GT] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_SQUOTE] = ACTIONS(3568), + [anon_sym_class] = ACTIONS(3568), + [anon_sym_async] = ACTIONS(3568), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_using] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_SLASH] = ACTIONS(3568), + [anon_sym_LT] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3568), + [anon_sym_void] = ACTIONS(3568), + [anon_sym_delete] = ACTIONS(3568), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3568), + [sym_number] = ACTIONS(3568), + [sym_private_property_identifier] = ACTIONS(3568), + [sym_this] = ACTIONS(3568), + [sym_super] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_null] = ACTIONS(3568), + [sym_undefined] = ACTIONS(3568), + [anon_sym_AT] = ACTIONS(3568), + [anon_sym_static] = ACTIONS(3568), + [anon_sym_readonly] = ACTIONS(3568), + [anon_sym_get] = ACTIONS(3568), + [anon_sym_set] = ACTIONS(3568), + [anon_sym_declare] = ACTIONS(3568), + [anon_sym_public] = ACTIONS(3568), + [anon_sym_private] = ACTIONS(3568), + [anon_sym_protected] = ACTIONS(3568), + [anon_sym_override] = ACTIONS(3568), + [anon_sym_module] = ACTIONS(3568), + [anon_sym_any] = ACTIONS(3568), + [anon_sym_number] = ACTIONS(3568), + [anon_sym_boolean] = ACTIONS(3568), + [anon_sym_string] = ACTIONS(3568), + [anon_sym_symbol] = ACTIONS(3568), + [anon_sym_object] = ACTIONS(3568), + [anon_sym_property] = ACTIONS(3568), + [anon_sym_signal] = ACTIONS(3568), + [anon_sym_on] = ACTIONS(3568), + [anon_sym_required] = ACTIONS(3568), + [anon_sym_component] = ACTIONS(3568), + [anon_sym_abstract] = ACTIONS(3568), + [anon_sym_interface] = ACTIONS(3568), + [anon_sym_enum] = ACTIONS(3568), + [sym_html_comment] = ACTIONS(5), + }, + [1542] = { + [sym_comment] = STATE(1542), + [sym_identifier] = ACTIONS(3570), + [anon_sym_export] = ACTIONS(3570), + [anon_sym_type] = ACTIONS(3570), + [anon_sym_namespace] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_RBRACE] = ACTIONS(3570), + [anon_sym_typeof] = ACTIONS(3570), + [anon_sym_import] = ACTIONS(3570), + [anon_sym_from] = ACTIONS(3570), + [anon_sym_with] = ACTIONS(3570), + [anon_sym_var] = ACTIONS(3570), + [anon_sym_let] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_BANG] = ACTIONS(3570), + [anon_sym_else] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_switch] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3570), + [anon_sym_await] = ACTIONS(3570), + [anon_sym_of] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_do] = ACTIONS(3570), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_debugger] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_throw] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_LTtemplate_GT] = ACTIONS(3570), + [anon_sym_DQUOTE] = ACTIONS(3570), + [anon_sym_SQUOTE] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_async] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_TILDE] = ACTIONS(3570), + [anon_sym_void] = ACTIONS(3570), + [anon_sym_delete] = ACTIONS(3570), + [anon_sym_PLUS_PLUS] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3570), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3570), + [sym_number] = ACTIONS(3570), + [sym_private_property_identifier] = ACTIONS(3570), + [sym_this] = ACTIONS(3570), + [sym_super] = ACTIONS(3570), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [sym_null] = ACTIONS(3570), + [sym_undefined] = ACTIONS(3570), + [anon_sym_AT] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_readonly] = ACTIONS(3570), + [anon_sym_get] = ACTIONS(3570), + [anon_sym_set] = ACTIONS(3570), + [anon_sym_declare] = ACTIONS(3570), + [anon_sym_public] = ACTIONS(3570), + [anon_sym_private] = ACTIONS(3570), + [anon_sym_protected] = ACTIONS(3570), + [anon_sym_override] = ACTIONS(3570), + [anon_sym_module] = ACTIONS(3570), + [anon_sym_any] = ACTIONS(3570), + [anon_sym_number] = ACTIONS(3570), + [anon_sym_boolean] = ACTIONS(3570), + [anon_sym_string] = ACTIONS(3570), + [anon_sym_symbol] = ACTIONS(3570), + [anon_sym_object] = ACTIONS(3570), + [anon_sym_property] = ACTIONS(3570), + [anon_sym_signal] = ACTIONS(3570), + [anon_sym_on] = ACTIONS(3570), + [anon_sym_required] = ACTIONS(3570), + [anon_sym_component] = ACTIONS(3570), + [anon_sym_abstract] = ACTIONS(3570), + [anon_sym_interface] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [sym_html_comment] = ACTIONS(5), + }, + [1543] = { + [sym_comment] = STATE(1543), + [sym_identifier] = ACTIONS(3572), + [anon_sym_export] = ACTIONS(3572), + [anon_sym_type] = ACTIONS(3572), + [anon_sym_namespace] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_RBRACE] = ACTIONS(3572), + [anon_sym_typeof] = ACTIONS(3572), + [anon_sym_import] = ACTIONS(3572), + [anon_sym_from] = ACTIONS(3572), + [anon_sym_with] = ACTIONS(3572), + [anon_sym_var] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_const] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_else] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_switch] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_await] = ACTIONS(3572), + [anon_sym_of] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_break] = ACTIONS(3572), + [anon_sym_continue] = ACTIONS(3572), + [anon_sym_debugger] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_throw] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LTtemplate_GT] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_class] = ACTIONS(3572), + [anon_sym_async] = ACTIONS(3572), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_using] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_SLASH] = ACTIONS(3572), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_void] = ACTIONS(3572), + [anon_sym_delete] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3572), + [sym_number] = ACTIONS(3572), + [sym_private_property_identifier] = ACTIONS(3572), + [sym_this] = ACTIONS(3572), + [sym_super] = ACTIONS(3572), + [sym_true] = ACTIONS(3572), + [sym_false] = ACTIONS(3572), + [sym_null] = ACTIONS(3572), + [sym_undefined] = ACTIONS(3572), + [anon_sym_AT] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3572), + [anon_sym_readonly] = ACTIONS(3572), + [anon_sym_get] = ACTIONS(3572), + [anon_sym_set] = ACTIONS(3572), + [anon_sym_declare] = ACTIONS(3572), + [anon_sym_public] = ACTIONS(3572), + [anon_sym_private] = ACTIONS(3572), + [anon_sym_protected] = ACTIONS(3572), + [anon_sym_override] = ACTIONS(3572), + [anon_sym_module] = ACTIONS(3572), + [anon_sym_any] = ACTIONS(3572), + [anon_sym_number] = ACTIONS(3572), + [anon_sym_boolean] = ACTIONS(3572), + [anon_sym_string] = ACTIONS(3572), + [anon_sym_symbol] = ACTIONS(3572), + [anon_sym_object] = ACTIONS(3572), + [anon_sym_property] = ACTIONS(3572), + [anon_sym_signal] = ACTIONS(3572), + [anon_sym_on] = ACTIONS(3572), + [anon_sym_required] = ACTIONS(3572), + [anon_sym_component] = ACTIONS(3572), + [anon_sym_abstract] = ACTIONS(3572), + [anon_sym_interface] = ACTIONS(3572), + [anon_sym_enum] = ACTIONS(3572), + [sym_html_comment] = ACTIONS(5), + }, + [1544] = { + [sym_comment] = STATE(1544), + [sym_identifier] = ACTIONS(3574), + [anon_sym_export] = ACTIONS(3574), + [anon_sym_type] = ACTIONS(3574), + [anon_sym_namespace] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_RBRACE] = ACTIONS(3574), + [anon_sym_typeof] = ACTIONS(3574), + [anon_sym_import] = ACTIONS(3574), + [anon_sym_from] = ACTIONS(3574), + [anon_sym_with] = ACTIONS(3574), + [anon_sym_var] = ACTIONS(3574), + [anon_sym_let] = ACTIONS(3574), + [anon_sym_const] = ACTIONS(3574), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_switch] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_LPAREN] = ACTIONS(3574), + [anon_sym_await] = ACTIONS(3574), + [anon_sym_of] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_do] = ACTIONS(3574), + [anon_sym_try] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_debugger] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_throw] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym_yield] = ACTIONS(3574), + [anon_sym_LBRACK] = ACTIONS(3574), + [anon_sym_LTtemplate_GT] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [anon_sym_SQUOTE] = ACTIONS(3574), + [anon_sym_class] = ACTIONS(3574), + [anon_sym_async] = ACTIONS(3574), + [anon_sym_function] = ACTIONS(3574), + [anon_sym_new] = ACTIONS(3574), + [anon_sym_using] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3574), + [anon_sym_SLASH] = ACTIONS(3574), + [anon_sym_LT] = ACTIONS(3574), + [anon_sym_TILDE] = ACTIONS(3574), + [anon_sym_void] = ACTIONS(3574), + [anon_sym_delete] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3574), + [sym_number] = ACTIONS(3574), + [sym_private_property_identifier] = ACTIONS(3574), + [sym_this] = ACTIONS(3574), + [sym_super] = ACTIONS(3574), + [sym_true] = ACTIONS(3574), + [sym_false] = ACTIONS(3574), + [sym_null] = ACTIONS(3574), + [sym_undefined] = ACTIONS(3574), + [anon_sym_AT] = ACTIONS(3574), + [anon_sym_static] = ACTIONS(3574), + [anon_sym_readonly] = ACTIONS(3574), + [anon_sym_get] = ACTIONS(3574), + [anon_sym_set] = ACTIONS(3574), + [anon_sym_declare] = ACTIONS(3574), + [anon_sym_public] = ACTIONS(3574), + [anon_sym_private] = ACTIONS(3574), + [anon_sym_protected] = ACTIONS(3574), + [anon_sym_override] = ACTIONS(3574), + [anon_sym_module] = ACTIONS(3574), + [anon_sym_any] = ACTIONS(3574), + [anon_sym_number] = ACTIONS(3574), + [anon_sym_boolean] = ACTIONS(3574), + [anon_sym_string] = ACTIONS(3574), + [anon_sym_symbol] = ACTIONS(3574), + [anon_sym_object] = ACTIONS(3574), + [anon_sym_property] = ACTIONS(3574), + [anon_sym_signal] = ACTIONS(3574), + [anon_sym_on] = ACTIONS(3574), + [anon_sym_required] = ACTIONS(3574), + [anon_sym_component] = ACTIONS(3574), + [anon_sym_abstract] = ACTIONS(3574), + [anon_sym_interface] = ACTIONS(3574), + [anon_sym_enum] = ACTIONS(3574), + [sym_html_comment] = ACTIONS(5), + }, + [1545] = { + [sym_comment] = STATE(1545), + [sym_identifier] = ACTIONS(3536), + [anon_sym_export] = ACTIONS(3536), + [anon_sym_type] = ACTIONS(3536), + [anon_sym_namespace] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_RBRACE] = ACTIONS(3536), + [anon_sym_typeof] = ACTIONS(3536), + [anon_sym_import] = ACTIONS(3536), + [anon_sym_from] = ACTIONS(3536), + [anon_sym_with] = ACTIONS(3536), + [anon_sym_var] = ACTIONS(3536), + [anon_sym_let] = ACTIONS(3536), + [anon_sym_const] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_else] = ACTIONS(3536), + [anon_sym_if] = ACTIONS(3536), + [anon_sym_switch] = ACTIONS(3536), + [anon_sym_for] = ACTIONS(3536), + [anon_sym_LPAREN] = ACTIONS(3536), + [anon_sym_await] = ACTIONS(3536), + [anon_sym_of] = ACTIONS(3536), + [anon_sym_while] = ACTIONS(3536), + [anon_sym_do] = ACTIONS(3536), + [anon_sym_try] = ACTIONS(3536), + [anon_sym_break] = ACTIONS(3536), + [anon_sym_continue] = ACTIONS(3536), + [anon_sym_debugger] = ACTIONS(3536), + [anon_sym_return] = ACTIONS(3536), + [anon_sym_throw] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym_yield] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LTtemplate_GT] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_class] = ACTIONS(3536), + [anon_sym_async] = ACTIONS(3536), + [anon_sym_function] = ACTIONS(3536), + [anon_sym_new] = ACTIONS(3536), + [anon_sym_using] = ACTIONS(3536), + [anon_sym_PLUS] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_void] = ACTIONS(3536), + [anon_sym_delete] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_DASH_DASH] = ACTIONS(3536), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3536), + [sym_number] = ACTIONS(3536), + [sym_private_property_identifier] = ACTIONS(3536), + [sym_this] = ACTIONS(3536), + [sym_super] = ACTIONS(3536), + [sym_true] = ACTIONS(3536), + [sym_false] = ACTIONS(3536), + [sym_null] = ACTIONS(3536), + [sym_undefined] = ACTIONS(3536), + [anon_sym_AT] = ACTIONS(3536), + [anon_sym_static] = ACTIONS(3536), + [anon_sym_readonly] = ACTIONS(3536), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3536), + [anon_sym_declare] = ACTIONS(3536), + [anon_sym_public] = ACTIONS(3536), + [anon_sym_private] = ACTIONS(3536), + [anon_sym_protected] = ACTIONS(3536), + [anon_sym_override] = ACTIONS(3536), + [anon_sym_module] = ACTIONS(3536), + [anon_sym_any] = ACTIONS(3536), + [anon_sym_number] = ACTIONS(3536), + [anon_sym_boolean] = ACTIONS(3536), + [anon_sym_string] = ACTIONS(3536), + [anon_sym_symbol] = ACTIONS(3536), + [anon_sym_object] = ACTIONS(3536), + [anon_sym_property] = ACTIONS(3536), + [anon_sym_signal] = ACTIONS(3536), + [anon_sym_on] = ACTIONS(3536), + [anon_sym_required] = ACTIONS(3536), + [anon_sym_component] = ACTIONS(3536), + [anon_sym_abstract] = ACTIONS(3536), + [anon_sym_interface] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3536), + [sym_html_comment] = ACTIONS(5), + }, + [1546] = { + [sym_comment] = STATE(1546), + [sym_identifier] = ACTIONS(3510), + [anon_sym_export] = ACTIONS(3510), + [anon_sym_type] = ACTIONS(3510), + [anon_sym_namespace] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(3510), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_typeof] = ACTIONS(3510), + [anon_sym_import] = ACTIONS(3510), + [anon_sym_from] = ACTIONS(3510), + [anon_sym_with] = ACTIONS(3510), + [anon_sym_var] = ACTIONS(3510), + [anon_sym_let] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3510), + [anon_sym_else] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3510), + [anon_sym_switch] = ACTIONS(3510), + [anon_sym_for] = ACTIONS(3510), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_await] = ACTIONS(3510), + [anon_sym_of] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(3510), + [anon_sym_do] = ACTIONS(3510), + [anon_sym_try] = ACTIONS(3510), + [anon_sym_break] = ACTIONS(3510), + [anon_sym_continue] = ACTIONS(3510), + [anon_sym_debugger] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3510), + [anon_sym_throw] = ACTIONS(3510), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_yield] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_LTtemplate_GT] = ACTIONS(3510), + [anon_sym_DQUOTE] = ACTIONS(3510), + [anon_sym_SQUOTE] = ACTIONS(3510), + [anon_sym_class] = ACTIONS(3510), + [anon_sym_async] = ACTIONS(3510), + [anon_sym_function] = ACTIONS(3510), + [anon_sym_new] = ACTIONS(3510), + [anon_sym_using] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3510), + [anon_sym_DASH] = ACTIONS(3510), + [anon_sym_SLASH] = ACTIONS(3510), + [anon_sym_LT] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(3510), + [anon_sym_void] = ACTIONS(3510), + [anon_sym_delete] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3510), + [sym_number] = ACTIONS(3510), + [sym_private_property_identifier] = ACTIONS(3510), + [sym_this] = ACTIONS(3510), + [sym_super] = ACTIONS(3510), + [sym_true] = ACTIONS(3510), + [sym_false] = ACTIONS(3510), + [sym_null] = ACTIONS(3510), + [sym_undefined] = ACTIONS(3510), + [anon_sym_AT] = ACTIONS(3510), + [anon_sym_static] = ACTIONS(3510), + [anon_sym_readonly] = ACTIONS(3510), + [anon_sym_get] = ACTIONS(3510), + [anon_sym_set] = ACTIONS(3510), + [anon_sym_declare] = ACTIONS(3510), + [anon_sym_public] = ACTIONS(3510), + [anon_sym_private] = ACTIONS(3510), + [anon_sym_protected] = ACTIONS(3510), + [anon_sym_override] = ACTIONS(3510), + [anon_sym_module] = ACTIONS(3510), + [anon_sym_any] = ACTIONS(3510), + [anon_sym_number] = ACTIONS(3510), + [anon_sym_boolean] = ACTIONS(3510), + [anon_sym_string] = ACTIONS(3510), + [anon_sym_symbol] = ACTIONS(3510), + [anon_sym_object] = ACTIONS(3510), + [anon_sym_property] = ACTIONS(3510), + [anon_sym_signal] = ACTIONS(3510), + [anon_sym_on] = ACTIONS(3510), + [anon_sym_required] = ACTIONS(3510), + [anon_sym_component] = ACTIONS(3510), + [anon_sym_abstract] = ACTIONS(3510), + [anon_sym_interface] = ACTIONS(3510), + [anon_sym_enum] = ACTIONS(3510), + [sym_html_comment] = ACTIONS(5), + }, + [1547] = { + [sym_comment] = STATE(1547), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [sym_html_comment] = ACTIONS(5), + }, + [1548] = { + [sym_comment] = STATE(1548), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [sym_html_comment] = ACTIONS(5), + }, + [1549] = { + [sym_comment] = STATE(1549), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [sym_html_comment] = ACTIONS(5), + }, + [1550] = { + [sym_comment] = STATE(1550), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_else] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), + [sym_html_comment] = ACTIONS(5), + }, + [1551] = { + [sym_comment] = STATE(1551), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_typeof] = ACTIONS(2410), + [anon_sym_import] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2410), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_debugger] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_throw] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LTtemplate_GT] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_class] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2410), + [anon_sym_delete] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_private_property_identifier] = ACTIONS(2410), + [sym_this] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_true] = ACTIONS(2410), + [sym_false] = ACTIONS(2410), + [sym_null] = ACTIONS(2410), + [sym_undefined] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_abstract] = ACTIONS(2410), + [anon_sym_interface] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym_html_comment] = ACTIONS(5), + }, + [1552] = { + [sym_comment] = STATE(1552), + [sym_identifier] = ACTIONS(3590), + [anon_sym_export] = ACTIONS(3590), + [anon_sym_type] = ACTIONS(3590), + [anon_sym_namespace] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3590), + [anon_sym_RBRACE] = ACTIONS(3590), + [anon_sym_typeof] = ACTIONS(3590), + [anon_sym_import] = ACTIONS(3590), + [anon_sym_from] = ACTIONS(3590), + [anon_sym_with] = ACTIONS(3590), + [anon_sym_var] = ACTIONS(3590), + [anon_sym_let] = ACTIONS(3590), + [anon_sym_const] = ACTIONS(3590), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_else] = ACTIONS(3590), + [anon_sym_if] = ACTIONS(3590), + [anon_sym_switch] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3590), + [anon_sym_await] = ACTIONS(3590), + [anon_sym_of] = ACTIONS(3590), + [anon_sym_while] = ACTIONS(3590), + [anon_sym_do] = ACTIONS(3590), + [anon_sym_try] = ACTIONS(3590), + [anon_sym_break] = ACTIONS(3590), + [anon_sym_continue] = ACTIONS(3590), + [anon_sym_debugger] = ACTIONS(3590), + [anon_sym_return] = ACTIONS(3590), + [anon_sym_throw] = ACTIONS(3590), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_LTtemplate_GT] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3590), + [anon_sym_SQUOTE] = ACTIONS(3590), + [anon_sym_class] = ACTIONS(3590), + [anon_sym_async] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3590), + [anon_sym_using] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3590), + [anon_sym_SLASH] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_void] = ACTIONS(3590), + [anon_sym_delete] = ACTIONS(3590), + [anon_sym_PLUS_PLUS] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3590), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3590), + [sym_number] = ACTIONS(3590), + [sym_private_property_identifier] = ACTIONS(3590), + [sym_this] = ACTIONS(3590), + [sym_super] = ACTIONS(3590), + [sym_true] = ACTIONS(3590), + [sym_false] = ACTIONS(3590), + [sym_null] = ACTIONS(3590), + [sym_undefined] = ACTIONS(3590), + [anon_sym_AT] = ACTIONS(3590), + [anon_sym_static] = ACTIONS(3590), + [anon_sym_readonly] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(3590), + [anon_sym_set] = ACTIONS(3590), + [anon_sym_declare] = ACTIONS(3590), + [anon_sym_public] = ACTIONS(3590), + [anon_sym_private] = ACTIONS(3590), + [anon_sym_protected] = ACTIONS(3590), + [anon_sym_override] = ACTIONS(3590), + [anon_sym_module] = ACTIONS(3590), + [anon_sym_any] = ACTIONS(3590), + [anon_sym_number] = ACTIONS(3590), + [anon_sym_boolean] = ACTIONS(3590), + [anon_sym_string] = ACTIONS(3590), + [anon_sym_symbol] = ACTIONS(3590), + [anon_sym_object] = ACTIONS(3590), + [anon_sym_property] = ACTIONS(3590), + [anon_sym_signal] = ACTIONS(3590), + [anon_sym_on] = ACTIONS(3590), + [anon_sym_required] = ACTIONS(3590), + [anon_sym_component] = ACTIONS(3590), + [anon_sym_abstract] = ACTIONS(3590), + [anon_sym_interface] = ACTIONS(3590), + [anon_sym_enum] = ACTIONS(3590), + [sym_html_comment] = ACTIONS(5), + }, + [1553] = { + [sym_comment] = STATE(1553), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1554] = { + [sym_statement_block] = STATE(1729), + [sym_comment] = STATE(1554), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_typeof] = ACTIONS(2318), + [anon_sym_import] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_with] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_switch] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_await] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_do] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_debugger] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_throw] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LTtemplate_GT] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_class] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_new] = ACTIONS(2318), + [anon_sym_using] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_TILDE] = ACTIONS(2318), + [anon_sym_void] = ACTIONS(2318), + [anon_sym_delete] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [sym_number] = ACTIONS(2318), + [sym_private_property_identifier] = ACTIONS(2318), + [sym_this] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_true] = ACTIONS(2318), + [sym_false] = ACTIONS(2318), + [sym_null] = ACTIONS(2318), + [sym_undefined] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_abstract] = ACTIONS(2318), + [anon_sym_interface] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym_html_comment] = ACTIONS(5), + }, + [1555] = { + [sym_comment] = STATE(1555), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1556] = { + [sym_comment] = STATE(1556), + [sym_identifier] = ACTIONS(3620), + [anon_sym_export] = ACTIONS(3620), + [anon_sym_type] = ACTIONS(3620), + [anon_sym_namespace] = ACTIONS(3620), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_typeof] = ACTIONS(3620), + [anon_sym_import] = ACTIONS(3620), + [anon_sym_from] = ACTIONS(3620), + [anon_sym_with] = ACTIONS(3620), + [anon_sym_var] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_const] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_else] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_switch] = ACTIONS(3620), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_await] = ACTIONS(3620), + [anon_sym_of] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_break] = ACTIONS(3620), + [anon_sym_continue] = ACTIONS(3620), + [anon_sym_debugger] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_throw] = ACTIONS(3620), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LTtemplate_GT] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_class] = ACTIONS(3620), + [anon_sym_async] = ACTIONS(3620), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_using] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_SLASH] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_void] = ACTIONS(3620), + [anon_sym_delete] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3620), + [sym_number] = ACTIONS(3620), + [sym_private_property_identifier] = ACTIONS(3620), + [sym_this] = ACTIONS(3620), + [sym_super] = ACTIONS(3620), + [sym_true] = ACTIONS(3620), + [sym_false] = ACTIONS(3620), + [sym_null] = ACTIONS(3620), + [sym_undefined] = ACTIONS(3620), + [anon_sym_AT] = ACTIONS(3620), + [anon_sym_static] = ACTIONS(3620), + [anon_sym_readonly] = ACTIONS(3620), + [anon_sym_get] = ACTIONS(3620), + [anon_sym_set] = ACTIONS(3620), + [anon_sym_declare] = ACTIONS(3620), + [anon_sym_public] = ACTIONS(3620), + [anon_sym_private] = ACTIONS(3620), + [anon_sym_protected] = ACTIONS(3620), + [anon_sym_override] = ACTIONS(3620), + [anon_sym_module] = ACTIONS(3620), + [anon_sym_any] = ACTIONS(3620), + [anon_sym_number] = ACTIONS(3620), + [anon_sym_boolean] = ACTIONS(3620), + [anon_sym_string] = ACTIONS(3620), + [anon_sym_symbol] = ACTIONS(3620), + [anon_sym_object] = ACTIONS(3620), + [anon_sym_property] = ACTIONS(3620), + [anon_sym_signal] = ACTIONS(3620), + [anon_sym_on] = ACTIONS(3620), + [anon_sym_required] = ACTIONS(3620), + [anon_sym_component] = ACTIONS(3620), + [anon_sym_abstract] = ACTIONS(3620), + [anon_sym_interface] = ACTIONS(3620), + [anon_sym_enum] = ACTIONS(3620), + [sym_html_comment] = ACTIONS(5), + }, + [1557] = { + [sym_comment] = STATE(1557), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [sym_html_comment] = ACTIONS(5), + }, + [1558] = { + [sym_comment] = STATE(1558), + [sym_identifier] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_type] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_typeof] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_from] = ACTIONS(3624), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_var] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_else] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_await] = ACTIONS(3624), + [anon_sym_of] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_debugger] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LTtemplate_GT] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_async] = ACTIONS(3624), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_SLASH] = ACTIONS(3624), + [anon_sym_LT] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_void] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3624), + [sym_number] = ACTIONS(3624), + [sym_private_property_identifier] = ACTIONS(3624), + [sym_this] = ACTIONS(3624), + [sym_super] = ACTIONS(3624), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [sym_null] = ACTIONS(3624), + [sym_undefined] = ACTIONS(3624), + [anon_sym_AT] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_readonly] = ACTIONS(3624), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3624), + [anon_sym_declare] = ACTIONS(3624), + [anon_sym_public] = ACTIONS(3624), + [anon_sym_private] = ACTIONS(3624), + [anon_sym_protected] = ACTIONS(3624), + [anon_sym_override] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_any] = ACTIONS(3624), + [anon_sym_number] = ACTIONS(3624), + [anon_sym_boolean] = ACTIONS(3624), + [anon_sym_string] = ACTIONS(3624), + [anon_sym_symbol] = ACTIONS(3624), + [anon_sym_object] = ACTIONS(3624), + [anon_sym_property] = ACTIONS(3624), + [anon_sym_signal] = ACTIONS(3624), + [anon_sym_on] = ACTIONS(3624), + [anon_sym_required] = ACTIONS(3624), + [anon_sym_component] = ACTIONS(3624), + [anon_sym_abstract] = ACTIONS(3624), + [anon_sym_interface] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), + [sym_html_comment] = ACTIONS(5), + }, + [1559] = { + [sym_comment] = STATE(1559), + [sym_identifier] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_type] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_typeof] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_from] = ACTIONS(3624), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_var] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_else] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_await] = ACTIONS(3624), + [anon_sym_of] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_debugger] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LTtemplate_GT] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_async] = ACTIONS(3624), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_SLASH] = ACTIONS(3624), + [anon_sym_LT] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_void] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3624), + [sym_number] = ACTIONS(3624), + [sym_private_property_identifier] = ACTIONS(3624), + [sym_this] = ACTIONS(3624), + [sym_super] = ACTIONS(3624), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [sym_null] = ACTIONS(3624), + [sym_undefined] = ACTIONS(3624), + [anon_sym_AT] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_readonly] = ACTIONS(3624), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3624), + [anon_sym_declare] = ACTIONS(3624), + [anon_sym_public] = ACTIONS(3624), + [anon_sym_private] = ACTIONS(3624), + [anon_sym_protected] = ACTIONS(3624), + [anon_sym_override] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_any] = ACTIONS(3624), + [anon_sym_number] = ACTIONS(3624), + [anon_sym_boolean] = ACTIONS(3624), + [anon_sym_string] = ACTIONS(3624), + [anon_sym_symbol] = ACTIONS(3624), + [anon_sym_object] = ACTIONS(3624), + [anon_sym_property] = ACTIONS(3624), + [anon_sym_signal] = ACTIONS(3624), + [anon_sym_on] = ACTIONS(3624), + [anon_sym_required] = ACTIONS(3624), + [anon_sym_component] = ACTIONS(3624), + [anon_sym_abstract] = ACTIONS(3624), + [anon_sym_interface] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), + [sym_html_comment] = ACTIONS(5), + }, + [1560] = { + [sym_comment] = STATE(1560), + [sym_identifier] = ACTIONS(3596), + [anon_sym_export] = ACTIONS(3596), + [anon_sym_type] = ACTIONS(3596), + [anon_sym_namespace] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3596), + [anon_sym_RBRACE] = ACTIONS(3596), + [anon_sym_typeof] = ACTIONS(3596), + [anon_sym_import] = ACTIONS(3596), + [anon_sym_from] = ACTIONS(3596), + [anon_sym_with] = ACTIONS(3596), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_let] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_LPAREN] = ACTIONS(3596), + [anon_sym_await] = ACTIONS(3596), + [anon_sym_of] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_debugger] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_LTtemplate_GT] = ACTIONS(3596), + [anon_sym_DQUOTE] = ACTIONS(3596), + [anon_sym_SQUOTE] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_async] = ACTIONS(3596), + [anon_sym_function] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_SLASH] = ACTIONS(3596), + [anon_sym_LT] = ACTIONS(3596), + [anon_sym_TILDE] = ACTIONS(3596), + [anon_sym_void] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_PLUS_PLUS] = ACTIONS(3596), + [anon_sym_DASH_DASH] = ACTIONS(3596), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3596), + [sym_number] = ACTIONS(3596), + [sym_private_property_identifier] = ACTIONS(3596), + [sym_this] = ACTIONS(3596), + [sym_super] = ACTIONS(3596), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [sym_null] = ACTIONS(3596), + [sym_undefined] = ACTIONS(3596), + [anon_sym_AT] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_readonly] = ACTIONS(3596), + [anon_sym_get] = ACTIONS(3596), + [anon_sym_set] = ACTIONS(3596), + [anon_sym_declare] = ACTIONS(3596), + [anon_sym_public] = ACTIONS(3596), + [anon_sym_private] = ACTIONS(3596), + [anon_sym_protected] = ACTIONS(3596), + [anon_sym_override] = ACTIONS(3596), + [anon_sym_module] = ACTIONS(3596), + [anon_sym_any] = ACTIONS(3596), + [anon_sym_number] = ACTIONS(3596), + [anon_sym_boolean] = ACTIONS(3596), + [anon_sym_string] = ACTIONS(3596), + [anon_sym_symbol] = ACTIONS(3596), + [anon_sym_object] = ACTIONS(3596), + [anon_sym_property] = ACTIONS(3596), + [anon_sym_signal] = ACTIONS(3596), + [anon_sym_on] = ACTIONS(3596), + [anon_sym_required] = ACTIONS(3596), + [anon_sym_component] = ACTIONS(3596), + [anon_sym_abstract] = ACTIONS(3596), + [anon_sym_interface] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [sym_html_comment] = ACTIONS(5), + }, + [1561] = { + [sym_comment] = STATE(1561), + [sym_identifier] = ACTIONS(3676), + [anon_sym_export] = ACTIONS(3676), + [anon_sym_type] = ACTIONS(3676), + [anon_sym_namespace] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_typeof] = ACTIONS(3676), + [anon_sym_import] = ACTIONS(3676), + [anon_sym_from] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3676), + [anon_sym_var] = ACTIONS(3676), + [anon_sym_let] = ACTIONS(3676), + [anon_sym_const] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3676), + [anon_sym_else] = ACTIONS(3676), + [anon_sym_if] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_for] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_await] = ACTIONS(3676), + [anon_sym_of] = ACTIONS(3676), + [anon_sym_while] = ACTIONS(3676), + [anon_sym_do] = ACTIONS(3676), + [anon_sym_try] = ACTIONS(3676), + [anon_sym_break] = ACTIONS(3676), + [anon_sym_continue] = ACTIONS(3676), + [anon_sym_debugger] = ACTIONS(3676), + [anon_sym_return] = ACTIONS(3676), + [anon_sym_throw] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym_yield] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_LTtemplate_GT] = ACTIONS(3676), + [anon_sym_DQUOTE] = ACTIONS(3676), + [anon_sym_SQUOTE] = ACTIONS(3676), + [anon_sym_class] = ACTIONS(3676), + [anon_sym_async] = ACTIONS(3676), + [anon_sym_function] = ACTIONS(3676), + [anon_sym_new] = ACTIONS(3676), + [anon_sym_using] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(3676), + [anon_sym_SLASH] = ACTIONS(3676), + [anon_sym_LT] = ACTIONS(3676), + [anon_sym_TILDE] = ACTIONS(3676), + [anon_sym_void] = ACTIONS(3676), + [anon_sym_delete] = ACTIONS(3676), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3676), + [sym_private_property_identifier] = ACTIONS(3676), + [sym_this] = ACTIONS(3676), + [sym_super] = ACTIONS(3676), + [sym_true] = ACTIONS(3676), + [sym_false] = ACTIONS(3676), + [sym_null] = ACTIONS(3676), + [sym_undefined] = ACTIONS(3676), + [anon_sym_AT] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3676), + [anon_sym_readonly] = ACTIONS(3676), + [anon_sym_get] = ACTIONS(3676), + [anon_sym_set] = ACTIONS(3676), + [anon_sym_declare] = ACTIONS(3676), + [anon_sym_public] = ACTIONS(3676), + [anon_sym_private] = ACTIONS(3676), + [anon_sym_protected] = ACTIONS(3676), + [anon_sym_override] = ACTIONS(3676), + [anon_sym_module] = ACTIONS(3676), + [anon_sym_any] = ACTIONS(3676), + [anon_sym_number] = ACTIONS(3676), + [anon_sym_boolean] = ACTIONS(3676), + [anon_sym_string] = ACTIONS(3676), + [anon_sym_symbol] = ACTIONS(3676), + [anon_sym_object] = ACTIONS(3676), + [anon_sym_property] = ACTIONS(3676), + [anon_sym_signal] = ACTIONS(3676), + [anon_sym_on] = ACTIONS(3676), + [anon_sym_required] = ACTIONS(3676), + [anon_sym_component] = ACTIONS(3676), + [anon_sym_abstract] = ACTIONS(3676), + [anon_sym_interface] = ACTIONS(3676), + [anon_sym_enum] = ACTIONS(3676), + [sym_html_comment] = ACTIONS(5), + }, + [1562] = { + [sym_comment] = STATE(1562), + [sym_identifier] = ACTIONS(3638), + [anon_sym_export] = ACTIONS(3638), + [anon_sym_type] = ACTIONS(3638), + [anon_sym_namespace] = ACTIONS(3638), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_typeof] = ACTIONS(3638), + [anon_sym_import] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_with] = ACTIONS(3638), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_const] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_else] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_await] = ACTIONS(3638), + [anon_sym_of] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_break] = ACTIONS(3638), + [anon_sym_continue] = ACTIONS(3638), + [anon_sym_debugger] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_throw] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LTtemplate_GT] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_class] = ACTIONS(3638), + [anon_sym_async] = ACTIONS(3638), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_using] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_void] = ACTIONS(3638), + [anon_sym_delete] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3638), + [sym_number] = ACTIONS(3638), + [sym_private_property_identifier] = ACTIONS(3638), + [sym_this] = ACTIONS(3638), + [sym_super] = ACTIONS(3638), + [sym_true] = ACTIONS(3638), + [sym_false] = ACTIONS(3638), + [sym_null] = ACTIONS(3638), + [sym_undefined] = ACTIONS(3638), + [anon_sym_AT] = ACTIONS(3638), + [anon_sym_static] = ACTIONS(3638), + [anon_sym_readonly] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(3638), + [anon_sym_set] = ACTIONS(3638), + [anon_sym_declare] = ACTIONS(3638), + [anon_sym_public] = ACTIONS(3638), + [anon_sym_private] = ACTIONS(3638), + [anon_sym_protected] = ACTIONS(3638), + [anon_sym_override] = ACTIONS(3638), + [anon_sym_module] = ACTIONS(3638), + [anon_sym_any] = ACTIONS(3638), + [anon_sym_number] = ACTIONS(3638), + [anon_sym_boolean] = ACTIONS(3638), + [anon_sym_string] = ACTIONS(3638), + [anon_sym_symbol] = ACTIONS(3638), + [anon_sym_object] = ACTIONS(3638), + [anon_sym_property] = ACTIONS(3638), + [anon_sym_signal] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_required] = ACTIONS(3638), + [anon_sym_component] = ACTIONS(3638), + [anon_sym_abstract] = ACTIONS(3638), + [anon_sym_interface] = ACTIONS(3638), + [anon_sym_enum] = ACTIONS(3638), + [sym_html_comment] = ACTIONS(5), + }, + [1563] = { + [sym_comment] = STATE(1563), + [sym_identifier] = ACTIONS(3628), + [anon_sym_export] = ACTIONS(3628), + [anon_sym_type] = ACTIONS(3628), + [anon_sym_namespace] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_RBRACE] = ACTIONS(3628), + [anon_sym_typeof] = ACTIONS(3628), + [anon_sym_import] = ACTIONS(3628), + [anon_sym_from] = ACTIONS(3628), + [anon_sym_with] = ACTIONS(3628), + [anon_sym_var] = ACTIONS(3628), + [anon_sym_let] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_else] = ACTIONS(3628), + [anon_sym_if] = ACTIONS(3628), + [anon_sym_switch] = ACTIONS(3628), + [anon_sym_for] = ACTIONS(3628), + [anon_sym_LPAREN] = ACTIONS(3628), + [anon_sym_await] = ACTIONS(3628), + [anon_sym_of] = ACTIONS(3628), + [anon_sym_while] = ACTIONS(3628), + [anon_sym_do] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3628), + [anon_sym_break] = ACTIONS(3628), + [anon_sym_continue] = ACTIONS(3628), + [anon_sym_debugger] = ACTIONS(3628), + [anon_sym_return] = ACTIONS(3628), + [anon_sym_throw] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_yield] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3628), + [anon_sym_LTtemplate_GT] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_async] = ACTIONS(3628), + [anon_sym_function] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_using] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_LT] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_void] = ACTIONS(3628), + [anon_sym_delete] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3628), + [sym_number] = ACTIONS(3628), + [sym_private_property_identifier] = ACTIONS(3628), + [sym_this] = ACTIONS(3628), + [sym_super] = ACTIONS(3628), + [sym_true] = ACTIONS(3628), + [sym_false] = ACTIONS(3628), + [sym_null] = ACTIONS(3628), + [sym_undefined] = ACTIONS(3628), + [anon_sym_AT] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_readonly] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(3628), + [anon_sym_set] = ACTIONS(3628), + [anon_sym_declare] = ACTIONS(3628), + [anon_sym_public] = ACTIONS(3628), + [anon_sym_private] = ACTIONS(3628), + [anon_sym_protected] = ACTIONS(3628), + [anon_sym_override] = ACTIONS(3628), + [anon_sym_module] = ACTIONS(3628), + [anon_sym_any] = ACTIONS(3628), + [anon_sym_number] = ACTIONS(3628), + [anon_sym_boolean] = ACTIONS(3628), + [anon_sym_string] = ACTIONS(3628), + [anon_sym_symbol] = ACTIONS(3628), + [anon_sym_object] = ACTIONS(3628), + [anon_sym_property] = ACTIONS(3628), + [anon_sym_signal] = ACTIONS(3628), + [anon_sym_on] = ACTIONS(3628), + [anon_sym_required] = ACTIONS(3628), + [anon_sym_component] = ACTIONS(3628), + [anon_sym_abstract] = ACTIONS(3628), + [anon_sym_interface] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), + [sym_html_comment] = ACTIONS(5), + }, + [1564] = { + [sym_comment] = STATE(1564), + [sym_identifier] = ACTIONS(3630), + [anon_sym_export] = ACTIONS(3630), + [anon_sym_type] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_typeof] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), + [anon_sym_from] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3630), + [anon_sym_var] = ACTIONS(3630), + [anon_sym_let] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_await] = ACTIONS(3630), + [anon_sym_of] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_debugger] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_yield] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LTtemplate_GT] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3630), + [anon_sym_SQUOTE] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_async] = ACTIONS(3630), + [anon_sym_function] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_SLASH] = ACTIONS(3630), + [anon_sym_LT] = ACTIONS(3630), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_void] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3630), + [sym_number] = ACTIONS(3630), + [sym_private_property_identifier] = ACTIONS(3630), + [sym_this] = ACTIONS(3630), + [sym_super] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_null] = ACTIONS(3630), + [sym_undefined] = ACTIONS(3630), + [anon_sym_AT] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_readonly] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(3630), + [anon_sym_set] = ACTIONS(3630), + [anon_sym_declare] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_override] = ACTIONS(3630), + [anon_sym_module] = ACTIONS(3630), + [anon_sym_any] = ACTIONS(3630), + [anon_sym_number] = ACTIONS(3630), + [anon_sym_boolean] = ACTIONS(3630), + [anon_sym_string] = ACTIONS(3630), + [anon_sym_symbol] = ACTIONS(3630), + [anon_sym_object] = ACTIONS(3630), + [anon_sym_property] = ACTIONS(3630), + [anon_sym_signal] = ACTIONS(3630), + [anon_sym_on] = ACTIONS(3630), + [anon_sym_required] = ACTIONS(3630), + [anon_sym_component] = ACTIONS(3630), + [anon_sym_abstract] = ACTIONS(3630), + [anon_sym_interface] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [sym_html_comment] = ACTIONS(5), + }, + [1565] = { + [sym_comment] = STATE(1565), + [sym_identifier] = ACTIONS(3472), + [anon_sym_export] = ACTIONS(3472), + [anon_sym_type] = ACTIONS(3472), + [anon_sym_namespace] = ACTIONS(3472), + [anon_sym_LBRACE] = ACTIONS(3472), + [anon_sym_RBRACE] = ACTIONS(3472), + [anon_sym_typeof] = ACTIONS(3472), + [anon_sym_import] = ACTIONS(3472), + [anon_sym_from] = ACTIONS(3472), + [anon_sym_with] = ACTIONS(3472), + [anon_sym_var] = ACTIONS(3472), + [anon_sym_let] = ACTIONS(3472), + [anon_sym_const] = ACTIONS(3472), + [anon_sym_BANG] = ACTIONS(3472), + [anon_sym_else] = ACTIONS(3472), + [anon_sym_if] = ACTIONS(3472), + [anon_sym_switch] = ACTIONS(3472), + [anon_sym_for] = ACTIONS(3472), + [anon_sym_LPAREN] = ACTIONS(3472), + [anon_sym_await] = ACTIONS(3472), + [anon_sym_of] = ACTIONS(3472), + [anon_sym_while] = ACTIONS(3472), + [anon_sym_do] = ACTIONS(3472), + [anon_sym_try] = ACTIONS(3472), + [anon_sym_break] = ACTIONS(3472), + [anon_sym_continue] = ACTIONS(3472), + [anon_sym_debugger] = ACTIONS(3472), + [anon_sym_return] = ACTIONS(3472), + [anon_sym_throw] = ACTIONS(3472), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym_yield] = ACTIONS(3472), + [anon_sym_LBRACK] = ACTIONS(3472), + [anon_sym_LTtemplate_GT] = ACTIONS(3472), + [anon_sym_DQUOTE] = ACTIONS(3472), + [anon_sym_SQUOTE] = ACTIONS(3472), + [anon_sym_class] = ACTIONS(3472), + [anon_sym_async] = ACTIONS(3472), + [anon_sym_function] = ACTIONS(3472), + [anon_sym_new] = ACTIONS(3472), + [anon_sym_using] = ACTIONS(3472), + [anon_sym_PLUS] = ACTIONS(3472), + [anon_sym_DASH] = ACTIONS(3472), + [anon_sym_SLASH] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(3472), + [anon_sym_TILDE] = ACTIONS(3472), + [anon_sym_void] = ACTIONS(3472), + [anon_sym_delete] = ACTIONS(3472), + [anon_sym_PLUS_PLUS] = ACTIONS(3472), + [anon_sym_DASH_DASH] = ACTIONS(3472), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3472), + [sym_number] = ACTIONS(3472), + [sym_private_property_identifier] = ACTIONS(3472), + [sym_this] = ACTIONS(3472), + [sym_super] = ACTIONS(3472), + [sym_true] = ACTIONS(3472), + [sym_false] = ACTIONS(3472), + [sym_null] = ACTIONS(3472), + [sym_undefined] = ACTIONS(3472), + [anon_sym_AT] = ACTIONS(3472), + [anon_sym_static] = ACTIONS(3472), + [anon_sym_readonly] = ACTIONS(3472), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3472), + [anon_sym_declare] = ACTIONS(3472), + [anon_sym_public] = ACTIONS(3472), + [anon_sym_private] = ACTIONS(3472), + [anon_sym_protected] = ACTIONS(3472), + [anon_sym_override] = ACTIONS(3472), + [anon_sym_module] = ACTIONS(3472), + [anon_sym_any] = ACTIONS(3472), + [anon_sym_number] = ACTIONS(3472), + [anon_sym_boolean] = ACTIONS(3472), + [anon_sym_string] = ACTIONS(3472), + [anon_sym_symbol] = ACTIONS(3472), + [anon_sym_object] = ACTIONS(3472), + [anon_sym_property] = ACTIONS(3472), + [anon_sym_signal] = ACTIONS(3472), + [anon_sym_on] = ACTIONS(3472), + [anon_sym_required] = ACTIONS(3472), + [anon_sym_component] = ACTIONS(3472), + [anon_sym_abstract] = ACTIONS(3472), + [anon_sym_interface] = ACTIONS(3472), + [anon_sym_enum] = ACTIONS(3472), + [sym_html_comment] = ACTIONS(5), + }, + [1566] = { + [sym_comment] = STATE(1566), + [sym_identifier] = ACTIONS(3566), + [anon_sym_export] = ACTIONS(3566), + [anon_sym_type] = ACTIONS(3566), + [anon_sym_namespace] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_RBRACE] = ACTIONS(3566), + [anon_sym_typeof] = ACTIONS(3566), + [anon_sym_import] = ACTIONS(3566), + [anon_sym_from] = ACTIONS(3566), + [anon_sym_with] = ACTIONS(3566), + [anon_sym_var] = ACTIONS(3566), + [anon_sym_let] = ACTIONS(3566), + [anon_sym_const] = ACTIONS(3566), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_else] = ACTIONS(3566), + [anon_sym_if] = ACTIONS(3566), + [anon_sym_switch] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_await] = ACTIONS(3566), + [anon_sym_of] = ACTIONS(3566), + [anon_sym_while] = ACTIONS(3566), + [anon_sym_do] = ACTIONS(3566), + [anon_sym_try] = ACTIONS(3566), + [anon_sym_break] = ACTIONS(3566), + [anon_sym_continue] = ACTIONS(3566), + [anon_sym_debugger] = ACTIONS(3566), + [anon_sym_return] = ACTIONS(3566), + [anon_sym_throw] = ACTIONS(3566), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3566), + [anon_sym_LBRACK] = ACTIONS(3566), + [anon_sym_LTtemplate_GT] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [anon_sym_SQUOTE] = ACTIONS(3566), + [anon_sym_class] = ACTIONS(3566), + [anon_sym_async] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3566), + [anon_sym_using] = ACTIONS(3566), + [anon_sym_PLUS] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3566), + [anon_sym_SLASH] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_TILDE] = ACTIONS(3566), + [anon_sym_void] = ACTIONS(3566), + [anon_sym_delete] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3566), + [sym_number] = ACTIONS(3566), + [sym_private_property_identifier] = ACTIONS(3566), + [sym_this] = ACTIONS(3566), + [sym_super] = ACTIONS(3566), + [sym_true] = ACTIONS(3566), + [sym_false] = ACTIONS(3566), + [sym_null] = ACTIONS(3566), + [sym_undefined] = ACTIONS(3566), + [anon_sym_AT] = ACTIONS(3566), + [anon_sym_static] = ACTIONS(3566), + [anon_sym_readonly] = ACTIONS(3566), + [anon_sym_get] = ACTIONS(3566), + [anon_sym_set] = ACTIONS(3566), + [anon_sym_declare] = ACTIONS(3566), + [anon_sym_public] = ACTIONS(3566), + [anon_sym_private] = ACTIONS(3566), + [anon_sym_protected] = ACTIONS(3566), + [anon_sym_override] = ACTIONS(3566), + [anon_sym_module] = ACTIONS(3566), + [anon_sym_any] = ACTIONS(3566), + [anon_sym_number] = ACTIONS(3566), + [anon_sym_boolean] = ACTIONS(3566), + [anon_sym_string] = ACTIONS(3566), + [anon_sym_symbol] = ACTIONS(3566), + [anon_sym_object] = ACTIONS(3566), + [anon_sym_property] = ACTIONS(3566), + [anon_sym_signal] = ACTIONS(3566), + [anon_sym_on] = ACTIONS(3566), + [anon_sym_required] = ACTIONS(3566), + [anon_sym_component] = ACTIONS(3566), + [anon_sym_abstract] = ACTIONS(3566), + [anon_sym_interface] = ACTIONS(3566), + [anon_sym_enum] = ACTIONS(3566), + [sym_html_comment] = ACTIONS(5), + }, + [1567] = { + [sym_comment] = STATE(1567), + [sym_identifier] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_type] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_typeof] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_from] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3600), + [anon_sym_var] = ACTIONS(3600), + [anon_sym_let] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_await] = ACTIONS(3600), + [anon_sym_of] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_debugger] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LTtemplate_GT] = ACTIONS(3600), + [anon_sym_DQUOTE] = ACTIONS(3600), + [anon_sym_SQUOTE] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_async] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_TILDE] = ACTIONS(3600), + [anon_sym_void] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3600), + [sym_number] = ACTIONS(3600), + [sym_private_property_identifier] = ACTIONS(3600), + [sym_this] = ACTIONS(3600), + [sym_super] = ACTIONS(3600), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [sym_null] = ACTIONS(3600), + [sym_undefined] = ACTIONS(3600), + [anon_sym_AT] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_readonly] = ACTIONS(3600), + [anon_sym_get] = ACTIONS(3600), + [anon_sym_set] = ACTIONS(3600), + [anon_sym_declare] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_override] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_any] = ACTIONS(3600), + [anon_sym_number] = ACTIONS(3600), + [anon_sym_boolean] = ACTIONS(3600), + [anon_sym_string] = ACTIONS(3600), + [anon_sym_symbol] = ACTIONS(3600), + [anon_sym_object] = ACTIONS(3600), + [anon_sym_property] = ACTIONS(3600), + [anon_sym_signal] = ACTIONS(3600), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_required] = ACTIONS(3600), + [anon_sym_component] = ACTIONS(3600), + [anon_sym_abstract] = ACTIONS(3600), + [anon_sym_interface] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [sym_html_comment] = ACTIONS(5), + }, + [1568] = { + [sym_comment] = STATE(1568), + [sym_identifier] = ACTIONS(3592), + [anon_sym_export] = ACTIONS(3592), + [anon_sym_type] = ACTIONS(3592), + [anon_sym_namespace] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_RBRACE] = ACTIONS(3592), + [anon_sym_typeof] = ACTIONS(3592), + [anon_sym_import] = ACTIONS(3592), + [anon_sym_from] = ACTIONS(3592), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_var] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_BANG] = ACTIONS(3592), + [anon_sym_else] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_await] = ACTIONS(3592), + [anon_sym_of] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_debugger] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_throw] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LTtemplate_GT] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(3592), + [anon_sym_class] = ACTIONS(3592), + [anon_sym_async] = ACTIONS(3592), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_using] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_SLASH] = ACTIONS(3592), + [anon_sym_LT] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3592), + [anon_sym_void] = ACTIONS(3592), + [anon_sym_delete] = ACTIONS(3592), + [anon_sym_PLUS_PLUS] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3592), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3592), + [sym_number] = ACTIONS(3592), + [sym_private_property_identifier] = ACTIONS(3592), + [sym_this] = ACTIONS(3592), + [sym_super] = ACTIONS(3592), + [sym_true] = ACTIONS(3592), + [sym_false] = ACTIONS(3592), + [sym_null] = ACTIONS(3592), + [sym_undefined] = ACTIONS(3592), + [anon_sym_AT] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3592), + [anon_sym_readonly] = ACTIONS(3592), + [anon_sym_get] = ACTIONS(3592), + [anon_sym_set] = ACTIONS(3592), + [anon_sym_declare] = ACTIONS(3592), + [anon_sym_public] = ACTIONS(3592), + [anon_sym_private] = ACTIONS(3592), + [anon_sym_protected] = ACTIONS(3592), + [anon_sym_override] = ACTIONS(3592), + [anon_sym_module] = ACTIONS(3592), + [anon_sym_any] = ACTIONS(3592), + [anon_sym_number] = ACTIONS(3592), + [anon_sym_boolean] = ACTIONS(3592), + [anon_sym_string] = ACTIONS(3592), + [anon_sym_symbol] = ACTIONS(3592), + [anon_sym_object] = ACTIONS(3592), + [anon_sym_property] = ACTIONS(3592), + [anon_sym_signal] = ACTIONS(3592), + [anon_sym_on] = ACTIONS(3592), + [anon_sym_required] = ACTIONS(3592), + [anon_sym_component] = ACTIONS(3592), + [anon_sym_abstract] = ACTIONS(3592), + [anon_sym_interface] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), + [sym_html_comment] = ACTIONS(5), + }, + [1569] = { + [sym_comment] = STATE(1569), + [sym_identifier] = ACTIONS(3586), + [anon_sym_export] = ACTIONS(3586), + [anon_sym_type] = ACTIONS(3586), + [anon_sym_namespace] = ACTIONS(3586), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_RBRACE] = ACTIONS(3586), + [anon_sym_typeof] = ACTIONS(3586), + [anon_sym_import] = ACTIONS(3586), + [anon_sym_from] = ACTIONS(3586), + [anon_sym_with] = ACTIONS(3586), + [anon_sym_var] = ACTIONS(3586), + [anon_sym_let] = ACTIONS(3586), + [anon_sym_const] = ACTIONS(3586), + [anon_sym_BANG] = ACTIONS(3586), + [anon_sym_else] = ACTIONS(3586), + [anon_sym_if] = ACTIONS(3586), + [anon_sym_switch] = ACTIONS(3586), + [anon_sym_for] = ACTIONS(3586), + [anon_sym_LPAREN] = ACTIONS(3586), + [anon_sym_await] = ACTIONS(3586), + [anon_sym_of] = ACTIONS(3586), + [anon_sym_while] = ACTIONS(3586), + [anon_sym_do] = ACTIONS(3586), + [anon_sym_try] = ACTIONS(3586), + [anon_sym_break] = ACTIONS(3586), + [anon_sym_continue] = ACTIONS(3586), + [anon_sym_debugger] = ACTIONS(3586), + [anon_sym_return] = ACTIONS(3586), + [anon_sym_throw] = ACTIONS(3586), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_yield] = ACTIONS(3586), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LTtemplate_GT] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3586), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_class] = ACTIONS(3586), + [anon_sym_async] = ACTIONS(3586), + [anon_sym_function] = ACTIONS(3586), + [anon_sym_new] = ACTIONS(3586), + [anon_sym_using] = ACTIONS(3586), + [anon_sym_PLUS] = ACTIONS(3586), + [anon_sym_DASH] = ACTIONS(3586), + [anon_sym_SLASH] = ACTIONS(3586), + [anon_sym_LT] = ACTIONS(3586), + [anon_sym_TILDE] = ACTIONS(3586), + [anon_sym_void] = ACTIONS(3586), + [anon_sym_delete] = ACTIONS(3586), + [anon_sym_PLUS_PLUS] = ACTIONS(3586), + [anon_sym_DASH_DASH] = ACTIONS(3586), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3586), + [sym_number] = ACTIONS(3586), + [sym_private_property_identifier] = ACTIONS(3586), + [sym_this] = ACTIONS(3586), + [sym_super] = ACTIONS(3586), + [sym_true] = ACTIONS(3586), + [sym_false] = ACTIONS(3586), + [sym_null] = ACTIONS(3586), + [sym_undefined] = ACTIONS(3586), + [anon_sym_AT] = ACTIONS(3586), + [anon_sym_static] = ACTIONS(3586), + [anon_sym_readonly] = ACTIONS(3586), + [anon_sym_get] = ACTIONS(3586), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_declare] = ACTIONS(3586), + [anon_sym_public] = ACTIONS(3586), + [anon_sym_private] = ACTIONS(3586), + [anon_sym_protected] = ACTIONS(3586), + [anon_sym_override] = ACTIONS(3586), + [anon_sym_module] = ACTIONS(3586), + [anon_sym_any] = ACTIONS(3586), + [anon_sym_number] = ACTIONS(3586), + [anon_sym_boolean] = ACTIONS(3586), + [anon_sym_string] = ACTIONS(3586), + [anon_sym_symbol] = ACTIONS(3586), + [anon_sym_object] = ACTIONS(3586), + [anon_sym_property] = ACTIONS(3586), + [anon_sym_signal] = ACTIONS(3586), + [anon_sym_on] = ACTIONS(3586), + [anon_sym_required] = ACTIONS(3586), + [anon_sym_component] = ACTIONS(3586), + [anon_sym_abstract] = ACTIONS(3586), + [anon_sym_interface] = ACTIONS(3586), + [anon_sym_enum] = ACTIONS(3586), + [sym_html_comment] = ACTIONS(5), + }, + [1570] = { + [sym_comment] = STATE(1570), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(2598), + [sym_html_comment] = ACTIONS(5), + }, + [1571] = { + [sym_comment] = STATE(1571), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_else] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [sym_html_comment] = ACTIONS(5), + }, + [1572] = { + [sym_comment] = STATE(1572), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_else] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [sym_html_comment] = ACTIONS(5), + }, + [1573] = { + [sym_comment] = STATE(1573), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_else] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [sym_html_comment] = ACTIONS(5), + }, + [1574] = { + [sym_comment] = STATE(1574), + [sym_identifier] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_type] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_typeof] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [anon_sym_var] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_await] = ACTIONS(3640), + [anon_sym_of] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_debugger] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_LTtemplate_GT] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_async] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3640), + [anon_sym_void] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3640), + [sym_number] = ACTIONS(3640), + [sym_private_property_identifier] = ACTIONS(3640), + [sym_this] = ACTIONS(3640), + [sym_super] = ACTIONS(3640), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [sym_null] = ACTIONS(3640), + [sym_undefined] = ACTIONS(3640), + [anon_sym_AT] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_readonly] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(3640), + [anon_sym_set] = ACTIONS(3640), + [anon_sym_declare] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_override] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_any] = ACTIONS(3640), + [anon_sym_number] = ACTIONS(3640), + [anon_sym_boolean] = ACTIONS(3640), + [anon_sym_string] = ACTIONS(3640), + [anon_sym_symbol] = ACTIONS(3640), + [anon_sym_object] = ACTIONS(3640), + [anon_sym_property] = ACTIONS(3640), + [anon_sym_signal] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_required] = ACTIONS(3640), + [anon_sym_component] = ACTIONS(3640), + [anon_sym_abstract] = ACTIONS(3640), + [anon_sym_interface] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [sym_html_comment] = ACTIONS(5), + }, + [1575] = { + [sym_comment] = STATE(1575), + [sym_identifier] = ACTIONS(3468), + [anon_sym_export] = ACTIONS(3468), + [anon_sym_type] = ACTIONS(3468), + [anon_sym_namespace] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3468), + [anon_sym_RBRACE] = ACTIONS(3468), + [anon_sym_typeof] = ACTIONS(3468), + [anon_sym_import] = ACTIONS(3468), + [anon_sym_from] = ACTIONS(3468), + [anon_sym_with] = ACTIONS(3468), + [anon_sym_var] = ACTIONS(3468), + [anon_sym_let] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_BANG] = ACTIONS(3468), + [anon_sym_else] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_await] = ACTIONS(3468), + [anon_sym_of] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_debugger] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_yield] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_LTtemplate_GT] = ACTIONS(3468), + [anon_sym_DQUOTE] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_async] = ACTIONS(3468), + [anon_sym_function] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_using] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_SLASH] = ACTIONS(3468), + [anon_sym_LT] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(3468), + [anon_sym_void] = ACTIONS(3468), + [anon_sym_delete] = ACTIONS(3468), + [anon_sym_PLUS_PLUS] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3468), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3468), + [sym_number] = ACTIONS(3468), + [sym_private_property_identifier] = ACTIONS(3468), + [sym_this] = ACTIONS(3468), + [sym_super] = ACTIONS(3468), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [sym_null] = ACTIONS(3468), + [sym_undefined] = ACTIONS(3468), + [anon_sym_AT] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_readonly] = ACTIONS(3468), + [anon_sym_get] = ACTIONS(3468), + [anon_sym_set] = ACTIONS(3468), + [anon_sym_declare] = ACTIONS(3468), + [anon_sym_public] = ACTIONS(3468), + [anon_sym_private] = ACTIONS(3468), + [anon_sym_protected] = ACTIONS(3468), + [anon_sym_override] = ACTIONS(3468), + [anon_sym_module] = ACTIONS(3468), + [anon_sym_any] = ACTIONS(3468), + [anon_sym_number] = ACTIONS(3468), + [anon_sym_boolean] = ACTIONS(3468), + [anon_sym_string] = ACTIONS(3468), + [anon_sym_symbol] = ACTIONS(3468), + [anon_sym_object] = ACTIONS(3468), + [anon_sym_property] = ACTIONS(3468), + [anon_sym_signal] = ACTIONS(3468), + [anon_sym_on] = ACTIONS(3468), + [anon_sym_required] = ACTIONS(3468), + [anon_sym_component] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(3468), + [anon_sym_interface] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), + [sym_html_comment] = ACTIONS(5), + }, + [1576] = { + [sym_comment] = STATE(1576), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_typeof] = ACTIONS(2440), + [anon_sym_import] = ACTIONS(2440), + [anon_sym_from] = ACTIONS(2440), + [anon_sym_with] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_switch] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_await] = ACTIONS(2440), + [anon_sym_of] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_do] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_debugger] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_throw] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_yield] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_LTtemplate_GT] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [anon_sym_SQUOTE] = ACTIONS(2440), + [anon_sym_class] = ACTIONS(2440), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_new] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_SLASH] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_TILDE] = ACTIONS(2440), + [anon_sym_void] = ACTIONS(2440), + [anon_sym_delete] = ACTIONS(2440), + [anon_sym_PLUS_PLUS] = ACTIONS(2440), + [anon_sym_DASH_DASH] = ACTIONS(2440), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2440), + [sym_number] = ACTIONS(2440), + [sym_private_property_identifier] = ACTIONS(2440), + [sym_this] = ACTIONS(2440), + [sym_super] = ACTIONS(2440), + [sym_true] = ACTIONS(2440), + [sym_false] = ACTIONS(2440), + [sym_null] = ACTIONS(2440), + [sym_undefined] = ACTIONS(2440), + [anon_sym_AT] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), + [anon_sym_property] = ACTIONS(2440), + [anon_sym_signal] = ACTIONS(2440), + [anon_sym_on] = ACTIONS(2440), + [anon_sym_required] = ACTIONS(2440), + [anon_sym_component] = ACTIONS(2440), + [anon_sym_abstract] = ACTIONS(2440), + [anon_sym_interface] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [sym__automatic_semicolon] = ACTIONS(2710), + [sym_html_comment] = ACTIONS(5), + }, + [1577] = { + [sym_comment] = STATE(1577), + [sym_identifier] = ACTIONS(3654), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_type] = ACTIONS(3654), + [anon_sym_namespace] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_RBRACE] = ACTIONS(3654), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_from] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_await] = ACTIONS(3654), + [anon_sym_of] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym_yield] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_LTtemplate_GT] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_class] = ACTIONS(3654), + [anon_sym_async] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_using] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_LT] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_void] = ACTIONS(3654), + [anon_sym_delete] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3654), + [sym_number] = ACTIONS(3654), + [sym_private_property_identifier] = ACTIONS(3654), + [sym_this] = ACTIONS(3654), + [sym_super] = ACTIONS(3654), + [sym_true] = ACTIONS(3654), + [sym_false] = ACTIONS(3654), + [sym_null] = ACTIONS(3654), + [sym_undefined] = ACTIONS(3654), + [anon_sym_AT] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_readonly] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_declare] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_protected] = ACTIONS(3654), + [anon_sym_override] = ACTIONS(3654), + [anon_sym_module] = ACTIONS(3654), + [anon_sym_any] = ACTIONS(3654), + [anon_sym_number] = ACTIONS(3654), + [anon_sym_boolean] = ACTIONS(3654), + [anon_sym_string] = ACTIONS(3654), + [anon_sym_symbol] = ACTIONS(3654), + [anon_sym_object] = ACTIONS(3654), + [anon_sym_property] = ACTIONS(3654), + [anon_sym_signal] = ACTIONS(3654), + [anon_sym_on] = ACTIONS(3654), + [anon_sym_required] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_enum] = ACTIONS(3654), + [sym_html_comment] = ACTIONS(5), + }, + [1578] = { + [sym_comment] = STATE(1578), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1579] = { + [sym_comment] = STATE(1579), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1580] = { + [sym_comment] = STATE(1580), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1581] = { + [sym_comment] = STATE(1581), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1582] = { + [sym_comment] = STATE(1582), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1583] = { + [sym_comment] = STATE(1583), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1584] = { + [sym_comment] = STATE(1584), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1585] = { + [sym_comment] = STATE(1585), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1586] = { + [sym_comment] = STATE(1586), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(2285), + [anon_sym_import] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_with] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_switch] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_await] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_do] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_debugger] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_throw] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LTtemplate_GT] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_class] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_using] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_TILDE] = ACTIONS(2285), + [anon_sym_void] = ACTIONS(2285), + [anon_sym_delete] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [sym_number] = ACTIONS(2285), + [sym_private_property_identifier] = ACTIONS(2285), + [sym_this] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_true] = ACTIONS(2285), + [sym_false] = ACTIONS(2285), + [sym_null] = ACTIONS(2285), + [sym_undefined] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_abstract] = ACTIONS(2285), + [anon_sym_interface] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3714), + [sym_html_comment] = ACTIONS(5), + }, + [1587] = { + [sym_comment] = STATE(1587), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1588] = { + [sym_comment] = STATE(1588), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1589] = { + [sym_comment] = STATE(1589), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1590] = { + [sym_comment] = STATE(1590), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1591] = { + [sym_comment] = STATE(1591), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1592] = { + [sym_comment] = STATE(1592), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1593] = { + [sym_comment] = STATE(1593), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1594] = { + [sym_comment] = STATE(1594), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1595] = { + [sym_comment] = STATE(1595), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1596] = { + [sym_comment] = STATE(1596), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1597] = { + [sym_comment] = STATE(1597), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1598] = { + [sym_comment] = STATE(1598), + [sym_identifier] = ACTIONS(3474), + [anon_sym_export] = ACTIONS(3474), + [anon_sym_type] = ACTIONS(3474), + [anon_sym_namespace] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3474), + [anon_sym_RBRACE] = ACTIONS(3474), + [anon_sym_typeof] = ACTIONS(3474), + [anon_sym_import] = ACTIONS(3474), + [anon_sym_from] = ACTIONS(3474), + [anon_sym_with] = ACTIONS(3474), + [anon_sym_var] = ACTIONS(3474), + [anon_sym_let] = ACTIONS(3474), + [anon_sym_const] = ACTIONS(3474), + [anon_sym_BANG] = ACTIONS(3474), + [anon_sym_else] = ACTIONS(3474), + [anon_sym_if] = ACTIONS(3474), + [anon_sym_switch] = ACTIONS(3474), + [anon_sym_for] = ACTIONS(3474), + [anon_sym_LPAREN] = ACTIONS(3474), + [anon_sym_await] = ACTIONS(3474), + [anon_sym_of] = ACTIONS(3474), + [anon_sym_while] = ACTIONS(3474), + [anon_sym_do] = ACTIONS(3474), + [anon_sym_try] = ACTIONS(3474), + [anon_sym_break] = ACTIONS(3474), + [anon_sym_continue] = ACTIONS(3474), + [anon_sym_debugger] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3474), + [anon_sym_throw] = ACTIONS(3474), + [anon_sym_SEMI] = ACTIONS(3474), + [anon_sym_yield] = ACTIONS(3474), + [anon_sym_LBRACK] = ACTIONS(3474), + [anon_sym_LTtemplate_GT] = ACTIONS(3474), + [anon_sym_DQUOTE] = ACTIONS(3474), + [anon_sym_SQUOTE] = ACTIONS(3474), + [anon_sym_class] = ACTIONS(3474), + [anon_sym_async] = ACTIONS(3474), + [anon_sym_function] = ACTIONS(3474), + [anon_sym_new] = ACTIONS(3474), + [anon_sym_using] = ACTIONS(3474), + [anon_sym_PLUS] = ACTIONS(3474), + [anon_sym_DASH] = ACTIONS(3474), + [anon_sym_SLASH] = ACTIONS(3474), + [anon_sym_LT] = ACTIONS(3474), + [anon_sym_TILDE] = ACTIONS(3474), + [anon_sym_void] = ACTIONS(3474), + [anon_sym_delete] = ACTIONS(3474), + [anon_sym_PLUS_PLUS] = ACTIONS(3474), + [anon_sym_DASH_DASH] = ACTIONS(3474), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3474), + [sym_number] = ACTIONS(3474), + [sym_private_property_identifier] = ACTIONS(3474), + [sym_this] = ACTIONS(3474), + [sym_super] = ACTIONS(3474), + [sym_true] = ACTIONS(3474), + [sym_false] = ACTIONS(3474), + [sym_null] = ACTIONS(3474), + [sym_undefined] = ACTIONS(3474), + [anon_sym_AT] = ACTIONS(3474), + [anon_sym_static] = ACTIONS(3474), + [anon_sym_readonly] = ACTIONS(3474), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_declare] = ACTIONS(3474), + [anon_sym_public] = ACTIONS(3474), + [anon_sym_private] = ACTIONS(3474), + [anon_sym_protected] = ACTIONS(3474), + [anon_sym_override] = ACTIONS(3474), + [anon_sym_module] = ACTIONS(3474), + [anon_sym_any] = ACTIONS(3474), + [anon_sym_number] = ACTIONS(3474), + [anon_sym_boolean] = ACTIONS(3474), + [anon_sym_string] = ACTIONS(3474), + [anon_sym_symbol] = ACTIONS(3474), + [anon_sym_object] = ACTIONS(3474), + [anon_sym_property] = ACTIONS(3474), + [anon_sym_signal] = ACTIONS(3474), + [anon_sym_on] = ACTIONS(3474), + [anon_sym_required] = ACTIONS(3474), + [anon_sym_component] = ACTIONS(3474), + [anon_sym_abstract] = ACTIONS(3474), + [anon_sym_interface] = ACTIONS(3474), + [anon_sym_enum] = ACTIONS(3474), + [sym_html_comment] = ACTIONS(5), + }, + [1599] = { + [sym_comment] = STATE(1599), + [sym_identifier] = ACTIONS(3464), + [anon_sym_export] = ACTIONS(3464), + [anon_sym_type] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3464), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_typeof] = ACTIONS(3464), + [anon_sym_import] = ACTIONS(3464), + [anon_sym_from] = ACTIONS(3464), + [anon_sym_with] = ACTIONS(3464), + [anon_sym_var] = ACTIONS(3464), + [anon_sym_let] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3464), + [anon_sym_else] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_await] = ACTIONS(3464), + [anon_sym_of] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_debugger] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_yield] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_LTtemplate_GT] = ACTIONS(3464), + [anon_sym_DQUOTE] = ACTIONS(3464), + [anon_sym_SQUOTE] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_async] = ACTIONS(3464), + [anon_sym_function] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_SLASH] = ACTIONS(3464), + [anon_sym_LT] = ACTIONS(3464), + [anon_sym_TILDE] = ACTIONS(3464), + [anon_sym_void] = ACTIONS(3464), + [anon_sym_delete] = ACTIONS(3464), + [anon_sym_PLUS_PLUS] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3464), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3464), + [sym_number] = ACTIONS(3464), + [sym_private_property_identifier] = ACTIONS(3464), + [sym_this] = ACTIONS(3464), + [sym_super] = ACTIONS(3464), + [sym_true] = ACTIONS(3464), + [sym_false] = ACTIONS(3464), + [sym_null] = ACTIONS(3464), + [sym_undefined] = ACTIONS(3464), + [anon_sym_AT] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_readonly] = ACTIONS(3464), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3464), + [anon_sym_declare] = ACTIONS(3464), + [anon_sym_public] = ACTIONS(3464), + [anon_sym_private] = ACTIONS(3464), + [anon_sym_protected] = ACTIONS(3464), + [anon_sym_override] = ACTIONS(3464), + [anon_sym_module] = ACTIONS(3464), + [anon_sym_any] = ACTIONS(3464), + [anon_sym_number] = ACTIONS(3464), + [anon_sym_boolean] = ACTIONS(3464), + [anon_sym_string] = ACTIONS(3464), + [anon_sym_symbol] = ACTIONS(3464), + [anon_sym_object] = ACTIONS(3464), + [anon_sym_property] = ACTIONS(3464), + [anon_sym_signal] = ACTIONS(3464), + [anon_sym_on] = ACTIONS(3464), + [anon_sym_required] = ACTIONS(3464), + [anon_sym_component] = ACTIONS(3464), + [anon_sym_abstract] = ACTIONS(3464), + [anon_sym_interface] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), + [sym_html_comment] = ACTIONS(5), + }, + [1600] = { + [sym_comment] = STATE(1600), + [sym_identifier] = ACTIONS(3658), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_type] = ACTIONS(3658), + [anon_sym_namespace] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_RBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_from] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_else] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_await] = ACTIONS(3658), + [anon_sym_of] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LTtemplate_GT] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_async] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_void] = ACTIONS(3658), + [anon_sym_delete] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3658), + [sym_number] = ACTIONS(3658), + [sym_private_property_identifier] = ACTIONS(3658), + [sym_this] = ACTIONS(3658), + [sym_super] = ACTIONS(3658), + [sym_true] = ACTIONS(3658), + [sym_false] = ACTIONS(3658), + [sym_null] = ACTIONS(3658), + [sym_undefined] = ACTIONS(3658), + [anon_sym_AT] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_readonly] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_declare] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_protected] = ACTIONS(3658), + [anon_sym_override] = ACTIONS(3658), + [anon_sym_module] = ACTIONS(3658), + [anon_sym_any] = ACTIONS(3658), + [anon_sym_number] = ACTIONS(3658), + [anon_sym_boolean] = ACTIONS(3658), + [anon_sym_string] = ACTIONS(3658), + [anon_sym_symbol] = ACTIONS(3658), + [anon_sym_object] = ACTIONS(3658), + [anon_sym_property] = ACTIONS(3658), + [anon_sym_signal] = ACTIONS(3658), + [anon_sym_on] = ACTIONS(3658), + [anon_sym_required] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1601] = { + [sym_comment] = STATE(1601), + [sym_identifier] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_from] = ACTIONS(3660), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_var] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_await] = ACTIONS(3660), + [anon_sym_of] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_debugger] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LTtemplate_GT] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_async] = ACTIONS(3660), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_SLASH] = ACTIONS(3660), + [anon_sym_LT] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_void] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3660), + [sym_number] = ACTIONS(3660), + [sym_private_property_identifier] = ACTIONS(3660), + [sym_this] = ACTIONS(3660), + [sym_super] = ACTIONS(3660), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_null] = ACTIONS(3660), + [sym_undefined] = ACTIONS(3660), + [anon_sym_AT] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_readonly] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(3660), + [anon_sym_set] = ACTIONS(3660), + [anon_sym_declare] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_override] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_any] = ACTIONS(3660), + [anon_sym_number] = ACTIONS(3660), + [anon_sym_boolean] = ACTIONS(3660), + [anon_sym_string] = ACTIONS(3660), + [anon_sym_symbol] = ACTIONS(3660), + [anon_sym_object] = ACTIONS(3660), + [anon_sym_property] = ACTIONS(3660), + [anon_sym_signal] = ACTIONS(3660), + [anon_sym_on] = ACTIONS(3660), + [anon_sym_required] = ACTIONS(3660), + [anon_sym_component] = ACTIONS(3660), + [anon_sym_abstract] = ACTIONS(3660), + [anon_sym_interface] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [sym_html_comment] = ACTIONS(5), + }, + [1602] = { + [sym_comment] = STATE(1602), + [sym_identifier] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_from] = ACTIONS(3660), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_var] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_await] = ACTIONS(3660), + [anon_sym_of] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_debugger] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LTtemplate_GT] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_async] = ACTIONS(3660), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_SLASH] = ACTIONS(3660), + [anon_sym_LT] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_void] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3660), + [sym_number] = ACTIONS(3660), + [sym_private_property_identifier] = ACTIONS(3660), + [sym_this] = ACTIONS(3660), + [sym_super] = ACTIONS(3660), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_null] = ACTIONS(3660), + [sym_undefined] = ACTIONS(3660), + [anon_sym_AT] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_readonly] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(3660), + [anon_sym_set] = ACTIONS(3660), + [anon_sym_declare] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_override] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_any] = ACTIONS(3660), + [anon_sym_number] = ACTIONS(3660), + [anon_sym_boolean] = ACTIONS(3660), + [anon_sym_string] = ACTIONS(3660), + [anon_sym_symbol] = ACTIONS(3660), + [anon_sym_object] = ACTIONS(3660), + [anon_sym_property] = ACTIONS(3660), + [anon_sym_signal] = ACTIONS(3660), + [anon_sym_on] = ACTIONS(3660), + [anon_sym_required] = ACTIONS(3660), + [anon_sym_component] = ACTIONS(3660), + [anon_sym_abstract] = ACTIONS(3660), + [anon_sym_interface] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [sym_html_comment] = ACTIONS(5), + }, + [1603] = { + [sym_comment] = STATE(1603), + [sym_identifier] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_type] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_RBRACE] = ACTIONS(3662), + [anon_sym_typeof] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_from] = ACTIONS(3662), + [anon_sym_with] = ACTIONS(3662), + [anon_sym_var] = ACTIONS(3662), + [anon_sym_let] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3662), + [anon_sym_await] = ACTIONS(3662), + [anon_sym_of] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_debugger] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_LTtemplate_GT] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_async] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_void] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3662), + [sym_number] = ACTIONS(3662), + [sym_private_property_identifier] = ACTIONS(3662), + [sym_this] = ACTIONS(3662), + [sym_super] = ACTIONS(3662), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [sym_null] = ACTIONS(3662), + [sym_undefined] = ACTIONS(3662), + [anon_sym_AT] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_readonly] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(3662), + [anon_sym_set] = ACTIONS(3662), + [anon_sym_declare] = ACTIONS(3662), + [anon_sym_public] = ACTIONS(3662), + [anon_sym_private] = ACTIONS(3662), + [anon_sym_protected] = ACTIONS(3662), + [anon_sym_override] = ACTIONS(3662), + [anon_sym_module] = ACTIONS(3662), + [anon_sym_any] = ACTIONS(3662), + [anon_sym_number] = ACTIONS(3662), + [anon_sym_boolean] = ACTIONS(3662), + [anon_sym_string] = ACTIONS(3662), + [anon_sym_symbol] = ACTIONS(3662), + [anon_sym_object] = ACTIONS(3662), + [anon_sym_property] = ACTIONS(3662), + [anon_sym_signal] = ACTIONS(3662), + [anon_sym_on] = ACTIONS(3662), + [anon_sym_required] = ACTIONS(3662), + [anon_sym_component] = ACTIONS(3662), + [anon_sym_abstract] = ACTIONS(3662), + [anon_sym_interface] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [sym_html_comment] = ACTIONS(5), + }, + [1604] = { + [sym_comment] = STATE(1604), + [sym_identifier] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_type] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_typeof] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_from] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [anon_sym_var] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_await] = ACTIONS(3664), + [anon_sym_of] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_debugger] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_yield] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_LTtemplate_GT] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_async] = ACTIONS(3664), + [anon_sym_function] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_void] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3664), + [sym_number] = ACTIONS(3664), + [sym_private_property_identifier] = ACTIONS(3664), + [sym_this] = ACTIONS(3664), + [sym_super] = ACTIONS(3664), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [sym_null] = ACTIONS(3664), + [sym_undefined] = ACTIONS(3664), + [anon_sym_AT] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_readonly] = ACTIONS(3664), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3664), + [anon_sym_declare] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_override] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_any] = ACTIONS(3664), + [anon_sym_number] = ACTIONS(3664), + [anon_sym_boolean] = ACTIONS(3664), + [anon_sym_string] = ACTIONS(3664), + [anon_sym_symbol] = ACTIONS(3664), + [anon_sym_object] = ACTIONS(3664), + [anon_sym_property] = ACTIONS(3664), + [anon_sym_signal] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_required] = ACTIONS(3664), + [anon_sym_component] = ACTIONS(3664), + [anon_sym_abstract] = ACTIONS(3664), + [anon_sym_interface] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [sym_html_comment] = ACTIONS(5), + }, + [1605] = { + [sym_comment] = STATE(1605), + [sym_identifier] = ACTIONS(3484), + [anon_sym_export] = ACTIONS(3484), + [anon_sym_type] = ACTIONS(3484), + [anon_sym_namespace] = ACTIONS(3484), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_RBRACE] = ACTIONS(3484), + [anon_sym_typeof] = ACTIONS(3484), + [anon_sym_import] = ACTIONS(3484), + [anon_sym_from] = ACTIONS(3484), + [anon_sym_with] = ACTIONS(3484), + [anon_sym_var] = ACTIONS(3484), + [anon_sym_let] = ACTIONS(3484), + [anon_sym_const] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_else] = ACTIONS(3484), + [anon_sym_if] = ACTIONS(3484), + [anon_sym_switch] = ACTIONS(3484), + [anon_sym_for] = ACTIONS(3484), + [anon_sym_LPAREN] = ACTIONS(3484), + [anon_sym_await] = ACTIONS(3484), + [anon_sym_of] = ACTIONS(3484), + [anon_sym_while] = ACTIONS(3484), + [anon_sym_do] = ACTIONS(3484), + [anon_sym_try] = ACTIONS(3484), + [anon_sym_break] = ACTIONS(3484), + [anon_sym_continue] = ACTIONS(3484), + [anon_sym_debugger] = ACTIONS(3484), + [anon_sym_return] = ACTIONS(3484), + [anon_sym_throw] = ACTIONS(3484), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_yield] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3484), + [anon_sym_LTtemplate_GT] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3484), + [anon_sym_class] = ACTIONS(3484), + [anon_sym_async] = ACTIONS(3484), + [anon_sym_function] = ACTIONS(3484), + [anon_sym_new] = ACTIONS(3484), + [anon_sym_using] = ACTIONS(3484), + [anon_sym_PLUS] = ACTIONS(3484), + [anon_sym_DASH] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3484), + [anon_sym_LT] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_void] = ACTIONS(3484), + [anon_sym_delete] = ACTIONS(3484), + [anon_sym_PLUS_PLUS] = ACTIONS(3484), + [anon_sym_DASH_DASH] = ACTIONS(3484), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3484), + [sym_number] = ACTIONS(3484), + [sym_private_property_identifier] = ACTIONS(3484), + [sym_this] = ACTIONS(3484), + [sym_super] = ACTIONS(3484), + [sym_true] = ACTIONS(3484), + [sym_false] = ACTIONS(3484), + [sym_null] = ACTIONS(3484), + [sym_undefined] = ACTIONS(3484), + [anon_sym_AT] = ACTIONS(3484), + [anon_sym_static] = ACTIONS(3484), + [anon_sym_readonly] = ACTIONS(3484), + [anon_sym_get] = ACTIONS(3484), + [anon_sym_set] = ACTIONS(3484), + [anon_sym_declare] = ACTIONS(3484), + [anon_sym_public] = ACTIONS(3484), + [anon_sym_private] = ACTIONS(3484), + [anon_sym_protected] = ACTIONS(3484), + [anon_sym_override] = ACTIONS(3484), + [anon_sym_module] = ACTIONS(3484), + [anon_sym_any] = ACTIONS(3484), + [anon_sym_number] = ACTIONS(3484), + [anon_sym_boolean] = ACTIONS(3484), + [anon_sym_string] = ACTIONS(3484), + [anon_sym_symbol] = ACTIONS(3484), + [anon_sym_object] = ACTIONS(3484), + [anon_sym_property] = ACTIONS(3484), + [anon_sym_signal] = ACTIONS(3484), + [anon_sym_on] = ACTIONS(3484), + [anon_sym_required] = ACTIONS(3484), + [anon_sym_component] = ACTIONS(3484), + [anon_sym_abstract] = ACTIONS(3484), + [anon_sym_interface] = ACTIONS(3484), + [anon_sym_enum] = ACTIONS(3484), + [sym_html_comment] = ACTIONS(5), + }, + [1606] = { + [sym_comment] = STATE(1606), + [sym_identifier] = ACTIONS(3486), + [anon_sym_export] = ACTIONS(3486), + [anon_sym_type] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3486), + [anon_sym_RBRACE] = ACTIONS(3486), + [anon_sym_typeof] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_from] = ACTIONS(3486), + [anon_sym_with] = ACTIONS(3486), + [anon_sym_var] = ACTIONS(3486), + [anon_sym_let] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_BANG] = ACTIONS(3486), + [anon_sym_else] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_await] = ACTIONS(3486), + [anon_sym_of] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_debugger] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3486), + [anon_sym_yield] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_LTtemplate_GT] = ACTIONS(3486), + [anon_sym_DQUOTE] = ACTIONS(3486), + [anon_sym_SQUOTE] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_async] = ACTIONS(3486), + [anon_sym_function] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_using] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_SLASH] = ACTIONS(3486), + [anon_sym_LT] = ACTIONS(3486), + [anon_sym_TILDE] = ACTIONS(3486), + [anon_sym_void] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_PLUS_PLUS] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3486), + [sym_number] = ACTIONS(3486), + [sym_private_property_identifier] = ACTIONS(3486), + [sym_this] = ACTIONS(3486), + [sym_super] = ACTIONS(3486), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [sym_null] = ACTIONS(3486), + [sym_undefined] = ACTIONS(3486), + [anon_sym_AT] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_readonly] = ACTIONS(3486), + [anon_sym_get] = ACTIONS(3486), + [anon_sym_set] = ACTIONS(3486), + [anon_sym_declare] = ACTIONS(3486), + [anon_sym_public] = ACTIONS(3486), + [anon_sym_private] = ACTIONS(3486), + [anon_sym_protected] = ACTIONS(3486), + [anon_sym_override] = ACTIONS(3486), + [anon_sym_module] = ACTIONS(3486), + [anon_sym_any] = ACTIONS(3486), + [anon_sym_number] = ACTIONS(3486), + [anon_sym_boolean] = ACTIONS(3486), + [anon_sym_string] = ACTIONS(3486), + [anon_sym_symbol] = ACTIONS(3486), + [anon_sym_object] = ACTIONS(3486), + [anon_sym_property] = ACTIONS(3486), + [anon_sym_signal] = ACTIONS(3486), + [anon_sym_on] = ACTIONS(3486), + [anon_sym_required] = ACTIONS(3486), + [anon_sym_component] = ACTIONS(3486), + [anon_sym_abstract] = ACTIONS(3486), + [anon_sym_interface] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), + [sym_html_comment] = ACTIONS(5), + }, + [1607] = { + [sym_comment] = STATE(1607), + [sym_identifier] = ACTIONS(3544), + [anon_sym_export] = ACTIONS(3544), + [anon_sym_type] = ACTIONS(3544), + [anon_sym_namespace] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3544), + [anon_sym_RBRACE] = ACTIONS(3544), + [anon_sym_typeof] = ACTIONS(3544), + [anon_sym_import] = ACTIONS(3544), + [anon_sym_from] = ACTIONS(3544), + [anon_sym_with] = ACTIONS(3544), + [anon_sym_var] = ACTIONS(3544), + [anon_sym_let] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3544), + [anon_sym_else] = ACTIONS(3544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_await] = ACTIONS(3544), + [anon_sym_of] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_debugger] = ACTIONS(3544), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3544), + [anon_sym_LTtemplate_GT] = ACTIONS(3544), + [anon_sym_DQUOTE] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3544), + [anon_sym_async] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_using] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3544), + [anon_sym_void] = ACTIONS(3544), + [anon_sym_delete] = ACTIONS(3544), + [anon_sym_PLUS_PLUS] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3544), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3544), + [sym_number] = ACTIONS(3544), + [sym_private_property_identifier] = ACTIONS(3544), + [sym_this] = ACTIONS(3544), + [sym_super] = ACTIONS(3544), + [sym_true] = ACTIONS(3544), + [sym_false] = ACTIONS(3544), + [sym_null] = ACTIONS(3544), + [sym_undefined] = ACTIONS(3544), + [anon_sym_AT] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_readonly] = ACTIONS(3544), + [anon_sym_get] = ACTIONS(3544), + [anon_sym_set] = ACTIONS(3544), + [anon_sym_declare] = ACTIONS(3544), + [anon_sym_public] = ACTIONS(3544), + [anon_sym_private] = ACTIONS(3544), + [anon_sym_protected] = ACTIONS(3544), + [anon_sym_override] = ACTIONS(3544), + [anon_sym_module] = ACTIONS(3544), + [anon_sym_any] = ACTIONS(3544), + [anon_sym_number] = ACTIONS(3544), + [anon_sym_boolean] = ACTIONS(3544), + [anon_sym_string] = ACTIONS(3544), + [anon_sym_symbol] = ACTIONS(3544), + [anon_sym_object] = ACTIONS(3544), + [anon_sym_property] = ACTIONS(3544), + [anon_sym_signal] = ACTIONS(3544), + [anon_sym_on] = ACTIONS(3544), + [anon_sym_required] = ACTIONS(3544), + [anon_sym_component] = ACTIONS(3544), + [anon_sym_abstract] = ACTIONS(3544), + [anon_sym_interface] = ACTIONS(3544), + [anon_sym_enum] = ACTIONS(3544), + [sym_html_comment] = ACTIONS(5), + }, + [1608] = { + [sym_comment] = STATE(1608), + [sym_identifier] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_type] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3518), + [anon_sym_RBRACE] = ACTIONS(3518), + [anon_sym_typeof] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_from] = ACTIONS(3518), + [anon_sym_with] = ACTIONS(3518), + [anon_sym_var] = ACTIONS(3518), + [anon_sym_let] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_BANG] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_LPAREN] = ACTIONS(3518), + [anon_sym_await] = ACTIONS(3518), + [anon_sym_of] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_debugger] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3518), + [anon_sym_yield] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_LTtemplate_GT] = ACTIONS(3518), + [anon_sym_DQUOTE] = ACTIONS(3518), + [anon_sym_SQUOTE] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_async] = ACTIONS(3518), + [anon_sym_function] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(3518), + [anon_sym_void] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_PLUS_PLUS] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3518), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3518), + [sym_number] = ACTIONS(3518), + [sym_private_property_identifier] = ACTIONS(3518), + [sym_this] = ACTIONS(3518), + [sym_super] = ACTIONS(3518), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [sym_null] = ACTIONS(3518), + [sym_undefined] = ACTIONS(3518), + [anon_sym_AT] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_readonly] = ACTIONS(3518), + [anon_sym_get] = ACTIONS(3518), + [anon_sym_set] = ACTIONS(3518), + [anon_sym_declare] = ACTIONS(3518), + [anon_sym_public] = ACTIONS(3518), + [anon_sym_private] = ACTIONS(3518), + [anon_sym_protected] = ACTIONS(3518), + [anon_sym_override] = ACTIONS(3518), + [anon_sym_module] = ACTIONS(3518), + [anon_sym_any] = ACTIONS(3518), + [anon_sym_number] = ACTIONS(3518), + [anon_sym_boolean] = ACTIONS(3518), + [anon_sym_string] = ACTIONS(3518), + [anon_sym_symbol] = ACTIONS(3518), + [anon_sym_object] = ACTIONS(3518), + [anon_sym_property] = ACTIONS(3518), + [anon_sym_signal] = ACTIONS(3518), + [anon_sym_on] = ACTIONS(3518), + [anon_sym_required] = ACTIONS(3518), + [anon_sym_component] = ACTIONS(3518), + [anon_sym_abstract] = ACTIONS(3518), + [anon_sym_interface] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [sym_html_comment] = ACTIONS(5), + }, + [1609] = { + [sym_comment] = STATE(1609), + [sym_identifier] = ACTIONS(3642), + [anon_sym_export] = ACTIONS(3642), + [anon_sym_type] = ACTIONS(3642), + [anon_sym_namespace] = ACTIONS(3642), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_typeof] = ACTIONS(3642), + [anon_sym_import] = ACTIONS(3642), + [anon_sym_from] = ACTIONS(3642), + [anon_sym_with] = ACTIONS(3642), + [anon_sym_var] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_const] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_else] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_await] = ACTIONS(3642), + [anon_sym_of] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_break] = ACTIONS(3642), + [anon_sym_continue] = ACTIONS(3642), + [anon_sym_debugger] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_throw] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LTtemplate_GT] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_class] = ACTIONS(3642), + [anon_sym_async] = ACTIONS(3642), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_using] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_void] = ACTIONS(3642), + [anon_sym_delete] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3642), + [sym_number] = ACTIONS(3642), + [sym_private_property_identifier] = ACTIONS(3642), + [sym_this] = ACTIONS(3642), + [sym_super] = ACTIONS(3642), + [sym_true] = ACTIONS(3642), + [sym_false] = ACTIONS(3642), + [sym_null] = ACTIONS(3642), + [sym_undefined] = ACTIONS(3642), + [anon_sym_AT] = ACTIONS(3642), + [anon_sym_static] = ACTIONS(3642), + [anon_sym_readonly] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(3642), + [anon_sym_set] = ACTIONS(3642), + [anon_sym_declare] = ACTIONS(3642), + [anon_sym_public] = ACTIONS(3642), + [anon_sym_private] = ACTIONS(3642), + [anon_sym_protected] = ACTIONS(3642), + [anon_sym_override] = ACTIONS(3642), + [anon_sym_module] = ACTIONS(3642), + [anon_sym_any] = ACTIONS(3642), + [anon_sym_number] = ACTIONS(3642), + [anon_sym_boolean] = ACTIONS(3642), + [anon_sym_string] = ACTIONS(3642), + [anon_sym_symbol] = ACTIONS(3642), + [anon_sym_object] = ACTIONS(3642), + [anon_sym_property] = ACTIONS(3642), + [anon_sym_signal] = ACTIONS(3642), + [anon_sym_on] = ACTIONS(3642), + [anon_sym_required] = ACTIONS(3642), + [anon_sym_component] = ACTIONS(3642), + [anon_sym_abstract] = ACTIONS(3642), + [anon_sym_interface] = ACTIONS(3642), + [anon_sym_enum] = ACTIONS(3642), + [sym_html_comment] = ACTIONS(5), + }, + [1610] = { + [sym_comment] = STATE(1610), + [sym_identifier] = ACTIONS(2430), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_typeof] = ACTIONS(2430), + [anon_sym_import] = ACTIONS(2430), + [anon_sym_from] = ACTIONS(2430), + [anon_sym_with] = ACTIONS(2430), + [anon_sym_var] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_const] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_if] = ACTIONS(2430), + [anon_sym_switch] = ACTIONS(2430), + [anon_sym_for] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_await] = ACTIONS(2430), + [anon_sym_of] = ACTIONS(2430), + [anon_sym_while] = ACTIONS(2430), + [anon_sym_do] = ACTIONS(2430), + [anon_sym_try] = ACTIONS(2430), + [anon_sym_break] = ACTIONS(2430), + [anon_sym_continue] = ACTIONS(2430), + [anon_sym_debugger] = ACTIONS(2430), + [anon_sym_return] = ACTIONS(2430), + [anon_sym_throw] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_yield] = ACTIONS(2430), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_LTtemplate_GT] = ACTIONS(2430), + [anon_sym_DQUOTE] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2430), + [anon_sym_class] = ACTIONS(2430), + [anon_sym_async] = ACTIONS(2430), + [anon_sym_function] = ACTIONS(2430), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_using] = ACTIONS(2430), + [anon_sym_PLUS] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_SLASH] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_TILDE] = ACTIONS(2430), + [anon_sym_void] = ACTIONS(2430), + [anon_sym_delete] = ACTIONS(2430), + [anon_sym_PLUS_PLUS] = ACTIONS(2430), + [anon_sym_DASH_DASH] = ACTIONS(2430), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2430), + [sym_number] = ACTIONS(2430), + [sym_private_property_identifier] = ACTIONS(2430), + [sym_this] = ACTIONS(2430), + [sym_super] = ACTIONS(2430), + [sym_true] = ACTIONS(2430), + [sym_false] = ACTIONS(2430), + [sym_null] = ACTIONS(2430), + [sym_undefined] = ACTIONS(2430), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2430), + [anon_sym_readonly] = ACTIONS(2430), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_declare] = ACTIONS(2430), + [anon_sym_public] = ACTIONS(2430), + [anon_sym_private] = ACTIONS(2430), + [anon_sym_protected] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_any] = ACTIONS(2430), + [anon_sym_number] = ACTIONS(2430), + [anon_sym_boolean] = ACTIONS(2430), + [anon_sym_string] = ACTIONS(2430), + [anon_sym_symbol] = ACTIONS(2430), + [anon_sym_object] = ACTIONS(2430), + [anon_sym_property] = ACTIONS(2430), + [anon_sym_signal] = ACTIONS(2430), + [anon_sym_on] = ACTIONS(2430), + [anon_sym_required] = ACTIONS(2430), + [anon_sym_component] = ACTIONS(2430), + [anon_sym_abstract] = ACTIONS(2430), + [anon_sym_interface] = ACTIONS(2430), + [anon_sym_enum] = ACTIONS(2430), + [sym__automatic_semicolon] = ACTIONS(2706), + [sym_html_comment] = ACTIONS(5), + }, + [1611] = { + [sym_comment] = STATE(1611), + [sym_identifier] = ACTIONS(3666), + [anon_sym_export] = ACTIONS(3666), + [anon_sym_type] = ACTIONS(3666), + [anon_sym_namespace] = ACTIONS(3666), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_typeof] = ACTIONS(3666), + [anon_sym_import] = ACTIONS(3666), + [anon_sym_from] = ACTIONS(3666), + [anon_sym_with] = ACTIONS(3666), + [anon_sym_var] = ACTIONS(3666), + [anon_sym_let] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_else] = ACTIONS(3666), + [anon_sym_if] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_for] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_await] = ACTIONS(3666), + [anon_sym_of] = ACTIONS(3666), + [anon_sym_while] = ACTIONS(3666), + [anon_sym_do] = ACTIONS(3666), + [anon_sym_try] = ACTIONS(3666), + [anon_sym_break] = ACTIONS(3666), + [anon_sym_continue] = ACTIONS(3666), + [anon_sym_debugger] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3666), + [anon_sym_throw] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym_yield] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_LTtemplate_GT] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_async] = ACTIONS(3666), + [anon_sym_function] = ACTIONS(3666), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_void] = ACTIONS(3666), + [anon_sym_delete] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3666), + [sym_number] = ACTIONS(3666), + [sym_private_property_identifier] = ACTIONS(3666), + [sym_this] = ACTIONS(3666), + [sym_super] = ACTIONS(3666), + [sym_true] = ACTIONS(3666), + [sym_false] = ACTIONS(3666), + [sym_null] = ACTIONS(3666), + [sym_undefined] = ACTIONS(3666), + [anon_sym_AT] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_readonly] = ACTIONS(3666), + [anon_sym_get] = ACTIONS(3666), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_declare] = ACTIONS(3666), + [anon_sym_public] = ACTIONS(3666), + [anon_sym_private] = ACTIONS(3666), + [anon_sym_protected] = ACTIONS(3666), + [anon_sym_override] = ACTIONS(3666), + [anon_sym_module] = ACTIONS(3666), + [anon_sym_any] = ACTIONS(3666), + [anon_sym_number] = ACTIONS(3666), + [anon_sym_boolean] = ACTIONS(3666), + [anon_sym_string] = ACTIONS(3666), + [anon_sym_symbol] = ACTIONS(3666), + [anon_sym_object] = ACTIONS(3666), + [anon_sym_property] = ACTIONS(3666), + [anon_sym_signal] = ACTIONS(3666), + [anon_sym_on] = ACTIONS(3666), + [anon_sym_required] = ACTIONS(3666), + [anon_sym_component] = ACTIONS(3666), + [anon_sym_abstract] = ACTIONS(3666), + [anon_sym_interface] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), + [sym_html_comment] = ACTIONS(5), + }, + [1612] = { + [sym_comment] = STATE(1612), + [sym_identifier] = ACTIONS(3670), + [anon_sym_export] = ACTIONS(3670), + [anon_sym_type] = ACTIONS(3670), + [anon_sym_namespace] = ACTIONS(3670), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_typeof] = ACTIONS(3670), + [anon_sym_import] = ACTIONS(3670), + [anon_sym_from] = ACTIONS(3670), + [anon_sym_with] = ACTIONS(3670), + [anon_sym_var] = ACTIONS(3670), + [anon_sym_let] = ACTIONS(3670), + [anon_sym_const] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_else] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_for] = ACTIONS(3670), + [anon_sym_LPAREN] = ACTIONS(3670), + [anon_sym_await] = ACTIONS(3670), + [anon_sym_of] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(3670), + [anon_sym_do] = ACTIONS(3670), + [anon_sym_try] = ACTIONS(3670), + [anon_sym_break] = ACTIONS(3670), + [anon_sym_continue] = ACTIONS(3670), + [anon_sym_debugger] = ACTIONS(3670), + [anon_sym_return] = ACTIONS(3670), + [anon_sym_throw] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym_yield] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_LTtemplate_GT] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_class] = ACTIONS(3670), + [anon_sym_async] = ACTIONS(3670), + [anon_sym_function] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3670), + [anon_sym_using] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_void] = ACTIONS(3670), + [anon_sym_delete] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3670), + [sym_number] = ACTIONS(3670), + [sym_private_property_identifier] = ACTIONS(3670), + [sym_this] = ACTIONS(3670), + [sym_super] = ACTIONS(3670), + [sym_true] = ACTIONS(3670), + [sym_false] = ACTIONS(3670), + [sym_null] = ACTIONS(3670), + [sym_undefined] = ACTIONS(3670), + [anon_sym_AT] = ACTIONS(3670), + [anon_sym_static] = ACTIONS(3670), + [anon_sym_readonly] = ACTIONS(3670), + [anon_sym_get] = ACTIONS(3670), + [anon_sym_set] = ACTIONS(3670), + [anon_sym_declare] = ACTIONS(3670), + [anon_sym_public] = ACTIONS(3670), + [anon_sym_private] = ACTIONS(3670), + [anon_sym_protected] = ACTIONS(3670), + [anon_sym_override] = ACTIONS(3670), + [anon_sym_module] = ACTIONS(3670), + [anon_sym_any] = ACTIONS(3670), + [anon_sym_number] = ACTIONS(3670), + [anon_sym_boolean] = ACTIONS(3670), + [anon_sym_string] = ACTIONS(3670), + [anon_sym_symbol] = ACTIONS(3670), + [anon_sym_object] = ACTIONS(3670), + [anon_sym_property] = ACTIONS(3670), + [anon_sym_signal] = ACTIONS(3670), + [anon_sym_on] = ACTIONS(3670), + [anon_sym_required] = ACTIONS(3670), + [anon_sym_component] = ACTIONS(3670), + [anon_sym_abstract] = ACTIONS(3670), + [anon_sym_interface] = ACTIONS(3670), + [anon_sym_enum] = ACTIONS(3670), + [sym_html_comment] = ACTIONS(5), + }, + [1613] = { + [sym_comment] = STATE(1613), + [sym_identifier] = ACTIONS(3466), + [anon_sym_export] = ACTIONS(3466), + [anon_sym_type] = ACTIONS(3466), + [anon_sym_namespace] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_RBRACE] = ACTIONS(3466), + [anon_sym_typeof] = ACTIONS(3466), + [anon_sym_import] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_with] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_else] = ACTIONS(3466), + [anon_sym_if] = ACTIONS(3466), + [anon_sym_switch] = ACTIONS(3466), + [anon_sym_for] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(3466), + [anon_sym_await] = ACTIONS(3466), + [anon_sym_of] = ACTIONS(3466), + [anon_sym_while] = ACTIONS(3466), + [anon_sym_do] = ACTIONS(3466), + [anon_sym_try] = ACTIONS(3466), + [anon_sym_break] = ACTIONS(3466), + [anon_sym_continue] = ACTIONS(3466), + [anon_sym_debugger] = ACTIONS(3466), + [anon_sym_return] = ACTIONS(3466), + [anon_sym_throw] = ACTIONS(3466), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3466), + [anon_sym_LTtemplate_GT] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_function] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_using] = ACTIONS(3466), + [anon_sym_PLUS] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3466), + [anon_sym_SLASH] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_void] = ACTIONS(3466), + [anon_sym_delete] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3466), + [sym_number] = ACTIONS(3466), + [sym_private_property_identifier] = ACTIONS(3466), + [sym_this] = ACTIONS(3466), + [sym_super] = ACTIONS(3466), + [sym_true] = ACTIONS(3466), + [sym_false] = ACTIONS(3466), + [sym_null] = ACTIONS(3466), + [sym_undefined] = ACTIONS(3466), + [anon_sym_AT] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_get] = ACTIONS(3466), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_declare] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_module] = ACTIONS(3466), + [anon_sym_any] = ACTIONS(3466), + [anon_sym_number] = ACTIONS(3466), + [anon_sym_boolean] = ACTIONS(3466), + [anon_sym_string] = ACTIONS(3466), + [anon_sym_symbol] = ACTIONS(3466), + [anon_sym_object] = ACTIONS(3466), + [anon_sym_property] = ACTIONS(3466), + [anon_sym_signal] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_component] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [sym_html_comment] = ACTIONS(5), + }, + [1614] = { + [sym_comment] = STATE(1614), + [sym_identifier] = ACTIONS(3672), + [anon_sym_export] = ACTIONS(3672), + [anon_sym_type] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_typeof] = ACTIONS(3672), + [anon_sym_import] = ACTIONS(3672), + [anon_sym_from] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3672), + [anon_sym_var] = ACTIONS(3672), + [anon_sym_let] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_else] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_await] = ACTIONS(3672), + [anon_sym_of] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_debugger] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_yield] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_LTtemplate_GT] = ACTIONS(3672), + [anon_sym_DQUOTE] = ACTIONS(3672), + [anon_sym_SQUOTE] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_async] = ACTIONS(3672), + [anon_sym_function] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3672), + [anon_sym_void] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3672), + [sym_number] = ACTIONS(3672), + [sym_private_property_identifier] = ACTIONS(3672), + [sym_this] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [sym_null] = ACTIONS(3672), + [sym_undefined] = ACTIONS(3672), + [anon_sym_AT] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_readonly] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(3672), + [anon_sym_set] = ACTIONS(3672), + [anon_sym_declare] = ACTIONS(3672), + [anon_sym_public] = ACTIONS(3672), + [anon_sym_private] = ACTIONS(3672), + [anon_sym_protected] = ACTIONS(3672), + [anon_sym_override] = ACTIONS(3672), + [anon_sym_module] = ACTIONS(3672), + [anon_sym_any] = ACTIONS(3672), + [anon_sym_number] = ACTIONS(3672), + [anon_sym_boolean] = ACTIONS(3672), + [anon_sym_string] = ACTIONS(3672), + [anon_sym_symbol] = ACTIONS(3672), + [anon_sym_object] = ACTIONS(3672), + [anon_sym_property] = ACTIONS(3672), + [anon_sym_signal] = ACTIONS(3672), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_required] = ACTIONS(3672), + [anon_sym_component] = ACTIONS(3672), + [anon_sym_abstract] = ACTIONS(3672), + [anon_sym_interface] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [sym_html_comment] = ACTIONS(5), + }, + [1615] = { + [sym_comment] = STATE(1615), + [sym_identifier] = ACTIONS(3674), + [anon_sym_export] = ACTIONS(3674), + [anon_sym_type] = ACTIONS(3674), + [anon_sym_namespace] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_typeof] = ACTIONS(3674), + [anon_sym_import] = ACTIONS(3674), + [anon_sym_from] = ACTIONS(3674), + [anon_sym_with] = ACTIONS(3674), + [anon_sym_var] = ACTIONS(3674), + [anon_sym_let] = ACTIONS(3674), + [anon_sym_const] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_else] = ACTIONS(3674), + [anon_sym_if] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_for] = ACTIONS(3674), + [anon_sym_LPAREN] = ACTIONS(3674), + [anon_sym_await] = ACTIONS(3674), + [anon_sym_of] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_do] = ACTIONS(3674), + [anon_sym_try] = ACTIONS(3674), + [anon_sym_break] = ACTIONS(3674), + [anon_sym_continue] = ACTIONS(3674), + [anon_sym_debugger] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3674), + [anon_sym_throw] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_yield] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_LTtemplate_GT] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_class] = ACTIONS(3674), + [anon_sym_async] = ACTIONS(3674), + [anon_sym_function] = ACTIONS(3674), + [anon_sym_new] = ACTIONS(3674), + [anon_sym_using] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_void] = ACTIONS(3674), + [anon_sym_delete] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3674), + [sym_number] = ACTIONS(3674), + [sym_private_property_identifier] = ACTIONS(3674), + [sym_this] = ACTIONS(3674), + [sym_super] = ACTIONS(3674), + [sym_true] = ACTIONS(3674), + [sym_false] = ACTIONS(3674), + [sym_null] = ACTIONS(3674), + [sym_undefined] = ACTIONS(3674), + [anon_sym_AT] = ACTIONS(3674), + [anon_sym_static] = ACTIONS(3674), + [anon_sym_readonly] = ACTIONS(3674), + [anon_sym_get] = ACTIONS(3674), + [anon_sym_set] = ACTIONS(3674), + [anon_sym_declare] = ACTIONS(3674), + [anon_sym_public] = ACTIONS(3674), + [anon_sym_private] = ACTIONS(3674), + [anon_sym_protected] = ACTIONS(3674), + [anon_sym_override] = ACTIONS(3674), + [anon_sym_module] = ACTIONS(3674), + [anon_sym_any] = ACTIONS(3674), + [anon_sym_number] = ACTIONS(3674), + [anon_sym_boolean] = ACTIONS(3674), + [anon_sym_string] = ACTIONS(3674), + [anon_sym_symbol] = ACTIONS(3674), + [anon_sym_object] = ACTIONS(3674), + [anon_sym_property] = ACTIONS(3674), + [anon_sym_signal] = ACTIONS(3674), + [anon_sym_on] = ACTIONS(3674), + [anon_sym_required] = ACTIONS(3674), + [anon_sym_component] = ACTIONS(3674), + [anon_sym_abstract] = ACTIONS(3674), + [anon_sym_interface] = ACTIONS(3674), + [anon_sym_enum] = ACTIONS(3674), + [sym_html_comment] = ACTIONS(5), + }, + [1616] = { + [sym_comment] = STATE(1616), [sym_identifier] = ACTIONS(2402), [anon_sym_export] = ACTIONS(2402), - [anon_sym_default] = ACTIONS(2402), [anon_sym_type] = ACTIONS(2402), [anon_sym_namespace] = ACTIONS(2402), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), [anon_sym_typeof] = ACTIONS(2402), [anon_sym_import] = ACTIONS(2402), [anon_sym_from] = ACTIONS(2402), + [anon_sym_with] = ACTIONS(2402), [anon_sym_var] = ACTIONS(2402), [anon_sym_let] = ACTIONS(2402), [anon_sym_const] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_else] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), [anon_sym_if] = ACTIONS(2402), [anon_sym_switch] = ACTIONS(2402), [anon_sym_for] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2402), [anon_sym_await] = ACTIONS(2402), [anon_sym_of] = ACTIONS(2402), [anon_sym_while] = ACTIONS(2402), [anon_sym_do] = ACTIONS(2402), [anon_sym_try] = ACTIONS(2402), - [anon_sym_with] = ACTIONS(2402), [anon_sym_break] = ACTIONS(2402), [anon_sym_continue] = ACTIONS(2402), [anon_sym_debugger] = ACTIONS(2402), [anon_sym_return] = ACTIONS(2402), [anon_sym_throw] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_case] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2402), [anon_sym_yield] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_LTtemplate_GT] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2402), - [anon_sym_SLASH] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LTtemplate_GT] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2402), [anon_sym_class] = ACTIONS(2402), [anon_sym_async] = ACTIONS(2402), [anon_sym_function] = ACTIONS(2402), [anon_sym_new] = ACTIONS(2402), + [anon_sym_using] = ACTIONS(2402), [anon_sym_PLUS] = ACTIONS(2402), [anon_sym_DASH] = ACTIONS(2402), - [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_TILDE] = ACTIONS(2402), [anon_sym_void] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(2402), - [anon_sym_PLUS_PLUS] = ACTIONS(2404), - [anon_sym_DASH_DASH] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2404), - [anon_sym_SQUOTE] = ACTIONS(2404), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2404), - [sym_number] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2402), + [anon_sym_DASH_DASH] = ACTIONS(2402), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2402), + [sym_number] = ACTIONS(2402), + [sym_private_property_identifier] = ACTIONS(2402), [sym_this] = ACTIONS(2402), [sym_super] = ACTIONS(2402), [sym_true] = ACTIONS(2402), [sym_false] = ACTIONS(2402), [sym_null] = ACTIONS(2402), [sym_undefined] = ACTIONS(2402), - [anon_sym_AT] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2402), [anon_sym_static] = ACTIONS(2402), [anon_sym_readonly] = ACTIONS(2402), [anon_sym_get] = ACTIONS(2402), @@ -98289,6 +212680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2402), [anon_sym_string] = ACTIONS(2402), [anon_sym_symbol] = ACTIONS(2402), + [anon_sym_object] = ACTIONS(2402), [anon_sym_property] = ACTIONS(2402), [anon_sym_signal] = ACTIONS(2402), [anon_sym_on] = ACTIONS(2402), @@ -98297,153 +212689,9848 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2402), [anon_sym_interface] = ACTIONS(2402), [anon_sym_enum] = ACTIONS(2402), + [sym__automatic_semicolon] = ACTIONS(2664), + [sym_html_comment] = ACTIONS(5), + }, + [1617] = { + [sym_comment] = STATE(1617), + [sym_identifier] = ACTIONS(3502), + [anon_sym_export] = ACTIONS(3502), + [anon_sym_type] = ACTIONS(3502), + [anon_sym_namespace] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3502), + [anon_sym_RBRACE] = ACTIONS(3502), + [anon_sym_typeof] = ACTIONS(3502), + [anon_sym_import] = ACTIONS(3502), + [anon_sym_from] = ACTIONS(3502), + [anon_sym_with] = ACTIONS(3502), + [anon_sym_var] = ACTIONS(3502), + [anon_sym_let] = ACTIONS(3502), + [anon_sym_const] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_else] = ACTIONS(3502), + [anon_sym_if] = ACTIONS(3502), + [anon_sym_switch] = ACTIONS(3502), + [anon_sym_for] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3502), + [anon_sym_await] = ACTIONS(3502), + [anon_sym_of] = ACTIONS(3502), + [anon_sym_while] = ACTIONS(3502), + [anon_sym_do] = ACTIONS(3502), + [anon_sym_try] = ACTIONS(3502), + [anon_sym_break] = ACTIONS(3502), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_debugger] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3502), + [anon_sym_throw] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3502), + [anon_sym_yield] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_LTtemplate_GT] = ACTIONS(3502), + [anon_sym_DQUOTE] = ACTIONS(3502), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_class] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(3502), + [anon_sym_function] = ACTIONS(3502), + [anon_sym_new] = ACTIONS(3502), + [anon_sym_using] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_SLASH] = ACTIONS(3502), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_TILDE] = ACTIONS(3502), + [anon_sym_void] = ACTIONS(3502), + [anon_sym_delete] = ACTIONS(3502), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3502), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3502), + [sym_number] = ACTIONS(3502), + [sym_private_property_identifier] = ACTIONS(3502), + [sym_this] = ACTIONS(3502), + [sym_super] = ACTIONS(3502), + [sym_true] = ACTIONS(3502), + [sym_false] = ACTIONS(3502), + [sym_null] = ACTIONS(3502), + [sym_undefined] = ACTIONS(3502), + [anon_sym_AT] = ACTIONS(3502), + [anon_sym_static] = ACTIONS(3502), + [anon_sym_readonly] = ACTIONS(3502), + [anon_sym_get] = ACTIONS(3502), + [anon_sym_set] = ACTIONS(3502), + [anon_sym_declare] = ACTIONS(3502), + [anon_sym_public] = ACTIONS(3502), + [anon_sym_private] = ACTIONS(3502), + [anon_sym_protected] = ACTIONS(3502), + [anon_sym_override] = ACTIONS(3502), + [anon_sym_module] = ACTIONS(3502), + [anon_sym_any] = ACTIONS(3502), + [anon_sym_number] = ACTIONS(3502), + [anon_sym_boolean] = ACTIONS(3502), + [anon_sym_string] = ACTIONS(3502), + [anon_sym_symbol] = ACTIONS(3502), + [anon_sym_object] = ACTIONS(3502), + [anon_sym_property] = ACTIONS(3502), + [anon_sym_signal] = ACTIONS(3502), + [anon_sym_on] = ACTIONS(3502), + [anon_sym_required] = ACTIONS(3502), + [anon_sym_component] = ACTIONS(3502), + [anon_sym_abstract] = ACTIONS(3502), + [anon_sym_interface] = ACTIONS(3502), + [anon_sym_enum] = ACTIONS(3502), + [sym_html_comment] = ACTIONS(5), + }, + [1618] = { + [sym_comment] = STATE(1618), + [sym_identifier] = ACTIONS(3504), + [anon_sym_export] = ACTIONS(3504), + [anon_sym_type] = ACTIONS(3504), + [anon_sym_namespace] = ACTIONS(3504), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_RBRACE] = ACTIONS(3504), + [anon_sym_typeof] = ACTIONS(3504), + [anon_sym_import] = ACTIONS(3504), + [anon_sym_from] = ACTIONS(3504), + [anon_sym_with] = ACTIONS(3504), + [anon_sym_var] = ACTIONS(3504), + [anon_sym_let] = ACTIONS(3504), + [anon_sym_const] = ACTIONS(3504), + [anon_sym_BANG] = ACTIONS(3504), + [anon_sym_else] = ACTIONS(3504), + [anon_sym_if] = ACTIONS(3504), + [anon_sym_switch] = ACTIONS(3504), + [anon_sym_for] = ACTIONS(3504), + [anon_sym_LPAREN] = ACTIONS(3504), + [anon_sym_await] = ACTIONS(3504), + [anon_sym_of] = ACTIONS(3504), + [anon_sym_while] = ACTIONS(3504), + [anon_sym_do] = ACTIONS(3504), + [anon_sym_try] = ACTIONS(3504), + [anon_sym_break] = ACTIONS(3504), + [anon_sym_continue] = ACTIONS(3504), + [anon_sym_debugger] = ACTIONS(3504), + [anon_sym_return] = ACTIONS(3504), + [anon_sym_throw] = ACTIONS(3504), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym_yield] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_LTtemplate_GT] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(3504), + [anon_sym_SQUOTE] = ACTIONS(3504), + [anon_sym_class] = ACTIONS(3504), + [anon_sym_async] = ACTIONS(3504), + [anon_sym_function] = ACTIONS(3504), + [anon_sym_new] = ACTIONS(3504), + [anon_sym_using] = ACTIONS(3504), + [anon_sym_PLUS] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(3504), + [anon_sym_TILDE] = ACTIONS(3504), + [anon_sym_void] = ACTIONS(3504), + [anon_sym_delete] = ACTIONS(3504), + [anon_sym_PLUS_PLUS] = ACTIONS(3504), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3504), + [sym_number] = ACTIONS(3504), + [sym_private_property_identifier] = ACTIONS(3504), + [sym_this] = ACTIONS(3504), + [sym_super] = ACTIONS(3504), + [sym_true] = ACTIONS(3504), + [sym_false] = ACTIONS(3504), + [sym_null] = ACTIONS(3504), + [sym_undefined] = ACTIONS(3504), + [anon_sym_AT] = ACTIONS(3504), + [anon_sym_static] = ACTIONS(3504), + [anon_sym_readonly] = ACTIONS(3504), + [anon_sym_get] = ACTIONS(3504), + [anon_sym_set] = ACTIONS(3504), + [anon_sym_declare] = ACTIONS(3504), + [anon_sym_public] = ACTIONS(3504), + [anon_sym_private] = ACTIONS(3504), + [anon_sym_protected] = ACTIONS(3504), + [anon_sym_override] = ACTIONS(3504), + [anon_sym_module] = ACTIONS(3504), + [anon_sym_any] = ACTIONS(3504), + [anon_sym_number] = ACTIONS(3504), + [anon_sym_boolean] = ACTIONS(3504), + [anon_sym_string] = ACTIONS(3504), + [anon_sym_symbol] = ACTIONS(3504), + [anon_sym_object] = ACTIONS(3504), + [anon_sym_property] = ACTIONS(3504), + [anon_sym_signal] = ACTIONS(3504), + [anon_sym_on] = ACTIONS(3504), + [anon_sym_required] = ACTIONS(3504), + [anon_sym_component] = ACTIONS(3504), + [anon_sym_abstract] = ACTIONS(3504), + [anon_sym_interface] = ACTIONS(3504), + [anon_sym_enum] = ACTIONS(3504), + [sym_html_comment] = ACTIONS(5), + }, + [1619] = { + [sym_comment] = STATE(1619), + [sym_identifier] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_type] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_typeof] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_from] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3618), + [anon_sym_var] = ACTIONS(3618), + [anon_sym_let] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_await] = ACTIONS(3618), + [anon_sym_of] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_debugger] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_LTtemplate_GT] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_async] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_SLASH] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_void] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3618), + [sym_number] = ACTIONS(3618), + [sym_private_property_identifier] = ACTIONS(3618), + [sym_this] = ACTIONS(3618), + [sym_super] = ACTIONS(3618), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [sym_null] = ACTIONS(3618), + [sym_undefined] = ACTIONS(3618), + [anon_sym_AT] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_readonly] = ACTIONS(3618), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3618), + [anon_sym_declare] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_override] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_any] = ACTIONS(3618), + [anon_sym_number] = ACTIONS(3618), + [anon_sym_boolean] = ACTIONS(3618), + [anon_sym_string] = ACTIONS(3618), + [anon_sym_symbol] = ACTIONS(3618), + [anon_sym_object] = ACTIONS(3618), + [anon_sym_property] = ACTIONS(3618), + [anon_sym_signal] = ACTIONS(3618), + [anon_sym_on] = ACTIONS(3618), + [anon_sym_required] = ACTIONS(3618), + [anon_sym_component] = ACTIONS(3618), + [anon_sym_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [sym_html_comment] = ACTIONS(5), + }, + [1620] = { + [sym_comment] = STATE(1620), + [sym_identifier] = ACTIONS(3678), + [anon_sym_export] = ACTIONS(3678), + [anon_sym_type] = ACTIONS(3678), + [anon_sym_namespace] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_typeof] = ACTIONS(3678), + [anon_sym_import] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_with] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_else] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_await] = ACTIONS(3678), + [anon_sym_of] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_debugger] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_throw] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_LTtemplate_GT] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [anon_sym_SQUOTE] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_async] = ACTIONS(3678), + [anon_sym_function] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_void] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3678), + [sym_number] = ACTIONS(3678), + [sym_private_property_identifier] = ACTIONS(3678), + [sym_this] = ACTIONS(3678), + [sym_super] = ACTIONS(3678), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_AT] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3678), + [anon_sym_get] = ACTIONS(3678), + [anon_sym_set] = ACTIONS(3678), + [anon_sym_declare] = ACTIONS(3678), + [anon_sym_public] = ACTIONS(3678), + [anon_sym_private] = ACTIONS(3678), + [anon_sym_protected] = ACTIONS(3678), + [anon_sym_override] = ACTIONS(3678), + [anon_sym_module] = ACTIONS(3678), + [anon_sym_any] = ACTIONS(3678), + [anon_sym_number] = ACTIONS(3678), + [anon_sym_boolean] = ACTIONS(3678), + [anon_sym_string] = ACTIONS(3678), + [anon_sym_symbol] = ACTIONS(3678), + [anon_sym_object] = ACTIONS(3678), + [anon_sym_property] = ACTIONS(3678), + [anon_sym_signal] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_required] = ACTIONS(3678), + [anon_sym_component] = ACTIONS(3678), + [anon_sym_abstract] = ACTIONS(3678), + [anon_sym_interface] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), + [sym_html_comment] = ACTIONS(5), + }, + [1621] = { + [sym_comment] = STATE(1621), + [sym_identifier] = ACTIONS(3680), + [anon_sym_export] = ACTIONS(3680), + [anon_sym_type] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_typeof] = ACTIONS(3680), + [anon_sym_import] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_await] = ACTIONS(3680), + [anon_sym_of] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_debugger] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LTtemplate_GT] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_async] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_void] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3680), + [sym_number] = ACTIONS(3680), + [sym_private_property_identifier] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [sym_super] = ACTIONS(3680), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [sym_null] = ACTIONS(3680), + [sym_undefined] = ACTIONS(3680), + [anon_sym_AT] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_readonly] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(3680), + [anon_sym_set] = ACTIONS(3680), + [anon_sym_declare] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_override] = ACTIONS(3680), + [anon_sym_module] = ACTIONS(3680), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_property] = ACTIONS(3680), + [anon_sym_signal] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_required] = ACTIONS(3680), + [anon_sym_component] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3680), + [anon_sym_interface] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [sym_html_comment] = ACTIONS(5), + }, + [1622] = { + [sym_comment] = STATE(1622), + [sym_identifier] = ACTIONS(3682), + [anon_sym_export] = ACTIONS(3682), + [anon_sym_type] = ACTIONS(3682), + [anon_sym_namespace] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym_typeof] = ACTIONS(3682), + [anon_sym_import] = ACTIONS(3682), + [anon_sym_from] = ACTIONS(3682), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_var] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_else] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_switch] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_await] = ACTIONS(3682), + [anon_sym_of] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_break] = ACTIONS(3682), + [anon_sym_continue] = ACTIONS(3682), + [anon_sym_debugger] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_throw] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LTtemplate_GT] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_class] = ACTIONS(3682), + [anon_sym_async] = ACTIONS(3682), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_SLASH] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_void] = ACTIONS(3682), + [anon_sym_delete] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3682), + [sym_private_property_identifier] = ACTIONS(3682), + [sym_this] = ACTIONS(3682), + [sym_super] = ACTIONS(3682), + [sym_true] = ACTIONS(3682), + [sym_false] = ACTIONS(3682), + [sym_null] = ACTIONS(3682), + [sym_undefined] = ACTIONS(3682), + [anon_sym_AT] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_get] = ACTIONS(3682), + [anon_sym_set] = ACTIONS(3682), + [anon_sym_declare] = ACTIONS(3682), + [anon_sym_public] = ACTIONS(3682), + [anon_sym_private] = ACTIONS(3682), + [anon_sym_protected] = ACTIONS(3682), + [anon_sym_override] = ACTIONS(3682), + [anon_sym_module] = ACTIONS(3682), + [anon_sym_any] = ACTIONS(3682), + [anon_sym_number] = ACTIONS(3682), + [anon_sym_boolean] = ACTIONS(3682), + [anon_sym_string] = ACTIONS(3682), + [anon_sym_symbol] = ACTIONS(3682), + [anon_sym_object] = ACTIONS(3682), + [anon_sym_property] = ACTIONS(3682), + [anon_sym_signal] = ACTIONS(3682), + [anon_sym_on] = ACTIONS(3682), + [anon_sym_required] = ACTIONS(3682), + [anon_sym_component] = ACTIONS(3682), + [anon_sym_abstract] = ACTIONS(3682), + [anon_sym_interface] = ACTIONS(3682), + [anon_sym_enum] = ACTIONS(3682), + [sym_html_comment] = ACTIONS(5), + }, + [1623] = { + [sym_comment] = STATE(1623), + [sym_identifier] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_type] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_typeof] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_from] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3684), + [anon_sym_var] = ACTIONS(3684), + [anon_sym_let] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_else] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3684), + [anon_sym_await] = ACTIONS(3684), + [anon_sym_of] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_debugger] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_LTtemplate_GT] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_async] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_void] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3684), + [sym_number] = ACTIONS(3684), + [sym_private_property_identifier] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [sym_super] = ACTIONS(3684), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_AT] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(3684), + [anon_sym_set] = ACTIONS(3684), + [anon_sym_declare] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_any] = ACTIONS(3684), + [anon_sym_number] = ACTIONS(3684), + [anon_sym_boolean] = ACTIONS(3684), + [anon_sym_string] = ACTIONS(3684), + [anon_sym_symbol] = ACTIONS(3684), + [anon_sym_object] = ACTIONS(3684), + [anon_sym_property] = ACTIONS(3684), + [anon_sym_signal] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3684), + [anon_sym_required] = ACTIONS(3684), + [anon_sym_component] = ACTIONS(3684), + [anon_sym_abstract] = ACTIONS(3684), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [sym_html_comment] = ACTIONS(5), + }, + [1624] = { + [sym_comment] = STATE(1624), + [sym_identifier] = ACTIONS(3686), + [anon_sym_export] = ACTIONS(3686), + [anon_sym_type] = ACTIONS(3686), + [anon_sym_namespace] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_typeof] = ACTIONS(3686), + [anon_sym_import] = ACTIONS(3686), + [anon_sym_from] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [anon_sym_var] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_const] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_else] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_await] = ACTIONS(3686), + [anon_sym_of] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_break] = ACTIONS(3686), + [anon_sym_continue] = ACTIONS(3686), + [anon_sym_debugger] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_throw] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LTtemplate_GT] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_class] = ACTIONS(3686), + [anon_sym_async] = ACTIONS(3686), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_using] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_void] = ACTIONS(3686), + [anon_sym_delete] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3686), + [sym_number] = ACTIONS(3686), + [sym_private_property_identifier] = ACTIONS(3686), + [sym_this] = ACTIONS(3686), + [sym_super] = ACTIONS(3686), + [sym_true] = ACTIONS(3686), + [sym_false] = ACTIONS(3686), + [sym_null] = ACTIONS(3686), + [sym_undefined] = ACTIONS(3686), + [anon_sym_AT] = ACTIONS(3686), + [anon_sym_static] = ACTIONS(3686), + [anon_sym_readonly] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(3686), + [anon_sym_set] = ACTIONS(3686), + [anon_sym_declare] = ACTIONS(3686), + [anon_sym_public] = ACTIONS(3686), + [anon_sym_private] = ACTIONS(3686), + [anon_sym_protected] = ACTIONS(3686), + [anon_sym_override] = ACTIONS(3686), + [anon_sym_module] = ACTIONS(3686), + [anon_sym_any] = ACTIONS(3686), + [anon_sym_number] = ACTIONS(3686), + [anon_sym_boolean] = ACTIONS(3686), + [anon_sym_string] = ACTIONS(3686), + [anon_sym_symbol] = ACTIONS(3686), + [anon_sym_object] = ACTIONS(3686), + [anon_sym_property] = ACTIONS(3686), + [anon_sym_signal] = ACTIONS(3686), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_required] = ACTIONS(3686), + [anon_sym_component] = ACTIONS(3686), + [anon_sym_abstract] = ACTIONS(3686), + [anon_sym_interface] = ACTIONS(3686), + [anon_sym_enum] = ACTIONS(3686), + [sym_html_comment] = ACTIONS(5), + }, + [1625] = { + [sym_comment] = STATE(1625), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1626] = { + [sym_comment] = STATE(1626), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1627] = { + [sym_comment] = STATE(1627), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1628] = { + [sym_comment] = STATE(1628), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1629] = { + [sym_comment] = STATE(1629), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1630] = { + [sym_comment] = STATE(1630), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1631] = { + [sym_comment] = STATE(1631), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1632] = { + [sym_comment] = STATE(1632), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1633] = { + [sym_comment] = STATE(1633), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1634] = { + [sym_comment] = STATE(1634), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1635] = { + [sym_comment] = STATE(1635), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1636] = { + [sym_comment] = STATE(1636), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1637] = { + [sym_comment] = STATE(1637), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1638] = { + [sym_comment] = STATE(1638), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1639] = { + [sym_comment] = STATE(1639), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1640] = { + [sym_comment] = STATE(1640), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1641] = { + [sym_comment] = STATE(1641), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1642] = { + [sym_comment] = STATE(1642), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1643] = { + [sym_comment] = STATE(1643), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1644] = { + [sym_comment] = STATE(1644), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1645] = { + [sym_comment] = STATE(1645), + [sym_identifier] = ACTIONS(3470), + [anon_sym_export] = ACTIONS(3470), + [anon_sym_type] = ACTIONS(3470), + [anon_sym_namespace] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_RBRACE] = ACTIONS(3470), + [anon_sym_typeof] = ACTIONS(3470), + [anon_sym_import] = ACTIONS(3470), + [anon_sym_from] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_var] = ACTIONS(3470), + [anon_sym_let] = ACTIONS(3470), + [anon_sym_const] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_else] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_switch] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3470), + [anon_sym_await] = ACTIONS(3470), + [anon_sym_of] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_try] = ACTIONS(3470), + [anon_sym_break] = ACTIONS(3470), + [anon_sym_continue] = ACTIONS(3470), + [anon_sym_debugger] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_throw] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_yield] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3470), + [anon_sym_LTtemplate_GT] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_async] = ACTIONS(3470), + [anon_sym_function] = ACTIONS(3470), + [anon_sym_new] = ACTIONS(3470), + [anon_sym_using] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3470), + [anon_sym_SLASH] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_void] = ACTIONS(3470), + [anon_sym_delete] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3470), + [sym_number] = ACTIONS(3470), + [sym_private_property_identifier] = ACTIONS(3470), + [sym_this] = ACTIONS(3470), + [sym_super] = ACTIONS(3470), + [sym_true] = ACTIONS(3470), + [sym_false] = ACTIONS(3470), + [sym_null] = ACTIONS(3470), + [sym_undefined] = ACTIONS(3470), + [anon_sym_AT] = ACTIONS(3470), + [anon_sym_static] = ACTIONS(3470), + [anon_sym_readonly] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3470), + [anon_sym_set] = ACTIONS(3470), + [anon_sym_declare] = ACTIONS(3470), + [anon_sym_public] = ACTIONS(3470), + [anon_sym_private] = ACTIONS(3470), + [anon_sym_protected] = ACTIONS(3470), + [anon_sym_override] = ACTIONS(3470), + [anon_sym_module] = ACTIONS(3470), + [anon_sym_any] = ACTIONS(3470), + [anon_sym_number] = ACTIONS(3470), + [anon_sym_boolean] = ACTIONS(3470), + [anon_sym_string] = ACTIONS(3470), + [anon_sym_symbol] = ACTIONS(3470), + [anon_sym_object] = ACTIONS(3470), + [anon_sym_property] = ACTIONS(3470), + [anon_sym_signal] = ACTIONS(3470), + [anon_sym_on] = ACTIONS(3470), + [anon_sym_required] = ACTIONS(3470), + [anon_sym_component] = ACTIONS(3470), + [anon_sym_abstract] = ACTIONS(3470), + [anon_sym_interface] = ACTIONS(3470), + [anon_sym_enum] = ACTIONS(3470), + [sym_html_comment] = ACTIONS(5), + }, + [1646] = { + [sym_comment] = STATE(1646), + [sym_identifier] = ACTIONS(3652), + [anon_sym_export] = ACTIONS(3652), + [anon_sym_type] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_RBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3652), + [anon_sym_import] = ACTIONS(3652), + [anon_sym_from] = ACTIONS(3652), + [anon_sym_with] = ACTIONS(3652), + [anon_sym_var] = ACTIONS(3652), + [anon_sym_let] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_await] = ACTIONS(3652), + [anon_sym_of] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_debugger] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3652), + [anon_sym_yield] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_LTtemplate_GT] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_async] = ACTIONS(3652), + [anon_sym_function] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_SLASH] = ACTIONS(3652), + [anon_sym_LT] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3652), + [sym_number] = ACTIONS(3652), + [sym_private_property_identifier] = ACTIONS(3652), + [sym_this] = ACTIONS(3652), + [sym_super] = ACTIONS(3652), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [sym_null] = ACTIONS(3652), + [sym_undefined] = ACTIONS(3652), + [anon_sym_AT] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_readonly] = ACTIONS(3652), + [anon_sym_get] = ACTIONS(3652), + [anon_sym_set] = ACTIONS(3652), + [anon_sym_declare] = ACTIONS(3652), + [anon_sym_public] = ACTIONS(3652), + [anon_sym_private] = ACTIONS(3652), + [anon_sym_protected] = ACTIONS(3652), + [anon_sym_override] = ACTIONS(3652), + [anon_sym_module] = ACTIONS(3652), + [anon_sym_any] = ACTIONS(3652), + [anon_sym_number] = ACTIONS(3652), + [anon_sym_boolean] = ACTIONS(3652), + [anon_sym_string] = ACTIONS(3652), + [anon_sym_symbol] = ACTIONS(3652), + [anon_sym_object] = ACTIONS(3652), + [anon_sym_property] = ACTIONS(3652), + [anon_sym_signal] = ACTIONS(3652), + [anon_sym_on] = ACTIONS(3652), + [anon_sym_required] = ACTIONS(3652), + [anon_sym_component] = ACTIONS(3652), + [anon_sym_abstract] = ACTIONS(3652), + [anon_sym_interface] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1647] = { + [sym_comment] = STATE(1647), + [sym_identifier] = ACTIONS(3650), + [anon_sym_export] = ACTIONS(3650), + [anon_sym_type] = ACTIONS(3650), + [anon_sym_namespace] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_typeof] = ACTIONS(3650), + [anon_sym_import] = ACTIONS(3650), + [anon_sym_from] = ACTIONS(3650), + [anon_sym_with] = ACTIONS(3650), + [anon_sym_var] = ACTIONS(3650), + [anon_sym_let] = ACTIONS(3650), + [anon_sym_const] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_else] = ACTIONS(3650), + [anon_sym_if] = ACTIONS(3650), + [anon_sym_switch] = ACTIONS(3650), + [anon_sym_for] = ACTIONS(3650), + [anon_sym_LPAREN] = ACTIONS(3650), + [anon_sym_await] = ACTIONS(3650), + [anon_sym_of] = ACTIONS(3650), + [anon_sym_while] = ACTIONS(3650), + [anon_sym_do] = ACTIONS(3650), + [anon_sym_try] = ACTIONS(3650), + [anon_sym_break] = ACTIONS(3650), + [anon_sym_continue] = ACTIONS(3650), + [anon_sym_debugger] = ACTIONS(3650), + [anon_sym_return] = ACTIONS(3650), + [anon_sym_throw] = ACTIONS(3650), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym_yield] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_LTtemplate_GT] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_class] = ACTIONS(3650), + [anon_sym_async] = ACTIONS(3650), + [anon_sym_function] = ACTIONS(3650), + [anon_sym_new] = ACTIONS(3650), + [anon_sym_using] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3650), + [anon_sym_LT] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_void] = ACTIONS(3650), + [anon_sym_delete] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3650), + [sym_number] = ACTIONS(3650), + [sym_private_property_identifier] = ACTIONS(3650), + [sym_this] = ACTIONS(3650), + [sym_super] = ACTIONS(3650), + [sym_true] = ACTIONS(3650), + [sym_false] = ACTIONS(3650), + [sym_null] = ACTIONS(3650), + [sym_undefined] = ACTIONS(3650), + [anon_sym_AT] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3650), + [anon_sym_readonly] = ACTIONS(3650), + [anon_sym_get] = ACTIONS(3650), + [anon_sym_set] = ACTIONS(3650), + [anon_sym_declare] = ACTIONS(3650), + [anon_sym_public] = ACTIONS(3650), + [anon_sym_private] = ACTIONS(3650), + [anon_sym_protected] = ACTIONS(3650), + [anon_sym_override] = ACTIONS(3650), + [anon_sym_module] = ACTIONS(3650), + [anon_sym_any] = ACTIONS(3650), + [anon_sym_number] = ACTIONS(3650), + [anon_sym_boolean] = ACTIONS(3650), + [anon_sym_string] = ACTIONS(3650), + [anon_sym_symbol] = ACTIONS(3650), + [anon_sym_object] = ACTIONS(3650), + [anon_sym_property] = ACTIONS(3650), + [anon_sym_signal] = ACTIONS(3650), + [anon_sym_on] = ACTIONS(3650), + [anon_sym_required] = ACTIONS(3650), + [anon_sym_component] = ACTIONS(3650), + [anon_sym_abstract] = ACTIONS(3650), + [anon_sym_interface] = ACTIONS(3650), + [anon_sym_enum] = ACTIONS(3650), + [sym_html_comment] = ACTIONS(5), + }, + [1648] = { + [sym_comment] = STATE(1648), + [sym_identifier] = ACTIONS(3648), + [anon_sym_export] = ACTIONS(3648), + [anon_sym_type] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3648), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_typeof] = ACTIONS(3648), + [anon_sym_import] = ACTIONS(3648), + [anon_sym_from] = ACTIONS(3648), + [anon_sym_with] = ACTIONS(3648), + [anon_sym_var] = ACTIONS(3648), + [anon_sym_let] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3648), + [anon_sym_await] = ACTIONS(3648), + [anon_sym_of] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_debugger] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_LTtemplate_GT] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3648), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_async] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_SLASH] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3648), + [anon_sym_void] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_PLUS_PLUS] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3648), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3648), + [sym_number] = ACTIONS(3648), + [sym_private_property_identifier] = ACTIONS(3648), + [sym_this] = ACTIONS(3648), + [sym_super] = ACTIONS(3648), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [sym_null] = ACTIONS(3648), + [sym_undefined] = ACTIONS(3648), + [anon_sym_AT] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_readonly] = ACTIONS(3648), + [anon_sym_get] = ACTIONS(3648), + [anon_sym_set] = ACTIONS(3648), + [anon_sym_declare] = ACTIONS(3648), + [anon_sym_public] = ACTIONS(3648), + [anon_sym_private] = ACTIONS(3648), + [anon_sym_protected] = ACTIONS(3648), + [anon_sym_override] = ACTIONS(3648), + [anon_sym_module] = ACTIONS(3648), + [anon_sym_any] = ACTIONS(3648), + [anon_sym_number] = ACTIONS(3648), + [anon_sym_boolean] = ACTIONS(3648), + [anon_sym_string] = ACTIONS(3648), + [anon_sym_symbol] = ACTIONS(3648), + [anon_sym_object] = ACTIONS(3648), + [anon_sym_property] = ACTIONS(3648), + [anon_sym_signal] = ACTIONS(3648), + [anon_sym_on] = ACTIONS(3648), + [anon_sym_required] = ACTIONS(3648), + [anon_sym_component] = ACTIONS(3648), + [anon_sym_abstract] = ACTIONS(3648), + [anon_sym_interface] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [sym_html_comment] = ACTIONS(5), + }, + [1649] = { + [sym_comment] = STATE(1649), + [sym_identifier] = ACTIONS(3524), + [anon_sym_export] = ACTIONS(3524), + [anon_sym_type] = ACTIONS(3524), + [anon_sym_namespace] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_typeof] = ACTIONS(3524), + [anon_sym_import] = ACTIONS(3524), + [anon_sym_from] = ACTIONS(3524), + [anon_sym_with] = ACTIONS(3524), + [anon_sym_var] = ACTIONS(3524), + [anon_sym_let] = ACTIONS(3524), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_else] = ACTIONS(3524), + [anon_sym_if] = ACTIONS(3524), + [anon_sym_switch] = ACTIONS(3524), + [anon_sym_for] = ACTIONS(3524), + [anon_sym_LPAREN] = ACTIONS(3524), + [anon_sym_await] = ACTIONS(3524), + [anon_sym_of] = ACTIONS(3524), + [anon_sym_while] = ACTIONS(3524), + [anon_sym_do] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3524), + [anon_sym_break] = ACTIONS(3524), + [anon_sym_continue] = ACTIONS(3524), + [anon_sym_debugger] = ACTIONS(3524), + [anon_sym_return] = ACTIONS(3524), + [anon_sym_throw] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym_yield] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_LTtemplate_GT] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3524), + [anon_sym_class] = ACTIONS(3524), + [anon_sym_async] = ACTIONS(3524), + [anon_sym_function] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_using] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_void] = ACTIONS(3524), + [anon_sym_delete] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_DASH_DASH] = ACTIONS(3524), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3524), + [sym_number] = ACTIONS(3524), + [sym_private_property_identifier] = ACTIONS(3524), + [sym_this] = ACTIONS(3524), + [sym_super] = ACTIONS(3524), + [sym_true] = ACTIONS(3524), + [sym_false] = ACTIONS(3524), + [sym_null] = ACTIONS(3524), + [sym_undefined] = ACTIONS(3524), + [anon_sym_AT] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_readonly] = ACTIONS(3524), + [anon_sym_get] = ACTIONS(3524), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_declare] = ACTIONS(3524), + [anon_sym_public] = ACTIONS(3524), + [anon_sym_private] = ACTIONS(3524), + [anon_sym_protected] = ACTIONS(3524), + [anon_sym_override] = ACTIONS(3524), + [anon_sym_module] = ACTIONS(3524), + [anon_sym_any] = ACTIONS(3524), + [anon_sym_number] = ACTIONS(3524), + [anon_sym_boolean] = ACTIONS(3524), + [anon_sym_string] = ACTIONS(3524), + [anon_sym_symbol] = ACTIONS(3524), + [anon_sym_object] = ACTIONS(3524), + [anon_sym_property] = ACTIONS(3524), + [anon_sym_signal] = ACTIONS(3524), + [anon_sym_on] = ACTIONS(3524), + [anon_sym_required] = ACTIONS(3524), + [anon_sym_component] = ACTIONS(3524), + [anon_sym_abstract] = ACTIONS(3524), + [anon_sym_interface] = ACTIONS(3524), + [anon_sym_enum] = ACTIONS(3524), + [sym_html_comment] = ACTIONS(5), + }, + [1650] = { + [sym_comment] = STATE(1650), + [sym_identifier] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_typeof] = ACTIONS(2422), + [anon_sym_import] = ACTIONS(2422), + [anon_sym_from] = ACTIONS(2422), + [anon_sym_with] = ACTIONS(2422), + [anon_sym_var] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_if] = ACTIONS(2422), + [anon_sym_switch] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_await] = ACTIONS(2422), + [anon_sym_of] = ACTIONS(2422), + [anon_sym_while] = ACTIONS(2422), + [anon_sym_do] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2422), + [anon_sym_continue] = ACTIONS(2422), + [anon_sym_debugger] = ACTIONS(2422), + [anon_sym_return] = ACTIONS(2422), + [anon_sym_throw] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_yield] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_LTtemplate_GT] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2422), + [anon_sym_class] = ACTIONS(2422), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2422), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_using] = ACTIONS(2422), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_SLASH] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_TILDE] = ACTIONS(2422), + [anon_sym_void] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2422), + [anon_sym_PLUS_PLUS] = ACTIONS(2422), + [anon_sym_DASH_DASH] = ACTIONS(2422), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2422), + [sym_number] = ACTIONS(2422), + [sym_private_property_identifier] = ACTIONS(2422), + [sym_this] = ACTIONS(2422), + [sym_super] = ACTIONS(2422), + [sym_true] = ACTIONS(2422), + [sym_false] = ACTIONS(2422), + [sym_null] = ACTIONS(2422), + [sym_undefined] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_property] = ACTIONS(2422), + [anon_sym_signal] = ACTIONS(2422), + [anon_sym_on] = ACTIONS(2422), + [anon_sym_required] = ACTIONS(2422), + [anon_sym_component] = ACTIONS(2422), + [anon_sym_abstract] = ACTIONS(2422), + [anon_sym_interface] = ACTIONS(2422), + [anon_sym_enum] = ACTIONS(2422), + [sym__automatic_semicolon] = ACTIONS(2656), + [sym_html_comment] = ACTIONS(5), + }, + [1651] = { + [sym_comment] = STATE(1651), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1652] = { + [sym_comment] = STATE(1652), + [sym_identifier] = ACTIONS(3476), + [anon_sym_export] = ACTIONS(3476), + [anon_sym_type] = ACTIONS(3476), + [anon_sym_namespace] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_RBRACE] = ACTIONS(3476), + [anon_sym_typeof] = ACTIONS(3476), + [anon_sym_import] = ACTIONS(3476), + [anon_sym_from] = ACTIONS(3476), + [anon_sym_with] = ACTIONS(3476), + [anon_sym_var] = ACTIONS(3476), + [anon_sym_let] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_await] = ACTIONS(3476), + [anon_sym_of] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [anon_sym_try] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_debugger] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_throw] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_yield] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(3476), + [anon_sym_LTtemplate_GT] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_class] = ACTIONS(3476), + [anon_sym_async] = ACTIONS(3476), + [anon_sym_function] = ACTIONS(3476), + [anon_sym_new] = ACTIONS(3476), + [anon_sym_using] = ACTIONS(3476), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_SLASH] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_void] = ACTIONS(3476), + [anon_sym_delete] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3476), + [sym_number] = ACTIONS(3476), + [sym_private_property_identifier] = ACTIONS(3476), + [sym_this] = ACTIONS(3476), + [sym_super] = ACTIONS(3476), + [sym_true] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [sym_null] = ACTIONS(3476), + [sym_undefined] = ACTIONS(3476), + [anon_sym_AT] = ACTIONS(3476), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_readonly] = ACTIONS(3476), + [anon_sym_get] = ACTIONS(3476), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_declare] = ACTIONS(3476), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_override] = ACTIONS(3476), + [anon_sym_module] = ACTIONS(3476), + [anon_sym_any] = ACTIONS(3476), + [anon_sym_number] = ACTIONS(3476), + [anon_sym_boolean] = ACTIONS(3476), + [anon_sym_string] = ACTIONS(3476), + [anon_sym_symbol] = ACTIONS(3476), + [anon_sym_object] = ACTIONS(3476), + [anon_sym_property] = ACTIONS(3476), + [anon_sym_signal] = ACTIONS(3476), + [anon_sym_on] = ACTIONS(3476), + [anon_sym_required] = ACTIONS(3476), + [anon_sym_component] = ACTIONS(3476), + [anon_sym_abstract] = ACTIONS(3476), + [anon_sym_interface] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), + [sym_html_comment] = ACTIONS(5), + }, + [1653] = { + [sym_comment] = STATE(1653), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1654] = { + [sym_comment] = STATE(1654), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1655] = { + [sym_comment] = STATE(1655), + [sym_identifier] = ACTIONS(3530), + [anon_sym_export] = ACTIONS(3530), + [anon_sym_type] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(3530), + [anon_sym_LBRACE] = ACTIONS(3530), + [anon_sym_RBRACE] = ACTIONS(3530), + [anon_sym_typeof] = ACTIONS(3530), + [anon_sym_import] = ACTIONS(3530), + [anon_sym_from] = ACTIONS(3530), + [anon_sym_with] = ACTIONS(3530), + [anon_sym_var] = ACTIONS(3530), + [anon_sym_let] = ACTIONS(3530), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_BANG] = ACTIONS(3530), + [anon_sym_if] = ACTIONS(3530), + [anon_sym_switch] = ACTIONS(3530), + [anon_sym_for] = ACTIONS(3530), + [anon_sym_LPAREN] = ACTIONS(3530), + [anon_sym_await] = ACTIONS(3530), + [anon_sym_of] = ACTIONS(3530), + [anon_sym_while] = ACTIONS(3530), + [anon_sym_do] = ACTIONS(3530), + [anon_sym_try] = ACTIONS(3530), + [anon_sym_break] = ACTIONS(3530), + [anon_sym_continue] = ACTIONS(3530), + [anon_sym_debugger] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3530), + [anon_sym_throw] = ACTIONS(3530), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym_yield] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_LTtemplate_GT] = ACTIONS(3530), + [anon_sym_DQUOTE] = ACTIONS(3530), + [anon_sym_SQUOTE] = ACTIONS(3530), + [anon_sym_class] = ACTIONS(3530), + [anon_sym_async] = ACTIONS(3530), + [anon_sym_function] = ACTIONS(3530), + [anon_sym_new] = ACTIONS(3530), + [anon_sym_using] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3530), + [anon_sym_DASH] = ACTIONS(3530), + [anon_sym_SLASH] = ACTIONS(3530), + [anon_sym_LT] = ACTIONS(3530), + [anon_sym_TILDE] = ACTIONS(3530), + [anon_sym_void] = ACTIONS(3530), + [anon_sym_delete] = ACTIONS(3530), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3530), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3530), + [sym_number] = ACTIONS(3530), + [sym_private_property_identifier] = ACTIONS(3530), + [sym_this] = ACTIONS(3530), + [sym_super] = ACTIONS(3530), + [sym_true] = ACTIONS(3530), + [sym_false] = ACTIONS(3530), + [sym_null] = ACTIONS(3530), + [sym_undefined] = ACTIONS(3530), + [anon_sym_AT] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(3530), + [anon_sym_readonly] = ACTIONS(3530), + [anon_sym_get] = ACTIONS(3530), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_declare] = ACTIONS(3530), + [anon_sym_public] = ACTIONS(3530), + [anon_sym_private] = ACTIONS(3530), + [anon_sym_protected] = ACTIONS(3530), + [anon_sym_override] = ACTIONS(3530), + [anon_sym_module] = ACTIONS(3530), + [anon_sym_any] = ACTIONS(3530), + [anon_sym_number] = ACTIONS(3530), + [anon_sym_boolean] = ACTIONS(3530), + [anon_sym_string] = ACTIONS(3530), + [anon_sym_symbol] = ACTIONS(3530), + [anon_sym_object] = ACTIONS(3530), + [anon_sym_property] = ACTIONS(3530), + [anon_sym_signal] = ACTIONS(3530), + [anon_sym_on] = ACTIONS(3530), + [anon_sym_required] = ACTIONS(3530), + [anon_sym_component] = ACTIONS(3530), + [anon_sym_abstract] = ACTIONS(3530), + [anon_sym_interface] = ACTIONS(3530), + [anon_sym_enum] = ACTIONS(3530), + [sym_html_comment] = ACTIONS(5), + }, + [1656] = { + [sym_comment] = STATE(1656), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1657] = { + [sym_comment] = STATE(1657), + [sym_identifier] = ACTIONS(3520), + [anon_sym_export] = ACTIONS(3520), + [anon_sym_type] = ACTIONS(3520), + [anon_sym_namespace] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_typeof] = ACTIONS(3520), + [anon_sym_import] = ACTIONS(3520), + [anon_sym_from] = ACTIONS(3520), + [anon_sym_with] = ACTIONS(3520), + [anon_sym_var] = ACTIONS(3520), + [anon_sym_let] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_switch] = ACTIONS(3520), + [anon_sym_for] = ACTIONS(3520), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym_await] = ACTIONS(3520), + [anon_sym_of] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(3520), + [anon_sym_do] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3520), + [anon_sym_break] = ACTIONS(3520), + [anon_sym_continue] = ACTIONS(3520), + [anon_sym_debugger] = ACTIONS(3520), + [anon_sym_return] = ACTIONS(3520), + [anon_sym_throw] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_yield] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_LTtemplate_GT] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_class] = ACTIONS(3520), + [anon_sym_async] = ACTIONS(3520), + [anon_sym_function] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3520), + [anon_sym_LT] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_void] = ACTIONS(3520), + [anon_sym_delete] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3520), + [sym_number] = ACTIONS(3520), + [sym_private_property_identifier] = ACTIONS(3520), + [sym_this] = ACTIONS(3520), + [sym_super] = ACTIONS(3520), + [sym_true] = ACTIONS(3520), + [sym_false] = ACTIONS(3520), + [sym_null] = ACTIONS(3520), + [sym_undefined] = ACTIONS(3520), + [anon_sym_AT] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_readonly] = ACTIONS(3520), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3520), + [anon_sym_declare] = ACTIONS(3520), + [anon_sym_public] = ACTIONS(3520), + [anon_sym_private] = ACTIONS(3520), + [anon_sym_protected] = ACTIONS(3520), + [anon_sym_override] = ACTIONS(3520), + [anon_sym_module] = ACTIONS(3520), + [anon_sym_any] = ACTIONS(3520), + [anon_sym_number] = ACTIONS(3520), + [anon_sym_boolean] = ACTIONS(3520), + [anon_sym_string] = ACTIONS(3520), + [anon_sym_symbol] = ACTIONS(3520), + [anon_sym_object] = ACTIONS(3520), + [anon_sym_property] = ACTIONS(3520), + [anon_sym_signal] = ACTIONS(3520), + [anon_sym_on] = ACTIONS(3520), + [anon_sym_required] = ACTIONS(3520), + [anon_sym_component] = ACTIONS(3520), + [anon_sym_abstract] = ACTIONS(3520), + [anon_sym_interface] = ACTIONS(3520), + [anon_sym_enum] = ACTIONS(3520), + [sym_html_comment] = ACTIONS(5), + }, + [1658] = { + [sym_comment] = STATE(1658), + [sym_identifier] = ACTIONS(3582), + [anon_sym_export] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_namespace] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_RBRACE] = ACTIONS(3582), + [anon_sym_typeof] = ACTIONS(3582), + [anon_sym_import] = ACTIONS(3582), + [anon_sym_from] = ACTIONS(3582), + [anon_sym_with] = ACTIONS(3582), + [anon_sym_var] = ACTIONS(3582), + [anon_sym_let] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_if] = ACTIONS(3582), + [anon_sym_switch] = ACTIONS(3582), + [anon_sym_for] = ACTIONS(3582), + [anon_sym_LPAREN] = ACTIONS(3582), + [anon_sym_await] = ACTIONS(3582), + [anon_sym_of] = ACTIONS(3582), + [anon_sym_while] = ACTIONS(3582), + [anon_sym_do] = ACTIONS(3582), + [anon_sym_try] = ACTIONS(3582), + [anon_sym_break] = ACTIONS(3582), + [anon_sym_continue] = ACTIONS(3582), + [anon_sym_debugger] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3582), + [anon_sym_throw] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_yield] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LTtemplate_GT] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_async] = ACTIONS(3582), + [anon_sym_function] = ACTIONS(3582), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_using] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3582), + [anon_sym_SLASH] = ACTIONS(3582), + [anon_sym_LT] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_void] = ACTIONS(3582), + [anon_sym_delete] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3582), + [sym_number] = ACTIONS(3582), + [sym_private_property_identifier] = ACTIONS(3582), + [sym_this] = ACTIONS(3582), + [sym_super] = ACTIONS(3582), + [sym_true] = ACTIONS(3582), + [sym_false] = ACTIONS(3582), + [sym_null] = ACTIONS(3582), + [sym_undefined] = ACTIONS(3582), + [anon_sym_AT] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_readonly] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(3582), + [anon_sym_set] = ACTIONS(3582), + [anon_sym_declare] = ACTIONS(3582), + [anon_sym_public] = ACTIONS(3582), + [anon_sym_private] = ACTIONS(3582), + [anon_sym_protected] = ACTIONS(3582), + [anon_sym_override] = ACTIONS(3582), + [anon_sym_module] = ACTIONS(3582), + [anon_sym_any] = ACTIONS(3582), + [anon_sym_number] = ACTIONS(3582), + [anon_sym_boolean] = ACTIONS(3582), + [anon_sym_string] = ACTIONS(3582), + [anon_sym_symbol] = ACTIONS(3582), + [anon_sym_object] = ACTIONS(3582), + [anon_sym_property] = ACTIONS(3582), + [anon_sym_signal] = ACTIONS(3582), + [anon_sym_on] = ACTIONS(3582), + [anon_sym_required] = ACTIONS(3582), + [anon_sym_component] = ACTIONS(3582), + [anon_sym_abstract] = ACTIONS(3582), + [anon_sym_interface] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), + [sym_html_comment] = ACTIONS(5), + }, + [1659] = { + [sym_comment] = STATE(1659), + [sym_identifier] = ACTIONS(3498), + [anon_sym_export] = ACTIONS(3498), + [anon_sym_type] = ACTIONS(3498), + [anon_sym_namespace] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3498), + [anon_sym_RBRACE] = ACTIONS(3498), + [anon_sym_typeof] = ACTIONS(3498), + [anon_sym_import] = ACTIONS(3498), + [anon_sym_from] = ACTIONS(3498), + [anon_sym_with] = ACTIONS(3498), + [anon_sym_var] = ACTIONS(3498), + [anon_sym_let] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(3498), + [anon_sym_BANG] = ACTIONS(3498), + [anon_sym_if] = ACTIONS(3498), + [anon_sym_switch] = ACTIONS(3498), + [anon_sym_for] = ACTIONS(3498), + [anon_sym_LPAREN] = ACTIONS(3498), + [anon_sym_await] = ACTIONS(3498), + [anon_sym_of] = ACTIONS(3498), + [anon_sym_while] = ACTIONS(3498), + [anon_sym_do] = ACTIONS(3498), + [anon_sym_try] = ACTIONS(3498), + [anon_sym_break] = ACTIONS(3498), + [anon_sym_continue] = ACTIONS(3498), + [anon_sym_debugger] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3498), + [anon_sym_throw] = ACTIONS(3498), + [anon_sym_SEMI] = ACTIONS(3498), + [anon_sym_yield] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3498), + [anon_sym_LTtemplate_GT] = ACTIONS(3498), + [anon_sym_DQUOTE] = ACTIONS(3498), + [anon_sym_SQUOTE] = ACTIONS(3498), + [anon_sym_class] = ACTIONS(3498), + [anon_sym_async] = ACTIONS(3498), + [anon_sym_function] = ACTIONS(3498), + [anon_sym_new] = ACTIONS(3498), + [anon_sym_using] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_SLASH] = ACTIONS(3498), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_TILDE] = ACTIONS(3498), + [anon_sym_void] = ACTIONS(3498), + [anon_sym_delete] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3498), + [sym_number] = ACTIONS(3498), + [sym_private_property_identifier] = ACTIONS(3498), + [sym_this] = ACTIONS(3498), + [sym_super] = ACTIONS(3498), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [sym_null] = ACTIONS(3498), + [sym_undefined] = ACTIONS(3498), + [anon_sym_AT] = ACTIONS(3498), + [anon_sym_static] = ACTIONS(3498), + [anon_sym_readonly] = ACTIONS(3498), + [anon_sym_get] = ACTIONS(3498), + [anon_sym_set] = ACTIONS(3498), + [anon_sym_declare] = ACTIONS(3498), + [anon_sym_public] = ACTIONS(3498), + [anon_sym_private] = ACTIONS(3498), + [anon_sym_protected] = ACTIONS(3498), + [anon_sym_override] = ACTIONS(3498), + [anon_sym_module] = ACTIONS(3498), + [anon_sym_any] = ACTIONS(3498), + [anon_sym_number] = ACTIONS(3498), + [anon_sym_boolean] = ACTIONS(3498), + [anon_sym_string] = ACTIONS(3498), + [anon_sym_symbol] = ACTIONS(3498), + [anon_sym_object] = ACTIONS(3498), + [anon_sym_property] = ACTIONS(3498), + [anon_sym_signal] = ACTIONS(3498), + [anon_sym_on] = ACTIONS(3498), + [anon_sym_required] = ACTIONS(3498), + [anon_sym_component] = ACTIONS(3498), + [anon_sym_abstract] = ACTIONS(3498), + [anon_sym_interface] = ACTIONS(3498), + [anon_sym_enum] = ACTIONS(3498), + [sym_html_comment] = ACTIONS(5), + }, + [1660] = { + [sym_comment] = STATE(1660), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_typeof] = ACTIONS(2328), + [anon_sym_import] = ACTIONS(2328), + [anon_sym_from] = ACTIONS(2328), + [anon_sym_with] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_switch] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_await] = ACTIONS(2328), + [anon_sym_of] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_do] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_debugger] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_throw] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_LTtemplate_GT] = ACTIONS(2328), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2328), + [anon_sym_class] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_new] = ACTIONS(2328), + [anon_sym_using] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_TILDE] = ACTIONS(2328), + [anon_sym_void] = ACTIONS(2328), + [anon_sym_delete] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2328), + [sym_number] = ACTIONS(2328), + [sym_private_property_identifier] = ACTIONS(2328), + [sym_this] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_null] = ACTIONS(2328), + [sym_undefined] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_property] = ACTIONS(2328), + [anon_sym_signal] = ACTIONS(2328), + [anon_sym_on] = ACTIONS(2328), + [anon_sym_required] = ACTIONS(2328), + [anon_sym_component] = ACTIONS(2328), + [anon_sym_abstract] = ACTIONS(2328), + [anon_sym_interface] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym_html_comment] = ACTIONS(5), }, - [725] = { - [sym_identifier] = ACTIONS(2406), - [anon_sym_export] = ACTIONS(2406), - [anon_sym_default] = ACTIONS(2406), - [anon_sym_type] = ACTIONS(2406), - [anon_sym_namespace] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2408), - [anon_sym_RBRACE] = ACTIONS(2408), - [anon_sym_typeof] = ACTIONS(2406), - [anon_sym_import] = ACTIONS(2406), - [anon_sym_from] = ACTIONS(2406), - [anon_sym_var] = ACTIONS(2406), - [anon_sym_let] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2408), - [anon_sym_else] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_switch] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_await] = ACTIONS(2406), - [anon_sym_of] = ACTIONS(2406), - [anon_sym_while] = ACTIONS(2406), - [anon_sym_do] = ACTIONS(2406), - [anon_sym_try] = ACTIONS(2406), - [anon_sym_with] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_debugger] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_throw] = ACTIONS(2406), - [anon_sym_SEMI] = ACTIONS(2408), - [anon_sym_case] = ACTIONS(2406), - [anon_sym_yield] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2408), - [anon_sym_LTtemplate_GT] = ACTIONS(2408), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_SLASH] = ACTIONS(2406), - [anon_sym_class] = ACTIONS(2406), - [anon_sym_async] = ACTIONS(2406), - [anon_sym_function] = ACTIONS(2406), - [anon_sym_new] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_TILDE] = ACTIONS(2408), - [anon_sym_void] = ACTIONS(2406), - [anon_sym_delete] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(2408), - [anon_sym_DASH_DASH] = ACTIONS(2408), - [anon_sym_DQUOTE] = ACTIONS(2408), - [anon_sym_SQUOTE] = ACTIONS(2408), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2408), - [sym_number] = ACTIONS(2408), - [sym_this] = ACTIONS(2406), - [sym_super] = ACTIONS(2406), - [sym_true] = ACTIONS(2406), - [sym_false] = ACTIONS(2406), - [sym_null] = ACTIONS(2406), - [sym_undefined] = ACTIONS(2406), - [anon_sym_AT] = ACTIONS(2408), - [anon_sym_static] = ACTIONS(2406), - [anon_sym_readonly] = ACTIONS(2406), - [anon_sym_get] = ACTIONS(2406), - [anon_sym_set] = ACTIONS(2406), - [anon_sym_declare] = ACTIONS(2406), - [anon_sym_public] = ACTIONS(2406), - [anon_sym_private] = ACTIONS(2406), - [anon_sym_protected] = ACTIONS(2406), - [anon_sym_override] = ACTIONS(2406), - [anon_sym_module] = ACTIONS(2406), - [anon_sym_any] = ACTIONS(2406), - [anon_sym_number] = ACTIONS(2406), - [anon_sym_boolean] = ACTIONS(2406), - [anon_sym_string] = ACTIONS(2406), - [anon_sym_symbol] = ACTIONS(2406), - [anon_sym_property] = ACTIONS(2406), - [anon_sym_signal] = ACTIONS(2406), - [anon_sym_on] = ACTIONS(2406), - [anon_sym_required] = ACTIONS(2406), - [anon_sym_component] = ACTIONS(2406), - [anon_sym_abstract] = ACTIONS(2406), - [anon_sym_interface] = ACTIONS(2406), - [anon_sym_enum] = ACTIONS(2406), - }, - [726] = { + [1661] = { + [sym_comment] = STATE(1661), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym_html_comment] = ACTIONS(5), + }, + [1662] = { + [sym_comment] = STATE(1662), + [sym_identifier] = ACTIONS(3510), + [anon_sym_export] = ACTIONS(3510), + [anon_sym_type] = ACTIONS(3510), + [anon_sym_namespace] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(3510), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_typeof] = ACTIONS(3510), + [anon_sym_import] = ACTIONS(3510), + [anon_sym_from] = ACTIONS(3510), + [anon_sym_with] = ACTIONS(3510), + [anon_sym_var] = ACTIONS(3510), + [anon_sym_let] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3510), + [anon_sym_switch] = ACTIONS(3510), + [anon_sym_for] = ACTIONS(3510), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_await] = ACTIONS(3510), + [anon_sym_of] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(3510), + [anon_sym_do] = ACTIONS(3510), + [anon_sym_try] = ACTIONS(3510), + [anon_sym_break] = ACTIONS(3510), + [anon_sym_continue] = ACTIONS(3510), + [anon_sym_debugger] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3510), + [anon_sym_throw] = ACTIONS(3510), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_yield] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_LTtemplate_GT] = ACTIONS(3510), + [anon_sym_DQUOTE] = ACTIONS(3510), + [anon_sym_SQUOTE] = ACTIONS(3510), + [anon_sym_class] = ACTIONS(3510), + [anon_sym_async] = ACTIONS(3510), + [anon_sym_function] = ACTIONS(3510), + [anon_sym_new] = ACTIONS(3510), + [anon_sym_using] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3510), + [anon_sym_DASH] = ACTIONS(3510), + [anon_sym_SLASH] = ACTIONS(3510), + [anon_sym_LT] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(3510), + [anon_sym_void] = ACTIONS(3510), + [anon_sym_delete] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3510), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3510), + [sym_number] = ACTIONS(3510), + [sym_private_property_identifier] = ACTIONS(3510), + [sym_this] = ACTIONS(3510), + [sym_super] = ACTIONS(3510), + [sym_true] = ACTIONS(3510), + [sym_false] = ACTIONS(3510), + [sym_null] = ACTIONS(3510), + [sym_undefined] = ACTIONS(3510), + [anon_sym_AT] = ACTIONS(3510), + [anon_sym_static] = ACTIONS(3510), + [anon_sym_readonly] = ACTIONS(3510), + [anon_sym_get] = ACTIONS(3510), + [anon_sym_set] = ACTIONS(3510), + [anon_sym_declare] = ACTIONS(3510), + [anon_sym_public] = ACTIONS(3510), + [anon_sym_private] = ACTIONS(3510), + [anon_sym_protected] = ACTIONS(3510), + [anon_sym_override] = ACTIONS(3510), + [anon_sym_module] = ACTIONS(3510), + [anon_sym_any] = ACTIONS(3510), + [anon_sym_number] = ACTIONS(3510), + [anon_sym_boolean] = ACTIONS(3510), + [anon_sym_string] = ACTIONS(3510), + [anon_sym_symbol] = ACTIONS(3510), + [anon_sym_object] = ACTIONS(3510), + [anon_sym_property] = ACTIONS(3510), + [anon_sym_signal] = ACTIONS(3510), + [anon_sym_on] = ACTIONS(3510), + [anon_sym_required] = ACTIONS(3510), + [anon_sym_component] = ACTIONS(3510), + [anon_sym_abstract] = ACTIONS(3510), + [anon_sym_interface] = ACTIONS(3510), + [anon_sym_enum] = ACTIONS(3510), + [sym_html_comment] = ACTIONS(5), + }, + [1663] = { + [sym_comment] = STATE(1663), + [sym_identifier] = ACTIONS(3544), + [anon_sym_export] = ACTIONS(3544), + [anon_sym_type] = ACTIONS(3544), + [anon_sym_namespace] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3544), + [anon_sym_RBRACE] = ACTIONS(3544), + [anon_sym_typeof] = ACTIONS(3544), + [anon_sym_import] = ACTIONS(3544), + [anon_sym_from] = ACTIONS(3544), + [anon_sym_with] = ACTIONS(3544), + [anon_sym_var] = ACTIONS(3544), + [anon_sym_let] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_await] = ACTIONS(3544), + [anon_sym_of] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_debugger] = ACTIONS(3544), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3544), + [anon_sym_LTtemplate_GT] = ACTIONS(3544), + [anon_sym_DQUOTE] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3544), + [anon_sym_async] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_using] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3544), + [anon_sym_void] = ACTIONS(3544), + [anon_sym_delete] = ACTIONS(3544), + [anon_sym_PLUS_PLUS] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3544), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3544), + [sym_number] = ACTIONS(3544), + [sym_private_property_identifier] = ACTIONS(3544), + [sym_this] = ACTIONS(3544), + [sym_super] = ACTIONS(3544), + [sym_true] = ACTIONS(3544), + [sym_false] = ACTIONS(3544), + [sym_null] = ACTIONS(3544), + [sym_undefined] = ACTIONS(3544), + [anon_sym_AT] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_readonly] = ACTIONS(3544), + [anon_sym_get] = ACTIONS(3544), + [anon_sym_set] = ACTIONS(3544), + [anon_sym_declare] = ACTIONS(3544), + [anon_sym_public] = ACTIONS(3544), + [anon_sym_private] = ACTIONS(3544), + [anon_sym_protected] = ACTIONS(3544), + [anon_sym_override] = ACTIONS(3544), + [anon_sym_module] = ACTIONS(3544), + [anon_sym_any] = ACTIONS(3544), + [anon_sym_number] = ACTIONS(3544), + [anon_sym_boolean] = ACTIONS(3544), + [anon_sym_string] = ACTIONS(3544), + [anon_sym_symbol] = ACTIONS(3544), + [anon_sym_object] = ACTIONS(3544), + [anon_sym_property] = ACTIONS(3544), + [anon_sym_signal] = ACTIONS(3544), + [anon_sym_on] = ACTIONS(3544), + [anon_sym_required] = ACTIONS(3544), + [anon_sym_component] = ACTIONS(3544), + [anon_sym_abstract] = ACTIONS(3544), + [anon_sym_interface] = ACTIONS(3544), + [anon_sym_enum] = ACTIONS(3544), + [sym_html_comment] = ACTIONS(5), + }, + [1664] = { + [sym_comment] = STATE(1664), + [sym_identifier] = ACTIONS(3522), + [anon_sym_export] = ACTIONS(3522), + [anon_sym_type] = ACTIONS(3522), + [anon_sym_namespace] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3522), + [anon_sym_RBRACE] = ACTIONS(3522), + [anon_sym_typeof] = ACTIONS(3522), + [anon_sym_import] = ACTIONS(3522), + [anon_sym_from] = ACTIONS(3522), + [anon_sym_with] = ACTIONS(3522), + [anon_sym_var] = ACTIONS(3522), + [anon_sym_let] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_LPAREN] = ACTIONS(3522), + [anon_sym_await] = ACTIONS(3522), + [anon_sym_of] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_try] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_debugger] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_throw] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym_yield] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_LTtemplate_GT] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(3522), + [anon_sym_SQUOTE] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_async] = ACTIONS(3522), + [anon_sym_function] = ACTIONS(3522), + [anon_sym_new] = ACTIONS(3522), + [anon_sym_using] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_SLASH] = ACTIONS(3522), + [anon_sym_LT] = ACTIONS(3522), + [anon_sym_TILDE] = ACTIONS(3522), + [anon_sym_void] = ACTIONS(3522), + [anon_sym_delete] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3522), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3522), + [sym_number] = ACTIONS(3522), + [sym_private_property_identifier] = ACTIONS(3522), + [sym_this] = ACTIONS(3522), + [sym_super] = ACTIONS(3522), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [sym_null] = ACTIONS(3522), + [sym_undefined] = ACTIONS(3522), + [anon_sym_AT] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_readonly] = ACTIONS(3522), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_declare] = ACTIONS(3522), + [anon_sym_public] = ACTIONS(3522), + [anon_sym_private] = ACTIONS(3522), + [anon_sym_protected] = ACTIONS(3522), + [anon_sym_override] = ACTIONS(3522), + [anon_sym_module] = ACTIONS(3522), + [anon_sym_any] = ACTIONS(3522), + [anon_sym_number] = ACTIONS(3522), + [anon_sym_boolean] = ACTIONS(3522), + [anon_sym_string] = ACTIONS(3522), + [anon_sym_symbol] = ACTIONS(3522), + [anon_sym_object] = ACTIONS(3522), + [anon_sym_property] = ACTIONS(3522), + [anon_sym_signal] = ACTIONS(3522), + [anon_sym_on] = ACTIONS(3522), + [anon_sym_required] = ACTIONS(3522), + [anon_sym_component] = ACTIONS(3522), + [anon_sym_abstract] = ACTIONS(3522), + [anon_sym_interface] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [sym_html_comment] = ACTIONS(5), + }, + [1665] = { + [sym_comment] = STATE(1665), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1666] = { + [sym_comment] = STATE(1666), + [sym_identifier] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_type] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3518), + [anon_sym_RBRACE] = ACTIONS(3518), + [anon_sym_typeof] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_from] = ACTIONS(3518), + [anon_sym_with] = ACTIONS(3518), + [anon_sym_var] = ACTIONS(3518), + [anon_sym_let] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_BANG] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_LPAREN] = ACTIONS(3518), + [anon_sym_await] = ACTIONS(3518), + [anon_sym_of] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_debugger] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3518), + [anon_sym_yield] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_LTtemplate_GT] = ACTIONS(3518), + [anon_sym_DQUOTE] = ACTIONS(3518), + [anon_sym_SQUOTE] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_async] = ACTIONS(3518), + [anon_sym_function] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(3518), + [anon_sym_void] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_PLUS_PLUS] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3518), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3518), + [sym_number] = ACTIONS(3518), + [sym_private_property_identifier] = ACTIONS(3518), + [sym_this] = ACTIONS(3518), + [sym_super] = ACTIONS(3518), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [sym_null] = ACTIONS(3518), + [sym_undefined] = ACTIONS(3518), + [anon_sym_AT] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_readonly] = ACTIONS(3518), + [anon_sym_get] = ACTIONS(3518), + [anon_sym_set] = ACTIONS(3518), + [anon_sym_declare] = ACTIONS(3518), + [anon_sym_public] = ACTIONS(3518), + [anon_sym_private] = ACTIONS(3518), + [anon_sym_protected] = ACTIONS(3518), + [anon_sym_override] = ACTIONS(3518), + [anon_sym_module] = ACTIONS(3518), + [anon_sym_any] = ACTIONS(3518), + [anon_sym_number] = ACTIONS(3518), + [anon_sym_boolean] = ACTIONS(3518), + [anon_sym_string] = ACTIONS(3518), + [anon_sym_symbol] = ACTIONS(3518), + [anon_sym_object] = ACTIONS(3518), + [anon_sym_property] = ACTIONS(3518), + [anon_sym_signal] = ACTIONS(3518), + [anon_sym_on] = ACTIONS(3518), + [anon_sym_required] = ACTIONS(3518), + [anon_sym_component] = ACTIONS(3518), + [anon_sym_abstract] = ACTIONS(3518), + [anon_sym_interface] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [sym_html_comment] = ACTIONS(5), + }, + [1667] = { + [sym_comment] = STATE(1667), + [sym_identifier] = ACTIONS(3534), + [anon_sym_export] = ACTIONS(3534), + [anon_sym_type] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_RBRACE] = ACTIONS(3534), + [anon_sym_typeof] = ACTIONS(3534), + [anon_sym_import] = ACTIONS(3534), + [anon_sym_from] = ACTIONS(3534), + [anon_sym_with] = ACTIONS(3534), + [anon_sym_var] = ACTIONS(3534), + [anon_sym_let] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3534), + [anon_sym_await] = ACTIONS(3534), + [anon_sym_of] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_debugger] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym_yield] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_LTtemplate_GT] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [anon_sym_SQUOTE] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_async] = ACTIONS(3534), + [anon_sym_function] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_SLASH] = ACTIONS(3534), + [anon_sym_LT] = ACTIONS(3534), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_void] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3534), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3534), + [sym_number] = ACTIONS(3534), + [sym_private_property_identifier] = ACTIONS(3534), + [sym_this] = ACTIONS(3534), + [sym_super] = ACTIONS(3534), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [sym_null] = ACTIONS(3534), + [sym_undefined] = ACTIONS(3534), + [anon_sym_AT] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_readonly] = ACTIONS(3534), + [anon_sym_get] = ACTIONS(3534), + [anon_sym_set] = ACTIONS(3534), + [anon_sym_declare] = ACTIONS(3534), + [anon_sym_public] = ACTIONS(3534), + [anon_sym_private] = ACTIONS(3534), + [anon_sym_protected] = ACTIONS(3534), + [anon_sym_override] = ACTIONS(3534), + [anon_sym_module] = ACTIONS(3534), + [anon_sym_any] = ACTIONS(3534), + [anon_sym_number] = ACTIONS(3534), + [anon_sym_boolean] = ACTIONS(3534), + [anon_sym_string] = ACTIONS(3534), + [anon_sym_symbol] = ACTIONS(3534), + [anon_sym_object] = ACTIONS(3534), + [anon_sym_property] = ACTIONS(3534), + [anon_sym_signal] = ACTIONS(3534), + [anon_sym_on] = ACTIONS(3534), + [anon_sym_required] = ACTIONS(3534), + [anon_sym_component] = ACTIONS(3534), + [anon_sym_abstract] = ACTIONS(3534), + [anon_sym_interface] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [sym_html_comment] = ACTIONS(5), + }, + [1668] = { + [sym_comment] = STATE(1668), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1669] = { + [sym_comment] = STATE(1669), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1670] = { + [sym_comment] = STATE(1670), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1671] = { + [sym_comment] = STATE(1671), + [sym_identifier] = ACTIONS(3526), + [anon_sym_export] = ACTIONS(3526), + [anon_sym_type] = ACTIONS(3526), + [anon_sym_namespace] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_RBRACE] = ACTIONS(3526), + [anon_sym_typeof] = ACTIONS(3526), + [anon_sym_import] = ACTIONS(3526), + [anon_sym_from] = ACTIONS(3526), + [anon_sym_with] = ACTIONS(3526), + [anon_sym_var] = ACTIONS(3526), + [anon_sym_let] = ACTIONS(3526), + [anon_sym_const] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_if] = ACTIONS(3526), + [anon_sym_switch] = ACTIONS(3526), + [anon_sym_for] = ACTIONS(3526), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_await] = ACTIONS(3526), + [anon_sym_of] = ACTIONS(3526), + [anon_sym_while] = ACTIONS(3526), + [anon_sym_do] = ACTIONS(3526), + [anon_sym_try] = ACTIONS(3526), + [anon_sym_break] = ACTIONS(3526), + [anon_sym_continue] = ACTIONS(3526), + [anon_sym_debugger] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3526), + [anon_sym_throw] = ACTIONS(3526), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_yield] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_LTtemplate_GT] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [anon_sym_SQUOTE] = ACTIONS(3526), + [anon_sym_class] = ACTIONS(3526), + [anon_sym_async] = ACTIONS(3526), + [anon_sym_function] = ACTIONS(3526), + [anon_sym_new] = ACTIONS(3526), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3526), + [anon_sym_DASH] = ACTIONS(3526), + [anon_sym_SLASH] = ACTIONS(3526), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_TILDE] = ACTIONS(3526), + [anon_sym_void] = ACTIONS(3526), + [anon_sym_delete] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3526), + [sym_number] = ACTIONS(3526), + [sym_private_property_identifier] = ACTIONS(3526), + [sym_this] = ACTIONS(3526), + [sym_super] = ACTIONS(3526), + [sym_true] = ACTIONS(3526), + [sym_false] = ACTIONS(3526), + [sym_null] = ACTIONS(3526), + [sym_undefined] = ACTIONS(3526), + [anon_sym_AT] = ACTIONS(3526), + [anon_sym_static] = ACTIONS(3526), + [anon_sym_readonly] = ACTIONS(3526), + [anon_sym_get] = ACTIONS(3526), + [anon_sym_set] = ACTIONS(3526), + [anon_sym_declare] = ACTIONS(3526), + [anon_sym_public] = ACTIONS(3526), + [anon_sym_private] = ACTIONS(3526), + [anon_sym_protected] = ACTIONS(3526), + [anon_sym_override] = ACTIONS(3526), + [anon_sym_module] = ACTIONS(3526), + [anon_sym_any] = ACTIONS(3526), + [anon_sym_number] = ACTIONS(3526), + [anon_sym_boolean] = ACTIONS(3526), + [anon_sym_string] = ACTIONS(3526), + [anon_sym_symbol] = ACTIONS(3526), + [anon_sym_object] = ACTIONS(3526), + [anon_sym_property] = ACTIONS(3526), + [anon_sym_signal] = ACTIONS(3526), + [anon_sym_on] = ACTIONS(3526), + [anon_sym_required] = ACTIONS(3526), + [anon_sym_component] = ACTIONS(3526), + [anon_sym_abstract] = ACTIONS(3526), + [anon_sym_interface] = ACTIONS(3526), + [anon_sym_enum] = ACTIONS(3526), + [sym_html_comment] = ACTIONS(5), + }, + [1672] = { + [sym_comment] = STATE(1672), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1673] = { + [sym_comment] = STATE(1673), + [sym_identifier] = ACTIONS(3540), + [anon_sym_export] = ACTIONS(3540), + [anon_sym_type] = ACTIONS(3540), + [anon_sym_namespace] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3540), + [anon_sym_RBRACE] = ACTIONS(3540), + [anon_sym_typeof] = ACTIONS(3540), + [anon_sym_import] = ACTIONS(3540), + [anon_sym_from] = ACTIONS(3540), + [anon_sym_with] = ACTIONS(3540), + [anon_sym_var] = ACTIONS(3540), + [anon_sym_let] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3540), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_LPAREN] = ACTIONS(3540), + [anon_sym_await] = ACTIONS(3540), + [anon_sym_of] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_debugger] = ACTIONS(3540), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym_yield] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_LTtemplate_GT] = ACTIONS(3540), + [anon_sym_DQUOTE] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3540), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_async] = ACTIONS(3540), + [anon_sym_function] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_using] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_SLASH] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3540), + [anon_sym_void] = ACTIONS(3540), + [anon_sym_delete] = ACTIONS(3540), + [anon_sym_PLUS_PLUS] = ACTIONS(3540), + [anon_sym_DASH_DASH] = ACTIONS(3540), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3540), + [sym_number] = ACTIONS(3540), + [sym_private_property_identifier] = ACTIONS(3540), + [sym_this] = ACTIONS(3540), + [sym_super] = ACTIONS(3540), + [sym_true] = ACTIONS(3540), + [sym_false] = ACTIONS(3540), + [sym_null] = ACTIONS(3540), + [sym_undefined] = ACTIONS(3540), + [anon_sym_AT] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_readonly] = ACTIONS(3540), + [anon_sym_get] = ACTIONS(3540), + [anon_sym_set] = ACTIONS(3540), + [anon_sym_declare] = ACTIONS(3540), + [anon_sym_public] = ACTIONS(3540), + [anon_sym_private] = ACTIONS(3540), + [anon_sym_protected] = ACTIONS(3540), + [anon_sym_override] = ACTIONS(3540), + [anon_sym_module] = ACTIONS(3540), + [anon_sym_any] = ACTIONS(3540), + [anon_sym_number] = ACTIONS(3540), + [anon_sym_boolean] = ACTIONS(3540), + [anon_sym_string] = ACTIONS(3540), + [anon_sym_symbol] = ACTIONS(3540), + [anon_sym_object] = ACTIONS(3540), + [anon_sym_property] = ACTIONS(3540), + [anon_sym_signal] = ACTIONS(3540), + [anon_sym_on] = ACTIONS(3540), + [anon_sym_required] = ACTIONS(3540), + [anon_sym_component] = ACTIONS(3540), + [anon_sym_abstract] = ACTIONS(3540), + [anon_sym_interface] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), + [sym_html_comment] = ACTIONS(5), + }, + [1674] = { + [sym_comment] = STATE(1674), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1675] = { + [sym_comment] = STATE(1675), + [sym_identifier] = ACTIONS(2380), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_namespace] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2380), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_typeof] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2380), + [anon_sym_from] = ACTIONS(2380), + [anon_sym_with] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_switch] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_await] = ACTIONS(2380), + [anon_sym_of] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_do] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_debugger] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_throw] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_LTtemplate_GT] = ACTIONS(2380), + [anon_sym_DQUOTE] = ACTIONS(2380), + [anon_sym_SQUOTE] = ACTIONS(2380), + [anon_sym_class] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_new] = ACTIONS(2380), + [anon_sym_using] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_TILDE] = ACTIONS(2380), + [anon_sym_void] = ACTIONS(2380), + [anon_sym_delete] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2380), + [anon_sym_DASH_DASH] = ACTIONS(2380), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2380), + [sym_number] = ACTIONS(2380), + [sym_private_property_identifier] = ACTIONS(2380), + [sym_this] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_true] = ACTIONS(2380), + [sym_false] = ACTIONS(2380), + [sym_null] = ACTIONS(2380), + [sym_undefined] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_readonly] = ACTIONS(2380), + [anon_sym_get] = ACTIONS(2380), + [anon_sym_set] = ACTIONS(2380), + [anon_sym_declare] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_protected] = ACTIONS(2380), + [anon_sym_override] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_any] = ACTIONS(2380), + [anon_sym_number] = ACTIONS(2380), + [anon_sym_boolean] = ACTIONS(2380), + [anon_sym_string] = ACTIONS(2380), + [anon_sym_symbol] = ACTIONS(2380), + [anon_sym_object] = ACTIONS(2380), + [anon_sym_property] = ACTIONS(2380), + [anon_sym_signal] = ACTIONS(2380), + [anon_sym_on] = ACTIONS(2380), + [anon_sym_required] = ACTIONS(2380), + [anon_sym_component] = ACTIONS(2380), + [anon_sym_abstract] = ACTIONS(2380), + [anon_sym_interface] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [sym_html_comment] = ACTIONS(5), + }, + [1676] = { + [sym_comment] = STATE(1676), + [sym_identifier] = ACTIONS(3528), + [anon_sym_export] = ACTIONS(3528), + [anon_sym_type] = ACTIONS(3528), + [anon_sym_namespace] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_typeof] = ACTIONS(3528), + [anon_sym_import] = ACTIONS(3528), + [anon_sym_from] = ACTIONS(3528), + [anon_sym_with] = ACTIONS(3528), + [anon_sym_var] = ACTIONS(3528), + [anon_sym_let] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_LPAREN] = ACTIONS(3528), + [anon_sym_await] = ACTIONS(3528), + [anon_sym_of] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_do] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_debugger] = ACTIONS(3528), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_throw] = ACTIONS(3528), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_yield] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_LTtemplate_GT] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [anon_sym_class] = ACTIONS(3528), + [anon_sym_async] = ACTIONS(3528), + [anon_sym_function] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_using] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_SLASH] = ACTIONS(3528), + [anon_sym_LT] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_void] = ACTIONS(3528), + [anon_sym_delete] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3528), + [anon_sym_DASH_DASH] = ACTIONS(3528), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3528), + [sym_number] = ACTIONS(3528), + [sym_private_property_identifier] = ACTIONS(3528), + [sym_this] = ACTIONS(3528), + [sym_super] = ACTIONS(3528), + [sym_true] = ACTIONS(3528), + [sym_false] = ACTIONS(3528), + [sym_null] = ACTIONS(3528), + [sym_undefined] = ACTIONS(3528), + [anon_sym_AT] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_readonly] = ACTIONS(3528), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3528), + [anon_sym_declare] = ACTIONS(3528), + [anon_sym_public] = ACTIONS(3528), + [anon_sym_private] = ACTIONS(3528), + [anon_sym_protected] = ACTIONS(3528), + [anon_sym_override] = ACTIONS(3528), + [anon_sym_module] = ACTIONS(3528), + [anon_sym_any] = ACTIONS(3528), + [anon_sym_number] = ACTIONS(3528), + [anon_sym_boolean] = ACTIONS(3528), + [anon_sym_string] = ACTIONS(3528), + [anon_sym_symbol] = ACTIONS(3528), + [anon_sym_object] = ACTIONS(3528), + [anon_sym_property] = ACTIONS(3528), + [anon_sym_signal] = ACTIONS(3528), + [anon_sym_on] = ACTIONS(3528), + [anon_sym_required] = ACTIONS(3528), + [anon_sym_component] = ACTIONS(3528), + [anon_sym_abstract] = ACTIONS(3528), + [anon_sym_interface] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), + [sym_html_comment] = ACTIONS(5), + }, + [1677] = { + [sym_comment] = STATE(1677), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1678] = { + [sym_comment] = STATE(1678), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym_html_comment] = ACTIONS(5), + }, + [1679] = { + [sym_comment] = STATE(1679), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1680] = { + [sym_comment] = STATE(1680), + [sym_identifier] = ACTIONS(3512), + [anon_sym_export] = ACTIONS(3512), + [anon_sym_type] = ACTIONS(3512), + [anon_sym_namespace] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_typeof] = ACTIONS(3512), + [anon_sym_import] = ACTIONS(3512), + [anon_sym_from] = ACTIONS(3512), + [anon_sym_with] = ACTIONS(3512), + [anon_sym_var] = ACTIONS(3512), + [anon_sym_let] = ACTIONS(3512), + [anon_sym_const] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_if] = ACTIONS(3512), + [anon_sym_switch] = ACTIONS(3512), + [anon_sym_for] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym_await] = ACTIONS(3512), + [anon_sym_of] = ACTIONS(3512), + [anon_sym_while] = ACTIONS(3512), + [anon_sym_do] = ACTIONS(3512), + [anon_sym_try] = ACTIONS(3512), + [anon_sym_break] = ACTIONS(3512), + [anon_sym_continue] = ACTIONS(3512), + [anon_sym_debugger] = ACTIONS(3512), + [anon_sym_return] = ACTIONS(3512), + [anon_sym_throw] = ACTIONS(3512), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym_yield] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LTtemplate_GT] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3512), + [anon_sym_class] = ACTIONS(3512), + [anon_sym_async] = ACTIONS(3512), + [anon_sym_function] = ACTIONS(3512), + [anon_sym_new] = ACTIONS(3512), + [anon_sym_using] = ACTIONS(3512), + [anon_sym_PLUS] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3512), + [anon_sym_SLASH] = ACTIONS(3512), + [anon_sym_LT] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_void] = ACTIONS(3512), + [anon_sym_delete] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3512), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3512), + [sym_number] = ACTIONS(3512), + [sym_private_property_identifier] = ACTIONS(3512), + [sym_this] = ACTIONS(3512), + [sym_super] = ACTIONS(3512), + [sym_true] = ACTIONS(3512), + [sym_false] = ACTIONS(3512), + [sym_null] = ACTIONS(3512), + [sym_undefined] = ACTIONS(3512), + [anon_sym_AT] = ACTIONS(3512), + [anon_sym_static] = ACTIONS(3512), + [anon_sym_readonly] = ACTIONS(3512), + [anon_sym_get] = ACTIONS(3512), + [anon_sym_set] = ACTIONS(3512), + [anon_sym_declare] = ACTIONS(3512), + [anon_sym_public] = ACTIONS(3512), + [anon_sym_private] = ACTIONS(3512), + [anon_sym_protected] = ACTIONS(3512), + [anon_sym_override] = ACTIONS(3512), + [anon_sym_module] = ACTIONS(3512), + [anon_sym_any] = ACTIONS(3512), + [anon_sym_number] = ACTIONS(3512), + [anon_sym_boolean] = ACTIONS(3512), + [anon_sym_string] = ACTIONS(3512), + [anon_sym_symbol] = ACTIONS(3512), + [anon_sym_object] = ACTIONS(3512), + [anon_sym_property] = ACTIONS(3512), + [anon_sym_signal] = ACTIONS(3512), + [anon_sym_on] = ACTIONS(3512), + [anon_sym_required] = ACTIONS(3512), + [anon_sym_component] = ACTIONS(3512), + [anon_sym_abstract] = ACTIONS(3512), + [anon_sym_interface] = ACTIONS(3512), + [anon_sym_enum] = ACTIONS(3512), + [sym_html_comment] = ACTIONS(5), + }, + [1681] = { + [sym_comment] = STATE(1681), + [sym_identifier] = ACTIONS(3606), + [anon_sym_export] = ACTIONS(3606), + [anon_sym_type] = ACTIONS(3606), + [anon_sym_namespace] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_typeof] = ACTIONS(3606), + [anon_sym_import] = ACTIONS(3606), + [anon_sym_from] = ACTIONS(3606), + [anon_sym_with] = ACTIONS(3606), + [anon_sym_var] = ACTIONS(3606), + [anon_sym_let] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_await] = ACTIONS(3606), + [anon_sym_of] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_debugger] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_throw] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_yield] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_LTtemplate_GT] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_async] = ACTIONS(3606), + [anon_sym_function] = ACTIONS(3606), + [anon_sym_new] = ACTIONS(3606), + [anon_sym_using] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_SLASH] = ACTIONS(3606), + [anon_sym_LT] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_void] = ACTIONS(3606), + [anon_sym_delete] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3606), + [sym_number] = ACTIONS(3606), + [sym_private_property_identifier] = ACTIONS(3606), + [sym_this] = ACTIONS(3606), + [sym_super] = ACTIONS(3606), + [sym_true] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [sym_undefined] = ACTIONS(3606), + [anon_sym_AT] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_readonly] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(3606), + [anon_sym_set] = ACTIONS(3606), + [anon_sym_declare] = ACTIONS(3606), + [anon_sym_public] = ACTIONS(3606), + [anon_sym_private] = ACTIONS(3606), + [anon_sym_protected] = ACTIONS(3606), + [anon_sym_override] = ACTIONS(3606), + [anon_sym_module] = ACTIONS(3606), + [anon_sym_any] = ACTIONS(3606), + [anon_sym_number] = ACTIONS(3606), + [anon_sym_boolean] = ACTIONS(3606), + [anon_sym_string] = ACTIONS(3606), + [anon_sym_symbol] = ACTIONS(3606), + [anon_sym_object] = ACTIONS(3606), + [anon_sym_property] = ACTIONS(3606), + [anon_sym_signal] = ACTIONS(3606), + [anon_sym_on] = ACTIONS(3606), + [anon_sym_required] = ACTIONS(3606), + [anon_sym_component] = ACTIONS(3606), + [anon_sym_abstract] = ACTIONS(3606), + [anon_sym_interface] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [sym_html_comment] = ACTIONS(5), + }, + [1682] = { + [sym_comment] = STATE(1682), + [sym_identifier] = ACTIONS(3606), + [anon_sym_export] = ACTIONS(3606), + [anon_sym_type] = ACTIONS(3606), + [anon_sym_namespace] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_typeof] = ACTIONS(3606), + [anon_sym_import] = ACTIONS(3606), + [anon_sym_from] = ACTIONS(3606), + [anon_sym_with] = ACTIONS(3606), + [anon_sym_var] = ACTIONS(3606), + [anon_sym_let] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_await] = ACTIONS(3606), + [anon_sym_of] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_debugger] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_throw] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_yield] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_LTtemplate_GT] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_async] = ACTIONS(3606), + [anon_sym_function] = ACTIONS(3606), + [anon_sym_new] = ACTIONS(3606), + [anon_sym_using] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_SLASH] = ACTIONS(3606), + [anon_sym_LT] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_void] = ACTIONS(3606), + [anon_sym_delete] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3606), + [sym_number] = ACTIONS(3606), + [sym_private_property_identifier] = ACTIONS(3606), + [sym_this] = ACTIONS(3606), + [sym_super] = ACTIONS(3606), + [sym_true] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [sym_undefined] = ACTIONS(3606), + [anon_sym_AT] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_readonly] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(3606), + [anon_sym_set] = ACTIONS(3606), + [anon_sym_declare] = ACTIONS(3606), + [anon_sym_public] = ACTIONS(3606), + [anon_sym_private] = ACTIONS(3606), + [anon_sym_protected] = ACTIONS(3606), + [anon_sym_override] = ACTIONS(3606), + [anon_sym_module] = ACTIONS(3606), + [anon_sym_any] = ACTIONS(3606), + [anon_sym_number] = ACTIONS(3606), + [anon_sym_boolean] = ACTIONS(3606), + [anon_sym_string] = ACTIONS(3606), + [anon_sym_symbol] = ACTIONS(3606), + [anon_sym_object] = ACTIONS(3606), + [anon_sym_property] = ACTIONS(3606), + [anon_sym_signal] = ACTIONS(3606), + [anon_sym_on] = ACTIONS(3606), + [anon_sym_required] = ACTIONS(3606), + [anon_sym_component] = ACTIONS(3606), + [anon_sym_abstract] = ACTIONS(3606), + [anon_sym_interface] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [sym_html_comment] = ACTIONS(5), + }, + [1683] = { + [sym_comment] = STATE(1683), + [sym_identifier] = ACTIONS(3550), + [anon_sym_export] = ACTIONS(3550), + [anon_sym_type] = ACTIONS(3550), + [anon_sym_namespace] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_RBRACE] = ACTIONS(3550), + [anon_sym_typeof] = ACTIONS(3550), + [anon_sym_import] = ACTIONS(3550), + [anon_sym_from] = ACTIONS(3550), + [anon_sym_with] = ACTIONS(3550), + [anon_sym_var] = ACTIONS(3550), + [anon_sym_let] = ACTIONS(3550), + [anon_sym_const] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_if] = ACTIONS(3550), + [anon_sym_switch] = ACTIONS(3550), + [anon_sym_for] = ACTIONS(3550), + [anon_sym_LPAREN] = ACTIONS(3550), + [anon_sym_await] = ACTIONS(3550), + [anon_sym_of] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3550), + [anon_sym_do] = ACTIONS(3550), + [anon_sym_try] = ACTIONS(3550), + [anon_sym_break] = ACTIONS(3550), + [anon_sym_continue] = ACTIONS(3550), + [anon_sym_debugger] = ACTIONS(3550), + [anon_sym_return] = ACTIONS(3550), + [anon_sym_throw] = ACTIONS(3550), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_yield] = ACTIONS(3550), + [anon_sym_LBRACK] = ACTIONS(3550), + [anon_sym_LTtemplate_GT] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(3550), + [anon_sym_class] = ACTIONS(3550), + [anon_sym_async] = ACTIONS(3550), + [anon_sym_function] = ACTIONS(3550), + [anon_sym_new] = ACTIONS(3550), + [anon_sym_using] = ACTIONS(3550), + [anon_sym_PLUS] = ACTIONS(3550), + [anon_sym_DASH] = ACTIONS(3550), + [anon_sym_SLASH] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(3550), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_void] = ACTIONS(3550), + [anon_sym_delete] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_DASH_DASH] = ACTIONS(3550), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3550), + [sym_number] = ACTIONS(3550), + [sym_private_property_identifier] = ACTIONS(3550), + [sym_this] = ACTIONS(3550), + [sym_super] = ACTIONS(3550), + [sym_true] = ACTIONS(3550), + [sym_false] = ACTIONS(3550), + [sym_null] = ACTIONS(3550), + [sym_undefined] = ACTIONS(3550), + [anon_sym_AT] = ACTIONS(3550), + [anon_sym_static] = ACTIONS(3550), + [anon_sym_readonly] = ACTIONS(3550), + [anon_sym_get] = ACTIONS(3550), + [anon_sym_set] = ACTIONS(3550), + [anon_sym_declare] = ACTIONS(3550), + [anon_sym_public] = ACTIONS(3550), + [anon_sym_private] = ACTIONS(3550), + [anon_sym_protected] = ACTIONS(3550), + [anon_sym_override] = ACTIONS(3550), + [anon_sym_module] = ACTIONS(3550), + [anon_sym_any] = ACTIONS(3550), + [anon_sym_number] = ACTIONS(3550), + [anon_sym_boolean] = ACTIONS(3550), + [anon_sym_string] = ACTIONS(3550), + [anon_sym_symbol] = ACTIONS(3550), + [anon_sym_object] = ACTIONS(3550), + [anon_sym_property] = ACTIONS(3550), + [anon_sym_signal] = ACTIONS(3550), + [anon_sym_on] = ACTIONS(3550), + [anon_sym_required] = ACTIONS(3550), + [anon_sym_component] = ACTIONS(3550), + [anon_sym_abstract] = ACTIONS(3550), + [anon_sym_interface] = ACTIONS(3550), + [anon_sym_enum] = ACTIONS(3550), + [sym_html_comment] = ACTIONS(5), + }, + [1684] = { + [sym_comment] = STATE(1684), + [sym_identifier] = ACTIONS(3542), + [anon_sym_export] = ACTIONS(3542), + [anon_sym_type] = ACTIONS(3542), + [anon_sym_namespace] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_RBRACE] = ACTIONS(3542), + [anon_sym_typeof] = ACTIONS(3542), + [anon_sym_import] = ACTIONS(3542), + [anon_sym_from] = ACTIONS(3542), + [anon_sym_with] = ACTIONS(3542), + [anon_sym_var] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_const] = ACTIONS(3542), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_switch] = ACTIONS(3542), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_await] = ACTIONS(3542), + [anon_sym_of] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_break] = ACTIONS(3542), + [anon_sym_continue] = ACTIONS(3542), + [anon_sym_debugger] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_throw] = ACTIONS(3542), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LTtemplate_GT] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_SQUOTE] = ACTIONS(3542), + [anon_sym_class] = ACTIONS(3542), + [anon_sym_async] = ACTIONS(3542), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_using] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_void] = ACTIONS(3542), + [anon_sym_delete] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3542), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3542), + [sym_number] = ACTIONS(3542), + [sym_private_property_identifier] = ACTIONS(3542), + [sym_this] = ACTIONS(3542), + [sym_super] = ACTIONS(3542), + [sym_true] = ACTIONS(3542), + [sym_false] = ACTIONS(3542), + [sym_null] = ACTIONS(3542), + [sym_undefined] = ACTIONS(3542), + [anon_sym_AT] = ACTIONS(3542), + [anon_sym_static] = ACTIONS(3542), + [anon_sym_readonly] = ACTIONS(3542), + [anon_sym_get] = ACTIONS(3542), + [anon_sym_set] = ACTIONS(3542), + [anon_sym_declare] = ACTIONS(3542), + [anon_sym_public] = ACTIONS(3542), + [anon_sym_private] = ACTIONS(3542), + [anon_sym_protected] = ACTIONS(3542), + [anon_sym_override] = ACTIONS(3542), + [anon_sym_module] = ACTIONS(3542), + [anon_sym_any] = ACTIONS(3542), + [anon_sym_number] = ACTIONS(3542), + [anon_sym_boolean] = ACTIONS(3542), + [anon_sym_string] = ACTIONS(3542), + [anon_sym_symbol] = ACTIONS(3542), + [anon_sym_object] = ACTIONS(3542), + [anon_sym_property] = ACTIONS(3542), + [anon_sym_signal] = ACTIONS(3542), + [anon_sym_on] = ACTIONS(3542), + [anon_sym_required] = ACTIONS(3542), + [anon_sym_component] = ACTIONS(3542), + [anon_sym_abstract] = ACTIONS(3542), + [anon_sym_interface] = ACTIONS(3542), + [anon_sym_enum] = ACTIONS(3542), + [sym_html_comment] = ACTIONS(5), + }, + [1685] = { + [sym_comment] = STATE(1685), + [sym_identifier] = ACTIONS(3516), + [anon_sym_export] = ACTIONS(3516), + [anon_sym_type] = ACTIONS(3516), + [anon_sym_namespace] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3516), + [anon_sym_RBRACE] = ACTIONS(3516), + [anon_sym_typeof] = ACTIONS(3516), + [anon_sym_import] = ACTIONS(3516), + [anon_sym_from] = ACTIONS(3516), + [anon_sym_with] = ACTIONS(3516), + [anon_sym_var] = ACTIONS(3516), + [anon_sym_let] = ACTIONS(3516), + [anon_sym_const] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_if] = ACTIONS(3516), + [anon_sym_switch] = ACTIONS(3516), + [anon_sym_for] = ACTIONS(3516), + [anon_sym_LPAREN] = ACTIONS(3516), + [anon_sym_await] = ACTIONS(3516), + [anon_sym_of] = ACTIONS(3516), + [anon_sym_while] = ACTIONS(3516), + [anon_sym_do] = ACTIONS(3516), + [anon_sym_try] = ACTIONS(3516), + [anon_sym_break] = ACTIONS(3516), + [anon_sym_continue] = ACTIONS(3516), + [anon_sym_debugger] = ACTIONS(3516), + [anon_sym_return] = ACTIONS(3516), + [anon_sym_throw] = ACTIONS(3516), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym_yield] = ACTIONS(3516), + [anon_sym_LBRACK] = ACTIONS(3516), + [anon_sym_LTtemplate_GT] = ACTIONS(3516), + [anon_sym_DQUOTE] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3516), + [anon_sym_class] = ACTIONS(3516), + [anon_sym_async] = ACTIONS(3516), + [anon_sym_function] = ACTIONS(3516), + [anon_sym_new] = ACTIONS(3516), + [anon_sym_using] = ACTIONS(3516), + [anon_sym_PLUS] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3516), + [anon_sym_SLASH] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_void] = ACTIONS(3516), + [anon_sym_delete] = ACTIONS(3516), + [anon_sym_PLUS_PLUS] = ACTIONS(3516), + [anon_sym_DASH_DASH] = ACTIONS(3516), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3516), + [sym_number] = ACTIONS(3516), + [sym_private_property_identifier] = ACTIONS(3516), + [sym_this] = ACTIONS(3516), + [sym_super] = ACTIONS(3516), + [sym_true] = ACTIONS(3516), + [sym_false] = ACTIONS(3516), + [sym_null] = ACTIONS(3516), + [sym_undefined] = ACTIONS(3516), + [anon_sym_AT] = ACTIONS(3516), + [anon_sym_static] = ACTIONS(3516), + [anon_sym_readonly] = ACTIONS(3516), + [anon_sym_get] = ACTIONS(3516), + [anon_sym_set] = ACTIONS(3516), + [anon_sym_declare] = ACTIONS(3516), + [anon_sym_public] = ACTIONS(3516), + [anon_sym_private] = ACTIONS(3516), + [anon_sym_protected] = ACTIONS(3516), + [anon_sym_override] = ACTIONS(3516), + [anon_sym_module] = ACTIONS(3516), + [anon_sym_any] = ACTIONS(3516), + [anon_sym_number] = ACTIONS(3516), + [anon_sym_boolean] = ACTIONS(3516), + [anon_sym_string] = ACTIONS(3516), + [anon_sym_symbol] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(3516), + [anon_sym_property] = ACTIONS(3516), + [anon_sym_signal] = ACTIONS(3516), + [anon_sym_on] = ACTIONS(3516), + [anon_sym_required] = ACTIONS(3516), + [anon_sym_component] = ACTIONS(3516), + [anon_sym_abstract] = ACTIONS(3516), + [anon_sym_interface] = ACTIONS(3516), + [anon_sym_enum] = ACTIONS(3516), + [sym_html_comment] = ACTIONS(5), + }, + [1686] = { + [sym_comment] = STATE(1686), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1687] = { + [sym_comment] = STATE(1687), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1688] = { + [sym_comment] = STATE(1688), + [sym_identifier] = ACTIONS(3546), + [anon_sym_export] = ACTIONS(3546), + [anon_sym_type] = ACTIONS(3546), + [anon_sym_namespace] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym_typeof] = ACTIONS(3546), + [anon_sym_import] = ACTIONS(3546), + [anon_sym_from] = ACTIONS(3546), + [anon_sym_with] = ACTIONS(3546), + [anon_sym_var] = ACTIONS(3546), + [anon_sym_let] = ACTIONS(3546), + [anon_sym_const] = ACTIONS(3546), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_if] = ACTIONS(3546), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3546), + [anon_sym_await] = ACTIONS(3546), + [anon_sym_of] = ACTIONS(3546), + [anon_sym_while] = ACTIONS(3546), + [anon_sym_do] = ACTIONS(3546), + [anon_sym_try] = ACTIONS(3546), + [anon_sym_break] = ACTIONS(3546), + [anon_sym_continue] = ACTIONS(3546), + [anon_sym_debugger] = ACTIONS(3546), + [anon_sym_return] = ACTIONS(3546), + [anon_sym_throw] = ACTIONS(3546), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_LTtemplate_GT] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [anon_sym_SQUOTE] = ACTIONS(3546), + [anon_sym_class] = ACTIONS(3546), + [anon_sym_async] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3546), + [anon_sym_using] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3546), + [anon_sym_DASH] = ACTIONS(3546), + [anon_sym_SLASH] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_void] = ACTIONS(3546), + [anon_sym_delete] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3546), + [sym_number] = ACTIONS(3546), + [sym_private_property_identifier] = ACTIONS(3546), + [sym_this] = ACTIONS(3546), + [sym_super] = ACTIONS(3546), + [sym_true] = ACTIONS(3546), + [sym_false] = ACTIONS(3546), + [sym_null] = ACTIONS(3546), + [sym_undefined] = ACTIONS(3546), + [anon_sym_AT] = ACTIONS(3546), + [anon_sym_static] = ACTIONS(3546), + [anon_sym_readonly] = ACTIONS(3546), + [anon_sym_get] = ACTIONS(3546), + [anon_sym_set] = ACTIONS(3546), + [anon_sym_declare] = ACTIONS(3546), + [anon_sym_public] = ACTIONS(3546), + [anon_sym_private] = ACTIONS(3546), + [anon_sym_protected] = ACTIONS(3546), + [anon_sym_override] = ACTIONS(3546), + [anon_sym_module] = ACTIONS(3546), + [anon_sym_any] = ACTIONS(3546), + [anon_sym_number] = ACTIONS(3546), + [anon_sym_boolean] = ACTIONS(3546), + [anon_sym_string] = ACTIONS(3546), + [anon_sym_symbol] = ACTIONS(3546), + [anon_sym_object] = ACTIONS(3546), + [anon_sym_property] = ACTIONS(3546), + [anon_sym_signal] = ACTIONS(3546), + [anon_sym_on] = ACTIONS(3546), + [anon_sym_required] = ACTIONS(3546), + [anon_sym_component] = ACTIONS(3546), + [anon_sym_abstract] = ACTIONS(3546), + [anon_sym_interface] = ACTIONS(3546), + [anon_sym_enum] = ACTIONS(3546), + [sym_html_comment] = ACTIONS(5), + }, + [1689] = { + [sym_comment] = STATE(1689), + [sym_identifier] = ACTIONS(3532), + [anon_sym_export] = ACTIONS(3532), + [anon_sym_type] = ACTIONS(3532), + [anon_sym_namespace] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_RBRACE] = ACTIONS(3532), + [anon_sym_typeof] = ACTIONS(3532), + [anon_sym_import] = ACTIONS(3532), + [anon_sym_from] = ACTIONS(3532), + [anon_sym_with] = ACTIONS(3532), + [anon_sym_var] = ACTIONS(3532), + [anon_sym_let] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_if] = ACTIONS(3532), + [anon_sym_switch] = ACTIONS(3532), + [anon_sym_for] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(3532), + [anon_sym_await] = ACTIONS(3532), + [anon_sym_of] = ACTIONS(3532), + [anon_sym_while] = ACTIONS(3532), + [anon_sym_do] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3532), + [anon_sym_break] = ACTIONS(3532), + [anon_sym_continue] = ACTIONS(3532), + [anon_sym_debugger] = ACTIONS(3532), + [anon_sym_return] = ACTIONS(3532), + [anon_sym_throw] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym_yield] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LTtemplate_GT] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_async] = ACTIONS(3532), + [anon_sym_function] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3532), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_SLASH] = ACTIONS(3532), + [anon_sym_LT] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_void] = ACTIONS(3532), + [anon_sym_delete] = ACTIONS(3532), + [anon_sym_PLUS_PLUS] = ACTIONS(3532), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3532), + [sym_number] = ACTIONS(3532), + [sym_private_property_identifier] = ACTIONS(3532), + [sym_this] = ACTIONS(3532), + [sym_super] = ACTIONS(3532), + [sym_true] = ACTIONS(3532), + [sym_false] = ACTIONS(3532), + [sym_null] = ACTIONS(3532), + [sym_undefined] = ACTIONS(3532), + [anon_sym_AT] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_readonly] = ACTIONS(3532), + [anon_sym_get] = ACTIONS(3532), + [anon_sym_set] = ACTIONS(3532), + [anon_sym_declare] = ACTIONS(3532), + [anon_sym_public] = ACTIONS(3532), + [anon_sym_private] = ACTIONS(3532), + [anon_sym_protected] = ACTIONS(3532), + [anon_sym_override] = ACTIONS(3532), + [anon_sym_module] = ACTIONS(3532), + [anon_sym_any] = ACTIONS(3532), + [anon_sym_number] = ACTIONS(3532), + [anon_sym_boolean] = ACTIONS(3532), + [anon_sym_string] = ACTIONS(3532), + [anon_sym_symbol] = ACTIONS(3532), + [anon_sym_object] = ACTIONS(3532), + [anon_sym_property] = ACTIONS(3532), + [anon_sym_signal] = ACTIONS(3532), + [anon_sym_on] = ACTIONS(3532), + [anon_sym_required] = ACTIONS(3532), + [anon_sym_component] = ACTIONS(3532), + [anon_sym_abstract] = ACTIONS(3532), + [anon_sym_interface] = ACTIONS(3532), + [anon_sym_enum] = ACTIONS(3532), + [sym_html_comment] = ACTIONS(5), + }, + [1690] = { + [sym_comment] = STATE(1690), + [sym_identifier] = ACTIONS(3502), + [anon_sym_export] = ACTIONS(3502), + [anon_sym_type] = ACTIONS(3502), + [anon_sym_namespace] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3502), + [anon_sym_RBRACE] = ACTIONS(3502), + [anon_sym_typeof] = ACTIONS(3502), + [anon_sym_import] = ACTIONS(3502), + [anon_sym_from] = ACTIONS(3502), + [anon_sym_with] = ACTIONS(3502), + [anon_sym_var] = ACTIONS(3502), + [anon_sym_let] = ACTIONS(3502), + [anon_sym_const] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_if] = ACTIONS(3502), + [anon_sym_switch] = ACTIONS(3502), + [anon_sym_for] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3502), + [anon_sym_await] = ACTIONS(3502), + [anon_sym_of] = ACTIONS(3502), + [anon_sym_while] = ACTIONS(3502), + [anon_sym_do] = ACTIONS(3502), + [anon_sym_try] = ACTIONS(3502), + [anon_sym_break] = ACTIONS(3502), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_debugger] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3502), + [anon_sym_throw] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3502), + [anon_sym_yield] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_LTtemplate_GT] = ACTIONS(3502), + [anon_sym_DQUOTE] = ACTIONS(3502), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_class] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(3502), + [anon_sym_function] = ACTIONS(3502), + [anon_sym_new] = ACTIONS(3502), + [anon_sym_using] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_SLASH] = ACTIONS(3502), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_TILDE] = ACTIONS(3502), + [anon_sym_void] = ACTIONS(3502), + [anon_sym_delete] = ACTIONS(3502), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3502), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3502), + [sym_number] = ACTIONS(3502), + [sym_private_property_identifier] = ACTIONS(3502), + [sym_this] = ACTIONS(3502), + [sym_super] = ACTIONS(3502), + [sym_true] = ACTIONS(3502), + [sym_false] = ACTIONS(3502), + [sym_null] = ACTIONS(3502), + [sym_undefined] = ACTIONS(3502), + [anon_sym_AT] = ACTIONS(3502), + [anon_sym_static] = ACTIONS(3502), + [anon_sym_readonly] = ACTIONS(3502), + [anon_sym_get] = ACTIONS(3502), + [anon_sym_set] = ACTIONS(3502), + [anon_sym_declare] = ACTIONS(3502), + [anon_sym_public] = ACTIONS(3502), + [anon_sym_private] = ACTIONS(3502), + [anon_sym_protected] = ACTIONS(3502), + [anon_sym_override] = ACTIONS(3502), + [anon_sym_module] = ACTIONS(3502), + [anon_sym_any] = ACTIONS(3502), + [anon_sym_number] = ACTIONS(3502), + [anon_sym_boolean] = ACTIONS(3502), + [anon_sym_string] = ACTIONS(3502), + [anon_sym_symbol] = ACTIONS(3502), + [anon_sym_object] = ACTIONS(3502), + [anon_sym_property] = ACTIONS(3502), + [anon_sym_signal] = ACTIONS(3502), + [anon_sym_on] = ACTIONS(3502), + [anon_sym_required] = ACTIONS(3502), + [anon_sym_component] = ACTIONS(3502), + [anon_sym_abstract] = ACTIONS(3502), + [anon_sym_interface] = ACTIONS(3502), + [anon_sym_enum] = ACTIONS(3502), + [sym_html_comment] = ACTIONS(5), + }, + [1691] = { + [sym_comment] = STATE(1691), + [sym_identifier] = ACTIONS(3604), + [anon_sym_export] = ACTIONS(3604), + [anon_sym_type] = ACTIONS(3604), + [anon_sym_namespace] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_RBRACE] = ACTIONS(3604), + [anon_sym_typeof] = ACTIONS(3604), + [anon_sym_import] = ACTIONS(3604), + [anon_sym_from] = ACTIONS(3604), + [anon_sym_with] = ACTIONS(3604), + [anon_sym_var] = ACTIONS(3604), + [anon_sym_let] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_BANG] = ACTIONS(3604), + [anon_sym_if] = ACTIONS(3604), + [anon_sym_switch] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3604), + [anon_sym_await] = ACTIONS(3604), + [anon_sym_of] = ACTIONS(3604), + [anon_sym_while] = ACTIONS(3604), + [anon_sym_do] = ACTIONS(3604), + [anon_sym_try] = ACTIONS(3604), + [anon_sym_break] = ACTIONS(3604), + [anon_sym_continue] = ACTIONS(3604), + [anon_sym_debugger] = ACTIONS(3604), + [anon_sym_return] = ACTIONS(3604), + [anon_sym_throw] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LTtemplate_GT] = ACTIONS(3604), + [anon_sym_DQUOTE] = ACTIONS(3604), + [anon_sym_SQUOTE] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_async] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(3604), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_SLASH] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_TILDE] = ACTIONS(3604), + [anon_sym_void] = ACTIONS(3604), + [anon_sym_delete] = ACTIONS(3604), + [anon_sym_PLUS_PLUS] = ACTIONS(3604), + [anon_sym_DASH_DASH] = ACTIONS(3604), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3604), + [sym_number] = ACTIONS(3604), + [sym_private_property_identifier] = ACTIONS(3604), + [sym_this] = ACTIONS(3604), + [sym_super] = ACTIONS(3604), + [sym_true] = ACTIONS(3604), + [sym_false] = ACTIONS(3604), + [sym_null] = ACTIONS(3604), + [sym_undefined] = ACTIONS(3604), + [anon_sym_AT] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_readonly] = ACTIONS(3604), + [anon_sym_get] = ACTIONS(3604), + [anon_sym_set] = ACTIONS(3604), + [anon_sym_declare] = ACTIONS(3604), + [anon_sym_public] = ACTIONS(3604), + [anon_sym_private] = ACTIONS(3604), + [anon_sym_protected] = ACTIONS(3604), + [anon_sym_override] = ACTIONS(3604), + [anon_sym_module] = ACTIONS(3604), + [anon_sym_any] = ACTIONS(3604), + [anon_sym_number] = ACTIONS(3604), + [anon_sym_boolean] = ACTIONS(3604), + [anon_sym_string] = ACTIONS(3604), + [anon_sym_symbol] = ACTIONS(3604), + [anon_sym_object] = ACTIONS(3604), + [anon_sym_property] = ACTIONS(3604), + [anon_sym_signal] = ACTIONS(3604), + [anon_sym_on] = ACTIONS(3604), + [anon_sym_required] = ACTIONS(3604), + [anon_sym_component] = ACTIONS(3604), + [anon_sym_abstract] = ACTIONS(3604), + [anon_sym_interface] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), + [sym_html_comment] = ACTIONS(5), + }, + [1692] = { + [sym_comment] = STATE(1692), + [sym_identifier] = ACTIONS(3584), + [anon_sym_export] = ACTIONS(3584), + [anon_sym_type] = ACTIONS(3584), + [anon_sym_namespace] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3584), + [anon_sym_RBRACE] = ACTIONS(3584), + [anon_sym_typeof] = ACTIONS(3584), + [anon_sym_import] = ACTIONS(3584), + [anon_sym_from] = ACTIONS(3584), + [anon_sym_with] = ACTIONS(3584), + [anon_sym_var] = ACTIONS(3584), + [anon_sym_let] = ACTIONS(3584), + [anon_sym_const] = ACTIONS(3584), + [anon_sym_BANG] = ACTIONS(3584), + [anon_sym_if] = ACTIONS(3584), + [anon_sym_switch] = ACTIONS(3584), + [anon_sym_for] = ACTIONS(3584), + [anon_sym_LPAREN] = ACTIONS(3584), + [anon_sym_await] = ACTIONS(3584), + [anon_sym_of] = ACTIONS(3584), + [anon_sym_while] = ACTIONS(3584), + [anon_sym_do] = ACTIONS(3584), + [anon_sym_try] = ACTIONS(3584), + [anon_sym_break] = ACTIONS(3584), + [anon_sym_continue] = ACTIONS(3584), + [anon_sym_debugger] = ACTIONS(3584), + [anon_sym_return] = ACTIONS(3584), + [anon_sym_throw] = ACTIONS(3584), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym_yield] = ACTIONS(3584), + [anon_sym_LBRACK] = ACTIONS(3584), + [anon_sym_LTtemplate_GT] = ACTIONS(3584), + [anon_sym_DQUOTE] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3584), + [anon_sym_class] = ACTIONS(3584), + [anon_sym_async] = ACTIONS(3584), + [anon_sym_function] = ACTIONS(3584), + [anon_sym_new] = ACTIONS(3584), + [anon_sym_using] = ACTIONS(3584), + [anon_sym_PLUS] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3584), + [anon_sym_SLASH] = ACTIONS(3584), + [anon_sym_LT] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_void] = ACTIONS(3584), + [anon_sym_delete] = ACTIONS(3584), + [anon_sym_PLUS_PLUS] = ACTIONS(3584), + [anon_sym_DASH_DASH] = ACTIONS(3584), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3584), + [sym_number] = ACTIONS(3584), + [sym_private_property_identifier] = ACTIONS(3584), + [sym_this] = ACTIONS(3584), + [sym_super] = ACTIONS(3584), + [sym_true] = ACTIONS(3584), + [sym_false] = ACTIONS(3584), + [sym_null] = ACTIONS(3584), + [sym_undefined] = ACTIONS(3584), + [anon_sym_AT] = ACTIONS(3584), + [anon_sym_static] = ACTIONS(3584), + [anon_sym_readonly] = ACTIONS(3584), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3584), + [anon_sym_declare] = ACTIONS(3584), + [anon_sym_public] = ACTIONS(3584), + [anon_sym_private] = ACTIONS(3584), + [anon_sym_protected] = ACTIONS(3584), + [anon_sym_override] = ACTIONS(3584), + [anon_sym_module] = ACTIONS(3584), + [anon_sym_any] = ACTIONS(3584), + [anon_sym_number] = ACTIONS(3584), + [anon_sym_boolean] = ACTIONS(3584), + [anon_sym_string] = ACTIONS(3584), + [anon_sym_symbol] = ACTIONS(3584), + [anon_sym_object] = ACTIONS(3584), + [anon_sym_property] = ACTIONS(3584), + [anon_sym_signal] = ACTIONS(3584), + [anon_sym_on] = ACTIONS(3584), + [anon_sym_required] = ACTIONS(3584), + [anon_sym_component] = ACTIONS(3584), + [anon_sym_abstract] = ACTIONS(3584), + [anon_sym_interface] = ACTIONS(3584), + [anon_sym_enum] = ACTIONS(3584), + [sym_html_comment] = ACTIONS(5), + }, + [1693] = { + [sym_comment] = STATE(1693), + [sym_identifier] = ACTIONS(3506), + [anon_sym_export] = ACTIONS(3506), + [anon_sym_type] = ACTIONS(3506), + [anon_sym_namespace] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(3506), + [anon_sym_RBRACE] = ACTIONS(3506), + [anon_sym_typeof] = ACTIONS(3506), + [anon_sym_import] = ACTIONS(3506), + [anon_sym_from] = ACTIONS(3506), + [anon_sym_with] = ACTIONS(3506), + [anon_sym_var] = ACTIONS(3506), + [anon_sym_let] = ACTIONS(3506), + [anon_sym_const] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3506), + [anon_sym_if] = ACTIONS(3506), + [anon_sym_switch] = ACTIONS(3506), + [anon_sym_for] = ACTIONS(3506), + [anon_sym_LPAREN] = ACTIONS(3506), + [anon_sym_await] = ACTIONS(3506), + [anon_sym_of] = ACTIONS(3506), + [anon_sym_while] = ACTIONS(3506), + [anon_sym_do] = ACTIONS(3506), + [anon_sym_try] = ACTIONS(3506), + [anon_sym_break] = ACTIONS(3506), + [anon_sym_continue] = ACTIONS(3506), + [anon_sym_debugger] = ACTIONS(3506), + [anon_sym_return] = ACTIONS(3506), + [anon_sym_throw] = ACTIONS(3506), + [anon_sym_SEMI] = ACTIONS(3506), + [anon_sym_yield] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3506), + [anon_sym_LTtemplate_GT] = ACTIONS(3506), + [anon_sym_DQUOTE] = ACTIONS(3506), + [anon_sym_SQUOTE] = ACTIONS(3506), + [anon_sym_class] = ACTIONS(3506), + [anon_sym_async] = ACTIONS(3506), + [anon_sym_function] = ACTIONS(3506), + [anon_sym_new] = ACTIONS(3506), + [anon_sym_using] = ACTIONS(3506), + [anon_sym_PLUS] = ACTIONS(3506), + [anon_sym_DASH] = ACTIONS(3506), + [anon_sym_SLASH] = ACTIONS(3506), + [anon_sym_LT] = ACTIONS(3506), + [anon_sym_TILDE] = ACTIONS(3506), + [anon_sym_void] = ACTIONS(3506), + [anon_sym_delete] = ACTIONS(3506), + [anon_sym_PLUS_PLUS] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3506), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3506), + [sym_number] = ACTIONS(3506), + [sym_private_property_identifier] = ACTIONS(3506), + [sym_this] = ACTIONS(3506), + [sym_super] = ACTIONS(3506), + [sym_true] = ACTIONS(3506), + [sym_false] = ACTIONS(3506), + [sym_null] = ACTIONS(3506), + [sym_undefined] = ACTIONS(3506), + [anon_sym_AT] = ACTIONS(3506), + [anon_sym_static] = ACTIONS(3506), + [anon_sym_readonly] = ACTIONS(3506), + [anon_sym_get] = ACTIONS(3506), + [anon_sym_set] = ACTIONS(3506), + [anon_sym_declare] = ACTIONS(3506), + [anon_sym_public] = ACTIONS(3506), + [anon_sym_private] = ACTIONS(3506), + [anon_sym_protected] = ACTIONS(3506), + [anon_sym_override] = ACTIONS(3506), + [anon_sym_module] = ACTIONS(3506), + [anon_sym_any] = ACTIONS(3506), + [anon_sym_number] = ACTIONS(3506), + [anon_sym_boolean] = ACTIONS(3506), + [anon_sym_string] = ACTIONS(3506), + [anon_sym_symbol] = ACTIONS(3506), + [anon_sym_object] = ACTIONS(3506), + [anon_sym_property] = ACTIONS(3506), + [anon_sym_signal] = ACTIONS(3506), + [anon_sym_on] = ACTIONS(3506), + [anon_sym_required] = ACTIONS(3506), + [anon_sym_component] = ACTIONS(3506), + [anon_sym_abstract] = ACTIONS(3506), + [anon_sym_interface] = ACTIONS(3506), + [anon_sym_enum] = ACTIONS(3506), + [sym_html_comment] = ACTIONS(5), + }, + [1694] = { + [sym_comment] = STATE(1694), + [sym_identifier] = ACTIONS(3496), + [anon_sym_export] = ACTIONS(3496), + [anon_sym_type] = ACTIONS(3496), + [anon_sym_namespace] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_RBRACE] = ACTIONS(3496), + [anon_sym_typeof] = ACTIONS(3496), + [anon_sym_import] = ACTIONS(3496), + [anon_sym_from] = ACTIONS(3496), + [anon_sym_with] = ACTIONS(3496), + [anon_sym_var] = ACTIONS(3496), + [anon_sym_let] = ACTIONS(3496), + [anon_sym_const] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3496), + [anon_sym_if] = ACTIONS(3496), + [anon_sym_switch] = ACTIONS(3496), + [anon_sym_for] = ACTIONS(3496), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_await] = ACTIONS(3496), + [anon_sym_of] = ACTIONS(3496), + [anon_sym_while] = ACTIONS(3496), + [anon_sym_do] = ACTIONS(3496), + [anon_sym_try] = ACTIONS(3496), + [anon_sym_break] = ACTIONS(3496), + [anon_sym_continue] = ACTIONS(3496), + [anon_sym_debugger] = ACTIONS(3496), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_throw] = ACTIONS(3496), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym_yield] = ACTIONS(3496), + [anon_sym_LBRACK] = ACTIONS(3496), + [anon_sym_LTtemplate_GT] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(3496), + [anon_sym_class] = ACTIONS(3496), + [anon_sym_async] = ACTIONS(3496), + [anon_sym_function] = ACTIONS(3496), + [anon_sym_new] = ACTIONS(3496), + [anon_sym_using] = ACTIONS(3496), + [anon_sym_PLUS] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(3496), + [anon_sym_void] = ACTIONS(3496), + [anon_sym_delete] = ACTIONS(3496), + [anon_sym_PLUS_PLUS] = ACTIONS(3496), + [anon_sym_DASH_DASH] = ACTIONS(3496), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3496), + [sym_number] = ACTIONS(3496), + [sym_private_property_identifier] = ACTIONS(3496), + [sym_this] = ACTIONS(3496), + [sym_super] = ACTIONS(3496), + [sym_true] = ACTIONS(3496), + [sym_false] = ACTIONS(3496), + [sym_null] = ACTIONS(3496), + [sym_undefined] = ACTIONS(3496), + [anon_sym_AT] = ACTIONS(3496), + [anon_sym_static] = ACTIONS(3496), + [anon_sym_readonly] = ACTIONS(3496), + [anon_sym_get] = ACTIONS(3496), + [anon_sym_set] = ACTIONS(3496), + [anon_sym_declare] = ACTIONS(3496), + [anon_sym_public] = ACTIONS(3496), + [anon_sym_private] = ACTIONS(3496), + [anon_sym_protected] = ACTIONS(3496), + [anon_sym_override] = ACTIONS(3496), + [anon_sym_module] = ACTIONS(3496), + [anon_sym_any] = ACTIONS(3496), + [anon_sym_number] = ACTIONS(3496), + [anon_sym_boolean] = ACTIONS(3496), + [anon_sym_string] = ACTIONS(3496), + [anon_sym_symbol] = ACTIONS(3496), + [anon_sym_object] = ACTIONS(3496), + [anon_sym_property] = ACTIONS(3496), + [anon_sym_signal] = ACTIONS(3496), + [anon_sym_on] = ACTIONS(3496), + [anon_sym_required] = ACTIONS(3496), + [anon_sym_component] = ACTIONS(3496), + [anon_sym_abstract] = ACTIONS(3496), + [anon_sym_interface] = ACTIONS(3496), + [anon_sym_enum] = ACTIONS(3496), + [sym_html_comment] = ACTIONS(5), + }, + [1695] = { + [sym_comment] = STATE(1695), + [sym_identifier] = ACTIONS(3494), + [anon_sym_export] = ACTIONS(3494), + [anon_sym_type] = ACTIONS(3494), + [anon_sym_namespace] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(3494), + [anon_sym_RBRACE] = ACTIONS(3494), + [anon_sym_typeof] = ACTIONS(3494), + [anon_sym_import] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_with] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3494), + [anon_sym_switch] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(3494), + [anon_sym_await] = ACTIONS(3494), + [anon_sym_of] = ACTIONS(3494), + [anon_sym_while] = ACTIONS(3494), + [anon_sym_do] = ACTIONS(3494), + [anon_sym_try] = ACTIONS(3494), + [anon_sym_break] = ACTIONS(3494), + [anon_sym_continue] = ACTIONS(3494), + [anon_sym_debugger] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3494), + [anon_sym_throw] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_LTtemplate_GT] = ACTIONS(3494), + [anon_sym_DQUOTE] = ACTIONS(3494), + [anon_sym_SQUOTE] = ACTIONS(3494), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_function] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_using] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_SLASH] = ACTIONS(3494), + [anon_sym_LT] = ACTIONS(3494), + [anon_sym_TILDE] = ACTIONS(3494), + [anon_sym_void] = ACTIONS(3494), + [anon_sym_delete] = ACTIONS(3494), + [anon_sym_PLUS_PLUS] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3494), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3494), + [sym_number] = ACTIONS(3494), + [sym_private_property_identifier] = ACTIONS(3494), + [sym_this] = ACTIONS(3494), + [sym_super] = ACTIONS(3494), + [sym_true] = ACTIONS(3494), + [sym_false] = ACTIONS(3494), + [sym_null] = ACTIONS(3494), + [sym_undefined] = ACTIONS(3494), + [anon_sym_AT] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_get] = ACTIONS(3494), + [anon_sym_set] = ACTIONS(3494), + [anon_sym_declare] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_module] = ACTIONS(3494), + [anon_sym_any] = ACTIONS(3494), + [anon_sym_number] = ACTIONS(3494), + [anon_sym_boolean] = ACTIONS(3494), + [anon_sym_string] = ACTIONS(3494), + [anon_sym_symbol] = ACTIONS(3494), + [anon_sym_object] = ACTIONS(3494), + [anon_sym_property] = ACTIONS(3494), + [anon_sym_signal] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_component] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [sym_html_comment] = ACTIONS(5), + }, + [1696] = { + [sym_comment] = STATE(1696), + [sym_identifier] = ACTIONS(3492), + [anon_sym_export] = ACTIONS(3492), + [anon_sym_type] = ACTIONS(3492), + [anon_sym_namespace] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_RBRACE] = ACTIONS(3492), + [anon_sym_typeof] = ACTIONS(3492), + [anon_sym_import] = ACTIONS(3492), + [anon_sym_from] = ACTIONS(3492), + [anon_sym_with] = ACTIONS(3492), + [anon_sym_var] = ACTIONS(3492), + [anon_sym_let] = ACTIONS(3492), + [anon_sym_const] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_if] = ACTIONS(3492), + [anon_sym_switch] = ACTIONS(3492), + [anon_sym_for] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym_await] = ACTIONS(3492), + [anon_sym_of] = ACTIONS(3492), + [anon_sym_while] = ACTIONS(3492), + [anon_sym_do] = ACTIONS(3492), + [anon_sym_try] = ACTIONS(3492), + [anon_sym_break] = ACTIONS(3492), + [anon_sym_continue] = ACTIONS(3492), + [anon_sym_debugger] = ACTIONS(3492), + [anon_sym_return] = ACTIONS(3492), + [anon_sym_throw] = ACTIONS(3492), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_yield] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3492), + [anon_sym_LTtemplate_GT] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3492), + [anon_sym_class] = ACTIONS(3492), + [anon_sym_async] = ACTIONS(3492), + [anon_sym_function] = ACTIONS(3492), + [anon_sym_new] = ACTIONS(3492), + [anon_sym_using] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_SLASH] = ACTIONS(3492), + [anon_sym_LT] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_void] = ACTIONS(3492), + [anon_sym_delete] = ACTIONS(3492), + [anon_sym_PLUS_PLUS] = ACTIONS(3492), + [anon_sym_DASH_DASH] = ACTIONS(3492), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3492), + [sym_number] = ACTIONS(3492), + [sym_private_property_identifier] = ACTIONS(3492), + [sym_this] = ACTIONS(3492), + [sym_super] = ACTIONS(3492), + [sym_true] = ACTIONS(3492), + [sym_false] = ACTIONS(3492), + [sym_null] = ACTIONS(3492), + [sym_undefined] = ACTIONS(3492), + [anon_sym_AT] = ACTIONS(3492), + [anon_sym_static] = ACTIONS(3492), + [anon_sym_readonly] = ACTIONS(3492), + [anon_sym_get] = ACTIONS(3492), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_declare] = ACTIONS(3492), + [anon_sym_public] = ACTIONS(3492), + [anon_sym_private] = ACTIONS(3492), + [anon_sym_protected] = ACTIONS(3492), + [anon_sym_override] = ACTIONS(3492), + [anon_sym_module] = ACTIONS(3492), + [anon_sym_any] = ACTIONS(3492), + [anon_sym_number] = ACTIONS(3492), + [anon_sym_boolean] = ACTIONS(3492), + [anon_sym_string] = ACTIONS(3492), + [anon_sym_symbol] = ACTIONS(3492), + [anon_sym_object] = ACTIONS(3492), + [anon_sym_property] = ACTIONS(3492), + [anon_sym_signal] = ACTIONS(3492), + [anon_sym_on] = ACTIONS(3492), + [anon_sym_required] = ACTIONS(3492), + [anon_sym_component] = ACTIONS(3492), + [anon_sym_abstract] = ACTIONS(3492), + [anon_sym_interface] = ACTIONS(3492), + [anon_sym_enum] = ACTIONS(3492), + [sym_html_comment] = ACTIONS(5), + }, + [1697] = { + [sym_comment] = STATE(1697), + [sym_identifier] = ACTIONS(3490), + [anon_sym_export] = ACTIONS(3490), + [anon_sym_type] = ACTIONS(3490), + [anon_sym_namespace] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3490), + [anon_sym_RBRACE] = ACTIONS(3490), + [anon_sym_typeof] = ACTIONS(3490), + [anon_sym_import] = ACTIONS(3490), + [anon_sym_from] = ACTIONS(3490), + [anon_sym_with] = ACTIONS(3490), + [anon_sym_var] = ACTIONS(3490), + [anon_sym_let] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_switch] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3490), + [anon_sym_await] = ACTIONS(3490), + [anon_sym_of] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_debugger] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_throw] = ACTIONS(3490), + [anon_sym_SEMI] = ACTIONS(3490), + [anon_sym_yield] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_LTtemplate_GT] = ACTIONS(3490), + [anon_sym_DQUOTE] = ACTIONS(3490), + [anon_sym_SQUOTE] = ACTIONS(3490), + [anon_sym_class] = ACTIONS(3490), + [anon_sym_async] = ACTIONS(3490), + [anon_sym_function] = ACTIONS(3490), + [anon_sym_new] = ACTIONS(3490), + [anon_sym_using] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3490), + [anon_sym_DASH] = ACTIONS(3490), + [anon_sym_SLASH] = ACTIONS(3490), + [anon_sym_LT] = ACTIONS(3490), + [anon_sym_TILDE] = ACTIONS(3490), + [anon_sym_void] = ACTIONS(3490), + [anon_sym_delete] = ACTIONS(3490), + [anon_sym_PLUS_PLUS] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3490), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3490), + [sym_number] = ACTIONS(3490), + [sym_private_property_identifier] = ACTIONS(3490), + [sym_this] = ACTIONS(3490), + [sym_super] = ACTIONS(3490), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [sym_null] = ACTIONS(3490), + [sym_undefined] = ACTIONS(3490), + [anon_sym_AT] = ACTIONS(3490), + [anon_sym_static] = ACTIONS(3490), + [anon_sym_readonly] = ACTIONS(3490), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3490), + [anon_sym_declare] = ACTIONS(3490), + [anon_sym_public] = ACTIONS(3490), + [anon_sym_private] = ACTIONS(3490), + [anon_sym_protected] = ACTIONS(3490), + [anon_sym_override] = ACTIONS(3490), + [anon_sym_module] = ACTIONS(3490), + [anon_sym_any] = ACTIONS(3490), + [anon_sym_number] = ACTIONS(3490), + [anon_sym_boolean] = ACTIONS(3490), + [anon_sym_string] = ACTIONS(3490), + [anon_sym_symbol] = ACTIONS(3490), + [anon_sym_object] = ACTIONS(3490), + [anon_sym_property] = ACTIONS(3490), + [anon_sym_signal] = ACTIONS(3490), + [anon_sym_on] = ACTIONS(3490), + [anon_sym_required] = ACTIONS(3490), + [anon_sym_component] = ACTIONS(3490), + [anon_sym_abstract] = ACTIONS(3490), + [anon_sym_interface] = ACTIONS(3490), + [anon_sym_enum] = ACTIONS(3490), + [sym_html_comment] = ACTIONS(5), + }, + [1698] = { + [sym_comment] = STATE(1698), + [sym_identifier] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_type] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_typeof] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_from] = ACTIONS(3564), + [anon_sym_with] = ACTIONS(3564), + [anon_sym_var] = ACTIONS(3564), + [anon_sym_let] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_await] = ACTIONS(3564), + [anon_sym_of] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_debugger] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym_yield] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LTtemplate_GT] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_async] = ACTIONS(3564), + [anon_sym_function] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_void] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3564), + [sym_number] = ACTIONS(3564), + [sym_private_property_identifier] = ACTIONS(3564), + [sym_this] = ACTIONS(3564), + [sym_super] = ACTIONS(3564), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_undefined] = ACTIONS(3564), + [anon_sym_AT] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_readonly] = ACTIONS(3564), + [anon_sym_get] = ACTIONS(3564), + [anon_sym_set] = ACTIONS(3564), + [anon_sym_declare] = ACTIONS(3564), + [anon_sym_public] = ACTIONS(3564), + [anon_sym_private] = ACTIONS(3564), + [anon_sym_protected] = ACTIONS(3564), + [anon_sym_override] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_any] = ACTIONS(3564), + [anon_sym_number] = ACTIONS(3564), + [anon_sym_boolean] = ACTIONS(3564), + [anon_sym_string] = ACTIONS(3564), + [anon_sym_symbol] = ACTIONS(3564), + [anon_sym_object] = ACTIONS(3564), + [anon_sym_property] = ACTIONS(3564), + [anon_sym_signal] = ACTIONS(3564), + [anon_sym_on] = ACTIONS(3564), + [anon_sym_required] = ACTIONS(3564), + [anon_sym_component] = ACTIONS(3564), + [anon_sym_abstract] = ACTIONS(3564), + [anon_sym_interface] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), + [sym_html_comment] = ACTIONS(5), + }, + [1699] = { + [sym_comment] = STATE(1699), + [sym_identifier] = ACTIONS(3678), + [anon_sym_export] = ACTIONS(3678), + [anon_sym_type] = ACTIONS(3678), + [anon_sym_namespace] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_typeof] = ACTIONS(3678), + [anon_sym_import] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_with] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_await] = ACTIONS(3678), + [anon_sym_of] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_debugger] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_throw] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_LTtemplate_GT] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [anon_sym_SQUOTE] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_async] = ACTIONS(3678), + [anon_sym_function] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_void] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3678), + [sym_number] = ACTIONS(3678), + [sym_private_property_identifier] = ACTIONS(3678), + [sym_this] = ACTIONS(3678), + [sym_super] = ACTIONS(3678), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_AT] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3678), + [anon_sym_get] = ACTIONS(3678), + [anon_sym_set] = ACTIONS(3678), + [anon_sym_declare] = ACTIONS(3678), + [anon_sym_public] = ACTIONS(3678), + [anon_sym_private] = ACTIONS(3678), + [anon_sym_protected] = ACTIONS(3678), + [anon_sym_override] = ACTIONS(3678), + [anon_sym_module] = ACTIONS(3678), + [anon_sym_any] = ACTIONS(3678), + [anon_sym_number] = ACTIONS(3678), + [anon_sym_boolean] = ACTIONS(3678), + [anon_sym_string] = ACTIONS(3678), + [anon_sym_symbol] = ACTIONS(3678), + [anon_sym_object] = ACTIONS(3678), + [anon_sym_property] = ACTIONS(3678), + [anon_sym_signal] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_required] = ACTIONS(3678), + [anon_sym_component] = ACTIONS(3678), + [anon_sym_abstract] = ACTIONS(3678), + [anon_sym_interface] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), + [sym_html_comment] = ACTIONS(5), + }, + [1700] = { + [sym_comment] = STATE(1700), + [sym_identifier] = ACTIONS(3500), + [anon_sym_export] = ACTIONS(3500), + [anon_sym_type] = ACTIONS(3500), + [anon_sym_namespace] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(3500), + [anon_sym_RBRACE] = ACTIONS(3500), + [anon_sym_typeof] = ACTIONS(3500), + [anon_sym_import] = ACTIONS(3500), + [anon_sym_from] = ACTIONS(3500), + [anon_sym_with] = ACTIONS(3500), + [anon_sym_var] = ACTIONS(3500), + [anon_sym_let] = ACTIONS(3500), + [anon_sym_const] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_if] = ACTIONS(3500), + [anon_sym_switch] = ACTIONS(3500), + [anon_sym_for] = ACTIONS(3500), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym_await] = ACTIONS(3500), + [anon_sym_of] = ACTIONS(3500), + [anon_sym_while] = ACTIONS(3500), + [anon_sym_do] = ACTIONS(3500), + [anon_sym_try] = ACTIONS(3500), + [anon_sym_break] = ACTIONS(3500), + [anon_sym_continue] = ACTIONS(3500), + [anon_sym_debugger] = ACTIONS(3500), + [anon_sym_return] = ACTIONS(3500), + [anon_sym_throw] = ACTIONS(3500), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_yield] = ACTIONS(3500), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_LTtemplate_GT] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3500), + [anon_sym_class] = ACTIONS(3500), + [anon_sym_async] = ACTIONS(3500), + [anon_sym_function] = ACTIONS(3500), + [anon_sym_new] = ACTIONS(3500), + [anon_sym_using] = ACTIONS(3500), + [anon_sym_PLUS] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3500), + [anon_sym_void] = ACTIONS(3500), + [anon_sym_delete] = ACTIONS(3500), + [anon_sym_PLUS_PLUS] = ACTIONS(3500), + [anon_sym_DASH_DASH] = ACTIONS(3500), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3500), + [sym_number] = ACTIONS(3500), + [sym_private_property_identifier] = ACTIONS(3500), + [sym_this] = ACTIONS(3500), + [sym_super] = ACTIONS(3500), + [sym_true] = ACTIONS(3500), + [sym_false] = ACTIONS(3500), + [sym_null] = ACTIONS(3500), + [sym_undefined] = ACTIONS(3500), + [anon_sym_AT] = ACTIONS(3500), + [anon_sym_static] = ACTIONS(3500), + [anon_sym_readonly] = ACTIONS(3500), + [anon_sym_get] = ACTIONS(3500), + [anon_sym_set] = ACTIONS(3500), + [anon_sym_declare] = ACTIONS(3500), + [anon_sym_public] = ACTIONS(3500), + [anon_sym_private] = ACTIONS(3500), + [anon_sym_protected] = ACTIONS(3500), + [anon_sym_override] = ACTIONS(3500), + [anon_sym_module] = ACTIONS(3500), + [anon_sym_any] = ACTIONS(3500), + [anon_sym_number] = ACTIONS(3500), + [anon_sym_boolean] = ACTIONS(3500), + [anon_sym_string] = ACTIONS(3500), + [anon_sym_symbol] = ACTIONS(3500), + [anon_sym_object] = ACTIONS(3500), + [anon_sym_property] = ACTIONS(3500), + [anon_sym_signal] = ACTIONS(3500), + [anon_sym_on] = ACTIONS(3500), + [anon_sym_required] = ACTIONS(3500), + [anon_sym_component] = ACTIONS(3500), + [anon_sym_abstract] = ACTIONS(3500), + [anon_sym_interface] = ACTIONS(3500), + [anon_sym_enum] = ACTIONS(3500), + [sym_html_comment] = ACTIONS(5), + }, + [1701] = { + [sym_comment] = STATE(1701), + [sym_identifier] = ACTIONS(3488), + [anon_sym_export] = ACTIONS(3488), + [anon_sym_type] = ACTIONS(3488), + [anon_sym_namespace] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_RBRACE] = ACTIONS(3488), + [anon_sym_typeof] = ACTIONS(3488), + [anon_sym_import] = ACTIONS(3488), + [anon_sym_from] = ACTIONS(3488), + [anon_sym_with] = ACTIONS(3488), + [anon_sym_var] = ACTIONS(3488), + [anon_sym_let] = ACTIONS(3488), + [anon_sym_const] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_if] = ACTIONS(3488), + [anon_sym_switch] = ACTIONS(3488), + [anon_sym_for] = ACTIONS(3488), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_await] = ACTIONS(3488), + [anon_sym_of] = ACTIONS(3488), + [anon_sym_while] = ACTIONS(3488), + [anon_sym_do] = ACTIONS(3488), + [anon_sym_try] = ACTIONS(3488), + [anon_sym_break] = ACTIONS(3488), + [anon_sym_continue] = ACTIONS(3488), + [anon_sym_debugger] = ACTIONS(3488), + [anon_sym_return] = ACTIONS(3488), + [anon_sym_throw] = ACTIONS(3488), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym_yield] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3488), + [anon_sym_LTtemplate_GT] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [anon_sym_SQUOTE] = ACTIONS(3488), + [anon_sym_class] = ACTIONS(3488), + [anon_sym_async] = ACTIONS(3488), + [anon_sym_function] = ACTIONS(3488), + [anon_sym_new] = ACTIONS(3488), + [anon_sym_using] = ACTIONS(3488), + [anon_sym_PLUS] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3488), + [anon_sym_SLASH] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_void] = ACTIONS(3488), + [anon_sym_delete] = ACTIONS(3488), + [anon_sym_PLUS_PLUS] = ACTIONS(3488), + [anon_sym_DASH_DASH] = ACTIONS(3488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3488), + [sym_number] = ACTIONS(3488), + [sym_private_property_identifier] = ACTIONS(3488), + [sym_this] = ACTIONS(3488), + [sym_super] = ACTIONS(3488), + [sym_true] = ACTIONS(3488), + [sym_false] = ACTIONS(3488), + [sym_null] = ACTIONS(3488), + [sym_undefined] = ACTIONS(3488), + [anon_sym_AT] = ACTIONS(3488), + [anon_sym_static] = ACTIONS(3488), + [anon_sym_readonly] = ACTIONS(3488), + [anon_sym_get] = ACTIONS(3488), + [anon_sym_set] = ACTIONS(3488), + [anon_sym_declare] = ACTIONS(3488), + [anon_sym_public] = ACTIONS(3488), + [anon_sym_private] = ACTIONS(3488), + [anon_sym_protected] = ACTIONS(3488), + [anon_sym_override] = ACTIONS(3488), + [anon_sym_module] = ACTIONS(3488), + [anon_sym_any] = ACTIONS(3488), + [anon_sym_number] = ACTIONS(3488), + [anon_sym_boolean] = ACTIONS(3488), + [anon_sym_string] = ACTIONS(3488), + [anon_sym_symbol] = ACTIONS(3488), + [anon_sym_object] = ACTIONS(3488), + [anon_sym_property] = ACTIONS(3488), + [anon_sym_signal] = ACTIONS(3488), + [anon_sym_on] = ACTIONS(3488), + [anon_sym_required] = ACTIONS(3488), + [anon_sym_component] = ACTIONS(3488), + [anon_sym_abstract] = ACTIONS(3488), + [anon_sym_interface] = ACTIONS(3488), + [anon_sym_enum] = ACTIONS(3488), + [sym_html_comment] = ACTIONS(5), + }, + [1702] = { + [sym_comment] = STATE(1702), + [sym_identifier] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_typeof] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_from] = ACTIONS(3646), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_var] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_await] = ACTIONS(3646), + [anon_sym_of] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_debugger] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LTtemplate_GT] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_async] = ACTIONS(3646), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_SLASH] = ACTIONS(3646), + [anon_sym_LT] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_void] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3646), + [sym_number] = ACTIONS(3646), + [sym_private_property_identifier] = ACTIONS(3646), + [sym_this] = ACTIONS(3646), + [sym_super] = ACTIONS(3646), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [sym_null] = ACTIONS(3646), + [sym_undefined] = ACTIONS(3646), + [anon_sym_AT] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_readonly] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(3646), + [anon_sym_set] = ACTIONS(3646), + [anon_sym_declare] = ACTIONS(3646), + [anon_sym_public] = ACTIONS(3646), + [anon_sym_private] = ACTIONS(3646), + [anon_sym_protected] = ACTIONS(3646), + [anon_sym_override] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_any] = ACTIONS(3646), + [anon_sym_number] = ACTIONS(3646), + [anon_sym_boolean] = ACTIONS(3646), + [anon_sym_string] = ACTIONS(3646), + [anon_sym_symbol] = ACTIONS(3646), + [anon_sym_object] = ACTIONS(3646), + [anon_sym_property] = ACTIONS(3646), + [anon_sym_signal] = ACTIONS(3646), + [anon_sym_on] = ACTIONS(3646), + [anon_sym_required] = ACTIONS(3646), + [anon_sym_component] = ACTIONS(3646), + [anon_sym_abstract] = ACTIONS(3646), + [anon_sym_interface] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), + [sym_html_comment] = ACTIONS(5), + }, + [1703] = { + [sym_comment] = STATE(1703), + [sym_identifier] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_typeof] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_from] = ACTIONS(3646), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_var] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_await] = ACTIONS(3646), + [anon_sym_of] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_debugger] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LTtemplate_GT] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_async] = ACTIONS(3646), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_SLASH] = ACTIONS(3646), + [anon_sym_LT] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_void] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3646), + [sym_number] = ACTIONS(3646), + [sym_private_property_identifier] = ACTIONS(3646), + [sym_this] = ACTIONS(3646), + [sym_super] = ACTIONS(3646), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [sym_null] = ACTIONS(3646), + [sym_undefined] = ACTIONS(3646), + [anon_sym_AT] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_readonly] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(3646), + [anon_sym_set] = ACTIONS(3646), + [anon_sym_declare] = ACTIONS(3646), + [anon_sym_public] = ACTIONS(3646), + [anon_sym_private] = ACTIONS(3646), + [anon_sym_protected] = ACTIONS(3646), + [anon_sym_override] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_any] = ACTIONS(3646), + [anon_sym_number] = ACTIONS(3646), + [anon_sym_boolean] = ACTIONS(3646), + [anon_sym_string] = ACTIONS(3646), + [anon_sym_symbol] = ACTIONS(3646), + [anon_sym_object] = ACTIONS(3646), + [anon_sym_property] = ACTIONS(3646), + [anon_sym_signal] = ACTIONS(3646), + [anon_sym_on] = ACTIONS(3646), + [anon_sym_required] = ACTIONS(3646), + [anon_sym_component] = ACTIONS(3646), + [anon_sym_abstract] = ACTIONS(3646), + [anon_sym_interface] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), + [sym_html_comment] = ACTIONS(5), + }, + [1704] = { + [sym_comment] = STATE(1704), + [sym_identifier] = ACTIONS(3644), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_type] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_typeof] = ACTIONS(3644), + [anon_sym_import] = ACTIONS(3644), + [anon_sym_from] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [anon_sym_var] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_await] = ACTIONS(3644), + [anon_sym_of] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_debugger] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_LTtemplate_GT] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [anon_sym_SQUOTE] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_async] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [anon_sym_void] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3644), + [sym_number] = ACTIONS(3644), + [sym_private_property_identifier] = ACTIONS(3644), + [sym_this] = ACTIONS(3644), + [sym_super] = ACTIONS(3644), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [sym_null] = ACTIONS(3644), + [sym_undefined] = ACTIONS(3644), + [anon_sym_AT] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_readonly] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(3644), + [anon_sym_set] = ACTIONS(3644), + [anon_sym_declare] = ACTIONS(3644), + [anon_sym_public] = ACTIONS(3644), + [anon_sym_private] = ACTIONS(3644), + [anon_sym_protected] = ACTIONS(3644), + [anon_sym_override] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_any] = ACTIONS(3644), + [anon_sym_number] = ACTIONS(3644), + [anon_sym_boolean] = ACTIONS(3644), + [anon_sym_string] = ACTIONS(3644), + [anon_sym_symbol] = ACTIONS(3644), + [anon_sym_object] = ACTIONS(3644), + [anon_sym_property] = ACTIONS(3644), + [anon_sym_signal] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_required] = ACTIONS(3644), + [anon_sym_component] = ACTIONS(3644), + [anon_sym_abstract] = ACTIONS(3644), + [anon_sym_interface] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [sym_html_comment] = ACTIONS(5), + }, + [1705] = { + [sym_comment] = STATE(1705), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1706] = { + [sym_comment] = STATE(1706), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1707] = { + [sym_comment] = STATE(1707), + [sym_identifier] = ACTIONS(3680), + [anon_sym_export] = ACTIONS(3680), + [anon_sym_type] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_typeof] = ACTIONS(3680), + [anon_sym_import] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_await] = ACTIONS(3680), + [anon_sym_of] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_debugger] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LTtemplate_GT] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_async] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_void] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3680), + [sym_number] = ACTIONS(3680), + [sym_private_property_identifier] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [sym_super] = ACTIONS(3680), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [sym_null] = ACTIONS(3680), + [sym_undefined] = ACTIONS(3680), + [anon_sym_AT] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_readonly] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(3680), + [anon_sym_set] = ACTIONS(3680), + [anon_sym_declare] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_override] = ACTIONS(3680), + [anon_sym_module] = ACTIONS(3680), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_property] = ACTIONS(3680), + [anon_sym_signal] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_required] = ACTIONS(3680), + [anon_sym_component] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3680), + [anon_sym_interface] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), + [sym_html_comment] = ACTIONS(5), + }, + [1708] = { + [sym_comment] = STATE(1708), + [sym_identifier] = ACTIONS(3682), + [anon_sym_export] = ACTIONS(3682), + [anon_sym_type] = ACTIONS(3682), + [anon_sym_namespace] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym_typeof] = ACTIONS(3682), + [anon_sym_import] = ACTIONS(3682), + [anon_sym_from] = ACTIONS(3682), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_var] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_switch] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_await] = ACTIONS(3682), + [anon_sym_of] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_break] = ACTIONS(3682), + [anon_sym_continue] = ACTIONS(3682), + [anon_sym_debugger] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_throw] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LTtemplate_GT] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_class] = ACTIONS(3682), + [anon_sym_async] = ACTIONS(3682), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_SLASH] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_void] = ACTIONS(3682), + [anon_sym_delete] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3682), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3682), + [sym_private_property_identifier] = ACTIONS(3682), + [sym_this] = ACTIONS(3682), + [sym_super] = ACTIONS(3682), + [sym_true] = ACTIONS(3682), + [sym_false] = ACTIONS(3682), + [sym_null] = ACTIONS(3682), + [sym_undefined] = ACTIONS(3682), + [anon_sym_AT] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_get] = ACTIONS(3682), + [anon_sym_set] = ACTIONS(3682), + [anon_sym_declare] = ACTIONS(3682), + [anon_sym_public] = ACTIONS(3682), + [anon_sym_private] = ACTIONS(3682), + [anon_sym_protected] = ACTIONS(3682), + [anon_sym_override] = ACTIONS(3682), + [anon_sym_module] = ACTIONS(3682), + [anon_sym_any] = ACTIONS(3682), + [anon_sym_number] = ACTIONS(3682), + [anon_sym_boolean] = ACTIONS(3682), + [anon_sym_string] = ACTIONS(3682), + [anon_sym_symbol] = ACTIONS(3682), + [anon_sym_object] = ACTIONS(3682), + [anon_sym_property] = ACTIONS(3682), + [anon_sym_signal] = ACTIONS(3682), + [anon_sym_on] = ACTIONS(3682), + [anon_sym_required] = ACTIONS(3682), + [anon_sym_component] = ACTIONS(3682), + [anon_sym_abstract] = ACTIONS(3682), + [anon_sym_interface] = ACTIONS(3682), + [anon_sym_enum] = ACTIONS(3682), + [sym_html_comment] = ACTIONS(5), + }, + [1709] = { + [sym_comment] = STATE(1709), + [sym_identifier] = ACTIONS(3648), + [anon_sym_export] = ACTIONS(3648), + [anon_sym_type] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3648), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_typeof] = ACTIONS(3648), + [anon_sym_import] = ACTIONS(3648), + [anon_sym_from] = ACTIONS(3648), + [anon_sym_with] = ACTIONS(3648), + [anon_sym_var] = ACTIONS(3648), + [anon_sym_let] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3648), + [anon_sym_await] = ACTIONS(3648), + [anon_sym_of] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_debugger] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_LTtemplate_GT] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3648), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_async] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_SLASH] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3648), + [anon_sym_void] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_PLUS_PLUS] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3648), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3648), + [sym_number] = ACTIONS(3648), + [sym_private_property_identifier] = ACTIONS(3648), + [sym_this] = ACTIONS(3648), + [sym_super] = ACTIONS(3648), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [sym_null] = ACTIONS(3648), + [sym_undefined] = ACTIONS(3648), + [anon_sym_AT] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_readonly] = ACTIONS(3648), + [anon_sym_get] = ACTIONS(3648), + [anon_sym_set] = ACTIONS(3648), + [anon_sym_declare] = ACTIONS(3648), + [anon_sym_public] = ACTIONS(3648), + [anon_sym_private] = ACTIONS(3648), + [anon_sym_protected] = ACTIONS(3648), + [anon_sym_override] = ACTIONS(3648), + [anon_sym_module] = ACTIONS(3648), + [anon_sym_any] = ACTIONS(3648), + [anon_sym_number] = ACTIONS(3648), + [anon_sym_boolean] = ACTIONS(3648), + [anon_sym_string] = ACTIONS(3648), + [anon_sym_symbol] = ACTIONS(3648), + [anon_sym_object] = ACTIONS(3648), + [anon_sym_property] = ACTIONS(3648), + [anon_sym_signal] = ACTIONS(3648), + [anon_sym_on] = ACTIONS(3648), + [anon_sym_required] = ACTIONS(3648), + [anon_sym_component] = ACTIONS(3648), + [anon_sym_abstract] = ACTIONS(3648), + [anon_sym_interface] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [sym_html_comment] = ACTIONS(5), + }, + [1710] = { + [sym_comment] = STATE(1710), + [sym_identifier] = ACTIONS(3548), + [anon_sym_export] = ACTIONS(3548), + [anon_sym_type] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3548), + [anon_sym_RBRACE] = ACTIONS(3548), + [anon_sym_typeof] = ACTIONS(3548), + [anon_sym_import] = ACTIONS(3548), + [anon_sym_from] = ACTIONS(3548), + [anon_sym_with] = ACTIONS(3548), + [anon_sym_var] = ACTIONS(3548), + [anon_sym_let] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_BANG] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(3548), + [anon_sym_await] = ACTIONS(3548), + [anon_sym_of] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_debugger] = ACTIONS(3548), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3548), + [anon_sym_yield] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_LTtemplate_GT] = ACTIONS(3548), + [anon_sym_DQUOTE] = ACTIONS(3548), + [anon_sym_SQUOTE] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_async] = ACTIONS(3548), + [anon_sym_function] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_using] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_LT] = ACTIONS(3548), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_void] = ACTIONS(3548), + [anon_sym_delete] = ACTIONS(3548), + [anon_sym_PLUS_PLUS] = ACTIONS(3548), + [anon_sym_DASH_DASH] = ACTIONS(3548), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3548), + [sym_number] = ACTIONS(3548), + [sym_private_property_identifier] = ACTIONS(3548), + [sym_this] = ACTIONS(3548), + [sym_super] = ACTIONS(3548), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [sym_null] = ACTIONS(3548), + [sym_undefined] = ACTIONS(3548), + [anon_sym_AT] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_readonly] = ACTIONS(3548), + [anon_sym_get] = ACTIONS(3548), + [anon_sym_set] = ACTIONS(3548), + [anon_sym_declare] = ACTIONS(3548), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_override] = ACTIONS(3548), + [anon_sym_module] = ACTIONS(3548), + [anon_sym_any] = ACTIONS(3548), + [anon_sym_number] = ACTIONS(3548), + [anon_sym_boolean] = ACTIONS(3548), + [anon_sym_string] = ACTIONS(3548), + [anon_sym_symbol] = ACTIONS(3548), + [anon_sym_object] = ACTIONS(3548), + [anon_sym_property] = ACTIONS(3548), + [anon_sym_signal] = ACTIONS(3548), + [anon_sym_on] = ACTIONS(3548), + [anon_sym_required] = ACTIONS(3548), + [anon_sym_component] = ACTIONS(3548), + [anon_sym_abstract] = ACTIONS(3548), + [anon_sym_interface] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), + [sym_html_comment] = ACTIONS(5), + }, + [1711] = { + [sym_comment] = STATE(1711), + [sym_identifier] = ACTIONS(3686), + [anon_sym_export] = ACTIONS(3686), + [anon_sym_type] = ACTIONS(3686), + [anon_sym_namespace] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_typeof] = ACTIONS(3686), + [anon_sym_import] = ACTIONS(3686), + [anon_sym_from] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [anon_sym_var] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_const] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_await] = ACTIONS(3686), + [anon_sym_of] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_break] = ACTIONS(3686), + [anon_sym_continue] = ACTIONS(3686), + [anon_sym_debugger] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_throw] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LTtemplate_GT] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_class] = ACTIONS(3686), + [anon_sym_async] = ACTIONS(3686), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_using] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_void] = ACTIONS(3686), + [anon_sym_delete] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3686), + [sym_number] = ACTIONS(3686), + [sym_private_property_identifier] = ACTIONS(3686), + [sym_this] = ACTIONS(3686), + [sym_super] = ACTIONS(3686), + [sym_true] = ACTIONS(3686), + [sym_false] = ACTIONS(3686), + [sym_null] = ACTIONS(3686), + [sym_undefined] = ACTIONS(3686), + [anon_sym_AT] = ACTIONS(3686), + [anon_sym_static] = ACTIONS(3686), + [anon_sym_readonly] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(3686), + [anon_sym_set] = ACTIONS(3686), + [anon_sym_declare] = ACTIONS(3686), + [anon_sym_public] = ACTIONS(3686), + [anon_sym_private] = ACTIONS(3686), + [anon_sym_protected] = ACTIONS(3686), + [anon_sym_override] = ACTIONS(3686), + [anon_sym_module] = ACTIONS(3686), + [anon_sym_any] = ACTIONS(3686), + [anon_sym_number] = ACTIONS(3686), + [anon_sym_boolean] = ACTIONS(3686), + [anon_sym_string] = ACTIONS(3686), + [anon_sym_symbol] = ACTIONS(3686), + [anon_sym_object] = ACTIONS(3686), + [anon_sym_property] = ACTIONS(3686), + [anon_sym_signal] = ACTIONS(3686), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_required] = ACTIONS(3686), + [anon_sym_component] = ACTIONS(3686), + [anon_sym_abstract] = ACTIONS(3686), + [anon_sym_interface] = ACTIONS(3686), + [anon_sym_enum] = ACTIONS(3686), + [sym_html_comment] = ACTIONS(5), + }, + [1712] = { + [sym_comment] = STATE(1712), + [sym_identifier] = ACTIONS(3694), + [anon_sym_export] = ACTIONS(3694), + [anon_sym_type] = ACTIONS(3694), + [anon_sym_namespace] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_typeof] = ACTIONS(3694), + [anon_sym_import] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3694), + [anon_sym_let] = ACTIONS(3694), + [anon_sym_const] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3694), + [anon_sym_if] = ACTIONS(3694), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_await] = ACTIONS(3694), + [anon_sym_of] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3694), + [anon_sym_do] = ACTIONS(3694), + [anon_sym_try] = ACTIONS(3694), + [anon_sym_break] = ACTIONS(3694), + [anon_sym_continue] = ACTIONS(3694), + [anon_sym_debugger] = ACTIONS(3694), + [anon_sym_return] = ACTIONS(3694), + [anon_sym_throw] = ACTIONS(3694), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LTtemplate_GT] = ACTIONS(3694), + [anon_sym_DQUOTE] = ACTIONS(3694), + [anon_sym_SQUOTE] = ACTIONS(3694), + [anon_sym_class] = ACTIONS(3694), + [anon_sym_async] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3694), + [anon_sym_using] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_SLASH] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_TILDE] = ACTIONS(3694), + [anon_sym_void] = ACTIONS(3694), + [anon_sym_delete] = ACTIONS(3694), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3694), + [sym_number] = ACTIONS(3694), + [sym_private_property_identifier] = ACTIONS(3694), + [sym_this] = ACTIONS(3694), + [sym_super] = ACTIONS(3694), + [sym_true] = ACTIONS(3694), + [sym_false] = ACTIONS(3694), + [sym_null] = ACTIONS(3694), + [sym_undefined] = ACTIONS(3694), + [anon_sym_AT] = ACTIONS(3694), + [anon_sym_static] = ACTIONS(3694), + [anon_sym_readonly] = ACTIONS(3694), + [anon_sym_get] = ACTIONS(3694), + [anon_sym_set] = ACTIONS(3694), + [anon_sym_declare] = ACTIONS(3694), + [anon_sym_public] = ACTIONS(3694), + [anon_sym_private] = ACTIONS(3694), + [anon_sym_protected] = ACTIONS(3694), + [anon_sym_override] = ACTIONS(3694), + [anon_sym_module] = ACTIONS(3694), + [anon_sym_any] = ACTIONS(3694), + [anon_sym_number] = ACTIONS(3694), + [anon_sym_boolean] = ACTIONS(3694), + [anon_sym_string] = ACTIONS(3694), + [anon_sym_symbol] = ACTIONS(3694), + [anon_sym_object] = ACTIONS(3694), + [anon_sym_property] = ACTIONS(3694), + [anon_sym_signal] = ACTIONS(3694), + [anon_sym_on] = ACTIONS(3694), + [anon_sym_required] = ACTIONS(3694), + [anon_sym_component] = ACTIONS(3694), + [anon_sym_abstract] = ACTIONS(3694), + [anon_sym_interface] = ACTIONS(3694), + [anon_sym_enum] = ACTIONS(3694), + [sym_html_comment] = ACTIONS(5), + }, + [1713] = { + [sym_comment] = STATE(1713), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_from] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_of] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_LTtemplate_GT] = ACTIONS(2456), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), + [anon_sym_PLUS_PLUS] = ACTIONS(2456), + [anon_sym_DASH_DASH] = ACTIONS(2456), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_number] = ACTIONS(2456), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_property] = ACTIONS(2456), + [anon_sym_signal] = ACTIONS(2456), + [anon_sym_on] = ACTIONS(2456), + [anon_sym_required] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym_html_comment] = ACTIONS(5), + }, + [1714] = { + [sym_comment] = STATE(1714), + [sym_identifier] = ACTIONS(3668), + [anon_sym_export] = ACTIONS(3668), + [anon_sym_type] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_typeof] = ACTIONS(3668), + [anon_sym_import] = ACTIONS(3668), + [anon_sym_from] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [anon_sym_var] = ACTIONS(3668), + [anon_sym_let] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_await] = ACTIONS(3668), + [anon_sym_of] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_debugger] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_yield] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_LTtemplate_GT] = ACTIONS(3668), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_async] = ACTIONS(3668), + [anon_sym_function] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_void] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3668), + [sym_number] = ACTIONS(3668), + [sym_private_property_identifier] = ACTIONS(3668), + [sym_this] = ACTIONS(3668), + [sym_super] = ACTIONS(3668), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [sym_null] = ACTIONS(3668), + [sym_undefined] = ACTIONS(3668), + [anon_sym_AT] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_readonly] = ACTIONS(3668), + [anon_sym_get] = ACTIONS(3668), + [anon_sym_set] = ACTIONS(3668), + [anon_sym_declare] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_override] = ACTIONS(3668), + [anon_sym_module] = ACTIONS(3668), + [anon_sym_any] = ACTIONS(3668), + [anon_sym_number] = ACTIONS(3668), + [anon_sym_boolean] = ACTIONS(3668), + [anon_sym_string] = ACTIONS(3668), + [anon_sym_symbol] = ACTIONS(3668), + [anon_sym_object] = ACTIONS(3668), + [anon_sym_property] = ACTIONS(3668), + [anon_sym_signal] = ACTIONS(3668), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_required] = ACTIONS(3668), + [anon_sym_component] = ACTIONS(3668), + [anon_sym_abstract] = ACTIONS(3668), + [anon_sym_interface] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [sym_html_comment] = ACTIONS(5), + }, + [1715] = { + [sym_comment] = STATE(1715), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1716] = { + [sym_comment] = STATE(1716), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1717] = { + [sym_comment] = STATE(1717), + [sym_identifier] = ACTIONS(3514), + [anon_sym_export] = ACTIONS(3514), + [anon_sym_type] = ACTIONS(3514), + [anon_sym_namespace] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_RBRACE] = ACTIONS(3514), + [anon_sym_typeof] = ACTIONS(3514), + [anon_sym_import] = ACTIONS(3514), + [anon_sym_from] = ACTIONS(3514), + [anon_sym_with] = ACTIONS(3514), + [anon_sym_var] = ACTIONS(3514), + [anon_sym_let] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3514), + [anon_sym_switch] = ACTIONS(3514), + [anon_sym_for] = ACTIONS(3514), + [anon_sym_LPAREN] = ACTIONS(3514), + [anon_sym_await] = ACTIONS(3514), + [anon_sym_of] = ACTIONS(3514), + [anon_sym_while] = ACTIONS(3514), + [anon_sym_do] = ACTIONS(3514), + [anon_sym_try] = ACTIONS(3514), + [anon_sym_break] = ACTIONS(3514), + [anon_sym_continue] = ACTIONS(3514), + [anon_sym_debugger] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3514), + [anon_sym_throw] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3514), + [anon_sym_yield] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_LTtemplate_GT] = ACTIONS(3514), + [anon_sym_DQUOTE] = ACTIONS(3514), + [anon_sym_SQUOTE] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_async] = ACTIONS(3514), + [anon_sym_function] = ACTIONS(3514), + [anon_sym_new] = ACTIONS(3514), + [anon_sym_using] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_SLASH] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_void] = ACTIONS(3514), + [anon_sym_delete] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3514), + [sym_number] = ACTIONS(3514), + [sym_private_property_identifier] = ACTIONS(3514), + [sym_this] = ACTIONS(3514), + [sym_super] = ACTIONS(3514), + [sym_true] = ACTIONS(3514), + [sym_false] = ACTIONS(3514), + [sym_null] = ACTIONS(3514), + [sym_undefined] = ACTIONS(3514), + [anon_sym_AT] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_readonly] = ACTIONS(3514), + [anon_sym_get] = ACTIONS(3514), + [anon_sym_set] = ACTIONS(3514), + [anon_sym_declare] = ACTIONS(3514), + [anon_sym_public] = ACTIONS(3514), + [anon_sym_private] = ACTIONS(3514), + [anon_sym_protected] = ACTIONS(3514), + [anon_sym_override] = ACTIONS(3514), + [anon_sym_module] = ACTIONS(3514), + [anon_sym_any] = ACTIONS(3514), + [anon_sym_number] = ACTIONS(3514), + [anon_sym_boolean] = ACTIONS(3514), + [anon_sym_string] = ACTIONS(3514), + [anon_sym_symbol] = ACTIONS(3514), + [anon_sym_object] = ACTIONS(3514), + [anon_sym_property] = ACTIONS(3514), + [anon_sym_signal] = ACTIONS(3514), + [anon_sym_on] = ACTIONS(3514), + [anon_sym_required] = ACTIONS(3514), + [anon_sym_component] = ACTIONS(3514), + [anon_sym_abstract] = ACTIONS(3514), + [anon_sym_interface] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), + [sym_html_comment] = ACTIONS(5), + }, + [1718] = { + [sym_comment] = STATE(1718), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1719] = { + [sym_comment] = STATE(1719), + [sym_identifier] = ACTIONS(3596), + [anon_sym_export] = ACTIONS(3596), + [anon_sym_type] = ACTIONS(3596), + [anon_sym_namespace] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3596), + [anon_sym_RBRACE] = ACTIONS(3596), + [anon_sym_typeof] = ACTIONS(3596), + [anon_sym_import] = ACTIONS(3596), + [anon_sym_from] = ACTIONS(3596), + [anon_sym_with] = ACTIONS(3596), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_let] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_LPAREN] = ACTIONS(3596), + [anon_sym_await] = ACTIONS(3596), + [anon_sym_of] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_debugger] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_LTtemplate_GT] = ACTIONS(3596), + [anon_sym_DQUOTE] = ACTIONS(3596), + [anon_sym_SQUOTE] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_async] = ACTIONS(3596), + [anon_sym_function] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_SLASH] = ACTIONS(3596), + [anon_sym_LT] = ACTIONS(3596), + [anon_sym_TILDE] = ACTIONS(3596), + [anon_sym_void] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_PLUS_PLUS] = ACTIONS(3596), + [anon_sym_DASH_DASH] = ACTIONS(3596), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3596), + [sym_number] = ACTIONS(3596), + [sym_private_property_identifier] = ACTIONS(3596), + [sym_this] = ACTIONS(3596), + [sym_super] = ACTIONS(3596), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [sym_null] = ACTIONS(3596), + [sym_undefined] = ACTIONS(3596), + [anon_sym_AT] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_readonly] = ACTIONS(3596), + [anon_sym_get] = ACTIONS(3596), + [anon_sym_set] = ACTIONS(3596), + [anon_sym_declare] = ACTIONS(3596), + [anon_sym_public] = ACTIONS(3596), + [anon_sym_private] = ACTIONS(3596), + [anon_sym_protected] = ACTIONS(3596), + [anon_sym_override] = ACTIONS(3596), + [anon_sym_module] = ACTIONS(3596), + [anon_sym_any] = ACTIONS(3596), + [anon_sym_number] = ACTIONS(3596), + [anon_sym_boolean] = ACTIONS(3596), + [anon_sym_string] = ACTIONS(3596), + [anon_sym_symbol] = ACTIONS(3596), + [anon_sym_object] = ACTIONS(3596), + [anon_sym_property] = ACTIONS(3596), + [anon_sym_signal] = ACTIONS(3596), + [anon_sym_on] = ACTIONS(3596), + [anon_sym_required] = ACTIONS(3596), + [anon_sym_component] = ACTIONS(3596), + [anon_sym_abstract] = ACTIONS(3596), + [anon_sym_interface] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [sym_html_comment] = ACTIONS(5), + }, + [1720] = { + [sym_comment] = STATE(1720), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1721] = { + [sym_comment] = STATE(1721), + [sym_identifier] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_type] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_typeof] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_from] = ACTIONS(3624), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_var] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_await] = ACTIONS(3624), + [anon_sym_of] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_debugger] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LTtemplate_GT] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_async] = ACTIONS(3624), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_SLASH] = ACTIONS(3624), + [anon_sym_LT] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_void] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3624), + [sym_number] = ACTIONS(3624), + [sym_private_property_identifier] = ACTIONS(3624), + [sym_this] = ACTIONS(3624), + [sym_super] = ACTIONS(3624), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [sym_null] = ACTIONS(3624), + [sym_undefined] = ACTIONS(3624), + [anon_sym_AT] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_readonly] = ACTIONS(3624), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3624), + [anon_sym_declare] = ACTIONS(3624), + [anon_sym_public] = ACTIONS(3624), + [anon_sym_private] = ACTIONS(3624), + [anon_sym_protected] = ACTIONS(3624), + [anon_sym_override] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_any] = ACTIONS(3624), + [anon_sym_number] = ACTIONS(3624), + [anon_sym_boolean] = ACTIONS(3624), + [anon_sym_string] = ACTIONS(3624), + [anon_sym_symbol] = ACTIONS(3624), + [anon_sym_object] = ACTIONS(3624), + [anon_sym_property] = ACTIONS(3624), + [anon_sym_signal] = ACTIONS(3624), + [anon_sym_on] = ACTIONS(3624), + [anon_sym_required] = ACTIONS(3624), + [anon_sym_component] = ACTIONS(3624), + [anon_sym_abstract] = ACTIONS(3624), + [anon_sym_interface] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), + [sym_html_comment] = ACTIONS(5), + }, + [1722] = { + [sym_comment] = STATE(1722), + [sym_identifier] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_type] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_typeof] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_from] = ACTIONS(3624), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_var] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_await] = ACTIONS(3624), + [anon_sym_of] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_debugger] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LTtemplate_GT] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_async] = ACTIONS(3624), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_SLASH] = ACTIONS(3624), + [anon_sym_LT] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_void] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3624), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3624), + [sym_number] = ACTIONS(3624), + [sym_private_property_identifier] = ACTIONS(3624), + [sym_this] = ACTIONS(3624), + [sym_super] = ACTIONS(3624), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [sym_null] = ACTIONS(3624), + [sym_undefined] = ACTIONS(3624), + [anon_sym_AT] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_readonly] = ACTIONS(3624), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3624), + [anon_sym_declare] = ACTIONS(3624), + [anon_sym_public] = ACTIONS(3624), + [anon_sym_private] = ACTIONS(3624), + [anon_sym_protected] = ACTIONS(3624), + [anon_sym_override] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_any] = ACTIONS(3624), + [anon_sym_number] = ACTIONS(3624), + [anon_sym_boolean] = ACTIONS(3624), + [anon_sym_string] = ACTIONS(3624), + [anon_sym_symbol] = ACTIONS(3624), + [anon_sym_object] = ACTIONS(3624), + [anon_sym_property] = ACTIONS(3624), + [anon_sym_signal] = ACTIONS(3624), + [anon_sym_on] = ACTIONS(3624), + [anon_sym_required] = ACTIONS(3624), + [anon_sym_component] = ACTIONS(3624), + [anon_sym_abstract] = ACTIONS(3624), + [anon_sym_interface] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), + [sym_html_comment] = ACTIONS(5), + }, + [1723] = { + [sym_comment] = STATE(1723), + [sym_identifier] = ACTIONS(3566), + [anon_sym_export] = ACTIONS(3566), + [anon_sym_type] = ACTIONS(3566), + [anon_sym_namespace] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_RBRACE] = ACTIONS(3566), + [anon_sym_typeof] = ACTIONS(3566), + [anon_sym_import] = ACTIONS(3566), + [anon_sym_from] = ACTIONS(3566), + [anon_sym_with] = ACTIONS(3566), + [anon_sym_var] = ACTIONS(3566), + [anon_sym_let] = ACTIONS(3566), + [anon_sym_const] = ACTIONS(3566), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_if] = ACTIONS(3566), + [anon_sym_switch] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_await] = ACTIONS(3566), + [anon_sym_of] = ACTIONS(3566), + [anon_sym_while] = ACTIONS(3566), + [anon_sym_do] = ACTIONS(3566), + [anon_sym_try] = ACTIONS(3566), + [anon_sym_break] = ACTIONS(3566), + [anon_sym_continue] = ACTIONS(3566), + [anon_sym_debugger] = ACTIONS(3566), + [anon_sym_return] = ACTIONS(3566), + [anon_sym_throw] = ACTIONS(3566), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3566), + [anon_sym_LBRACK] = ACTIONS(3566), + [anon_sym_LTtemplate_GT] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [anon_sym_SQUOTE] = ACTIONS(3566), + [anon_sym_class] = ACTIONS(3566), + [anon_sym_async] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3566), + [anon_sym_using] = ACTIONS(3566), + [anon_sym_PLUS] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3566), + [anon_sym_SLASH] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_TILDE] = ACTIONS(3566), + [anon_sym_void] = ACTIONS(3566), + [anon_sym_delete] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3566), + [sym_number] = ACTIONS(3566), + [sym_private_property_identifier] = ACTIONS(3566), + [sym_this] = ACTIONS(3566), + [sym_super] = ACTIONS(3566), + [sym_true] = ACTIONS(3566), + [sym_false] = ACTIONS(3566), + [sym_null] = ACTIONS(3566), + [sym_undefined] = ACTIONS(3566), + [anon_sym_AT] = ACTIONS(3566), + [anon_sym_static] = ACTIONS(3566), + [anon_sym_readonly] = ACTIONS(3566), + [anon_sym_get] = ACTIONS(3566), + [anon_sym_set] = ACTIONS(3566), + [anon_sym_declare] = ACTIONS(3566), + [anon_sym_public] = ACTIONS(3566), + [anon_sym_private] = ACTIONS(3566), + [anon_sym_protected] = ACTIONS(3566), + [anon_sym_override] = ACTIONS(3566), + [anon_sym_module] = ACTIONS(3566), + [anon_sym_any] = ACTIONS(3566), + [anon_sym_number] = ACTIONS(3566), + [anon_sym_boolean] = ACTIONS(3566), + [anon_sym_string] = ACTIONS(3566), + [anon_sym_symbol] = ACTIONS(3566), + [anon_sym_object] = ACTIONS(3566), + [anon_sym_property] = ACTIONS(3566), + [anon_sym_signal] = ACTIONS(3566), + [anon_sym_on] = ACTIONS(3566), + [anon_sym_required] = ACTIONS(3566), + [anon_sym_component] = ACTIONS(3566), + [anon_sym_abstract] = ACTIONS(3566), + [anon_sym_interface] = ACTIONS(3566), + [anon_sym_enum] = ACTIONS(3566), + [sym_html_comment] = ACTIONS(5), + }, + [1724] = { + [sym_comment] = STATE(1724), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [sym_html_comment] = ACTIONS(5), + }, + [1725] = { + [sym_comment] = STATE(1725), + [sym_identifier] = ACTIONS(3620), + [anon_sym_export] = ACTIONS(3620), + [anon_sym_type] = ACTIONS(3620), + [anon_sym_namespace] = ACTIONS(3620), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_typeof] = ACTIONS(3620), + [anon_sym_import] = ACTIONS(3620), + [anon_sym_from] = ACTIONS(3620), + [anon_sym_with] = ACTIONS(3620), + [anon_sym_var] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_const] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_switch] = ACTIONS(3620), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_await] = ACTIONS(3620), + [anon_sym_of] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_break] = ACTIONS(3620), + [anon_sym_continue] = ACTIONS(3620), + [anon_sym_debugger] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_throw] = ACTIONS(3620), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LTtemplate_GT] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_class] = ACTIONS(3620), + [anon_sym_async] = ACTIONS(3620), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_using] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_SLASH] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_void] = ACTIONS(3620), + [anon_sym_delete] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3620), + [sym_number] = ACTIONS(3620), + [sym_private_property_identifier] = ACTIONS(3620), + [sym_this] = ACTIONS(3620), + [sym_super] = ACTIONS(3620), + [sym_true] = ACTIONS(3620), + [sym_false] = ACTIONS(3620), + [sym_null] = ACTIONS(3620), + [sym_undefined] = ACTIONS(3620), + [anon_sym_AT] = ACTIONS(3620), + [anon_sym_static] = ACTIONS(3620), + [anon_sym_readonly] = ACTIONS(3620), + [anon_sym_get] = ACTIONS(3620), + [anon_sym_set] = ACTIONS(3620), + [anon_sym_declare] = ACTIONS(3620), + [anon_sym_public] = ACTIONS(3620), + [anon_sym_private] = ACTIONS(3620), + [anon_sym_protected] = ACTIONS(3620), + [anon_sym_override] = ACTIONS(3620), + [anon_sym_module] = ACTIONS(3620), + [anon_sym_any] = ACTIONS(3620), + [anon_sym_number] = ACTIONS(3620), + [anon_sym_boolean] = ACTIONS(3620), + [anon_sym_string] = ACTIONS(3620), + [anon_sym_symbol] = ACTIONS(3620), + [anon_sym_object] = ACTIONS(3620), + [anon_sym_property] = ACTIONS(3620), + [anon_sym_signal] = ACTIONS(3620), + [anon_sym_on] = ACTIONS(3620), + [anon_sym_required] = ACTIONS(3620), + [anon_sym_component] = ACTIONS(3620), + [anon_sym_abstract] = ACTIONS(3620), + [anon_sym_interface] = ACTIONS(3620), + [anon_sym_enum] = ACTIONS(3620), + [sym_html_comment] = ACTIONS(5), + }, + [1726] = { + [sym_comment] = STATE(1726), + [sym_identifier] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_type] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_typeof] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_from] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3600), + [anon_sym_var] = ACTIONS(3600), + [anon_sym_let] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_await] = ACTIONS(3600), + [anon_sym_of] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_debugger] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LTtemplate_GT] = ACTIONS(3600), + [anon_sym_DQUOTE] = ACTIONS(3600), + [anon_sym_SQUOTE] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_async] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_TILDE] = ACTIONS(3600), + [anon_sym_void] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3600), + [sym_number] = ACTIONS(3600), + [sym_private_property_identifier] = ACTIONS(3600), + [sym_this] = ACTIONS(3600), + [sym_super] = ACTIONS(3600), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [sym_null] = ACTIONS(3600), + [sym_undefined] = ACTIONS(3600), + [anon_sym_AT] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_readonly] = ACTIONS(3600), + [anon_sym_get] = ACTIONS(3600), + [anon_sym_set] = ACTIONS(3600), + [anon_sym_declare] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_override] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_any] = ACTIONS(3600), + [anon_sym_number] = ACTIONS(3600), + [anon_sym_boolean] = ACTIONS(3600), + [anon_sym_string] = ACTIONS(3600), + [anon_sym_symbol] = ACTIONS(3600), + [anon_sym_object] = ACTIONS(3600), + [anon_sym_property] = ACTIONS(3600), + [anon_sym_signal] = ACTIONS(3600), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_required] = ACTIONS(3600), + [anon_sym_component] = ACTIONS(3600), + [anon_sym_abstract] = ACTIONS(3600), + [anon_sym_interface] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [sym_html_comment] = ACTIONS(5), + }, + [1727] = { + [sym_comment] = STATE(1727), + [sym_identifier] = ACTIONS(3592), + [anon_sym_export] = ACTIONS(3592), + [anon_sym_type] = ACTIONS(3592), + [anon_sym_namespace] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_RBRACE] = ACTIONS(3592), + [anon_sym_typeof] = ACTIONS(3592), + [anon_sym_import] = ACTIONS(3592), + [anon_sym_from] = ACTIONS(3592), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_var] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_BANG] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_await] = ACTIONS(3592), + [anon_sym_of] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_debugger] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_throw] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LTtemplate_GT] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(3592), + [anon_sym_class] = ACTIONS(3592), + [anon_sym_async] = ACTIONS(3592), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_using] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_SLASH] = ACTIONS(3592), + [anon_sym_LT] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3592), + [anon_sym_void] = ACTIONS(3592), + [anon_sym_delete] = ACTIONS(3592), + [anon_sym_PLUS_PLUS] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3592), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3592), + [sym_number] = ACTIONS(3592), + [sym_private_property_identifier] = ACTIONS(3592), + [sym_this] = ACTIONS(3592), + [sym_super] = ACTIONS(3592), + [sym_true] = ACTIONS(3592), + [sym_false] = ACTIONS(3592), + [sym_null] = ACTIONS(3592), + [sym_undefined] = ACTIONS(3592), + [anon_sym_AT] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3592), + [anon_sym_readonly] = ACTIONS(3592), + [anon_sym_get] = ACTIONS(3592), + [anon_sym_set] = ACTIONS(3592), + [anon_sym_declare] = ACTIONS(3592), + [anon_sym_public] = ACTIONS(3592), + [anon_sym_private] = ACTIONS(3592), + [anon_sym_protected] = ACTIONS(3592), + [anon_sym_override] = ACTIONS(3592), + [anon_sym_module] = ACTIONS(3592), + [anon_sym_any] = ACTIONS(3592), + [anon_sym_number] = ACTIONS(3592), + [anon_sym_boolean] = ACTIONS(3592), + [anon_sym_string] = ACTIONS(3592), + [anon_sym_symbol] = ACTIONS(3592), + [anon_sym_object] = ACTIONS(3592), + [anon_sym_property] = ACTIONS(3592), + [anon_sym_signal] = ACTIONS(3592), + [anon_sym_on] = ACTIONS(3592), + [anon_sym_required] = ACTIONS(3592), + [anon_sym_component] = ACTIONS(3592), + [anon_sym_abstract] = ACTIONS(3592), + [anon_sym_interface] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), + [sym_html_comment] = ACTIONS(5), + }, + [1728] = { + [sym_comment] = STATE(1728), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1729] = { + [sym_comment] = STATE(1729), [sym_identifier] = ACTIONS(2410), [anon_sym_export] = ACTIONS(2410), - [anon_sym_default] = ACTIONS(2410), [anon_sym_type] = ACTIONS(2410), [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2412), - [anon_sym_RBRACE] = ACTIONS(2412), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), [anon_sym_typeof] = ACTIONS(2410), [anon_sym_import] = ACTIONS(2410), [anon_sym_from] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), [anon_sym_var] = ACTIONS(2410), [anon_sym_let] = ACTIONS(2410), [anon_sym_const] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_else] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), [anon_sym_if] = ACTIONS(2410), [anon_sym_switch] = ACTIONS(2410), [anon_sym_for] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_LPAREN] = ACTIONS(2410), [anon_sym_await] = ACTIONS(2410), [anon_sym_of] = ACTIONS(2410), [anon_sym_while] = ACTIONS(2410), [anon_sym_do] = ACTIONS(2410), [anon_sym_try] = ACTIONS(2410), - [anon_sym_with] = ACTIONS(2410), [anon_sym_break] = ACTIONS(2410), [anon_sym_continue] = ACTIONS(2410), [anon_sym_debugger] = ACTIONS(2410), [anon_sym_return] = ACTIONS(2410), [anon_sym_throw] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_case] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), [anon_sym_yield] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2412), - [anon_sym_LTtemplate_GT] = ACTIONS(2412), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LTtemplate_GT] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), [anon_sym_class] = ACTIONS(2410), [anon_sym_async] = ACTIONS(2410), [anon_sym_function] = ACTIONS(2410), [anon_sym_new] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2410), [anon_sym_PLUS] = ACTIONS(2410), [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(2412), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), [anon_sym_void] = ACTIONS(2410), [anon_sym_delete] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2412), - [anon_sym_DASH_DASH] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2412), - [anon_sym_SQUOTE] = ACTIONS(2412), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2412), - [sym_number] = ACTIONS(2412), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_private_property_identifier] = ACTIONS(2410), [sym_this] = ACTIONS(2410), [sym_super] = ACTIONS(2410), [sym_true] = ACTIONS(2410), [sym_false] = ACTIONS(2410), [sym_null] = ACTIONS(2410), [sym_undefined] = ACTIONS(2410), - [anon_sym_AT] = ACTIONS(2412), + [anon_sym_AT] = ACTIONS(2410), [anon_sym_static] = ACTIONS(2410), [anon_sym_readonly] = ACTIONS(2410), [anon_sym_get] = ACTIONS(2410), @@ -98459,6 +222546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2410), [anon_sym_string] = ACTIONS(2410), [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), [anon_sym_property] = ACTIONS(2410), [anon_sym_signal] = ACTIONS(2410), [anon_sym_on] = ACTIONS(2410), @@ -98467,68 +222555,2331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2410), [anon_sym_interface] = ACTIONS(2410), [anon_sym_enum] = ACTIONS(2410), - }, - [727] = { + [sym_html_comment] = ACTIONS(5), + }, + [1730] = { + [sym_comment] = STATE(1730), + [sym_identifier] = ACTIONS(3586), + [anon_sym_export] = ACTIONS(3586), + [anon_sym_type] = ACTIONS(3586), + [anon_sym_namespace] = ACTIONS(3586), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_RBRACE] = ACTIONS(3586), + [anon_sym_typeof] = ACTIONS(3586), + [anon_sym_import] = ACTIONS(3586), + [anon_sym_from] = ACTIONS(3586), + [anon_sym_with] = ACTIONS(3586), + [anon_sym_var] = ACTIONS(3586), + [anon_sym_let] = ACTIONS(3586), + [anon_sym_const] = ACTIONS(3586), + [anon_sym_BANG] = ACTIONS(3586), + [anon_sym_if] = ACTIONS(3586), + [anon_sym_switch] = ACTIONS(3586), + [anon_sym_for] = ACTIONS(3586), + [anon_sym_LPAREN] = ACTIONS(3586), + [anon_sym_await] = ACTIONS(3586), + [anon_sym_of] = ACTIONS(3586), + [anon_sym_while] = ACTIONS(3586), + [anon_sym_do] = ACTIONS(3586), + [anon_sym_try] = ACTIONS(3586), + [anon_sym_break] = ACTIONS(3586), + [anon_sym_continue] = ACTIONS(3586), + [anon_sym_debugger] = ACTIONS(3586), + [anon_sym_return] = ACTIONS(3586), + [anon_sym_throw] = ACTIONS(3586), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_yield] = ACTIONS(3586), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LTtemplate_GT] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3586), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_class] = ACTIONS(3586), + [anon_sym_async] = ACTIONS(3586), + [anon_sym_function] = ACTIONS(3586), + [anon_sym_new] = ACTIONS(3586), + [anon_sym_using] = ACTIONS(3586), + [anon_sym_PLUS] = ACTIONS(3586), + [anon_sym_DASH] = ACTIONS(3586), + [anon_sym_SLASH] = ACTIONS(3586), + [anon_sym_LT] = ACTIONS(3586), + [anon_sym_TILDE] = ACTIONS(3586), + [anon_sym_void] = ACTIONS(3586), + [anon_sym_delete] = ACTIONS(3586), + [anon_sym_PLUS_PLUS] = ACTIONS(3586), + [anon_sym_DASH_DASH] = ACTIONS(3586), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3586), + [sym_number] = ACTIONS(3586), + [sym_private_property_identifier] = ACTIONS(3586), + [sym_this] = ACTIONS(3586), + [sym_super] = ACTIONS(3586), + [sym_true] = ACTIONS(3586), + [sym_false] = ACTIONS(3586), + [sym_null] = ACTIONS(3586), + [sym_undefined] = ACTIONS(3586), + [anon_sym_AT] = ACTIONS(3586), + [anon_sym_static] = ACTIONS(3586), + [anon_sym_readonly] = ACTIONS(3586), + [anon_sym_get] = ACTIONS(3586), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_declare] = ACTIONS(3586), + [anon_sym_public] = ACTIONS(3586), + [anon_sym_private] = ACTIONS(3586), + [anon_sym_protected] = ACTIONS(3586), + [anon_sym_override] = ACTIONS(3586), + [anon_sym_module] = ACTIONS(3586), + [anon_sym_any] = ACTIONS(3586), + [anon_sym_number] = ACTIONS(3586), + [anon_sym_boolean] = ACTIONS(3586), + [anon_sym_string] = ACTIONS(3586), + [anon_sym_symbol] = ACTIONS(3586), + [anon_sym_object] = ACTIONS(3586), + [anon_sym_property] = ACTIONS(3586), + [anon_sym_signal] = ACTIONS(3586), + [anon_sym_on] = ACTIONS(3586), + [anon_sym_required] = ACTIONS(3586), + [anon_sym_component] = ACTIONS(3586), + [anon_sym_abstract] = ACTIONS(3586), + [anon_sym_interface] = ACTIONS(3586), + [anon_sym_enum] = ACTIONS(3586), + [sym_html_comment] = ACTIONS(5), + }, + [1731] = { + [sym_comment] = STATE(1731), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1732] = { + [sym_comment] = STATE(1732), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1733] = { + [sym_comment] = STATE(1733), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [sym_html_comment] = ACTIONS(5), + }, + [1734] = { + [sym_comment] = STATE(1734), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [sym_html_comment] = ACTIONS(5), + }, + [1735] = { + [sym_comment] = STATE(1735), + [sym_identifier] = ACTIONS(3594), + [anon_sym_export] = ACTIONS(3594), + [anon_sym_type] = ACTIONS(3594), + [anon_sym_namespace] = ACTIONS(3594), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_RBRACE] = ACTIONS(3594), + [anon_sym_typeof] = ACTIONS(3594), + [anon_sym_import] = ACTIONS(3594), + [anon_sym_from] = ACTIONS(3594), + [anon_sym_with] = ACTIONS(3594), + [anon_sym_var] = ACTIONS(3594), + [anon_sym_let] = ACTIONS(3594), + [anon_sym_const] = ACTIONS(3594), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_if] = ACTIONS(3594), + [anon_sym_switch] = ACTIONS(3594), + [anon_sym_for] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3594), + [anon_sym_await] = ACTIONS(3594), + [anon_sym_of] = ACTIONS(3594), + [anon_sym_while] = ACTIONS(3594), + [anon_sym_do] = ACTIONS(3594), + [anon_sym_try] = ACTIONS(3594), + [anon_sym_break] = ACTIONS(3594), + [anon_sym_continue] = ACTIONS(3594), + [anon_sym_debugger] = ACTIONS(3594), + [anon_sym_return] = ACTIONS(3594), + [anon_sym_throw] = ACTIONS(3594), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_yield] = ACTIONS(3594), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LTtemplate_GT] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [anon_sym_SQUOTE] = ACTIONS(3594), + [anon_sym_class] = ACTIONS(3594), + [anon_sym_async] = ACTIONS(3594), + [anon_sym_function] = ACTIONS(3594), + [anon_sym_new] = ACTIONS(3594), + [anon_sym_using] = ACTIONS(3594), + [anon_sym_PLUS] = ACTIONS(3594), + [anon_sym_DASH] = ACTIONS(3594), + [anon_sym_SLASH] = ACTIONS(3594), + [anon_sym_LT] = ACTIONS(3594), + [anon_sym_TILDE] = ACTIONS(3594), + [anon_sym_void] = ACTIONS(3594), + [anon_sym_delete] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_DASH_DASH] = ACTIONS(3594), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3594), + [sym_number] = ACTIONS(3594), + [sym_private_property_identifier] = ACTIONS(3594), + [sym_this] = ACTIONS(3594), + [sym_super] = ACTIONS(3594), + [sym_true] = ACTIONS(3594), + [sym_false] = ACTIONS(3594), + [sym_null] = ACTIONS(3594), + [sym_undefined] = ACTIONS(3594), + [anon_sym_AT] = ACTIONS(3594), + [anon_sym_static] = ACTIONS(3594), + [anon_sym_readonly] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(3594), + [anon_sym_set] = ACTIONS(3594), + [anon_sym_declare] = ACTIONS(3594), + [anon_sym_public] = ACTIONS(3594), + [anon_sym_private] = ACTIONS(3594), + [anon_sym_protected] = ACTIONS(3594), + [anon_sym_override] = ACTIONS(3594), + [anon_sym_module] = ACTIONS(3594), + [anon_sym_any] = ACTIONS(3594), + [anon_sym_number] = ACTIONS(3594), + [anon_sym_boolean] = ACTIONS(3594), + [anon_sym_string] = ACTIONS(3594), + [anon_sym_symbol] = ACTIONS(3594), + [anon_sym_object] = ACTIONS(3594), + [anon_sym_property] = ACTIONS(3594), + [anon_sym_signal] = ACTIONS(3594), + [anon_sym_on] = ACTIONS(3594), + [anon_sym_required] = ACTIONS(3594), + [anon_sym_component] = ACTIONS(3594), + [anon_sym_abstract] = ACTIONS(3594), + [anon_sym_interface] = ACTIONS(3594), + [anon_sym_enum] = ACTIONS(3594), + [sym_html_comment] = ACTIONS(5), + }, + [1736] = { + [sym_comment] = STATE(1736), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [sym_html_comment] = ACTIONS(5), + }, + [1737] = { + [sym_comment] = STATE(1737), + [sym_identifier] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_type] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_typeof] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_from] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3618), + [anon_sym_var] = ACTIONS(3618), + [anon_sym_let] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_await] = ACTIONS(3618), + [anon_sym_of] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_debugger] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_LTtemplate_GT] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_async] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_SLASH] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_void] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3618), + [sym_number] = ACTIONS(3618), + [sym_private_property_identifier] = ACTIONS(3618), + [sym_this] = ACTIONS(3618), + [sym_super] = ACTIONS(3618), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [sym_null] = ACTIONS(3618), + [sym_undefined] = ACTIONS(3618), + [anon_sym_AT] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_readonly] = ACTIONS(3618), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3618), + [anon_sym_declare] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_override] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_any] = ACTIONS(3618), + [anon_sym_number] = ACTIONS(3618), + [anon_sym_boolean] = ACTIONS(3618), + [anon_sym_string] = ACTIONS(3618), + [anon_sym_symbol] = ACTIONS(3618), + [anon_sym_object] = ACTIONS(3618), + [anon_sym_property] = ACTIONS(3618), + [anon_sym_signal] = ACTIONS(3618), + [anon_sym_on] = ACTIONS(3618), + [anon_sym_required] = ACTIONS(3618), + [anon_sym_component] = ACTIONS(3618), + [anon_sym_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [sym_html_comment] = ACTIONS(5), + }, + [1738] = { + [sym_comment] = STATE(1738), + [sym_identifier] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_type] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_typeof] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_from] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3618), + [anon_sym_var] = ACTIONS(3618), + [anon_sym_let] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_await] = ACTIONS(3618), + [anon_sym_of] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_debugger] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_LTtemplate_GT] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_async] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_SLASH] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_void] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3618), + [sym_number] = ACTIONS(3618), + [sym_private_property_identifier] = ACTIONS(3618), + [sym_this] = ACTIONS(3618), + [sym_super] = ACTIONS(3618), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [sym_null] = ACTIONS(3618), + [sym_undefined] = ACTIONS(3618), + [anon_sym_AT] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_readonly] = ACTIONS(3618), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3618), + [anon_sym_declare] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_override] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_any] = ACTIONS(3618), + [anon_sym_number] = ACTIONS(3618), + [anon_sym_boolean] = ACTIONS(3618), + [anon_sym_string] = ACTIONS(3618), + [anon_sym_symbol] = ACTIONS(3618), + [anon_sym_object] = ACTIONS(3618), + [anon_sym_property] = ACTIONS(3618), + [anon_sym_signal] = ACTIONS(3618), + [anon_sym_on] = ACTIONS(3618), + [anon_sym_required] = ACTIONS(3618), + [anon_sym_component] = ACTIONS(3618), + [anon_sym_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [sym_html_comment] = ACTIONS(5), + }, + [1739] = { + [sym_comment] = STATE(1739), + [sym_identifier] = ACTIONS(3468), + [anon_sym_export] = ACTIONS(3468), + [anon_sym_type] = ACTIONS(3468), + [anon_sym_namespace] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3468), + [anon_sym_RBRACE] = ACTIONS(3468), + [anon_sym_typeof] = ACTIONS(3468), + [anon_sym_import] = ACTIONS(3468), + [anon_sym_from] = ACTIONS(3468), + [anon_sym_with] = ACTIONS(3468), + [anon_sym_var] = ACTIONS(3468), + [anon_sym_let] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_BANG] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_await] = ACTIONS(3468), + [anon_sym_of] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_debugger] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_yield] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_LTtemplate_GT] = ACTIONS(3468), + [anon_sym_DQUOTE] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_async] = ACTIONS(3468), + [anon_sym_function] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_using] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_SLASH] = ACTIONS(3468), + [anon_sym_LT] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(3468), + [anon_sym_void] = ACTIONS(3468), + [anon_sym_delete] = ACTIONS(3468), + [anon_sym_PLUS_PLUS] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3468), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3468), + [sym_number] = ACTIONS(3468), + [sym_private_property_identifier] = ACTIONS(3468), + [sym_this] = ACTIONS(3468), + [sym_super] = ACTIONS(3468), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [sym_null] = ACTIONS(3468), + [sym_undefined] = ACTIONS(3468), + [anon_sym_AT] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_readonly] = ACTIONS(3468), + [anon_sym_get] = ACTIONS(3468), + [anon_sym_set] = ACTIONS(3468), + [anon_sym_declare] = ACTIONS(3468), + [anon_sym_public] = ACTIONS(3468), + [anon_sym_private] = ACTIONS(3468), + [anon_sym_protected] = ACTIONS(3468), + [anon_sym_override] = ACTIONS(3468), + [anon_sym_module] = ACTIONS(3468), + [anon_sym_any] = ACTIONS(3468), + [anon_sym_number] = ACTIONS(3468), + [anon_sym_boolean] = ACTIONS(3468), + [anon_sym_string] = ACTIONS(3468), + [anon_sym_symbol] = ACTIONS(3468), + [anon_sym_object] = ACTIONS(3468), + [anon_sym_property] = ACTIONS(3468), + [anon_sym_signal] = ACTIONS(3468), + [anon_sym_on] = ACTIONS(3468), + [anon_sym_required] = ACTIONS(3468), + [anon_sym_component] = ACTIONS(3468), + [anon_sym_abstract] = ACTIONS(3468), + [anon_sym_interface] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), + [sym_html_comment] = ACTIONS(5), + }, + [1740] = { + [sym_comment] = STATE(1740), + [sym_identifier] = ACTIONS(3482), + [anon_sym_export] = ACTIONS(3482), + [anon_sym_type] = ACTIONS(3482), + [anon_sym_namespace] = ACTIONS(3482), + [anon_sym_LBRACE] = ACTIONS(3482), + [anon_sym_RBRACE] = ACTIONS(3482), + [anon_sym_typeof] = ACTIONS(3482), + [anon_sym_import] = ACTIONS(3482), + [anon_sym_from] = ACTIONS(3482), + [anon_sym_with] = ACTIONS(3482), + [anon_sym_var] = ACTIONS(3482), + [anon_sym_let] = ACTIONS(3482), + [anon_sym_const] = ACTIONS(3482), + [anon_sym_BANG] = ACTIONS(3482), + [anon_sym_if] = ACTIONS(3482), + [anon_sym_switch] = ACTIONS(3482), + [anon_sym_for] = ACTIONS(3482), + [anon_sym_LPAREN] = ACTIONS(3482), + [anon_sym_await] = ACTIONS(3482), + [anon_sym_of] = ACTIONS(3482), + [anon_sym_while] = ACTIONS(3482), + [anon_sym_do] = ACTIONS(3482), + [anon_sym_try] = ACTIONS(3482), + [anon_sym_break] = ACTIONS(3482), + [anon_sym_continue] = ACTIONS(3482), + [anon_sym_debugger] = ACTIONS(3482), + [anon_sym_return] = ACTIONS(3482), + [anon_sym_throw] = ACTIONS(3482), + [anon_sym_SEMI] = ACTIONS(3482), + [anon_sym_yield] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_LTtemplate_GT] = ACTIONS(3482), + [anon_sym_DQUOTE] = ACTIONS(3482), + [anon_sym_SQUOTE] = ACTIONS(3482), + [anon_sym_class] = ACTIONS(3482), + [anon_sym_async] = ACTIONS(3482), + [anon_sym_function] = ACTIONS(3482), + [anon_sym_new] = ACTIONS(3482), + [anon_sym_using] = ACTIONS(3482), + [anon_sym_PLUS] = ACTIONS(3482), + [anon_sym_DASH] = ACTIONS(3482), + [anon_sym_SLASH] = ACTIONS(3482), + [anon_sym_LT] = ACTIONS(3482), + [anon_sym_TILDE] = ACTIONS(3482), + [anon_sym_void] = ACTIONS(3482), + [anon_sym_delete] = ACTIONS(3482), + [anon_sym_PLUS_PLUS] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(3482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3482), + [sym_number] = ACTIONS(3482), + [sym_private_property_identifier] = ACTIONS(3482), + [sym_this] = ACTIONS(3482), + [sym_super] = ACTIONS(3482), + [sym_true] = ACTIONS(3482), + [sym_false] = ACTIONS(3482), + [sym_null] = ACTIONS(3482), + [sym_undefined] = ACTIONS(3482), + [anon_sym_AT] = ACTIONS(3482), + [anon_sym_static] = ACTIONS(3482), + [anon_sym_readonly] = ACTIONS(3482), + [anon_sym_get] = ACTIONS(3482), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_declare] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3482), + [anon_sym_private] = ACTIONS(3482), + [anon_sym_protected] = ACTIONS(3482), + [anon_sym_override] = ACTIONS(3482), + [anon_sym_module] = ACTIONS(3482), + [anon_sym_any] = ACTIONS(3482), + [anon_sym_number] = ACTIONS(3482), + [anon_sym_boolean] = ACTIONS(3482), + [anon_sym_string] = ACTIONS(3482), + [anon_sym_symbol] = ACTIONS(3482), + [anon_sym_object] = ACTIONS(3482), + [anon_sym_property] = ACTIONS(3482), + [anon_sym_signal] = ACTIONS(3482), + [anon_sym_on] = ACTIONS(3482), + [anon_sym_required] = ACTIONS(3482), + [anon_sym_component] = ACTIONS(3482), + [anon_sym_abstract] = ACTIONS(3482), + [anon_sym_interface] = ACTIONS(3482), + [anon_sym_enum] = ACTIONS(3482), + [sym_html_comment] = ACTIONS(5), + }, + [1741] = { + [sym_comment] = STATE(1741), + [sym_identifier] = ACTIONS(3654), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_type] = ACTIONS(3654), + [anon_sym_namespace] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_RBRACE] = ACTIONS(3654), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_from] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_await] = ACTIONS(3654), + [anon_sym_of] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym_yield] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_LTtemplate_GT] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_class] = ACTIONS(3654), + [anon_sym_async] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_using] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_LT] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_void] = ACTIONS(3654), + [anon_sym_delete] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3654), + [sym_number] = ACTIONS(3654), + [sym_private_property_identifier] = ACTIONS(3654), + [sym_this] = ACTIONS(3654), + [sym_super] = ACTIONS(3654), + [sym_true] = ACTIONS(3654), + [sym_false] = ACTIONS(3654), + [sym_null] = ACTIONS(3654), + [sym_undefined] = ACTIONS(3654), + [anon_sym_AT] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_readonly] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_declare] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_protected] = ACTIONS(3654), + [anon_sym_override] = ACTIONS(3654), + [anon_sym_module] = ACTIONS(3654), + [anon_sym_any] = ACTIONS(3654), + [anon_sym_number] = ACTIONS(3654), + [anon_sym_boolean] = ACTIONS(3654), + [anon_sym_string] = ACTIONS(3654), + [anon_sym_symbol] = ACTIONS(3654), + [anon_sym_object] = ACTIONS(3654), + [anon_sym_property] = ACTIONS(3654), + [anon_sym_signal] = ACTIONS(3654), + [anon_sym_on] = ACTIONS(3654), + [anon_sym_required] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_enum] = ACTIONS(3654), + [sym_html_comment] = ACTIONS(5), + }, + [1742] = { + [sym_comment] = STATE(1742), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1743] = { + [sym_comment] = STATE(1743), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1744] = { + [sym_comment] = STATE(1744), + [sym_identifier] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_from] = ACTIONS(3660), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_var] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_await] = ACTIONS(3660), + [anon_sym_of] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_debugger] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LTtemplate_GT] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_async] = ACTIONS(3660), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_SLASH] = ACTIONS(3660), + [anon_sym_LT] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_void] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3660), + [sym_number] = ACTIONS(3660), + [sym_private_property_identifier] = ACTIONS(3660), + [sym_this] = ACTIONS(3660), + [sym_super] = ACTIONS(3660), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_null] = ACTIONS(3660), + [sym_undefined] = ACTIONS(3660), + [anon_sym_AT] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_readonly] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(3660), + [anon_sym_set] = ACTIONS(3660), + [anon_sym_declare] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_override] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_any] = ACTIONS(3660), + [anon_sym_number] = ACTIONS(3660), + [anon_sym_boolean] = ACTIONS(3660), + [anon_sym_string] = ACTIONS(3660), + [anon_sym_symbol] = ACTIONS(3660), + [anon_sym_object] = ACTIONS(3660), + [anon_sym_property] = ACTIONS(3660), + [anon_sym_signal] = ACTIONS(3660), + [anon_sym_on] = ACTIONS(3660), + [anon_sym_required] = ACTIONS(3660), + [anon_sym_component] = ACTIONS(3660), + [anon_sym_abstract] = ACTIONS(3660), + [anon_sym_interface] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [sym_html_comment] = ACTIONS(5), + }, + [1745] = { + [sym_comment] = STATE(1745), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1746] = { + [sym_comment] = STATE(1746), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1747] = { + [sym_comment] = STATE(1747), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_LBRACE] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_typeof] = ACTIONS(2368), + [anon_sym_import] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_with] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_switch] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_await] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_do] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_debugger] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_throw] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_LTtemplate_GT] = ACTIONS(2368), + [anon_sym_DQUOTE] = ACTIONS(2368), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_class] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_new] = ACTIONS(2368), + [anon_sym_using] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_TILDE] = ACTIONS(2368), + [anon_sym_void] = ACTIONS(2368), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [sym_number] = ACTIONS(2368), + [sym_private_property_identifier] = ACTIONS(2368), + [sym_this] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_true] = ACTIONS(2368), + [sym_false] = ACTIONS(2368), + [sym_null] = ACTIONS(2368), + [sym_undefined] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_abstract] = ACTIONS(2368), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), + }, + [1748] = { + [sym_comment] = STATE(1748), + [sym_identifier] = ACTIONS(3480), + [anon_sym_export] = ACTIONS(3480), + [anon_sym_type] = ACTIONS(3480), + [anon_sym_namespace] = ACTIONS(3480), + [anon_sym_LBRACE] = ACTIONS(3480), + [anon_sym_RBRACE] = ACTIONS(3480), + [anon_sym_typeof] = ACTIONS(3480), + [anon_sym_import] = ACTIONS(3480), + [anon_sym_from] = ACTIONS(3480), + [anon_sym_with] = ACTIONS(3480), + [anon_sym_var] = ACTIONS(3480), + [anon_sym_let] = ACTIONS(3480), + [anon_sym_const] = ACTIONS(3480), + [anon_sym_BANG] = ACTIONS(3480), + [anon_sym_if] = ACTIONS(3480), + [anon_sym_switch] = ACTIONS(3480), + [anon_sym_for] = ACTIONS(3480), + [anon_sym_LPAREN] = ACTIONS(3480), + [anon_sym_await] = ACTIONS(3480), + [anon_sym_of] = ACTIONS(3480), + [anon_sym_while] = ACTIONS(3480), + [anon_sym_do] = ACTIONS(3480), + [anon_sym_try] = ACTIONS(3480), + [anon_sym_break] = ACTIONS(3480), + [anon_sym_continue] = ACTIONS(3480), + [anon_sym_debugger] = ACTIONS(3480), + [anon_sym_return] = ACTIONS(3480), + [anon_sym_throw] = ACTIONS(3480), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym_yield] = ACTIONS(3480), + [anon_sym_LBRACK] = ACTIONS(3480), + [anon_sym_LTtemplate_GT] = ACTIONS(3480), + [anon_sym_DQUOTE] = ACTIONS(3480), + [anon_sym_SQUOTE] = ACTIONS(3480), + [anon_sym_class] = ACTIONS(3480), + [anon_sym_async] = ACTIONS(3480), + [anon_sym_function] = ACTIONS(3480), + [anon_sym_new] = ACTIONS(3480), + [anon_sym_using] = ACTIONS(3480), + [anon_sym_PLUS] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_SLASH] = ACTIONS(3480), + [anon_sym_LT] = ACTIONS(3480), + [anon_sym_TILDE] = ACTIONS(3480), + [anon_sym_void] = ACTIONS(3480), + [anon_sym_delete] = ACTIONS(3480), + [anon_sym_PLUS_PLUS] = ACTIONS(3480), + [anon_sym_DASH_DASH] = ACTIONS(3480), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3480), + [sym_number] = ACTIONS(3480), + [sym_private_property_identifier] = ACTIONS(3480), + [sym_this] = ACTIONS(3480), + [sym_super] = ACTIONS(3480), + [sym_true] = ACTIONS(3480), + [sym_false] = ACTIONS(3480), + [sym_null] = ACTIONS(3480), + [sym_undefined] = ACTIONS(3480), + [anon_sym_AT] = ACTIONS(3480), + [anon_sym_static] = ACTIONS(3480), + [anon_sym_readonly] = ACTIONS(3480), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3480), + [anon_sym_declare] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3480), + [anon_sym_protected] = ACTIONS(3480), + [anon_sym_override] = ACTIONS(3480), + [anon_sym_module] = ACTIONS(3480), + [anon_sym_any] = ACTIONS(3480), + [anon_sym_number] = ACTIONS(3480), + [anon_sym_boolean] = ACTIONS(3480), + [anon_sym_string] = ACTIONS(3480), + [anon_sym_symbol] = ACTIONS(3480), + [anon_sym_object] = ACTIONS(3480), + [anon_sym_property] = ACTIONS(3480), + [anon_sym_signal] = ACTIONS(3480), + [anon_sym_on] = ACTIONS(3480), + [anon_sym_required] = ACTIONS(3480), + [anon_sym_component] = ACTIONS(3480), + [anon_sym_abstract] = ACTIONS(3480), + [anon_sym_interface] = ACTIONS(3480), + [anon_sym_enum] = ACTIONS(3480), + [sym_html_comment] = ACTIONS(5), + }, + [1749] = { + [sym_comment] = STATE(1749), + [sym_identifier] = ACTIONS(3638), + [anon_sym_export] = ACTIONS(3638), + [anon_sym_type] = ACTIONS(3638), + [anon_sym_namespace] = ACTIONS(3638), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_typeof] = ACTIONS(3638), + [anon_sym_import] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_with] = ACTIONS(3638), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_const] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_await] = ACTIONS(3638), + [anon_sym_of] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_break] = ACTIONS(3638), + [anon_sym_continue] = ACTIONS(3638), + [anon_sym_debugger] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_throw] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LTtemplate_GT] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_class] = ACTIONS(3638), + [anon_sym_async] = ACTIONS(3638), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_using] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_void] = ACTIONS(3638), + [anon_sym_delete] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3638), + [sym_number] = ACTIONS(3638), + [sym_private_property_identifier] = ACTIONS(3638), + [sym_this] = ACTIONS(3638), + [sym_super] = ACTIONS(3638), + [sym_true] = ACTIONS(3638), + [sym_false] = ACTIONS(3638), + [sym_null] = ACTIONS(3638), + [sym_undefined] = ACTIONS(3638), + [anon_sym_AT] = ACTIONS(3638), + [anon_sym_static] = ACTIONS(3638), + [anon_sym_readonly] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(3638), + [anon_sym_set] = ACTIONS(3638), + [anon_sym_declare] = ACTIONS(3638), + [anon_sym_public] = ACTIONS(3638), + [anon_sym_private] = ACTIONS(3638), + [anon_sym_protected] = ACTIONS(3638), + [anon_sym_override] = ACTIONS(3638), + [anon_sym_module] = ACTIONS(3638), + [anon_sym_any] = ACTIONS(3638), + [anon_sym_number] = ACTIONS(3638), + [anon_sym_boolean] = ACTIONS(3638), + [anon_sym_string] = ACTIONS(3638), + [anon_sym_symbol] = ACTIONS(3638), + [anon_sym_object] = ACTIONS(3638), + [anon_sym_property] = ACTIONS(3638), + [anon_sym_signal] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_required] = ACTIONS(3638), + [anon_sym_component] = ACTIONS(3638), + [anon_sym_abstract] = ACTIONS(3638), + [anon_sym_interface] = ACTIONS(3638), + [anon_sym_enum] = ACTIONS(3638), + [sym_html_comment] = ACTIONS(5), + }, + [1750] = { + [sym_comment] = STATE(1750), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1751] = { + [sym_comment] = STATE(1751), + [sym_identifier] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_type] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_typeof] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [anon_sym_var] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_await] = ACTIONS(3640), + [anon_sym_of] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_debugger] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_LTtemplate_GT] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_async] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3640), + [anon_sym_void] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3640), + [sym_number] = ACTIONS(3640), + [sym_private_property_identifier] = ACTIONS(3640), + [sym_this] = ACTIONS(3640), + [sym_super] = ACTIONS(3640), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [sym_null] = ACTIONS(3640), + [sym_undefined] = ACTIONS(3640), + [anon_sym_AT] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_readonly] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(3640), + [anon_sym_set] = ACTIONS(3640), + [anon_sym_declare] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_override] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_any] = ACTIONS(3640), + [anon_sym_number] = ACTIONS(3640), + [anon_sym_boolean] = ACTIONS(3640), + [anon_sym_string] = ACTIONS(3640), + [anon_sym_symbol] = ACTIONS(3640), + [anon_sym_object] = ACTIONS(3640), + [anon_sym_property] = ACTIONS(3640), + [anon_sym_signal] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_required] = ACTIONS(3640), + [anon_sym_component] = ACTIONS(3640), + [anon_sym_abstract] = ACTIONS(3640), + [anon_sym_interface] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [sym_html_comment] = ACTIONS(5), + }, + [1752] = { + [sym_comment] = STATE(1752), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1753] = { + [sym_comment] = STATE(1753), + [sym_identifier] = ACTIONS(3470), + [anon_sym_export] = ACTIONS(3470), + [anon_sym_type] = ACTIONS(3470), + [anon_sym_namespace] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_RBRACE] = ACTIONS(3470), + [anon_sym_typeof] = ACTIONS(3470), + [anon_sym_import] = ACTIONS(3470), + [anon_sym_from] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_var] = ACTIONS(3470), + [anon_sym_let] = ACTIONS(3470), + [anon_sym_const] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_switch] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3470), + [anon_sym_await] = ACTIONS(3470), + [anon_sym_of] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_try] = ACTIONS(3470), + [anon_sym_break] = ACTIONS(3470), + [anon_sym_continue] = ACTIONS(3470), + [anon_sym_debugger] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_throw] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_yield] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3470), + [anon_sym_LTtemplate_GT] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_async] = ACTIONS(3470), + [anon_sym_function] = ACTIONS(3470), + [anon_sym_new] = ACTIONS(3470), + [anon_sym_using] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3470), + [anon_sym_SLASH] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_void] = ACTIONS(3470), + [anon_sym_delete] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3470), + [sym_number] = ACTIONS(3470), + [sym_private_property_identifier] = ACTIONS(3470), + [sym_this] = ACTIONS(3470), + [sym_super] = ACTIONS(3470), + [sym_true] = ACTIONS(3470), + [sym_false] = ACTIONS(3470), + [sym_null] = ACTIONS(3470), + [sym_undefined] = ACTIONS(3470), + [anon_sym_AT] = ACTIONS(3470), + [anon_sym_static] = ACTIONS(3470), + [anon_sym_readonly] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3470), + [anon_sym_set] = ACTIONS(3470), + [anon_sym_declare] = ACTIONS(3470), + [anon_sym_public] = ACTIONS(3470), + [anon_sym_private] = ACTIONS(3470), + [anon_sym_protected] = ACTIONS(3470), + [anon_sym_override] = ACTIONS(3470), + [anon_sym_module] = ACTIONS(3470), + [anon_sym_any] = ACTIONS(3470), + [anon_sym_number] = ACTIONS(3470), + [anon_sym_boolean] = ACTIONS(3470), + [anon_sym_string] = ACTIONS(3470), + [anon_sym_symbol] = ACTIONS(3470), + [anon_sym_object] = ACTIONS(3470), + [anon_sym_property] = ACTIONS(3470), + [anon_sym_signal] = ACTIONS(3470), + [anon_sym_on] = ACTIONS(3470), + [anon_sym_required] = ACTIONS(3470), + [anon_sym_component] = ACTIONS(3470), + [anon_sym_abstract] = ACTIONS(3470), + [anon_sym_interface] = ACTIONS(3470), + [anon_sym_enum] = ACTIONS(3470), + [sym_html_comment] = ACTIONS(5), + }, + [1754] = { + [sym_comment] = STATE(1754), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1755] = { + [sym_comment] = STATE(1755), + [sym_identifier] = ACTIONS(3642), + [anon_sym_export] = ACTIONS(3642), + [anon_sym_type] = ACTIONS(3642), + [anon_sym_namespace] = ACTIONS(3642), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_typeof] = ACTIONS(3642), + [anon_sym_import] = ACTIONS(3642), + [anon_sym_from] = ACTIONS(3642), + [anon_sym_with] = ACTIONS(3642), + [anon_sym_var] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_const] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_await] = ACTIONS(3642), + [anon_sym_of] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_break] = ACTIONS(3642), + [anon_sym_continue] = ACTIONS(3642), + [anon_sym_debugger] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_throw] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LTtemplate_GT] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_class] = ACTIONS(3642), + [anon_sym_async] = ACTIONS(3642), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_using] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_void] = ACTIONS(3642), + [anon_sym_delete] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3642), + [sym_number] = ACTIONS(3642), + [sym_private_property_identifier] = ACTIONS(3642), + [sym_this] = ACTIONS(3642), + [sym_super] = ACTIONS(3642), + [sym_true] = ACTIONS(3642), + [sym_false] = ACTIONS(3642), + [sym_null] = ACTIONS(3642), + [sym_undefined] = ACTIONS(3642), + [anon_sym_AT] = ACTIONS(3642), + [anon_sym_static] = ACTIONS(3642), + [anon_sym_readonly] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(3642), + [anon_sym_set] = ACTIONS(3642), + [anon_sym_declare] = ACTIONS(3642), + [anon_sym_public] = ACTIONS(3642), + [anon_sym_private] = ACTIONS(3642), + [anon_sym_protected] = ACTIONS(3642), + [anon_sym_override] = ACTIONS(3642), + [anon_sym_module] = ACTIONS(3642), + [anon_sym_any] = ACTIONS(3642), + [anon_sym_number] = ACTIONS(3642), + [anon_sym_boolean] = ACTIONS(3642), + [anon_sym_string] = ACTIONS(3642), + [anon_sym_symbol] = ACTIONS(3642), + [anon_sym_object] = ACTIONS(3642), + [anon_sym_property] = ACTIONS(3642), + [anon_sym_signal] = ACTIONS(3642), + [anon_sym_on] = ACTIONS(3642), + [anon_sym_required] = ACTIONS(3642), + [anon_sym_component] = ACTIONS(3642), + [anon_sym_abstract] = ACTIONS(3642), + [anon_sym_interface] = ACTIONS(3642), + [anon_sym_enum] = ACTIONS(3642), + [sym_html_comment] = ACTIONS(5), + }, + [1756] = { + [sym_comment] = STATE(1756), [sym_identifier] = ACTIONS(2414), [anon_sym_export] = ACTIONS(2414), - [anon_sym_default] = ACTIONS(2414), [anon_sym_type] = ACTIONS(2414), [anon_sym_namespace] = ACTIONS(2414), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2416), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), [anon_sym_typeof] = ACTIONS(2414), [anon_sym_import] = ACTIONS(2414), [anon_sym_from] = ACTIONS(2414), + [anon_sym_with] = ACTIONS(2414), [anon_sym_var] = ACTIONS(2414), [anon_sym_let] = ACTIONS(2414), [anon_sym_const] = ACTIONS(2414), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_else] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), [anon_sym_if] = ACTIONS(2414), [anon_sym_switch] = ACTIONS(2414), [anon_sym_for] = ACTIONS(2414), - [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2414), [anon_sym_await] = ACTIONS(2414), [anon_sym_of] = ACTIONS(2414), [anon_sym_while] = ACTIONS(2414), [anon_sym_do] = ACTIONS(2414), [anon_sym_try] = ACTIONS(2414), - [anon_sym_with] = ACTIONS(2414), [anon_sym_break] = ACTIONS(2414), [anon_sym_continue] = ACTIONS(2414), [anon_sym_debugger] = ACTIONS(2414), [anon_sym_return] = ACTIONS(2414), [anon_sym_throw] = ACTIONS(2414), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_case] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), [anon_sym_yield] = ACTIONS(2414), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_LTtemplate_GT] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(2414), - [anon_sym_SLASH] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_LTtemplate_GT] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2414), [anon_sym_class] = ACTIONS(2414), [anon_sym_async] = ACTIONS(2414), [anon_sym_function] = ACTIONS(2414), [anon_sym_new] = ACTIONS(2414), + [anon_sym_using] = ACTIONS(2414), [anon_sym_PLUS] = ACTIONS(2414), [anon_sym_DASH] = ACTIONS(2414), - [anon_sym_TILDE] = ACTIONS(2416), + [anon_sym_SLASH] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_TILDE] = ACTIONS(2414), [anon_sym_void] = ACTIONS(2414), [anon_sym_delete] = ACTIONS(2414), - [anon_sym_PLUS_PLUS] = ACTIONS(2416), - [anon_sym_DASH_DASH] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2416), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2416), - [sym_number] = ACTIONS(2416), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2414), + [sym_number] = ACTIONS(2414), + [sym_private_property_identifier] = ACTIONS(2414), [sym_this] = ACTIONS(2414), [sym_super] = ACTIONS(2414), [sym_true] = ACTIONS(2414), [sym_false] = ACTIONS(2414), [sym_null] = ACTIONS(2414), [sym_undefined] = ACTIONS(2414), - [anon_sym_AT] = ACTIONS(2416), + [anon_sym_AT] = ACTIONS(2414), [anon_sym_static] = ACTIONS(2414), [anon_sym_readonly] = ACTIONS(2414), [anon_sym_get] = ACTIONS(2414), @@ -98544,6 +224895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2414), [anon_sym_string] = ACTIONS(2414), [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), [anon_sym_property] = ACTIONS(2414), [anon_sym_signal] = ACTIONS(2414), [anon_sym_on] = ACTIONS(2414), @@ -98552,4658 +224904,8408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2414), [anon_sym_interface] = ACTIONS(2414), [anon_sym_enum] = ACTIONS(2414), - }, - [728] = { - [sym_identifier] = ACTIONS(2418), - [anon_sym_export] = ACTIONS(2418), - [anon_sym_default] = ACTIONS(2418), - [anon_sym_type] = ACTIONS(2418), - [anon_sym_namespace] = ACTIONS(2418), - [anon_sym_LBRACE] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_typeof] = ACTIONS(2418), - [anon_sym_import] = ACTIONS(2418), - [anon_sym_from] = ACTIONS(2418), - [anon_sym_var] = ACTIONS(2418), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_const] = ACTIONS(2418), - [anon_sym_BANG] = ACTIONS(2420), - [anon_sym_else] = ACTIONS(2418), - [anon_sym_if] = ACTIONS(2418), - [anon_sym_switch] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2418), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_await] = ACTIONS(2418), - [anon_sym_of] = ACTIONS(2418), - [anon_sym_while] = ACTIONS(2418), - [anon_sym_do] = ACTIONS(2418), - [anon_sym_try] = ACTIONS(2418), - [anon_sym_with] = ACTIONS(2418), - [anon_sym_break] = ACTIONS(2418), - [anon_sym_continue] = ACTIONS(2418), - [anon_sym_debugger] = ACTIONS(2418), - [anon_sym_return] = ACTIONS(2418), - [anon_sym_throw] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_case] = ACTIONS(2418), - [anon_sym_yield] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(2420), - [anon_sym_LTtemplate_GT] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_SLASH] = ACTIONS(2418), - [anon_sym_class] = ACTIONS(2418), - [anon_sym_async] = ACTIONS(2418), - [anon_sym_function] = ACTIONS(2418), - [anon_sym_new] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_TILDE] = ACTIONS(2420), - [anon_sym_void] = ACTIONS(2418), - [anon_sym_delete] = ACTIONS(2418), - [anon_sym_PLUS_PLUS] = ACTIONS(2420), - [anon_sym_DASH_DASH] = ACTIONS(2420), - [anon_sym_DQUOTE] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2420), - [sym_number] = ACTIONS(2420), - [sym_this] = ACTIONS(2418), - [sym_super] = ACTIONS(2418), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [sym_null] = ACTIONS(2418), - [sym_undefined] = ACTIONS(2418), - [anon_sym_AT] = ACTIONS(2420), - [anon_sym_static] = ACTIONS(2418), - [anon_sym_readonly] = ACTIONS(2418), - [anon_sym_get] = ACTIONS(2418), - [anon_sym_set] = ACTIONS(2418), - [anon_sym_declare] = ACTIONS(2418), - [anon_sym_public] = ACTIONS(2418), - [anon_sym_private] = ACTIONS(2418), - [anon_sym_protected] = ACTIONS(2418), - [anon_sym_override] = ACTIONS(2418), - [anon_sym_module] = ACTIONS(2418), - [anon_sym_any] = ACTIONS(2418), - [anon_sym_number] = ACTIONS(2418), - [anon_sym_boolean] = ACTIONS(2418), - [anon_sym_string] = ACTIONS(2418), - [anon_sym_symbol] = ACTIONS(2418), - [anon_sym_property] = ACTIONS(2418), - [anon_sym_signal] = ACTIONS(2418), - [anon_sym_on] = ACTIONS(2418), - [anon_sym_required] = ACTIONS(2418), - [anon_sym_component] = ACTIONS(2418), - [anon_sym_abstract] = ACTIONS(2418), - [anon_sym_interface] = ACTIONS(2418), - [anon_sym_enum] = ACTIONS(2418), - }, - [729] = { - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_default] = ACTIONS(2422), - [anon_sym_type] = ACTIONS(2422), - [anon_sym_namespace] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_typeof] = ACTIONS(2422), - [anon_sym_import] = ACTIONS(2422), - [anon_sym_from] = ACTIONS(2422), - [anon_sym_var] = ACTIONS(2422), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_else] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_switch] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_await] = ACTIONS(2422), - [anon_sym_of] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_do] = ACTIONS(2422), - [anon_sym_try] = ACTIONS(2422), - [anon_sym_with] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_debugger] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_throw] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_case] = ACTIONS(2422), - [anon_sym_yield] = ACTIONS(2422), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_LTtemplate_GT] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_SLASH] = ACTIONS(2422), - [anon_sym_class] = ACTIONS(2422), - [anon_sym_async] = ACTIONS(2422), - [anon_sym_function] = ACTIONS(2422), - [anon_sym_new] = ACTIONS(2422), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_TILDE] = ACTIONS(2424), - [anon_sym_void] = ACTIONS(2422), - [anon_sym_delete] = ACTIONS(2422), - [anon_sym_PLUS_PLUS] = ACTIONS(2424), - [anon_sym_DASH_DASH] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(2424), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2424), - [sym_number] = ACTIONS(2424), - [sym_this] = ACTIONS(2422), - [sym_super] = ACTIONS(2422), - [sym_true] = ACTIONS(2422), - [sym_false] = ACTIONS(2422), - [sym_null] = ACTIONS(2422), - [sym_undefined] = ACTIONS(2422), - [anon_sym_AT] = ACTIONS(2424), - [anon_sym_static] = ACTIONS(2422), - [anon_sym_readonly] = ACTIONS(2422), - [anon_sym_get] = ACTIONS(2422), - [anon_sym_set] = ACTIONS(2422), - [anon_sym_declare] = ACTIONS(2422), - [anon_sym_public] = ACTIONS(2422), - [anon_sym_private] = ACTIONS(2422), - [anon_sym_protected] = ACTIONS(2422), - [anon_sym_override] = ACTIONS(2422), - [anon_sym_module] = ACTIONS(2422), - [anon_sym_any] = ACTIONS(2422), - [anon_sym_number] = ACTIONS(2422), - [anon_sym_boolean] = ACTIONS(2422), - [anon_sym_string] = ACTIONS(2422), - [anon_sym_symbol] = ACTIONS(2422), - [anon_sym_property] = ACTIONS(2422), - [anon_sym_signal] = ACTIONS(2422), - [anon_sym_on] = ACTIONS(2422), - [anon_sym_required] = ACTIONS(2422), - [anon_sym_component] = ACTIONS(2422), - [anon_sym_abstract] = ACTIONS(2422), - [anon_sym_interface] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2422), - }, - [730] = { - [sym_identifier] = ACTIONS(2422), - [anon_sym_export] = ACTIONS(2422), - [anon_sym_default] = ACTIONS(2422), - [anon_sym_type] = ACTIONS(2422), - [anon_sym_namespace] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_typeof] = ACTIONS(2422), - [anon_sym_import] = ACTIONS(2422), - [anon_sym_from] = ACTIONS(2422), - [anon_sym_var] = ACTIONS(2422), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_else] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_switch] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_await] = ACTIONS(2422), - [anon_sym_of] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_do] = ACTIONS(2422), - [anon_sym_try] = ACTIONS(2422), - [anon_sym_with] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_debugger] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_throw] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_case] = ACTIONS(2422), - [anon_sym_yield] = ACTIONS(2422), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_LTtemplate_GT] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2422), - [anon_sym_SLASH] = ACTIONS(2422), - [anon_sym_class] = ACTIONS(2422), - [anon_sym_async] = ACTIONS(2422), - [anon_sym_function] = ACTIONS(2422), - [anon_sym_new] = ACTIONS(2422), - [anon_sym_PLUS] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2422), - [anon_sym_TILDE] = ACTIONS(2424), - [anon_sym_void] = ACTIONS(2422), - [anon_sym_delete] = ACTIONS(2422), - [anon_sym_PLUS_PLUS] = ACTIONS(2424), - [anon_sym_DASH_DASH] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(2424), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2424), - [sym_number] = ACTIONS(2424), - [sym_this] = ACTIONS(2422), - [sym_super] = ACTIONS(2422), - [sym_true] = ACTIONS(2422), - [sym_false] = ACTIONS(2422), - [sym_null] = ACTIONS(2422), - [sym_undefined] = ACTIONS(2422), - [anon_sym_AT] = ACTIONS(2424), - [anon_sym_static] = ACTIONS(2422), - [anon_sym_readonly] = ACTIONS(2422), - [anon_sym_get] = ACTIONS(2422), - [anon_sym_set] = ACTIONS(2422), - [anon_sym_declare] = ACTIONS(2422), - [anon_sym_public] = ACTIONS(2422), - [anon_sym_private] = ACTIONS(2422), - [anon_sym_protected] = ACTIONS(2422), - [anon_sym_override] = ACTIONS(2422), - [anon_sym_module] = ACTIONS(2422), - [anon_sym_any] = ACTIONS(2422), - [anon_sym_number] = ACTIONS(2422), - [anon_sym_boolean] = ACTIONS(2422), - [anon_sym_string] = ACTIONS(2422), - [anon_sym_symbol] = ACTIONS(2422), - [anon_sym_property] = ACTIONS(2422), - [anon_sym_signal] = ACTIONS(2422), - [anon_sym_on] = ACTIONS(2422), - [anon_sym_required] = ACTIONS(2422), - [anon_sym_component] = ACTIONS(2422), - [anon_sym_abstract] = ACTIONS(2422), - [anon_sym_interface] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2422), - }, - [731] = { - [sym_identifier] = ACTIONS(2426), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_default] = ACTIONS(2426), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_namespace] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_typeof] = ACTIONS(2426), - [anon_sym_import] = ACTIONS(2426), - [anon_sym_from] = ACTIONS(2426), - [anon_sym_var] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2428), - [anon_sym_else] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_switch] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_await] = ACTIONS(2426), - [anon_sym_of] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_do] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2426), - [anon_sym_with] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_debugger] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_throw] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_case] = ACTIONS(2426), - [anon_sym_yield] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(2428), - [anon_sym_LTtemplate_GT] = ACTIONS(2428), - [anon_sym_LT] = ACTIONS(2426), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2426), - [anon_sym_new] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_TILDE] = ACTIONS(2428), - [anon_sym_void] = ACTIONS(2426), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_PLUS_PLUS] = ACTIONS(2428), - [anon_sym_DASH_DASH] = ACTIONS(2428), - [anon_sym_DQUOTE] = ACTIONS(2428), - [anon_sym_SQUOTE] = ACTIONS(2428), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2428), - [sym_number] = ACTIONS(2428), - [sym_this] = ACTIONS(2426), - [sym_super] = ACTIONS(2426), - [sym_true] = ACTIONS(2426), - [sym_false] = ACTIONS(2426), - [sym_null] = ACTIONS(2426), - [sym_undefined] = ACTIONS(2426), - [anon_sym_AT] = ACTIONS(2428), - [anon_sym_static] = ACTIONS(2426), - [anon_sym_readonly] = ACTIONS(2426), - [anon_sym_get] = ACTIONS(2426), - [anon_sym_set] = ACTIONS(2426), - [anon_sym_declare] = ACTIONS(2426), - [anon_sym_public] = ACTIONS(2426), - [anon_sym_private] = ACTIONS(2426), - [anon_sym_protected] = ACTIONS(2426), - [anon_sym_override] = ACTIONS(2426), - [anon_sym_module] = ACTIONS(2426), - [anon_sym_any] = ACTIONS(2426), - [anon_sym_number] = ACTIONS(2426), - [anon_sym_boolean] = ACTIONS(2426), - [anon_sym_string] = ACTIONS(2426), - [anon_sym_symbol] = ACTIONS(2426), - [anon_sym_property] = ACTIONS(2426), - [anon_sym_signal] = ACTIONS(2426), - [anon_sym_on] = ACTIONS(2426), - [anon_sym_required] = ACTIONS(2426), - [anon_sym_component] = ACTIONS(2426), - [anon_sym_abstract] = ACTIONS(2426), - [anon_sym_interface] = ACTIONS(2426), - [anon_sym_enum] = ACTIONS(2426), - }, - [732] = { - [sym_identifier] = ACTIONS(2430), - [anon_sym_export] = ACTIONS(2430), - [anon_sym_default] = ACTIONS(2430), - [anon_sym_type] = ACTIONS(2430), - [anon_sym_namespace] = ACTIONS(2430), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_typeof] = ACTIONS(2430), - [anon_sym_import] = ACTIONS(2430), - [anon_sym_from] = ACTIONS(2430), - [anon_sym_var] = ACTIONS(2430), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_const] = ACTIONS(2430), - [anon_sym_BANG] = ACTIONS(2432), - [anon_sym_else] = ACTIONS(2430), - [anon_sym_if] = ACTIONS(2430), - [anon_sym_switch] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_await] = ACTIONS(2430), - [anon_sym_of] = ACTIONS(2430), - [anon_sym_while] = ACTIONS(2430), - [anon_sym_do] = ACTIONS(2430), - [anon_sym_try] = ACTIONS(2430), - [anon_sym_with] = ACTIONS(2430), - [anon_sym_break] = ACTIONS(2430), - [anon_sym_continue] = ACTIONS(2430), - [anon_sym_debugger] = ACTIONS(2430), - [anon_sym_return] = ACTIONS(2430), - [anon_sym_throw] = ACTIONS(2430), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_case] = ACTIONS(2430), - [anon_sym_yield] = ACTIONS(2430), - [anon_sym_LBRACK] = ACTIONS(2432), - [anon_sym_LTtemplate_GT] = ACTIONS(2432), - [anon_sym_LT] = ACTIONS(2430), - [anon_sym_SLASH] = ACTIONS(2430), - [anon_sym_class] = ACTIONS(2430), - [anon_sym_async] = ACTIONS(2430), - [anon_sym_function] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2430), - [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2430), - [anon_sym_TILDE] = ACTIONS(2432), - [anon_sym_void] = ACTIONS(2430), - [anon_sym_delete] = ACTIONS(2430), - [anon_sym_PLUS_PLUS] = ACTIONS(2432), - [anon_sym_DASH_DASH] = ACTIONS(2432), - [anon_sym_DQUOTE] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2432), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2432), - [sym_number] = ACTIONS(2432), - [sym_this] = ACTIONS(2430), - [sym_super] = ACTIONS(2430), - [sym_true] = ACTIONS(2430), - [sym_false] = ACTIONS(2430), - [sym_null] = ACTIONS(2430), - [sym_undefined] = ACTIONS(2430), - [anon_sym_AT] = ACTIONS(2432), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_readonly] = ACTIONS(2430), - [anon_sym_get] = ACTIONS(2430), - [anon_sym_set] = ACTIONS(2430), - [anon_sym_declare] = ACTIONS(2430), - [anon_sym_public] = ACTIONS(2430), - [anon_sym_private] = ACTIONS(2430), - [anon_sym_protected] = ACTIONS(2430), - [anon_sym_override] = ACTIONS(2430), - [anon_sym_module] = ACTIONS(2430), - [anon_sym_any] = ACTIONS(2430), - [anon_sym_number] = ACTIONS(2430), - [anon_sym_boolean] = ACTIONS(2430), - [anon_sym_string] = ACTIONS(2430), - [anon_sym_symbol] = ACTIONS(2430), - [anon_sym_property] = ACTIONS(2430), - [anon_sym_signal] = ACTIONS(2430), - [anon_sym_on] = ACTIONS(2430), - [anon_sym_required] = ACTIONS(2430), - [anon_sym_component] = ACTIONS(2430), - [anon_sym_abstract] = ACTIONS(2430), - [anon_sym_interface] = ACTIONS(2430), - [anon_sym_enum] = ACTIONS(2430), - }, - [733] = { - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_default] = ACTIONS(2434), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_RBRACE] = ACTIONS(2436), - [anon_sym_typeof] = ACTIONS(2434), - [anon_sym_import] = ACTIONS(2434), - [anon_sym_from] = ACTIONS(2434), - [anon_sym_var] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2436), - [anon_sym_else] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_switch] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_await] = ACTIONS(2434), - [anon_sym_of] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_do] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2434), - [anon_sym_with] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_debugger] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_throw] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2436), - [anon_sym_case] = ACTIONS(2434), - [anon_sym_yield] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(2436), - [anon_sym_LTtemplate_GT] = ACTIONS(2436), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_SLASH] = ACTIONS(2434), - [anon_sym_class] = ACTIONS(2434), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2434), - [anon_sym_new] = ACTIONS(2434), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_TILDE] = ACTIONS(2436), - [anon_sym_void] = ACTIONS(2434), - [anon_sym_delete] = ACTIONS(2434), - [anon_sym_PLUS_PLUS] = ACTIONS(2436), - [anon_sym_DASH_DASH] = ACTIONS(2436), - [anon_sym_DQUOTE] = ACTIONS(2436), - [anon_sym_SQUOTE] = ACTIONS(2436), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2436), - [sym_number] = ACTIONS(2436), - [sym_this] = ACTIONS(2434), - [sym_super] = ACTIONS(2434), - [sym_true] = ACTIONS(2434), - [sym_false] = ACTIONS(2434), - [sym_null] = ACTIONS(2434), - [sym_undefined] = ACTIONS(2434), - [anon_sym_AT] = ACTIONS(2436), - [anon_sym_static] = ACTIONS(2434), - [anon_sym_readonly] = ACTIONS(2434), - [anon_sym_get] = ACTIONS(2434), - [anon_sym_set] = ACTIONS(2434), - [anon_sym_declare] = ACTIONS(2434), - [anon_sym_public] = ACTIONS(2434), - [anon_sym_private] = ACTIONS(2434), - [anon_sym_protected] = ACTIONS(2434), - [anon_sym_override] = ACTIONS(2434), - [anon_sym_module] = ACTIONS(2434), - [anon_sym_any] = ACTIONS(2434), - [anon_sym_number] = ACTIONS(2434), - [anon_sym_boolean] = ACTIONS(2434), - [anon_sym_string] = ACTIONS(2434), - [anon_sym_symbol] = ACTIONS(2434), - [anon_sym_property] = ACTIONS(2434), - [anon_sym_signal] = ACTIONS(2434), - [anon_sym_on] = ACTIONS(2434), - [anon_sym_required] = ACTIONS(2434), - [anon_sym_component] = ACTIONS(2434), - [anon_sym_abstract] = ACTIONS(2434), - [anon_sym_interface] = ACTIONS(2434), - [anon_sym_enum] = ACTIONS(2434), - }, - [734] = { - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2438), - [anon_sym_default] = ACTIONS(2438), - [anon_sym_type] = ACTIONS(2438), - [anon_sym_namespace] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2440), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_typeof] = ACTIONS(2438), - [anon_sym_import] = ACTIONS(2438), - [anon_sym_from] = ACTIONS(2438), - [anon_sym_var] = ACTIONS(2438), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_const] = ACTIONS(2438), - [anon_sym_BANG] = ACTIONS(2440), - [anon_sym_else] = ACTIONS(2438), - [anon_sym_if] = ACTIONS(2438), - [anon_sym_switch] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_await] = ACTIONS(2438), - [anon_sym_of] = ACTIONS(2438), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_do] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2438), - [anon_sym_with] = ACTIONS(2438), - [anon_sym_break] = ACTIONS(2438), - [anon_sym_continue] = ACTIONS(2438), - [anon_sym_debugger] = ACTIONS(2438), - [anon_sym_return] = ACTIONS(2438), - [anon_sym_throw] = ACTIONS(2438), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_case] = ACTIONS(2438), - [anon_sym_yield] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2440), - [anon_sym_LTtemplate_GT] = ACTIONS(2440), - [anon_sym_LT] = ACTIONS(2438), - [anon_sym_SLASH] = ACTIONS(2438), - [anon_sym_class] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(2438), - [anon_sym_function] = ACTIONS(2438), - [anon_sym_new] = ACTIONS(2438), - [anon_sym_PLUS] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2438), - [anon_sym_TILDE] = ACTIONS(2440), - [anon_sym_void] = ACTIONS(2438), - [anon_sym_delete] = ACTIONS(2438), - [anon_sym_PLUS_PLUS] = ACTIONS(2440), - [anon_sym_DASH_DASH] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [anon_sym_SQUOTE] = ACTIONS(2440), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2440), - [sym_number] = ACTIONS(2440), - [sym_this] = ACTIONS(2438), - [sym_super] = ACTIONS(2438), - [sym_true] = ACTIONS(2438), - [sym_false] = ACTIONS(2438), - [sym_null] = ACTIONS(2438), - [sym_undefined] = ACTIONS(2438), - [anon_sym_AT] = ACTIONS(2440), - [anon_sym_static] = ACTIONS(2438), - [anon_sym_readonly] = ACTIONS(2438), - [anon_sym_get] = ACTIONS(2438), - [anon_sym_set] = ACTIONS(2438), - [anon_sym_declare] = ACTIONS(2438), - [anon_sym_public] = ACTIONS(2438), - [anon_sym_private] = ACTIONS(2438), - [anon_sym_protected] = ACTIONS(2438), - [anon_sym_override] = ACTIONS(2438), - [anon_sym_module] = ACTIONS(2438), - [anon_sym_any] = ACTIONS(2438), - [anon_sym_number] = ACTIONS(2438), - [anon_sym_boolean] = ACTIONS(2438), - [anon_sym_string] = ACTIONS(2438), - [anon_sym_symbol] = ACTIONS(2438), - [anon_sym_property] = ACTIONS(2438), - [anon_sym_signal] = ACTIONS(2438), - [anon_sym_on] = ACTIONS(2438), - [anon_sym_required] = ACTIONS(2438), - [anon_sym_component] = ACTIONS(2438), - [anon_sym_abstract] = ACTIONS(2438), - [anon_sym_interface] = ACTIONS(2438), - [anon_sym_enum] = ACTIONS(2438), - }, - [735] = { - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_default] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(2444), - [anon_sym_typeof] = ACTIONS(2442), - [anon_sym_import] = ACTIONS(2442), - [anon_sym_from] = ACTIONS(2442), - [anon_sym_var] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2444), - [anon_sym_else] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_switch] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_await] = ACTIONS(2442), - [anon_sym_of] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_do] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [anon_sym_with] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_throw] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_case] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2444), - [anon_sym_LTtemplate_GT] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_class] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_void] = ACTIONS(2442), - [anon_sym_delete] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2444), - [anon_sym_DASH_DASH] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2444), - [anon_sym_SQUOTE] = ACTIONS(2444), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2444), - [sym_number] = ACTIONS(2444), - [sym_this] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_undefined] = ACTIONS(2442), - [anon_sym_AT] = ACTIONS(2444), - [anon_sym_static] = ACTIONS(2442), - [anon_sym_readonly] = ACTIONS(2442), - [anon_sym_get] = ACTIONS(2442), - [anon_sym_set] = ACTIONS(2442), - [anon_sym_declare] = ACTIONS(2442), - [anon_sym_public] = ACTIONS(2442), - [anon_sym_private] = ACTIONS(2442), - [anon_sym_protected] = ACTIONS(2442), - [anon_sym_override] = ACTIONS(2442), - [anon_sym_module] = ACTIONS(2442), - [anon_sym_any] = ACTIONS(2442), - [anon_sym_number] = ACTIONS(2442), - [anon_sym_boolean] = ACTIONS(2442), - [anon_sym_string] = ACTIONS(2442), - [anon_sym_symbol] = ACTIONS(2442), - [anon_sym_property] = ACTIONS(2442), - [anon_sym_signal] = ACTIONS(2442), - [anon_sym_on] = ACTIONS(2442), - [anon_sym_required] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_interface] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - }, - [736] = { - [sym_identifier] = ACTIONS(2446), - [anon_sym_export] = ACTIONS(2446), - [anon_sym_default] = ACTIONS(2446), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_namespace] = ACTIONS(2446), - [anon_sym_LBRACE] = ACTIONS(2448), - [anon_sym_RBRACE] = ACTIONS(2448), - [anon_sym_typeof] = ACTIONS(2446), - [anon_sym_import] = ACTIONS(2446), - [anon_sym_from] = ACTIONS(2446), - [anon_sym_var] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2446), - [anon_sym_const] = ACTIONS(2446), - [anon_sym_BANG] = ACTIONS(2448), - [anon_sym_else] = ACTIONS(2446), - [anon_sym_if] = ACTIONS(2446), - [anon_sym_switch] = ACTIONS(2446), - [anon_sym_for] = ACTIONS(2446), - [anon_sym_LPAREN] = ACTIONS(2448), - [anon_sym_await] = ACTIONS(2446), - [anon_sym_of] = ACTIONS(2446), - [anon_sym_while] = ACTIONS(2446), - [anon_sym_do] = ACTIONS(2446), - [anon_sym_try] = ACTIONS(2446), - [anon_sym_with] = ACTIONS(2446), - [anon_sym_break] = ACTIONS(2446), - [anon_sym_continue] = ACTIONS(2446), - [anon_sym_debugger] = ACTIONS(2446), - [anon_sym_return] = ACTIONS(2446), - [anon_sym_throw] = ACTIONS(2446), - [anon_sym_SEMI] = ACTIONS(2448), - [anon_sym_case] = ACTIONS(2446), - [anon_sym_yield] = ACTIONS(2446), - [anon_sym_LBRACK] = ACTIONS(2448), - [anon_sym_LTtemplate_GT] = ACTIONS(2448), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_SLASH] = ACTIONS(2446), - [anon_sym_class] = ACTIONS(2446), - [anon_sym_async] = ACTIONS(2446), - [anon_sym_function] = ACTIONS(2446), - [anon_sym_new] = ACTIONS(2446), - [anon_sym_PLUS] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2446), - [anon_sym_TILDE] = ACTIONS(2448), - [anon_sym_void] = ACTIONS(2446), - [anon_sym_delete] = ACTIONS(2446), - [anon_sym_PLUS_PLUS] = ACTIONS(2448), - [anon_sym_DASH_DASH] = ACTIONS(2448), - [anon_sym_DQUOTE] = ACTIONS(2448), - [anon_sym_SQUOTE] = ACTIONS(2448), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2448), - [sym_number] = ACTIONS(2448), - [sym_this] = ACTIONS(2446), - [sym_super] = ACTIONS(2446), - [sym_true] = ACTIONS(2446), - [sym_false] = ACTIONS(2446), - [sym_null] = ACTIONS(2446), - [sym_undefined] = ACTIONS(2446), - [anon_sym_AT] = ACTIONS(2448), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_readonly] = ACTIONS(2446), - [anon_sym_get] = ACTIONS(2446), - [anon_sym_set] = ACTIONS(2446), - [anon_sym_declare] = ACTIONS(2446), - [anon_sym_public] = ACTIONS(2446), - [anon_sym_private] = ACTIONS(2446), - [anon_sym_protected] = ACTIONS(2446), - [anon_sym_override] = ACTIONS(2446), - [anon_sym_module] = ACTIONS(2446), - [anon_sym_any] = ACTIONS(2446), - [anon_sym_number] = ACTIONS(2446), - [anon_sym_boolean] = ACTIONS(2446), - [anon_sym_string] = ACTIONS(2446), - [anon_sym_symbol] = ACTIONS(2446), - [anon_sym_property] = ACTIONS(2446), - [anon_sym_signal] = ACTIONS(2446), - [anon_sym_on] = ACTIONS(2446), - [anon_sym_required] = ACTIONS(2446), - [anon_sym_component] = ACTIONS(2446), - [anon_sym_abstract] = ACTIONS(2446), - [anon_sym_interface] = ACTIONS(2446), - [anon_sym_enum] = ACTIONS(2446), - }, - [737] = { - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2450), - [anon_sym_default] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_namespace] = ACTIONS(2450), - [anon_sym_LBRACE] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2452), - [anon_sym_typeof] = ACTIONS(2450), - [anon_sym_import] = ACTIONS(2450), - [anon_sym_from] = ACTIONS(2450), - [anon_sym_var] = ACTIONS(2450), - [anon_sym_let] = ACTIONS(2450), - [anon_sym_const] = ACTIONS(2450), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_else] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_switch] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2452), - [anon_sym_await] = ACTIONS(2450), - [anon_sym_of] = ACTIONS(2450), - [anon_sym_while] = ACTIONS(2450), - [anon_sym_do] = ACTIONS(2450), - [anon_sym_try] = ACTIONS(2450), - [anon_sym_with] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_debugger] = ACTIONS(2450), - [anon_sym_return] = ACTIONS(2450), - [anon_sym_throw] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2452), - [anon_sym_case] = ACTIONS(2450), - [anon_sym_yield] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_LTtemplate_GT] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(2450), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_class] = ACTIONS(2450), - [anon_sym_async] = ACTIONS(2450), - [anon_sym_function] = ACTIONS(2450), - [anon_sym_new] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2450), - [anon_sym_TILDE] = ACTIONS(2452), - [anon_sym_void] = ACTIONS(2450), - [anon_sym_delete] = ACTIONS(2450), - [anon_sym_PLUS_PLUS] = ACTIONS(2452), - [anon_sym_DASH_DASH] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(2452), - [anon_sym_SQUOTE] = ACTIONS(2452), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2452), - [sym_number] = ACTIONS(2452), - [sym_this] = ACTIONS(2450), - [sym_super] = ACTIONS(2450), - [sym_true] = ACTIONS(2450), - [sym_false] = ACTIONS(2450), - [sym_null] = ACTIONS(2450), - [sym_undefined] = ACTIONS(2450), - [anon_sym_AT] = ACTIONS(2452), - [anon_sym_static] = ACTIONS(2450), - [anon_sym_readonly] = ACTIONS(2450), - [anon_sym_get] = ACTIONS(2450), - [anon_sym_set] = ACTIONS(2450), - [anon_sym_declare] = ACTIONS(2450), - [anon_sym_public] = ACTIONS(2450), - [anon_sym_private] = ACTIONS(2450), - [anon_sym_protected] = ACTIONS(2450), - [anon_sym_override] = ACTIONS(2450), - [anon_sym_module] = ACTIONS(2450), - [anon_sym_any] = ACTIONS(2450), - [anon_sym_number] = ACTIONS(2450), - [anon_sym_boolean] = ACTIONS(2450), - [anon_sym_string] = ACTIONS(2450), - [anon_sym_symbol] = ACTIONS(2450), - [anon_sym_property] = ACTIONS(2450), - [anon_sym_signal] = ACTIONS(2450), - [anon_sym_on] = ACTIONS(2450), - [anon_sym_required] = ACTIONS(2450), - [anon_sym_component] = ACTIONS(2450), - [anon_sym_abstract] = ACTIONS(2450), - [anon_sym_interface] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - }, - [738] = { - [sym_identifier] = ACTIONS(2454), - [anon_sym_export] = ACTIONS(2454), - [anon_sym_default] = ACTIONS(2454), - [anon_sym_type] = ACTIONS(2454), - [anon_sym_namespace] = ACTIONS(2454), + [sym_html_comment] = ACTIONS(5), + }, + [1757] = { + [sym_comment] = STATE(1757), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1758] = { + [sym_comment] = STATE(1758), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1759] = { + [sym_comment] = STATE(1759), + [sym_identifier] = ACTIONS(3590), + [anon_sym_export] = ACTIONS(3590), + [anon_sym_type] = ACTIONS(3590), + [anon_sym_namespace] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3590), + [anon_sym_RBRACE] = ACTIONS(3590), + [anon_sym_typeof] = ACTIONS(3590), + [anon_sym_import] = ACTIONS(3590), + [anon_sym_from] = ACTIONS(3590), + [anon_sym_with] = ACTIONS(3590), + [anon_sym_var] = ACTIONS(3590), + [anon_sym_let] = ACTIONS(3590), + [anon_sym_const] = ACTIONS(3590), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_if] = ACTIONS(3590), + [anon_sym_switch] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3590), + [anon_sym_await] = ACTIONS(3590), + [anon_sym_of] = ACTIONS(3590), + [anon_sym_while] = ACTIONS(3590), + [anon_sym_do] = ACTIONS(3590), + [anon_sym_try] = ACTIONS(3590), + [anon_sym_break] = ACTIONS(3590), + [anon_sym_continue] = ACTIONS(3590), + [anon_sym_debugger] = ACTIONS(3590), + [anon_sym_return] = ACTIONS(3590), + [anon_sym_throw] = ACTIONS(3590), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_LTtemplate_GT] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3590), + [anon_sym_SQUOTE] = ACTIONS(3590), + [anon_sym_class] = ACTIONS(3590), + [anon_sym_async] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3590), + [anon_sym_using] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3590), + [anon_sym_SLASH] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_void] = ACTIONS(3590), + [anon_sym_delete] = ACTIONS(3590), + [anon_sym_PLUS_PLUS] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3590), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3590), + [sym_number] = ACTIONS(3590), + [sym_private_property_identifier] = ACTIONS(3590), + [sym_this] = ACTIONS(3590), + [sym_super] = ACTIONS(3590), + [sym_true] = ACTIONS(3590), + [sym_false] = ACTIONS(3590), + [sym_null] = ACTIONS(3590), + [sym_undefined] = ACTIONS(3590), + [anon_sym_AT] = ACTIONS(3590), + [anon_sym_static] = ACTIONS(3590), + [anon_sym_readonly] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(3590), + [anon_sym_set] = ACTIONS(3590), + [anon_sym_declare] = ACTIONS(3590), + [anon_sym_public] = ACTIONS(3590), + [anon_sym_private] = ACTIONS(3590), + [anon_sym_protected] = ACTIONS(3590), + [anon_sym_override] = ACTIONS(3590), + [anon_sym_module] = ACTIONS(3590), + [anon_sym_any] = ACTIONS(3590), + [anon_sym_number] = ACTIONS(3590), + [anon_sym_boolean] = ACTIONS(3590), + [anon_sym_string] = ACTIONS(3590), + [anon_sym_symbol] = ACTIONS(3590), + [anon_sym_object] = ACTIONS(3590), + [anon_sym_property] = ACTIONS(3590), + [anon_sym_signal] = ACTIONS(3590), + [anon_sym_on] = ACTIONS(3590), + [anon_sym_required] = ACTIONS(3590), + [anon_sym_component] = ACTIONS(3590), + [anon_sym_abstract] = ACTIONS(3590), + [anon_sym_interface] = ACTIONS(3590), + [anon_sym_enum] = ACTIONS(3590), + [sym_html_comment] = ACTIONS(5), + }, + [1760] = { + [sym_comment] = STATE(1760), + [sym_identifier] = ACTIONS(3508), + [anon_sym_export] = ACTIONS(3508), + [anon_sym_type] = ACTIONS(3508), + [anon_sym_namespace] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3508), + [anon_sym_RBRACE] = ACTIONS(3508), + [anon_sym_typeof] = ACTIONS(3508), + [anon_sym_import] = ACTIONS(3508), + [anon_sym_from] = ACTIONS(3508), + [anon_sym_with] = ACTIONS(3508), + [anon_sym_var] = ACTIONS(3508), + [anon_sym_let] = ACTIONS(3508), + [anon_sym_const] = ACTIONS(3508), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_if] = ACTIONS(3508), + [anon_sym_switch] = ACTIONS(3508), + [anon_sym_for] = ACTIONS(3508), + [anon_sym_LPAREN] = ACTIONS(3508), + [anon_sym_await] = ACTIONS(3508), + [anon_sym_of] = ACTIONS(3508), + [anon_sym_while] = ACTIONS(3508), + [anon_sym_do] = ACTIONS(3508), + [anon_sym_try] = ACTIONS(3508), + [anon_sym_break] = ACTIONS(3508), + [anon_sym_continue] = ACTIONS(3508), + [anon_sym_debugger] = ACTIONS(3508), + [anon_sym_return] = ACTIONS(3508), + [anon_sym_throw] = ACTIONS(3508), + [anon_sym_SEMI] = ACTIONS(3508), + [anon_sym_yield] = ACTIONS(3508), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LTtemplate_GT] = ACTIONS(3508), + [anon_sym_DQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3508), + [anon_sym_class] = ACTIONS(3508), + [anon_sym_async] = ACTIONS(3508), + [anon_sym_function] = ACTIONS(3508), + [anon_sym_new] = ACTIONS(3508), + [anon_sym_using] = ACTIONS(3508), + [anon_sym_PLUS] = ACTIONS(3508), + [anon_sym_DASH] = ACTIONS(3508), + [anon_sym_SLASH] = ACTIONS(3508), + [anon_sym_LT] = ACTIONS(3508), + [anon_sym_TILDE] = ACTIONS(3508), + [anon_sym_void] = ACTIONS(3508), + [anon_sym_delete] = ACTIONS(3508), + [anon_sym_PLUS_PLUS] = ACTIONS(3508), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3508), + [sym_number] = ACTIONS(3508), + [sym_private_property_identifier] = ACTIONS(3508), + [sym_this] = ACTIONS(3508), + [sym_super] = ACTIONS(3508), + [sym_true] = ACTIONS(3508), + [sym_false] = ACTIONS(3508), + [sym_null] = ACTIONS(3508), + [sym_undefined] = ACTIONS(3508), + [anon_sym_AT] = ACTIONS(3508), + [anon_sym_static] = ACTIONS(3508), + [anon_sym_readonly] = ACTIONS(3508), + [anon_sym_get] = ACTIONS(3508), + [anon_sym_set] = ACTIONS(3508), + [anon_sym_declare] = ACTIONS(3508), + [anon_sym_public] = ACTIONS(3508), + [anon_sym_private] = ACTIONS(3508), + [anon_sym_protected] = ACTIONS(3508), + [anon_sym_override] = ACTIONS(3508), + [anon_sym_module] = ACTIONS(3508), + [anon_sym_any] = ACTIONS(3508), + [anon_sym_number] = ACTIONS(3508), + [anon_sym_boolean] = ACTIONS(3508), + [anon_sym_string] = ACTIONS(3508), + [anon_sym_symbol] = ACTIONS(3508), + [anon_sym_object] = ACTIONS(3508), + [anon_sym_property] = ACTIONS(3508), + [anon_sym_signal] = ACTIONS(3508), + [anon_sym_on] = ACTIONS(3508), + [anon_sym_required] = ACTIONS(3508), + [anon_sym_component] = ACTIONS(3508), + [anon_sym_abstract] = ACTIONS(3508), + [anon_sym_interface] = ACTIONS(3508), + [anon_sym_enum] = ACTIONS(3508), + [sym_html_comment] = ACTIONS(5), + }, + [1761] = { + [sym_comment] = STATE(1761), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), + [sym_html_comment] = ACTIONS(5), + }, + [1762] = { + [sym_comment] = STATE(1762), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1763] = { + [sym_comment] = STATE(1763), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1764] = { + [sym_comment] = STATE(1764), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_RBRACE] = ACTIONS(3478), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_from] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_of] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LTtemplate_GT] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3478), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), + [sym_private_property_identifier] = ACTIONS(3478), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_override] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_object] = ACTIONS(3478), + [anon_sym_property] = ACTIONS(3478), + [anon_sym_signal] = ACTIONS(3478), + [anon_sym_on] = ACTIONS(3478), + [anon_sym_required] = ACTIONS(3478), + [anon_sym_component] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [sym_html_comment] = ACTIONS(5), + }, + [1765] = { + [sym_comment] = STATE(1765), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [sym_html_comment] = ACTIONS(5), + }, + [1766] = { + [sym_comment] = STATE(1766), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [sym_html_comment] = ACTIONS(5), + }, + [1767] = { + [sym_comment] = STATE(1767), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [sym_html_comment] = ACTIONS(5), + }, + [1768] = { + [sym_comment] = STATE(1768), + [sym_identifier] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_type] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_typeof] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_from] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3684), + [anon_sym_var] = ACTIONS(3684), + [anon_sym_let] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3684), + [anon_sym_await] = ACTIONS(3684), + [anon_sym_of] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_debugger] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_LTtemplate_GT] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_async] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_void] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3684), + [sym_number] = ACTIONS(3684), + [sym_private_property_identifier] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [sym_super] = ACTIONS(3684), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_AT] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(3684), + [anon_sym_set] = ACTIONS(3684), + [anon_sym_declare] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_any] = ACTIONS(3684), + [anon_sym_number] = ACTIONS(3684), + [anon_sym_boolean] = ACTIONS(3684), + [anon_sym_string] = ACTIONS(3684), + [anon_sym_symbol] = ACTIONS(3684), + [anon_sym_object] = ACTIONS(3684), + [anon_sym_property] = ACTIONS(3684), + [anon_sym_signal] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3684), + [anon_sym_required] = ACTIONS(3684), + [anon_sym_component] = ACTIONS(3684), + [anon_sym_abstract] = ACTIONS(3684), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), + [sym_html_comment] = ACTIONS(5), + }, + [1769] = { + [sym_comment] = STATE(1769), + [sym_identifier] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_type] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_RBRACE] = ACTIONS(3662), + [anon_sym_typeof] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_from] = ACTIONS(3662), + [anon_sym_with] = ACTIONS(3662), + [anon_sym_var] = ACTIONS(3662), + [anon_sym_let] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3662), + [anon_sym_await] = ACTIONS(3662), + [anon_sym_of] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_debugger] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_LTtemplate_GT] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_async] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_void] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3662), + [sym_number] = ACTIONS(3662), + [sym_private_property_identifier] = ACTIONS(3662), + [sym_this] = ACTIONS(3662), + [sym_super] = ACTIONS(3662), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [sym_null] = ACTIONS(3662), + [sym_undefined] = ACTIONS(3662), + [anon_sym_AT] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_readonly] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(3662), + [anon_sym_set] = ACTIONS(3662), + [anon_sym_declare] = ACTIONS(3662), + [anon_sym_public] = ACTIONS(3662), + [anon_sym_private] = ACTIONS(3662), + [anon_sym_protected] = ACTIONS(3662), + [anon_sym_override] = ACTIONS(3662), + [anon_sym_module] = ACTIONS(3662), + [anon_sym_any] = ACTIONS(3662), + [anon_sym_number] = ACTIONS(3662), + [anon_sym_boolean] = ACTIONS(3662), + [anon_sym_string] = ACTIONS(3662), + [anon_sym_symbol] = ACTIONS(3662), + [anon_sym_object] = ACTIONS(3662), + [anon_sym_property] = ACTIONS(3662), + [anon_sym_signal] = ACTIONS(3662), + [anon_sym_on] = ACTIONS(3662), + [anon_sym_required] = ACTIONS(3662), + [anon_sym_component] = ACTIONS(3662), + [anon_sym_abstract] = ACTIONS(3662), + [anon_sym_interface] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [sym_html_comment] = ACTIONS(5), + }, + [1770] = { + [sym_comment] = STATE(1770), + [sym_identifier] = ACTIONS(3524), + [anon_sym_export] = ACTIONS(3524), + [anon_sym_type] = ACTIONS(3524), + [anon_sym_namespace] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_typeof] = ACTIONS(3524), + [anon_sym_import] = ACTIONS(3524), + [anon_sym_from] = ACTIONS(3524), + [anon_sym_with] = ACTIONS(3524), + [anon_sym_var] = ACTIONS(3524), + [anon_sym_let] = ACTIONS(3524), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_if] = ACTIONS(3524), + [anon_sym_switch] = ACTIONS(3524), + [anon_sym_for] = ACTIONS(3524), + [anon_sym_LPAREN] = ACTIONS(3524), + [anon_sym_await] = ACTIONS(3524), + [anon_sym_of] = ACTIONS(3524), + [anon_sym_while] = ACTIONS(3524), + [anon_sym_do] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3524), + [anon_sym_break] = ACTIONS(3524), + [anon_sym_continue] = ACTIONS(3524), + [anon_sym_debugger] = ACTIONS(3524), + [anon_sym_return] = ACTIONS(3524), + [anon_sym_throw] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym_yield] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_LTtemplate_GT] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3524), + [anon_sym_class] = ACTIONS(3524), + [anon_sym_async] = ACTIONS(3524), + [anon_sym_function] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_using] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_void] = ACTIONS(3524), + [anon_sym_delete] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_DASH_DASH] = ACTIONS(3524), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3524), + [sym_number] = ACTIONS(3524), + [sym_private_property_identifier] = ACTIONS(3524), + [sym_this] = ACTIONS(3524), + [sym_super] = ACTIONS(3524), + [sym_true] = ACTIONS(3524), + [sym_false] = ACTIONS(3524), + [sym_null] = ACTIONS(3524), + [sym_undefined] = ACTIONS(3524), + [anon_sym_AT] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_readonly] = ACTIONS(3524), + [anon_sym_get] = ACTIONS(3524), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_declare] = ACTIONS(3524), + [anon_sym_public] = ACTIONS(3524), + [anon_sym_private] = ACTIONS(3524), + [anon_sym_protected] = ACTIONS(3524), + [anon_sym_override] = ACTIONS(3524), + [anon_sym_module] = ACTIONS(3524), + [anon_sym_any] = ACTIONS(3524), + [anon_sym_number] = ACTIONS(3524), + [anon_sym_boolean] = ACTIONS(3524), + [anon_sym_string] = ACTIONS(3524), + [anon_sym_symbol] = ACTIONS(3524), + [anon_sym_object] = ACTIONS(3524), + [anon_sym_property] = ACTIONS(3524), + [anon_sym_signal] = ACTIONS(3524), + [anon_sym_on] = ACTIONS(3524), + [anon_sym_required] = ACTIONS(3524), + [anon_sym_component] = ACTIONS(3524), + [anon_sym_abstract] = ACTIONS(3524), + [anon_sym_interface] = ACTIONS(3524), + [anon_sym_enum] = ACTIONS(3524), + [sym_html_comment] = ACTIONS(5), + }, + [1771] = { + [sym_comment] = STATE(1771), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_LBRACE] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(2356), + [anon_sym_import] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_with] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_const] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_if] = ACTIONS(2356), + [anon_sym_switch] = ACTIONS(2356), + [anon_sym_for] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_await] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_while] = ACTIONS(2356), + [anon_sym_do] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2356), + [anon_sym_break] = ACTIONS(2356), + [anon_sym_continue] = ACTIONS(2356), + [anon_sym_debugger] = ACTIONS(2356), + [anon_sym_return] = ACTIONS(2356), + [anon_sym_throw] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_yield] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2356), + [anon_sym_SQUOTE] = ACTIONS(2356), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_new] = ACTIONS(2356), + [anon_sym_using] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_TILDE] = ACTIONS(2356), + [anon_sym_void] = ACTIONS(2356), + [anon_sym_delete] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [sym_number] = ACTIONS(2356), + [sym_private_property_identifier] = ACTIONS(2356), + [sym_this] = ACTIONS(2356), + [sym_super] = ACTIONS(2356), + [sym_true] = ACTIONS(2356), + [sym_false] = ACTIONS(2356), + [sym_null] = ACTIONS(2356), + [sym_undefined] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_abstract] = ACTIONS(2356), + [anon_sym_interface] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym_html_comment] = ACTIONS(5), + }, + [1772] = { + [sym_comment] = STATE(1772), + [sym_identifier] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_type] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_typeof] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_from] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [anon_sym_var] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_await] = ACTIONS(3664), + [anon_sym_of] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_debugger] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_yield] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_LTtemplate_GT] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_async] = ACTIONS(3664), + [anon_sym_function] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_void] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3664), + [sym_number] = ACTIONS(3664), + [sym_private_property_identifier] = ACTIONS(3664), + [sym_this] = ACTIONS(3664), + [sym_super] = ACTIONS(3664), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [sym_null] = ACTIONS(3664), + [sym_undefined] = ACTIONS(3664), + [anon_sym_AT] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_readonly] = ACTIONS(3664), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3664), + [anon_sym_declare] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_override] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_any] = ACTIONS(3664), + [anon_sym_number] = ACTIONS(3664), + [anon_sym_boolean] = ACTIONS(3664), + [anon_sym_string] = ACTIONS(3664), + [anon_sym_symbol] = ACTIONS(3664), + [anon_sym_object] = ACTIONS(3664), + [anon_sym_property] = ACTIONS(3664), + [anon_sym_signal] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_required] = ACTIONS(3664), + [anon_sym_component] = ACTIONS(3664), + [anon_sym_abstract] = ACTIONS(3664), + [anon_sym_interface] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [sym_html_comment] = ACTIONS(5), + }, + [1773] = { + [sym_comment] = STATE(1773), + [sym_identifier] = ACTIONS(3674), + [anon_sym_export] = ACTIONS(3674), + [anon_sym_type] = ACTIONS(3674), + [anon_sym_namespace] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_typeof] = ACTIONS(3674), + [anon_sym_import] = ACTIONS(3674), + [anon_sym_from] = ACTIONS(3674), + [anon_sym_with] = ACTIONS(3674), + [anon_sym_var] = ACTIONS(3674), + [anon_sym_let] = ACTIONS(3674), + [anon_sym_const] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_if] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_for] = ACTIONS(3674), + [anon_sym_LPAREN] = ACTIONS(3674), + [anon_sym_await] = ACTIONS(3674), + [anon_sym_of] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_do] = ACTIONS(3674), + [anon_sym_try] = ACTIONS(3674), + [anon_sym_break] = ACTIONS(3674), + [anon_sym_continue] = ACTIONS(3674), + [anon_sym_debugger] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3674), + [anon_sym_throw] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_yield] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_LTtemplate_GT] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_class] = ACTIONS(3674), + [anon_sym_async] = ACTIONS(3674), + [anon_sym_function] = ACTIONS(3674), + [anon_sym_new] = ACTIONS(3674), + [anon_sym_using] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_void] = ACTIONS(3674), + [anon_sym_delete] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3674), + [sym_number] = ACTIONS(3674), + [sym_private_property_identifier] = ACTIONS(3674), + [sym_this] = ACTIONS(3674), + [sym_super] = ACTIONS(3674), + [sym_true] = ACTIONS(3674), + [sym_false] = ACTIONS(3674), + [sym_null] = ACTIONS(3674), + [sym_undefined] = ACTIONS(3674), + [anon_sym_AT] = ACTIONS(3674), + [anon_sym_static] = ACTIONS(3674), + [anon_sym_readonly] = ACTIONS(3674), + [anon_sym_get] = ACTIONS(3674), + [anon_sym_set] = ACTIONS(3674), + [anon_sym_declare] = ACTIONS(3674), + [anon_sym_public] = ACTIONS(3674), + [anon_sym_private] = ACTIONS(3674), + [anon_sym_protected] = ACTIONS(3674), + [anon_sym_override] = ACTIONS(3674), + [anon_sym_module] = ACTIONS(3674), + [anon_sym_any] = ACTIONS(3674), + [anon_sym_number] = ACTIONS(3674), + [anon_sym_boolean] = ACTIONS(3674), + [anon_sym_string] = ACTIONS(3674), + [anon_sym_symbol] = ACTIONS(3674), + [anon_sym_object] = ACTIONS(3674), + [anon_sym_property] = ACTIONS(3674), + [anon_sym_signal] = ACTIONS(3674), + [anon_sym_on] = ACTIONS(3674), + [anon_sym_required] = ACTIONS(3674), + [anon_sym_component] = ACTIONS(3674), + [anon_sym_abstract] = ACTIONS(3674), + [anon_sym_interface] = ACTIONS(3674), + [anon_sym_enum] = ACTIONS(3674), + [sym_html_comment] = ACTIONS(5), + }, + [1774] = { + [sym_comment] = STATE(1774), + [sym_identifier] = ACTIONS(3672), + [anon_sym_export] = ACTIONS(3672), + [anon_sym_type] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_typeof] = ACTIONS(3672), + [anon_sym_import] = ACTIONS(3672), + [anon_sym_from] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3672), + [anon_sym_var] = ACTIONS(3672), + [anon_sym_let] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_await] = ACTIONS(3672), + [anon_sym_of] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_debugger] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_yield] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_LTtemplate_GT] = ACTIONS(3672), + [anon_sym_DQUOTE] = ACTIONS(3672), + [anon_sym_SQUOTE] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_async] = ACTIONS(3672), + [anon_sym_function] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3672), + [anon_sym_void] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3672), + [sym_number] = ACTIONS(3672), + [sym_private_property_identifier] = ACTIONS(3672), + [sym_this] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [sym_null] = ACTIONS(3672), + [sym_undefined] = ACTIONS(3672), + [anon_sym_AT] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_readonly] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(3672), + [anon_sym_set] = ACTIONS(3672), + [anon_sym_declare] = ACTIONS(3672), + [anon_sym_public] = ACTIONS(3672), + [anon_sym_private] = ACTIONS(3672), + [anon_sym_protected] = ACTIONS(3672), + [anon_sym_override] = ACTIONS(3672), + [anon_sym_module] = ACTIONS(3672), + [anon_sym_any] = ACTIONS(3672), + [anon_sym_number] = ACTIONS(3672), + [anon_sym_boolean] = ACTIONS(3672), + [anon_sym_string] = ACTIONS(3672), + [anon_sym_symbol] = ACTIONS(3672), + [anon_sym_object] = ACTIONS(3672), + [anon_sym_property] = ACTIONS(3672), + [anon_sym_signal] = ACTIONS(3672), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_required] = ACTIONS(3672), + [anon_sym_component] = ACTIONS(3672), + [anon_sym_abstract] = ACTIONS(3672), + [anon_sym_interface] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [sym_html_comment] = ACTIONS(5), + }, + [1775] = { + [sym_comment] = STATE(1775), + [sym_identifier] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_from] = ACTIONS(3660), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_var] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_await] = ACTIONS(3660), + [anon_sym_of] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_debugger] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LTtemplate_GT] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_async] = ACTIONS(3660), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_SLASH] = ACTIONS(3660), + [anon_sym_LT] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_void] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3660), + [sym_number] = ACTIONS(3660), + [sym_private_property_identifier] = ACTIONS(3660), + [sym_this] = ACTIONS(3660), + [sym_super] = ACTIONS(3660), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_null] = ACTIONS(3660), + [sym_undefined] = ACTIONS(3660), + [anon_sym_AT] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_readonly] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(3660), + [anon_sym_set] = ACTIONS(3660), + [anon_sym_declare] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_override] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_any] = ACTIONS(3660), + [anon_sym_number] = ACTIONS(3660), + [anon_sym_boolean] = ACTIONS(3660), + [anon_sym_string] = ACTIONS(3660), + [anon_sym_symbol] = ACTIONS(3660), + [anon_sym_object] = ACTIONS(3660), + [anon_sym_property] = ACTIONS(3660), + [anon_sym_signal] = ACTIONS(3660), + [anon_sym_on] = ACTIONS(3660), + [anon_sym_required] = ACTIONS(3660), + [anon_sym_component] = ACTIONS(3660), + [anon_sym_abstract] = ACTIONS(3660), + [anon_sym_interface] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [sym_html_comment] = ACTIONS(5), + }, + [1776] = { + [sym_comment] = STATE(1776), + [sym_identifier] = ACTIONS(3574), + [anon_sym_export] = ACTIONS(3574), + [anon_sym_type] = ACTIONS(3574), + [anon_sym_namespace] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_RBRACE] = ACTIONS(3574), + [anon_sym_typeof] = ACTIONS(3574), + [anon_sym_import] = ACTIONS(3574), + [anon_sym_from] = ACTIONS(3574), + [anon_sym_with] = ACTIONS(3574), + [anon_sym_var] = ACTIONS(3574), + [anon_sym_let] = ACTIONS(3574), + [anon_sym_const] = ACTIONS(3574), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_switch] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_LPAREN] = ACTIONS(3574), + [anon_sym_await] = ACTIONS(3574), + [anon_sym_of] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_do] = ACTIONS(3574), + [anon_sym_try] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_debugger] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_throw] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym_yield] = ACTIONS(3574), + [anon_sym_LBRACK] = ACTIONS(3574), + [anon_sym_LTtemplate_GT] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [anon_sym_SQUOTE] = ACTIONS(3574), + [anon_sym_class] = ACTIONS(3574), + [anon_sym_async] = ACTIONS(3574), + [anon_sym_function] = ACTIONS(3574), + [anon_sym_new] = ACTIONS(3574), + [anon_sym_using] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3574), + [anon_sym_SLASH] = ACTIONS(3574), + [anon_sym_LT] = ACTIONS(3574), + [anon_sym_TILDE] = ACTIONS(3574), + [anon_sym_void] = ACTIONS(3574), + [anon_sym_delete] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3574), + [sym_number] = ACTIONS(3574), + [sym_private_property_identifier] = ACTIONS(3574), + [sym_this] = ACTIONS(3574), + [sym_super] = ACTIONS(3574), + [sym_true] = ACTIONS(3574), + [sym_false] = ACTIONS(3574), + [sym_null] = ACTIONS(3574), + [sym_undefined] = ACTIONS(3574), + [anon_sym_AT] = ACTIONS(3574), + [anon_sym_static] = ACTIONS(3574), + [anon_sym_readonly] = ACTIONS(3574), + [anon_sym_get] = ACTIONS(3574), + [anon_sym_set] = ACTIONS(3574), + [anon_sym_declare] = ACTIONS(3574), + [anon_sym_public] = ACTIONS(3574), + [anon_sym_private] = ACTIONS(3574), + [anon_sym_protected] = ACTIONS(3574), + [anon_sym_override] = ACTIONS(3574), + [anon_sym_module] = ACTIONS(3574), + [anon_sym_any] = ACTIONS(3574), + [anon_sym_number] = ACTIONS(3574), + [anon_sym_boolean] = ACTIONS(3574), + [anon_sym_string] = ACTIONS(3574), + [anon_sym_symbol] = ACTIONS(3574), + [anon_sym_object] = ACTIONS(3574), + [anon_sym_property] = ACTIONS(3574), + [anon_sym_signal] = ACTIONS(3574), + [anon_sym_on] = ACTIONS(3574), + [anon_sym_required] = ACTIONS(3574), + [anon_sym_component] = ACTIONS(3574), + [anon_sym_abstract] = ACTIONS(3574), + [anon_sym_interface] = ACTIONS(3574), + [anon_sym_enum] = ACTIONS(3574), + [sym_html_comment] = ACTIONS(5), + }, + [1777] = { + [sym_comment] = STATE(1777), + [sym_identifier] = ACTIONS(3670), + [anon_sym_export] = ACTIONS(3670), + [anon_sym_type] = ACTIONS(3670), + [anon_sym_namespace] = ACTIONS(3670), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_typeof] = ACTIONS(3670), + [anon_sym_import] = ACTIONS(3670), + [anon_sym_from] = ACTIONS(3670), + [anon_sym_with] = ACTIONS(3670), + [anon_sym_var] = ACTIONS(3670), + [anon_sym_let] = ACTIONS(3670), + [anon_sym_const] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_for] = ACTIONS(3670), + [anon_sym_LPAREN] = ACTIONS(3670), + [anon_sym_await] = ACTIONS(3670), + [anon_sym_of] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(3670), + [anon_sym_do] = ACTIONS(3670), + [anon_sym_try] = ACTIONS(3670), + [anon_sym_break] = ACTIONS(3670), + [anon_sym_continue] = ACTIONS(3670), + [anon_sym_debugger] = ACTIONS(3670), + [anon_sym_return] = ACTIONS(3670), + [anon_sym_throw] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym_yield] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_LTtemplate_GT] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_class] = ACTIONS(3670), + [anon_sym_async] = ACTIONS(3670), + [anon_sym_function] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3670), + [anon_sym_using] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_void] = ACTIONS(3670), + [anon_sym_delete] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3670), + [sym_number] = ACTIONS(3670), + [sym_private_property_identifier] = ACTIONS(3670), + [sym_this] = ACTIONS(3670), + [sym_super] = ACTIONS(3670), + [sym_true] = ACTIONS(3670), + [sym_false] = ACTIONS(3670), + [sym_null] = ACTIONS(3670), + [sym_undefined] = ACTIONS(3670), + [anon_sym_AT] = ACTIONS(3670), + [anon_sym_static] = ACTIONS(3670), + [anon_sym_readonly] = ACTIONS(3670), + [anon_sym_get] = ACTIONS(3670), + [anon_sym_set] = ACTIONS(3670), + [anon_sym_declare] = ACTIONS(3670), + [anon_sym_public] = ACTIONS(3670), + [anon_sym_private] = ACTIONS(3670), + [anon_sym_protected] = ACTIONS(3670), + [anon_sym_override] = ACTIONS(3670), + [anon_sym_module] = ACTIONS(3670), + [anon_sym_any] = ACTIONS(3670), + [anon_sym_number] = ACTIONS(3670), + [anon_sym_boolean] = ACTIONS(3670), + [anon_sym_string] = ACTIONS(3670), + [anon_sym_symbol] = ACTIONS(3670), + [anon_sym_object] = ACTIONS(3670), + [anon_sym_property] = ACTIONS(3670), + [anon_sym_signal] = ACTIONS(3670), + [anon_sym_on] = ACTIONS(3670), + [anon_sym_required] = ACTIONS(3670), + [anon_sym_component] = ACTIONS(3670), + [anon_sym_abstract] = ACTIONS(3670), + [anon_sym_interface] = ACTIONS(3670), + [anon_sym_enum] = ACTIONS(3670), + [sym_html_comment] = ACTIONS(5), + }, + [1778] = { + [sym_comment] = STATE(1778), + [sym_identifier] = ACTIONS(3572), + [anon_sym_export] = ACTIONS(3572), + [anon_sym_type] = ACTIONS(3572), + [anon_sym_namespace] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_RBRACE] = ACTIONS(3572), + [anon_sym_typeof] = ACTIONS(3572), + [anon_sym_import] = ACTIONS(3572), + [anon_sym_from] = ACTIONS(3572), + [anon_sym_with] = ACTIONS(3572), + [anon_sym_var] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_const] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_switch] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_await] = ACTIONS(3572), + [anon_sym_of] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_break] = ACTIONS(3572), + [anon_sym_continue] = ACTIONS(3572), + [anon_sym_debugger] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_throw] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LTtemplate_GT] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_class] = ACTIONS(3572), + [anon_sym_async] = ACTIONS(3572), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_using] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_SLASH] = ACTIONS(3572), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_void] = ACTIONS(3572), + [anon_sym_delete] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3572), + [sym_number] = ACTIONS(3572), + [sym_private_property_identifier] = ACTIONS(3572), + [sym_this] = ACTIONS(3572), + [sym_super] = ACTIONS(3572), + [sym_true] = ACTIONS(3572), + [sym_false] = ACTIONS(3572), + [sym_null] = ACTIONS(3572), + [sym_undefined] = ACTIONS(3572), + [anon_sym_AT] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3572), + [anon_sym_readonly] = ACTIONS(3572), + [anon_sym_get] = ACTIONS(3572), + [anon_sym_set] = ACTIONS(3572), + [anon_sym_declare] = ACTIONS(3572), + [anon_sym_public] = ACTIONS(3572), + [anon_sym_private] = ACTIONS(3572), + [anon_sym_protected] = ACTIONS(3572), + [anon_sym_override] = ACTIONS(3572), + [anon_sym_module] = ACTIONS(3572), + [anon_sym_any] = ACTIONS(3572), + [anon_sym_number] = ACTIONS(3572), + [anon_sym_boolean] = ACTIONS(3572), + [anon_sym_string] = ACTIONS(3572), + [anon_sym_symbol] = ACTIONS(3572), + [anon_sym_object] = ACTIONS(3572), + [anon_sym_property] = ACTIONS(3572), + [anon_sym_signal] = ACTIONS(3572), + [anon_sym_on] = ACTIONS(3572), + [anon_sym_required] = ACTIONS(3572), + [anon_sym_component] = ACTIONS(3572), + [anon_sym_abstract] = ACTIONS(3572), + [anon_sym_interface] = ACTIONS(3572), + [anon_sym_enum] = ACTIONS(3572), + [sym_html_comment] = ACTIONS(5), + }, + [1779] = { + [sym_comment] = STATE(1779), + [sym_identifier] = ACTIONS(3666), + [anon_sym_export] = ACTIONS(3666), + [anon_sym_type] = ACTIONS(3666), + [anon_sym_namespace] = ACTIONS(3666), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_typeof] = ACTIONS(3666), + [anon_sym_import] = ACTIONS(3666), + [anon_sym_from] = ACTIONS(3666), + [anon_sym_with] = ACTIONS(3666), + [anon_sym_var] = ACTIONS(3666), + [anon_sym_let] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_if] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_for] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_await] = ACTIONS(3666), + [anon_sym_of] = ACTIONS(3666), + [anon_sym_while] = ACTIONS(3666), + [anon_sym_do] = ACTIONS(3666), + [anon_sym_try] = ACTIONS(3666), + [anon_sym_break] = ACTIONS(3666), + [anon_sym_continue] = ACTIONS(3666), + [anon_sym_debugger] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3666), + [anon_sym_throw] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym_yield] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_LTtemplate_GT] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_async] = ACTIONS(3666), + [anon_sym_function] = ACTIONS(3666), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_void] = ACTIONS(3666), + [anon_sym_delete] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3666), + [sym_number] = ACTIONS(3666), + [sym_private_property_identifier] = ACTIONS(3666), + [sym_this] = ACTIONS(3666), + [sym_super] = ACTIONS(3666), + [sym_true] = ACTIONS(3666), + [sym_false] = ACTIONS(3666), + [sym_null] = ACTIONS(3666), + [sym_undefined] = ACTIONS(3666), + [anon_sym_AT] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_readonly] = ACTIONS(3666), + [anon_sym_get] = ACTIONS(3666), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_declare] = ACTIONS(3666), + [anon_sym_public] = ACTIONS(3666), + [anon_sym_private] = ACTIONS(3666), + [anon_sym_protected] = ACTIONS(3666), + [anon_sym_override] = ACTIONS(3666), + [anon_sym_module] = ACTIONS(3666), + [anon_sym_any] = ACTIONS(3666), + [anon_sym_number] = ACTIONS(3666), + [anon_sym_boolean] = ACTIONS(3666), + [anon_sym_string] = ACTIONS(3666), + [anon_sym_symbol] = ACTIONS(3666), + [anon_sym_object] = ACTIONS(3666), + [anon_sym_property] = ACTIONS(3666), + [anon_sym_signal] = ACTIONS(3666), + [anon_sym_on] = ACTIONS(3666), + [anon_sym_required] = ACTIONS(3666), + [anon_sym_component] = ACTIONS(3666), + [anon_sym_abstract] = ACTIONS(3666), + [anon_sym_interface] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), + [sym_html_comment] = ACTIONS(5), + }, + [1780] = { + [sym_comment] = STATE(1780), + [sym_identifier] = ACTIONS(3658), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_type] = ACTIONS(3658), + [anon_sym_namespace] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_RBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_from] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_await] = ACTIONS(3658), + [anon_sym_of] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LTtemplate_GT] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_async] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_void] = ACTIONS(3658), + [anon_sym_delete] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3658), + [sym_number] = ACTIONS(3658), + [sym_private_property_identifier] = ACTIONS(3658), + [sym_this] = ACTIONS(3658), + [sym_super] = ACTIONS(3658), + [sym_true] = ACTIONS(3658), + [sym_false] = ACTIONS(3658), + [sym_null] = ACTIONS(3658), + [sym_undefined] = ACTIONS(3658), + [anon_sym_AT] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_readonly] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_declare] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_protected] = ACTIONS(3658), + [anon_sym_override] = ACTIONS(3658), + [anon_sym_module] = ACTIONS(3658), + [anon_sym_any] = ACTIONS(3658), + [anon_sym_number] = ACTIONS(3658), + [anon_sym_boolean] = ACTIONS(3658), + [anon_sym_string] = ACTIONS(3658), + [anon_sym_symbol] = ACTIONS(3658), + [anon_sym_object] = ACTIONS(3658), + [anon_sym_property] = ACTIONS(3658), + [anon_sym_signal] = ACTIONS(3658), + [anon_sym_on] = ACTIONS(3658), + [anon_sym_required] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1781] = { + [sym_comment] = STATE(1781), + [sym_identifier] = ACTIONS(3486), + [anon_sym_export] = ACTIONS(3486), + [anon_sym_type] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3486), + [anon_sym_RBRACE] = ACTIONS(3486), + [anon_sym_typeof] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_from] = ACTIONS(3486), + [anon_sym_with] = ACTIONS(3486), + [anon_sym_var] = ACTIONS(3486), + [anon_sym_let] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_BANG] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_await] = ACTIONS(3486), + [anon_sym_of] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_debugger] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3486), + [anon_sym_yield] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_LTtemplate_GT] = ACTIONS(3486), + [anon_sym_DQUOTE] = ACTIONS(3486), + [anon_sym_SQUOTE] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_async] = ACTIONS(3486), + [anon_sym_function] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_using] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_SLASH] = ACTIONS(3486), + [anon_sym_LT] = ACTIONS(3486), + [anon_sym_TILDE] = ACTIONS(3486), + [anon_sym_void] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_PLUS_PLUS] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3486), + [sym_number] = ACTIONS(3486), + [sym_private_property_identifier] = ACTIONS(3486), + [sym_this] = ACTIONS(3486), + [sym_super] = ACTIONS(3486), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [sym_null] = ACTIONS(3486), + [sym_undefined] = ACTIONS(3486), + [anon_sym_AT] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_readonly] = ACTIONS(3486), + [anon_sym_get] = ACTIONS(3486), + [anon_sym_set] = ACTIONS(3486), + [anon_sym_declare] = ACTIONS(3486), + [anon_sym_public] = ACTIONS(3486), + [anon_sym_private] = ACTIONS(3486), + [anon_sym_protected] = ACTIONS(3486), + [anon_sym_override] = ACTIONS(3486), + [anon_sym_module] = ACTIONS(3486), + [anon_sym_any] = ACTIONS(3486), + [anon_sym_number] = ACTIONS(3486), + [anon_sym_boolean] = ACTIONS(3486), + [anon_sym_string] = ACTIONS(3486), + [anon_sym_symbol] = ACTIONS(3486), + [anon_sym_object] = ACTIONS(3486), + [anon_sym_property] = ACTIONS(3486), + [anon_sym_signal] = ACTIONS(3486), + [anon_sym_on] = ACTIONS(3486), + [anon_sym_required] = ACTIONS(3486), + [anon_sym_component] = ACTIONS(3486), + [anon_sym_abstract] = ACTIONS(3486), + [anon_sym_interface] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), + [sym_html_comment] = ACTIONS(5), + }, + [1782] = { + [sym_comment] = STATE(1782), + [sym_identifier] = ACTIONS(3484), + [anon_sym_export] = ACTIONS(3484), + [anon_sym_type] = ACTIONS(3484), + [anon_sym_namespace] = ACTIONS(3484), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_RBRACE] = ACTIONS(3484), + [anon_sym_typeof] = ACTIONS(3484), + [anon_sym_import] = ACTIONS(3484), + [anon_sym_from] = ACTIONS(3484), + [anon_sym_with] = ACTIONS(3484), + [anon_sym_var] = ACTIONS(3484), + [anon_sym_let] = ACTIONS(3484), + [anon_sym_const] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_if] = ACTIONS(3484), + [anon_sym_switch] = ACTIONS(3484), + [anon_sym_for] = ACTIONS(3484), + [anon_sym_LPAREN] = ACTIONS(3484), + [anon_sym_await] = ACTIONS(3484), + [anon_sym_of] = ACTIONS(3484), + [anon_sym_while] = ACTIONS(3484), + [anon_sym_do] = ACTIONS(3484), + [anon_sym_try] = ACTIONS(3484), + [anon_sym_break] = ACTIONS(3484), + [anon_sym_continue] = ACTIONS(3484), + [anon_sym_debugger] = ACTIONS(3484), + [anon_sym_return] = ACTIONS(3484), + [anon_sym_throw] = ACTIONS(3484), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_yield] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3484), + [anon_sym_LTtemplate_GT] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3484), + [anon_sym_class] = ACTIONS(3484), + [anon_sym_async] = ACTIONS(3484), + [anon_sym_function] = ACTIONS(3484), + [anon_sym_new] = ACTIONS(3484), + [anon_sym_using] = ACTIONS(3484), + [anon_sym_PLUS] = ACTIONS(3484), + [anon_sym_DASH] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3484), + [anon_sym_LT] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_void] = ACTIONS(3484), + [anon_sym_delete] = ACTIONS(3484), + [anon_sym_PLUS_PLUS] = ACTIONS(3484), + [anon_sym_DASH_DASH] = ACTIONS(3484), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3484), + [sym_number] = ACTIONS(3484), + [sym_private_property_identifier] = ACTIONS(3484), + [sym_this] = ACTIONS(3484), + [sym_super] = ACTIONS(3484), + [sym_true] = ACTIONS(3484), + [sym_false] = ACTIONS(3484), + [sym_null] = ACTIONS(3484), + [sym_undefined] = ACTIONS(3484), + [anon_sym_AT] = ACTIONS(3484), + [anon_sym_static] = ACTIONS(3484), + [anon_sym_readonly] = ACTIONS(3484), + [anon_sym_get] = ACTIONS(3484), + [anon_sym_set] = ACTIONS(3484), + [anon_sym_declare] = ACTIONS(3484), + [anon_sym_public] = ACTIONS(3484), + [anon_sym_private] = ACTIONS(3484), + [anon_sym_protected] = ACTIONS(3484), + [anon_sym_override] = ACTIONS(3484), + [anon_sym_module] = ACTIONS(3484), + [anon_sym_any] = ACTIONS(3484), + [anon_sym_number] = ACTIONS(3484), + [anon_sym_boolean] = ACTIONS(3484), + [anon_sym_string] = ACTIONS(3484), + [anon_sym_symbol] = ACTIONS(3484), + [anon_sym_object] = ACTIONS(3484), + [anon_sym_property] = ACTIONS(3484), + [anon_sym_signal] = ACTIONS(3484), + [anon_sym_on] = ACTIONS(3484), + [anon_sym_required] = ACTIONS(3484), + [anon_sym_component] = ACTIONS(3484), + [anon_sym_abstract] = ACTIONS(3484), + [anon_sym_interface] = ACTIONS(3484), + [anon_sym_enum] = ACTIONS(3484), + [sym_html_comment] = ACTIONS(5), + }, + [1783] = { + [sym_comment] = STATE(1783), + [sym_identifier] = ACTIONS(3570), + [anon_sym_export] = ACTIONS(3570), + [anon_sym_type] = ACTIONS(3570), + [anon_sym_namespace] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_RBRACE] = ACTIONS(3570), + [anon_sym_typeof] = ACTIONS(3570), + [anon_sym_import] = ACTIONS(3570), + [anon_sym_from] = ACTIONS(3570), + [anon_sym_with] = ACTIONS(3570), + [anon_sym_var] = ACTIONS(3570), + [anon_sym_let] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_BANG] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_switch] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_LPAREN] = ACTIONS(3570), + [anon_sym_await] = ACTIONS(3570), + [anon_sym_of] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_do] = ACTIONS(3570), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_debugger] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_throw] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym_yield] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_LTtemplate_GT] = ACTIONS(3570), + [anon_sym_DQUOTE] = ACTIONS(3570), + [anon_sym_SQUOTE] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_async] = ACTIONS(3570), + [anon_sym_function] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3570), + [anon_sym_TILDE] = ACTIONS(3570), + [anon_sym_void] = ACTIONS(3570), + [anon_sym_delete] = ACTIONS(3570), + [anon_sym_PLUS_PLUS] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3570), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3570), + [sym_number] = ACTIONS(3570), + [sym_private_property_identifier] = ACTIONS(3570), + [sym_this] = ACTIONS(3570), + [sym_super] = ACTIONS(3570), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [sym_null] = ACTIONS(3570), + [sym_undefined] = ACTIONS(3570), + [anon_sym_AT] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_readonly] = ACTIONS(3570), + [anon_sym_get] = ACTIONS(3570), + [anon_sym_set] = ACTIONS(3570), + [anon_sym_declare] = ACTIONS(3570), + [anon_sym_public] = ACTIONS(3570), + [anon_sym_private] = ACTIONS(3570), + [anon_sym_protected] = ACTIONS(3570), + [anon_sym_override] = ACTIONS(3570), + [anon_sym_module] = ACTIONS(3570), + [anon_sym_any] = ACTIONS(3570), + [anon_sym_number] = ACTIONS(3570), + [anon_sym_boolean] = ACTIONS(3570), + [anon_sym_string] = ACTIONS(3570), + [anon_sym_symbol] = ACTIONS(3570), + [anon_sym_object] = ACTIONS(3570), + [anon_sym_property] = ACTIONS(3570), + [anon_sym_signal] = ACTIONS(3570), + [anon_sym_on] = ACTIONS(3570), + [anon_sym_required] = ACTIONS(3570), + [anon_sym_component] = ACTIONS(3570), + [anon_sym_abstract] = ACTIONS(3570), + [anon_sym_interface] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [sym_html_comment] = ACTIONS(5), + }, + [1784] = { + [sym_comment] = STATE(1784), + [sym_identifier] = ACTIONS(3504), + [anon_sym_export] = ACTIONS(3504), + [anon_sym_type] = ACTIONS(3504), + [anon_sym_namespace] = ACTIONS(3504), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_RBRACE] = ACTIONS(3504), + [anon_sym_typeof] = ACTIONS(3504), + [anon_sym_import] = ACTIONS(3504), + [anon_sym_from] = ACTIONS(3504), + [anon_sym_with] = ACTIONS(3504), + [anon_sym_var] = ACTIONS(3504), + [anon_sym_let] = ACTIONS(3504), + [anon_sym_const] = ACTIONS(3504), + [anon_sym_BANG] = ACTIONS(3504), + [anon_sym_if] = ACTIONS(3504), + [anon_sym_switch] = ACTIONS(3504), + [anon_sym_for] = ACTIONS(3504), + [anon_sym_LPAREN] = ACTIONS(3504), + [anon_sym_await] = ACTIONS(3504), + [anon_sym_of] = ACTIONS(3504), + [anon_sym_while] = ACTIONS(3504), + [anon_sym_do] = ACTIONS(3504), + [anon_sym_try] = ACTIONS(3504), + [anon_sym_break] = ACTIONS(3504), + [anon_sym_continue] = ACTIONS(3504), + [anon_sym_debugger] = ACTIONS(3504), + [anon_sym_return] = ACTIONS(3504), + [anon_sym_throw] = ACTIONS(3504), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym_yield] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_LTtemplate_GT] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(3504), + [anon_sym_SQUOTE] = ACTIONS(3504), + [anon_sym_class] = ACTIONS(3504), + [anon_sym_async] = ACTIONS(3504), + [anon_sym_function] = ACTIONS(3504), + [anon_sym_new] = ACTIONS(3504), + [anon_sym_using] = ACTIONS(3504), + [anon_sym_PLUS] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(3504), + [anon_sym_TILDE] = ACTIONS(3504), + [anon_sym_void] = ACTIONS(3504), + [anon_sym_delete] = ACTIONS(3504), + [anon_sym_PLUS_PLUS] = ACTIONS(3504), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3504), + [sym_number] = ACTIONS(3504), + [sym_private_property_identifier] = ACTIONS(3504), + [sym_this] = ACTIONS(3504), + [sym_super] = ACTIONS(3504), + [sym_true] = ACTIONS(3504), + [sym_false] = ACTIONS(3504), + [sym_null] = ACTIONS(3504), + [sym_undefined] = ACTIONS(3504), + [anon_sym_AT] = ACTIONS(3504), + [anon_sym_static] = ACTIONS(3504), + [anon_sym_readonly] = ACTIONS(3504), + [anon_sym_get] = ACTIONS(3504), + [anon_sym_set] = ACTIONS(3504), + [anon_sym_declare] = ACTIONS(3504), + [anon_sym_public] = ACTIONS(3504), + [anon_sym_private] = ACTIONS(3504), + [anon_sym_protected] = ACTIONS(3504), + [anon_sym_override] = ACTIONS(3504), + [anon_sym_module] = ACTIONS(3504), + [anon_sym_any] = ACTIONS(3504), + [anon_sym_number] = ACTIONS(3504), + [anon_sym_boolean] = ACTIONS(3504), + [anon_sym_string] = ACTIONS(3504), + [anon_sym_symbol] = ACTIONS(3504), + [anon_sym_object] = ACTIONS(3504), + [anon_sym_property] = ACTIONS(3504), + [anon_sym_signal] = ACTIONS(3504), + [anon_sym_on] = ACTIONS(3504), + [anon_sym_required] = ACTIONS(3504), + [anon_sym_component] = ACTIONS(3504), + [anon_sym_abstract] = ACTIONS(3504), + [anon_sym_interface] = ACTIONS(3504), + [anon_sym_enum] = ACTIONS(3504), + [sym_html_comment] = ACTIONS(5), + }, + [1785] = { + [sym_comment] = STATE(1785), + [sym_identifier] = ACTIONS(3568), + [anon_sym_export] = ACTIONS(3568), + [anon_sym_type] = ACTIONS(3568), + [anon_sym_namespace] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3568), + [anon_sym_RBRACE] = ACTIONS(3568), + [anon_sym_typeof] = ACTIONS(3568), + [anon_sym_import] = ACTIONS(3568), + [anon_sym_from] = ACTIONS(3568), + [anon_sym_with] = ACTIONS(3568), + [anon_sym_var] = ACTIONS(3568), + [anon_sym_let] = ACTIONS(3568), + [anon_sym_const] = ACTIONS(3568), + [anon_sym_BANG] = ACTIONS(3568), + [anon_sym_if] = ACTIONS(3568), + [anon_sym_switch] = ACTIONS(3568), + [anon_sym_for] = ACTIONS(3568), + [anon_sym_LPAREN] = ACTIONS(3568), + [anon_sym_await] = ACTIONS(3568), + [anon_sym_of] = ACTIONS(3568), + [anon_sym_while] = ACTIONS(3568), + [anon_sym_do] = ACTIONS(3568), + [anon_sym_try] = ACTIONS(3568), + [anon_sym_break] = ACTIONS(3568), + [anon_sym_continue] = ACTIONS(3568), + [anon_sym_debugger] = ACTIONS(3568), + [anon_sym_return] = ACTIONS(3568), + [anon_sym_throw] = ACTIONS(3568), + [anon_sym_SEMI] = ACTIONS(3568), + [anon_sym_yield] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3568), + [anon_sym_LTtemplate_GT] = ACTIONS(3568), + [anon_sym_DQUOTE] = ACTIONS(3568), + [anon_sym_SQUOTE] = ACTIONS(3568), + [anon_sym_class] = ACTIONS(3568), + [anon_sym_async] = ACTIONS(3568), + [anon_sym_function] = ACTIONS(3568), + [anon_sym_new] = ACTIONS(3568), + [anon_sym_using] = ACTIONS(3568), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_SLASH] = ACTIONS(3568), + [anon_sym_LT] = ACTIONS(3568), + [anon_sym_TILDE] = ACTIONS(3568), + [anon_sym_void] = ACTIONS(3568), + [anon_sym_delete] = ACTIONS(3568), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3568), + [sym_number] = ACTIONS(3568), + [sym_private_property_identifier] = ACTIONS(3568), + [sym_this] = ACTIONS(3568), + [sym_super] = ACTIONS(3568), + [sym_true] = ACTIONS(3568), + [sym_false] = ACTIONS(3568), + [sym_null] = ACTIONS(3568), + [sym_undefined] = ACTIONS(3568), + [anon_sym_AT] = ACTIONS(3568), + [anon_sym_static] = ACTIONS(3568), + [anon_sym_readonly] = ACTIONS(3568), + [anon_sym_get] = ACTIONS(3568), + [anon_sym_set] = ACTIONS(3568), + [anon_sym_declare] = ACTIONS(3568), + [anon_sym_public] = ACTIONS(3568), + [anon_sym_private] = ACTIONS(3568), + [anon_sym_protected] = ACTIONS(3568), + [anon_sym_override] = ACTIONS(3568), + [anon_sym_module] = ACTIONS(3568), + [anon_sym_any] = ACTIONS(3568), + [anon_sym_number] = ACTIONS(3568), + [anon_sym_boolean] = ACTIONS(3568), + [anon_sym_string] = ACTIONS(3568), + [anon_sym_symbol] = ACTIONS(3568), + [anon_sym_object] = ACTIONS(3568), + [anon_sym_property] = ACTIONS(3568), + [anon_sym_signal] = ACTIONS(3568), + [anon_sym_on] = ACTIONS(3568), + [anon_sym_required] = ACTIONS(3568), + [anon_sym_component] = ACTIONS(3568), + [anon_sym_abstract] = ACTIONS(3568), + [anon_sym_interface] = ACTIONS(3568), + [anon_sym_enum] = ACTIONS(3568), + [sym_html_comment] = ACTIONS(5), + }, + [1786] = { + [sym_comment] = STATE(1786), + [sym_identifier] = ACTIONS(3652), + [anon_sym_export] = ACTIONS(3652), + [anon_sym_type] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_RBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3652), + [anon_sym_import] = ACTIONS(3652), + [anon_sym_from] = ACTIONS(3652), + [anon_sym_with] = ACTIONS(3652), + [anon_sym_var] = ACTIONS(3652), + [anon_sym_let] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_await] = ACTIONS(3652), + [anon_sym_of] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_debugger] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3652), + [anon_sym_yield] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_LTtemplate_GT] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_async] = ACTIONS(3652), + [anon_sym_function] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_SLASH] = ACTIONS(3652), + [anon_sym_LT] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3652), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3652), + [sym_number] = ACTIONS(3652), + [sym_private_property_identifier] = ACTIONS(3652), + [sym_this] = ACTIONS(3652), + [sym_super] = ACTIONS(3652), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [sym_null] = ACTIONS(3652), + [sym_undefined] = ACTIONS(3652), + [anon_sym_AT] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_readonly] = ACTIONS(3652), + [anon_sym_get] = ACTIONS(3652), + [anon_sym_set] = ACTIONS(3652), + [anon_sym_declare] = ACTIONS(3652), + [anon_sym_public] = ACTIONS(3652), + [anon_sym_private] = ACTIONS(3652), + [anon_sym_protected] = ACTIONS(3652), + [anon_sym_override] = ACTIONS(3652), + [anon_sym_module] = ACTIONS(3652), + [anon_sym_any] = ACTIONS(3652), + [anon_sym_number] = ACTIONS(3652), + [anon_sym_boolean] = ACTIONS(3652), + [anon_sym_string] = ACTIONS(3652), + [anon_sym_symbol] = ACTIONS(3652), + [anon_sym_object] = ACTIONS(3652), + [anon_sym_property] = ACTIONS(3652), + [anon_sym_signal] = ACTIONS(3652), + [anon_sym_on] = ACTIONS(3652), + [anon_sym_required] = ACTIONS(3652), + [anon_sym_component] = ACTIONS(3652), + [anon_sym_abstract] = ACTIONS(3652), + [anon_sym_interface] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1787] = { + [sym_comment] = STATE(1787), + [sym_identifier] = ACTIONS(3630), + [anon_sym_export] = ACTIONS(3630), + [anon_sym_type] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_typeof] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), + [anon_sym_from] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3630), + [anon_sym_var] = ACTIONS(3630), + [anon_sym_let] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_await] = ACTIONS(3630), + [anon_sym_of] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_debugger] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_yield] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LTtemplate_GT] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3630), + [anon_sym_SQUOTE] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_async] = ACTIONS(3630), + [anon_sym_function] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_SLASH] = ACTIONS(3630), + [anon_sym_LT] = ACTIONS(3630), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_void] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3630), + [sym_number] = ACTIONS(3630), + [sym_private_property_identifier] = ACTIONS(3630), + [sym_this] = ACTIONS(3630), + [sym_super] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_null] = ACTIONS(3630), + [sym_undefined] = ACTIONS(3630), + [anon_sym_AT] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_readonly] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(3630), + [anon_sym_set] = ACTIONS(3630), + [anon_sym_declare] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_override] = ACTIONS(3630), + [anon_sym_module] = ACTIONS(3630), + [anon_sym_any] = ACTIONS(3630), + [anon_sym_number] = ACTIONS(3630), + [anon_sym_boolean] = ACTIONS(3630), + [anon_sym_string] = ACTIONS(3630), + [anon_sym_symbol] = ACTIONS(3630), + [anon_sym_object] = ACTIONS(3630), + [anon_sym_property] = ACTIONS(3630), + [anon_sym_signal] = ACTIONS(3630), + [anon_sym_on] = ACTIONS(3630), + [anon_sym_required] = ACTIONS(3630), + [anon_sym_component] = ACTIONS(3630), + [anon_sym_abstract] = ACTIONS(3630), + [anon_sym_interface] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [sym_html_comment] = ACTIONS(5), + }, + [1788] = { + [sym_comment] = STATE(1788), + [sym_identifier] = ACTIONS(3628), + [anon_sym_export] = ACTIONS(3628), + [anon_sym_type] = ACTIONS(3628), + [anon_sym_namespace] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_RBRACE] = ACTIONS(3628), + [anon_sym_typeof] = ACTIONS(3628), + [anon_sym_import] = ACTIONS(3628), + [anon_sym_from] = ACTIONS(3628), + [anon_sym_with] = ACTIONS(3628), + [anon_sym_var] = ACTIONS(3628), + [anon_sym_let] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_if] = ACTIONS(3628), + [anon_sym_switch] = ACTIONS(3628), + [anon_sym_for] = ACTIONS(3628), + [anon_sym_LPAREN] = ACTIONS(3628), + [anon_sym_await] = ACTIONS(3628), + [anon_sym_of] = ACTIONS(3628), + [anon_sym_while] = ACTIONS(3628), + [anon_sym_do] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3628), + [anon_sym_break] = ACTIONS(3628), + [anon_sym_continue] = ACTIONS(3628), + [anon_sym_debugger] = ACTIONS(3628), + [anon_sym_return] = ACTIONS(3628), + [anon_sym_throw] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_yield] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3628), + [anon_sym_LTtemplate_GT] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_async] = ACTIONS(3628), + [anon_sym_function] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_using] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_LT] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_void] = ACTIONS(3628), + [anon_sym_delete] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3628), + [sym_number] = ACTIONS(3628), + [sym_private_property_identifier] = ACTIONS(3628), + [sym_this] = ACTIONS(3628), + [sym_super] = ACTIONS(3628), + [sym_true] = ACTIONS(3628), + [sym_false] = ACTIONS(3628), + [sym_null] = ACTIONS(3628), + [sym_undefined] = ACTIONS(3628), + [anon_sym_AT] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_readonly] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(3628), + [anon_sym_set] = ACTIONS(3628), + [anon_sym_declare] = ACTIONS(3628), + [anon_sym_public] = ACTIONS(3628), + [anon_sym_private] = ACTIONS(3628), + [anon_sym_protected] = ACTIONS(3628), + [anon_sym_override] = ACTIONS(3628), + [anon_sym_module] = ACTIONS(3628), + [anon_sym_any] = ACTIONS(3628), + [anon_sym_number] = ACTIONS(3628), + [anon_sym_boolean] = ACTIONS(3628), + [anon_sym_string] = ACTIONS(3628), + [anon_sym_symbol] = ACTIONS(3628), + [anon_sym_object] = ACTIONS(3628), + [anon_sym_property] = ACTIONS(3628), + [anon_sym_signal] = ACTIONS(3628), + [anon_sym_on] = ACTIONS(3628), + [anon_sym_required] = ACTIONS(3628), + [anon_sym_component] = ACTIONS(3628), + [anon_sym_abstract] = ACTIONS(3628), + [anon_sym_interface] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), + [sym_html_comment] = ACTIONS(5), + }, + [1789] = { + [sym_comment] = STATE(1789), + [sym_identifier] = ACTIONS(3560), + [anon_sym_export] = ACTIONS(3560), + [anon_sym_type] = ACTIONS(3560), + [anon_sym_namespace] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_RBRACE] = ACTIONS(3560), + [anon_sym_typeof] = ACTIONS(3560), + [anon_sym_import] = ACTIONS(3560), + [anon_sym_from] = ACTIONS(3560), + [anon_sym_with] = ACTIONS(3560), + [anon_sym_var] = ACTIONS(3560), + [anon_sym_let] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3560), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_switch] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_LPAREN] = ACTIONS(3560), + [anon_sym_await] = ACTIONS(3560), + [anon_sym_of] = ACTIONS(3560), + [anon_sym_while] = ACTIONS(3560), + [anon_sym_do] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_debugger] = ACTIONS(3560), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_throw] = ACTIONS(3560), + [anon_sym_SEMI] = ACTIONS(3560), + [anon_sym_yield] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_LTtemplate_GT] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3560), + [anon_sym_class] = ACTIONS(3560), + [anon_sym_async] = ACTIONS(3560), + [anon_sym_function] = ACTIONS(3560), + [anon_sym_new] = ACTIONS(3560), + [anon_sym_using] = ACTIONS(3560), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3560), + [anon_sym_void] = ACTIONS(3560), + [anon_sym_delete] = ACTIONS(3560), + [anon_sym_PLUS_PLUS] = ACTIONS(3560), + [anon_sym_DASH_DASH] = ACTIONS(3560), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3560), + [sym_number] = ACTIONS(3560), + [sym_private_property_identifier] = ACTIONS(3560), + [sym_this] = ACTIONS(3560), + [sym_super] = ACTIONS(3560), + [sym_true] = ACTIONS(3560), + [sym_false] = ACTIONS(3560), + [sym_null] = ACTIONS(3560), + [sym_undefined] = ACTIONS(3560), + [anon_sym_AT] = ACTIONS(3560), + [anon_sym_static] = ACTIONS(3560), + [anon_sym_readonly] = ACTIONS(3560), + [anon_sym_get] = ACTIONS(3560), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_declare] = ACTIONS(3560), + [anon_sym_public] = ACTIONS(3560), + [anon_sym_private] = ACTIONS(3560), + [anon_sym_protected] = ACTIONS(3560), + [anon_sym_override] = ACTIONS(3560), + [anon_sym_module] = ACTIONS(3560), + [anon_sym_any] = ACTIONS(3560), + [anon_sym_number] = ACTIONS(3560), + [anon_sym_boolean] = ACTIONS(3560), + [anon_sym_string] = ACTIONS(3560), + [anon_sym_symbol] = ACTIONS(3560), + [anon_sym_object] = ACTIONS(3560), + [anon_sym_property] = ACTIONS(3560), + [anon_sym_signal] = ACTIONS(3560), + [anon_sym_on] = ACTIONS(3560), + [anon_sym_required] = ACTIONS(3560), + [anon_sym_component] = ACTIONS(3560), + [anon_sym_abstract] = ACTIONS(3560), + [anon_sym_interface] = ACTIONS(3560), + [anon_sym_enum] = ACTIONS(3560), + [sym_html_comment] = ACTIONS(5), + }, + [1790] = { + [sym_comment] = STATE(1790), + [sym_identifier] = ACTIONS(3676), + [anon_sym_export] = ACTIONS(3676), + [anon_sym_type] = ACTIONS(3676), + [anon_sym_namespace] = ACTIONS(3676), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_typeof] = ACTIONS(3676), + [anon_sym_import] = ACTIONS(3676), + [anon_sym_from] = ACTIONS(3676), + [anon_sym_with] = ACTIONS(3676), + [anon_sym_var] = ACTIONS(3676), + [anon_sym_let] = ACTIONS(3676), + [anon_sym_const] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3676), + [anon_sym_if] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_for] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(3676), + [anon_sym_await] = ACTIONS(3676), + [anon_sym_of] = ACTIONS(3676), + [anon_sym_while] = ACTIONS(3676), + [anon_sym_do] = ACTIONS(3676), + [anon_sym_try] = ACTIONS(3676), + [anon_sym_break] = ACTIONS(3676), + [anon_sym_continue] = ACTIONS(3676), + [anon_sym_debugger] = ACTIONS(3676), + [anon_sym_return] = ACTIONS(3676), + [anon_sym_throw] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3676), + [anon_sym_yield] = ACTIONS(3676), + [anon_sym_LBRACK] = ACTIONS(3676), + [anon_sym_LTtemplate_GT] = ACTIONS(3676), + [anon_sym_DQUOTE] = ACTIONS(3676), + [anon_sym_SQUOTE] = ACTIONS(3676), + [anon_sym_class] = ACTIONS(3676), + [anon_sym_async] = ACTIONS(3676), + [anon_sym_function] = ACTIONS(3676), + [anon_sym_new] = ACTIONS(3676), + [anon_sym_using] = ACTIONS(3676), + [anon_sym_PLUS] = ACTIONS(3676), + [anon_sym_DASH] = ACTIONS(3676), + [anon_sym_SLASH] = ACTIONS(3676), + [anon_sym_LT] = ACTIONS(3676), + [anon_sym_TILDE] = ACTIONS(3676), + [anon_sym_void] = ACTIONS(3676), + [anon_sym_delete] = ACTIONS(3676), + [anon_sym_PLUS_PLUS] = ACTIONS(3676), + [anon_sym_DASH_DASH] = ACTIONS(3676), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3676), + [sym_private_property_identifier] = ACTIONS(3676), + [sym_this] = ACTIONS(3676), + [sym_super] = ACTIONS(3676), + [sym_true] = ACTIONS(3676), + [sym_false] = ACTIONS(3676), + [sym_null] = ACTIONS(3676), + [sym_undefined] = ACTIONS(3676), + [anon_sym_AT] = ACTIONS(3676), + [anon_sym_static] = ACTIONS(3676), + [anon_sym_readonly] = ACTIONS(3676), + [anon_sym_get] = ACTIONS(3676), + [anon_sym_set] = ACTIONS(3676), + [anon_sym_declare] = ACTIONS(3676), + [anon_sym_public] = ACTIONS(3676), + [anon_sym_private] = ACTIONS(3676), + [anon_sym_protected] = ACTIONS(3676), + [anon_sym_override] = ACTIONS(3676), + [anon_sym_module] = ACTIONS(3676), + [anon_sym_any] = ACTIONS(3676), + [anon_sym_number] = ACTIONS(3676), + [anon_sym_boolean] = ACTIONS(3676), + [anon_sym_string] = ACTIONS(3676), + [anon_sym_symbol] = ACTIONS(3676), + [anon_sym_object] = ACTIONS(3676), + [anon_sym_property] = ACTIONS(3676), + [anon_sym_signal] = ACTIONS(3676), + [anon_sym_on] = ACTIONS(3676), + [anon_sym_required] = ACTIONS(3676), + [anon_sym_component] = ACTIONS(3676), + [anon_sym_abstract] = ACTIONS(3676), + [anon_sym_interface] = ACTIONS(3676), + [anon_sym_enum] = ACTIONS(3676), + [sym_html_comment] = ACTIONS(5), + }, + [1791] = { + [sym_comment] = STATE(1791), + [sym_identifier] = ACTIONS(3466), + [anon_sym_export] = ACTIONS(3466), + [anon_sym_type] = ACTIONS(3466), + [anon_sym_namespace] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_RBRACE] = ACTIONS(3466), + [anon_sym_typeof] = ACTIONS(3466), + [anon_sym_import] = ACTIONS(3466), + [anon_sym_from] = ACTIONS(3466), + [anon_sym_with] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_if] = ACTIONS(3466), + [anon_sym_switch] = ACTIONS(3466), + [anon_sym_for] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(3466), + [anon_sym_await] = ACTIONS(3466), + [anon_sym_of] = ACTIONS(3466), + [anon_sym_while] = ACTIONS(3466), + [anon_sym_do] = ACTIONS(3466), + [anon_sym_try] = ACTIONS(3466), + [anon_sym_break] = ACTIONS(3466), + [anon_sym_continue] = ACTIONS(3466), + [anon_sym_debugger] = ACTIONS(3466), + [anon_sym_return] = ACTIONS(3466), + [anon_sym_throw] = ACTIONS(3466), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3466), + [anon_sym_LTtemplate_GT] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_function] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_using] = ACTIONS(3466), + [anon_sym_PLUS] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3466), + [anon_sym_SLASH] = ACTIONS(3466), + [anon_sym_LT] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_void] = ACTIONS(3466), + [anon_sym_delete] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3466), + [sym_number] = ACTIONS(3466), + [sym_private_property_identifier] = ACTIONS(3466), + [sym_this] = ACTIONS(3466), + [sym_super] = ACTIONS(3466), + [sym_true] = ACTIONS(3466), + [sym_false] = ACTIONS(3466), + [sym_null] = ACTIONS(3466), + [sym_undefined] = ACTIONS(3466), + [anon_sym_AT] = ACTIONS(3466), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_get] = ACTIONS(3466), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_declare] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_override] = ACTIONS(3466), + [anon_sym_module] = ACTIONS(3466), + [anon_sym_any] = ACTIONS(3466), + [anon_sym_number] = ACTIONS(3466), + [anon_sym_boolean] = ACTIONS(3466), + [anon_sym_string] = ACTIONS(3466), + [anon_sym_symbol] = ACTIONS(3466), + [anon_sym_object] = ACTIONS(3466), + [anon_sym_property] = ACTIONS(3466), + [anon_sym_signal] = ACTIONS(3466), + [anon_sym_on] = ACTIONS(3466), + [anon_sym_required] = ACTIONS(3466), + [anon_sym_component] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), + [sym_html_comment] = ACTIONS(5), + }, + [1792] = { + [sym_comment] = STATE(1792), + [sym_identifier] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_type] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_typeof] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_from] = ACTIONS(3558), + [anon_sym_with] = ACTIONS(3558), + [anon_sym_var] = ACTIONS(3558), + [anon_sym_let] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_await] = ACTIONS(3558), + [anon_sym_of] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_debugger] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym_yield] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_LTtemplate_GT] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_async] = ACTIONS(3558), + [anon_sym_function] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_void] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3558), + [sym_number] = ACTIONS(3558), + [sym_private_property_identifier] = ACTIONS(3558), + [sym_this] = ACTIONS(3558), + [sym_super] = ACTIONS(3558), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [sym_null] = ACTIONS(3558), + [sym_undefined] = ACTIONS(3558), + [anon_sym_AT] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_readonly] = ACTIONS(3558), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3558), + [anon_sym_declare] = ACTIONS(3558), + [anon_sym_public] = ACTIONS(3558), + [anon_sym_private] = ACTIONS(3558), + [anon_sym_protected] = ACTIONS(3558), + [anon_sym_override] = ACTIONS(3558), + [anon_sym_module] = ACTIONS(3558), + [anon_sym_any] = ACTIONS(3558), + [anon_sym_number] = ACTIONS(3558), + [anon_sym_boolean] = ACTIONS(3558), + [anon_sym_string] = ACTIONS(3558), + [anon_sym_symbol] = ACTIONS(3558), + [anon_sym_object] = ACTIONS(3558), + [anon_sym_property] = ACTIONS(3558), + [anon_sym_signal] = ACTIONS(3558), + [anon_sym_on] = ACTIONS(3558), + [anon_sym_required] = ACTIONS(3558), + [anon_sym_component] = ACTIONS(3558), + [anon_sym_abstract] = ACTIONS(3558), + [anon_sym_interface] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), + [sym_html_comment] = ACTIONS(5), + }, + [1793] = { + [sym_comment] = STATE(1793), + [sym_identifier] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_type] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_typeof] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_from] = ACTIONS(3558), + [anon_sym_with] = ACTIONS(3558), + [anon_sym_var] = ACTIONS(3558), + [anon_sym_let] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_await] = ACTIONS(3558), + [anon_sym_of] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_debugger] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym_yield] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_LTtemplate_GT] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_async] = ACTIONS(3558), + [anon_sym_function] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_void] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3558), + [sym_number] = ACTIONS(3558), + [sym_private_property_identifier] = ACTIONS(3558), + [sym_this] = ACTIONS(3558), + [sym_super] = ACTIONS(3558), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [sym_null] = ACTIONS(3558), + [sym_undefined] = ACTIONS(3558), + [anon_sym_AT] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_readonly] = ACTIONS(3558), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3558), + [anon_sym_declare] = ACTIONS(3558), + [anon_sym_public] = ACTIONS(3558), + [anon_sym_private] = ACTIONS(3558), + [anon_sym_protected] = ACTIONS(3558), + [anon_sym_override] = ACTIONS(3558), + [anon_sym_module] = ACTIONS(3558), + [anon_sym_any] = ACTIONS(3558), + [anon_sym_number] = ACTIONS(3558), + [anon_sym_boolean] = ACTIONS(3558), + [anon_sym_string] = ACTIONS(3558), + [anon_sym_symbol] = ACTIONS(3558), + [anon_sym_object] = ACTIONS(3558), + [anon_sym_property] = ACTIONS(3558), + [anon_sym_signal] = ACTIONS(3558), + [anon_sym_on] = ACTIONS(3558), + [anon_sym_required] = ACTIONS(3558), + [anon_sym_component] = ACTIONS(3558), + [anon_sym_abstract] = ACTIONS(3558), + [anon_sym_interface] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), + [sym_html_comment] = ACTIONS(5), + }, + [1794] = { + [sym_comment] = STATE(1794), + [sym_identifier] = ACTIONS(3464), + [anon_sym_export] = ACTIONS(3464), + [anon_sym_type] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3464), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_typeof] = ACTIONS(3464), + [anon_sym_import] = ACTIONS(3464), + [anon_sym_from] = ACTIONS(3464), + [anon_sym_with] = ACTIONS(3464), + [anon_sym_var] = ACTIONS(3464), + [anon_sym_let] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_await] = ACTIONS(3464), + [anon_sym_of] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_debugger] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_yield] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_LTtemplate_GT] = ACTIONS(3464), + [anon_sym_DQUOTE] = ACTIONS(3464), + [anon_sym_SQUOTE] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_async] = ACTIONS(3464), + [anon_sym_function] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_SLASH] = ACTIONS(3464), + [anon_sym_LT] = ACTIONS(3464), + [anon_sym_TILDE] = ACTIONS(3464), + [anon_sym_void] = ACTIONS(3464), + [anon_sym_delete] = ACTIONS(3464), + [anon_sym_PLUS_PLUS] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3464), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3464), + [sym_number] = ACTIONS(3464), + [sym_private_property_identifier] = ACTIONS(3464), + [sym_this] = ACTIONS(3464), + [sym_super] = ACTIONS(3464), + [sym_true] = ACTIONS(3464), + [sym_false] = ACTIONS(3464), + [sym_null] = ACTIONS(3464), + [sym_undefined] = ACTIONS(3464), + [anon_sym_AT] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_readonly] = ACTIONS(3464), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3464), + [anon_sym_declare] = ACTIONS(3464), + [anon_sym_public] = ACTIONS(3464), + [anon_sym_private] = ACTIONS(3464), + [anon_sym_protected] = ACTIONS(3464), + [anon_sym_override] = ACTIONS(3464), + [anon_sym_module] = ACTIONS(3464), + [anon_sym_any] = ACTIONS(3464), + [anon_sym_number] = ACTIONS(3464), + [anon_sym_boolean] = ACTIONS(3464), + [anon_sym_string] = ACTIONS(3464), + [anon_sym_symbol] = ACTIONS(3464), + [anon_sym_object] = ACTIONS(3464), + [anon_sym_property] = ACTIONS(3464), + [anon_sym_signal] = ACTIONS(3464), + [anon_sym_on] = ACTIONS(3464), + [anon_sym_required] = ACTIONS(3464), + [anon_sym_component] = ACTIONS(3464), + [anon_sym_abstract] = ACTIONS(3464), + [anon_sym_interface] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), + [sym_html_comment] = ACTIONS(5), + }, + [1795] = { + [sym_comment] = STATE(1795), + [sym_identifier] = ACTIONS(3556), + [anon_sym_export] = ACTIONS(3556), + [anon_sym_type] = ACTIONS(3556), + [anon_sym_namespace] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_RBRACE] = ACTIONS(3556), + [anon_sym_typeof] = ACTIONS(3556), + [anon_sym_import] = ACTIONS(3556), + [anon_sym_from] = ACTIONS(3556), + [anon_sym_with] = ACTIONS(3556), + [anon_sym_var] = ACTIONS(3556), + [anon_sym_let] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3556), + [anon_sym_await] = ACTIONS(3556), + [anon_sym_of] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_debugger] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3556), + [anon_sym_LTtemplate_GT] = ACTIONS(3556), + [anon_sym_DQUOTE] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3556), + [anon_sym_async] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_using] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_SLASH] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_void] = ACTIONS(3556), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3556), + [anon_sym_DASH_DASH] = ACTIONS(3556), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3556), + [sym_number] = ACTIONS(3556), + [sym_private_property_identifier] = ACTIONS(3556), + [sym_this] = ACTIONS(3556), + [sym_super] = ACTIONS(3556), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [sym_null] = ACTIONS(3556), + [sym_undefined] = ACTIONS(3556), + [anon_sym_AT] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_readonly] = ACTIONS(3556), + [anon_sym_get] = ACTIONS(3556), + [anon_sym_set] = ACTIONS(3556), + [anon_sym_declare] = ACTIONS(3556), + [anon_sym_public] = ACTIONS(3556), + [anon_sym_private] = ACTIONS(3556), + [anon_sym_protected] = ACTIONS(3556), + [anon_sym_override] = ACTIONS(3556), + [anon_sym_module] = ACTIONS(3556), + [anon_sym_any] = ACTIONS(3556), + [anon_sym_number] = ACTIONS(3556), + [anon_sym_boolean] = ACTIONS(3556), + [anon_sym_string] = ACTIONS(3556), + [anon_sym_symbol] = ACTIONS(3556), + [anon_sym_object] = ACTIONS(3556), + [anon_sym_property] = ACTIONS(3556), + [anon_sym_signal] = ACTIONS(3556), + [anon_sym_on] = ACTIONS(3556), + [anon_sym_required] = ACTIONS(3556), + [anon_sym_component] = ACTIONS(3556), + [anon_sym_abstract] = ACTIONS(3556), + [anon_sym_interface] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), + [sym_html_comment] = ACTIONS(5), + }, + [1796] = { + [sym_comment] = STATE(1796), + [sym_identifier] = ACTIONS(3474), + [anon_sym_export] = ACTIONS(3474), + [anon_sym_type] = ACTIONS(3474), + [anon_sym_namespace] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3474), + [anon_sym_RBRACE] = ACTIONS(3474), + [anon_sym_typeof] = ACTIONS(3474), + [anon_sym_import] = ACTIONS(3474), + [anon_sym_from] = ACTIONS(3474), + [anon_sym_with] = ACTIONS(3474), + [anon_sym_var] = ACTIONS(3474), + [anon_sym_let] = ACTIONS(3474), + [anon_sym_const] = ACTIONS(3474), + [anon_sym_BANG] = ACTIONS(3474), + [anon_sym_if] = ACTIONS(3474), + [anon_sym_switch] = ACTIONS(3474), + [anon_sym_for] = ACTIONS(3474), + [anon_sym_LPAREN] = ACTIONS(3474), + [anon_sym_await] = ACTIONS(3474), + [anon_sym_of] = ACTIONS(3474), + [anon_sym_while] = ACTIONS(3474), + [anon_sym_do] = ACTIONS(3474), + [anon_sym_try] = ACTIONS(3474), + [anon_sym_break] = ACTIONS(3474), + [anon_sym_continue] = ACTIONS(3474), + [anon_sym_debugger] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3474), + [anon_sym_throw] = ACTIONS(3474), + [anon_sym_SEMI] = ACTIONS(3474), + [anon_sym_yield] = ACTIONS(3474), + [anon_sym_LBRACK] = ACTIONS(3474), + [anon_sym_LTtemplate_GT] = ACTIONS(3474), + [anon_sym_DQUOTE] = ACTIONS(3474), + [anon_sym_SQUOTE] = ACTIONS(3474), + [anon_sym_class] = ACTIONS(3474), + [anon_sym_async] = ACTIONS(3474), + [anon_sym_function] = ACTIONS(3474), + [anon_sym_new] = ACTIONS(3474), + [anon_sym_using] = ACTIONS(3474), + [anon_sym_PLUS] = ACTIONS(3474), + [anon_sym_DASH] = ACTIONS(3474), + [anon_sym_SLASH] = ACTIONS(3474), + [anon_sym_LT] = ACTIONS(3474), + [anon_sym_TILDE] = ACTIONS(3474), + [anon_sym_void] = ACTIONS(3474), + [anon_sym_delete] = ACTIONS(3474), + [anon_sym_PLUS_PLUS] = ACTIONS(3474), + [anon_sym_DASH_DASH] = ACTIONS(3474), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3474), + [sym_number] = ACTIONS(3474), + [sym_private_property_identifier] = ACTIONS(3474), + [sym_this] = ACTIONS(3474), + [sym_super] = ACTIONS(3474), + [sym_true] = ACTIONS(3474), + [sym_false] = ACTIONS(3474), + [sym_null] = ACTIONS(3474), + [sym_undefined] = ACTIONS(3474), + [anon_sym_AT] = ACTIONS(3474), + [anon_sym_static] = ACTIONS(3474), + [anon_sym_readonly] = ACTIONS(3474), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_declare] = ACTIONS(3474), + [anon_sym_public] = ACTIONS(3474), + [anon_sym_private] = ACTIONS(3474), + [anon_sym_protected] = ACTIONS(3474), + [anon_sym_override] = ACTIONS(3474), + [anon_sym_module] = ACTIONS(3474), + [anon_sym_any] = ACTIONS(3474), + [anon_sym_number] = ACTIONS(3474), + [anon_sym_boolean] = ACTIONS(3474), + [anon_sym_string] = ACTIONS(3474), + [anon_sym_symbol] = ACTIONS(3474), + [anon_sym_object] = ACTIONS(3474), + [anon_sym_property] = ACTIONS(3474), + [anon_sym_signal] = ACTIONS(3474), + [anon_sym_on] = ACTIONS(3474), + [anon_sym_required] = ACTIONS(3474), + [anon_sym_component] = ACTIONS(3474), + [anon_sym_abstract] = ACTIONS(3474), + [anon_sym_interface] = ACTIONS(3474), + [anon_sym_enum] = ACTIONS(3474), + [sym_html_comment] = ACTIONS(5), + }, + [1797] = { + [sym_comment] = STATE(1797), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_from] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3462), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_of] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LTtemplate_GT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3462), + [sym_number] = ACTIONS(3462), + [sym_private_property_identifier] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_override] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_object] = ACTIONS(3462), + [anon_sym_property] = ACTIONS(3462), + [anon_sym_signal] = ACTIONS(3462), + [anon_sym_on] = ACTIONS(3462), + [anon_sym_required] = ACTIONS(3462), + [anon_sym_component] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [sym_html_comment] = ACTIONS(5), + }, + [1798] = { + [sym_comment] = STATE(1798), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1799] = { + [sym_comment] = STATE(1799), + [sym_identifier] = ACTIONS(3554), + [anon_sym_export] = ACTIONS(3554), + [anon_sym_type] = ACTIONS(3554), + [anon_sym_namespace] = ACTIONS(3554), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_RBRACE] = ACTIONS(3554), + [anon_sym_typeof] = ACTIONS(3554), + [anon_sym_import] = ACTIONS(3554), + [anon_sym_from] = ACTIONS(3554), + [anon_sym_with] = ACTIONS(3554), + [anon_sym_var] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_const] = ACTIONS(3554), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_switch] = ACTIONS(3554), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_await] = ACTIONS(3554), + [anon_sym_of] = ACTIONS(3554), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_break] = ACTIONS(3554), + [anon_sym_continue] = ACTIONS(3554), + [anon_sym_debugger] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_throw] = ACTIONS(3554), + [anon_sym_SEMI] = ACTIONS(3554), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LTtemplate_GT] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_SQUOTE] = ACTIONS(3554), + [anon_sym_class] = ACTIONS(3554), + [anon_sym_async] = ACTIONS(3554), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_using] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_SLASH] = ACTIONS(3554), + [anon_sym_LT] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3554), + [anon_sym_void] = ACTIONS(3554), + [anon_sym_delete] = ACTIONS(3554), + [anon_sym_PLUS_PLUS] = ACTIONS(3554), + [anon_sym_DASH_DASH] = ACTIONS(3554), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3554), + [sym_number] = ACTIONS(3554), + [sym_private_property_identifier] = ACTIONS(3554), + [sym_this] = ACTIONS(3554), + [sym_super] = ACTIONS(3554), + [sym_true] = ACTIONS(3554), + [sym_false] = ACTIONS(3554), + [sym_null] = ACTIONS(3554), + [sym_undefined] = ACTIONS(3554), + [anon_sym_AT] = ACTIONS(3554), + [anon_sym_static] = ACTIONS(3554), + [anon_sym_readonly] = ACTIONS(3554), + [anon_sym_get] = ACTIONS(3554), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_declare] = ACTIONS(3554), + [anon_sym_public] = ACTIONS(3554), + [anon_sym_private] = ACTIONS(3554), + [anon_sym_protected] = ACTIONS(3554), + [anon_sym_override] = ACTIONS(3554), + [anon_sym_module] = ACTIONS(3554), + [anon_sym_any] = ACTIONS(3554), + [anon_sym_number] = ACTIONS(3554), + [anon_sym_boolean] = ACTIONS(3554), + [anon_sym_string] = ACTIONS(3554), + [anon_sym_symbol] = ACTIONS(3554), + [anon_sym_object] = ACTIONS(3554), + [anon_sym_property] = ACTIONS(3554), + [anon_sym_signal] = ACTIONS(3554), + [anon_sym_on] = ACTIONS(3554), + [anon_sym_required] = ACTIONS(3554), + [anon_sym_component] = ACTIONS(3554), + [anon_sym_abstract] = ACTIONS(3554), + [anon_sym_interface] = ACTIONS(3554), + [anon_sym_enum] = ACTIONS(3554), + [sym_html_comment] = ACTIONS(5), + }, + [1800] = { + [sym_comment] = STATE(1800), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1801] = { + [sym_comment] = STATE(1801), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1802] = { + [sym_comment] = STATE(1802), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1803] = { + [sym_comment] = STATE(1803), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1804] = { + [sym_comment] = STATE(1804), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1805] = { + [sym_comment] = STATE(1805), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1806] = { + [sym_comment] = STATE(1806), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1807] = { + [sym_comment] = STATE(1807), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1808] = { + [sym_comment] = STATE(1808), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [sym_html_comment] = ACTIONS(5), + }, + [1809] = { + [sym_comment] = STATE(1809), + [sym_identifier] = ACTIONS(3536), + [anon_sym_export] = ACTIONS(3536), + [anon_sym_type] = ACTIONS(3536), + [anon_sym_namespace] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_RBRACE] = ACTIONS(3536), + [anon_sym_typeof] = ACTIONS(3536), + [anon_sym_import] = ACTIONS(3536), + [anon_sym_from] = ACTIONS(3536), + [anon_sym_with] = ACTIONS(3536), + [anon_sym_var] = ACTIONS(3536), + [anon_sym_let] = ACTIONS(3536), + [anon_sym_const] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_if] = ACTIONS(3536), + [anon_sym_switch] = ACTIONS(3536), + [anon_sym_for] = ACTIONS(3536), + [anon_sym_LPAREN] = ACTIONS(3536), + [anon_sym_await] = ACTIONS(3536), + [anon_sym_of] = ACTIONS(3536), + [anon_sym_while] = ACTIONS(3536), + [anon_sym_do] = ACTIONS(3536), + [anon_sym_try] = ACTIONS(3536), + [anon_sym_break] = ACTIONS(3536), + [anon_sym_continue] = ACTIONS(3536), + [anon_sym_debugger] = ACTIONS(3536), + [anon_sym_return] = ACTIONS(3536), + [anon_sym_throw] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym_yield] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LTtemplate_GT] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_class] = ACTIONS(3536), + [anon_sym_async] = ACTIONS(3536), + [anon_sym_function] = ACTIONS(3536), + [anon_sym_new] = ACTIONS(3536), + [anon_sym_using] = ACTIONS(3536), + [anon_sym_PLUS] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_void] = ACTIONS(3536), + [anon_sym_delete] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_DASH_DASH] = ACTIONS(3536), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3536), + [sym_number] = ACTIONS(3536), + [sym_private_property_identifier] = ACTIONS(3536), + [sym_this] = ACTIONS(3536), + [sym_super] = ACTIONS(3536), + [sym_true] = ACTIONS(3536), + [sym_false] = ACTIONS(3536), + [sym_null] = ACTIONS(3536), + [sym_undefined] = ACTIONS(3536), + [anon_sym_AT] = ACTIONS(3536), + [anon_sym_static] = ACTIONS(3536), + [anon_sym_readonly] = ACTIONS(3536), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3536), + [anon_sym_declare] = ACTIONS(3536), + [anon_sym_public] = ACTIONS(3536), + [anon_sym_private] = ACTIONS(3536), + [anon_sym_protected] = ACTIONS(3536), + [anon_sym_override] = ACTIONS(3536), + [anon_sym_module] = ACTIONS(3536), + [anon_sym_any] = ACTIONS(3536), + [anon_sym_number] = ACTIONS(3536), + [anon_sym_boolean] = ACTIONS(3536), + [anon_sym_string] = ACTIONS(3536), + [anon_sym_symbol] = ACTIONS(3536), + [anon_sym_object] = ACTIONS(3536), + [anon_sym_property] = ACTIONS(3536), + [anon_sym_signal] = ACTIONS(3536), + [anon_sym_on] = ACTIONS(3536), + [anon_sym_required] = ACTIONS(3536), + [anon_sym_component] = ACTIONS(3536), + [anon_sym_abstract] = ACTIONS(3536), + [anon_sym_interface] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3536), + [sym_html_comment] = ACTIONS(5), + }, + [1810] = { + [sym_comment] = STATE(1810), + [sym_identifier] = ACTIONS(3538), + [anon_sym_export] = ACTIONS(3538), + [anon_sym_type] = ACTIONS(3538), + [anon_sym_namespace] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_RBRACE] = ACTIONS(3538), + [anon_sym_typeof] = ACTIONS(3538), + [anon_sym_import] = ACTIONS(3538), + [anon_sym_from] = ACTIONS(3538), + [anon_sym_with] = ACTIONS(3538), + [anon_sym_var] = ACTIONS(3538), + [anon_sym_let] = ACTIONS(3538), + [anon_sym_const] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3538), + [anon_sym_switch] = ACTIONS(3538), + [anon_sym_for] = ACTIONS(3538), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_await] = ACTIONS(3538), + [anon_sym_of] = ACTIONS(3538), + [anon_sym_while] = ACTIONS(3538), + [anon_sym_do] = ACTIONS(3538), + [anon_sym_try] = ACTIONS(3538), + [anon_sym_break] = ACTIONS(3538), + [anon_sym_continue] = ACTIONS(3538), + [anon_sym_debugger] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3538), + [anon_sym_throw] = ACTIONS(3538), + [anon_sym_SEMI] = ACTIONS(3538), + [anon_sym_yield] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_LTtemplate_GT] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3538), + [anon_sym_async] = ACTIONS(3538), + [anon_sym_function] = ACTIONS(3538), + [anon_sym_new] = ACTIONS(3538), + [anon_sym_using] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3538), + [anon_sym_DASH] = ACTIONS(3538), + [anon_sym_SLASH] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(3538), + [anon_sym_void] = ACTIONS(3538), + [anon_sym_delete] = ACTIONS(3538), + [anon_sym_PLUS_PLUS] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3538), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3538), + [sym_number] = ACTIONS(3538), + [sym_private_property_identifier] = ACTIONS(3538), + [sym_this] = ACTIONS(3538), + [sym_super] = ACTIONS(3538), + [sym_true] = ACTIONS(3538), + [sym_false] = ACTIONS(3538), + [sym_null] = ACTIONS(3538), + [sym_undefined] = ACTIONS(3538), + [anon_sym_AT] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3538), + [anon_sym_readonly] = ACTIONS(3538), + [anon_sym_get] = ACTIONS(3538), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_declare] = ACTIONS(3538), + [anon_sym_public] = ACTIONS(3538), + [anon_sym_private] = ACTIONS(3538), + [anon_sym_protected] = ACTIONS(3538), + [anon_sym_override] = ACTIONS(3538), + [anon_sym_module] = ACTIONS(3538), + [anon_sym_any] = ACTIONS(3538), + [anon_sym_number] = ACTIONS(3538), + [anon_sym_boolean] = ACTIONS(3538), + [anon_sym_string] = ACTIONS(3538), + [anon_sym_symbol] = ACTIONS(3538), + [anon_sym_object] = ACTIONS(3538), + [anon_sym_property] = ACTIONS(3538), + [anon_sym_signal] = ACTIONS(3538), + [anon_sym_on] = ACTIONS(3538), + [anon_sym_required] = ACTIONS(3538), + [anon_sym_component] = ACTIONS(3538), + [anon_sym_abstract] = ACTIONS(3538), + [anon_sym_interface] = ACTIONS(3538), + [anon_sym_enum] = ACTIONS(3538), + [sym_html_comment] = ACTIONS(5), + }, + [1811] = { + [sym_comment] = STATE(1811), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_namespace] = ACTIONS(2456), [anon_sym_LBRACE] = ACTIONS(2456), [anon_sym_RBRACE] = ACTIONS(2456), - [anon_sym_typeof] = ACTIONS(2454), - [anon_sym_import] = ACTIONS(2454), - [anon_sym_from] = ACTIONS(2454), - [anon_sym_var] = ACTIONS(2454), - [anon_sym_let] = ACTIONS(2454), - [anon_sym_const] = ACTIONS(2454), + [anon_sym_typeof] = ACTIONS(2456), + [anon_sym_import] = ACTIONS(2456), + [anon_sym_from] = ACTIONS(2456), + [anon_sym_with] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), [anon_sym_BANG] = ACTIONS(2456), - [anon_sym_else] = ACTIONS(2454), - [anon_sym_if] = ACTIONS(2454), - [anon_sym_switch] = ACTIONS(2454), - [anon_sym_for] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_switch] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), [anon_sym_LPAREN] = ACTIONS(2456), - [anon_sym_await] = ACTIONS(2454), - [anon_sym_of] = ACTIONS(2454), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_do] = ACTIONS(2454), - [anon_sym_try] = ACTIONS(2454), - [anon_sym_with] = ACTIONS(2454), - [anon_sym_break] = ACTIONS(2454), - [anon_sym_continue] = ACTIONS(2454), - [anon_sym_debugger] = ACTIONS(2454), - [anon_sym_return] = ACTIONS(2454), - [anon_sym_throw] = ACTIONS(2454), + [anon_sym_await] = ACTIONS(2456), + [anon_sym_of] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_do] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_debugger] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_throw] = ACTIONS(2456), [anon_sym_SEMI] = ACTIONS(2456), - [anon_sym_case] = ACTIONS(2454), - [anon_sym_yield] = ACTIONS(2454), + [anon_sym_yield] = ACTIONS(2456), [anon_sym_LBRACK] = ACTIONS(2456), [anon_sym_LTtemplate_GT] = ACTIONS(2456), - [anon_sym_LT] = ACTIONS(2454), - [anon_sym_SLASH] = ACTIONS(2454), - [anon_sym_class] = ACTIONS(2454), - [anon_sym_async] = ACTIONS(2454), - [anon_sym_function] = ACTIONS(2454), - [anon_sym_new] = ACTIONS(2454), - [anon_sym_PLUS] = ACTIONS(2454), - [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_DQUOTE] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_class] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_new] = ACTIONS(2456), + [anon_sym_using] = ACTIONS(2456), + [anon_sym_PLUS] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2456), [anon_sym_TILDE] = ACTIONS(2456), - [anon_sym_void] = ACTIONS(2454), - [anon_sym_delete] = ACTIONS(2454), + [anon_sym_void] = ACTIONS(2456), + [anon_sym_delete] = ACTIONS(2456), [anon_sym_PLUS_PLUS] = ACTIONS(2456), [anon_sym_DASH_DASH] = ACTIONS(2456), - [anon_sym_DQUOTE] = ACTIONS(2456), - [anon_sym_SQUOTE] = ACTIONS(2456), - [sym_comment] = ACTIONS(3), + [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(2456), [sym_number] = ACTIONS(2456), - [sym_this] = ACTIONS(2454), - [sym_super] = ACTIONS(2454), - [sym_true] = ACTIONS(2454), - [sym_false] = ACTIONS(2454), - [sym_null] = ACTIONS(2454), - [sym_undefined] = ACTIONS(2454), + [sym_private_property_identifier] = ACTIONS(2456), + [sym_this] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_true] = ACTIONS(2456), + [sym_false] = ACTIONS(2456), + [sym_null] = ACTIONS(2456), + [sym_undefined] = ACTIONS(2456), [anon_sym_AT] = ACTIONS(2456), - [anon_sym_static] = ACTIONS(2454), - [anon_sym_readonly] = ACTIONS(2454), - [anon_sym_get] = ACTIONS(2454), - [anon_sym_set] = ACTIONS(2454), - [anon_sym_declare] = ACTIONS(2454), - [anon_sym_public] = ACTIONS(2454), - [anon_sym_private] = ACTIONS(2454), - [anon_sym_protected] = ACTIONS(2454), - [anon_sym_override] = ACTIONS(2454), - [anon_sym_module] = ACTIONS(2454), - [anon_sym_any] = ACTIONS(2454), - [anon_sym_number] = ACTIONS(2454), - [anon_sym_boolean] = ACTIONS(2454), - [anon_sym_string] = ACTIONS(2454), - [anon_sym_symbol] = ACTIONS(2454), - [anon_sym_property] = ACTIONS(2454), - [anon_sym_signal] = ACTIONS(2454), - [anon_sym_on] = ACTIONS(2454), - [anon_sym_required] = ACTIONS(2454), - [anon_sym_component] = ACTIONS(2454), - [anon_sym_abstract] = ACTIONS(2454), - [anon_sym_interface] = ACTIONS(2454), - [anon_sym_enum] = ACTIONS(2454), - }, - [739] = { - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_default] = ACTIONS(2458), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_LBRACE] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_typeof] = ACTIONS(2458), - [anon_sym_import] = ACTIONS(2458), - [anon_sym_from] = ACTIONS(2458), - [anon_sym_var] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_const] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(2460), - [anon_sym_else] = ACTIONS(2458), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_switch] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_await] = ACTIONS(2458), - [anon_sym_of] = ACTIONS(2458), - [anon_sym_while] = ACTIONS(2458), - [anon_sym_do] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2458), - [anon_sym_with] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2458), - [anon_sym_continue] = ACTIONS(2458), - [anon_sym_debugger] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2458), - [anon_sym_throw] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_case] = ACTIONS(2458), - [anon_sym_yield] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(2460), - [anon_sym_LTtemplate_GT] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_SLASH] = ACTIONS(2458), - [anon_sym_class] = ACTIONS(2458), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2458), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_PLUS] = ACTIONS(2458), - [anon_sym_DASH] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2460), - [anon_sym_void] = ACTIONS(2458), - [anon_sym_delete] = ACTIONS(2458), - [anon_sym_PLUS_PLUS] = ACTIONS(2460), - [anon_sym_DASH_DASH] = ACTIONS(2460), - [anon_sym_DQUOTE] = ACTIONS(2460), - [anon_sym_SQUOTE] = ACTIONS(2460), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2460), - [sym_number] = ACTIONS(2460), - [sym_this] = ACTIONS(2458), - [sym_super] = ACTIONS(2458), - [sym_true] = ACTIONS(2458), - [sym_false] = ACTIONS(2458), - [sym_null] = ACTIONS(2458), - [sym_undefined] = ACTIONS(2458), - [anon_sym_AT] = ACTIONS(2460), - [anon_sym_static] = ACTIONS(2458), - [anon_sym_readonly] = ACTIONS(2458), - [anon_sym_get] = ACTIONS(2458), - [anon_sym_set] = ACTIONS(2458), - [anon_sym_declare] = ACTIONS(2458), - [anon_sym_public] = ACTIONS(2458), - [anon_sym_private] = ACTIONS(2458), - [anon_sym_protected] = ACTIONS(2458), - [anon_sym_override] = ACTIONS(2458), - [anon_sym_module] = ACTIONS(2458), - [anon_sym_any] = ACTIONS(2458), - [anon_sym_number] = ACTIONS(2458), - [anon_sym_boolean] = ACTIONS(2458), - [anon_sym_string] = ACTIONS(2458), - [anon_sym_symbol] = ACTIONS(2458), - [anon_sym_property] = ACTIONS(2458), - [anon_sym_signal] = ACTIONS(2458), - [anon_sym_on] = ACTIONS(2458), - [anon_sym_required] = ACTIONS(2458), - [anon_sym_component] = ACTIONS(2458), - [anon_sym_abstract] = ACTIONS(2458), - [anon_sym_interface] = ACTIONS(2458), - [anon_sym_enum] = ACTIONS(2458), - }, - [740] = { - [sym_identifier] = ACTIONS(2462), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_default] = ACTIONS(2462), - [anon_sym_type] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2462), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_typeof] = ACTIONS(2462), - [anon_sym_import] = ACTIONS(2462), - [anon_sym_from] = ACTIONS(2462), - [anon_sym_var] = ACTIONS(2462), - [anon_sym_let] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_BANG] = ACTIONS(2464), - [anon_sym_else] = ACTIONS(2462), - [anon_sym_if] = ACTIONS(2462), - [anon_sym_switch] = ACTIONS(2462), - [anon_sym_for] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_await] = ACTIONS(2462), - [anon_sym_of] = ACTIONS(2462), - [anon_sym_while] = ACTIONS(2462), - [anon_sym_do] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_with] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_debugger] = ACTIONS(2462), - [anon_sym_return] = ACTIONS(2462), - [anon_sym_throw] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_case] = ACTIONS(2462), - [anon_sym_yield] = ACTIONS(2462), - [anon_sym_LBRACK] = ACTIONS(2464), - [anon_sym_LTtemplate_GT] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2462), - [anon_sym_SLASH] = ACTIONS(2462), - [anon_sym_class] = ACTIONS(2462), - [anon_sym_async] = ACTIONS(2462), - [anon_sym_function] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_PLUS] = ACTIONS(2462), - [anon_sym_DASH] = ACTIONS(2462), - [anon_sym_TILDE] = ACTIONS(2464), - [anon_sym_void] = ACTIONS(2462), - [anon_sym_delete] = ACTIONS(2462), - [anon_sym_PLUS_PLUS] = ACTIONS(2464), - [anon_sym_DASH_DASH] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2464), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2464), - [sym_number] = ACTIONS(2464), - [sym_this] = ACTIONS(2462), - [sym_super] = ACTIONS(2462), - [sym_true] = ACTIONS(2462), - [sym_false] = ACTIONS(2462), - [sym_null] = ACTIONS(2462), - [sym_undefined] = ACTIONS(2462), - [anon_sym_AT] = ACTIONS(2464), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_readonly] = ACTIONS(2462), - [anon_sym_get] = ACTIONS(2462), - [anon_sym_set] = ACTIONS(2462), - [anon_sym_declare] = ACTIONS(2462), - [anon_sym_public] = ACTIONS(2462), - [anon_sym_private] = ACTIONS(2462), - [anon_sym_protected] = ACTIONS(2462), - [anon_sym_override] = ACTIONS(2462), - [anon_sym_module] = ACTIONS(2462), - [anon_sym_any] = ACTIONS(2462), - [anon_sym_number] = ACTIONS(2462), - [anon_sym_boolean] = ACTIONS(2462), - [anon_sym_string] = ACTIONS(2462), - [anon_sym_symbol] = ACTIONS(2462), - [anon_sym_property] = ACTIONS(2462), - [anon_sym_signal] = ACTIONS(2462), - [anon_sym_on] = ACTIONS(2462), - [anon_sym_required] = ACTIONS(2462), - [anon_sym_component] = ACTIONS(2462), - [anon_sym_abstract] = ACTIONS(2462), - [anon_sym_interface] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - }, - [741] = { - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_from] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_of] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_case] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_LTtemplate_GT] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2468), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2468), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2468), - [sym_number] = ACTIONS(2468), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2468), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_property] = ACTIONS(2466), - [anon_sym_signal] = ACTIONS(2466), - [anon_sym_on] = ACTIONS(2466), - [anon_sym_required] = ACTIONS(2466), - [anon_sym_component] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - }, - [742] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [743] = { - [sym_identifier] = ACTIONS(2474), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_default] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_typeof] = ACTIONS(2474), - [anon_sym_import] = ACTIONS(2474), - [anon_sym_from] = ACTIONS(2474), - [anon_sym_var] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2476), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_await] = ACTIONS(2474), - [anon_sym_of] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_with] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_debugger] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_throw] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_case] = ACTIONS(2474), - [anon_sym_yield] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_LTtemplate_GT] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_SLASH] = ACTIONS(2474), - [anon_sym_class] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_TILDE] = ACTIONS(2476), - [anon_sym_void] = ACTIONS(2474), - [anon_sym_delete] = ACTIONS(2474), - [anon_sym_PLUS_PLUS] = ACTIONS(2476), - [anon_sym_DASH_DASH] = ACTIONS(2476), - [anon_sym_DQUOTE] = ACTIONS(2476), - [anon_sym_SQUOTE] = ACTIONS(2476), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2476), - [sym_number] = ACTIONS(2476), - [sym_this] = ACTIONS(2474), - [sym_super] = ACTIONS(2474), - [sym_true] = ACTIONS(2474), - [sym_false] = ACTIONS(2474), - [sym_null] = ACTIONS(2474), - [sym_undefined] = ACTIONS(2474), - [anon_sym_AT] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_declare] = ACTIONS(2474), - [anon_sym_public] = ACTIONS(2474), - [anon_sym_private] = ACTIONS(2474), - [anon_sym_protected] = ACTIONS(2474), - [anon_sym_override] = ACTIONS(2474), - [anon_sym_module] = ACTIONS(2474), - [anon_sym_any] = ACTIONS(2474), - [anon_sym_number] = ACTIONS(2474), - [anon_sym_boolean] = ACTIONS(2474), - [anon_sym_string] = ACTIONS(2474), - [anon_sym_symbol] = ACTIONS(2474), - [anon_sym_property] = ACTIONS(2474), - [anon_sym_signal] = ACTIONS(2474), - [anon_sym_on] = ACTIONS(2474), - [anon_sym_required] = ACTIONS(2474), - [anon_sym_component] = ACTIONS(2474), - [anon_sym_abstract] = ACTIONS(2474), - [anon_sym_interface] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - }, - [744] = { - [sym_identifier] = ACTIONS(2478), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_type] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_typeof] = ACTIONS(2478), - [anon_sym_import] = ACTIONS(2478), - [anon_sym_from] = ACTIONS(2478), - [anon_sym_var] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_await] = ACTIONS(2478), - [anon_sym_of] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_with] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_debugger] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_yield] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2480), - [anon_sym_LTtemplate_GT] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_async] = ACTIONS(2478), - [anon_sym_function] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_TILDE] = ACTIONS(2480), - [anon_sym_void] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2480), - [anon_sym_SQUOTE] = ACTIONS(2480), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2480), - [sym_number] = ACTIONS(2480), - [sym_this] = ACTIONS(2478), - [sym_super] = ACTIONS(2478), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_undefined] = ACTIONS(2478), - [anon_sym_AT] = ACTIONS(2480), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_readonly] = ACTIONS(2478), - [anon_sym_get] = ACTIONS(2478), - [anon_sym_set] = ACTIONS(2478), - [anon_sym_declare] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_override] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_any] = ACTIONS(2478), - [anon_sym_number] = ACTIONS(2478), - [anon_sym_boolean] = ACTIONS(2478), - [anon_sym_string] = ACTIONS(2478), - [anon_sym_symbol] = ACTIONS(2478), - [anon_sym_property] = ACTIONS(2478), - [anon_sym_signal] = ACTIONS(2478), - [anon_sym_on] = ACTIONS(2478), - [anon_sym_required] = ACTIONS(2478), - [anon_sym_component] = ACTIONS(2478), - [anon_sym_abstract] = ACTIONS(2478), - [anon_sym_interface] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - }, - [745] = { - [sym_identifier] = ACTIONS(2482), - [anon_sym_export] = ACTIONS(2482), - [anon_sym_default] = ACTIONS(2482), - [anon_sym_type] = ACTIONS(2482), - [anon_sym_namespace] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(2484), - [anon_sym_RBRACE] = ACTIONS(2484), - [anon_sym_typeof] = ACTIONS(2482), - [anon_sym_import] = ACTIONS(2482), - [anon_sym_from] = ACTIONS(2482), - [anon_sym_var] = ACTIONS(2482), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [anon_sym_BANG] = ACTIONS(2484), - [anon_sym_else] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_switch] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_LPAREN] = ACTIONS(2484), - [anon_sym_await] = ACTIONS(2482), - [anon_sym_of] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_do] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2482), - [anon_sym_with] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_debugger] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_throw] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2484), - [anon_sym_case] = ACTIONS(2482), - [anon_sym_yield] = ACTIONS(2482), - [anon_sym_LBRACK] = ACTIONS(2484), - [anon_sym_LTtemplate_GT] = ACTIONS(2484), - [anon_sym_LT] = ACTIONS(2482), - [anon_sym_SLASH] = ACTIONS(2482), - [anon_sym_class] = ACTIONS(2482), - [anon_sym_async] = ACTIONS(2482), - [anon_sym_function] = ACTIONS(2482), - [anon_sym_new] = ACTIONS(2482), - [anon_sym_PLUS] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2482), - [anon_sym_TILDE] = ACTIONS(2484), - [anon_sym_void] = ACTIONS(2482), - [anon_sym_delete] = ACTIONS(2482), - [anon_sym_PLUS_PLUS] = ACTIONS(2484), - [anon_sym_DASH_DASH] = ACTIONS(2484), - [anon_sym_DQUOTE] = ACTIONS(2484), - [anon_sym_SQUOTE] = ACTIONS(2484), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2484), - [sym_number] = ACTIONS(2484), - [sym_this] = ACTIONS(2482), - [sym_super] = ACTIONS(2482), - [sym_true] = ACTIONS(2482), - [sym_false] = ACTIONS(2482), - [sym_null] = ACTIONS(2482), - [sym_undefined] = ACTIONS(2482), - [anon_sym_AT] = ACTIONS(2484), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_readonly] = ACTIONS(2482), - [anon_sym_get] = ACTIONS(2482), - [anon_sym_set] = ACTIONS(2482), - [anon_sym_declare] = ACTIONS(2482), - [anon_sym_public] = ACTIONS(2482), - [anon_sym_private] = ACTIONS(2482), - [anon_sym_protected] = ACTIONS(2482), - [anon_sym_override] = ACTIONS(2482), - [anon_sym_module] = ACTIONS(2482), - [anon_sym_any] = ACTIONS(2482), - [anon_sym_number] = ACTIONS(2482), - [anon_sym_boolean] = ACTIONS(2482), - [anon_sym_string] = ACTIONS(2482), - [anon_sym_symbol] = ACTIONS(2482), - [anon_sym_property] = ACTIONS(2482), - [anon_sym_signal] = ACTIONS(2482), - [anon_sym_on] = ACTIONS(2482), - [anon_sym_required] = ACTIONS(2482), - [anon_sym_component] = ACTIONS(2482), - [anon_sym_abstract] = ACTIONS(2482), - [anon_sym_interface] = ACTIONS(2482), - [anon_sym_enum] = ACTIONS(2482), - }, - [746] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [747] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [748] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [749] = { - [sym_identifier] = ACTIONS(2486), - [anon_sym_export] = ACTIONS(2486), - [anon_sym_default] = ACTIONS(2486), - [anon_sym_type] = ACTIONS(2486), - [anon_sym_namespace] = ACTIONS(2486), - [anon_sym_LBRACE] = ACTIONS(2488), - [anon_sym_RBRACE] = ACTIONS(2488), - [anon_sym_typeof] = ACTIONS(2486), - [anon_sym_import] = ACTIONS(2486), - [anon_sym_from] = ACTIONS(2486), - [anon_sym_var] = ACTIONS(2486), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_const] = ACTIONS(2486), - [anon_sym_BANG] = ACTIONS(2488), - [anon_sym_else] = ACTIONS(2486), - [anon_sym_if] = ACTIONS(2486), - [anon_sym_switch] = ACTIONS(2486), - [anon_sym_for] = ACTIONS(2486), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_await] = ACTIONS(2486), - [anon_sym_of] = ACTIONS(2486), - [anon_sym_while] = ACTIONS(2486), - [anon_sym_do] = ACTIONS(2486), - [anon_sym_try] = ACTIONS(2486), - [anon_sym_with] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_debugger] = ACTIONS(2486), - [anon_sym_return] = ACTIONS(2486), - [anon_sym_throw] = ACTIONS(2486), - [anon_sym_SEMI] = ACTIONS(2488), - [anon_sym_case] = ACTIONS(2486), - [anon_sym_yield] = ACTIONS(2486), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_LTtemplate_GT] = ACTIONS(2488), - [anon_sym_LT] = ACTIONS(2486), - [anon_sym_SLASH] = ACTIONS(2486), - [anon_sym_class] = ACTIONS(2486), - [anon_sym_async] = ACTIONS(2486), - [anon_sym_function] = ACTIONS(2486), - [anon_sym_new] = ACTIONS(2486), - [anon_sym_PLUS] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2486), - [anon_sym_TILDE] = ACTIONS(2488), - [anon_sym_void] = ACTIONS(2486), - [anon_sym_delete] = ACTIONS(2486), - [anon_sym_PLUS_PLUS] = ACTIONS(2488), - [anon_sym_DASH_DASH] = ACTIONS(2488), - [anon_sym_DQUOTE] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2488), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2488), - [sym_number] = ACTIONS(2488), - [sym_this] = ACTIONS(2486), - [sym_super] = ACTIONS(2486), - [sym_true] = ACTIONS(2486), - [sym_false] = ACTIONS(2486), - [sym_null] = ACTIONS(2486), - [sym_undefined] = ACTIONS(2486), - [anon_sym_AT] = ACTIONS(2488), - [anon_sym_static] = ACTIONS(2486), - [anon_sym_readonly] = ACTIONS(2486), - [anon_sym_get] = ACTIONS(2486), - [anon_sym_set] = ACTIONS(2486), - [anon_sym_declare] = ACTIONS(2486), - [anon_sym_public] = ACTIONS(2486), - [anon_sym_private] = ACTIONS(2486), - [anon_sym_protected] = ACTIONS(2486), - [anon_sym_override] = ACTIONS(2486), - [anon_sym_module] = ACTIONS(2486), - [anon_sym_any] = ACTIONS(2486), - [anon_sym_number] = ACTIONS(2486), - [anon_sym_boolean] = ACTIONS(2486), - [anon_sym_string] = ACTIONS(2486), - [anon_sym_symbol] = ACTIONS(2486), - [anon_sym_property] = ACTIONS(2486), - [anon_sym_signal] = ACTIONS(2486), - [anon_sym_on] = ACTIONS(2486), - [anon_sym_required] = ACTIONS(2486), - [anon_sym_component] = ACTIONS(2486), - [anon_sym_abstract] = ACTIONS(2486), - [anon_sym_interface] = ACTIONS(2486), - [anon_sym_enum] = ACTIONS(2486), - }, - [750] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [751] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [752] = { - [sym_identifier] = ACTIONS(2490), - [anon_sym_export] = ACTIONS(2490), - [anon_sym_default] = ACTIONS(2490), - [anon_sym_type] = ACTIONS(2490), - [anon_sym_namespace] = ACTIONS(2490), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_RBRACE] = ACTIONS(2492), - [anon_sym_typeof] = ACTIONS(2490), - [anon_sym_import] = ACTIONS(2490), - [anon_sym_from] = ACTIONS(2490), - [anon_sym_var] = ACTIONS(2490), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_const] = ACTIONS(2490), - [anon_sym_BANG] = ACTIONS(2492), - [anon_sym_else] = ACTIONS(2490), - [anon_sym_if] = ACTIONS(2490), - [anon_sym_switch] = ACTIONS(2490), - [anon_sym_for] = ACTIONS(2490), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_await] = ACTIONS(2490), - [anon_sym_of] = ACTIONS(2490), - [anon_sym_while] = ACTIONS(2490), - [anon_sym_do] = ACTIONS(2490), - [anon_sym_try] = ACTIONS(2490), - [anon_sym_with] = ACTIONS(2490), - [anon_sym_break] = ACTIONS(2490), - [anon_sym_continue] = ACTIONS(2490), - [anon_sym_debugger] = ACTIONS(2490), - [anon_sym_return] = ACTIONS(2490), - [anon_sym_throw] = ACTIONS(2490), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_case] = ACTIONS(2490), - [anon_sym_yield] = ACTIONS(2490), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LTtemplate_GT] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2490), - [anon_sym_SLASH] = ACTIONS(2490), - [anon_sym_class] = ACTIONS(2490), - [anon_sym_async] = ACTIONS(2490), - [anon_sym_function] = ACTIONS(2490), - [anon_sym_new] = ACTIONS(2490), - [anon_sym_PLUS] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2490), - [anon_sym_TILDE] = ACTIONS(2492), - [anon_sym_void] = ACTIONS(2490), - [anon_sym_delete] = ACTIONS(2490), - [anon_sym_PLUS_PLUS] = ACTIONS(2492), - [anon_sym_DASH_DASH] = ACTIONS(2492), - [anon_sym_DQUOTE] = ACTIONS(2492), - [anon_sym_SQUOTE] = ACTIONS(2492), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2492), - [sym_number] = ACTIONS(2492), - [sym_this] = ACTIONS(2490), - [sym_super] = ACTIONS(2490), - [sym_true] = ACTIONS(2490), - [sym_false] = ACTIONS(2490), - [sym_null] = ACTIONS(2490), - [sym_undefined] = ACTIONS(2490), - [anon_sym_AT] = ACTIONS(2492), - [anon_sym_static] = ACTIONS(2490), - [anon_sym_readonly] = ACTIONS(2490), - [anon_sym_get] = ACTIONS(2490), - [anon_sym_set] = ACTIONS(2490), - [anon_sym_declare] = ACTIONS(2490), - [anon_sym_public] = ACTIONS(2490), - [anon_sym_private] = ACTIONS(2490), - [anon_sym_protected] = ACTIONS(2490), - [anon_sym_override] = ACTIONS(2490), - [anon_sym_module] = ACTIONS(2490), - [anon_sym_any] = ACTIONS(2490), - [anon_sym_number] = ACTIONS(2490), - [anon_sym_boolean] = ACTIONS(2490), - [anon_sym_string] = ACTIONS(2490), - [anon_sym_symbol] = ACTIONS(2490), - [anon_sym_property] = ACTIONS(2490), - [anon_sym_signal] = ACTIONS(2490), - [anon_sym_on] = ACTIONS(2490), - [anon_sym_required] = ACTIONS(2490), - [anon_sym_component] = ACTIONS(2490), - [anon_sym_abstract] = ACTIONS(2490), - [anon_sym_interface] = ACTIONS(2490), - [anon_sym_enum] = ACTIONS(2490), - }, - [753] = { - [sym_identifier] = ACTIONS(2494), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_default] = ACTIONS(2494), - [anon_sym_type] = ACTIONS(2494), - [anon_sym_namespace] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_typeof] = ACTIONS(2494), - [anon_sym_import] = ACTIONS(2494), - [anon_sym_from] = ACTIONS(2494), - [anon_sym_var] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2494), - [anon_sym_if] = ACTIONS(2494), - [anon_sym_switch] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_await] = ACTIONS(2494), - [anon_sym_of] = ACTIONS(2494), - [anon_sym_while] = ACTIONS(2494), - [anon_sym_do] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2494), - [anon_sym_break] = ACTIONS(2494), - [anon_sym_continue] = ACTIONS(2494), - [anon_sym_debugger] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2494), - [anon_sym_throw] = ACTIONS(2494), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_case] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2496), - [anon_sym_LTtemplate_GT] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2494), - [anon_sym_class] = ACTIONS(2494), - [anon_sym_async] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2494), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2496), - [anon_sym_void] = ACTIONS(2494), - [anon_sym_delete] = ACTIONS(2494), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_property] = ACTIONS(2456), + [anon_sym_signal] = ACTIONS(2456), + [anon_sym_on] = ACTIONS(2456), + [anon_sym_required] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_abstract] = ACTIONS(2456), + [anon_sym_interface] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [sym_html_comment] = ACTIONS(5), + }, + [1812] = { + [sym_comment] = STATE(1812), + [sym_identifier] = ACTIONS(3626), + [anon_sym_export] = ACTIONS(3626), + [anon_sym_type] = ACTIONS(3626), + [anon_sym_namespace] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3626), + [anon_sym_RBRACE] = ACTIONS(3626), + [anon_sym_typeof] = ACTIONS(3626), + [anon_sym_import] = ACTIONS(3626), + [anon_sym_from] = ACTIONS(3626), + [anon_sym_with] = ACTIONS(3626), + [anon_sym_var] = ACTIONS(3626), + [anon_sym_let] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3626), + [anon_sym_await] = ACTIONS(3626), + [anon_sym_of] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_debugger] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_LTtemplate_GT] = ACTIONS(3626), + [anon_sym_DQUOTE] = ACTIONS(3626), + [anon_sym_SQUOTE] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_async] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_SLASH] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_TILDE] = ACTIONS(3626), + [anon_sym_void] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3626), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3626), + [sym_number] = ACTIONS(3626), + [sym_private_property_identifier] = ACTIONS(3626), + [sym_this] = ACTIONS(3626), + [sym_super] = ACTIONS(3626), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [sym_null] = ACTIONS(3626), + [sym_undefined] = ACTIONS(3626), + [anon_sym_AT] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_readonly] = ACTIONS(3626), + [anon_sym_get] = ACTIONS(3626), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_declare] = ACTIONS(3626), + [anon_sym_public] = ACTIONS(3626), + [anon_sym_private] = ACTIONS(3626), + [anon_sym_protected] = ACTIONS(3626), + [anon_sym_override] = ACTIONS(3626), + [anon_sym_module] = ACTIONS(3626), + [anon_sym_any] = ACTIONS(3626), + [anon_sym_number] = ACTIONS(3626), + [anon_sym_boolean] = ACTIONS(3626), + [anon_sym_string] = ACTIONS(3626), + [anon_sym_symbol] = ACTIONS(3626), + [anon_sym_object] = ACTIONS(3626), + [anon_sym_property] = ACTIONS(3626), + [anon_sym_signal] = ACTIONS(3626), + [anon_sym_on] = ACTIONS(3626), + [anon_sym_required] = ACTIONS(3626), + [anon_sym_component] = ACTIONS(3626), + [anon_sym_abstract] = ACTIONS(3626), + [anon_sym_interface] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), + [sym_html_comment] = ACTIONS(5), + }, + [1813] = { + [sym_comment] = STATE(1813), + [sym_identifier] = ACTIONS(3632), + [anon_sym_export] = ACTIONS(3632), + [anon_sym_type] = ACTIONS(3632), + [anon_sym_namespace] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_typeof] = ACTIONS(3632), + [anon_sym_import] = ACTIONS(3632), + [anon_sym_from] = ACTIONS(3632), + [anon_sym_with] = ACTIONS(3632), + [anon_sym_var] = ACTIONS(3632), + [anon_sym_let] = ACTIONS(3632), + [anon_sym_const] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_switch] = ACTIONS(3632), + [anon_sym_for] = ACTIONS(3632), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_await] = ACTIONS(3632), + [anon_sym_of] = ACTIONS(3632), + [anon_sym_while] = ACTIONS(3632), + [anon_sym_do] = ACTIONS(3632), + [anon_sym_try] = ACTIONS(3632), + [anon_sym_break] = ACTIONS(3632), + [anon_sym_continue] = ACTIONS(3632), + [anon_sym_debugger] = ACTIONS(3632), + [anon_sym_return] = ACTIONS(3632), + [anon_sym_throw] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_yield] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3632), + [anon_sym_LTtemplate_GT] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_class] = ACTIONS(3632), + [anon_sym_async] = ACTIONS(3632), + [anon_sym_function] = ACTIONS(3632), + [anon_sym_new] = ACTIONS(3632), + [anon_sym_using] = ACTIONS(3632), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_SLASH] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_void] = ACTIONS(3632), + [anon_sym_delete] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3632), + [sym_number] = ACTIONS(3632), + [sym_private_property_identifier] = ACTIONS(3632), + [sym_this] = ACTIONS(3632), + [sym_super] = ACTIONS(3632), + [sym_true] = ACTIONS(3632), + [sym_false] = ACTIONS(3632), + [sym_null] = ACTIONS(3632), + [sym_undefined] = ACTIONS(3632), + [anon_sym_AT] = ACTIONS(3632), + [anon_sym_static] = ACTIONS(3632), + [anon_sym_readonly] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(3632), + [anon_sym_set] = ACTIONS(3632), + [anon_sym_declare] = ACTIONS(3632), + [anon_sym_public] = ACTIONS(3632), + [anon_sym_private] = ACTIONS(3632), + [anon_sym_protected] = ACTIONS(3632), + [anon_sym_override] = ACTIONS(3632), + [anon_sym_module] = ACTIONS(3632), + [anon_sym_any] = ACTIONS(3632), + [anon_sym_number] = ACTIONS(3632), + [anon_sym_boolean] = ACTIONS(3632), + [anon_sym_string] = ACTIONS(3632), + [anon_sym_symbol] = ACTIONS(3632), + [anon_sym_object] = ACTIONS(3632), + [anon_sym_property] = ACTIONS(3632), + [anon_sym_signal] = ACTIONS(3632), + [anon_sym_on] = ACTIONS(3632), + [anon_sym_required] = ACTIONS(3632), + [anon_sym_component] = ACTIONS(3632), + [anon_sym_abstract] = ACTIONS(3632), + [anon_sym_interface] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(3632), + [sym_html_comment] = ACTIONS(5), + }, + [1814] = { + [sym_comment] = STATE(1814), + [sym_identifier] = ACTIONS(3650), + [anon_sym_export] = ACTIONS(3650), + [anon_sym_type] = ACTIONS(3650), + [anon_sym_namespace] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_typeof] = ACTIONS(3650), + [anon_sym_import] = ACTIONS(3650), + [anon_sym_from] = ACTIONS(3650), + [anon_sym_with] = ACTIONS(3650), + [anon_sym_var] = ACTIONS(3650), + [anon_sym_let] = ACTIONS(3650), + [anon_sym_const] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_if] = ACTIONS(3650), + [anon_sym_switch] = ACTIONS(3650), + [anon_sym_for] = ACTIONS(3650), + [anon_sym_LPAREN] = ACTIONS(3650), + [anon_sym_await] = ACTIONS(3650), + [anon_sym_of] = ACTIONS(3650), + [anon_sym_while] = ACTIONS(3650), + [anon_sym_do] = ACTIONS(3650), + [anon_sym_try] = ACTIONS(3650), + [anon_sym_break] = ACTIONS(3650), + [anon_sym_continue] = ACTIONS(3650), + [anon_sym_debugger] = ACTIONS(3650), + [anon_sym_return] = ACTIONS(3650), + [anon_sym_throw] = ACTIONS(3650), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym_yield] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_LTtemplate_GT] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_class] = ACTIONS(3650), + [anon_sym_async] = ACTIONS(3650), + [anon_sym_function] = ACTIONS(3650), + [anon_sym_new] = ACTIONS(3650), + [anon_sym_using] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3650), + [anon_sym_LT] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_void] = ACTIONS(3650), + [anon_sym_delete] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3650), + [sym_number] = ACTIONS(3650), + [sym_private_property_identifier] = ACTIONS(3650), + [sym_this] = ACTIONS(3650), + [sym_super] = ACTIONS(3650), + [sym_true] = ACTIONS(3650), + [sym_false] = ACTIONS(3650), + [sym_null] = ACTIONS(3650), + [sym_undefined] = ACTIONS(3650), + [anon_sym_AT] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3650), + [anon_sym_readonly] = ACTIONS(3650), + [anon_sym_get] = ACTIONS(3650), + [anon_sym_set] = ACTIONS(3650), + [anon_sym_declare] = ACTIONS(3650), + [anon_sym_public] = ACTIONS(3650), + [anon_sym_private] = ACTIONS(3650), + [anon_sym_protected] = ACTIONS(3650), + [anon_sym_override] = ACTIONS(3650), + [anon_sym_module] = ACTIONS(3650), + [anon_sym_any] = ACTIONS(3650), + [anon_sym_number] = ACTIONS(3650), + [anon_sym_boolean] = ACTIONS(3650), + [anon_sym_string] = ACTIONS(3650), + [anon_sym_symbol] = ACTIONS(3650), + [anon_sym_object] = ACTIONS(3650), + [anon_sym_property] = ACTIONS(3650), + [anon_sym_signal] = ACTIONS(3650), + [anon_sym_on] = ACTIONS(3650), + [anon_sym_required] = ACTIONS(3650), + [anon_sym_component] = ACTIONS(3650), + [anon_sym_abstract] = ACTIONS(3650), + [anon_sym_interface] = ACTIONS(3650), + [anon_sym_enum] = ACTIONS(3650), + [sym_html_comment] = ACTIONS(5), + }, + [1815] = { + [sym_comment] = STATE(1815), + [sym_identifier] = ACTIONS(3634), + [anon_sym_export] = ACTIONS(3634), + [anon_sym_type] = ACTIONS(3634), + [anon_sym_namespace] = ACTIONS(3634), + [anon_sym_LBRACE] = ACTIONS(3634), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_typeof] = ACTIONS(3634), + [anon_sym_import] = ACTIONS(3634), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_with] = ACTIONS(3634), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_const] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_if] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_for] = ACTIONS(3634), + [anon_sym_LPAREN] = ACTIONS(3634), + [anon_sym_await] = ACTIONS(3634), + [anon_sym_of] = ACTIONS(3634), + [anon_sym_while] = ACTIONS(3634), + [anon_sym_do] = ACTIONS(3634), + [anon_sym_try] = ACTIONS(3634), + [anon_sym_break] = ACTIONS(3634), + [anon_sym_continue] = ACTIONS(3634), + [anon_sym_debugger] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3634), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3634), + [anon_sym_LTtemplate_GT] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(3634), + [anon_sym_SQUOTE] = ACTIONS(3634), + [anon_sym_class] = ACTIONS(3634), + [anon_sym_async] = ACTIONS(3634), + [anon_sym_function] = ACTIONS(3634), + [anon_sym_new] = ACTIONS(3634), + [anon_sym_using] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(3634), + [anon_sym_void] = ACTIONS(3634), + [anon_sym_delete] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3634), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3634), + [sym_number] = ACTIONS(3634), + [sym_private_property_identifier] = ACTIONS(3634), + [sym_this] = ACTIONS(3634), + [sym_super] = ACTIONS(3634), + [sym_true] = ACTIONS(3634), + [sym_false] = ACTIONS(3634), + [sym_null] = ACTIONS(3634), + [sym_undefined] = ACTIONS(3634), + [anon_sym_AT] = ACTIONS(3634), + [anon_sym_static] = ACTIONS(3634), + [anon_sym_readonly] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(3634), + [anon_sym_set] = ACTIONS(3634), + [anon_sym_declare] = ACTIONS(3634), + [anon_sym_public] = ACTIONS(3634), + [anon_sym_private] = ACTIONS(3634), + [anon_sym_protected] = ACTIONS(3634), + [anon_sym_override] = ACTIONS(3634), + [anon_sym_module] = ACTIONS(3634), + [anon_sym_any] = ACTIONS(3634), + [anon_sym_number] = ACTIONS(3634), + [anon_sym_boolean] = ACTIONS(3634), + [anon_sym_string] = ACTIONS(3634), + [anon_sym_symbol] = ACTIONS(3634), + [anon_sym_object] = ACTIONS(3634), + [anon_sym_property] = ACTIONS(3634), + [anon_sym_signal] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_required] = ACTIONS(3634), + [anon_sym_component] = ACTIONS(3634), + [anon_sym_abstract] = ACTIONS(3634), + [anon_sym_interface] = ACTIONS(3634), + [anon_sym_enum] = ACTIONS(3634), + [sym_html_comment] = ACTIONS(5), + }, + [1816] = { + [sym_comment] = STATE(1816), + [sym_identifier] = ACTIONS(3636), + [anon_sym_export] = ACTIONS(3636), + [anon_sym_type] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_typeof] = ACTIONS(3636), + [anon_sym_import] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3636), + [anon_sym_let] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_await] = ACTIONS(3636), + [anon_sym_of] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_debugger] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_yield] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_LTtemplate_GT] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(3636), + [anon_sym_SQUOTE] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_async] = ACTIONS(3636), + [anon_sym_function] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3636), + [anon_sym_void] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3636), + [sym_number] = ACTIONS(3636), + [sym_private_property_identifier] = ACTIONS(3636), + [sym_this] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [sym_null] = ACTIONS(3636), + [sym_undefined] = ACTIONS(3636), + [anon_sym_AT] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_readonly] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(3636), + [anon_sym_set] = ACTIONS(3636), + [anon_sym_declare] = ACTIONS(3636), + [anon_sym_public] = ACTIONS(3636), + [anon_sym_private] = ACTIONS(3636), + [anon_sym_protected] = ACTIONS(3636), + [anon_sym_override] = ACTIONS(3636), + [anon_sym_module] = ACTIONS(3636), + [anon_sym_any] = ACTIONS(3636), + [anon_sym_number] = ACTIONS(3636), + [anon_sym_boolean] = ACTIONS(3636), + [anon_sym_string] = ACTIONS(3636), + [anon_sym_symbol] = ACTIONS(3636), + [anon_sym_object] = ACTIONS(3636), + [anon_sym_property] = ACTIONS(3636), + [anon_sym_signal] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_required] = ACTIONS(3636), + [anon_sym_component] = ACTIONS(3636), + [anon_sym_abstract] = ACTIONS(3636), + [anon_sym_interface] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [sym_html_comment] = ACTIONS(5), + }, + [1817] = { + [sym_comment] = STATE(1817), + [sym_identifier] = ACTIONS(3472), + [anon_sym_export] = ACTIONS(3472), + [anon_sym_type] = ACTIONS(3472), + [anon_sym_namespace] = ACTIONS(3472), + [anon_sym_LBRACE] = ACTIONS(3472), + [anon_sym_RBRACE] = ACTIONS(3472), + [anon_sym_typeof] = ACTIONS(3472), + [anon_sym_import] = ACTIONS(3472), + [anon_sym_from] = ACTIONS(3472), + [anon_sym_with] = ACTIONS(3472), + [anon_sym_var] = ACTIONS(3472), + [anon_sym_let] = ACTIONS(3472), + [anon_sym_const] = ACTIONS(3472), + [anon_sym_BANG] = ACTIONS(3472), + [anon_sym_if] = ACTIONS(3472), + [anon_sym_switch] = ACTIONS(3472), + [anon_sym_for] = ACTIONS(3472), + [anon_sym_LPAREN] = ACTIONS(3472), + [anon_sym_await] = ACTIONS(3472), + [anon_sym_of] = ACTIONS(3472), + [anon_sym_while] = ACTIONS(3472), + [anon_sym_do] = ACTIONS(3472), + [anon_sym_try] = ACTIONS(3472), + [anon_sym_break] = ACTIONS(3472), + [anon_sym_continue] = ACTIONS(3472), + [anon_sym_debugger] = ACTIONS(3472), + [anon_sym_return] = ACTIONS(3472), + [anon_sym_throw] = ACTIONS(3472), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym_yield] = ACTIONS(3472), + [anon_sym_LBRACK] = ACTIONS(3472), + [anon_sym_LTtemplate_GT] = ACTIONS(3472), + [anon_sym_DQUOTE] = ACTIONS(3472), + [anon_sym_SQUOTE] = ACTIONS(3472), + [anon_sym_class] = ACTIONS(3472), + [anon_sym_async] = ACTIONS(3472), + [anon_sym_function] = ACTIONS(3472), + [anon_sym_new] = ACTIONS(3472), + [anon_sym_using] = ACTIONS(3472), + [anon_sym_PLUS] = ACTIONS(3472), + [anon_sym_DASH] = ACTIONS(3472), + [anon_sym_SLASH] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(3472), + [anon_sym_TILDE] = ACTIONS(3472), + [anon_sym_void] = ACTIONS(3472), + [anon_sym_delete] = ACTIONS(3472), + [anon_sym_PLUS_PLUS] = ACTIONS(3472), + [anon_sym_DASH_DASH] = ACTIONS(3472), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3472), + [sym_number] = ACTIONS(3472), + [sym_private_property_identifier] = ACTIONS(3472), + [sym_this] = ACTIONS(3472), + [sym_super] = ACTIONS(3472), + [sym_true] = ACTIONS(3472), + [sym_false] = ACTIONS(3472), + [sym_null] = ACTIONS(3472), + [sym_undefined] = ACTIONS(3472), + [anon_sym_AT] = ACTIONS(3472), + [anon_sym_static] = ACTIONS(3472), + [anon_sym_readonly] = ACTIONS(3472), + [anon_sym_get] = ACTIONS(3472), + [anon_sym_set] = ACTIONS(3472), + [anon_sym_declare] = ACTIONS(3472), + [anon_sym_public] = ACTIONS(3472), + [anon_sym_private] = ACTIONS(3472), + [anon_sym_protected] = ACTIONS(3472), + [anon_sym_override] = ACTIONS(3472), + [anon_sym_module] = ACTIONS(3472), + [anon_sym_any] = ACTIONS(3472), + [anon_sym_number] = ACTIONS(3472), + [anon_sym_boolean] = ACTIONS(3472), + [anon_sym_string] = ACTIONS(3472), + [anon_sym_symbol] = ACTIONS(3472), + [anon_sym_object] = ACTIONS(3472), + [anon_sym_property] = ACTIONS(3472), + [anon_sym_signal] = ACTIONS(3472), + [anon_sym_on] = ACTIONS(3472), + [anon_sym_required] = ACTIONS(3472), + [anon_sym_component] = ACTIONS(3472), + [anon_sym_abstract] = ACTIONS(3472), + [anon_sym_interface] = ACTIONS(3472), + [anon_sym_enum] = ACTIONS(3472), + [sym_html_comment] = ACTIONS(5), + }, + [1818] = { + [sym_comment] = STATE(1818), + [sym_identifier] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_type] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_typeof] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3716), + [anon_sym_with] = ACTIONS(3716), + [anon_sym_var] = ACTIONS(3716), + [anon_sym_let] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_await] = ACTIONS(3716), + [anon_sym_of] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_debugger] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym_yield] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_LTtemplate_GT] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [anon_sym_SQUOTE] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_async] = ACTIONS(3716), + [anon_sym_function] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_void] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3716), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3716), + [sym_number] = ACTIONS(3716), + [sym_private_property_identifier] = ACTIONS(3716), + [sym_this] = ACTIONS(3716), + [sym_super] = ACTIONS(3716), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [sym_null] = ACTIONS(3716), + [sym_undefined] = ACTIONS(3716), + [anon_sym_AT] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_readonly] = ACTIONS(3716), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3716), + [anon_sym_declare] = ACTIONS(3716), + [anon_sym_public] = ACTIONS(3716), + [anon_sym_private] = ACTIONS(3716), + [anon_sym_protected] = ACTIONS(3716), + [anon_sym_override] = ACTIONS(3716), + [anon_sym_module] = ACTIONS(3716), + [anon_sym_any] = ACTIONS(3716), + [anon_sym_number] = ACTIONS(3716), + [anon_sym_boolean] = ACTIONS(3716), + [anon_sym_string] = ACTIONS(3716), + [anon_sym_symbol] = ACTIONS(3716), + [anon_sym_object] = ACTIONS(3716), + [anon_sym_property] = ACTIONS(3716), + [anon_sym_signal] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3716), + [anon_sym_required] = ACTIONS(3716), + [anon_sym_component] = ACTIONS(3716), + [anon_sym_abstract] = ACTIONS(3716), + [anon_sym_interface] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [sym_html_comment] = ACTIONS(5), + }, + [1819] = { + [sym_comment] = STATE(1819), + [sym_identifier] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_type] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_typeof] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3716), + [anon_sym_with] = ACTIONS(3716), + [anon_sym_var] = ACTIONS(3716), + [anon_sym_let] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_await] = ACTIONS(3716), + [anon_sym_of] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_debugger] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym_yield] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_LTtemplate_GT] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [anon_sym_SQUOTE] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_async] = ACTIONS(3716), + [anon_sym_function] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_void] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3716), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3716), + [sym_number] = ACTIONS(3716), + [sym_private_property_identifier] = ACTIONS(3716), + [sym_this] = ACTIONS(3716), + [sym_super] = ACTIONS(3716), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [sym_null] = ACTIONS(3716), + [sym_undefined] = ACTIONS(3716), + [anon_sym_AT] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_readonly] = ACTIONS(3716), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3716), + [anon_sym_declare] = ACTIONS(3716), + [anon_sym_public] = ACTIONS(3716), + [anon_sym_private] = ACTIONS(3716), + [anon_sym_protected] = ACTIONS(3716), + [anon_sym_override] = ACTIONS(3716), + [anon_sym_module] = ACTIONS(3716), + [anon_sym_any] = ACTIONS(3716), + [anon_sym_number] = ACTIONS(3716), + [anon_sym_boolean] = ACTIONS(3716), + [anon_sym_string] = ACTIONS(3716), + [anon_sym_symbol] = ACTIONS(3716), + [anon_sym_object] = ACTIONS(3716), + [anon_sym_property] = ACTIONS(3716), + [anon_sym_signal] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3716), + [anon_sym_required] = ACTIONS(3716), + [anon_sym_component] = ACTIONS(3716), + [anon_sym_abstract] = ACTIONS(3716), + [anon_sym_interface] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [sym_html_comment] = ACTIONS(5), + }, + [1820] = { + [sym_comment] = STATE(1820), + [sym_identifier] = ACTIONS(3718), + [anon_sym_export] = ACTIONS(3718), + [anon_sym_type] = ACTIONS(3718), + [anon_sym_namespace] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_typeof] = ACTIONS(3718), + [anon_sym_import] = ACTIONS(3718), + [anon_sym_from] = ACTIONS(3718), + [anon_sym_with] = ACTIONS(3718), + [anon_sym_var] = ACTIONS(3718), + [anon_sym_let] = ACTIONS(3718), + [anon_sym_const] = ACTIONS(3718), + [anon_sym_BANG] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_switch] = ACTIONS(3718), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_LPAREN] = ACTIONS(3718), + [anon_sym_await] = ACTIONS(3718), + [anon_sym_of] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_break] = ACTIONS(3718), + [anon_sym_continue] = ACTIONS(3718), + [anon_sym_debugger] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_throw] = ACTIONS(3718), + [anon_sym_SEMI] = ACTIONS(3718), + [anon_sym_yield] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_LTtemplate_GT] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [anon_sym_SQUOTE] = ACTIONS(3718), + [anon_sym_class] = ACTIONS(3718), + [anon_sym_async] = ACTIONS(3718), + [anon_sym_function] = ACTIONS(3718), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_using] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_SLASH] = ACTIONS(3718), + [anon_sym_LT] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3718), + [anon_sym_void] = ACTIONS(3718), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3718), + [sym_number] = ACTIONS(3718), + [sym_private_property_identifier] = ACTIONS(3718), + [sym_this] = ACTIONS(3718), + [sym_super] = ACTIONS(3718), + [sym_true] = ACTIONS(3718), + [sym_false] = ACTIONS(3718), + [sym_null] = ACTIONS(3718), + [sym_undefined] = ACTIONS(3718), + [anon_sym_AT] = ACTIONS(3718), + [anon_sym_static] = ACTIONS(3718), + [anon_sym_readonly] = ACTIONS(3718), + [anon_sym_get] = ACTIONS(3718), + [anon_sym_set] = ACTIONS(3718), + [anon_sym_declare] = ACTIONS(3718), + [anon_sym_public] = ACTIONS(3718), + [anon_sym_private] = ACTIONS(3718), + [anon_sym_protected] = ACTIONS(3718), + [anon_sym_override] = ACTIONS(3718), + [anon_sym_module] = ACTIONS(3718), + [anon_sym_any] = ACTIONS(3718), + [anon_sym_number] = ACTIONS(3718), + [anon_sym_boolean] = ACTIONS(3718), + [anon_sym_string] = ACTIONS(3718), + [anon_sym_symbol] = ACTIONS(3718), + [anon_sym_object] = ACTIONS(3718), + [anon_sym_property] = ACTIONS(3718), + [anon_sym_signal] = ACTIONS(3718), + [anon_sym_on] = ACTIONS(3718), + [anon_sym_required] = ACTIONS(3718), + [anon_sym_component] = ACTIONS(3718), + [anon_sym_abstract] = ACTIONS(3718), + [anon_sym_interface] = ACTIONS(3718), + [anon_sym_enum] = ACTIONS(3718), + [sym_html_comment] = ACTIONS(5), + }, + [1821] = { + [sym_comment] = STATE(1821), + [sym_identifier] = ACTIONS(3720), + [anon_sym_export] = ACTIONS(3720), + [anon_sym_type] = ACTIONS(3720), + [anon_sym_namespace] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3720), + [anon_sym_typeof] = ACTIONS(3720), + [anon_sym_import] = ACTIONS(3720), + [anon_sym_from] = ACTIONS(3720), + [anon_sym_with] = ACTIONS(3720), + [anon_sym_var] = ACTIONS(3720), + [anon_sym_let] = ACTIONS(3720), + [anon_sym_const] = ACTIONS(3720), + [anon_sym_BANG] = ACTIONS(3720), + [anon_sym_if] = ACTIONS(3720), + [anon_sym_switch] = ACTIONS(3720), + [anon_sym_for] = ACTIONS(3720), + [anon_sym_LPAREN] = ACTIONS(3720), + [anon_sym_await] = ACTIONS(3720), + [anon_sym_of] = ACTIONS(3720), + [anon_sym_while] = ACTIONS(3720), + [anon_sym_do] = ACTIONS(3720), + [anon_sym_try] = ACTIONS(3720), + [anon_sym_break] = ACTIONS(3720), + [anon_sym_continue] = ACTIONS(3720), + [anon_sym_debugger] = ACTIONS(3720), + [anon_sym_return] = ACTIONS(3720), + [anon_sym_throw] = ACTIONS(3720), + [anon_sym_SEMI] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3720), + [anon_sym_LBRACK] = ACTIONS(3720), + [anon_sym_LTtemplate_GT] = ACTIONS(3720), + [anon_sym_DQUOTE] = ACTIONS(3720), + [anon_sym_SQUOTE] = ACTIONS(3720), + [anon_sym_class] = ACTIONS(3720), + [anon_sym_async] = ACTIONS(3720), + [anon_sym_function] = ACTIONS(3720), + [anon_sym_new] = ACTIONS(3720), + [anon_sym_using] = ACTIONS(3720), + [anon_sym_PLUS] = ACTIONS(3720), + [anon_sym_DASH] = ACTIONS(3720), + [anon_sym_SLASH] = ACTIONS(3720), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_TILDE] = ACTIONS(3720), + [anon_sym_void] = ACTIONS(3720), + [anon_sym_delete] = ACTIONS(3720), + [anon_sym_PLUS_PLUS] = ACTIONS(3720), + [anon_sym_DASH_DASH] = ACTIONS(3720), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3720), + [sym_number] = ACTIONS(3720), + [sym_private_property_identifier] = ACTIONS(3720), + [sym_this] = ACTIONS(3720), + [sym_super] = ACTIONS(3720), + [sym_true] = ACTIONS(3720), + [sym_false] = ACTIONS(3720), + [sym_null] = ACTIONS(3720), + [sym_undefined] = ACTIONS(3720), + [anon_sym_AT] = ACTIONS(3720), + [anon_sym_static] = ACTIONS(3720), + [anon_sym_readonly] = ACTIONS(3720), + [anon_sym_get] = ACTIONS(3720), + [anon_sym_set] = ACTIONS(3720), + [anon_sym_declare] = ACTIONS(3720), + [anon_sym_public] = ACTIONS(3720), + [anon_sym_private] = ACTIONS(3720), + [anon_sym_protected] = ACTIONS(3720), + [anon_sym_override] = ACTIONS(3720), + [anon_sym_module] = ACTIONS(3720), + [anon_sym_any] = ACTIONS(3720), + [anon_sym_number] = ACTIONS(3720), + [anon_sym_boolean] = ACTIONS(3720), + [anon_sym_string] = ACTIONS(3720), + [anon_sym_symbol] = ACTIONS(3720), + [anon_sym_object] = ACTIONS(3720), + [anon_sym_property] = ACTIONS(3720), + [anon_sym_signal] = ACTIONS(3720), + [anon_sym_on] = ACTIONS(3720), + [anon_sym_required] = ACTIONS(3720), + [anon_sym_component] = ACTIONS(3720), + [anon_sym_abstract] = ACTIONS(3720), + [anon_sym_interface] = ACTIONS(3720), + [anon_sym_enum] = ACTIONS(3720), + [sym_html_comment] = ACTIONS(5), + }, + [1822] = { + [sym_comment] = STATE(1822), + [sym_identifier] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_type] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_typeof] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3716), + [anon_sym_with] = ACTIONS(3716), + [anon_sym_var] = ACTIONS(3716), + [anon_sym_let] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_await] = ACTIONS(3716), + [anon_sym_of] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_debugger] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym_yield] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_LTtemplate_GT] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [anon_sym_SQUOTE] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_async] = ACTIONS(3716), + [anon_sym_function] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_void] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3716), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3716), + [sym_number] = ACTIONS(3716), + [sym_private_property_identifier] = ACTIONS(3716), + [sym_this] = ACTIONS(3716), + [sym_super] = ACTIONS(3716), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [sym_null] = ACTIONS(3716), + [sym_undefined] = ACTIONS(3716), + [anon_sym_AT] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_readonly] = ACTIONS(3716), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3716), + [anon_sym_declare] = ACTIONS(3716), + [anon_sym_public] = ACTIONS(3716), + [anon_sym_private] = ACTIONS(3716), + [anon_sym_protected] = ACTIONS(3716), + [anon_sym_override] = ACTIONS(3716), + [anon_sym_module] = ACTIONS(3716), + [anon_sym_any] = ACTIONS(3716), + [anon_sym_number] = ACTIONS(3716), + [anon_sym_boolean] = ACTIONS(3716), + [anon_sym_string] = ACTIONS(3716), + [anon_sym_symbol] = ACTIONS(3716), + [anon_sym_object] = ACTIONS(3716), + [anon_sym_property] = ACTIONS(3716), + [anon_sym_signal] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3716), + [anon_sym_required] = ACTIONS(3716), + [anon_sym_component] = ACTIONS(3716), + [anon_sym_abstract] = ACTIONS(3716), + [anon_sym_interface] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [sym_html_comment] = ACTIONS(5), + }, + [1823] = { + [sym_comment] = STATE(1823), + [sym_identifier] = ACTIONS(3722), + [anon_sym_export] = ACTIONS(3722), + [anon_sym_type] = ACTIONS(3722), + [anon_sym_namespace] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3722), + [anon_sym_typeof] = ACTIONS(3722), + [anon_sym_import] = ACTIONS(3722), + [anon_sym_from] = ACTIONS(3722), + [anon_sym_with] = ACTIONS(3722), + [anon_sym_var] = ACTIONS(3722), + [anon_sym_let] = ACTIONS(3722), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_switch] = ACTIONS(3722), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3722), + [anon_sym_await] = ACTIONS(3722), + [anon_sym_of] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_break] = ACTIONS(3722), + [anon_sym_continue] = ACTIONS(3722), + [anon_sym_debugger] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_throw] = ACTIONS(3722), + [anon_sym_SEMI] = ACTIONS(3722), + [anon_sym_yield] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LTtemplate_GT] = ACTIONS(3722), + [anon_sym_DQUOTE] = ACTIONS(3722), + [anon_sym_SQUOTE] = ACTIONS(3722), + [anon_sym_class] = ACTIONS(3722), + [anon_sym_async] = ACTIONS(3722), + [anon_sym_function] = ACTIONS(3722), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_using] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_SLASH] = ACTIONS(3722), + [anon_sym_LT] = ACTIONS(3722), + [anon_sym_TILDE] = ACTIONS(3722), + [anon_sym_void] = ACTIONS(3722), + [anon_sym_delete] = ACTIONS(3722), + [anon_sym_PLUS_PLUS] = ACTIONS(3722), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3722), + [sym_number] = ACTIONS(3722), + [sym_private_property_identifier] = ACTIONS(3722), + [sym_this] = ACTIONS(3722), + [sym_super] = ACTIONS(3722), + [sym_true] = ACTIONS(3722), + [sym_false] = ACTIONS(3722), + [sym_null] = ACTIONS(3722), + [sym_undefined] = ACTIONS(3722), + [anon_sym_AT] = ACTIONS(3722), + [anon_sym_static] = ACTIONS(3722), + [anon_sym_readonly] = ACTIONS(3722), + [anon_sym_get] = ACTIONS(3722), + [anon_sym_set] = ACTIONS(3722), + [anon_sym_declare] = ACTIONS(3722), + [anon_sym_public] = ACTIONS(3722), + [anon_sym_private] = ACTIONS(3722), + [anon_sym_protected] = ACTIONS(3722), + [anon_sym_override] = ACTIONS(3722), + [anon_sym_module] = ACTIONS(3722), + [anon_sym_any] = ACTIONS(3722), + [anon_sym_number] = ACTIONS(3722), + [anon_sym_boolean] = ACTIONS(3722), + [anon_sym_string] = ACTIONS(3722), + [anon_sym_symbol] = ACTIONS(3722), + [anon_sym_object] = ACTIONS(3722), + [anon_sym_property] = ACTIONS(3722), + [anon_sym_signal] = ACTIONS(3722), + [anon_sym_on] = ACTIONS(3722), + [anon_sym_required] = ACTIONS(3722), + [anon_sym_component] = ACTIONS(3722), + [anon_sym_abstract] = ACTIONS(3722), + [anon_sym_interface] = ACTIONS(3722), + [anon_sym_enum] = ACTIONS(3722), + [sym_html_comment] = ACTIONS(5), + }, + [1824] = { + [sym_comment] = STATE(1824), + [sym_identifier] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_type] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_typeof] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3716), + [anon_sym_with] = ACTIONS(3716), + [anon_sym_var] = ACTIONS(3716), + [anon_sym_let] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_await] = ACTIONS(3716), + [anon_sym_of] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_debugger] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym_yield] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_LTtemplate_GT] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [anon_sym_SQUOTE] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_async] = ACTIONS(3716), + [anon_sym_function] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_void] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3716), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3716), + [sym_number] = ACTIONS(3716), + [sym_private_property_identifier] = ACTIONS(3716), + [sym_this] = ACTIONS(3716), + [sym_super] = ACTIONS(3716), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [sym_null] = ACTIONS(3716), + [sym_undefined] = ACTIONS(3716), + [anon_sym_AT] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_readonly] = ACTIONS(3716), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3716), + [anon_sym_declare] = ACTIONS(3716), + [anon_sym_public] = ACTIONS(3716), + [anon_sym_private] = ACTIONS(3716), + [anon_sym_protected] = ACTIONS(3716), + [anon_sym_override] = ACTIONS(3716), + [anon_sym_module] = ACTIONS(3716), + [anon_sym_any] = ACTIONS(3716), + [anon_sym_number] = ACTIONS(3716), + [anon_sym_boolean] = ACTIONS(3716), + [anon_sym_string] = ACTIONS(3716), + [anon_sym_symbol] = ACTIONS(3716), + [anon_sym_object] = ACTIONS(3716), + [anon_sym_property] = ACTIONS(3716), + [anon_sym_signal] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3716), + [anon_sym_required] = ACTIONS(3716), + [anon_sym_component] = ACTIONS(3716), + [anon_sym_abstract] = ACTIONS(3716), + [anon_sym_interface] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [sym_html_comment] = ACTIONS(5), + }, + [1825] = { + [sym_comment] = STATE(1825), + [sym_identifier] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_type] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_typeof] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3716), + [anon_sym_with] = ACTIONS(3716), + [anon_sym_var] = ACTIONS(3716), + [anon_sym_let] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_await] = ACTIONS(3716), + [anon_sym_of] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_debugger] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym_yield] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_LTtemplate_GT] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [anon_sym_SQUOTE] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_async] = ACTIONS(3716), + [anon_sym_function] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_void] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3716), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3716), + [sym_number] = ACTIONS(3716), + [sym_private_property_identifier] = ACTIONS(3716), + [sym_this] = ACTIONS(3716), + [sym_super] = ACTIONS(3716), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [sym_null] = ACTIONS(3716), + [sym_undefined] = ACTIONS(3716), + [anon_sym_AT] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_readonly] = ACTIONS(3716), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3716), + [anon_sym_declare] = ACTIONS(3716), + [anon_sym_public] = ACTIONS(3716), + [anon_sym_private] = ACTIONS(3716), + [anon_sym_protected] = ACTIONS(3716), + [anon_sym_override] = ACTIONS(3716), + [anon_sym_module] = ACTIONS(3716), + [anon_sym_any] = ACTIONS(3716), + [anon_sym_number] = ACTIONS(3716), + [anon_sym_boolean] = ACTIONS(3716), + [anon_sym_string] = ACTIONS(3716), + [anon_sym_symbol] = ACTIONS(3716), + [anon_sym_object] = ACTIONS(3716), + [anon_sym_property] = ACTIONS(3716), + [anon_sym_signal] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3716), + [anon_sym_required] = ACTIONS(3716), + [anon_sym_component] = ACTIONS(3716), + [anon_sym_abstract] = ACTIONS(3716), + [anon_sym_interface] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [sym_html_comment] = ACTIONS(5), + }, + [1826] = { + [sym_comment] = STATE(1826), + [sym_identifier] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_type] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_typeof] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3716), + [anon_sym_with] = ACTIONS(3716), + [anon_sym_var] = ACTIONS(3716), + [anon_sym_let] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_await] = ACTIONS(3716), + [anon_sym_of] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_debugger] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym_yield] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_LTtemplate_GT] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [anon_sym_SQUOTE] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_async] = ACTIONS(3716), + [anon_sym_function] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_void] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3716), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3716), + [sym_number] = ACTIONS(3716), + [sym_private_property_identifier] = ACTIONS(3716), + [sym_this] = ACTIONS(3716), + [sym_super] = ACTIONS(3716), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [sym_null] = ACTIONS(3716), + [sym_undefined] = ACTIONS(3716), + [anon_sym_AT] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_readonly] = ACTIONS(3716), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3716), + [anon_sym_declare] = ACTIONS(3716), + [anon_sym_public] = ACTIONS(3716), + [anon_sym_private] = ACTIONS(3716), + [anon_sym_protected] = ACTIONS(3716), + [anon_sym_override] = ACTIONS(3716), + [anon_sym_module] = ACTIONS(3716), + [anon_sym_any] = ACTIONS(3716), + [anon_sym_number] = ACTIONS(3716), + [anon_sym_boolean] = ACTIONS(3716), + [anon_sym_string] = ACTIONS(3716), + [anon_sym_symbol] = ACTIONS(3716), + [anon_sym_object] = ACTIONS(3716), + [anon_sym_property] = ACTIONS(3716), + [anon_sym_signal] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3716), + [anon_sym_required] = ACTIONS(3716), + [anon_sym_component] = ACTIONS(3716), + [anon_sym_abstract] = ACTIONS(3716), + [anon_sym_interface] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [sym_html_comment] = ACTIONS(5), + }, + [1827] = { + [sym_comment] = STATE(1827), + [sym_identifier] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_type] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_typeof] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3716), + [anon_sym_with] = ACTIONS(3716), + [anon_sym_var] = ACTIONS(3716), + [anon_sym_let] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_await] = ACTIONS(3716), + [anon_sym_of] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_debugger] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym_yield] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_LTtemplate_GT] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [anon_sym_SQUOTE] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_async] = ACTIONS(3716), + [anon_sym_function] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_void] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3716), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3716), + [sym_number] = ACTIONS(3716), + [sym_private_property_identifier] = ACTIONS(3716), + [sym_this] = ACTIONS(3716), + [sym_super] = ACTIONS(3716), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [sym_null] = ACTIONS(3716), + [sym_undefined] = ACTIONS(3716), + [anon_sym_AT] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_readonly] = ACTIONS(3716), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3716), + [anon_sym_declare] = ACTIONS(3716), + [anon_sym_public] = ACTIONS(3716), + [anon_sym_private] = ACTIONS(3716), + [anon_sym_protected] = ACTIONS(3716), + [anon_sym_override] = ACTIONS(3716), + [anon_sym_module] = ACTIONS(3716), + [anon_sym_any] = ACTIONS(3716), + [anon_sym_number] = ACTIONS(3716), + [anon_sym_boolean] = ACTIONS(3716), + [anon_sym_string] = ACTIONS(3716), + [anon_sym_symbol] = ACTIONS(3716), + [anon_sym_object] = ACTIONS(3716), + [anon_sym_property] = ACTIONS(3716), + [anon_sym_signal] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3716), + [anon_sym_required] = ACTIONS(3716), + [anon_sym_component] = ACTIONS(3716), + [anon_sym_abstract] = ACTIONS(3716), + [anon_sym_interface] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [sym_html_comment] = ACTIONS(5), + }, + [1828] = { + [sym_comment] = STATE(1828), + [sym_identifier] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_type] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_typeof] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3716), + [anon_sym_with] = ACTIONS(3716), + [anon_sym_var] = ACTIONS(3716), + [anon_sym_let] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_await] = ACTIONS(3716), + [anon_sym_of] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_debugger] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym_yield] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_LTtemplate_GT] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [anon_sym_SQUOTE] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_async] = ACTIONS(3716), + [anon_sym_function] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_void] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3716), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3716), + [sym_number] = ACTIONS(3716), + [sym_private_property_identifier] = ACTIONS(3716), + [sym_this] = ACTIONS(3716), + [sym_super] = ACTIONS(3716), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [sym_null] = ACTIONS(3716), + [sym_undefined] = ACTIONS(3716), + [anon_sym_AT] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_readonly] = ACTIONS(3716), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3716), + [anon_sym_declare] = ACTIONS(3716), + [anon_sym_public] = ACTIONS(3716), + [anon_sym_private] = ACTIONS(3716), + [anon_sym_protected] = ACTIONS(3716), + [anon_sym_override] = ACTIONS(3716), + [anon_sym_module] = ACTIONS(3716), + [anon_sym_any] = ACTIONS(3716), + [anon_sym_number] = ACTIONS(3716), + [anon_sym_boolean] = ACTIONS(3716), + [anon_sym_string] = ACTIONS(3716), + [anon_sym_symbol] = ACTIONS(3716), + [anon_sym_object] = ACTIONS(3716), + [anon_sym_property] = ACTIONS(3716), + [anon_sym_signal] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3716), + [anon_sym_required] = ACTIONS(3716), + [anon_sym_component] = ACTIONS(3716), + [anon_sym_abstract] = ACTIONS(3716), + [anon_sym_interface] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [sym_html_comment] = ACTIONS(5), + }, + [1829] = { + [sym_statement_block] = STATE(1868), + [sym_comment] = STATE(1829), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3724), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [1830] = { + [sym_statement_block] = STATE(1868), + [sym_comment] = STATE(1830), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3724), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [1831] = { + [sym_statement_block] = STATE(1868), + [sym_comment] = STATE(1831), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3724), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_else] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3728), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [1832] = { + [sym_comment] = STATE(1832), + [sym_identifier] = ACTIONS(2384), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_as] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_from] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2384), + [anon_sym_else] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2384), + [anon_sym_in] = ACTIONS(2384), + [anon_sym_of] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_QMARK_DOT] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_GT_GT_GT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_STAR_STAR] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_QMARK_QMARK] = ACTIONS(2384), + [anon_sym_instanceof] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_readonly] = ACTIONS(2384), + [anon_sym_get] = ACTIONS(2384), + [anon_sym_set] = ACTIONS(2384), + [anon_sym_declare] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_protected] = ACTIONS(2384), + [anon_sym_override] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_any] = ACTIONS(2384), + [anon_sym_number] = ACTIONS(2384), + [anon_sym_boolean] = ACTIONS(2384), + [anon_sym_string] = ACTIONS(2384), + [anon_sym_symbol] = ACTIONS(2384), + [anon_sym_object] = ACTIONS(2384), + [anon_sym_property] = ACTIONS(2384), + [anon_sym_signal] = ACTIONS(2384), + [anon_sym_on] = ACTIONS(2384), + [anon_sym_required] = ACTIONS(2384), + [anon_sym_component] = ACTIONS(2384), + [anon_sym_satisfies] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [sym__automatic_semicolon] = ACTIONS(2386), + [sym__ternary_qmark] = ACTIONS(2386), + [sym_html_comment] = ACTIONS(5), + }, + [1833] = { + [sym_statement_block] = STATE(1890), + [sym_comment] = STATE(1833), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3732), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [1834] = { + [sym_comment] = STATE(1834), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_EQ] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_COMMA] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_in] = ACTIONS(2287), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_GT] = ACTIONS(2287), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_QMARK_DOT] = ACTIONS(2287), + [anon_sym_AMP_AMP] = ACTIONS(2287), + [anon_sym_PIPE_PIPE] = ACTIONS(2287), + [anon_sym_GT_GT] = ACTIONS(2287), + [anon_sym_GT_GT_GT] = ACTIONS(2287), + [anon_sym_LT_LT] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(2287), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_SLASH] = ACTIONS(2287), + [anon_sym_PERCENT] = ACTIONS(2287), + [anon_sym_STAR_STAR] = ACTIONS(2287), + [anon_sym_LT] = ACTIONS(2287), + [anon_sym_LT_EQ] = ACTIONS(2287), + [anon_sym_EQ_EQ] = ACTIONS(2287), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2287), + [anon_sym_BANG_EQ] = ACTIONS(2287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2287), + [anon_sym_GT_EQ] = ACTIONS(2287), + [anon_sym_QMARK_QMARK] = ACTIONS(2287), + [anon_sym_instanceof] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2287), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_satisfies] = ACTIONS(2287), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3734), + [sym__ternary_qmark] = ACTIONS(2293), + [sym_html_comment] = ACTIONS(5), + }, + [1835] = { + [sym_statement_block] = STATE(1890), + [sym_comment] = STATE(1835), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(3736), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [1836] = { + [sym_comment] = STATE(1836), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_in] = ACTIONS(2376), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2376), + [anon_sym_DOT] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_QMARK_DOT] = ACTIONS(2376), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_GT_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_AMP] = ACTIONS(2376), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_PIPE] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_PERCENT] = ACTIONS(2376), + [anon_sym_STAR_STAR] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_QMARK_QMARK] = ACTIONS(2376), + [anon_sym_instanceof] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_satisfies] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(2378), + [sym__ternary_qmark] = ACTIONS(2378), + [sym_html_comment] = ACTIONS(5), + }, + [1837] = { + [sym_comment] = STATE(1837), + [sym_identifier] = ACTIONS(2380), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_as] = ACTIONS(2380), + [anon_sym_namespace] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2380), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_from] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2380), + [anon_sym_else] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_of] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2380), + [anon_sym_DOT] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_QMARK_DOT] = ACTIONS(2380), + [anon_sym_AMP_AMP] = ACTIONS(2380), + [anon_sym_PIPE_PIPE] = ACTIONS(2380), + [anon_sym_GT_GT] = ACTIONS(2380), + [anon_sym_GT_GT_GT] = ACTIONS(2380), + [anon_sym_LT_LT] = ACTIONS(2380), + [anon_sym_AMP] = ACTIONS(2380), + [anon_sym_CARET] = ACTIONS(2380), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_PERCENT] = ACTIONS(2380), + [anon_sym_STAR_STAR] = ACTIONS(2380), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_QMARK_QMARK] = ACTIONS(2380), + [anon_sym_instanceof] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2380), + [anon_sym_DASH_DASH] = ACTIONS(2380), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_readonly] = ACTIONS(2380), + [anon_sym_get] = ACTIONS(2380), + [anon_sym_set] = ACTIONS(2380), + [anon_sym_declare] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_protected] = ACTIONS(2380), + [anon_sym_override] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_any] = ACTIONS(2380), + [anon_sym_number] = ACTIONS(2380), + [anon_sym_boolean] = ACTIONS(2380), + [anon_sym_string] = ACTIONS(2380), + [anon_sym_symbol] = ACTIONS(2380), + [anon_sym_object] = ACTIONS(2380), + [anon_sym_property] = ACTIONS(2380), + [anon_sym_signal] = ACTIONS(2380), + [anon_sym_on] = ACTIONS(2380), + [anon_sym_required] = ACTIONS(2380), + [anon_sym_component] = ACTIONS(2380), + [anon_sym_satisfies] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [sym__automatic_semicolon] = ACTIONS(2382), + [sym__ternary_qmark] = ACTIONS(2382), + [sym_html_comment] = ACTIONS(5), + }, + [1838] = { + [sym_statement_block] = STATE(1890), + [sym_comment] = STATE(1838), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_as] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(3730), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_var] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_in] = ACTIONS(2318), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_GT] = ACTIONS(2318), + [anon_sym_DOT] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_function] = ACTIONS(2318), + [anon_sym_QMARK_DOT] = ACTIONS(2318), + [anon_sym_AMP_AMP] = ACTIONS(2318), + [anon_sym_PIPE_PIPE] = ACTIONS(2318), + [anon_sym_GT_GT] = ACTIONS(2318), + [anon_sym_GT_GT_GT] = ACTIONS(2318), + [anon_sym_LT_LT] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_CARET] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_PLUS] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_SLASH] = ACTIONS(2318), + [anon_sym_PERCENT] = ACTIONS(2318), + [anon_sym_STAR_STAR] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_LT_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ] = ACTIONS(2318), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ] = ACTIONS(2318), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2318), + [anon_sym_GT_EQ] = ACTIONS(2318), + [anon_sym_QMARK_QMARK] = ACTIONS(2318), + [anon_sym_instanceof] = ACTIONS(2318), + [anon_sym_PLUS_PLUS] = ACTIONS(2318), + [anon_sym_DASH_DASH] = ACTIONS(2318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2318), + [anon_sym_AT] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), + [anon_sym_satisfies] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [sym__automatic_semicolon] = ACTIONS(2324), + [sym__ternary_qmark] = ACTIONS(2324), + [sym_html_comment] = ACTIONS(5), + }, + [1839] = { + [sym_comment] = STATE(1839), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_COMMA] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2396), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_GT] = ACTIONS(2396), + [anon_sym_DOT] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_QMARK_DOT] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_GT_GT_GT] = ACTIONS(2396), + [anon_sym_LT_LT] = ACTIONS(2396), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_CARET] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_PERCENT] = ACTIONS(2396), + [anon_sym_STAR_STAR] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_LT_EQ] = ACTIONS(2396), + [anon_sym_EQ_EQ] = ACTIONS(2396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2396), + [anon_sym_BANG_EQ] = ACTIONS(2396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2396), + [anon_sym_GT_EQ] = ACTIONS(2396), + [anon_sym_QMARK_QMARK] = ACTIONS(2396), + [anon_sym_instanceof] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_satisfies] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2398), + [sym__ternary_qmark] = ACTIONS(2398), + [sym_html_comment] = ACTIONS(5), + }, + [1840] = { + [sym_comment] = STATE(1840), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_as] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_COMMA] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_else] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_in] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_GT] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_QMARK_DOT] = ACTIONS(2356), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2356), + [anon_sym_GT_GT] = ACTIONS(2356), + [anon_sym_GT_GT_GT] = ACTIONS(2356), + [anon_sym_LT_LT] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_CARET] = ACTIONS(2356), + [anon_sym_PIPE] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_PERCENT] = ACTIONS(2356), + [anon_sym_STAR_STAR] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_LT_EQ] = ACTIONS(2356), + [anon_sym_EQ_EQ] = ACTIONS(2356), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2356), + [anon_sym_BANG_EQ] = ACTIONS(2356), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2356), + [anon_sym_GT_EQ] = ACTIONS(2356), + [anon_sym_QMARK_QMARK] = ACTIONS(2356), + [anon_sym_instanceof] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_satisfies] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym__automatic_semicolon] = ACTIONS(2358), + [sym__ternary_qmark] = ACTIONS(2358), + [sym_html_comment] = ACTIONS(5), + }, + [1841] = { + [sym_export_statement] = STATE(5726), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(7345), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1841), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(7345), + [sym_pair] = STATE(7345), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5726), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5726), + [sym_property_signature] = STATE(5726), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5726), + [sym_index_signature] = STATE(5726), + [aux_sym_export_statement_repeat1] = STATE(6305), + [aux_sym_object_repeat1] = STATE(7340), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(3738), + [anon_sym_export] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3738), + [anon_sym_namespace] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3748), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(3738), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), [anon_sym_DQUOTE] = ACTIONS(2496), - [anon_sym_SQUOTE] = ACTIONS(2496), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2496), - [sym_number] = ACTIONS(2496), - [sym_this] = ACTIONS(2494), - [sym_super] = ACTIONS(2494), - [sym_true] = ACTIONS(2494), - [sym_false] = ACTIONS(2494), - [sym_null] = ACTIONS(2494), - [sym_undefined] = ACTIONS(2494), - [anon_sym_AT] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2494), - [anon_sym_readonly] = ACTIONS(2494), - [anon_sym_get] = ACTIONS(2494), - [anon_sym_set] = ACTIONS(2494), - [anon_sym_declare] = ACTIONS(2494), - [anon_sym_public] = ACTIONS(2494), - [anon_sym_private] = ACTIONS(2494), - [anon_sym_protected] = ACTIONS(2494), - [anon_sym_override] = ACTIONS(2494), - [anon_sym_module] = ACTIONS(2494), - [anon_sym_any] = ACTIONS(2494), - [anon_sym_number] = ACTIONS(2494), - [anon_sym_boolean] = ACTIONS(2494), - [anon_sym_string] = ACTIONS(2494), - [anon_sym_symbol] = ACTIONS(2494), - [anon_sym_property] = ACTIONS(2494), - [anon_sym_signal] = ACTIONS(2494), - [anon_sym_on] = ACTIONS(2494), - [anon_sym_required] = ACTIONS(2494), - [anon_sym_component] = ACTIONS(2494), - [anon_sym_abstract] = ACTIONS(2494), - [anon_sym_interface] = ACTIONS(2494), - [anon_sym_enum] = ACTIONS(2494), - }, - [754] = { - [sym_identifier] = ACTIONS(2494), - [anon_sym_export] = ACTIONS(2494), - [anon_sym_default] = ACTIONS(2494), - [anon_sym_type] = ACTIONS(2494), - [anon_sym_namespace] = ACTIONS(2494), - [anon_sym_LBRACE] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_typeof] = ACTIONS(2494), - [anon_sym_import] = ACTIONS(2494), - [anon_sym_from] = ACTIONS(2494), - [anon_sym_var] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [anon_sym_BANG] = ACTIONS(2496), - [anon_sym_else] = ACTIONS(2494), - [anon_sym_if] = ACTIONS(2494), - [anon_sym_switch] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2494), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_await] = ACTIONS(2494), - [anon_sym_of] = ACTIONS(2494), - [anon_sym_while] = ACTIONS(2494), - [anon_sym_do] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2494), - [anon_sym_with] = ACTIONS(2494), - [anon_sym_break] = ACTIONS(2494), - [anon_sym_continue] = ACTIONS(2494), - [anon_sym_debugger] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2494), - [anon_sym_throw] = ACTIONS(2494), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_case] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2494), - [anon_sym_LBRACK] = ACTIONS(2496), - [anon_sym_LTtemplate_GT] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2494), - [anon_sym_SLASH] = ACTIONS(2494), - [anon_sym_class] = ACTIONS(2494), - [anon_sym_async] = ACTIONS(2494), - [anon_sym_function] = ACTIONS(2494), - [anon_sym_new] = ACTIONS(2494), - [anon_sym_PLUS] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2494), - [anon_sym_TILDE] = ACTIONS(2496), - [anon_sym_void] = ACTIONS(2494), - [anon_sym_delete] = ACTIONS(2494), - [anon_sym_PLUS_PLUS] = ACTIONS(2496), - [anon_sym_DASH_DASH] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(3756), + [anon_sym_new] = ACTIONS(3758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3764), + [anon_sym_readonly] = ACTIONS(3766), + [anon_sym_get] = ACTIONS(3768), + [anon_sym_set] = ACTIONS(3768), + [anon_sym_declare] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3770), + [anon_sym_private] = ACTIONS(3770), + [anon_sym_protected] = ACTIONS(3770), + [anon_sym_override] = ACTIONS(3772), + [anon_sym_module] = ACTIONS(3738), + [anon_sym_any] = ACTIONS(3738), + [anon_sym_number] = ACTIONS(3738), + [anon_sym_boolean] = ACTIONS(3738), + [anon_sym_string] = ACTIONS(3738), + [anon_sym_symbol] = ACTIONS(3738), + [anon_sym_object] = ACTIONS(3738), + [anon_sym_property] = ACTIONS(3738), + [anon_sym_signal] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_component] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3776), + [sym_html_comment] = ACTIONS(5), + }, + [1842] = { + [sym_comment] = STATE(1842), + [sym_identifier] = ACTIONS(2448), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2448), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_as] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2448), + [anon_sym_COMMA] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_from] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_of] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_GT] = ACTIONS(2450), + [anon_sym_DOT] = ACTIONS(2450), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_QMARK_DOT] = ACTIONS(2450), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2450), + [anon_sym_GT_GT_GT] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_SLASH] = ACTIONS(2450), + [anon_sym_PERCENT] = ACTIONS(2450), + [anon_sym_STAR_STAR] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_QMARK_QMARK] = ACTIONS(2450), + [anon_sym_instanceof] = ACTIONS(2450), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2450), + [anon_sym_AT] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_readonly] = ACTIONS(2448), + [anon_sym_get] = ACTIONS(2448), + [anon_sym_set] = ACTIONS(2448), + [anon_sym_declare] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_protected] = ACTIONS(2448), + [anon_sym_override] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_any] = ACTIONS(2448), + [anon_sym_number] = ACTIONS(2448), + [anon_sym_boolean] = ACTIONS(2448), + [anon_sym_string] = ACTIONS(2448), + [anon_sym_symbol] = ACTIONS(2448), + [anon_sym_object] = ACTIONS(2448), + [anon_sym_property] = ACTIONS(2448), + [anon_sym_signal] = ACTIONS(2448), + [anon_sym_on] = ACTIONS(2448), + [anon_sym_required] = ACTIONS(2448), + [anon_sym_component] = ACTIONS(2448), + [anon_sym_satisfies] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2448), + [sym__automatic_semicolon] = ACTIONS(3778), + [sym__ternary_qmark] = ACTIONS(2454), + [sym_html_comment] = ACTIONS(5), + }, + [1843] = { + [sym_comment] = STATE(1843), + [sym_identifier] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2422), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_as] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_COMMA] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_from] = ACTIONS(2422), + [anon_sym_var] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2424), + [anon_sym_else] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_of] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_GT] = ACTIONS(2424), + [anon_sym_DOT] = ACTIONS(2424), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2422), + [anon_sym_QMARK_DOT] = ACTIONS(2424), + [anon_sym_AMP_AMP] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(2424), + [anon_sym_GT_GT] = ACTIONS(2424), + [anon_sym_GT_GT_GT] = ACTIONS(2424), + [anon_sym_LT_LT] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_CARET] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_SLASH] = ACTIONS(2424), + [anon_sym_PERCENT] = ACTIONS(2424), + [anon_sym_STAR_STAR] = ACTIONS(2424), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_LT_EQ] = ACTIONS(2424), + [anon_sym_EQ_EQ] = ACTIONS(2424), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2424), + [anon_sym_BANG_EQ] = ACTIONS(2424), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2424), + [anon_sym_GT_EQ] = ACTIONS(2424), + [anon_sym_QMARK_QMARK] = ACTIONS(2424), + [anon_sym_instanceof] = ACTIONS(2424), + [anon_sym_PLUS_PLUS] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2424), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2424), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_property] = ACTIONS(2422), + [anon_sym_signal] = ACTIONS(2422), + [anon_sym_on] = ACTIONS(2422), + [anon_sym_required] = ACTIONS(2422), + [anon_sym_component] = ACTIONS(2422), + [anon_sym_satisfies] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2422), + [sym__automatic_semicolon] = ACTIONS(3780), + [sym__ternary_qmark] = ACTIONS(2428), + [sym_html_comment] = ACTIONS(5), + }, + [1844] = { + [sym_export_statement] = STATE(5726), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(7345), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1844), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(7345), + [sym_pair] = STATE(7345), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5726), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5726), + [sym_property_signature] = STATE(5726), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5726), + [sym_index_signature] = STATE(5726), + [aux_sym_export_statement_repeat1] = STATE(6305), + [aux_sym_object_repeat1] = STATE(7340), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(3782), + [anon_sym_export] = ACTIONS(3784), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3782), + [anon_sym_namespace] = ACTIONS(3782), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3786), + [anon_sym_from] = ACTIONS(3782), + [anon_sym_let] = ACTIONS(3782), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), [anon_sym_DQUOTE] = ACTIONS(2496), - [anon_sym_SQUOTE] = ACTIONS(2496), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2496), - [sym_number] = ACTIONS(2496), - [sym_this] = ACTIONS(2494), - [sym_super] = ACTIONS(2494), - [sym_true] = ACTIONS(2494), - [sym_false] = ACTIONS(2494), - [sym_null] = ACTIONS(2494), - [sym_undefined] = ACTIONS(2494), - [anon_sym_AT] = ACTIONS(2496), - [anon_sym_static] = ACTIONS(2494), - [anon_sym_readonly] = ACTIONS(2494), - [anon_sym_get] = ACTIONS(2494), - [anon_sym_set] = ACTIONS(2494), - [anon_sym_declare] = ACTIONS(2494), - [anon_sym_public] = ACTIONS(2494), - [anon_sym_private] = ACTIONS(2494), - [anon_sym_protected] = ACTIONS(2494), - [anon_sym_override] = ACTIONS(2494), - [anon_sym_module] = ACTIONS(2494), - [anon_sym_any] = ACTIONS(2494), - [anon_sym_number] = ACTIONS(2494), - [anon_sym_boolean] = ACTIONS(2494), - [anon_sym_string] = ACTIONS(2494), - [anon_sym_symbol] = ACTIONS(2494), - [anon_sym_property] = ACTIONS(2494), - [anon_sym_signal] = ACTIONS(2494), - [anon_sym_on] = ACTIONS(2494), - [anon_sym_required] = ACTIONS(2494), - [anon_sym_component] = ACTIONS(2494), - [anon_sym_abstract] = ACTIONS(2494), - [anon_sym_interface] = ACTIONS(2494), - [anon_sym_enum] = ACTIONS(2494), - }, - [755] = { - [sym_identifier] = ACTIONS(2498), - [anon_sym_export] = ACTIONS(2498), - [anon_sym_default] = ACTIONS(2498), - [anon_sym_type] = ACTIONS(2498), - [anon_sym_namespace] = ACTIONS(2498), - [anon_sym_LBRACE] = ACTIONS(2500), - [anon_sym_RBRACE] = ACTIONS(2500), - [anon_sym_typeof] = ACTIONS(2498), - [anon_sym_import] = ACTIONS(2498), - [anon_sym_from] = ACTIONS(2498), - [anon_sym_var] = ACTIONS(2498), - [anon_sym_let] = ACTIONS(2498), - [anon_sym_const] = ACTIONS(2498), - [anon_sym_BANG] = ACTIONS(2500), - [anon_sym_else] = ACTIONS(2498), - [anon_sym_if] = ACTIONS(2498), - [anon_sym_switch] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(2498), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_await] = ACTIONS(2498), - [anon_sym_of] = ACTIONS(2498), - [anon_sym_while] = ACTIONS(2498), - [anon_sym_do] = ACTIONS(2498), - [anon_sym_try] = ACTIONS(2498), - [anon_sym_with] = ACTIONS(2498), - [anon_sym_break] = ACTIONS(2498), - [anon_sym_continue] = ACTIONS(2498), - [anon_sym_debugger] = ACTIONS(2498), - [anon_sym_return] = ACTIONS(2498), - [anon_sym_throw] = ACTIONS(2498), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_case] = ACTIONS(2498), - [anon_sym_yield] = ACTIONS(2498), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_LTtemplate_GT] = ACTIONS(2500), - [anon_sym_LT] = ACTIONS(2498), - [anon_sym_SLASH] = ACTIONS(2498), - [anon_sym_class] = ACTIONS(2498), - [anon_sym_async] = ACTIONS(2498), - [anon_sym_function] = ACTIONS(2498), - [anon_sym_new] = ACTIONS(2498), - [anon_sym_PLUS] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2498), - [anon_sym_TILDE] = ACTIONS(2500), - [anon_sym_void] = ACTIONS(2498), - [anon_sym_delete] = ACTIONS(2498), - [anon_sym_PLUS_PLUS] = ACTIONS(2500), - [anon_sym_DASH_DASH] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(2500), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2500), - [sym_number] = ACTIONS(2500), - [sym_this] = ACTIONS(2498), - [sym_super] = ACTIONS(2498), - [sym_true] = ACTIONS(2498), - [sym_false] = ACTIONS(2498), - [sym_null] = ACTIONS(2498), - [sym_undefined] = ACTIONS(2498), - [anon_sym_AT] = ACTIONS(2500), - [anon_sym_static] = ACTIONS(2498), - [anon_sym_readonly] = ACTIONS(2498), - [anon_sym_get] = ACTIONS(2498), - [anon_sym_set] = ACTIONS(2498), - [anon_sym_declare] = ACTIONS(2498), - [anon_sym_public] = ACTIONS(2498), - [anon_sym_private] = ACTIONS(2498), - [anon_sym_protected] = ACTIONS(2498), - [anon_sym_override] = ACTIONS(2498), - [anon_sym_module] = ACTIONS(2498), - [anon_sym_any] = ACTIONS(2498), - [anon_sym_number] = ACTIONS(2498), - [anon_sym_boolean] = ACTIONS(2498), - [anon_sym_string] = ACTIONS(2498), - [anon_sym_symbol] = ACTIONS(2498), - [anon_sym_property] = ACTIONS(2498), - [anon_sym_signal] = ACTIONS(2498), - [anon_sym_on] = ACTIONS(2498), - [anon_sym_required] = ACTIONS(2498), - [anon_sym_component] = ACTIONS(2498), - [anon_sym_abstract] = ACTIONS(2498), - [anon_sym_interface] = ACTIONS(2498), - [anon_sym_enum] = ACTIONS(2498), - }, - [756] = { - [sym_identifier] = ACTIONS(2502), - [anon_sym_export] = ACTIONS(2502), - [anon_sym_default] = ACTIONS(2502), - [anon_sym_type] = ACTIONS(2502), - [anon_sym_namespace] = ACTIONS(2502), - [anon_sym_LBRACE] = ACTIONS(2504), - [anon_sym_RBRACE] = ACTIONS(2504), - [anon_sym_typeof] = ACTIONS(2502), - [anon_sym_import] = ACTIONS(2502), - [anon_sym_from] = ACTIONS(2502), - [anon_sym_var] = ACTIONS(2502), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_const] = ACTIONS(2502), - [anon_sym_BANG] = ACTIONS(2504), - [anon_sym_else] = ACTIONS(2502), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_switch] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_LPAREN] = ACTIONS(2504), - [anon_sym_await] = ACTIONS(2502), - [anon_sym_of] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_do] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [anon_sym_with] = ACTIONS(2502), - [anon_sym_break] = ACTIONS(2502), - [anon_sym_continue] = ACTIONS(2502), - [anon_sym_debugger] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_throw] = ACTIONS(2502), - [anon_sym_SEMI] = ACTIONS(2504), - [anon_sym_case] = ACTIONS(2502), - [anon_sym_yield] = ACTIONS(2502), - [anon_sym_LBRACK] = ACTIONS(2504), - [anon_sym_LTtemplate_GT] = ACTIONS(2504), - [anon_sym_LT] = ACTIONS(2502), - [anon_sym_SLASH] = ACTIONS(2502), - [anon_sym_class] = ACTIONS(2502), - [anon_sym_async] = ACTIONS(2502), - [anon_sym_function] = ACTIONS(2502), - [anon_sym_new] = ACTIONS(2502), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2504), - [anon_sym_void] = ACTIONS(2502), - [anon_sym_delete] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2504), - [anon_sym_DASH_DASH] = ACTIONS(2504), - [anon_sym_DQUOTE] = ACTIONS(2504), - [anon_sym_SQUOTE] = ACTIONS(2504), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2504), - [sym_number] = ACTIONS(2504), - [sym_this] = ACTIONS(2502), - [sym_super] = ACTIONS(2502), - [sym_true] = ACTIONS(2502), - [sym_false] = ACTIONS(2502), - [sym_null] = ACTIONS(2502), - [sym_undefined] = ACTIONS(2502), - [anon_sym_AT] = ACTIONS(2504), - [anon_sym_static] = ACTIONS(2502), - [anon_sym_readonly] = ACTIONS(2502), - [anon_sym_get] = ACTIONS(2502), - [anon_sym_set] = ACTIONS(2502), - [anon_sym_declare] = ACTIONS(2502), - [anon_sym_public] = ACTIONS(2502), - [anon_sym_private] = ACTIONS(2502), - [anon_sym_protected] = ACTIONS(2502), - [anon_sym_override] = ACTIONS(2502), - [anon_sym_module] = ACTIONS(2502), - [anon_sym_any] = ACTIONS(2502), - [anon_sym_number] = ACTIONS(2502), - [anon_sym_boolean] = ACTIONS(2502), - [anon_sym_string] = ACTIONS(2502), - [anon_sym_symbol] = ACTIONS(2502), - [anon_sym_property] = ACTIONS(2502), - [anon_sym_signal] = ACTIONS(2502), - [anon_sym_on] = ACTIONS(2502), - [anon_sym_required] = ACTIONS(2502), - [anon_sym_component] = ACTIONS(2502), - [anon_sym_abstract] = ACTIONS(2502), - [anon_sym_interface] = ACTIONS(2502), - [anon_sym_enum] = ACTIONS(2502), - }, - [757] = { - [sym_identifier] = ACTIONS(2506), - [anon_sym_export] = ACTIONS(2506), - [anon_sym_default] = ACTIONS(2506), - [anon_sym_type] = ACTIONS(2506), - [anon_sym_namespace] = ACTIONS(2506), - [anon_sym_LBRACE] = ACTIONS(2508), - [anon_sym_RBRACE] = ACTIONS(2508), - [anon_sym_typeof] = ACTIONS(2506), - [anon_sym_import] = ACTIONS(2506), - [anon_sym_from] = ACTIONS(2506), - [anon_sym_var] = ACTIONS(2506), - [anon_sym_let] = ACTIONS(2506), - [anon_sym_const] = ACTIONS(2506), - [anon_sym_BANG] = ACTIONS(2508), - [anon_sym_else] = ACTIONS(2506), - [anon_sym_if] = ACTIONS(2506), - [anon_sym_switch] = ACTIONS(2506), - [anon_sym_for] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(2508), - [anon_sym_await] = ACTIONS(2506), - [anon_sym_of] = ACTIONS(2506), - [anon_sym_while] = ACTIONS(2506), - [anon_sym_do] = ACTIONS(2506), - [anon_sym_try] = ACTIONS(2506), - [anon_sym_with] = ACTIONS(2506), - [anon_sym_break] = ACTIONS(2506), - [anon_sym_continue] = ACTIONS(2506), - [anon_sym_debugger] = ACTIONS(2506), - [anon_sym_return] = ACTIONS(2506), - [anon_sym_throw] = ACTIONS(2506), - [anon_sym_SEMI] = ACTIONS(2508), - [anon_sym_case] = ACTIONS(2506), - [anon_sym_yield] = ACTIONS(2506), - [anon_sym_LBRACK] = ACTIONS(2508), - [anon_sym_LTtemplate_GT] = ACTIONS(2508), - [anon_sym_LT] = ACTIONS(2506), - [anon_sym_SLASH] = ACTIONS(2506), - [anon_sym_class] = ACTIONS(2506), - [anon_sym_async] = ACTIONS(2506), - [anon_sym_function] = ACTIONS(2506), - [anon_sym_new] = ACTIONS(2506), - [anon_sym_PLUS] = ACTIONS(2506), - [anon_sym_DASH] = ACTIONS(2506), - [anon_sym_TILDE] = ACTIONS(2508), - [anon_sym_void] = ACTIONS(2506), - [anon_sym_delete] = ACTIONS(2506), - [anon_sym_PLUS_PLUS] = ACTIONS(2508), - [anon_sym_DASH_DASH] = ACTIONS(2508), - [anon_sym_DQUOTE] = ACTIONS(2508), - [anon_sym_SQUOTE] = ACTIONS(2508), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2508), - [sym_number] = ACTIONS(2508), - [sym_this] = ACTIONS(2506), - [sym_super] = ACTIONS(2506), - [sym_true] = ACTIONS(2506), - [sym_false] = ACTIONS(2506), - [sym_null] = ACTIONS(2506), - [sym_undefined] = ACTIONS(2506), - [anon_sym_AT] = ACTIONS(2508), - [anon_sym_static] = ACTIONS(2506), - [anon_sym_readonly] = ACTIONS(2506), - [anon_sym_get] = ACTIONS(2506), - [anon_sym_set] = ACTIONS(2506), - [anon_sym_declare] = ACTIONS(2506), - [anon_sym_public] = ACTIONS(2506), - [anon_sym_private] = ACTIONS(2506), - [anon_sym_protected] = ACTIONS(2506), - [anon_sym_override] = ACTIONS(2506), - [anon_sym_module] = ACTIONS(2506), - [anon_sym_any] = ACTIONS(2506), - [anon_sym_number] = ACTIONS(2506), - [anon_sym_boolean] = ACTIONS(2506), - [anon_sym_string] = ACTIONS(2506), - [anon_sym_symbol] = ACTIONS(2506), - [anon_sym_property] = ACTIONS(2506), - [anon_sym_signal] = ACTIONS(2506), - [anon_sym_on] = ACTIONS(2506), - [anon_sym_required] = ACTIONS(2506), - [anon_sym_component] = ACTIONS(2506), - [anon_sym_abstract] = ACTIONS(2506), - [anon_sym_interface] = ACTIONS(2506), - [anon_sym_enum] = ACTIONS(2506), - }, - [758] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [759] = { - [sym_identifier] = ACTIONS(2510), - [anon_sym_export] = ACTIONS(2510), - [anon_sym_default] = ACTIONS(2510), - [anon_sym_type] = ACTIONS(2510), - [anon_sym_namespace] = ACTIONS(2510), - [anon_sym_LBRACE] = ACTIONS(2512), - [anon_sym_RBRACE] = ACTIONS(2512), - [anon_sym_typeof] = ACTIONS(2510), - [anon_sym_import] = ACTIONS(2510), - [anon_sym_from] = ACTIONS(2510), - [anon_sym_var] = ACTIONS(2510), - [anon_sym_let] = ACTIONS(2510), - [anon_sym_const] = ACTIONS(2510), - [anon_sym_BANG] = ACTIONS(2512), - [anon_sym_else] = ACTIONS(2510), - [anon_sym_if] = ACTIONS(2510), - [anon_sym_switch] = ACTIONS(2510), - [anon_sym_for] = ACTIONS(2510), - [anon_sym_LPAREN] = ACTIONS(2512), - [anon_sym_await] = ACTIONS(2510), - [anon_sym_of] = ACTIONS(2510), - [anon_sym_while] = ACTIONS(2510), - [anon_sym_do] = ACTIONS(2510), - [anon_sym_try] = ACTIONS(2510), - [anon_sym_with] = ACTIONS(2510), - [anon_sym_break] = ACTIONS(2510), - [anon_sym_continue] = ACTIONS(2510), - [anon_sym_debugger] = ACTIONS(2510), - [anon_sym_return] = ACTIONS(2510), - [anon_sym_throw] = ACTIONS(2510), - [anon_sym_SEMI] = ACTIONS(2512), - [anon_sym_case] = ACTIONS(2510), - [anon_sym_yield] = ACTIONS(2510), - [anon_sym_LBRACK] = ACTIONS(2512), - [anon_sym_LTtemplate_GT] = ACTIONS(2512), - [anon_sym_LT] = ACTIONS(2510), - [anon_sym_SLASH] = ACTIONS(2510), - [anon_sym_class] = ACTIONS(2510), - [anon_sym_async] = ACTIONS(2510), - [anon_sym_function] = ACTIONS(2510), - [anon_sym_new] = ACTIONS(2510), - [anon_sym_PLUS] = ACTIONS(2510), - [anon_sym_DASH] = ACTIONS(2510), - [anon_sym_TILDE] = ACTIONS(2512), - [anon_sym_void] = ACTIONS(2510), - [anon_sym_delete] = ACTIONS(2510), - [anon_sym_PLUS_PLUS] = ACTIONS(2512), - [anon_sym_DASH_DASH] = ACTIONS(2512), - [anon_sym_DQUOTE] = ACTIONS(2512), - [anon_sym_SQUOTE] = ACTIONS(2512), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2512), - [sym_number] = ACTIONS(2512), - [sym_this] = ACTIONS(2510), - [sym_super] = ACTIONS(2510), - [sym_true] = ACTIONS(2510), - [sym_false] = ACTIONS(2510), - [sym_null] = ACTIONS(2510), - [sym_undefined] = ACTIONS(2510), - [anon_sym_AT] = ACTIONS(2512), - [anon_sym_static] = ACTIONS(2510), - [anon_sym_readonly] = ACTIONS(2510), - [anon_sym_get] = ACTIONS(2510), - [anon_sym_set] = ACTIONS(2510), - [anon_sym_declare] = ACTIONS(2510), - [anon_sym_public] = ACTIONS(2510), - [anon_sym_private] = ACTIONS(2510), - [anon_sym_protected] = ACTIONS(2510), - [anon_sym_override] = ACTIONS(2510), - [anon_sym_module] = ACTIONS(2510), - [anon_sym_any] = ACTIONS(2510), - [anon_sym_number] = ACTIONS(2510), - [anon_sym_boolean] = ACTIONS(2510), - [anon_sym_string] = ACTIONS(2510), - [anon_sym_symbol] = ACTIONS(2510), - [anon_sym_property] = ACTIONS(2510), - [anon_sym_signal] = ACTIONS(2510), - [anon_sym_on] = ACTIONS(2510), - [anon_sym_required] = ACTIONS(2510), - [anon_sym_component] = ACTIONS(2510), - [anon_sym_abstract] = ACTIONS(2510), - [anon_sym_interface] = ACTIONS(2510), - [anon_sym_enum] = ACTIONS(2510), - }, - [760] = { - [sym_identifier] = ACTIONS(2514), - [anon_sym_export] = ACTIONS(2514), - [anon_sym_default] = ACTIONS(2514), - [anon_sym_type] = ACTIONS(2514), - [anon_sym_namespace] = ACTIONS(2514), - [anon_sym_LBRACE] = ACTIONS(2516), - [anon_sym_RBRACE] = ACTIONS(2516), - [anon_sym_typeof] = ACTIONS(2514), - [anon_sym_import] = ACTIONS(2514), - [anon_sym_from] = ACTIONS(2514), - [anon_sym_var] = ACTIONS(2514), - [anon_sym_let] = ACTIONS(2514), - [anon_sym_const] = ACTIONS(2514), - [anon_sym_BANG] = ACTIONS(2516), - [anon_sym_else] = ACTIONS(2514), - [anon_sym_if] = ACTIONS(2514), - [anon_sym_switch] = ACTIONS(2514), - [anon_sym_for] = ACTIONS(2514), - [anon_sym_LPAREN] = ACTIONS(2516), - [anon_sym_await] = ACTIONS(2514), - [anon_sym_of] = ACTIONS(2514), - [anon_sym_while] = ACTIONS(2514), - [anon_sym_do] = ACTIONS(2514), - [anon_sym_try] = ACTIONS(2514), - [anon_sym_with] = ACTIONS(2514), - [anon_sym_break] = ACTIONS(2514), - [anon_sym_continue] = ACTIONS(2514), - [anon_sym_debugger] = ACTIONS(2514), - [anon_sym_return] = ACTIONS(2514), - [anon_sym_throw] = ACTIONS(2514), - [anon_sym_SEMI] = ACTIONS(2516), - [anon_sym_case] = ACTIONS(2514), - [anon_sym_yield] = ACTIONS(2514), - [anon_sym_LBRACK] = ACTIONS(2516), - [anon_sym_LTtemplate_GT] = ACTIONS(2516), - [anon_sym_LT] = ACTIONS(2514), - [anon_sym_SLASH] = ACTIONS(2514), - [anon_sym_class] = ACTIONS(2514), - [anon_sym_async] = ACTIONS(2514), - [anon_sym_function] = ACTIONS(2514), - [anon_sym_new] = ACTIONS(2514), - [anon_sym_PLUS] = ACTIONS(2514), - [anon_sym_DASH] = ACTIONS(2514), - [anon_sym_TILDE] = ACTIONS(2516), - [anon_sym_void] = ACTIONS(2514), - [anon_sym_delete] = ACTIONS(2514), - [anon_sym_PLUS_PLUS] = ACTIONS(2516), - [anon_sym_DASH_DASH] = ACTIONS(2516), - [anon_sym_DQUOTE] = ACTIONS(2516), - [anon_sym_SQUOTE] = ACTIONS(2516), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2516), - [sym_number] = ACTIONS(2516), - [sym_this] = ACTIONS(2514), - [sym_super] = ACTIONS(2514), - [sym_true] = ACTIONS(2514), - [sym_false] = ACTIONS(2514), - [sym_null] = ACTIONS(2514), - [sym_undefined] = ACTIONS(2514), - [anon_sym_AT] = ACTIONS(2516), - [anon_sym_static] = ACTIONS(2514), - [anon_sym_readonly] = ACTIONS(2514), - [anon_sym_get] = ACTIONS(2514), - [anon_sym_set] = ACTIONS(2514), - [anon_sym_declare] = ACTIONS(2514), - [anon_sym_public] = ACTIONS(2514), - [anon_sym_private] = ACTIONS(2514), - [anon_sym_protected] = ACTIONS(2514), - [anon_sym_override] = ACTIONS(2514), - [anon_sym_module] = ACTIONS(2514), - [anon_sym_any] = ACTIONS(2514), - [anon_sym_number] = ACTIONS(2514), - [anon_sym_boolean] = ACTIONS(2514), - [anon_sym_string] = ACTIONS(2514), - [anon_sym_symbol] = ACTIONS(2514), - [anon_sym_property] = ACTIONS(2514), - [anon_sym_signal] = ACTIONS(2514), - [anon_sym_on] = ACTIONS(2514), - [anon_sym_required] = ACTIONS(2514), - [anon_sym_component] = ACTIONS(2514), - [anon_sym_abstract] = ACTIONS(2514), - [anon_sym_interface] = ACTIONS(2514), - [anon_sym_enum] = ACTIONS(2514), - }, - [761] = { - [sym_identifier] = ACTIONS(2518), - [anon_sym_export] = ACTIONS(2518), - [anon_sym_default] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_namespace] = ACTIONS(2518), - [anon_sym_LBRACE] = ACTIONS(2520), - [anon_sym_RBRACE] = ACTIONS(2520), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_import] = ACTIONS(2518), - [anon_sym_from] = ACTIONS(2518), - [anon_sym_var] = ACTIONS(2518), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(2518), - [anon_sym_BANG] = ACTIONS(2520), - [anon_sym_else] = ACTIONS(2518), - [anon_sym_if] = ACTIONS(2518), - [anon_sym_switch] = ACTIONS(2518), - [anon_sym_for] = ACTIONS(2518), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_await] = ACTIONS(2518), - [anon_sym_of] = ACTIONS(2518), - [anon_sym_while] = ACTIONS(2518), - [anon_sym_do] = ACTIONS(2518), - [anon_sym_try] = ACTIONS(2518), - [anon_sym_with] = ACTIONS(2518), - [anon_sym_break] = ACTIONS(2518), - [anon_sym_continue] = ACTIONS(2518), - [anon_sym_debugger] = ACTIONS(2518), - [anon_sym_return] = ACTIONS(2518), - [anon_sym_throw] = ACTIONS(2518), - [anon_sym_SEMI] = ACTIONS(2520), - [anon_sym_case] = ACTIONS(2518), - [anon_sym_yield] = ACTIONS(2518), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LTtemplate_GT] = ACTIONS(2520), - [anon_sym_LT] = ACTIONS(2518), - [anon_sym_SLASH] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2518), - [anon_sym_async] = ACTIONS(2518), - [anon_sym_function] = ACTIONS(2518), - [anon_sym_new] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2518), - [anon_sym_DASH] = ACTIONS(2518), - [anon_sym_TILDE] = ACTIONS(2520), - [anon_sym_void] = ACTIONS(2518), - [anon_sym_delete] = ACTIONS(2518), - [anon_sym_PLUS_PLUS] = ACTIONS(2520), - [anon_sym_DASH_DASH] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2520), - [anon_sym_SQUOTE] = ACTIONS(2520), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2520), - [sym_number] = ACTIONS(2520), - [sym_this] = ACTIONS(2518), - [sym_super] = ACTIONS(2518), - [sym_true] = ACTIONS(2518), - [sym_false] = ACTIONS(2518), - [sym_null] = ACTIONS(2518), - [sym_undefined] = ACTIONS(2518), - [anon_sym_AT] = ACTIONS(2520), - [anon_sym_static] = ACTIONS(2518), - [anon_sym_readonly] = ACTIONS(2518), - [anon_sym_get] = ACTIONS(2518), - [anon_sym_set] = ACTIONS(2518), - [anon_sym_declare] = ACTIONS(2518), - [anon_sym_public] = ACTIONS(2518), - [anon_sym_private] = ACTIONS(2518), - [anon_sym_protected] = ACTIONS(2518), - [anon_sym_override] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_any] = ACTIONS(2518), - [anon_sym_number] = ACTIONS(2518), - [anon_sym_boolean] = ACTIONS(2518), - [anon_sym_string] = ACTIONS(2518), - [anon_sym_symbol] = ACTIONS(2518), - [anon_sym_property] = ACTIONS(2518), - [anon_sym_signal] = ACTIONS(2518), - [anon_sym_on] = ACTIONS(2518), - [anon_sym_required] = ACTIONS(2518), - [anon_sym_component] = ACTIONS(2518), - [anon_sym_abstract] = ACTIONS(2518), - [anon_sym_interface] = ACTIONS(2518), - [anon_sym_enum] = ACTIONS(2518), - }, - [762] = { - [sym_identifier] = ACTIONS(2522), - [anon_sym_export] = ACTIONS(2522), - [anon_sym_default] = ACTIONS(2522), - [anon_sym_type] = ACTIONS(2522), - [anon_sym_namespace] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2524), - [anon_sym_RBRACE] = ACTIONS(2524), - [anon_sym_typeof] = ACTIONS(2522), - [anon_sym_import] = ACTIONS(2522), - [anon_sym_from] = ACTIONS(2522), - [anon_sym_var] = ACTIONS(2522), - [anon_sym_let] = ACTIONS(2522), - [anon_sym_const] = ACTIONS(2522), - [anon_sym_BANG] = ACTIONS(2524), - [anon_sym_else] = ACTIONS(2522), - [anon_sym_if] = ACTIONS(2522), - [anon_sym_switch] = ACTIONS(2522), - [anon_sym_for] = ACTIONS(2522), - [anon_sym_LPAREN] = ACTIONS(2524), - [anon_sym_await] = ACTIONS(2522), - [anon_sym_of] = ACTIONS(2522), - [anon_sym_while] = ACTIONS(2522), - [anon_sym_do] = ACTIONS(2522), - [anon_sym_try] = ACTIONS(2522), - [anon_sym_with] = ACTIONS(2522), - [anon_sym_break] = ACTIONS(2522), - [anon_sym_continue] = ACTIONS(2522), - [anon_sym_debugger] = ACTIONS(2522), - [anon_sym_return] = ACTIONS(2522), - [anon_sym_throw] = ACTIONS(2522), - [anon_sym_SEMI] = ACTIONS(2524), - [anon_sym_case] = ACTIONS(2522), - [anon_sym_yield] = ACTIONS(2522), - [anon_sym_LBRACK] = ACTIONS(2524), - [anon_sym_LTtemplate_GT] = ACTIONS(2524), - [anon_sym_LT] = ACTIONS(2522), - [anon_sym_SLASH] = ACTIONS(2522), - [anon_sym_class] = ACTIONS(2522), - [anon_sym_async] = ACTIONS(2522), - [anon_sym_function] = ACTIONS(2522), - [anon_sym_new] = ACTIONS(2522), - [anon_sym_PLUS] = ACTIONS(2522), - [anon_sym_DASH] = ACTIONS(2522), - [anon_sym_TILDE] = ACTIONS(2524), - [anon_sym_void] = ACTIONS(2522), - [anon_sym_delete] = ACTIONS(2522), - [anon_sym_PLUS_PLUS] = ACTIONS(2524), - [anon_sym_DASH_DASH] = ACTIONS(2524), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2524), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2524), - [sym_number] = ACTIONS(2524), - [sym_this] = ACTIONS(2522), - [sym_super] = ACTIONS(2522), - [sym_true] = ACTIONS(2522), - [sym_false] = ACTIONS(2522), - [sym_null] = ACTIONS(2522), - [sym_undefined] = ACTIONS(2522), - [anon_sym_AT] = ACTIONS(2524), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_readonly] = ACTIONS(2522), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_declare] = ACTIONS(2522), - [anon_sym_public] = ACTIONS(2522), - [anon_sym_private] = ACTIONS(2522), - [anon_sym_protected] = ACTIONS(2522), - [anon_sym_override] = ACTIONS(2522), - [anon_sym_module] = ACTIONS(2522), - [anon_sym_any] = ACTIONS(2522), - [anon_sym_number] = ACTIONS(2522), - [anon_sym_boolean] = ACTIONS(2522), - [anon_sym_string] = ACTIONS(2522), - [anon_sym_symbol] = ACTIONS(2522), - [anon_sym_property] = ACTIONS(2522), - [anon_sym_signal] = ACTIONS(2522), - [anon_sym_on] = ACTIONS(2522), - [anon_sym_required] = ACTIONS(2522), - [anon_sym_component] = ACTIONS(2522), - [anon_sym_abstract] = ACTIONS(2522), - [anon_sym_interface] = ACTIONS(2522), - [anon_sym_enum] = ACTIONS(2522), - }, - [763] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [764] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [765] = { - [sym_identifier] = ACTIONS(2526), - [anon_sym_export] = ACTIONS(2526), - [anon_sym_default] = ACTIONS(2526), - [anon_sym_type] = ACTIONS(2526), - [anon_sym_namespace] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2528), - [anon_sym_RBRACE] = ACTIONS(2528), - [anon_sym_typeof] = ACTIONS(2526), - [anon_sym_import] = ACTIONS(2526), - [anon_sym_from] = ACTIONS(2526), - [anon_sym_var] = ACTIONS(2526), - [anon_sym_let] = ACTIONS(2526), - [anon_sym_const] = ACTIONS(2526), - [anon_sym_BANG] = ACTIONS(2528), - [anon_sym_else] = ACTIONS(2526), - [anon_sym_if] = ACTIONS(2526), - [anon_sym_switch] = ACTIONS(2526), - [anon_sym_for] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_await] = ACTIONS(2526), - [anon_sym_of] = ACTIONS(2526), - [anon_sym_while] = ACTIONS(2526), - [anon_sym_do] = ACTIONS(2526), - [anon_sym_try] = ACTIONS(2526), - [anon_sym_with] = ACTIONS(2526), - [anon_sym_break] = ACTIONS(2526), - [anon_sym_continue] = ACTIONS(2526), - [anon_sym_debugger] = ACTIONS(2526), - [anon_sym_return] = ACTIONS(2526), - [anon_sym_throw] = ACTIONS(2526), - [anon_sym_SEMI] = ACTIONS(2528), - [anon_sym_case] = ACTIONS(2526), - [anon_sym_yield] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2528), - [anon_sym_LTtemplate_GT] = ACTIONS(2528), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_SLASH] = ACTIONS(2526), - [anon_sym_class] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2526), - [anon_sym_PLUS] = ACTIONS(2526), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_void] = ACTIONS(2526), - [anon_sym_delete] = ACTIONS(2526), - [anon_sym_PLUS_PLUS] = ACTIONS(2528), - [anon_sym_DASH_DASH] = ACTIONS(2528), - [anon_sym_DQUOTE] = ACTIONS(2528), - [anon_sym_SQUOTE] = ACTIONS(2528), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2528), - [sym_number] = ACTIONS(2528), - [sym_this] = ACTIONS(2526), - [sym_super] = ACTIONS(2526), - [sym_true] = ACTIONS(2526), - [sym_false] = ACTIONS(2526), - [sym_null] = ACTIONS(2526), - [sym_undefined] = ACTIONS(2526), - [anon_sym_AT] = ACTIONS(2528), - [anon_sym_static] = ACTIONS(2526), - [anon_sym_readonly] = ACTIONS(2526), - [anon_sym_get] = ACTIONS(2526), - [anon_sym_set] = ACTIONS(2526), - [anon_sym_declare] = ACTIONS(2526), - [anon_sym_public] = ACTIONS(2526), - [anon_sym_private] = ACTIONS(2526), - [anon_sym_protected] = ACTIONS(2526), - [anon_sym_override] = ACTIONS(2526), - [anon_sym_module] = ACTIONS(2526), - [anon_sym_any] = ACTIONS(2526), - [anon_sym_number] = ACTIONS(2526), - [anon_sym_boolean] = ACTIONS(2526), - [anon_sym_string] = ACTIONS(2526), - [anon_sym_symbol] = ACTIONS(2526), - [anon_sym_property] = ACTIONS(2526), - [anon_sym_signal] = ACTIONS(2526), - [anon_sym_on] = ACTIONS(2526), - [anon_sym_required] = ACTIONS(2526), - [anon_sym_component] = ACTIONS(2526), - [anon_sym_abstract] = ACTIONS(2526), - [anon_sym_interface] = ACTIONS(2526), - [anon_sym_enum] = ACTIONS(2526), - }, - [766] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [767] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [768] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [769] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [770] = { - [sym_identifier] = ACTIONS(2530), - [anon_sym_export] = ACTIONS(2530), - [anon_sym_default] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_namespace] = ACTIONS(2530), - [anon_sym_LBRACE] = ACTIONS(2532), - [anon_sym_RBRACE] = ACTIONS(2532), - [anon_sym_typeof] = ACTIONS(2530), - [anon_sym_import] = ACTIONS(2530), - [anon_sym_from] = ACTIONS(2530), - [anon_sym_var] = ACTIONS(2530), - [anon_sym_let] = ACTIONS(2530), - [anon_sym_const] = ACTIONS(2530), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_else] = ACTIONS(2530), - [anon_sym_if] = ACTIONS(2530), - [anon_sym_switch] = ACTIONS(2530), - [anon_sym_for] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2532), - [anon_sym_await] = ACTIONS(2530), - [anon_sym_of] = ACTIONS(2530), - [anon_sym_while] = ACTIONS(2530), - [anon_sym_do] = ACTIONS(2530), - [anon_sym_try] = ACTIONS(2530), - [anon_sym_with] = ACTIONS(2530), - [anon_sym_break] = ACTIONS(2530), - [anon_sym_continue] = ACTIONS(2530), - [anon_sym_debugger] = ACTIONS(2530), - [anon_sym_return] = ACTIONS(2530), - [anon_sym_throw] = ACTIONS(2530), - [anon_sym_SEMI] = ACTIONS(2532), - [anon_sym_case] = ACTIONS(2530), - [anon_sym_yield] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2532), - [anon_sym_LTtemplate_GT] = ACTIONS(2532), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(2530), - [anon_sym_class] = ACTIONS(2530), - [anon_sym_async] = ACTIONS(2530), - [anon_sym_function] = ACTIONS(2530), - [anon_sym_new] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_TILDE] = ACTIONS(2532), - [anon_sym_void] = ACTIONS(2530), - [anon_sym_delete] = ACTIONS(2530), - [anon_sym_PLUS_PLUS] = ACTIONS(2532), - [anon_sym_DASH_DASH] = ACTIONS(2532), - [anon_sym_DQUOTE] = ACTIONS(2532), - [anon_sym_SQUOTE] = ACTIONS(2532), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2532), - [sym_this] = ACTIONS(2530), - [sym_super] = ACTIONS(2530), - [sym_true] = ACTIONS(2530), - [sym_false] = ACTIONS(2530), - [sym_null] = ACTIONS(2530), - [sym_undefined] = ACTIONS(2530), - [anon_sym_AT] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2530), - [anon_sym_readonly] = ACTIONS(2530), - [anon_sym_get] = ACTIONS(2530), - [anon_sym_set] = ACTIONS(2530), - [anon_sym_declare] = ACTIONS(2530), - [anon_sym_public] = ACTIONS(2530), - [anon_sym_private] = ACTIONS(2530), - [anon_sym_protected] = ACTIONS(2530), - [anon_sym_override] = ACTIONS(2530), - [anon_sym_module] = ACTIONS(2530), - [anon_sym_any] = ACTIONS(2530), - [anon_sym_number] = ACTIONS(2530), - [anon_sym_boolean] = ACTIONS(2530), - [anon_sym_string] = ACTIONS(2530), - [anon_sym_symbol] = ACTIONS(2530), - [anon_sym_property] = ACTIONS(2530), - [anon_sym_signal] = ACTIONS(2530), - [anon_sym_on] = ACTIONS(2530), - [anon_sym_required] = ACTIONS(2530), - [anon_sym_component] = ACTIONS(2530), - [anon_sym_abstract] = ACTIONS(2530), - [anon_sym_interface] = ACTIONS(2530), - [anon_sym_enum] = ACTIONS(2530), - }, - [771] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [772] = { - [sym_identifier] = ACTIONS(2534), - [anon_sym_export] = ACTIONS(2534), - [anon_sym_default] = ACTIONS(2534), - [anon_sym_type] = ACTIONS(2534), - [anon_sym_namespace] = ACTIONS(2534), - [anon_sym_LBRACE] = ACTIONS(2536), - [anon_sym_RBRACE] = ACTIONS(2536), - [anon_sym_typeof] = ACTIONS(2534), - [anon_sym_import] = ACTIONS(2534), - [anon_sym_from] = ACTIONS(2534), - [anon_sym_var] = ACTIONS(2534), - [anon_sym_let] = ACTIONS(2534), - [anon_sym_const] = ACTIONS(2534), - [anon_sym_BANG] = ACTIONS(2536), - [anon_sym_else] = ACTIONS(2534), - [anon_sym_if] = ACTIONS(2534), - [anon_sym_switch] = ACTIONS(2534), - [anon_sym_for] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(2536), - [anon_sym_await] = ACTIONS(2534), - [anon_sym_of] = ACTIONS(2534), - [anon_sym_while] = ACTIONS(2534), - [anon_sym_do] = ACTIONS(2534), - [anon_sym_try] = ACTIONS(2534), - [anon_sym_with] = ACTIONS(2534), - [anon_sym_break] = ACTIONS(2534), - [anon_sym_continue] = ACTIONS(2534), - [anon_sym_debugger] = ACTIONS(2534), - [anon_sym_return] = ACTIONS(2534), - [anon_sym_throw] = ACTIONS(2534), - [anon_sym_SEMI] = ACTIONS(2536), - [anon_sym_case] = ACTIONS(2534), - [anon_sym_yield] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2536), - [anon_sym_LTtemplate_GT] = ACTIONS(2536), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_SLASH] = ACTIONS(2534), - [anon_sym_class] = ACTIONS(2534), - [anon_sym_async] = ACTIONS(2534), - [anon_sym_function] = ACTIONS(2534), - [anon_sym_new] = ACTIONS(2534), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_TILDE] = ACTIONS(2536), - [anon_sym_void] = ACTIONS(2534), - [anon_sym_delete] = ACTIONS(2534), - [anon_sym_PLUS_PLUS] = ACTIONS(2536), - [anon_sym_DASH_DASH] = ACTIONS(2536), - [anon_sym_DQUOTE] = ACTIONS(2536), - [anon_sym_SQUOTE] = ACTIONS(2536), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2536), - [sym_number] = ACTIONS(2536), - [sym_this] = ACTIONS(2534), - [sym_super] = ACTIONS(2534), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_AT] = ACTIONS(2536), - [anon_sym_static] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2534), - [anon_sym_get] = ACTIONS(2534), - [anon_sym_set] = ACTIONS(2534), - [anon_sym_declare] = ACTIONS(2534), - [anon_sym_public] = ACTIONS(2534), - [anon_sym_private] = ACTIONS(2534), - [anon_sym_protected] = ACTIONS(2534), - [anon_sym_override] = ACTIONS(2534), - [anon_sym_module] = ACTIONS(2534), - [anon_sym_any] = ACTIONS(2534), - [anon_sym_number] = ACTIONS(2534), - [anon_sym_boolean] = ACTIONS(2534), - [anon_sym_string] = ACTIONS(2534), - [anon_sym_symbol] = ACTIONS(2534), - [anon_sym_property] = ACTIONS(2534), - [anon_sym_signal] = ACTIONS(2534), - [anon_sym_on] = ACTIONS(2534), - [anon_sym_required] = ACTIONS(2534), - [anon_sym_component] = ACTIONS(2534), - [anon_sym_abstract] = ACTIONS(2534), - [anon_sym_interface] = ACTIONS(2534), - [anon_sym_enum] = ACTIONS(2534), - }, - [773] = { - [sym_identifier] = ACTIONS(2538), - [anon_sym_export] = ACTIONS(2538), - [anon_sym_default] = ACTIONS(2538), - [anon_sym_type] = ACTIONS(2538), - [anon_sym_namespace] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2540), - [anon_sym_RBRACE] = ACTIONS(2540), - [anon_sym_typeof] = ACTIONS(2538), - [anon_sym_import] = ACTIONS(2538), - [anon_sym_from] = ACTIONS(2538), - [anon_sym_var] = ACTIONS(2538), - [anon_sym_let] = ACTIONS(2538), - [anon_sym_const] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2540), - [anon_sym_else] = ACTIONS(2538), - [anon_sym_if] = ACTIONS(2538), - [anon_sym_switch] = ACTIONS(2538), - [anon_sym_for] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2540), - [anon_sym_await] = ACTIONS(2538), - [anon_sym_of] = ACTIONS(2538), - [anon_sym_while] = ACTIONS(2538), - [anon_sym_do] = ACTIONS(2538), - [anon_sym_try] = ACTIONS(2538), - [anon_sym_with] = ACTIONS(2538), - [anon_sym_break] = ACTIONS(2538), - [anon_sym_continue] = ACTIONS(2538), - [anon_sym_debugger] = ACTIONS(2538), - [anon_sym_return] = ACTIONS(2538), - [anon_sym_throw] = ACTIONS(2538), - [anon_sym_SEMI] = ACTIONS(2540), - [anon_sym_case] = ACTIONS(2538), - [anon_sym_yield] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2540), - [anon_sym_LTtemplate_GT] = ACTIONS(2540), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_SLASH] = ACTIONS(2538), - [anon_sym_class] = ACTIONS(2538), - [anon_sym_async] = ACTIONS(2538), - [anon_sym_function] = ACTIONS(2538), - [anon_sym_new] = ACTIONS(2538), - [anon_sym_PLUS] = ACTIONS(2538), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_TILDE] = ACTIONS(2540), - [anon_sym_void] = ACTIONS(2538), - [anon_sym_delete] = ACTIONS(2538), - [anon_sym_PLUS_PLUS] = ACTIONS(2540), - [anon_sym_DASH_DASH] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2540), - [anon_sym_SQUOTE] = ACTIONS(2540), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2540), - [sym_number] = ACTIONS(2540), - [sym_this] = ACTIONS(2538), - [sym_super] = ACTIONS(2538), - [sym_true] = ACTIONS(2538), - [sym_false] = ACTIONS(2538), - [sym_null] = ACTIONS(2538), - [sym_undefined] = ACTIONS(2538), - [anon_sym_AT] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2538), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_get] = ACTIONS(2538), - [anon_sym_set] = ACTIONS(2538), - [anon_sym_declare] = ACTIONS(2538), - [anon_sym_public] = ACTIONS(2538), - [anon_sym_private] = ACTIONS(2538), - [anon_sym_protected] = ACTIONS(2538), - [anon_sym_override] = ACTIONS(2538), - [anon_sym_module] = ACTIONS(2538), - [anon_sym_any] = ACTIONS(2538), - [anon_sym_number] = ACTIONS(2538), - [anon_sym_boolean] = ACTIONS(2538), - [anon_sym_string] = ACTIONS(2538), - [anon_sym_symbol] = ACTIONS(2538), - [anon_sym_property] = ACTIONS(2538), - [anon_sym_signal] = ACTIONS(2538), - [anon_sym_on] = ACTIONS(2538), - [anon_sym_required] = ACTIONS(2538), - [anon_sym_component] = ACTIONS(2538), - [anon_sym_abstract] = ACTIONS(2538), - [anon_sym_interface] = ACTIONS(2538), - [anon_sym_enum] = ACTIONS(2538), - }, - [774] = { - [sym_identifier] = ACTIONS(2542), - [anon_sym_export] = ACTIONS(2542), - [anon_sym_default] = ACTIONS(2542), - [anon_sym_type] = ACTIONS(2542), - [anon_sym_namespace] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2544), - [anon_sym_RBRACE] = ACTIONS(2544), - [anon_sym_typeof] = ACTIONS(2542), - [anon_sym_import] = ACTIONS(2542), - [anon_sym_from] = ACTIONS(2542), - [anon_sym_var] = ACTIONS(2542), - [anon_sym_let] = ACTIONS(2542), - [anon_sym_const] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2544), - [anon_sym_else] = ACTIONS(2542), - [anon_sym_if] = ACTIONS(2542), - [anon_sym_switch] = ACTIONS(2542), - [anon_sym_for] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2544), - [anon_sym_await] = ACTIONS(2542), - [anon_sym_of] = ACTIONS(2542), - [anon_sym_while] = ACTIONS(2542), - [anon_sym_do] = ACTIONS(2542), - [anon_sym_try] = ACTIONS(2542), - [anon_sym_with] = ACTIONS(2542), - [anon_sym_break] = ACTIONS(2542), - [anon_sym_continue] = ACTIONS(2542), - [anon_sym_debugger] = ACTIONS(2542), - [anon_sym_return] = ACTIONS(2542), - [anon_sym_throw] = ACTIONS(2542), - [anon_sym_SEMI] = ACTIONS(2544), - [anon_sym_case] = ACTIONS(2542), - [anon_sym_yield] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2544), - [anon_sym_LTtemplate_GT] = ACTIONS(2544), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_SLASH] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2542), - [anon_sym_function] = ACTIONS(2542), - [anon_sym_new] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2542), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_TILDE] = ACTIONS(2544), - [anon_sym_void] = ACTIONS(2542), - [anon_sym_delete] = ACTIONS(2542), - [anon_sym_PLUS_PLUS] = ACTIONS(2544), - [anon_sym_DASH_DASH] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [anon_sym_SQUOTE] = ACTIONS(2544), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2544), - [sym_number] = ACTIONS(2544), - [sym_this] = ACTIONS(2542), - [sym_super] = ACTIONS(2542), - [sym_true] = ACTIONS(2542), - [sym_false] = ACTIONS(2542), - [sym_null] = ACTIONS(2542), - [sym_undefined] = ACTIONS(2542), - [anon_sym_AT] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2542), - [anon_sym_readonly] = ACTIONS(2542), - [anon_sym_get] = ACTIONS(2542), - [anon_sym_set] = ACTIONS(2542), - [anon_sym_declare] = ACTIONS(2542), - [anon_sym_public] = ACTIONS(2542), - [anon_sym_private] = ACTIONS(2542), - [anon_sym_protected] = ACTIONS(2542), - [anon_sym_override] = ACTIONS(2542), - [anon_sym_module] = ACTIONS(2542), - [anon_sym_any] = ACTIONS(2542), - [anon_sym_number] = ACTIONS(2542), - [anon_sym_boolean] = ACTIONS(2542), - [anon_sym_string] = ACTIONS(2542), - [anon_sym_symbol] = ACTIONS(2542), - [anon_sym_property] = ACTIONS(2542), - [anon_sym_signal] = ACTIONS(2542), - [anon_sym_on] = ACTIONS(2542), - [anon_sym_required] = ACTIONS(2542), - [anon_sym_component] = ACTIONS(2542), - [anon_sym_abstract] = ACTIONS(2542), - [anon_sym_interface] = ACTIONS(2542), - [anon_sym_enum] = ACTIONS(2542), - }, - [775] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [776] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [777] = { - [sym_identifier] = ACTIONS(2546), - [anon_sym_export] = ACTIONS(2546), - [anon_sym_default] = ACTIONS(2546), - [anon_sym_type] = ACTIONS(2546), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2548), - [anon_sym_typeof] = ACTIONS(2546), - [anon_sym_import] = ACTIONS(2546), - [anon_sym_from] = ACTIONS(2546), - [anon_sym_var] = ACTIONS(2546), - [anon_sym_let] = ACTIONS(2546), - [anon_sym_const] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2548), - [anon_sym_else] = ACTIONS(2546), - [anon_sym_if] = ACTIONS(2546), - [anon_sym_switch] = ACTIONS(2546), - [anon_sym_for] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_await] = ACTIONS(2546), - [anon_sym_of] = ACTIONS(2546), - [anon_sym_while] = ACTIONS(2546), - [anon_sym_do] = ACTIONS(2546), - [anon_sym_try] = ACTIONS(2546), - [anon_sym_with] = ACTIONS(2546), - [anon_sym_break] = ACTIONS(2546), - [anon_sym_continue] = ACTIONS(2546), - [anon_sym_debugger] = ACTIONS(2546), - [anon_sym_return] = ACTIONS(2546), - [anon_sym_throw] = ACTIONS(2546), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_case] = ACTIONS(2546), - [anon_sym_yield] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2548), - [anon_sym_LTtemplate_GT] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_class] = ACTIONS(2546), - [anon_sym_async] = ACTIONS(2546), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_new] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_void] = ACTIONS(2546), - [anon_sym_delete] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2548), - [anon_sym_DQUOTE] = ACTIONS(2548), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2548), - [sym_number] = ACTIONS(2548), - [sym_this] = ACTIONS(2546), - [sym_super] = ACTIONS(2546), - [sym_true] = ACTIONS(2546), - [sym_false] = ACTIONS(2546), - [sym_null] = ACTIONS(2546), - [sym_undefined] = ACTIONS(2546), - [anon_sym_AT] = ACTIONS(2548), - [anon_sym_static] = ACTIONS(2546), - [anon_sym_readonly] = ACTIONS(2546), - [anon_sym_get] = ACTIONS(2546), - [anon_sym_set] = ACTIONS(2546), - [anon_sym_declare] = ACTIONS(2546), - [anon_sym_public] = ACTIONS(2546), - [anon_sym_private] = ACTIONS(2546), - [anon_sym_protected] = ACTIONS(2546), - [anon_sym_override] = ACTIONS(2546), - [anon_sym_module] = ACTIONS(2546), - [anon_sym_any] = ACTIONS(2546), - [anon_sym_number] = ACTIONS(2546), - [anon_sym_boolean] = ACTIONS(2546), - [anon_sym_string] = ACTIONS(2546), - [anon_sym_symbol] = ACTIONS(2546), - [anon_sym_property] = ACTIONS(2546), - [anon_sym_signal] = ACTIONS(2546), - [anon_sym_on] = ACTIONS(2546), - [anon_sym_required] = ACTIONS(2546), - [anon_sym_component] = ACTIONS(2546), - [anon_sym_abstract] = ACTIONS(2546), - [anon_sym_interface] = ACTIONS(2546), - [anon_sym_enum] = ACTIONS(2546), - }, - [778] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [779] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - }, - [780] = { - [sym_identifier] = ACTIONS(2546), - [anon_sym_export] = ACTIONS(2546), - [anon_sym_default] = ACTIONS(2546), - [anon_sym_type] = ACTIONS(2546), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2548), - [anon_sym_typeof] = ACTIONS(2546), - [anon_sym_import] = ACTIONS(2546), - [anon_sym_from] = ACTIONS(2546), - [anon_sym_var] = ACTIONS(2546), - [anon_sym_let] = ACTIONS(2546), - [anon_sym_const] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2548), - [anon_sym_else] = ACTIONS(2546), - [anon_sym_if] = ACTIONS(2546), - [anon_sym_switch] = ACTIONS(2546), - [anon_sym_for] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_await] = ACTIONS(2546), - [anon_sym_of] = ACTIONS(2546), - [anon_sym_while] = ACTIONS(2546), - [anon_sym_do] = ACTIONS(2546), - [anon_sym_try] = ACTIONS(2546), - [anon_sym_with] = ACTIONS(2546), - [anon_sym_break] = ACTIONS(2546), - [anon_sym_continue] = ACTIONS(2546), - [anon_sym_debugger] = ACTIONS(2546), - [anon_sym_return] = ACTIONS(2546), - [anon_sym_throw] = ACTIONS(2546), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_case] = ACTIONS(2546), - [anon_sym_yield] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2548), - [anon_sym_LTtemplate_GT] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_class] = ACTIONS(2546), - [anon_sym_async] = ACTIONS(2546), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_new] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_void] = ACTIONS(2546), - [anon_sym_delete] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2548), - [anon_sym_DQUOTE] = ACTIONS(2548), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2548), - [sym_number] = ACTIONS(2548), - [sym_this] = ACTIONS(2546), - [sym_super] = ACTIONS(2546), - [sym_true] = ACTIONS(2546), - [sym_false] = ACTIONS(2546), - [sym_null] = ACTIONS(2546), - [sym_undefined] = ACTIONS(2546), - [anon_sym_AT] = ACTIONS(2548), - [anon_sym_static] = ACTIONS(2546), - [anon_sym_readonly] = ACTIONS(2546), - [anon_sym_get] = ACTIONS(2546), - [anon_sym_set] = ACTIONS(2546), - [anon_sym_declare] = ACTIONS(2546), - [anon_sym_public] = ACTIONS(2546), - [anon_sym_private] = ACTIONS(2546), - [anon_sym_protected] = ACTIONS(2546), - [anon_sym_override] = ACTIONS(2546), - [anon_sym_module] = ACTIONS(2546), - [anon_sym_any] = ACTIONS(2546), - [anon_sym_number] = ACTIONS(2546), - [anon_sym_boolean] = ACTIONS(2546), - [anon_sym_string] = ACTIONS(2546), - [anon_sym_symbol] = ACTIONS(2546), - [anon_sym_property] = ACTIONS(2546), - [anon_sym_signal] = ACTIONS(2546), - [anon_sym_on] = ACTIONS(2546), - [anon_sym_required] = ACTIONS(2546), - [anon_sym_component] = ACTIONS(2546), - [anon_sym_abstract] = ACTIONS(2546), - [anon_sym_interface] = ACTIONS(2546), - [anon_sym_enum] = ACTIONS(2546), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3792), + [anon_sym_readonly] = ACTIONS(3794), + [anon_sym_get] = ACTIONS(3796), + [anon_sym_set] = ACTIONS(3796), + [anon_sym_declare] = ACTIONS(3782), + [anon_sym_public] = ACTIONS(3798), + [anon_sym_private] = ACTIONS(3798), + [anon_sym_protected] = ACTIONS(3798), + [anon_sym_override] = ACTIONS(3800), + [anon_sym_module] = ACTIONS(3782), + [anon_sym_any] = ACTIONS(3782), + [anon_sym_number] = ACTIONS(3782), + [anon_sym_boolean] = ACTIONS(3782), + [anon_sym_string] = ACTIONS(3782), + [anon_sym_symbol] = ACTIONS(3782), + [anon_sym_object] = ACTIONS(3782), + [anon_sym_property] = ACTIONS(3782), + [anon_sym_signal] = ACTIONS(3782), + [anon_sym_on] = ACTIONS(3782), + [anon_sym_required] = ACTIONS(3782), + [anon_sym_component] = ACTIONS(3782), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3776), + [sym_html_comment] = ACTIONS(5), + }, + [1845] = { + [sym_comment] = STATE(1845), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_COMMA] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2396), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_GT] = ACTIONS(2396), + [anon_sym_DOT] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_QMARK_DOT] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_GT_GT_GT] = ACTIONS(2396), + [anon_sym_LT_LT] = ACTIONS(2396), + [anon_sym_AMP] = ACTIONS(2396), + [anon_sym_CARET] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_PERCENT] = ACTIONS(2396), + [anon_sym_STAR_STAR] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_LT_EQ] = ACTIONS(2396), + [anon_sym_EQ_EQ] = ACTIONS(2396), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2396), + [anon_sym_BANG_EQ] = ACTIONS(2396), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2396), + [anon_sym_GT_EQ] = ACTIONS(2396), + [anon_sym_QMARK_QMARK] = ACTIONS(2396), + [anon_sym_instanceof] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_satisfies] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2398), + [sym__ternary_qmark] = ACTIONS(2398), + [sym_html_comment] = ACTIONS(5), + }, + [1846] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1846), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(6718), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3806), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1847] = { + [sym_export_statement] = STATE(5726), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(7345), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1847), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(7345), + [sym_pair] = STATE(7345), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5726), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5726), + [sym_property_signature] = STATE(5726), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5726), + [sym_index_signature] = STATE(5726), + [aux_sym_export_statement_repeat1] = STATE(6305), + [aux_sym_object_repeat1] = STATE(7340), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(3810), + [anon_sym_export] = ACTIONS(3812), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3810), + [anon_sym_namespace] = ACTIONS(3810), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3814), + [anon_sym_from] = ACTIONS(3810), + [anon_sym_let] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(3810), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(3816), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3820), + [anon_sym_readonly] = ACTIONS(3822), + [anon_sym_get] = ACTIONS(3824), + [anon_sym_set] = ACTIONS(3824), + [anon_sym_declare] = ACTIONS(3810), + [anon_sym_public] = ACTIONS(3826), + [anon_sym_private] = ACTIONS(3826), + [anon_sym_protected] = ACTIONS(3826), + [anon_sym_override] = ACTIONS(3828), + [anon_sym_module] = ACTIONS(3810), + [anon_sym_any] = ACTIONS(3810), + [anon_sym_number] = ACTIONS(3810), + [anon_sym_boolean] = ACTIONS(3810), + [anon_sym_string] = ACTIONS(3810), + [anon_sym_symbol] = ACTIONS(3810), + [anon_sym_object] = ACTIONS(3810), + [anon_sym_property] = ACTIONS(3810), + [anon_sym_signal] = ACTIONS(3810), + [anon_sym_on] = ACTIONS(3810), + [anon_sym_required] = ACTIONS(3810), + [anon_sym_component] = ACTIONS(3810), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3776), + [sym_html_comment] = ACTIONS(5), + }, + [1848] = { + [sym_export_statement] = STATE(5726), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(7345), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1848), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(7345), + [sym_pair] = STATE(7345), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5726), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5726), + [sym_property_signature] = STATE(5726), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5726), + [sym_index_signature] = STATE(5726), + [aux_sym_export_statement_repeat1] = STATE(6305), + [aux_sym_object_repeat1] = STATE(7340), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(3810), + [anon_sym_export] = ACTIONS(3812), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3810), + [anon_sym_namespace] = ACTIONS(3810), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3830), + [anon_sym_from] = ACTIONS(3810), + [anon_sym_let] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(3810), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(3816), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3820), + [anon_sym_readonly] = ACTIONS(3822), + [anon_sym_get] = ACTIONS(3824), + [anon_sym_set] = ACTIONS(3824), + [anon_sym_declare] = ACTIONS(3810), + [anon_sym_public] = ACTIONS(3826), + [anon_sym_private] = ACTIONS(3826), + [anon_sym_protected] = ACTIONS(3826), + [anon_sym_override] = ACTIONS(3828), + [anon_sym_module] = ACTIONS(3810), + [anon_sym_any] = ACTIONS(3810), + [anon_sym_number] = ACTIONS(3810), + [anon_sym_boolean] = ACTIONS(3810), + [anon_sym_string] = ACTIONS(3810), + [anon_sym_symbol] = ACTIONS(3810), + [anon_sym_object] = ACTIONS(3810), + [anon_sym_property] = ACTIONS(3810), + [anon_sym_signal] = ACTIONS(3810), + [anon_sym_on] = ACTIONS(3810), + [anon_sym_required] = ACTIONS(3810), + [anon_sym_component] = ACTIONS(3810), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3776), + [sym_html_comment] = ACTIONS(5), + }, + [1849] = { + [sym_comment] = STATE(1849), + [sym_identifier] = ACTIONS(2402), + [anon_sym_export] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_type] = ACTIONS(2402), + [anon_sym_as] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2402), + [anon_sym_COMMA] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_from] = ACTIONS(2402), + [anon_sym_var] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_else] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_in] = ACTIONS(2404), + [anon_sym_of] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_DOT] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2402), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_QMARK_DOT] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_GT_GT_GT] = ACTIONS(2404), + [anon_sym_LT_LT] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_PERCENT] = ACTIONS(2404), + [anon_sym_STAR_STAR] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_LT_EQ] = ACTIONS(2404), + [anon_sym_EQ_EQ] = ACTIONS(2404), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2404), + [anon_sym_BANG_EQ] = ACTIONS(2404), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2404), + [anon_sym_GT_EQ] = ACTIONS(2404), + [anon_sym_QMARK_QMARK] = ACTIONS(2404), + [anon_sym_instanceof] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2404), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_readonly] = ACTIONS(2402), + [anon_sym_get] = ACTIONS(2402), + [anon_sym_set] = ACTIONS(2402), + [anon_sym_declare] = ACTIONS(2402), + [anon_sym_public] = ACTIONS(2402), + [anon_sym_private] = ACTIONS(2402), + [anon_sym_protected] = ACTIONS(2402), + [anon_sym_override] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_any] = ACTIONS(2402), + [anon_sym_number] = ACTIONS(2402), + [anon_sym_boolean] = ACTIONS(2402), + [anon_sym_string] = ACTIONS(2402), + [anon_sym_symbol] = ACTIONS(2402), + [anon_sym_object] = ACTIONS(2402), + [anon_sym_property] = ACTIONS(2402), + [anon_sym_signal] = ACTIONS(2402), + [anon_sym_on] = ACTIONS(2402), + [anon_sym_required] = ACTIONS(2402), + [anon_sym_component] = ACTIONS(2402), + [anon_sym_satisfies] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2402), + [sym__automatic_semicolon] = ACTIONS(3832), + [sym__ternary_qmark] = ACTIONS(2408), + [sym_html_comment] = ACTIONS(5), }, - [781] = { - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_from] = ACTIONS(2470), - [anon_sym_var] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), - [anon_sym_PLUS_PLUS] = ACTIONS(2472), - [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_declare] = ACTIONS(2470), - [anon_sym_public] = ACTIONS(2470), - [anon_sym_private] = ACTIONS(2470), - [anon_sym_protected] = ACTIONS(2470), - [anon_sym_override] = ACTIONS(2470), - [anon_sym_module] = ACTIONS(2470), - [anon_sym_any] = ACTIONS(2470), - [anon_sym_number] = ACTIONS(2470), - [anon_sym_boolean] = ACTIONS(2470), - [anon_sym_string] = ACTIONS(2470), - [anon_sym_symbol] = ACTIONS(2470), - [anon_sym_property] = ACTIONS(2470), - [anon_sym_signal] = ACTIONS(2470), - [anon_sym_on] = ACTIONS(2470), - [anon_sym_required] = ACTIONS(2470), - [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), + [1850] = { + [sym_comment] = STATE(1850), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_STAR] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_as] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_COMMA] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_from] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_else] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_in] = ACTIONS(2328), + [anon_sym_of] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_GT] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_QMARK_DOT] = ACTIONS(2328), + [anon_sym_AMP_AMP] = ACTIONS(2328), + [anon_sym_PIPE_PIPE] = ACTIONS(2328), + [anon_sym_GT_GT] = ACTIONS(2328), + [anon_sym_GT_GT_GT] = ACTIONS(2328), + [anon_sym_LT_LT] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2328), + [anon_sym_CARET] = ACTIONS(2328), + [anon_sym_PIPE] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_PERCENT] = ACTIONS(2328), + [anon_sym_STAR_STAR] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_LT_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2328), + [anon_sym_GT_EQ] = ACTIONS(2328), + [anon_sym_QMARK_QMARK] = ACTIONS(2328), + [anon_sym_instanceof] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_property] = ACTIONS(2328), + [anon_sym_signal] = ACTIONS(2328), + [anon_sym_on] = ACTIONS(2328), + [anon_sym_required] = ACTIONS(2328), + [anon_sym_component] = ACTIONS(2328), + [anon_sym_satisfies] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym__automatic_semicolon] = ACTIONS(2330), + [sym__ternary_qmark] = ACTIONS(2330), + [sym_html_comment] = ACTIONS(5), + }, + [1851] = { + [sym_comment] = STATE(1851), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_as] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_COMMA] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_GT] = ACTIONS(2368), + [anon_sym_DOT] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_QMARK_DOT] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2368), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_GT_GT_GT] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_PERCENT] = ACTIONS(2368), + [anon_sym_STAR_STAR] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_LT_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2368), + [anon_sym_GT_EQ] = ACTIONS(2368), + [anon_sym_QMARK_QMARK] = ACTIONS(2368), + [anon_sym_instanceof] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(2370), + [sym__ternary_qmark] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [1852] = { + [sym_comment] = STATE(1852), + [sym_identifier] = ACTIONS(2384), + [anon_sym_export] = ACTIONS(2384), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_as] = ACTIONS(2384), + [anon_sym_namespace] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_from] = ACTIONS(2384), + [anon_sym_var] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2384), + [anon_sym_LPAREN] = ACTIONS(2384), + [anon_sym_in] = ACTIONS(2384), + [anon_sym_of] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_function] = ACTIONS(2384), + [anon_sym_QMARK_DOT] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_GT_GT_GT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + [anon_sym_CARET] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_PLUS] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2384), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_STAR_STAR] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2384), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_QMARK_QMARK] = ACTIONS(2384), + [anon_sym_instanceof] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2384), + [anon_sym_AT] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_readonly] = ACTIONS(2384), + [anon_sym_get] = ACTIONS(2384), + [anon_sym_set] = ACTIONS(2384), + [anon_sym_declare] = ACTIONS(2384), + [anon_sym_public] = ACTIONS(2384), + [anon_sym_private] = ACTIONS(2384), + [anon_sym_protected] = ACTIONS(2384), + [anon_sym_override] = ACTIONS(2384), + [anon_sym_module] = ACTIONS(2384), + [anon_sym_any] = ACTIONS(2384), + [anon_sym_number] = ACTIONS(2384), + [anon_sym_boolean] = ACTIONS(2384), + [anon_sym_string] = ACTIONS(2384), + [anon_sym_symbol] = ACTIONS(2384), + [anon_sym_object] = ACTIONS(2384), + [anon_sym_property] = ACTIONS(2384), + [anon_sym_signal] = ACTIONS(2384), + [anon_sym_on] = ACTIONS(2384), + [anon_sym_required] = ACTIONS(2384), + [anon_sym_component] = ACTIONS(2384), + [anon_sym_satisfies] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [sym__automatic_semicolon] = ACTIONS(2386), + [sym__ternary_qmark] = ACTIONS(2386), + [sym_html_comment] = ACTIONS(5), + }, + [1853] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1853), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7151), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1854] = { + [sym_comment] = STATE(1854), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_from] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_in] = ACTIONS(2334), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_QMARK_DOT] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_SLASH] = ACTIONS(2334), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2334), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2334), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2334), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_property] = ACTIONS(2332), + [anon_sym_signal] = ACTIONS(2332), + [anon_sym_on] = ACTIONS(2332), + [anon_sym_required] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_satisfies] = ACTIONS(2334), + [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(3838), + [sym__ternary_qmark] = ACTIONS(2338), + [sym_html_comment] = ACTIONS(5), }, - [782] = { + [1855] = { + [sym_comment] = STATE(1855), [sym_identifier] = ACTIONS(2470), [anon_sym_export] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), [anon_sym_default] = ACTIONS(2470), [anon_sym_type] = ACTIONS(2470), + [anon_sym_as] = ACTIONS(2472), [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), + [anon_sym_COMMA] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2470), [anon_sym_from] = ACTIONS(2470), [anon_sym_var] = ACTIONS(2470), [anon_sym_let] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), [anon_sym_BANG] = ACTIONS(2472), [anon_sym_else] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_switch] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_await] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2472), [anon_sym_of] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_do] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [anon_sym_with] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_debugger] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_throw] = ACTIONS(2470), [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_case] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LTtemplate_GT] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_class] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2472), [anon_sym_async] = ACTIONS(2470), [anon_sym_function] = ACTIONS(2470), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_TILDE] = ACTIONS(2472), - [anon_sym_void] = ACTIONS(2470), - [anon_sym_delete] = ACTIONS(2470), + [anon_sym_QMARK_DOT] = ACTIONS(2472), + [anon_sym_AMP_AMP] = ACTIONS(2472), + [anon_sym_PIPE_PIPE] = ACTIONS(2472), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2472), + [anon_sym_LT_LT] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2472), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2472), + [anon_sym_PERCENT] = ACTIONS(2472), + [anon_sym_STAR_STAR] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_LT_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2472), + [anon_sym_GT_EQ] = ACTIONS(2472), + [anon_sym_QMARK_QMARK] = ACTIONS(2472), + [anon_sym_instanceof] = ACTIONS(2472), [anon_sym_PLUS_PLUS] = ACTIONS(2472), [anon_sym_DASH_DASH] = ACTIONS(2472), - [anon_sym_DQUOTE] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), + [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_number] = ACTIONS(2472), - [sym_this] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_true] = ACTIONS(2470), - [sym_false] = ACTIONS(2470), - [sym_null] = ACTIONS(2470), - [sym_undefined] = ACTIONS(2470), - [anon_sym_AT] = ACTIONS(2472), + [anon_sym_AT] = ACTIONS(2470), [anon_sym_static] = ACTIONS(2470), [anon_sym_readonly] = ACTIONS(2470), [anon_sym_get] = ACTIONS(2470), @@ -103219,23763 +233321,114618 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2470), [anon_sym_string] = ACTIONS(2470), [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), [anon_sym_property] = ACTIONS(2470), [anon_sym_signal] = ACTIONS(2470), [anon_sym_on] = ACTIONS(2470), [anon_sym_required] = ACTIONS(2470), [anon_sym_component] = ACTIONS(2470), - [anon_sym_abstract] = ACTIONS(2470), - [anon_sym_interface] = ACTIONS(2470), + [anon_sym_satisfies] = ACTIONS(2472), [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(3840), + [sym__ternary_qmark] = ACTIONS(2476), + [sym_html_comment] = ACTIONS(5), }, - [783] = { - [sym_identifier] = ACTIONS(2550), - [anon_sym_export] = ACTIONS(2550), - [anon_sym_default] = ACTIONS(2550), - [anon_sym_type] = ACTIONS(2550), - [anon_sym_namespace] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_RBRACE] = ACTIONS(2552), - [anon_sym_typeof] = ACTIONS(2550), - [anon_sym_import] = ACTIONS(2550), - [anon_sym_from] = ACTIONS(2550), - [anon_sym_var] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2550), - [anon_sym_const] = ACTIONS(2550), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_else] = ACTIONS(2550), - [anon_sym_if] = ACTIONS(2550), - [anon_sym_switch] = ACTIONS(2550), - [anon_sym_for] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2552), - [anon_sym_await] = ACTIONS(2550), - [anon_sym_of] = ACTIONS(2550), - [anon_sym_while] = ACTIONS(2550), - [anon_sym_do] = ACTIONS(2550), - [anon_sym_try] = ACTIONS(2550), - [anon_sym_with] = ACTIONS(2550), - [anon_sym_break] = ACTIONS(2550), - [anon_sym_continue] = ACTIONS(2550), - [anon_sym_debugger] = ACTIONS(2550), - [anon_sym_return] = ACTIONS(2550), - [anon_sym_throw] = ACTIONS(2550), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_case] = ACTIONS(2550), - [anon_sym_yield] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_LTtemplate_GT] = ACTIONS(2552), - [anon_sym_LT] = ACTIONS(2550), - [anon_sym_SLASH] = ACTIONS(2550), - [anon_sym_class] = ACTIONS(2550), - [anon_sym_async] = ACTIONS(2550), - [anon_sym_function] = ACTIONS(2550), - [anon_sym_new] = ACTIONS(2550), - [anon_sym_PLUS] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_TILDE] = ACTIONS(2552), - [anon_sym_void] = ACTIONS(2550), - [anon_sym_delete] = ACTIONS(2550), - [anon_sym_PLUS_PLUS] = ACTIONS(2552), - [anon_sym_DASH_DASH] = ACTIONS(2552), - [anon_sym_DQUOTE] = ACTIONS(2552), - [anon_sym_SQUOTE] = ACTIONS(2552), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2552), - [sym_number] = ACTIONS(2552), - [sym_this] = ACTIONS(2550), - [sym_super] = ACTIONS(2550), - [sym_true] = ACTIONS(2550), - [sym_false] = ACTIONS(2550), - [sym_null] = ACTIONS(2550), - [sym_undefined] = ACTIONS(2550), - [anon_sym_AT] = ACTIONS(2552), - [anon_sym_static] = ACTIONS(2550), - [anon_sym_readonly] = ACTIONS(2550), - [anon_sym_get] = ACTIONS(2550), - [anon_sym_set] = ACTIONS(2550), - [anon_sym_declare] = ACTIONS(2550), - [anon_sym_public] = ACTIONS(2550), - [anon_sym_private] = ACTIONS(2550), - [anon_sym_protected] = ACTIONS(2550), - [anon_sym_override] = ACTIONS(2550), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_any] = ACTIONS(2550), - [anon_sym_number] = ACTIONS(2550), - [anon_sym_boolean] = ACTIONS(2550), - [anon_sym_string] = ACTIONS(2550), - [anon_sym_symbol] = ACTIONS(2550), - [anon_sym_property] = ACTIONS(2550), - [anon_sym_signal] = ACTIONS(2550), - [anon_sym_on] = ACTIONS(2550), - [anon_sym_required] = ACTIONS(2550), - [anon_sym_component] = ACTIONS(2550), - [anon_sym_abstract] = ACTIONS(2550), - [anon_sym_interface] = ACTIONS(2550), - [anon_sym_enum] = ACTIONS(2550), - }, - [784] = { - [sym_identifier] = ACTIONS(2546), - [anon_sym_export] = ACTIONS(2546), - [anon_sym_default] = ACTIONS(2546), - [anon_sym_type] = ACTIONS(2546), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_RBRACE] = ACTIONS(2548), - [anon_sym_typeof] = ACTIONS(2546), - [anon_sym_import] = ACTIONS(2546), - [anon_sym_from] = ACTIONS(2546), - [anon_sym_var] = ACTIONS(2546), - [anon_sym_let] = ACTIONS(2546), - [anon_sym_const] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2548), - [anon_sym_else] = ACTIONS(2546), - [anon_sym_if] = ACTIONS(2546), - [anon_sym_switch] = ACTIONS(2546), - [anon_sym_for] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2548), - [anon_sym_await] = ACTIONS(2546), - [anon_sym_of] = ACTIONS(2546), - [anon_sym_while] = ACTIONS(2546), - [anon_sym_do] = ACTIONS(2546), - [anon_sym_try] = ACTIONS(2546), - [anon_sym_with] = ACTIONS(2546), - [anon_sym_break] = ACTIONS(2546), - [anon_sym_continue] = ACTIONS(2546), - [anon_sym_debugger] = ACTIONS(2546), - [anon_sym_return] = ACTIONS(2546), - [anon_sym_throw] = ACTIONS(2546), - [anon_sym_SEMI] = ACTIONS(2548), - [anon_sym_case] = ACTIONS(2546), - [anon_sym_yield] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2548), - [anon_sym_LTtemplate_GT] = ACTIONS(2548), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_SLASH] = ACTIONS(2546), - [anon_sym_class] = ACTIONS(2546), - [anon_sym_async] = ACTIONS(2546), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_new] = ACTIONS(2546), - [anon_sym_PLUS] = ACTIONS(2546), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_void] = ACTIONS(2546), - [anon_sym_delete] = ACTIONS(2546), - [anon_sym_PLUS_PLUS] = ACTIONS(2548), - [anon_sym_DASH_DASH] = ACTIONS(2548), - [anon_sym_DQUOTE] = ACTIONS(2548), - [anon_sym_SQUOTE] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2548), - [sym_number] = ACTIONS(2548), - [sym_this] = ACTIONS(2546), - [sym_super] = ACTIONS(2546), - [sym_true] = ACTIONS(2546), - [sym_false] = ACTIONS(2546), - [sym_null] = ACTIONS(2546), - [sym_undefined] = ACTIONS(2546), - [anon_sym_AT] = ACTIONS(2548), - [anon_sym_static] = ACTIONS(2546), - [anon_sym_readonly] = ACTIONS(2546), - [anon_sym_get] = ACTIONS(2546), - [anon_sym_set] = ACTIONS(2546), - [anon_sym_declare] = ACTIONS(2546), - [anon_sym_public] = ACTIONS(2546), - [anon_sym_private] = ACTIONS(2546), - [anon_sym_protected] = ACTIONS(2546), - [anon_sym_override] = ACTIONS(2546), - [anon_sym_module] = ACTIONS(2546), - [anon_sym_any] = ACTIONS(2546), - [anon_sym_number] = ACTIONS(2546), - [anon_sym_boolean] = ACTIONS(2546), - [anon_sym_string] = ACTIONS(2546), - [anon_sym_symbol] = ACTIONS(2546), - [anon_sym_property] = ACTIONS(2546), - [anon_sym_signal] = ACTIONS(2546), - [anon_sym_on] = ACTIONS(2546), - [anon_sym_required] = ACTIONS(2546), - [anon_sym_component] = ACTIONS(2546), - [anon_sym_abstract] = ACTIONS(2546), - [anon_sym_interface] = ACTIONS(2546), - [anon_sym_enum] = ACTIONS(2546), - }, - [785] = { - [sym_identifier] = ACTIONS(1699), - [anon_sym_export] = ACTIONS(1699), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_type] = ACTIONS(1699), - [anon_sym_namespace] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1699), - [anon_sym_import] = ACTIONS(1699), - [anon_sym_from] = ACTIONS(1699), - [anon_sym_var] = ACTIONS(1699), - [anon_sym_let] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_of] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_do] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1699), - [anon_sym_with] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_debugger] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_throw] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_case] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_LTtemplate_GT] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_SLASH] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_async] = ACTIONS(1699), - [anon_sym_function] = ACTIONS(1699), - [anon_sym_new] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1703), - [anon_sym_void] = ACTIONS(1699), - [anon_sym_delete] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1703), - [sym_number] = ACTIONS(1703), - [sym_this] = ACTIONS(1699), - [sym_super] = ACTIONS(1699), - [sym_true] = ACTIONS(1699), - [sym_false] = ACTIONS(1699), - [sym_null] = ACTIONS(1699), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_readonly] = ACTIONS(1699), - [anon_sym_get] = ACTIONS(1699), - [anon_sym_set] = ACTIONS(1699), - [anon_sym_declare] = ACTIONS(1699), - [anon_sym_public] = ACTIONS(1699), - [anon_sym_private] = ACTIONS(1699), - [anon_sym_protected] = ACTIONS(1699), - [anon_sym_override] = ACTIONS(1699), - [anon_sym_module] = ACTIONS(1699), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_number] = ACTIONS(1699), - [anon_sym_boolean] = ACTIONS(1699), - [anon_sym_string] = ACTIONS(1699), - [anon_sym_symbol] = ACTIONS(1699), - [anon_sym_property] = ACTIONS(1699), - [anon_sym_signal] = ACTIONS(1699), - [anon_sym_on] = ACTIONS(1699), - [anon_sym_required] = ACTIONS(1699), - [anon_sym_component] = ACTIONS(1699), - [anon_sym_abstract] = ACTIONS(1699), - [anon_sym_interface] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - }, - [786] = { - [sym_identifier] = ACTIONS(2554), - [anon_sym_export] = ACTIONS(2554), - [anon_sym_default] = ACTIONS(2554), - [anon_sym_type] = ACTIONS(2554), - [anon_sym_namespace] = ACTIONS(2554), - [anon_sym_LBRACE] = ACTIONS(2556), - [anon_sym_RBRACE] = ACTIONS(2556), - [anon_sym_typeof] = ACTIONS(2554), - [anon_sym_import] = ACTIONS(2554), - [anon_sym_from] = ACTIONS(2554), - [anon_sym_var] = ACTIONS(2554), - [anon_sym_let] = ACTIONS(2554), - [anon_sym_const] = ACTIONS(2554), - [anon_sym_BANG] = ACTIONS(2556), - [anon_sym_else] = ACTIONS(2554), - [anon_sym_if] = ACTIONS(2554), - [anon_sym_switch] = ACTIONS(2554), - [anon_sym_for] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2556), - [anon_sym_await] = ACTIONS(2554), - [anon_sym_of] = ACTIONS(2554), - [anon_sym_while] = ACTIONS(2554), - [anon_sym_do] = ACTIONS(2554), - [anon_sym_try] = ACTIONS(2554), - [anon_sym_with] = ACTIONS(2554), - [anon_sym_break] = ACTIONS(2554), - [anon_sym_continue] = ACTIONS(2554), - [anon_sym_debugger] = ACTIONS(2554), - [anon_sym_return] = ACTIONS(2554), - [anon_sym_throw] = ACTIONS(2554), - [anon_sym_SEMI] = ACTIONS(2556), - [anon_sym_case] = ACTIONS(2554), - [anon_sym_yield] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(2556), - [anon_sym_LTtemplate_GT] = ACTIONS(2556), - [anon_sym_LT] = ACTIONS(2554), - [anon_sym_SLASH] = ACTIONS(2554), - [anon_sym_class] = ACTIONS(2554), - [anon_sym_async] = ACTIONS(2554), - [anon_sym_function] = ACTIONS(2554), - [anon_sym_new] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2554), - [anon_sym_DASH] = ACTIONS(2554), - [anon_sym_TILDE] = ACTIONS(2556), - [anon_sym_void] = ACTIONS(2554), - [anon_sym_delete] = ACTIONS(2554), - [anon_sym_PLUS_PLUS] = ACTIONS(2556), - [anon_sym_DASH_DASH] = ACTIONS(2556), - [anon_sym_DQUOTE] = ACTIONS(2556), - [anon_sym_SQUOTE] = ACTIONS(2556), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2556), - [sym_number] = ACTIONS(2556), - [sym_this] = ACTIONS(2554), - [sym_super] = ACTIONS(2554), - [sym_true] = ACTIONS(2554), - [sym_false] = ACTIONS(2554), - [sym_null] = ACTIONS(2554), - [sym_undefined] = ACTIONS(2554), - [anon_sym_AT] = ACTIONS(2556), - [anon_sym_static] = ACTIONS(2554), - [anon_sym_readonly] = ACTIONS(2554), - [anon_sym_get] = ACTIONS(2554), - [anon_sym_set] = ACTIONS(2554), - [anon_sym_declare] = ACTIONS(2554), - [anon_sym_public] = ACTIONS(2554), - [anon_sym_private] = ACTIONS(2554), - [anon_sym_protected] = ACTIONS(2554), - [anon_sym_override] = ACTIONS(2554), - [anon_sym_module] = ACTIONS(2554), - [anon_sym_any] = ACTIONS(2554), - [anon_sym_number] = ACTIONS(2554), - [anon_sym_boolean] = ACTIONS(2554), - [anon_sym_string] = ACTIONS(2554), - [anon_sym_symbol] = ACTIONS(2554), - [anon_sym_property] = ACTIONS(2554), - [anon_sym_signal] = ACTIONS(2554), - [anon_sym_on] = ACTIONS(2554), - [anon_sym_required] = ACTIONS(2554), - [anon_sym_component] = ACTIONS(2554), - [anon_sym_abstract] = ACTIONS(2554), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2554), - }, - [787] = { - [sym_identifier] = ACTIONS(2558), - [anon_sym_export] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2558), - [anon_sym_type] = ACTIONS(2558), - [anon_sym_namespace] = ACTIONS(2558), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_typeof] = ACTIONS(2558), - [anon_sym_import] = ACTIONS(2558), - [anon_sym_from] = ACTIONS(2558), - [anon_sym_var] = ACTIONS(2558), - [anon_sym_let] = ACTIONS(2558), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_BANG] = ACTIONS(2560), - [anon_sym_else] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_switch] = ACTIONS(2558), - [anon_sym_for] = ACTIONS(2558), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_await] = ACTIONS(2558), - [anon_sym_of] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2558), - [anon_sym_do] = ACTIONS(2558), - [anon_sym_try] = ACTIONS(2558), - [anon_sym_with] = ACTIONS(2558), - [anon_sym_break] = ACTIONS(2558), - [anon_sym_continue] = ACTIONS(2558), - [anon_sym_debugger] = ACTIONS(2558), - [anon_sym_return] = ACTIONS(2558), - [anon_sym_throw] = ACTIONS(2558), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_case] = ACTIONS(2558), - [anon_sym_yield] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2560), - [anon_sym_LTtemplate_GT] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_class] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_function] = ACTIONS(2558), - [anon_sym_new] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_void] = ACTIONS(2558), - [anon_sym_delete] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2560), - [anon_sym_DASH_DASH] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2560), - [anon_sym_SQUOTE] = ACTIONS(2560), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2560), - [sym_number] = ACTIONS(2560), - [sym_this] = ACTIONS(2558), - [sym_super] = ACTIONS(2558), - [sym_true] = ACTIONS(2558), - [sym_false] = ACTIONS(2558), - [sym_null] = ACTIONS(2558), - [sym_undefined] = ACTIONS(2558), - [anon_sym_AT] = ACTIONS(2560), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_get] = ACTIONS(2558), - [anon_sym_set] = ACTIONS(2558), - [anon_sym_declare] = ACTIONS(2558), - [anon_sym_public] = ACTIONS(2558), - [anon_sym_private] = ACTIONS(2558), - [anon_sym_protected] = ACTIONS(2558), - [anon_sym_override] = ACTIONS(2558), - [anon_sym_module] = ACTIONS(2558), - [anon_sym_any] = ACTIONS(2558), - [anon_sym_number] = ACTIONS(2558), - [anon_sym_boolean] = ACTIONS(2558), - [anon_sym_string] = ACTIONS(2558), - [anon_sym_symbol] = ACTIONS(2558), - [anon_sym_property] = ACTIONS(2558), - [anon_sym_signal] = ACTIONS(2558), - [anon_sym_on] = ACTIONS(2558), - [anon_sym_required] = ACTIONS(2558), - [anon_sym_component] = ACTIONS(2558), - [anon_sym_abstract] = ACTIONS(2558), - [anon_sym_interface] = ACTIONS(2558), - [anon_sym_enum] = ACTIONS(2558), - }, - [788] = { - [sym_identifier] = ACTIONS(2562), - [anon_sym_export] = ACTIONS(2562), - [anon_sym_default] = ACTIONS(2562), - [anon_sym_type] = ACTIONS(2562), - [anon_sym_namespace] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_RBRACE] = ACTIONS(2564), - [anon_sym_typeof] = ACTIONS(2562), - [anon_sym_import] = ACTIONS(2562), - [anon_sym_from] = ACTIONS(2562), - [anon_sym_var] = ACTIONS(2562), - [anon_sym_let] = ACTIONS(2562), - [anon_sym_const] = ACTIONS(2562), - [anon_sym_BANG] = ACTIONS(2564), - [anon_sym_else] = ACTIONS(2562), - [anon_sym_if] = ACTIONS(2562), - [anon_sym_switch] = ACTIONS(2562), - [anon_sym_for] = ACTIONS(2562), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_await] = ACTIONS(2562), - [anon_sym_of] = ACTIONS(2562), - [anon_sym_while] = ACTIONS(2562), - [anon_sym_do] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_with] = ACTIONS(2562), - [anon_sym_break] = ACTIONS(2562), - [anon_sym_continue] = ACTIONS(2562), - [anon_sym_debugger] = ACTIONS(2562), - [anon_sym_return] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2562), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_case] = ACTIONS(2562), - [anon_sym_yield] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LTtemplate_GT] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_SLASH] = ACTIONS(2562), - [anon_sym_class] = ACTIONS(2562), - [anon_sym_async] = ACTIONS(2562), - [anon_sym_function] = ACTIONS(2562), - [anon_sym_new] = ACTIONS(2562), - [anon_sym_PLUS] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_TILDE] = ACTIONS(2564), - [anon_sym_void] = ACTIONS(2562), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_PLUS_PLUS] = ACTIONS(2564), - [anon_sym_DASH_DASH] = ACTIONS(2564), - [anon_sym_DQUOTE] = ACTIONS(2564), - [anon_sym_SQUOTE] = ACTIONS(2564), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2564), - [sym_number] = ACTIONS(2564), - [sym_this] = ACTIONS(2562), - [sym_super] = ACTIONS(2562), - [sym_true] = ACTIONS(2562), - [sym_false] = ACTIONS(2562), - [sym_null] = ACTIONS(2562), - [sym_undefined] = ACTIONS(2562), - [anon_sym_AT] = ACTIONS(2564), - [anon_sym_static] = ACTIONS(2562), - [anon_sym_readonly] = ACTIONS(2562), - [anon_sym_get] = ACTIONS(2562), - [anon_sym_set] = ACTIONS(2562), - [anon_sym_declare] = ACTIONS(2562), - [anon_sym_public] = ACTIONS(2562), - [anon_sym_private] = ACTIONS(2562), - [anon_sym_protected] = ACTIONS(2562), - [anon_sym_override] = ACTIONS(2562), - [anon_sym_module] = ACTIONS(2562), - [anon_sym_any] = ACTIONS(2562), - [anon_sym_number] = ACTIONS(2562), - [anon_sym_boolean] = ACTIONS(2562), - [anon_sym_string] = ACTIONS(2562), - [anon_sym_symbol] = ACTIONS(2562), - [anon_sym_property] = ACTIONS(2562), - [anon_sym_signal] = ACTIONS(2562), - [anon_sym_on] = ACTIONS(2562), - [anon_sym_required] = ACTIONS(2562), - [anon_sym_component] = ACTIONS(2562), - [anon_sym_abstract] = ACTIONS(2562), - [anon_sym_interface] = ACTIONS(2562), - [anon_sym_enum] = ACTIONS(2562), - }, - [789] = { - [sym_identifier] = ACTIONS(2566), - [anon_sym_export] = ACTIONS(2566), - [anon_sym_default] = ACTIONS(2566), - [anon_sym_type] = ACTIONS(2566), - [anon_sym_namespace] = ACTIONS(2566), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_RBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(2566), - [anon_sym_import] = ACTIONS(2566), - [anon_sym_from] = ACTIONS(2566), - [anon_sym_var] = ACTIONS(2566), - [anon_sym_let] = ACTIONS(2566), - [anon_sym_const] = ACTIONS(2566), - [anon_sym_BANG] = ACTIONS(2568), - [anon_sym_else] = ACTIONS(2566), - [anon_sym_if] = ACTIONS(2566), - [anon_sym_switch] = ACTIONS(2566), - [anon_sym_for] = ACTIONS(2566), - [anon_sym_LPAREN] = ACTIONS(2568), - [anon_sym_await] = ACTIONS(2566), - [anon_sym_of] = ACTIONS(2566), - [anon_sym_while] = ACTIONS(2566), - [anon_sym_do] = ACTIONS(2566), - [anon_sym_try] = ACTIONS(2566), - [anon_sym_with] = ACTIONS(2566), - [anon_sym_break] = ACTIONS(2566), - [anon_sym_continue] = ACTIONS(2566), - [anon_sym_debugger] = ACTIONS(2566), - [anon_sym_return] = ACTIONS(2566), - [anon_sym_throw] = ACTIONS(2566), - [anon_sym_SEMI] = ACTIONS(2568), - [anon_sym_case] = ACTIONS(2566), - [anon_sym_yield] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(2568), - [anon_sym_LTtemplate_GT] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_SLASH] = ACTIONS(2566), - [anon_sym_class] = ACTIONS(2566), - [anon_sym_async] = ACTIONS(2566), - [anon_sym_function] = ACTIONS(2566), - [anon_sym_new] = ACTIONS(2566), - [anon_sym_PLUS] = ACTIONS(2566), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_TILDE] = ACTIONS(2568), - [anon_sym_void] = ACTIONS(2566), - [anon_sym_delete] = ACTIONS(2566), - [anon_sym_PLUS_PLUS] = ACTIONS(2568), - [anon_sym_DASH_DASH] = ACTIONS(2568), - [anon_sym_DQUOTE] = ACTIONS(2568), - [anon_sym_SQUOTE] = ACTIONS(2568), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2568), - [sym_number] = ACTIONS(2568), - [sym_this] = ACTIONS(2566), - [sym_super] = ACTIONS(2566), - [sym_true] = ACTIONS(2566), - [sym_false] = ACTIONS(2566), - [sym_null] = ACTIONS(2566), - [sym_undefined] = ACTIONS(2566), - [anon_sym_AT] = ACTIONS(2568), - [anon_sym_static] = ACTIONS(2566), - [anon_sym_readonly] = ACTIONS(2566), - [anon_sym_get] = ACTIONS(2566), - [anon_sym_set] = ACTIONS(2566), - [anon_sym_declare] = ACTIONS(2566), - [anon_sym_public] = ACTIONS(2566), - [anon_sym_private] = ACTIONS(2566), - [anon_sym_protected] = ACTIONS(2566), - [anon_sym_override] = ACTIONS(2566), - [anon_sym_module] = ACTIONS(2566), - [anon_sym_any] = ACTIONS(2566), - [anon_sym_number] = ACTIONS(2566), - [anon_sym_boolean] = ACTIONS(2566), - [anon_sym_string] = ACTIONS(2566), - [anon_sym_symbol] = ACTIONS(2566), - [anon_sym_property] = ACTIONS(2566), - [anon_sym_signal] = ACTIONS(2566), - [anon_sym_on] = ACTIONS(2566), - [anon_sym_required] = ACTIONS(2566), - [anon_sym_component] = ACTIONS(2566), - [anon_sym_abstract] = ACTIONS(2566), - [anon_sym_interface] = ACTIONS(2566), - [anon_sym_enum] = ACTIONS(2566), - }, - [790] = { - [sym_identifier] = ACTIONS(2558), - [anon_sym_export] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2558), - [anon_sym_type] = ACTIONS(2558), - [anon_sym_namespace] = ACTIONS(2558), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_typeof] = ACTIONS(2558), - [anon_sym_import] = ACTIONS(2558), - [anon_sym_from] = ACTIONS(2558), - [anon_sym_var] = ACTIONS(2558), - [anon_sym_let] = ACTIONS(2558), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_BANG] = ACTIONS(2560), - [anon_sym_else] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_switch] = ACTIONS(2558), - [anon_sym_for] = ACTIONS(2558), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_await] = ACTIONS(2558), - [anon_sym_of] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2558), - [anon_sym_do] = ACTIONS(2558), - [anon_sym_try] = ACTIONS(2558), - [anon_sym_with] = ACTIONS(2558), - [anon_sym_break] = ACTIONS(2558), - [anon_sym_continue] = ACTIONS(2558), - [anon_sym_debugger] = ACTIONS(2558), - [anon_sym_return] = ACTIONS(2558), - [anon_sym_throw] = ACTIONS(2558), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_case] = ACTIONS(2558), - [anon_sym_yield] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2560), - [anon_sym_LTtemplate_GT] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_class] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_function] = ACTIONS(2558), - [anon_sym_new] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_void] = ACTIONS(2558), - [anon_sym_delete] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2560), - [anon_sym_DASH_DASH] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2560), - [anon_sym_SQUOTE] = ACTIONS(2560), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2560), - [sym_number] = ACTIONS(2560), - [sym_this] = ACTIONS(2558), - [sym_super] = ACTIONS(2558), - [sym_true] = ACTIONS(2558), - [sym_false] = ACTIONS(2558), - [sym_null] = ACTIONS(2558), - [sym_undefined] = ACTIONS(2558), - [anon_sym_AT] = ACTIONS(2560), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_get] = ACTIONS(2558), - [anon_sym_set] = ACTIONS(2558), - [anon_sym_declare] = ACTIONS(2558), - [anon_sym_public] = ACTIONS(2558), - [anon_sym_private] = ACTIONS(2558), - [anon_sym_protected] = ACTIONS(2558), - [anon_sym_override] = ACTIONS(2558), - [anon_sym_module] = ACTIONS(2558), - [anon_sym_any] = ACTIONS(2558), - [anon_sym_number] = ACTIONS(2558), - [anon_sym_boolean] = ACTIONS(2558), - [anon_sym_string] = ACTIONS(2558), - [anon_sym_symbol] = ACTIONS(2558), - [anon_sym_property] = ACTIONS(2558), - [anon_sym_signal] = ACTIONS(2558), - [anon_sym_on] = ACTIONS(2558), - [anon_sym_required] = ACTIONS(2558), - [anon_sym_component] = ACTIONS(2558), - [anon_sym_abstract] = ACTIONS(2558), - [anon_sym_interface] = ACTIONS(2558), - [anon_sym_enum] = ACTIONS(2558), - }, - [791] = { - [sym_identifier] = ACTIONS(2570), - [anon_sym_export] = ACTIONS(2570), - [anon_sym_default] = ACTIONS(2570), - [anon_sym_type] = ACTIONS(2570), - [anon_sym_namespace] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(2570), - [anon_sym_import] = ACTIONS(2570), - [anon_sym_from] = ACTIONS(2570), - [anon_sym_var] = ACTIONS(2570), - [anon_sym_let] = ACTIONS(2570), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_BANG] = ACTIONS(2572), - [anon_sym_else] = ACTIONS(2570), - [anon_sym_if] = ACTIONS(2570), - [anon_sym_switch] = ACTIONS(2570), - [anon_sym_for] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_await] = ACTIONS(2570), - [anon_sym_of] = ACTIONS(2570), - [anon_sym_while] = ACTIONS(2570), - [anon_sym_do] = ACTIONS(2570), - [anon_sym_try] = ACTIONS(2570), - [anon_sym_with] = ACTIONS(2570), - [anon_sym_break] = ACTIONS(2570), - [anon_sym_continue] = ACTIONS(2570), - [anon_sym_debugger] = ACTIONS(2570), - [anon_sym_return] = ACTIONS(2570), - [anon_sym_throw] = ACTIONS(2570), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_case] = ACTIONS(2570), - [anon_sym_yield] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2572), - [anon_sym_LTtemplate_GT] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_SLASH] = ACTIONS(2570), - [anon_sym_class] = ACTIONS(2570), - [anon_sym_async] = ACTIONS(2570), - [anon_sym_function] = ACTIONS(2570), - [anon_sym_new] = ACTIONS(2570), - [anon_sym_PLUS] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_TILDE] = ACTIONS(2572), - [anon_sym_void] = ACTIONS(2570), - [anon_sym_delete] = ACTIONS(2570), - [anon_sym_PLUS_PLUS] = ACTIONS(2572), - [anon_sym_DASH_DASH] = ACTIONS(2572), - [anon_sym_DQUOTE] = ACTIONS(2572), - [anon_sym_SQUOTE] = ACTIONS(2572), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2572), - [sym_number] = ACTIONS(2572), - [sym_this] = ACTIONS(2570), - [sym_super] = ACTIONS(2570), - [sym_true] = ACTIONS(2570), - [sym_false] = ACTIONS(2570), - [sym_null] = ACTIONS(2570), - [sym_undefined] = ACTIONS(2570), - [anon_sym_AT] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2570), - [anon_sym_readonly] = ACTIONS(2570), - [anon_sym_get] = ACTIONS(2570), - [anon_sym_set] = ACTIONS(2570), - [anon_sym_declare] = ACTIONS(2570), - [anon_sym_public] = ACTIONS(2570), - [anon_sym_private] = ACTIONS(2570), - [anon_sym_protected] = ACTIONS(2570), - [anon_sym_override] = ACTIONS(2570), - [anon_sym_module] = ACTIONS(2570), - [anon_sym_any] = ACTIONS(2570), - [anon_sym_number] = ACTIONS(2570), - [anon_sym_boolean] = ACTIONS(2570), - [anon_sym_string] = ACTIONS(2570), - [anon_sym_symbol] = ACTIONS(2570), - [anon_sym_property] = ACTIONS(2570), - [anon_sym_signal] = ACTIONS(2570), - [anon_sym_on] = ACTIONS(2570), - [anon_sym_required] = ACTIONS(2570), - [anon_sym_component] = ACTIONS(2570), - [anon_sym_abstract] = ACTIONS(2570), - [anon_sym_interface] = ACTIONS(2570), - [anon_sym_enum] = ACTIONS(2570), - }, - [792] = { - [sym_identifier] = ACTIONS(2574), - [anon_sym_export] = ACTIONS(2574), - [anon_sym_default] = ACTIONS(2574), - [anon_sym_type] = ACTIONS(2574), - [anon_sym_namespace] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_RBRACE] = ACTIONS(2576), - [anon_sym_typeof] = ACTIONS(2574), - [anon_sym_import] = ACTIONS(2574), - [anon_sym_from] = ACTIONS(2574), - [anon_sym_var] = ACTIONS(2574), - [anon_sym_let] = ACTIONS(2574), - [anon_sym_const] = ACTIONS(2574), - [anon_sym_BANG] = ACTIONS(2576), - [anon_sym_else] = ACTIONS(2574), - [anon_sym_if] = ACTIONS(2574), - [anon_sym_switch] = ACTIONS(2574), - [anon_sym_for] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2576), - [anon_sym_await] = ACTIONS(2574), - [anon_sym_of] = ACTIONS(2574), - [anon_sym_while] = ACTIONS(2574), - [anon_sym_do] = ACTIONS(2574), - [anon_sym_try] = ACTIONS(2574), - [anon_sym_with] = ACTIONS(2574), - [anon_sym_break] = ACTIONS(2574), - [anon_sym_continue] = ACTIONS(2574), - [anon_sym_debugger] = ACTIONS(2574), - [anon_sym_return] = ACTIONS(2574), - [anon_sym_throw] = ACTIONS(2574), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_case] = ACTIONS(2574), - [anon_sym_yield] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2576), - [anon_sym_LTtemplate_GT] = ACTIONS(2576), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_SLASH] = ACTIONS(2574), - [anon_sym_class] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_function] = ACTIONS(2574), - [anon_sym_new] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_TILDE] = ACTIONS(2576), - [anon_sym_void] = ACTIONS(2574), - [anon_sym_delete] = ACTIONS(2574), - [anon_sym_PLUS_PLUS] = ACTIONS(2576), - [anon_sym_DASH_DASH] = ACTIONS(2576), - [anon_sym_DQUOTE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2576), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2576), - [sym_number] = ACTIONS(2576), - [sym_this] = ACTIONS(2574), - [sym_super] = ACTIONS(2574), - [sym_true] = ACTIONS(2574), - [sym_false] = ACTIONS(2574), - [sym_null] = ACTIONS(2574), - [sym_undefined] = ACTIONS(2574), - [anon_sym_AT] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2574), - [anon_sym_readonly] = ACTIONS(2574), - [anon_sym_get] = ACTIONS(2574), - [anon_sym_set] = ACTIONS(2574), - [anon_sym_declare] = ACTIONS(2574), - [anon_sym_public] = ACTIONS(2574), - [anon_sym_private] = ACTIONS(2574), - [anon_sym_protected] = ACTIONS(2574), - [anon_sym_override] = ACTIONS(2574), - [anon_sym_module] = ACTIONS(2574), - [anon_sym_any] = ACTIONS(2574), - [anon_sym_number] = ACTIONS(2574), - [anon_sym_boolean] = ACTIONS(2574), - [anon_sym_string] = ACTIONS(2574), - [anon_sym_symbol] = ACTIONS(2574), - [anon_sym_property] = ACTIONS(2574), - [anon_sym_signal] = ACTIONS(2574), - [anon_sym_on] = ACTIONS(2574), - [anon_sym_required] = ACTIONS(2574), - [anon_sym_component] = ACTIONS(2574), - [anon_sym_abstract] = ACTIONS(2574), - [anon_sym_interface] = ACTIONS(2574), - [anon_sym_enum] = ACTIONS(2574), - }, - [793] = { - [sym_identifier] = ACTIONS(2558), - [anon_sym_export] = ACTIONS(2558), - [anon_sym_default] = ACTIONS(2558), - [anon_sym_type] = ACTIONS(2558), - [anon_sym_namespace] = ACTIONS(2558), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_typeof] = ACTIONS(2558), - [anon_sym_import] = ACTIONS(2558), - [anon_sym_from] = ACTIONS(2558), - [anon_sym_var] = ACTIONS(2558), - [anon_sym_let] = ACTIONS(2558), - [anon_sym_const] = ACTIONS(2558), - [anon_sym_BANG] = ACTIONS(2560), - [anon_sym_else] = ACTIONS(2558), - [anon_sym_if] = ACTIONS(2558), - [anon_sym_switch] = ACTIONS(2558), - [anon_sym_for] = ACTIONS(2558), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_await] = ACTIONS(2558), - [anon_sym_of] = ACTIONS(2558), - [anon_sym_while] = ACTIONS(2558), - [anon_sym_do] = ACTIONS(2558), - [anon_sym_try] = ACTIONS(2558), - [anon_sym_with] = ACTIONS(2558), - [anon_sym_break] = ACTIONS(2558), - [anon_sym_continue] = ACTIONS(2558), - [anon_sym_debugger] = ACTIONS(2558), - [anon_sym_return] = ACTIONS(2558), - [anon_sym_throw] = ACTIONS(2558), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_case] = ACTIONS(2558), - [anon_sym_yield] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2560), - [anon_sym_LTtemplate_GT] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_SLASH] = ACTIONS(2558), - [anon_sym_class] = ACTIONS(2558), - [anon_sym_async] = ACTIONS(2558), - [anon_sym_function] = ACTIONS(2558), - [anon_sym_new] = ACTIONS(2558), - [anon_sym_PLUS] = ACTIONS(2558), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_void] = ACTIONS(2558), - [anon_sym_delete] = ACTIONS(2558), - [anon_sym_PLUS_PLUS] = ACTIONS(2560), - [anon_sym_DASH_DASH] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2560), - [anon_sym_SQUOTE] = ACTIONS(2560), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2560), - [sym_number] = ACTIONS(2560), - [sym_this] = ACTIONS(2558), - [sym_super] = ACTIONS(2558), - [sym_true] = ACTIONS(2558), - [sym_false] = ACTIONS(2558), - [sym_null] = ACTIONS(2558), - [sym_undefined] = ACTIONS(2558), - [anon_sym_AT] = ACTIONS(2560), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_get] = ACTIONS(2558), - [anon_sym_set] = ACTIONS(2558), - [anon_sym_declare] = ACTIONS(2558), - [anon_sym_public] = ACTIONS(2558), - [anon_sym_private] = ACTIONS(2558), - [anon_sym_protected] = ACTIONS(2558), - [anon_sym_override] = ACTIONS(2558), - [anon_sym_module] = ACTIONS(2558), - [anon_sym_any] = ACTIONS(2558), - [anon_sym_number] = ACTIONS(2558), - [anon_sym_boolean] = ACTIONS(2558), - [anon_sym_string] = ACTIONS(2558), - [anon_sym_symbol] = ACTIONS(2558), - [anon_sym_property] = ACTIONS(2558), - [anon_sym_signal] = ACTIONS(2558), - [anon_sym_on] = ACTIONS(2558), - [anon_sym_required] = ACTIONS(2558), - [anon_sym_component] = ACTIONS(2558), - [anon_sym_abstract] = ACTIONS(2558), - [anon_sym_interface] = ACTIONS(2558), - [anon_sym_enum] = ACTIONS(2558), - }, - [794] = { - [sym_identifier] = ACTIONS(2578), - [anon_sym_export] = ACTIONS(2578), - [anon_sym_default] = ACTIONS(2578), - [anon_sym_type] = ACTIONS(2578), - [anon_sym_namespace] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2580), - [anon_sym_typeof] = ACTIONS(2578), - [anon_sym_import] = ACTIONS(2578), - [anon_sym_from] = ACTIONS(2578), - [anon_sym_var] = ACTIONS(2578), - [anon_sym_let] = ACTIONS(2578), - [anon_sym_const] = ACTIONS(2578), - [anon_sym_BANG] = ACTIONS(2580), - [anon_sym_else] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2578), - [anon_sym_switch] = ACTIONS(2578), - [anon_sym_for] = ACTIONS(2578), - [anon_sym_LPAREN] = ACTIONS(2580), - [anon_sym_await] = ACTIONS(2578), - [anon_sym_of] = ACTIONS(2578), - [anon_sym_while] = ACTIONS(2578), - [anon_sym_do] = ACTIONS(2578), - [anon_sym_try] = ACTIONS(2578), - [anon_sym_with] = ACTIONS(2578), - [anon_sym_break] = ACTIONS(2578), - [anon_sym_continue] = ACTIONS(2578), - [anon_sym_debugger] = ACTIONS(2578), - [anon_sym_return] = ACTIONS(2578), - [anon_sym_throw] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_case] = ACTIONS(2578), - [anon_sym_yield] = ACTIONS(2578), - [anon_sym_LBRACK] = ACTIONS(2580), - [anon_sym_LTtemplate_GT] = ACTIONS(2580), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_SLASH] = ACTIONS(2578), - [anon_sym_class] = ACTIONS(2578), - [anon_sym_async] = ACTIONS(2578), - [anon_sym_function] = ACTIONS(2578), - [anon_sym_new] = ACTIONS(2578), - [anon_sym_PLUS] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_TILDE] = ACTIONS(2580), - [anon_sym_void] = ACTIONS(2578), - [anon_sym_delete] = ACTIONS(2578), - [anon_sym_PLUS_PLUS] = ACTIONS(2580), - [anon_sym_DASH_DASH] = ACTIONS(2580), - [anon_sym_DQUOTE] = ACTIONS(2580), - [anon_sym_SQUOTE] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2580), - [sym_number] = ACTIONS(2580), - [sym_this] = ACTIONS(2578), - [sym_super] = ACTIONS(2578), - [sym_true] = ACTIONS(2578), - [sym_false] = ACTIONS(2578), - [sym_null] = ACTIONS(2578), - [sym_undefined] = ACTIONS(2578), - [anon_sym_AT] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2578), - [anon_sym_readonly] = ACTIONS(2578), - [anon_sym_get] = ACTIONS(2578), - [anon_sym_set] = ACTIONS(2578), - [anon_sym_declare] = ACTIONS(2578), - [anon_sym_public] = ACTIONS(2578), - [anon_sym_private] = ACTIONS(2578), - [anon_sym_protected] = ACTIONS(2578), - [anon_sym_override] = ACTIONS(2578), - [anon_sym_module] = ACTIONS(2578), - [anon_sym_any] = ACTIONS(2578), - [anon_sym_number] = ACTIONS(2578), - [anon_sym_boolean] = ACTIONS(2578), - [anon_sym_string] = ACTIONS(2578), - [anon_sym_symbol] = ACTIONS(2578), - [anon_sym_property] = ACTIONS(2578), - [anon_sym_signal] = ACTIONS(2578), - [anon_sym_on] = ACTIONS(2578), - [anon_sym_required] = ACTIONS(2578), - [anon_sym_component] = ACTIONS(2578), - [anon_sym_abstract] = ACTIONS(2578), - [anon_sym_interface] = ACTIONS(2578), - [anon_sym_enum] = ACTIONS(2578), - }, - [795] = { - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_type] = ACTIONS(1529), - [anon_sym_namespace] = ACTIONS(1529), - [anon_sym_LBRACE] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_typeof] = ACTIONS(1529), - [anon_sym_import] = ACTIONS(1529), - [anon_sym_from] = ACTIONS(1529), - [anon_sym_var] = ACTIONS(1529), - [anon_sym_let] = ACTIONS(1529), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1531), - [anon_sym_else] = ACTIONS(1529), - [anon_sym_if] = ACTIONS(1529), - [anon_sym_switch] = ACTIONS(1529), - [anon_sym_for] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_await] = ACTIONS(1529), - [anon_sym_of] = ACTIONS(1529), - [anon_sym_while] = ACTIONS(1529), - [anon_sym_do] = ACTIONS(1529), - [anon_sym_try] = ACTIONS(1529), - [anon_sym_with] = ACTIONS(1529), - [anon_sym_break] = ACTIONS(1529), - [anon_sym_continue] = ACTIONS(1529), - [anon_sym_debugger] = ACTIONS(1529), - [anon_sym_return] = ACTIONS(1529), - [anon_sym_throw] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_case] = ACTIONS(1529), - [anon_sym_yield] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_LTtemplate_GT] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_SLASH] = ACTIONS(1529), - [anon_sym_class] = ACTIONS(1529), - [anon_sym_async] = ACTIONS(1529), - [anon_sym_function] = ACTIONS(1529), - [anon_sym_new] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1531), - [anon_sym_void] = ACTIONS(1529), - [anon_sym_delete] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1531), - [anon_sym_SQUOTE] = ACTIONS(1531), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1531), - [sym_number] = ACTIONS(1531), - [sym_this] = ACTIONS(1529), - [sym_super] = ACTIONS(1529), - [sym_true] = ACTIONS(1529), - [sym_false] = ACTIONS(1529), - [sym_null] = ACTIONS(1529), - [sym_undefined] = ACTIONS(1529), - [anon_sym_AT] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(1529), - [anon_sym_get] = ACTIONS(1529), - [anon_sym_set] = ACTIONS(1529), - [anon_sym_declare] = ACTIONS(1529), - [anon_sym_public] = ACTIONS(1529), - [anon_sym_private] = ACTIONS(1529), - [anon_sym_protected] = ACTIONS(1529), - [anon_sym_override] = ACTIONS(1529), - [anon_sym_module] = ACTIONS(1529), - [anon_sym_any] = ACTIONS(1529), - [anon_sym_number] = ACTIONS(1529), - [anon_sym_boolean] = ACTIONS(1529), - [anon_sym_string] = ACTIONS(1529), - [anon_sym_symbol] = ACTIONS(1529), - [anon_sym_property] = ACTIONS(1529), - [anon_sym_signal] = ACTIONS(1529), - [anon_sym_on] = ACTIONS(1529), - [anon_sym_required] = ACTIONS(1529), - [anon_sym_component] = ACTIONS(1529), - [anon_sym_abstract] = ACTIONS(1529), - [anon_sym_interface] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - }, - [796] = { - [sym_identifier] = ACTIONS(2582), - [anon_sym_export] = ACTIONS(2582), - [anon_sym_default] = ACTIONS(2582), - [anon_sym_type] = ACTIONS(2582), - [anon_sym_namespace] = ACTIONS(2582), - [anon_sym_LBRACE] = ACTIONS(2584), - [anon_sym_RBRACE] = ACTIONS(2584), - [anon_sym_typeof] = ACTIONS(2582), - [anon_sym_import] = ACTIONS(2582), - [anon_sym_from] = ACTIONS(2582), - [anon_sym_var] = ACTIONS(2582), - [anon_sym_let] = ACTIONS(2582), - [anon_sym_const] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2584), - [anon_sym_else] = ACTIONS(2582), - [anon_sym_if] = ACTIONS(2582), - [anon_sym_switch] = ACTIONS(2582), - [anon_sym_for] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(2584), - [anon_sym_await] = ACTIONS(2582), - [anon_sym_of] = ACTIONS(2582), - [anon_sym_while] = ACTIONS(2582), - [anon_sym_do] = ACTIONS(2582), - [anon_sym_try] = ACTIONS(2582), - [anon_sym_with] = ACTIONS(2582), - [anon_sym_break] = ACTIONS(2582), - [anon_sym_continue] = ACTIONS(2582), - [anon_sym_debugger] = ACTIONS(2582), - [anon_sym_return] = ACTIONS(2582), - [anon_sym_throw] = ACTIONS(2582), - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_case] = ACTIONS(2582), - [anon_sym_yield] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2584), - [anon_sym_LTtemplate_GT] = ACTIONS(2584), - [anon_sym_LT] = ACTIONS(2582), - [anon_sym_SLASH] = ACTIONS(2582), - [anon_sym_class] = ACTIONS(2582), - [anon_sym_async] = ACTIONS(2582), - [anon_sym_function] = ACTIONS(2582), - [anon_sym_new] = ACTIONS(2582), - [anon_sym_PLUS] = ACTIONS(2582), - [anon_sym_DASH] = ACTIONS(2582), - [anon_sym_TILDE] = ACTIONS(2584), - [anon_sym_void] = ACTIONS(2582), - [anon_sym_delete] = ACTIONS(2582), - [anon_sym_PLUS_PLUS] = ACTIONS(2584), - [anon_sym_DASH_DASH] = ACTIONS(2584), - [anon_sym_DQUOTE] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2584), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2584), - [sym_number] = ACTIONS(2584), - [sym_this] = ACTIONS(2582), - [sym_super] = ACTIONS(2582), - [sym_true] = ACTIONS(2582), - [sym_false] = ACTIONS(2582), - [sym_null] = ACTIONS(2582), - [sym_undefined] = ACTIONS(2582), - [anon_sym_AT] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_readonly] = ACTIONS(2582), - [anon_sym_get] = ACTIONS(2582), - [anon_sym_set] = ACTIONS(2582), - [anon_sym_declare] = ACTIONS(2582), - [anon_sym_public] = ACTIONS(2582), - [anon_sym_private] = ACTIONS(2582), - [anon_sym_protected] = ACTIONS(2582), - [anon_sym_override] = ACTIONS(2582), - [anon_sym_module] = ACTIONS(2582), - [anon_sym_any] = ACTIONS(2582), - [anon_sym_number] = ACTIONS(2582), - [anon_sym_boolean] = ACTIONS(2582), - [anon_sym_string] = ACTIONS(2582), - [anon_sym_symbol] = ACTIONS(2582), - [anon_sym_property] = ACTIONS(2582), - [anon_sym_signal] = ACTIONS(2582), - [anon_sym_on] = ACTIONS(2582), - [anon_sym_required] = ACTIONS(2582), - [anon_sym_component] = ACTIONS(2582), - [anon_sym_abstract] = ACTIONS(2582), - [anon_sym_interface] = ACTIONS(2582), - [anon_sym_enum] = ACTIONS(2582), - }, - [797] = { - [sym_identifier] = ACTIONS(2586), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_default] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_namespace] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2588), - [anon_sym_RBRACE] = ACTIONS(2588), - [anon_sym_typeof] = ACTIONS(2586), - [anon_sym_import] = ACTIONS(2586), - [anon_sym_from] = ACTIONS(2586), - [anon_sym_var] = ACTIONS(2586), - [anon_sym_let] = ACTIONS(2586), - [anon_sym_const] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2588), - [anon_sym_else] = ACTIONS(2586), - [anon_sym_if] = ACTIONS(2586), - [anon_sym_switch] = ACTIONS(2586), - [anon_sym_for] = ACTIONS(2586), - [anon_sym_LPAREN] = ACTIONS(2588), - [anon_sym_await] = ACTIONS(2586), - [anon_sym_of] = ACTIONS(2586), - [anon_sym_while] = ACTIONS(2586), - [anon_sym_do] = ACTIONS(2586), - [anon_sym_try] = ACTIONS(2586), - [anon_sym_with] = ACTIONS(2586), - [anon_sym_break] = ACTIONS(2586), - [anon_sym_continue] = ACTIONS(2586), - [anon_sym_debugger] = ACTIONS(2586), - [anon_sym_return] = ACTIONS(2586), - [anon_sym_throw] = ACTIONS(2586), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_case] = ACTIONS(2586), - [anon_sym_yield] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_LTtemplate_GT] = ACTIONS(2588), - [anon_sym_LT] = ACTIONS(2586), - [anon_sym_SLASH] = ACTIONS(2586), - [anon_sym_class] = ACTIONS(2586), - [anon_sym_async] = ACTIONS(2586), - [anon_sym_function] = ACTIONS(2586), - [anon_sym_new] = ACTIONS(2586), - [anon_sym_PLUS] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_TILDE] = ACTIONS(2588), - [anon_sym_void] = ACTIONS(2586), - [anon_sym_delete] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2588), - [anon_sym_DQUOTE] = ACTIONS(2588), - [anon_sym_SQUOTE] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2588), - [sym_number] = ACTIONS(2588), - [sym_this] = ACTIONS(2586), - [sym_super] = ACTIONS(2586), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_AT] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2586), - [anon_sym_get] = ACTIONS(2586), - [anon_sym_set] = ACTIONS(2586), - [anon_sym_declare] = ACTIONS(2586), - [anon_sym_public] = ACTIONS(2586), - [anon_sym_private] = ACTIONS(2586), - [anon_sym_protected] = ACTIONS(2586), - [anon_sym_override] = ACTIONS(2586), - [anon_sym_module] = ACTIONS(2586), - [anon_sym_any] = ACTIONS(2586), - [anon_sym_number] = ACTIONS(2586), - [anon_sym_boolean] = ACTIONS(2586), - [anon_sym_string] = ACTIONS(2586), - [anon_sym_symbol] = ACTIONS(2586), - [anon_sym_property] = ACTIONS(2586), - [anon_sym_signal] = ACTIONS(2586), - [anon_sym_on] = ACTIONS(2586), - [anon_sym_required] = ACTIONS(2586), - [anon_sym_component] = ACTIONS(2586), - [anon_sym_abstract] = ACTIONS(2586), - [anon_sym_interface] = ACTIONS(2586), - [anon_sym_enum] = ACTIONS(2586), - }, - [798] = { - [sym_identifier] = ACTIONS(2590), - [anon_sym_export] = ACTIONS(2590), - [anon_sym_default] = ACTIONS(2590), - [anon_sym_type] = ACTIONS(2590), - [anon_sym_namespace] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_RBRACE] = ACTIONS(2592), - [anon_sym_typeof] = ACTIONS(2590), - [anon_sym_import] = ACTIONS(2590), - [anon_sym_from] = ACTIONS(2590), - [anon_sym_var] = ACTIONS(2590), - [anon_sym_let] = ACTIONS(2590), - [anon_sym_const] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2592), - [anon_sym_else] = ACTIONS(2590), - [anon_sym_if] = ACTIONS(2590), - [anon_sym_switch] = ACTIONS(2590), - [anon_sym_for] = ACTIONS(2590), - [anon_sym_LPAREN] = ACTIONS(2592), - [anon_sym_await] = ACTIONS(2590), - [anon_sym_of] = ACTIONS(2590), - [anon_sym_while] = ACTIONS(2590), - [anon_sym_do] = ACTIONS(2590), - [anon_sym_try] = ACTIONS(2590), - [anon_sym_with] = ACTIONS(2590), - [anon_sym_break] = ACTIONS(2590), - [anon_sym_continue] = ACTIONS(2590), - [anon_sym_debugger] = ACTIONS(2590), - [anon_sym_return] = ACTIONS(2590), - [anon_sym_throw] = ACTIONS(2590), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym_case] = ACTIONS(2590), - [anon_sym_yield] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2592), - [anon_sym_LTtemplate_GT] = ACTIONS(2592), - [anon_sym_LT] = ACTIONS(2590), - [anon_sym_SLASH] = ACTIONS(2590), - [anon_sym_class] = ACTIONS(2590), - [anon_sym_async] = ACTIONS(2590), - [anon_sym_function] = ACTIONS(2590), - [anon_sym_new] = ACTIONS(2590), - [anon_sym_PLUS] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2590), - [anon_sym_TILDE] = ACTIONS(2592), - [anon_sym_void] = ACTIONS(2590), - [anon_sym_delete] = ACTIONS(2590), - [anon_sym_PLUS_PLUS] = ACTIONS(2592), - [anon_sym_DASH_DASH] = ACTIONS(2592), - [anon_sym_DQUOTE] = ACTIONS(2592), - [anon_sym_SQUOTE] = ACTIONS(2592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2592), - [sym_number] = ACTIONS(2592), - [sym_this] = ACTIONS(2590), - [sym_super] = ACTIONS(2590), - [sym_true] = ACTIONS(2590), - [sym_false] = ACTIONS(2590), - [sym_null] = ACTIONS(2590), - [sym_undefined] = ACTIONS(2590), - [anon_sym_AT] = ACTIONS(2592), - [anon_sym_static] = ACTIONS(2590), - [anon_sym_readonly] = ACTIONS(2590), - [anon_sym_get] = ACTIONS(2590), - [anon_sym_set] = ACTIONS(2590), - [anon_sym_declare] = ACTIONS(2590), - [anon_sym_public] = ACTIONS(2590), - [anon_sym_private] = ACTIONS(2590), - [anon_sym_protected] = ACTIONS(2590), - [anon_sym_override] = ACTIONS(2590), - [anon_sym_module] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2590), - [anon_sym_number] = ACTIONS(2590), - [anon_sym_boolean] = ACTIONS(2590), - [anon_sym_string] = ACTIONS(2590), - [anon_sym_symbol] = ACTIONS(2590), - [anon_sym_property] = ACTIONS(2590), - [anon_sym_signal] = ACTIONS(2590), - [anon_sym_on] = ACTIONS(2590), - [anon_sym_required] = ACTIONS(2590), - [anon_sym_component] = ACTIONS(2590), - [anon_sym_abstract] = ACTIONS(2590), - [anon_sym_interface] = ACTIONS(2590), - [anon_sym_enum] = ACTIONS(2590), - }, - [799] = { - [sym_identifier] = ACTIONS(1597), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_typeof] = ACTIONS(1597), - [anon_sym_import] = ACTIONS(1597), - [anon_sym_from] = ACTIONS(1597), - [anon_sym_var] = ACTIONS(1597), - [anon_sym_let] = ACTIONS(1597), - [anon_sym_const] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1599), - [anon_sym_else] = ACTIONS(1597), - [anon_sym_if] = ACTIONS(1597), - [anon_sym_switch] = ACTIONS(1597), - [anon_sym_for] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_of] = ACTIONS(1597), - [anon_sym_while] = ACTIONS(1597), - [anon_sym_do] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1597), - [anon_sym_with] = ACTIONS(1597), - [anon_sym_break] = ACTIONS(1597), - [anon_sym_continue] = ACTIONS(1597), - [anon_sym_debugger] = ACTIONS(1597), - [anon_sym_return] = ACTIONS(1597), - [anon_sym_throw] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_case] = ACTIONS(1597), - [anon_sym_yield] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LTtemplate_GT] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1597), - [anon_sym_SLASH] = ACTIONS(1597), - [anon_sym_class] = ACTIONS(1597), - [anon_sym_async] = ACTIONS(1597), - [anon_sym_function] = ACTIONS(1597), - [anon_sym_new] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_TILDE] = ACTIONS(1599), - [anon_sym_void] = ACTIONS(1597), - [anon_sym_delete] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [anon_sym_DQUOTE] = ACTIONS(1599), - [anon_sym_SQUOTE] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1599), - [sym_number] = ACTIONS(1599), - [sym_this] = ACTIONS(1597), - [sym_super] = ACTIONS(1597), - [sym_true] = ACTIONS(1597), - [sym_false] = ACTIONS(1597), - [sym_null] = ACTIONS(1597), - [sym_undefined] = ACTIONS(1597), - [anon_sym_AT] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_property] = ACTIONS(1597), - [anon_sym_signal] = ACTIONS(1597), - [anon_sym_on] = ACTIONS(1597), - [anon_sym_required] = ACTIONS(1597), - [anon_sym_component] = ACTIONS(1597), - [anon_sym_abstract] = ACTIONS(1597), - [anon_sym_interface] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - }, - [800] = { - [sym_identifier] = ACTIONS(2594), - [anon_sym_export] = ACTIONS(2594), - [anon_sym_default] = ACTIONS(2594), - [anon_sym_type] = ACTIONS(2594), - [anon_sym_namespace] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_typeof] = ACTIONS(2594), - [anon_sym_import] = ACTIONS(2594), - [anon_sym_from] = ACTIONS(2594), - [anon_sym_var] = ACTIONS(2594), - [anon_sym_let] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_else] = ACTIONS(2594), - [anon_sym_if] = ACTIONS(2594), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_await] = ACTIONS(2594), - [anon_sym_of] = ACTIONS(2594), - [anon_sym_while] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(2594), - [anon_sym_try] = ACTIONS(2594), - [anon_sym_with] = ACTIONS(2594), - [anon_sym_break] = ACTIONS(2594), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_debugger] = ACTIONS(2594), - [anon_sym_return] = ACTIONS(2594), - [anon_sym_throw] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_case] = ACTIONS(2594), - [anon_sym_yield] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2596), - [anon_sym_LTtemplate_GT] = ACTIONS(2596), - [anon_sym_LT] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(2594), - [anon_sym_class] = ACTIONS(2594), - [anon_sym_async] = ACTIONS(2594), - [anon_sym_function] = ACTIONS(2594), - [anon_sym_new] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_void] = ACTIONS(2594), - [anon_sym_delete] = ACTIONS(2594), - [anon_sym_PLUS_PLUS] = ACTIONS(2596), - [anon_sym_DASH_DASH] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2596), - [sym_number] = ACTIONS(2596), - [sym_this] = ACTIONS(2594), - [sym_super] = ACTIONS(2594), - [sym_true] = ACTIONS(2594), - [sym_false] = ACTIONS(2594), - [sym_null] = ACTIONS(2594), - [sym_undefined] = ACTIONS(2594), - [anon_sym_AT] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_readonly] = ACTIONS(2594), - [anon_sym_get] = ACTIONS(2594), - [anon_sym_set] = ACTIONS(2594), - [anon_sym_declare] = ACTIONS(2594), - [anon_sym_public] = ACTIONS(2594), - [anon_sym_private] = ACTIONS(2594), - [anon_sym_protected] = ACTIONS(2594), - [anon_sym_override] = ACTIONS(2594), - [anon_sym_module] = ACTIONS(2594), - [anon_sym_any] = ACTIONS(2594), - [anon_sym_number] = ACTIONS(2594), - [anon_sym_boolean] = ACTIONS(2594), - [anon_sym_string] = ACTIONS(2594), - [anon_sym_symbol] = ACTIONS(2594), - [anon_sym_property] = ACTIONS(2594), - [anon_sym_signal] = ACTIONS(2594), - [anon_sym_on] = ACTIONS(2594), - [anon_sym_required] = ACTIONS(2594), - [anon_sym_component] = ACTIONS(2594), - [anon_sym_abstract] = ACTIONS(2594), - [anon_sym_interface] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), - }, - [801] = { - [sym_identifier] = ACTIONS(2598), - [anon_sym_export] = ACTIONS(2598), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_type] = ACTIONS(2598), - [anon_sym_namespace] = ACTIONS(2598), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_RBRACE] = ACTIONS(2600), - [anon_sym_typeof] = ACTIONS(2598), - [anon_sym_import] = ACTIONS(2598), - [anon_sym_from] = ACTIONS(2598), - [anon_sym_var] = ACTIONS(2598), - [anon_sym_let] = ACTIONS(2598), - [anon_sym_const] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(2600), - [anon_sym_else] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2598), - [anon_sym_switch] = ACTIONS(2598), - [anon_sym_for] = ACTIONS(2598), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_await] = ACTIONS(2598), - [anon_sym_of] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2598), - [anon_sym_do] = ACTIONS(2598), - [anon_sym_try] = ACTIONS(2598), - [anon_sym_with] = ACTIONS(2598), - [anon_sym_break] = ACTIONS(2598), - [anon_sym_continue] = ACTIONS(2598), - [anon_sym_debugger] = ACTIONS(2598), - [anon_sym_return] = ACTIONS(2598), - [anon_sym_throw] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(2600), - [anon_sym_case] = ACTIONS(2598), - [anon_sym_yield] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_LTtemplate_GT] = ACTIONS(2600), - [anon_sym_LT] = ACTIONS(2598), - [anon_sym_SLASH] = ACTIONS(2598), - [anon_sym_class] = ACTIONS(2598), - [anon_sym_async] = ACTIONS(2598), - [anon_sym_function] = ACTIONS(2598), - [anon_sym_new] = ACTIONS(2598), - [anon_sym_PLUS] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(2598), - [anon_sym_TILDE] = ACTIONS(2600), - [anon_sym_void] = ACTIONS(2598), - [anon_sym_delete] = ACTIONS(2598), - [anon_sym_PLUS_PLUS] = ACTIONS(2600), - [anon_sym_DASH_DASH] = ACTIONS(2600), - [anon_sym_DQUOTE] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2600), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2600), - [sym_number] = ACTIONS(2600), - [sym_this] = ACTIONS(2598), - [sym_super] = ACTIONS(2598), - [sym_true] = ACTIONS(2598), - [sym_false] = ACTIONS(2598), - [sym_null] = ACTIONS(2598), - [sym_undefined] = ACTIONS(2598), - [anon_sym_AT] = ACTIONS(2600), - [anon_sym_static] = ACTIONS(2598), - [anon_sym_readonly] = ACTIONS(2598), - [anon_sym_get] = ACTIONS(2598), - [anon_sym_set] = ACTIONS(2598), - [anon_sym_declare] = ACTIONS(2598), - [anon_sym_public] = ACTIONS(2598), - [anon_sym_private] = ACTIONS(2598), - [anon_sym_protected] = ACTIONS(2598), - [anon_sym_override] = ACTIONS(2598), - [anon_sym_module] = ACTIONS(2598), - [anon_sym_any] = ACTIONS(2598), - [anon_sym_number] = ACTIONS(2598), - [anon_sym_boolean] = ACTIONS(2598), - [anon_sym_string] = ACTIONS(2598), - [anon_sym_symbol] = ACTIONS(2598), - [anon_sym_property] = ACTIONS(2598), - [anon_sym_signal] = ACTIONS(2598), - [anon_sym_on] = ACTIONS(2598), - [anon_sym_required] = ACTIONS(2598), - [anon_sym_component] = ACTIONS(2598), - [anon_sym_abstract] = ACTIONS(2598), - [anon_sym_interface] = ACTIONS(2598), - [anon_sym_enum] = ACTIONS(2598), - }, - [802] = { - [sym_identifier] = ACTIONS(1699), - [anon_sym_export] = ACTIONS(1699), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_type] = ACTIONS(1699), - [anon_sym_namespace] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_typeof] = ACTIONS(1699), - [anon_sym_import] = ACTIONS(1699), - [anon_sym_from] = ACTIONS(1699), - [anon_sym_var] = ACTIONS(1699), - [anon_sym_let] = ACTIONS(1699), - [anon_sym_const] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_else] = ACTIONS(1699), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1699), - [anon_sym_for] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_of] = ACTIONS(1699), - [anon_sym_while] = ACTIONS(1699), - [anon_sym_do] = ACTIONS(1699), - [anon_sym_try] = ACTIONS(1699), - [anon_sym_with] = ACTIONS(1699), - [anon_sym_break] = ACTIONS(1699), - [anon_sym_continue] = ACTIONS(1699), - [anon_sym_debugger] = ACTIONS(1699), - [anon_sym_return] = ACTIONS(1699), - [anon_sym_throw] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_case] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_LTtemplate_GT] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_SLASH] = ACTIONS(1699), - [anon_sym_class] = ACTIONS(1699), - [anon_sym_async] = ACTIONS(1699), - [anon_sym_function] = ACTIONS(1699), - [anon_sym_new] = ACTIONS(1699), - [anon_sym_PLUS] = ACTIONS(1699), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1703), - [anon_sym_void] = ACTIONS(1699), - [anon_sym_delete] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1703), - [anon_sym_DASH_DASH] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1703), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1703), - [sym_number] = ACTIONS(1703), - [sym_this] = ACTIONS(1699), - [sym_super] = ACTIONS(1699), - [sym_true] = ACTIONS(1699), - [sym_false] = ACTIONS(1699), - [sym_null] = ACTIONS(1699), - [sym_undefined] = ACTIONS(1699), - [anon_sym_AT] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_readonly] = ACTIONS(1699), - [anon_sym_get] = ACTIONS(1699), - [anon_sym_set] = ACTIONS(1699), - [anon_sym_declare] = ACTIONS(1699), - [anon_sym_public] = ACTIONS(1699), - [anon_sym_private] = ACTIONS(1699), - [anon_sym_protected] = ACTIONS(1699), - [anon_sym_override] = ACTIONS(1699), - [anon_sym_module] = ACTIONS(1699), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_number] = ACTIONS(1699), - [anon_sym_boolean] = ACTIONS(1699), - [anon_sym_string] = ACTIONS(1699), - [anon_sym_symbol] = ACTIONS(1699), - [anon_sym_property] = ACTIONS(1699), - [anon_sym_signal] = ACTIONS(1699), - [anon_sym_on] = ACTIONS(1699), - [anon_sym_required] = ACTIONS(1699), - [anon_sym_component] = ACTIONS(1699), - [anon_sym_abstract] = ACTIONS(1699), - [anon_sym_interface] = ACTIONS(1699), - [anon_sym_enum] = ACTIONS(1699), - }, - [803] = { - [sym_identifier] = ACTIONS(2602), - [anon_sym_export] = ACTIONS(2602), - [anon_sym_default] = ACTIONS(2602), - [anon_sym_type] = ACTIONS(2602), - [anon_sym_namespace] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_RBRACE] = ACTIONS(2604), - [anon_sym_typeof] = ACTIONS(2602), - [anon_sym_import] = ACTIONS(2602), - [anon_sym_from] = ACTIONS(2602), - [anon_sym_var] = ACTIONS(2602), - [anon_sym_let] = ACTIONS(2602), - [anon_sym_const] = ACTIONS(2602), - [anon_sym_BANG] = ACTIONS(2604), - [anon_sym_else] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_switch] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2602), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_await] = ACTIONS(2602), - [anon_sym_of] = ACTIONS(2602), - [anon_sym_while] = ACTIONS(2602), - [anon_sym_do] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2602), - [anon_sym_with] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_debugger] = ACTIONS(2602), - [anon_sym_return] = ACTIONS(2602), - [anon_sym_throw] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_case] = ACTIONS(2602), - [anon_sym_yield] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(2604), - [anon_sym_LTtemplate_GT] = ACTIONS(2604), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_SLASH] = ACTIONS(2602), - [anon_sym_class] = ACTIONS(2602), - [anon_sym_async] = ACTIONS(2602), - [anon_sym_function] = ACTIONS(2602), - [anon_sym_new] = ACTIONS(2602), - [anon_sym_PLUS] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2604), - [anon_sym_void] = ACTIONS(2602), - [anon_sym_delete] = ACTIONS(2602), - [anon_sym_PLUS_PLUS] = ACTIONS(2604), - [anon_sym_DASH_DASH] = ACTIONS(2604), - [anon_sym_DQUOTE] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2604), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2604), - [sym_number] = ACTIONS(2604), - [sym_this] = ACTIONS(2602), - [sym_super] = ACTIONS(2602), - [sym_true] = ACTIONS(2602), - [sym_false] = ACTIONS(2602), - [sym_null] = ACTIONS(2602), - [sym_undefined] = ACTIONS(2602), - [anon_sym_AT] = ACTIONS(2604), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_readonly] = ACTIONS(2602), - [anon_sym_get] = ACTIONS(2602), - [anon_sym_set] = ACTIONS(2602), - [anon_sym_declare] = ACTIONS(2602), - [anon_sym_public] = ACTIONS(2602), - [anon_sym_private] = ACTIONS(2602), - [anon_sym_protected] = ACTIONS(2602), - [anon_sym_override] = ACTIONS(2602), - [anon_sym_module] = ACTIONS(2602), - [anon_sym_any] = ACTIONS(2602), - [anon_sym_number] = ACTIONS(2602), - [anon_sym_boolean] = ACTIONS(2602), - [anon_sym_string] = ACTIONS(2602), - [anon_sym_symbol] = ACTIONS(2602), - [anon_sym_property] = ACTIONS(2602), - [anon_sym_signal] = ACTIONS(2602), - [anon_sym_on] = ACTIONS(2602), - [anon_sym_required] = ACTIONS(2602), - [anon_sym_component] = ACTIONS(2602), - [anon_sym_abstract] = ACTIONS(2602), - [anon_sym_interface] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - }, - [804] = { - [sym_identifier] = ACTIONS(2606), - [anon_sym_export] = ACTIONS(2606), - [anon_sym_default] = ACTIONS(2606), - [anon_sym_type] = ACTIONS(2606), - [anon_sym_namespace] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_typeof] = ACTIONS(2606), - [anon_sym_import] = ACTIONS(2606), - [anon_sym_from] = ACTIONS(2606), - [anon_sym_var] = ACTIONS(2606), - [anon_sym_let] = ACTIONS(2606), - [anon_sym_const] = ACTIONS(2606), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_else] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_switch] = ACTIONS(2606), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_await] = ACTIONS(2606), - [anon_sym_of] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_do] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2606), - [anon_sym_with] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_debugger] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_throw] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_case] = ACTIONS(2606), - [anon_sym_yield] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_LTtemplate_GT] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_SLASH] = ACTIONS(2606), - [anon_sym_class] = ACTIONS(2606), - [anon_sym_async] = ACTIONS(2606), - [anon_sym_function] = ACTIONS(2606), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2608), - [anon_sym_void] = ACTIONS(2606), - [anon_sym_delete] = ACTIONS(2606), - [anon_sym_PLUS_PLUS] = ACTIONS(2608), - [anon_sym_DASH_DASH] = ACTIONS(2608), - [anon_sym_DQUOTE] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2608), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2608), - [sym_number] = ACTIONS(2608), - [sym_this] = ACTIONS(2606), - [sym_super] = ACTIONS(2606), - [sym_true] = ACTIONS(2606), - [sym_false] = ACTIONS(2606), - [sym_null] = ACTIONS(2606), - [sym_undefined] = ACTIONS(2606), - [anon_sym_AT] = ACTIONS(2608), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_readonly] = ACTIONS(2606), - [anon_sym_get] = ACTIONS(2606), - [anon_sym_set] = ACTIONS(2606), - [anon_sym_declare] = ACTIONS(2606), - [anon_sym_public] = ACTIONS(2606), - [anon_sym_private] = ACTIONS(2606), - [anon_sym_protected] = ACTIONS(2606), - [anon_sym_override] = ACTIONS(2606), - [anon_sym_module] = ACTIONS(2606), - [anon_sym_any] = ACTIONS(2606), - [anon_sym_number] = ACTIONS(2606), - [anon_sym_boolean] = ACTIONS(2606), - [anon_sym_string] = ACTIONS(2606), - [anon_sym_symbol] = ACTIONS(2606), - [anon_sym_property] = ACTIONS(2606), - [anon_sym_signal] = ACTIONS(2606), - [anon_sym_on] = ACTIONS(2606), - [anon_sym_required] = ACTIONS(2606), - [anon_sym_component] = ACTIONS(2606), - [anon_sym_abstract] = ACTIONS(2606), - [anon_sym_interface] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - }, - [805] = { - [sym_identifier] = ACTIONS(1671), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_typeof] = ACTIONS(1671), - [anon_sym_import] = ACTIONS(1671), - [anon_sym_from] = ACTIONS(1671), - [anon_sym_var] = ACTIONS(1671), - [anon_sym_let] = ACTIONS(1671), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1673), - [anon_sym_else] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(1671), - [anon_sym_switch] = ACTIONS(1671), - [anon_sym_for] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_await] = ACTIONS(1671), - [anon_sym_of] = ACTIONS(1671), - [anon_sym_while] = ACTIONS(1671), - [anon_sym_do] = ACTIONS(1671), - [anon_sym_try] = ACTIONS(1671), - [anon_sym_with] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1671), - [anon_sym_continue] = ACTIONS(1671), - [anon_sym_debugger] = ACTIONS(1671), - [anon_sym_return] = ACTIONS(1671), - [anon_sym_throw] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_case] = ACTIONS(1671), - [anon_sym_yield] = ACTIONS(1671), - [anon_sym_LBRACK] = ACTIONS(1673), - [anon_sym_LTtemplate_GT] = ACTIONS(1673), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_SLASH] = ACTIONS(1671), - [anon_sym_class] = ACTIONS(1671), - [anon_sym_async] = ACTIONS(1671), - [anon_sym_function] = ACTIONS(1671), - [anon_sym_new] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_TILDE] = ACTIONS(1673), - [anon_sym_void] = ACTIONS(1671), - [anon_sym_delete] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [anon_sym_DQUOTE] = ACTIONS(1673), - [anon_sym_SQUOTE] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1673), - [sym_number] = ACTIONS(1673), - [sym_this] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_true] = ACTIONS(1671), - [sym_false] = ACTIONS(1671), - [sym_null] = ACTIONS(1671), - [sym_undefined] = ACTIONS(1671), - [anon_sym_AT] = ACTIONS(1673), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_property] = ACTIONS(1671), - [anon_sym_signal] = ACTIONS(1671), - [anon_sym_on] = ACTIONS(1671), - [anon_sym_required] = ACTIONS(1671), - [anon_sym_component] = ACTIONS(1671), - [anon_sym_abstract] = ACTIONS(1671), - [anon_sym_interface] = ACTIONS(1671), - [anon_sym_enum] = ACTIONS(1671), - }, - [806] = { - [sym_identifier] = ACTIONS(1647), - [anon_sym_export] = ACTIONS(1647), - [anon_sym_default] = ACTIONS(1647), - [anon_sym_type] = ACTIONS(1647), - [anon_sym_namespace] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1649), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(1647), - [anon_sym_from] = ACTIONS(1647), - [anon_sym_var] = ACTIONS(1647), - [anon_sym_let] = ACTIONS(1647), - [anon_sym_const] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1649), - [anon_sym_else] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1647), - [anon_sym_switch] = ACTIONS(1647), - [anon_sym_for] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_await] = ACTIONS(1647), - [anon_sym_of] = ACTIONS(1647), - [anon_sym_while] = ACTIONS(1647), - [anon_sym_do] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1647), - [anon_sym_continue] = ACTIONS(1647), - [anon_sym_debugger] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1647), - [anon_sym_throw] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_case] = ACTIONS(1647), - [anon_sym_yield] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_LTtemplate_GT] = ACTIONS(1649), - [anon_sym_LT] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1647), - [anon_sym_class] = ACTIONS(1647), - [anon_sym_async] = ACTIONS(1647), - [anon_sym_function] = ACTIONS(1647), - [anon_sym_new] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_TILDE] = ACTIONS(1649), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [anon_sym_SQUOTE] = ACTIONS(1649), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1649), - [sym_number] = ACTIONS(1649), - [sym_this] = ACTIONS(1647), - [sym_super] = ACTIONS(1647), - [sym_true] = ACTIONS(1647), - [sym_false] = ACTIONS(1647), - [sym_null] = ACTIONS(1647), - [sym_undefined] = ACTIONS(1647), - [anon_sym_AT] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1647), - [anon_sym_readonly] = ACTIONS(1647), - [anon_sym_get] = ACTIONS(1647), - [anon_sym_set] = ACTIONS(1647), - [anon_sym_declare] = ACTIONS(1647), - [anon_sym_public] = ACTIONS(1647), - [anon_sym_private] = ACTIONS(1647), - [anon_sym_protected] = ACTIONS(1647), - [anon_sym_override] = ACTIONS(1647), - [anon_sym_module] = ACTIONS(1647), - [anon_sym_any] = ACTIONS(1647), - [anon_sym_number] = ACTIONS(1647), - [anon_sym_boolean] = ACTIONS(1647), - [anon_sym_string] = ACTIONS(1647), - [anon_sym_symbol] = ACTIONS(1647), - [anon_sym_property] = ACTIONS(1647), - [anon_sym_signal] = ACTIONS(1647), - [anon_sym_on] = ACTIONS(1647), - [anon_sym_required] = ACTIONS(1647), - [anon_sym_component] = ACTIONS(1647), - [anon_sym_abstract] = ACTIONS(1647), - [anon_sym_interface] = ACTIONS(1647), - [anon_sym_enum] = ACTIONS(1647), - }, - [807] = { - [sym_identifier] = ACTIONS(2594), - [anon_sym_export] = ACTIONS(2594), - [anon_sym_default] = ACTIONS(2594), - [anon_sym_type] = ACTIONS(2594), - [anon_sym_namespace] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_typeof] = ACTIONS(2594), - [anon_sym_import] = ACTIONS(2594), - [anon_sym_from] = ACTIONS(2594), - [anon_sym_var] = ACTIONS(2594), - [anon_sym_let] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_else] = ACTIONS(2594), - [anon_sym_if] = ACTIONS(2594), - [anon_sym_switch] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_await] = ACTIONS(2594), - [anon_sym_of] = ACTIONS(2594), - [anon_sym_while] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(2594), - [anon_sym_try] = ACTIONS(2594), - [anon_sym_with] = ACTIONS(2594), - [anon_sym_break] = ACTIONS(2594), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_debugger] = ACTIONS(2594), - [anon_sym_return] = ACTIONS(2594), - [anon_sym_throw] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_case] = ACTIONS(2594), - [anon_sym_yield] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2596), - [anon_sym_LTtemplate_GT] = ACTIONS(2596), - [anon_sym_LT] = ACTIONS(2594), - [anon_sym_SLASH] = ACTIONS(2594), - [anon_sym_class] = ACTIONS(2594), - [anon_sym_async] = ACTIONS(2594), - [anon_sym_function] = ACTIONS(2594), - [anon_sym_new] = ACTIONS(2594), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_void] = ACTIONS(2594), - [anon_sym_delete] = ACTIONS(2594), - [anon_sym_PLUS_PLUS] = ACTIONS(2596), - [anon_sym_DASH_DASH] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2596), - [sym_number] = ACTIONS(2596), - [sym_this] = ACTIONS(2594), - [sym_super] = ACTIONS(2594), - [sym_true] = ACTIONS(2594), - [sym_false] = ACTIONS(2594), - [sym_null] = ACTIONS(2594), - [sym_undefined] = ACTIONS(2594), - [anon_sym_AT] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_readonly] = ACTIONS(2594), - [anon_sym_get] = ACTIONS(2594), - [anon_sym_set] = ACTIONS(2594), - [anon_sym_declare] = ACTIONS(2594), - [anon_sym_public] = ACTIONS(2594), - [anon_sym_private] = ACTIONS(2594), - [anon_sym_protected] = ACTIONS(2594), - [anon_sym_override] = ACTIONS(2594), - [anon_sym_module] = ACTIONS(2594), - [anon_sym_any] = ACTIONS(2594), - [anon_sym_number] = ACTIONS(2594), - [anon_sym_boolean] = ACTIONS(2594), - [anon_sym_string] = ACTIONS(2594), - [anon_sym_symbol] = ACTIONS(2594), - [anon_sym_property] = ACTIONS(2594), - [anon_sym_signal] = ACTIONS(2594), - [anon_sym_on] = ACTIONS(2594), - [anon_sym_required] = ACTIONS(2594), - [anon_sym_component] = ACTIONS(2594), - [anon_sym_abstract] = ACTIONS(2594), - [anon_sym_interface] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), - }, - [808] = { - [sym_identifier] = ACTIONS(2610), - [anon_sym_export] = ACTIONS(2610), - [anon_sym_default] = ACTIONS(2610), - [anon_sym_type] = ACTIONS(2610), - [anon_sym_namespace] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_RBRACE] = ACTIONS(2612), - [anon_sym_typeof] = ACTIONS(2610), - [anon_sym_import] = ACTIONS(2610), - [anon_sym_from] = ACTIONS(2610), - [anon_sym_var] = ACTIONS(2610), - [anon_sym_let] = ACTIONS(2610), - [anon_sym_const] = ACTIONS(2610), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_else] = ACTIONS(2610), - [anon_sym_if] = ACTIONS(2610), - [anon_sym_switch] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2610), - [anon_sym_LPAREN] = ACTIONS(2612), - [anon_sym_await] = ACTIONS(2610), - [anon_sym_of] = ACTIONS(2610), - [anon_sym_while] = ACTIONS(2610), - [anon_sym_do] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2610), - [anon_sym_with] = ACTIONS(2610), - [anon_sym_break] = ACTIONS(2610), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_debugger] = ACTIONS(2610), - [anon_sym_return] = ACTIONS(2610), - [anon_sym_throw] = ACTIONS(2610), - [anon_sym_SEMI] = ACTIONS(2612), - [anon_sym_case] = ACTIONS(2610), - [anon_sym_yield] = ACTIONS(2610), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_LTtemplate_GT] = ACTIONS(2612), - [anon_sym_LT] = ACTIONS(2610), - [anon_sym_SLASH] = ACTIONS(2610), - [anon_sym_class] = ACTIONS(2610), - [anon_sym_async] = ACTIONS(2610), - [anon_sym_function] = ACTIONS(2610), - [anon_sym_new] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_void] = ACTIONS(2610), - [anon_sym_delete] = ACTIONS(2610), - [anon_sym_PLUS_PLUS] = ACTIONS(2612), - [anon_sym_DASH_DASH] = ACTIONS(2612), - [anon_sym_DQUOTE] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2612), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2612), - [sym_number] = ACTIONS(2612), - [sym_this] = ACTIONS(2610), - [sym_super] = ACTIONS(2610), - [sym_true] = ACTIONS(2610), - [sym_false] = ACTIONS(2610), - [sym_null] = ACTIONS(2610), - [sym_undefined] = ACTIONS(2610), - [anon_sym_AT] = ACTIONS(2612), - [anon_sym_static] = ACTIONS(2610), - [anon_sym_readonly] = ACTIONS(2610), - [anon_sym_get] = ACTIONS(2610), - [anon_sym_set] = ACTIONS(2610), - [anon_sym_declare] = ACTIONS(2610), - [anon_sym_public] = ACTIONS(2610), - [anon_sym_private] = ACTIONS(2610), - [anon_sym_protected] = ACTIONS(2610), - [anon_sym_override] = ACTIONS(2610), - [anon_sym_module] = ACTIONS(2610), - [anon_sym_any] = ACTIONS(2610), - [anon_sym_number] = ACTIONS(2610), - [anon_sym_boolean] = ACTIONS(2610), - [anon_sym_string] = ACTIONS(2610), - [anon_sym_symbol] = ACTIONS(2610), - [anon_sym_property] = ACTIONS(2610), - [anon_sym_signal] = ACTIONS(2610), - [anon_sym_on] = ACTIONS(2610), - [anon_sym_required] = ACTIONS(2610), - [anon_sym_component] = ACTIONS(2610), - [anon_sym_abstract] = ACTIONS(2610), - [anon_sym_interface] = ACTIONS(2610), - [anon_sym_enum] = ACTIONS(2610), - }, - [809] = { - [sym_identifier] = ACTIONS(2614), - [anon_sym_export] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_type] = ACTIONS(2614), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_typeof] = ACTIONS(2614), - [anon_sym_import] = ACTIONS(2614), - [anon_sym_from] = ACTIONS(2614), - [anon_sym_var] = ACTIONS(2614), - [anon_sym_let] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_switch] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2616), - [anon_sym_await] = ACTIONS(2614), - [anon_sym_of] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [anon_sym_with] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_debugger] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_throw] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_case] = ACTIONS(2614), - [anon_sym_yield] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2616), - [anon_sym_LTtemplate_GT] = ACTIONS(2616), - [anon_sym_LT] = ACTIONS(2614), - [anon_sym_SLASH] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_async] = ACTIONS(2614), - [anon_sym_function] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_TILDE] = ACTIONS(2616), - [anon_sym_void] = ACTIONS(2614), - [anon_sym_delete] = ACTIONS(2614), - [anon_sym_PLUS_PLUS] = ACTIONS(2616), - [anon_sym_DASH_DASH] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2616), - [sym_number] = ACTIONS(2616), - [sym_this] = ACTIONS(2614), - [sym_super] = ACTIONS(2614), - [sym_true] = ACTIONS(2614), - [sym_false] = ACTIONS(2614), - [sym_null] = ACTIONS(2614), - [sym_undefined] = ACTIONS(2614), - [anon_sym_AT] = ACTIONS(2616), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_readonly] = ACTIONS(2614), - [anon_sym_get] = ACTIONS(2614), - [anon_sym_set] = ACTIONS(2614), - [anon_sym_declare] = ACTIONS(2614), - [anon_sym_public] = ACTIONS(2614), - [anon_sym_private] = ACTIONS(2614), - [anon_sym_protected] = ACTIONS(2614), - [anon_sym_override] = ACTIONS(2614), - [anon_sym_module] = ACTIONS(2614), - [anon_sym_any] = ACTIONS(2614), - [anon_sym_number] = ACTIONS(2614), - [anon_sym_boolean] = ACTIONS(2614), - [anon_sym_string] = ACTIONS(2614), - [anon_sym_symbol] = ACTIONS(2614), - [anon_sym_property] = ACTIONS(2614), - [anon_sym_signal] = ACTIONS(2614), - [anon_sym_on] = ACTIONS(2614), - [anon_sym_required] = ACTIONS(2614), - [anon_sym_component] = ACTIONS(2614), - [anon_sym_abstract] = ACTIONS(2614), - [anon_sym_interface] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - }, - [810] = { - [sym_identifier] = ACTIONS(2618), - [anon_sym_export] = ACTIONS(2618), - [anon_sym_default] = ACTIONS(2618), - [anon_sym_type] = ACTIONS(2618), - [anon_sym_namespace] = ACTIONS(2618), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_RBRACE] = ACTIONS(2620), - [anon_sym_typeof] = ACTIONS(2618), - [anon_sym_import] = ACTIONS(2618), - [anon_sym_from] = ACTIONS(2618), - [anon_sym_var] = ACTIONS(2618), - [anon_sym_let] = ACTIONS(2618), - [anon_sym_const] = ACTIONS(2618), - [anon_sym_BANG] = ACTIONS(2620), - [anon_sym_else] = ACTIONS(2618), - [anon_sym_if] = ACTIONS(2618), - [anon_sym_switch] = ACTIONS(2618), - [anon_sym_for] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_await] = ACTIONS(2618), - [anon_sym_of] = ACTIONS(2618), - [anon_sym_while] = ACTIONS(2618), - [anon_sym_do] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2618), - [anon_sym_with] = ACTIONS(2618), - [anon_sym_break] = ACTIONS(2618), - [anon_sym_continue] = ACTIONS(2618), - [anon_sym_debugger] = ACTIONS(2618), - [anon_sym_return] = ACTIONS(2618), - [anon_sym_throw] = ACTIONS(2618), - [anon_sym_SEMI] = ACTIONS(2620), - [anon_sym_case] = ACTIONS(2618), - [anon_sym_yield] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LTtemplate_GT] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2618), - [anon_sym_SLASH] = ACTIONS(2618), - [anon_sym_class] = ACTIONS(2618), - [anon_sym_async] = ACTIONS(2618), - [anon_sym_function] = ACTIONS(2618), - [anon_sym_new] = ACTIONS(2618), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_TILDE] = ACTIONS(2620), - [anon_sym_void] = ACTIONS(2618), - [anon_sym_delete] = ACTIONS(2618), - [anon_sym_PLUS_PLUS] = ACTIONS(2620), - [anon_sym_DASH_DASH] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [anon_sym_SQUOTE] = ACTIONS(2620), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2620), - [sym_number] = ACTIONS(2620), - [sym_this] = ACTIONS(2618), - [sym_super] = ACTIONS(2618), - [sym_true] = ACTIONS(2618), - [sym_false] = ACTIONS(2618), - [sym_null] = ACTIONS(2618), - [sym_undefined] = ACTIONS(2618), - [anon_sym_AT] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2618), - [anon_sym_readonly] = ACTIONS(2618), - [anon_sym_get] = ACTIONS(2618), - [anon_sym_set] = ACTIONS(2618), - [anon_sym_declare] = ACTIONS(2618), - [anon_sym_public] = ACTIONS(2618), - [anon_sym_private] = ACTIONS(2618), - [anon_sym_protected] = ACTIONS(2618), - [anon_sym_override] = ACTIONS(2618), - [anon_sym_module] = ACTIONS(2618), - [anon_sym_any] = ACTIONS(2618), - [anon_sym_number] = ACTIONS(2618), - [anon_sym_boolean] = ACTIONS(2618), - [anon_sym_string] = ACTIONS(2618), - [anon_sym_symbol] = ACTIONS(2618), - [anon_sym_property] = ACTIONS(2618), - [anon_sym_signal] = ACTIONS(2618), - [anon_sym_on] = ACTIONS(2618), - [anon_sym_required] = ACTIONS(2618), - [anon_sym_component] = ACTIONS(2618), - [anon_sym_abstract] = ACTIONS(2618), - [anon_sym_interface] = ACTIONS(2618), - [anon_sym_enum] = ACTIONS(2618), - }, - [811] = { - [sym_identifier] = ACTIONS(2622), - [anon_sym_export] = ACTIONS(2622), - [anon_sym_default] = ACTIONS(2622), - [anon_sym_type] = ACTIONS(2622), - [anon_sym_namespace] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2624), - [anon_sym_typeof] = ACTIONS(2622), - [anon_sym_import] = ACTIONS(2622), - [anon_sym_from] = ACTIONS(2622), - [anon_sym_var] = ACTIONS(2622), - [anon_sym_let] = ACTIONS(2622), - [anon_sym_const] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_switch] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_await] = ACTIONS(2622), - [anon_sym_of] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_do] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2622), - [anon_sym_break] = ACTIONS(2622), - [anon_sym_continue] = ACTIONS(2622), - [anon_sym_debugger] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_throw] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_case] = ACTIONS(2622), - [anon_sym_yield] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2624), - [anon_sym_LTtemplate_GT] = ACTIONS(2624), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_SLASH] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_async] = ACTIONS(2622), - [anon_sym_function] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2622), - [anon_sym_PLUS] = ACTIONS(2622), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_TILDE] = ACTIONS(2624), - [anon_sym_void] = ACTIONS(2622), - [anon_sym_delete] = ACTIONS(2622), - [anon_sym_PLUS_PLUS] = ACTIONS(2624), - [anon_sym_DASH_DASH] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2624), - [sym_number] = ACTIONS(2624), - [sym_this] = ACTIONS(2622), - [sym_super] = ACTIONS(2622), - [sym_true] = ACTIONS(2622), - [sym_false] = ACTIONS(2622), - [sym_null] = ACTIONS(2622), - [sym_undefined] = ACTIONS(2622), - [anon_sym_AT] = ACTIONS(2624), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_readonly] = ACTIONS(2622), - [anon_sym_get] = ACTIONS(2622), - [anon_sym_set] = ACTIONS(2622), - [anon_sym_declare] = ACTIONS(2622), - [anon_sym_public] = ACTIONS(2622), - [anon_sym_private] = ACTIONS(2622), - [anon_sym_protected] = ACTIONS(2622), - [anon_sym_override] = ACTIONS(2622), - [anon_sym_module] = ACTIONS(2622), - [anon_sym_any] = ACTIONS(2622), - [anon_sym_number] = ACTIONS(2622), - [anon_sym_boolean] = ACTIONS(2622), - [anon_sym_string] = ACTIONS(2622), - [anon_sym_symbol] = ACTIONS(2622), - [anon_sym_property] = ACTIONS(2622), - [anon_sym_signal] = ACTIONS(2622), - [anon_sym_on] = ACTIONS(2622), - [anon_sym_required] = ACTIONS(2622), - [anon_sym_component] = ACTIONS(2622), - [anon_sym_abstract] = ACTIONS(2622), - [anon_sym_interface] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), - }, - [812] = { - [sym_identifier] = ACTIONS(2626), - [anon_sym_export] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_namespace] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_RBRACE] = ACTIONS(2628), - [anon_sym_typeof] = ACTIONS(2626), - [anon_sym_import] = ACTIONS(2626), - [anon_sym_from] = ACTIONS(2626), - [anon_sym_var] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_const] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2628), - [anon_sym_else] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_switch] = ACTIONS(2626), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_await] = ACTIONS(2626), - [anon_sym_of] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_debugger] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_throw] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2628), - [anon_sym_case] = ACTIONS(2626), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2628), - [anon_sym_LTtemplate_GT] = ACTIONS(2628), - [anon_sym_LT] = ACTIONS(2626), - [anon_sym_SLASH] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [anon_sym_function] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2628), - [anon_sym_void] = ACTIONS(2626), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_PLUS_PLUS] = ACTIONS(2628), - [anon_sym_DASH_DASH] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2628), - [sym_number] = ACTIONS(2628), - [sym_this] = ACTIONS(2626), - [sym_super] = ACTIONS(2626), - [sym_true] = ACTIONS(2626), - [sym_false] = ACTIONS(2626), - [sym_null] = ACTIONS(2626), - [sym_undefined] = ACTIONS(2626), - [anon_sym_AT] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_readonly] = ACTIONS(2626), - [anon_sym_get] = ACTIONS(2626), - [anon_sym_set] = ACTIONS(2626), - [anon_sym_declare] = ACTIONS(2626), - [anon_sym_public] = ACTIONS(2626), - [anon_sym_private] = ACTIONS(2626), - [anon_sym_protected] = ACTIONS(2626), - [anon_sym_override] = ACTIONS(2626), - [anon_sym_module] = ACTIONS(2626), - [anon_sym_any] = ACTIONS(2626), - [anon_sym_number] = ACTIONS(2626), - [anon_sym_boolean] = ACTIONS(2626), - [anon_sym_string] = ACTIONS(2626), - [anon_sym_symbol] = ACTIONS(2626), - [anon_sym_property] = ACTIONS(2626), - [anon_sym_signal] = ACTIONS(2626), - [anon_sym_on] = ACTIONS(2626), - [anon_sym_required] = ACTIONS(2626), - [anon_sym_component] = ACTIONS(2626), - [anon_sym_abstract] = ACTIONS(2626), - [anon_sym_interface] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - }, - [813] = { - [sym_identifier] = ACTIONS(2630), - [anon_sym_export] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_type] = ACTIONS(2630), - [anon_sym_namespace] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_typeof] = ACTIONS(2630), - [anon_sym_import] = ACTIONS(2630), - [anon_sym_from] = ACTIONS(2630), - [anon_sym_var] = ACTIONS(2630), - [anon_sym_let] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_else] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_switch] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2632), - [anon_sym_await] = ACTIONS(2630), - [anon_sym_of] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_do] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [anon_sym_with] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_debugger] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_throw] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_case] = ACTIONS(2630), - [anon_sym_yield] = ACTIONS(2630), - [anon_sym_LBRACK] = ACTIONS(2632), - [anon_sym_LTtemplate_GT] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(2630), - [anon_sym_SLASH] = ACTIONS(2630), - [anon_sym_class] = ACTIONS(2630), - [anon_sym_async] = ACTIONS(2630), - [anon_sym_function] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2630), - [anon_sym_PLUS] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_TILDE] = ACTIONS(2632), - [anon_sym_void] = ACTIONS(2630), - [anon_sym_delete] = ACTIONS(2630), - [anon_sym_PLUS_PLUS] = ACTIONS(2632), - [anon_sym_DASH_DASH] = ACTIONS(2632), - [anon_sym_DQUOTE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2632), - [sym_number] = ACTIONS(2632), - [sym_this] = ACTIONS(2630), - [sym_super] = ACTIONS(2630), - [sym_true] = ACTIONS(2630), - [sym_false] = ACTIONS(2630), - [sym_null] = ACTIONS(2630), - [sym_undefined] = ACTIONS(2630), - [anon_sym_AT] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_readonly] = ACTIONS(2630), - [anon_sym_get] = ACTIONS(2630), - [anon_sym_set] = ACTIONS(2630), - [anon_sym_declare] = ACTIONS(2630), - [anon_sym_public] = ACTIONS(2630), - [anon_sym_private] = ACTIONS(2630), - [anon_sym_protected] = ACTIONS(2630), - [anon_sym_override] = ACTIONS(2630), - [anon_sym_module] = ACTIONS(2630), - [anon_sym_any] = ACTIONS(2630), - [anon_sym_number] = ACTIONS(2630), - [anon_sym_boolean] = ACTIONS(2630), - [anon_sym_string] = ACTIONS(2630), - [anon_sym_symbol] = ACTIONS(2630), - [anon_sym_property] = ACTIONS(2630), - [anon_sym_signal] = ACTIONS(2630), - [anon_sym_on] = ACTIONS(2630), - [anon_sym_required] = ACTIONS(2630), - [anon_sym_component] = ACTIONS(2630), - [anon_sym_abstract] = ACTIONS(2630), - [anon_sym_interface] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), - }, - [814] = { - [sym_identifier] = ACTIONS(2634), - [anon_sym_export] = ACTIONS(2634), - [anon_sym_default] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_namespace] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_typeof] = ACTIONS(2634), - [anon_sym_import] = ACTIONS(2634), - [anon_sym_from] = ACTIONS(2634), - [anon_sym_var] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_const] = ACTIONS(2634), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_else] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_switch] = ACTIONS(2634), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_await] = ACTIONS(2634), - [anon_sym_of] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_break] = ACTIONS(2634), - [anon_sym_continue] = ACTIONS(2634), - [anon_sym_debugger] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_throw] = ACTIONS(2634), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_case] = ACTIONS(2634), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2636), - [anon_sym_LTtemplate_GT] = ACTIONS(2636), - [anon_sym_LT] = ACTIONS(2634), - [anon_sym_SLASH] = ACTIONS(2634), - [anon_sym_class] = ACTIONS(2634), - [anon_sym_async] = ACTIONS(2634), - [anon_sym_function] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2636), - [anon_sym_void] = ACTIONS(2634), - [anon_sym_delete] = ACTIONS(2634), - [anon_sym_PLUS_PLUS] = ACTIONS(2636), - [anon_sym_DASH_DASH] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2636), - [sym_number] = ACTIONS(2636), - [sym_this] = ACTIONS(2634), - [sym_super] = ACTIONS(2634), - [sym_true] = ACTIONS(2634), - [sym_false] = ACTIONS(2634), - [sym_null] = ACTIONS(2634), - [sym_undefined] = ACTIONS(2634), - [anon_sym_AT] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2634), - [anon_sym_readonly] = ACTIONS(2634), - [anon_sym_get] = ACTIONS(2634), - [anon_sym_set] = ACTIONS(2634), - [anon_sym_declare] = ACTIONS(2634), - [anon_sym_public] = ACTIONS(2634), - [anon_sym_private] = ACTIONS(2634), - [anon_sym_protected] = ACTIONS(2634), - [anon_sym_override] = ACTIONS(2634), - [anon_sym_module] = ACTIONS(2634), - [anon_sym_any] = ACTIONS(2634), - [anon_sym_number] = ACTIONS(2634), - [anon_sym_boolean] = ACTIONS(2634), - [anon_sym_string] = ACTIONS(2634), - [anon_sym_symbol] = ACTIONS(2634), - [anon_sym_property] = ACTIONS(2634), - [anon_sym_signal] = ACTIONS(2634), - [anon_sym_on] = ACTIONS(2634), - [anon_sym_required] = ACTIONS(2634), - [anon_sym_component] = ACTIONS(2634), - [anon_sym_abstract] = ACTIONS(2634), - [anon_sym_interface] = ACTIONS(2634), - [anon_sym_enum] = ACTIONS(2634), - }, - [815] = { - [sym_identifier] = ACTIONS(2638), - [anon_sym_export] = ACTIONS(2638), - [anon_sym_default] = ACTIONS(2638), - [anon_sym_type] = ACTIONS(2638), - [anon_sym_namespace] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_RBRACE] = ACTIONS(2640), - [anon_sym_typeof] = ACTIONS(2638), - [anon_sym_import] = ACTIONS(2638), - [anon_sym_from] = ACTIONS(2638), - [anon_sym_var] = ACTIONS(2638), - [anon_sym_let] = ACTIONS(2638), - [anon_sym_const] = ACTIONS(2638), - [anon_sym_BANG] = ACTIONS(2640), - [anon_sym_else] = ACTIONS(2638), - [anon_sym_if] = ACTIONS(2638), - [anon_sym_switch] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2638), - [anon_sym_LPAREN] = ACTIONS(2640), - [anon_sym_await] = ACTIONS(2638), - [anon_sym_of] = ACTIONS(2638), - [anon_sym_while] = ACTIONS(2638), - [anon_sym_do] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2638), - [anon_sym_with] = ACTIONS(2638), - [anon_sym_break] = ACTIONS(2638), - [anon_sym_continue] = ACTIONS(2638), - [anon_sym_debugger] = ACTIONS(2638), - [anon_sym_return] = ACTIONS(2638), - [anon_sym_throw] = ACTIONS(2638), - [anon_sym_SEMI] = ACTIONS(2640), - [anon_sym_case] = ACTIONS(2638), - [anon_sym_yield] = ACTIONS(2638), - [anon_sym_LBRACK] = ACTIONS(2640), - [anon_sym_LTtemplate_GT] = ACTIONS(2640), - [anon_sym_LT] = ACTIONS(2638), - [anon_sym_SLASH] = ACTIONS(2638), - [anon_sym_class] = ACTIONS(2638), - [anon_sym_async] = ACTIONS(2638), - [anon_sym_function] = ACTIONS(2638), - [anon_sym_new] = ACTIONS(2638), - [anon_sym_PLUS] = ACTIONS(2638), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_TILDE] = ACTIONS(2640), - [anon_sym_void] = ACTIONS(2638), - [anon_sym_delete] = ACTIONS(2638), - [anon_sym_PLUS_PLUS] = ACTIONS(2640), - [anon_sym_DASH_DASH] = ACTIONS(2640), - [anon_sym_DQUOTE] = ACTIONS(2640), - [anon_sym_SQUOTE] = ACTIONS(2640), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2640), - [sym_number] = ACTIONS(2640), - [sym_this] = ACTIONS(2638), - [sym_super] = ACTIONS(2638), - [sym_true] = ACTIONS(2638), - [sym_false] = ACTIONS(2638), - [sym_null] = ACTIONS(2638), - [sym_undefined] = ACTIONS(2638), - [anon_sym_AT] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2638), - [anon_sym_readonly] = ACTIONS(2638), - [anon_sym_get] = ACTIONS(2638), - [anon_sym_set] = ACTIONS(2638), - [anon_sym_declare] = ACTIONS(2638), - [anon_sym_public] = ACTIONS(2638), - [anon_sym_private] = ACTIONS(2638), - [anon_sym_protected] = ACTIONS(2638), - [anon_sym_override] = ACTIONS(2638), - [anon_sym_module] = ACTIONS(2638), - [anon_sym_any] = ACTIONS(2638), - [anon_sym_number] = ACTIONS(2638), - [anon_sym_boolean] = ACTIONS(2638), - [anon_sym_string] = ACTIONS(2638), - [anon_sym_symbol] = ACTIONS(2638), - [anon_sym_property] = ACTIONS(2638), - [anon_sym_signal] = ACTIONS(2638), - [anon_sym_on] = ACTIONS(2638), - [anon_sym_required] = ACTIONS(2638), - [anon_sym_component] = ACTIONS(2638), - [anon_sym_abstract] = ACTIONS(2638), - [anon_sym_interface] = ACTIONS(2638), - [anon_sym_enum] = ACTIONS(2638), - }, - [816] = { - [sym_identifier] = ACTIONS(2642), - [anon_sym_export] = ACTIONS(2642), - [anon_sym_default] = ACTIONS(2642), - [anon_sym_type] = ACTIONS(2642), - [anon_sym_namespace] = ACTIONS(2642), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_RBRACE] = ACTIONS(2644), - [anon_sym_typeof] = ACTIONS(2642), - [anon_sym_import] = ACTIONS(2642), - [anon_sym_from] = ACTIONS(2642), - [anon_sym_var] = ACTIONS(2642), - [anon_sym_let] = ACTIONS(2642), - [anon_sym_const] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2644), - [anon_sym_else] = ACTIONS(2642), - [anon_sym_if] = ACTIONS(2642), - [anon_sym_switch] = ACTIONS(2642), - [anon_sym_for] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2644), - [anon_sym_await] = ACTIONS(2642), - [anon_sym_of] = ACTIONS(2642), - [anon_sym_while] = ACTIONS(2642), - [anon_sym_do] = ACTIONS(2642), - [anon_sym_try] = ACTIONS(2642), - [anon_sym_with] = ACTIONS(2642), - [anon_sym_break] = ACTIONS(2642), - [anon_sym_continue] = ACTIONS(2642), - [anon_sym_debugger] = ACTIONS(2642), - [anon_sym_return] = ACTIONS(2642), - [anon_sym_throw] = ACTIONS(2642), - [anon_sym_SEMI] = ACTIONS(2644), - [anon_sym_case] = ACTIONS(2642), - [anon_sym_yield] = ACTIONS(2642), - [anon_sym_LBRACK] = ACTIONS(2644), - [anon_sym_LTtemplate_GT] = ACTIONS(2644), - [anon_sym_LT] = ACTIONS(2642), - [anon_sym_SLASH] = ACTIONS(2642), - [anon_sym_class] = ACTIONS(2642), - [anon_sym_async] = ACTIONS(2642), - [anon_sym_function] = ACTIONS(2642), - [anon_sym_new] = ACTIONS(2642), - [anon_sym_PLUS] = ACTIONS(2642), - [anon_sym_DASH] = ACTIONS(2642), - [anon_sym_TILDE] = ACTIONS(2644), - [anon_sym_void] = ACTIONS(2642), - [anon_sym_delete] = ACTIONS(2642), - [anon_sym_PLUS_PLUS] = ACTIONS(2644), - [anon_sym_DASH_DASH] = ACTIONS(2644), - [anon_sym_DQUOTE] = ACTIONS(2644), - [anon_sym_SQUOTE] = ACTIONS(2644), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2644), - [sym_number] = ACTIONS(2644), - [sym_this] = ACTIONS(2642), - [sym_super] = ACTIONS(2642), - [sym_true] = ACTIONS(2642), - [sym_false] = ACTIONS(2642), - [sym_null] = ACTIONS(2642), - [sym_undefined] = ACTIONS(2642), - [anon_sym_AT] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_readonly] = ACTIONS(2642), - [anon_sym_get] = ACTIONS(2642), - [anon_sym_set] = ACTIONS(2642), - [anon_sym_declare] = ACTIONS(2642), - [anon_sym_public] = ACTIONS(2642), - [anon_sym_private] = ACTIONS(2642), - [anon_sym_protected] = ACTIONS(2642), - [anon_sym_override] = ACTIONS(2642), - [anon_sym_module] = ACTIONS(2642), - [anon_sym_any] = ACTIONS(2642), - [anon_sym_number] = ACTIONS(2642), - [anon_sym_boolean] = ACTIONS(2642), - [anon_sym_string] = ACTIONS(2642), - [anon_sym_symbol] = ACTIONS(2642), - [anon_sym_property] = ACTIONS(2642), - [anon_sym_signal] = ACTIONS(2642), - [anon_sym_on] = ACTIONS(2642), - [anon_sym_required] = ACTIONS(2642), - [anon_sym_component] = ACTIONS(2642), - [anon_sym_abstract] = ACTIONS(2642), - [anon_sym_interface] = ACTIONS(2642), - [anon_sym_enum] = ACTIONS(2642), - }, - [817] = { - [sym_identifier] = ACTIONS(2646), - [anon_sym_export] = ACTIONS(2646), - [anon_sym_default] = ACTIONS(2646), - [anon_sym_type] = ACTIONS(2646), - [anon_sym_namespace] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2648), - [anon_sym_RBRACE] = ACTIONS(2648), - [anon_sym_typeof] = ACTIONS(2646), - [anon_sym_import] = ACTIONS(2646), - [anon_sym_from] = ACTIONS(2646), - [anon_sym_var] = ACTIONS(2646), - [anon_sym_let] = ACTIONS(2646), - [anon_sym_const] = ACTIONS(2646), - [anon_sym_BANG] = ACTIONS(2648), - [anon_sym_else] = ACTIONS(2646), - [anon_sym_if] = ACTIONS(2646), - [anon_sym_switch] = ACTIONS(2646), - [anon_sym_for] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(2648), - [anon_sym_await] = ACTIONS(2646), - [anon_sym_of] = ACTIONS(2646), - [anon_sym_while] = ACTIONS(2646), - [anon_sym_do] = ACTIONS(2646), - [anon_sym_try] = ACTIONS(2646), - [anon_sym_with] = ACTIONS(2646), - [anon_sym_break] = ACTIONS(2646), - [anon_sym_continue] = ACTIONS(2646), - [anon_sym_debugger] = ACTIONS(2646), - [anon_sym_return] = ACTIONS(2646), - [anon_sym_throw] = ACTIONS(2646), - [anon_sym_SEMI] = ACTIONS(2648), - [anon_sym_case] = ACTIONS(2646), - [anon_sym_yield] = ACTIONS(2646), - [anon_sym_LBRACK] = ACTIONS(2648), - [anon_sym_LTtemplate_GT] = ACTIONS(2648), - [anon_sym_LT] = ACTIONS(2646), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_class] = ACTIONS(2646), - [anon_sym_async] = ACTIONS(2646), - [anon_sym_function] = ACTIONS(2646), - [anon_sym_new] = ACTIONS(2646), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_TILDE] = ACTIONS(2648), - [anon_sym_void] = ACTIONS(2646), - [anon_sym_delete] = ACTIONS(2646), - [anon_sym_PLUS_PLUS] = ACTIONS(2648), - [anon_sym_DASH_DASH] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2648), - [anon_sym_SQUOTE] = ACTIONS(2648), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2648), - [sym_number] = ACTIONS(2648), - [sym_this] = ACTIONS(2646), - [sym_super] = ACTIONS(2646), - [sym_true] = ACTIONS(2646), - [sym_false] = ACTIONS(2646), - [sym_null] = ACTIONS(2646), - [sym_undefined] = ACTIONS(2646), - [anon_sym_AT] = ACTIONS(2648), - [anon_sym_static] = ACTIONS(2646), - [anon_sym_readonly] = ACTIONS(2646), - [anon_sym_get] = ACTIONS(2646), - [anon_sym_set] = ACTIONS(2646), - [anon_sym_declare] = ACTIONS(2646), - [anon_sym_public] = ACTIONS(2646), - [anon_sym_private] = ACTIONS(2646), - [anon_sym_protected] = ACTIONS(2646), - [anon_sym_override] = ACTIONS(2646), - [anon_sym_module] = ACTIONS(2646), - [anon_sym_any] = ACTIONS(2646), - [anon_sym_number] = ACTIONS(2646), - [anon_sym_boolean] = ACTIONS(2646), - [anon_sym_string] = ACTIONS(2646), - [anon_sym_symbol] = ACTIONS(2646), - [anon_sym_property] = ACTIONS(2646), - [anon_sym_signal] = ACTIONS(2646), - [anon_sym_on] = ACTIONS(2646), - [anon_sym_required] = ACTIONS(2646), - [anon_sym_component] = ACTIONS(2646), - [anon_sym_abstract] = ACTIONS(2646), - [anon_sym_interface] = ACTIONS(2646), - [anon_sym_enum] = ACTIONS(2646), - }, - [818] = { - [sym_identifier] = ACTIONS(2650), - [anon_sym_export] = ACTIONS(2650), - [anon_sym_default] = ACTIONS(2650), - [anon_sym_type] = ACTIONS(2650), - [anon_sym_namespace] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2652), - [anon_sym_RBRACE] = ACTIONS(2652), - [anon_sym_typeof] = ACTIONS(2650), - [anon_sym_import] = ACTIONS(2650), - [anon_sym_from] = ACTIONS(2650), - [anon_sym_var] = ACTIONS(2650), - [anon_sym_let] = ACTIONS(2650), - [anon_sym_const] = ACTIONS(2650), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_else] = ACTIONS(2650), - [anon_sym_if] = ACTIONS(2650), - [anon_sym_switch] = ACTIONS(2650), - [anon_sym_for] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_await] = ACTIONS(2650), - [anon_sym_of] = ACTIONS(2650), - [anon_sym_while] = ACTIONS(2650), - [anon_sym_do] = ACTIONS(2650), - [anon_sym_try] = ACTIONS(2650), - [anon_sym_with] = ACTIONS(2650), - [anon_sym_break] = ACTIONS(2650), - [anon_sym_continue] = ACTIONS(2650), - [anon_sym_debugger] = ACTIONS(2650), - [anon_sym_return] = ACTIONS(2650), - [anon_sym_throw] = ACTIONS(2650), - [anon_sym_SEMI] = ACTIONS(2652), - [anon_sym_case] = ACTIONS(2650), - [anon_sym_yield] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2652), - [anon_sym_LTtemplate_GT] = ACTIONS(2652), - [anon_sym_LT] = ACTIONS(2650), - [anon_sym_SLASH] = ACTIONS(2650), - [anon_sym_class] = ACTIONS(2650), - [anon_sym_async] = ACTIONS(2650), - [anon_sym_function] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_TILDE] = ACTIONS(2652), - [anon_sym_void] = ACTIONS(2650), - [anon_sym_delete] = ACTIONS(2650), - [anon_sym_PLUS_PLUS] = ACTIONS(2652), - [anon_sym_DASH_DASH] = ACTIONS(2652), - [anon_sym_DQUOTE] = ACTIONS(2652), - [anon_sym_SQUOTE] = ACTIONS(2652), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2652), - [sym_number] = ACTIONS(2652), - [sym_this] = ACTIONS(2650), - [sym_super] = ACTIONS(2650), - [sym_true] = ACTIONS(2650), - [sym_false] = ACTIONS(2650), - [sym_null] = ACTIONS(2650), - [sym_undefined] = ACTIONS(2650), - [anon_sym_AT] = ACTIONS(2652), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_readonly] = ACTIONS(2650), - [anon_sym_get] = ACTIONS(2650), - [anon_sym_set] = ACTIONS(2650), - [anon_sym_declare] = ACTIONS(2650), - [anon_sym_public] = ACTIONS(2650), - [anon_sym_private] = ACTIONS(2650), - [anon_sym_protected] = ACTIONS(2650), - [anon_sym_override] = ACTIONS(2650), - [anon_sym_module] = ACTIONS(2650), - [anon_sym_any] = ACTIONS(2650), - [anon_sym_number] = ACTIONS(2650), - [anon_sym_boolean] = ACTIONS(2650), - [anon_sym_string] = ACTIONS(2650), - [anon_sym_symbol] = ACTIONS(2650), - [anon_sym_property] = ACTIONS(2650), - [anon_sym_signal] = ACTIONS(2650), - [anon_sym_on] = ACTIONS(2650), - [anon_sym_required] = ACTIONS(2650), - [anon_sym_component] = ACTIONS(2650), - [anon_sym_abstract] = ACTIONS(2650), - [anon_sym_interface] = ACTIONS(2650), - [anon_sym_enum] = ACTIONS(2650), - }, - [819] = { - [sym_identifier] = ACTIONS(2654), - [anon_sym_export] = ACTIONS(2654), - [anon_sym_default] = ACTIONS(2654), - [anon_sym_type] = ACTIONS(2654), - [anon_sym_namespace] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2656), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_typeof] = ACTIONS(2654), - [anon_sym_import] = ACTIONS(2654), - [anon_sym_from] = ACTIONS(2654), - [anon_sym_var] = ACTIONS(2654), - [anon_sym_let] = ACTIONS(2654), - [anon_sym_const] = ACTIONS(2654), - [anon_sym_BANG] = ACTIONS(2656), - [anon_sym_else] = ACTIONS(2654), - [anon_sym_if] = ACTIONS(2654), - [anon_sym_switch] = ACTIONS(2654), - [anon_sym_for] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2656), - [anon_sym_await] = ACTIONS(2654), - [anon_sym_of] = ACTIONS(2654), - [anon_sym_while] = ACTIONS(2654), - [anon_sym_do] = ACTIONS(2654), - [anon_sym_try] = ACTIONS(2654), - [anon_sym_with] = ACTIONS(2654), - [anon_sym_break] = ACTIONS(2654), - [anon_sym_continue] = ACTIONS(2654), - [anon_sym_debugger] = ACTIONS(2654), - [anon_sym_return] = ACTIONS(2654), - [anon_sym_throw] = ACTIONS(2654), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_case] = ACTIONS(2654), - [anon_sym_yield] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2656), - [anon_sym_LTtemplate_GT] = ACTIONS(2656), - [anon_sym_LT] = ACTIONS(2654), - [anon_sym_SLASH] = ACTIONS(2654), - [anon_sym_class] = ACTIONS(2654), - [anon_sym_async] = ACTIONS(2654), - [anon_sym_function] = ACTIONS(2654), - [anon_sym_new] = ACTIONS(2654), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_TILDE] = ACTIONS(2656), - [anon_sym_void] = ACTIONS(2654), - [anon_sym_delete] = ACTIONS(2654), - [anon_sym_PLUS_PLUS] = ACTIONS(2656), - [anon_sym_DASH_DASH] = ACTIONS(2656), - [anon_sym_DQUOTE] = ACTIONS(2656), - [anon_sym_SQUOTE] = ACTIONS(2656), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2656), - [sym_number] = ACTIONS(2656), - [sym_this] = ACTIONS(2654), - [sym_super] = ACTIONS(2654), - [sym_true] = ACTIONS(2654), - [sym_false] = ACTIONS(2654), - [sym_null] = ACTIONS(2654), - [sym_undefined] = ACTIONS(2654), - [anon_sym_AT] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2654), - [anon_sym_readonly] = ACTIONS(2654), - [anon_sym_get] = ACTIONS(2654), - [anon_sym_set] = ACTIONS(2654), - [anon_sym_declare] = ACTIONS(2654), - [anon_sym_public] = ACTIONS(2654), - [anon_sym_private] = ACTIONS(2654), - [anon_sym_protected] = ACTIONS(2654), - [anon_sym_override] = ACTIONS(2654), - [anon_sym_module] = ACTIONS(2654), - [anon_sym_any] = ACTIONS(2654), - [anon_sym_number] = ACTIONS(2654), - [anon_sym_boolean] = ACTIONS(2654), - [anon_sym_string] = ACTIONS(2654), - [anon_sym_symbol] = ACTIONS(2654), - [anon_sym_property] = ACTIONS(2654), - [anon_sym_signal] = ACTIONS(2654), - [anon_sym_on] = ACTIONS(2654), - [anon_sym_required] = ACTIONS(2654), - [anon_sym_component] = ACTIONS(2654), - [anon_sym_abstract] = ACTIONS(2654), - [anon_sym_interface] = ACTIONS(2654), - [anon_sym_enum] = ACTIONS(2654), - }, - [820] = { - [sym_identifier] = ACTIONS(2658), - [anon_sym_export] = ACTIONS(2658), - [anon_sym_default] = ACTIONS(2658), - [anon_sym_type] = ACTIONS(2658), - [anon_sym_namespace] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2660), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_typeof] = ACTIONS(2658), - [anon_sym_import] = ACTIONS(2658), - [anon_sym_from] = ACTIONS(2658), - [anon_sym_var] = ACTIONS(2658), - [anon_sym_let] = ACTIONS(2658), - [anon_sym_const] = ACTIONS(2658), - [anon_sym_BANG] = ACTIONS(2660), - [anon_sym_else] = ACTIONS(2658), - [anon_sym_if] = ACTIONS(2658), - [anon_sym_switch] = ACTIONS(2658), - [anon_sym_for] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_await] = ACTIONS(2658), - [anon_sym_of] = ACTIONS(2658), - [anon_sym_while] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(2658), - [anon_sym_try] = ACTIONS(2658), - [anon_sym_with] = ACTIONS(2658), - [anon_sym_break] = ACTIONS(2658), - [anon_sym_continue] = ACTIONS(2658), - [anon_sym_debugger] = ACTIONS(2658), - [anon_sym_return] = ACTIONS(2658), - [anon_sym_throw] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2660), - [anon_sym_case] = ACTIONS(2658), - [anon_sym_yield] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2660), - [anon_sym_LTtemplate_GT] = ACTIONS(2660), - [anon_sym_LT] = ACTIONS(2658), - [anon_sym_SLASH] = ACTIONS(2658), - [anon_sym_class] = ACTIONS(2658), - [anon_sym_async] = ACTIONS(2658), - [anon_sym_function] = ACTIONS(2658), - [anon_sym_new] = ACTIONS(2658), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2660), - [anon_sym_void] = ACTIONS(2658), - [anon_sym_delete] = ACTIONS(2658), - [anon_sym_PLUS_PLUS] = ACTIONS(2660), - [anon_sym_DASH_DASH] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [anon_sym_SQUOTE] = ACTIONS(2660), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2660), - [sym_number] = ACTIONS(2660), - [sym_this] = ACTIONS(2658), - [sym_super] = ACTIONS(2658), - [sym_true] = ACTIONS(2658), - [sym_false] = ACTIONS(2658), - [sym_null] = ACTIONS(2658), - [sym_undefined] = ACTIONS(2658), - [anon_sym_AT] = ACTIONS(2660), - [anon_sym_static] = ACTIONS(2658), - [anon_sym_readonly] = ACTIONS(2658), - [anon_sym_get] = ACTIONS(2658), - [anon_sym_set] = ACTIONS(2658), - [anon_sym_declare] = ACTIONS(2658), - [anon_sym_public] = ACTIONS(2658), - [anon_sym_private] = ACTIONS(2658), - [anon_sym_protected] = ACTIONS(2658), - [anon_sym_override] = ACTIONS(2658), - [anon_sym_module] = ACTIONS(2658), - [anon_sym_any] = ACTIONS(2658), - [anon_sym_number] = ACTIONS(2658), - [anon_sym_boolean] = ACTIONS(2658), - [anon_sym_string] = ACTIONS(2658), - [anon_sym_symbol] = ACTIONS(2658), - [anon_sym_property] = ACTIONS(2658), - [anon_sym_signal] = ACTIONS(2658), - [anon_sym_on] = ACTIONS(2658), - [anon_sym_required] = ACTIONS(2658), - [anon_sym_component] = ACTIONS(2658), - [anon_sym_abstract] = ACTIONS(2658), - [anon_sym_interface] = ACTIONS(2658), - [anon_sym_enum] = ACTIONS(2658), - }, - [821] = { - [sym_identifier] = ACTIONS(2662), - [anon_sym_export] = ACTIONS(2662), - [anon_sym_default] = ACTIONS(2662), - [anon_sym_type] = ACTIONS(2662), - [anon_sym_namespace] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2664), - [anon_sym_RBRACE] = ACTIONS(2664), - [anon_sym_typeof] = ACTIONS(2662), - [anon_sym_import] = ACTIONS(2662), - [anon_sym_from] = ACTIONS(2662), - [anon_sym_var] = ACTIONS(2662), - [anon_sym_let] = ACTIONS(2662), - [anon_sym_const] = ACTIONS(2662), - [anon_sym_BANG] = ACTIONS(2664), - [anon_sym_else] = ACTIONS(2662), - [anon_sym_if] = ACTIONS(2662), - [anon_sym_switch] = ACTIONS(2662), - [anon_sym_for] = ACTIONS(2662), - [anon_sym_LPAREN] = ACTIONS(2664), - [anon_sym_await] = ACTIONS(2662), - [anon_sym_of] = ACTIONS(2662), - [anon_sym_while] = ACTIONS(2662), - [anon_sym_do] = ACTIONS(2662), - [anon_sym_try] = ACTIONS(2662), - [anon_sym_with] = ACTIONS(2662), - [anon_sym_break] = ACTIONS(2662), - [anon_sym_continue] = ACTIONS(2662), - [anon_sym_debugger] = ACTIONS(2662), - [anon_sym_return] = ACTIONS(2662), - [anon_sym_throw] = ACTIONS(2662), - [anon_sym_SEMI] = ACTIONS(2664), - [anon_sym_case] = ACTIONS(2662), - [anon_sym_yield] = ACTIONS(2662), - [anon_sym_LBRACK] = ACTIONS(2664), - [anon_sym_LTtemplate_GT] = ACTIONS(2664), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_SLASH] = ACTIONS(2662), - [anon_sym_class] = ACTIONS(2662), - [anon_sym_async] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_PLUS] = ACTIONS(2662), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_TILDE] = ACTIONS(2664), - [anon_sym_void] = ACTIONS(2662), - [anon_sym_delete] = ACTIONS(2662), - [anon_sym_PLUS_PLUS] = ACTIONS(2664), - [anon_sym_DASH_DASH] = ACTIONS(2664), - [anon_sym_DQUOTE] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2664), - [sym_number] = ACTIONS(2664), - [sym_this] = ACTIONS(2662), - [sym_super] = ACTIONS(2662), - [sym_true] = ACTIONS(2662), - [sym_false] = ACTIONS(2662), - [sym_null] = ACTIONS(2662), - [sym_undefined] = ACTIONS(2662), - [anon_sym_AT] = ACTIONS(2664), - [anon_sym_static] = ACTIONS(2662), - [anon_sym_readonly] = ACTIONS(2662), - [anon_sym_get] = ACTIONS(2662), - [anon_sym_set] = ACTIONS(2662), - [anon_sym_declare] = ACTIONS(2662), - [anon_sym_public] = ACTIONS(2662), - [anon_sym_private] = ACTIONS(2662), - [anon_sym_protected] = ACTIONS(2662), - [anon_sym_override] = ACTIONS(2662), - [anon_sym_module] = ACTIONS(2662), - [anon_sym_any] = ACTIONS(2662), - [anon_sym_number] = ACTIONS(2662), - [anon_sym_boolean] = ACTIONS(2662), - [anon_sym_string] = ACTIONS(2662), - [anon_sym_symbol] = ACTIONS(2662), - [anon_sym_property] = ACTIONS(2662), - [anon_sym_signal] = ACTIONS(2662), - [anon_sym_on] = ACTIONS(2662), - [anon_sym_required] = ACTIONS(2662), - [anon_sym_component] = ACTIONS(2662), - [anon_sym_abstract] = ACTIONS(2662), - [anon_sym_interface] = ACTIONS(2662), - [anon_sym_enum] = ACTIONS(2662), - }, - [822] = { - [sym_identifier] = ACTIONS(2666), - [anon_sym_export] = ACTIONS(2666), - [anon_sym_default] = ACTIONS(2666), - [anon_sym_type] = ACTIONS(2666), - [anon_sym_namespace] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2668), - [anon_sym_typeof] = ACTIONS(2666), - [anon_sym_import] = ACTIONS(2666), - [anon_sym_from] = ACTIONS(2666), - [anon_sym_var] = ACTIONS(2666), - [anon_sym_let] = ACTIONS(2666), - [anon_sym_const] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_else] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2666), - [anon_sym_switch] = ACTIONS(2666), - [anon_sym_for] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_await] = ACTIONS(2666), - [anon_sym_of] = ACTIONS(2666), - [anon_sym_while] = ACTIONS(2666), - [anon_sym_do] = ACTIONS(2666), - [anon_sym_try] = ACTIONS(2666), - [anon_sym_with] = ACTIONS(2666), - [anon_sym_break] = ACTIONS(2666), - [anon_sym_continue] = ACTIONS(2666), - [anon_sym_debugger] = ACTIONS(2666), - [anon_sym_return] = ACTIONS(2666), - [anon_sym_throw] = ACTIONS(2666), - [anon_sym_SEMI] = ACTIONS(2668), - [anon_sym_case] = ACTIONS(2666), - [anon_sym_yield] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2668), - [anon_sym_LTtemplate_GT] = ACTIONS(2668), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_SLASH] = ACTIONS(2666), - [anon_sym_class] = ACTIONS(2666), - [anon_sym_async] = ACTIONS(2666), - [anon_sym_function] = ACTIONS(2666), - [anon_sym_new] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_void] = ACTIONS(2666), - [anon_sym_delete] = ACTIONS(2666), - [anon_sym_PLUS_PLUS] = ACTIONS(2668), - [anon_sym_DASH_DASH] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2668), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2668), - [sym_number] = ACTIONS(2668), - [sym_this] = ACTIONS(2666), - [sym_super] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_null] = ACTIONS(2666), - [sym_undefined] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), - [anon_sym_static] = ACTIONS(2666), - [anon_sym_readonly] = ACTIONS(2666), - [anon_sym_get] = ACTIONS(2666), - [anon_sym_set] = ACTIONS(2666), - [anon_sym_declare] = ACTIONS(2666), - [anon_sym_public] = ACTIONS(2666), - [anon_sym_private] = ACTIONS(2666), - [anon_sym_protected] = ACTIONS(2666), - [anon_sym_override] = ACTIONS(2666), - [anon_sym_module] = ACTIONS(2666), - [anon_sym_any] = ACTIONS(2666), - [anon_sym_number] = ACTIONS(2666), - [anon_sym_boolean] = ACTIONS(2666), - [anon_sym_string] = ACTIONS(2666), - [anon_sym_symbol] = ACTIONS(2666), - [anon_sym_property] = ACTIONS(2666), - [anon_sym_signal] = ACTIONS(2666), - [anon_sym_on] = ACTIONS(2666), - [anon_sym_required] = ACTIONS(2666), - [anon_sym_component] = ACTIONS(2666), - [anon_sym_abstract] = ACTIONS(2666), - [anon_sym_interface] = ACTIONS(2666), - [anon_sym_enum] = ACTIONS(2666), - }, - [823] = { - [sym_identifier] = ACTIONS(2670), - [anon_sym_export] = ACTIONS(2670), - [anon_sym_default] = ACTIONS(2670), - [anon_sym_type] = ACTIONS(2670), - [anon_sym_namespace] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2672), - [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_typeof] = ACTIONS(2670), - [anon_sym_import] = ACTIONS(2670), - [anon_sym_from] = ACTIONS(2670), - [anon_sym_var] = ACTIONS(2670), - [anon_sym_let] = ACTIONS(2670), - [anon_sym_const] = ACTIONS(2670), - [anon_sym_BANG] = ACTIONS(2672), - [anon_sym_else] = ACTIONS(2670), - [anon_sym_if] = ACTIONS(2670), - [anon_sym_switch] = ACTIONS(2670), - [anon_sym_for] = ACTIONS(2670), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_await] = ACTIONS(2670), - [anon_sym_of] = ACTIONS(2670), - [anon_sym_while] = ACTIONS(2670), - [anon_sym_do] = ACTIONS(2670), - [anon_sym_try] = ACTIONS(2670), - [anon_sym_with] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_debugger] = ACTIONS(2670), - [anon_sym_return] = ACTIONS(2670), - [anon_sym_throw] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2672), - [anon_sym_case] = ACTIONS(2670), - [anon_sym_yield] = ACTIONS(2670), - [anon_sym_LBRACK] = ACTIONS(2672), - [anon_sym_LTtemplate_GT] = ACTIONS(2672), - [anon_sym_LT] = ACTIONS(2670), - [anon_sym_SLASH] = ACTIONS(2670), - [anon_sym_class] = ACTIONS(2670), - [anon_sym_async] = ACTIONS(2670), - [anon_sym_function] = ACTIONS(2670), - [anon_sym_new] = ACTIONS(2670), - [anon_sym_PLUS] = ACTIONS(2670), - [anon_sym_DASH] = ACTIONS(2670), - [anon_sym_TILDE] = ACTIONS(2672), - [anon_sym_void] = ACTIONS(2670), - [anon_sym_delete] = ACTIONS(2670), - [anon_sym_PLUS_PLUS] = ACTIONS(2672), - [anon_sym_DASH_DASH] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2672), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2672), - [sym_number] = ACTIONS(2672), - [sym_this] = ACTIONS(2670), - [sym_super] = ACTIONS(2670), - [sym_true] = ACTIONS(2670), - [sym_false] = ACTIONS(2670), - [sym_null] = ACTIONS(2670), - [sym_undefined] = ACTIONS(2670), - [anon_sym_AT] = ACTIONS(2672), - [anon_sym_static] = ACTIONS(2670), - [anon_sym_readonly] = ACTIONS(2670), - [anon_sym_get] = ACTIONS(2670), - [anon_sym_set] = ACTIONS(2670), - [anon_sym_declare] = ACTIONS(2670), - [anon_sym_public] = ACTIONS(2670), - [anon_sym_private] = ACTIONS(2670), - [anon_sym_protected] = ACTIONS(2670), - [anon_sym_override] = ACTIONS(2670), - [anon_sym_module] = ACTIONS(2670), - [anon_sym_any] = ACTIONS(2670), - [anon_sym_number] = ACTIONS(2670), - [anon_sym_boolean] = ACTIONS(2670), - [anon_sym_string] = ACTIONS(2670), - [anon_sym_symbol] = ACTIONS(2670), - [anon_sym_property] = ACTIONS(2670), - [anon_sym_signal] = ACTIONS(2670), - [anon_sym_on] = ACTIONS(2670), - [anon_sym_required] = ACTIONS(2670), - [anon_sym_component] = ACTIONS(2670), - [anon_sym_abstract] = ACTIONS(2670), - [anon_sym_interface] = ACTIONS(2670), - [anon_sym_enum] = ACTIONS(2670), - }, - [824] = { - [sym_identifier] = ACTIONS(2674), - [anon_sym_export] = ACTIONS(2674), - [anon_sym_default] = ACTIONS(2674), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_namespace] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2676), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_typeof] = ACTIONS(2674), - [anon_sym_import] = ACTIONS(2674), - [anon_sym_from] = ACTIONS(2674), - [anon_sym_var] = ACTIONS(2674), - [anon_sym_let] = ACTIONS(2674), - [anon_sym_const] = ACTIONS(2674), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_else] = ACTIONS(2674), - [anon_sym_if] = ACTIONS(2674), - [anon_sym_switch] = ACTIONS(2674), - [anon_sym_for] = ACTIONS(2674), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym_await] = ACTIONS(2674), - [anon_sym_of] = ACTIONS(2674), - [anon_sym_while] = ACTIONS(2674), - [anon_sym_do] = ACTIONS(2674), - [anon_sym_try] = ACTIONS(2674), - [anon_sym_with] = ACTIONS(2674), - [anon_sym_break] = ACTIONS(2674), - [anon_sym_continue] = ACTIONS(2674), - [anon_sym_debugger] = ACTIONS(2674), - [anon_sym_return] = ACTIONS(2674), - [anon_sym_throw] = ACTIONS(2674), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_case] = ACTIONS(2674), - [anon_sym_yield] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2676), - [anon_sym_LTtemplate_GT] = ACTIONS(2676), - [anon_sym_LT] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2674), - [anon_sym_class] = ACTIONS(2674), - [anon_sym_async] = ACTIONS(2674), - [anon_sym_function] = ACTIONS(2674), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_TILDE] = ACTIONS(2676), - [anon_sym_void] = ACTIONS(2674), - [anon_sym_delete] = ACTIONS(2674), - [anon_sym_PLUS_PLUS] = ACTIONS(2676), - [anon_sym_DASH_DASH] = ACTIONS(2676), - [anon_sym_DQUOTE] = ACTIONS(2676), - [anon_sym_SQUOTE] = ACTIONS(2676), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2676), - [sym_number] = ACTIONS(2676), - [sym_this] = ACTIONS(2674), - [sym_super] = ACTIONS(2674), - [sym_true] = ACTIONS(2674), - [sym_false] = ACTIONS(2674), - [sym_null] = ACTIONS(2674), - [sym_undefined] = ACTIONS(2674), - [anon_sym_AT] = ACTIONS(2676), - [anon_sym_static] = ACTIONS(2674), - [anon_sym_readonly] = ACTIONS(2674), - [anon_sym_get] = ACTIONS(2674), - [anon_sym_set] = ACTIONS(2674), - [anon_sym_declare] = ACTIONS(2674), - [anon_sym_public] = ACTIONS(2674), - [anon_sym_private] = ACTIONS(2674), - [anon_sym_protected] = ACTIONS(2674), - [anon_sym_override] = ACTIONS(2674), - [anon_sym_module] = ACTIONS(2674), - [anon_sym_any] = ACTIONS(2674), - [anon_sym_number] = ACTIONS(2674), - [anon_sym_boolean] = ACTIONS(2674), - [anon_sym_string] = ACTIONS(2674), - [anon_sym_symbol] = ACTIONS(2674), - [anon_sym_property] = ACTIONS(2674), - [anon_sym_signal] = ACTIONS(2674), - [anon_sym_on] = ACTIONS(2674), - [anon_sym_required] = ACTIONS(2674), - [anon_sym_component] = ACTIONS(2674), - [anon_sym_abstract] = ACTIONS(2674), - [anon_sym_interface] = ACTIONS(2674), - [anon_sym_enum] = ACTIONS(2674), - }, - [825] = { - [sym_identifier] = ACTIONS(2678), - [anon_sym_export] = ACTIONS(2678), - [anon_sym_default] = ACTIONS(2678), - [anon_sym_type] = ACTIONS(2678), - [anon_sym_namespace] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_typeof] = ACTIONS(2678), - [anon_sym_import] = ACTIONS(2678), - [anon_sym_from] = ACTIONS(2678), - [anon_sym_var] = ACTIONS(2678), - [anon_sym_let] = ACTIONS(2678), - [anon_sym_const] = ACTIONS(2678), - [anon_sym_BANG] = ACTIONS(2680), - [anon_sym_else] = ACTIONS(2678), - [anon_sym_if] = ACTIONS(2678), - [anon_sym_switch] = ACTIONS(2678), - [anon_sym_for] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2680), - [anon_sym_await] = ACTIONS(2678), - [anon_sym_of] = ACTIONS(2678), - [anon_sym_while] = ACTIONS(2678), - [anon_sym_do] = ACTIONS(2678), - [anon_sym_try] = ACTIONS(2678), - [anon_sym_with] = ACTIONS(2678), - [anon_sym_break] = ACTIONS(2678), - [anon_sym_continue] = ACTIONS(2678), - [anon_sym_debugger] = ACTIONS(2678), - [anon_sym_return] = ACTIONS(2678), - [anon_sym_throw] = ACTIONS(2678), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_case] = ACTIONS(2678), - [anon_sym_yield] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_LTtemplate_GT] = ACTIONS(2680), - [anon_sym_LT] = ACTIONS(2678), - [anon_sym_SLASH] = ACTIONS(2678), - [anon_sym_class] = ACTIONS(2678), - [anon_sym_async] = ACTIONS(2678), - [anon_sym_function] = ACTIONS(2678), - [anon_sym_new] = ACTIONS(2678), - [anon_sym_PLUS] = ACTIONS(2678), - [anon_sym_DASH] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_void] = ACTIONS(2678), - [anon_sym_delete] = ACTIONS(2678), - [anon_sym_PLUS_PLUS] = ACTIONS(2680), - [anon_sym_DASH_DASH] = ACTIONS(2680), - [anon_sym_DQUOTE] = ACTIONS(2680), - [anon_sym_SQUOTE] = ACTIONS(2680), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2680), - [sym_number] = ACTIONS(2680), - [sym_this] = ACTIONS(2678), - [sym_super] = ACTIONS(2678), - [sym_true] = ACTIONS(2678), - [sym_false] = ACTIONS(2678), - [sym_null] = ACTIONS(2678), - [sym_undefined] = ACTIONS(2678), - [anon_sym_AT] = ACTIONS(2680), - [anon_sym_static] = ACTIONS(2678), - [anon_sym_readonly] = ACTIONS(2678), - [anon_sym_get] = ACTIONS(2678), - [anon_sym_set] = ACTIONS(2678), - [anon_sym_declare] = ACTIONS(2678), - [anon_sym_public] = ACTIONS(2678), - [anon_sym_private] = ACTIONS(2678), - [anon_sym_protected] = ACTIONS(2678), - [anon_sym_override] = ACTIONS(2678), - [anon_sym_module] = ACTIONS(2678), - [anon_sym_any] = ACTIONS(2678), - [anon_sym_number] = ACTIONS(2678), - [anon_sym_boolean] = ACTIONS(2678), - [anon_sym_string] = ACTIONS(2678), - [anon_sym_symbol] = ACTIONS(2678), - [anon_sym_property] = ACTIONS(2678), - [anon_sym_signal] = ACTIONS(2678), - [anon_sym_on] = ACTIONS(2678), - [anon_sym_required] = ACTIONS(2678), - [anon_sym_component] = ACTIONS(2678), - [anon_sym_abstract] = ACTIONS(2678), - [anon_sym_interface] = ACTIONS(2678), - [anon_sym_enum] = ACTIONS(2678), - }, - [826] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [827] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [828] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [829] = { - [sym_identifier] = ACTIONS(2666), - [anon_sym_export] = ACTIONS(2666), - [anon_sym_default] = ACTIONS(2666), - [anon_sym_type] = ACTIONS(2666), - [anon_sym_namespace] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2668), - [anon_sym_typeof] = ACTIONS(2666), - [anon_sym_import] = ACTIONS(2666), - [anon_sym_from] = ACTIONS(2666), - [anon_sym_var] = ACTIONS(2666), - [anon_sym_let] = ACTIONS(2666), - [anon_sym_const] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2668), - [anon_sym_else] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2666), - [anon_sym_switch] = ACTIONS(2666), - [anon_sym_for] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_await] = ACTIONS(2666), - [anon_sym_of] = ACTIONS(2666), - [anon_sym_while] = ACTIONS(2666), - [anon_sym_do] = ACTIONS(2666), - [anon_sym_try] = ACTIONS(2666), - [anon_sym_with] = ACTIONS(2666), - [anon_sym_break] = ACTIONS(2666), - [anon_sym_continue] = ACTIONS(2666), - [anon_sym_debugger] = ACTIONS(2666), - [anon_sym_return] = ACTIONS(2666), - [anon_sym_throw] = ACTIONS(2666), - [anon_sym_SEMI] = ACTIONS(2668), - [anon_sym_case] = ACTIONS(2666), - [anon_sym_yield] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2668), - [anon_sym_LTtemplate_GT] = ACTIONS(2668), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_SLASH] = ACTIONS(2666), - [anon_sym_class] = ACTIONS(2666), - [anon_sym_async] = ACTIONS(2666), - [anon_sym_function] = ACTIONS(2666), - [anon_sym_new] = ACTIONS(2666), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2668), - [anon_sym_void] = ACTIONS(2666), - [anon_sym_delete] = ACTIONS(2666), - [anon_sym_PLUS_PLUS] = ACTIONS(2668), - [anon_sym_DASH_DASH] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2668), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2668), - [sym_number] = ACTIONS(2668), - [sym_this] = ACTIONS(2666), - [sym_super] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_null] = ACTIONS(2666), - [sym_undefined] = ACTIONS(2666), - [anon_sym_AT] = ACTIONS(2668), - [anon_sym_static] = ACTIONS(2666), - [anon_sym_readonly] = ACTIONS(2666), - [anon_sym_get] = ACTIONS(2666), - [anon_sym_set] = ACTIONS(2666), - [anon_sym_declare] = ACTIONS(2666), - [anon_sym_public] = ACTIONS(2666), - [anon_sym_private] = ACTIONS(2666), - [anon_sym_protected] = ACTIONS(2666), - [anon_sym_override] = ACTIONS(2666), - [anon_sym_module] = ACTIONS(2666), - [anon_sym_any] = ACTIONS(2666), - [anon_sym_number] = ACTIONS(2666), - [anon_sym_boolean] = ACTIONS(2666), - [anon_sym_string] = ACTIONS(2666), - [anon_sym_symbol] = ACTIONS(2666), - [anon_sym_property] = ACTIONS(2666), - [anon_sym_signal] = ACTIONS(2666), - [anon_sym_on] = ACTIONS(2666), - [anon_sym_required] = ACTIONS(2666), - [anon_sym_component] = ACTIONS(2666), - [anon_sym_abstract] = ACTIONS(2666), - [anon_sym_interface] = ACTIONS(2666), - [anon_sym_enum] = ACTIONS(2666), - }, - [830] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [831] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [832] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [833] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [834] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [835] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [836] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [837] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [838] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [839] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [840] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [841] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [842] = { - [sym_identifier] = ACTIONS(2686), - [anon_sym_export] = ACTIONS(2686), - [anon_sym_default] = ACTIONS(2686), - [anon_sym_type] = ACTIONS(2686), - [anon_sym_namespace] = ACTIONS(2686), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_RBRACE] = ACTIONS(2688), - [anon_sym_typeof] = ACTIONS(2686), - [anon_sym_import] = ACTIONS(2686), - [anon_sym_from] = ACTIONS(2686), - [anon_sym_var] = ACTIONS(2686), - [anon_sym_let] = ACTIONS(2686), - [anon_sym_const] = ACTIONS(2686), - [anon_sym_BANG] = ACTIONS(2688), - [anon_sym_else] = ACTIONS(2686), - [anon_sym_if] = ACTIONS(2686), - [anon_sym_switch] = ACTIONS(2686), - [anon_sym_for] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2688), - [anon_sym_await] = ACTIONS(2686), - [anon_sym_of] = ACTIONS(2686), - [anon_sym_while] = ACTIONS(2686), - [anon_sym_do] = ACTIONS(2686), - [anon_sym_try] = ACTIONS(2686), - [anon_sym_with] = ACTIONS(2686), - [anon_sym_break] = ACTIONS(2686), - [anon_sym_continue] = ACTIONS(2686), - [anon_sym_debugger] = ACTIONS(2686), - [anon_sym_return] = ACTIONS(2686), - [anon_sym_throw] = ACTIONS(2686), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_case] = ACTIONS(2686), - [anon_sym_yield] = ACTIONS(2686), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_LTtemplate_GT] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2686), - [anon_sym_SLASH] = ACTIONS(2686), - [anon_sym_class] = ACTIONS(2686), - [anon_sym_async] = ACTIONS(2686), - [anon_sym_function] = ACTIONS(2686), - [anon_sym_new] = ACTIONS(2686), - [anon_sym_PLUS] = ACTIONS(2686), - [anon_sym_DASH] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2688), - [anon_sym_void] = ACTIONS(2686), - [anon_sym_delete] = ACTIONS(2686), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_DQUOTE] = ACTIONS(2688), - [anon_sym_SQUOTE] = ACTIONS(2688), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2688), - [sym_number] = ACTIONS(2688), - [sym_this] = ACTIONS(2686), - [sym_super] = ACTIONS(2686), - [sym_true] = ACTIONS(2686), - [sym_false] = ACTIONS(2686), - [sym_null] = ACTIONS(2686), - [sym_undefined] = ACTIONS(2686), - [anon_sym_AT] = ACTIONS(2688), - [anon_sym_static] = ACTIONS(2686), - [anon_sym_readonly] = ACTIONS(2686), - [anon_sym_get] = ACTIONS(2686), - [anon_sym_set] = ACTIONS(2686), - [anon_sym_declare] = ACTIONS(2686), - [anon_sym_public] = ACTIONS(2686), - [anon_sym_private] = ACTIONS(2686), - [anon_sym_protected] = ACTIONS(2686), - [anon_sym_override] = ACTIONS(2686), - [anon_sym_module] = ACTIONS(2686), - [anon_sym_any] = ACTIONS(2686), - [anon_sym_number] = ACTIONS(2686), - [anon_sym_boolean] = ACTIONS(2686), - [anon_sym_string] = ACTIONS(2686), - [anon_sym_symbol] = ACTIONS(2686), - [anon_sym_property] = ACTIONS(2686), - [anon_sym_signal] = ACTIONS(2686), - [anon_sym_on] = ACTIONS(2686), - [anon_sym_required] = ACTIONS(2686), - [anon_sym_component] = ACTIONS(2686), - [anon_sym_abstract] = ACTIONS(2686), - [anon_sym_interface] = ACTIONS(2686), - [anon_sym_enum] = ACTIONS(2686), - }, - [843] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [844] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [845] = { - [sym_identifier] = ACTIONS(2690), - [anon_sym_export] = ACTIONS(2690), - [anon_sym_default] = ACTIONS(2690), - [anon_sym_type] = ACTIONS(2690), - [anon_sym_namespace] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2692), - [anon_sym_RBRACE] = ACTIONS(2692), - [anon_sym_typeof] = ACTIONS(2690), - [anon_sym_import] = ACTIONS(2690), - [anon_sym_from] = ACTIONS(2690), - [anon_sym_var] = ACTIONS(2690), - [anon_sym_let] = ACTIONS(2690), - [anon_sym_const] = ACTIONS(2690), - [anon_sym_BANG] = ACTIONS(2692), - [anon_sym_else] = ACTIONS(2690), - [anon_sym_if] = ACTIONS(2690), - [anon_sym_switch] = ACTIONS(2690), - [anon_sym_for] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2692), - [anon_sym_await] = ACTIONS(2690), - [anon_sym_of] = ACTIONS(2690), - [anon_sym_while] = ACTIONS(2690), - [anon_sym_do] = ACTIONS(2690), - [anon_sym_try] = ACTIONS(2690), - [anon_sym_with] = ACTIONS(2690), - [anon_sym_break] = ACTIONS(2690), - [anon_sym_continue] = ACTIONS(2690), - [anon_sym_debugger] = ACTIONS(2690), - [anon_sym_return] = ACTIONS(2690), - [anon_sym_throw] = ACTIONS(2690), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_case] = ACTIONS(2690), - [anon_sym_yield] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(2692), - [anon_sym_LTtemplate_GT] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(2690), - [anon_sym_SLASH] = ACTIONS(2690), - [anon_sym_class] = ACTIONS(2690), - [anon_sym_async] = ACTIONS(2690), - [anon_sym_function] = ACTIONS(2690), - [anon_sym_new] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2690), - [anon_sym_DASH] = ACTIONS(2690), - [anon_sym_TILDE] = ACTIONS(2692), - [anon_sym_void] = ACTIONS(2690), - [anon_sym_delete] = ACTIONS(2690), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_DQUOTE] = ACTIONS(2692), - [anon_sym_SQUOTE] = ACTIONS(2692), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2692), - [sym_number] = ACTIONS(2692), - [sym_this] = ACTIONS(2690), - [sym_super] = ACTIONS(2690), - [sym_true] = ACTIONS(2690), - [sym_false] = ACTIONS(2690), - [sym_null] = ACTIONS(2690), - [sym_undefined] = ACTIONS(2690), - [anon_sym_AT] = ACTIONS(2692), - [anon_sym_static] = ACTIONS(2690), - [anon_sym_readonly] = ACTIONS(2690), - [anon_sym_get] = ACTIONS(2690), - [anon_sym_set] = ACTIONS(2690), - [anon_sym_declare] = ACTIONS(2690), - [anon_sym_public] = ACTIONS(2690), - [anon_sym_private] = ACTIONS(2690), - [anon_sym_protected] = ACTIONS(2690), - [anon_sym_override] = ACTIONS(2690), - [anon_sym_module] = ACTIONS(2690), - [anon_sym_any] = ACTIONS(2690), - [anon_sym_number] = ACTIONS(2690), - [anon_sym_boolean] = ACTIONS(2690), - [anon_sym_string] = ACTIONS(2690), - [anon_sym_symbol] = ACTIONS(2690), - [anon_sym_property] = ACTIONS(2690), - [anon_sym_signal] = ACTIONS(2690), - [anon_sym_on] = ACTIONS(2690), - [anon_sym_required] = ACTIONS(2690), - [anon_sym_component] = ACTIONS(2690), - [anon_sym_abstract] = ACTIONS(2690), - [anon_sym_interface] = ACTIONS(2690), - [anon_sym_enum] = ACTIONS(2690), - }, - [846] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [847] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [848] = { - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(2682), - [anon_sym_default] = ACTIONS(2682), - [anon_sym_type] = ACTIONS(2682), - [anon_sym_namespace] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_RBRACE] = ACTIONS(2684), - [anon_sym_typeof] = ACTIONS(2682), - [anon_sym_import] = ACTIONS(2682), - [anon_sym_from] = ACTIONS(2682), - [anon_sym_var] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2682), - [anon_sym_if] = ACTIONS(2682), - [anon_sym_switch] = ACTIONS(2682), - [anon_sym_for] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2684), - [anon_sym_await] = ACTIONS(2682), - [anon_sym_of] = ACTIONS(2682), - [anon_sym_while] = ACTIONS(2682), - [anon_sym_do] = ACTIONS(2682), - [anon_sym_try] = ACTIONS(2682), - [anon_sym_with] = ACTIONS(2682), - [anon_sym_break] = ACTIONS(2682), - [anon_sym_continue] = ACTIONS(2682), - [anon_sym_debugger] = ACTIONS(2682), - [anon_sym_return] = ACTIONS(2682), - [anon_sym_throw] = ACTIONS(2682), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_case] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_LTtemplate_GT] = ACTIONS(2684), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_SLASH] = ACTIONS(2682), - [anon_sym_class] = ACTIONS(2682), - [anon_sym_async] = ACTIONS(2682), - [anon_sym_function] = ACTIONS(2682), - [anon_sym_new] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2682), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_void] = ACTIONS(2682), - [anon_sym_delete] = ACTIONS(2682), - [anon_sym_PLUS_PLUS] = ACTIONS(2684), - [anon_sym_DASH_DASH] = ACTIONS(2684), - [anon_sym_DQUOTE] = ACTIONS(2684), - [anon_sym_SQUOTE] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2684), - [sym_number] = ACTIONS(2684), - [sym_this] = ACTIONS(2682), - [sym_super] = ACTIONS(2682), - [sym_true] = ACTIONS(2682), - [sym_false] = ACTIONS(2682), - [sym_null] = ACTIONS(2682), - [sym_undefined] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2682), - [anon_sym_readonly] = ACTIONS(2682), - [anon_sym_get] = ACTIONS(2682), - [anon_sym_set] = ACTIONS(2682), - [anon_sym_declare] = ACTIONS(2682), - [anon_sym_public] = ACTIONS(2682), - [anon_sym_private] = ACTIONS(2682), - [anon_sym_protected] = ACTIONS(2682), - [anon_sym_override] = ACTIONS(2682), - [anon_sym_module] = ACTIONS(2682), - [anon_sym_any] = ACTIONS(2682), - [anon_sym_number] = ACTIONS(2682), - [anon_sym_boolean] = ACTIONS(2682), - [anon_sym_string] = ACTIONS(2682), - [anon_sym_symbol] = ACTIONS(2682), - [anon_sym_property] = ACTIONS(2682), - [anon_sym_signal] = ACTIONS(2682), - [anon_sym_on] = ACTIONS(2682), - [anon_sym_required] = ACTIONS(2682), - [anon_sym_component] = ACTIONS(2682), - [anon_sym_abstract] = ACTIONS(2682), - [anon_sym_interface] = ACTIONS(2682), - [anon_sym_enum] = ACTIONS(2682), - }, - [849] = { - [sym_identifier] = ACTIONS(2694), - [anon_sym_export] = ACTIONS(2694), - [anon_sym_default] = ACTIONS(2694), - [anon_sym_type] = ACTIONS(2694), - [anon_sym_namespace] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_RBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(2694), - [anon_sym_import] = ACTIONS(2694), - [anon_sym_from] = ACTIONS(2694), - [anon_sym_var] = ACTIONS(2694), - [anon_sym_let] = ACTIONS(2694), - [anon_sym_const] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2696), - [anon_sym_else] = ACTIONS(2694), - [anon_sym_if] = ACTIONS(2694), - [anon_sym_switch] = ACTIONS(2694), - [anon_sym_for] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2696), - [anon_sym_await] = ACTIONS(2694), - [anon_sym_of] = ACTIONS(2694), - [anon_sym_while] = ACTIONS(2694), - [anon_sym_do] = ACTIONS(2694), - [anon_sym_try] = ACTIONS(2694), - [anon_sym_with] = ACTIONS(2694), - [anon_sym_break] = ACTIONS(2694), - [anon_sym_continue] = ACTIONS(2694), - [anon_sym_debugger] = ACTIONS(2694), - [anon_sym_return] = ACTIONS(2694), - [anon_sym_throw] = ACTIONS(2694), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_case] = ACTIONS(2694), - [anon_sym_yield] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2696), - [anon_sym_LTtemplate_GT] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_class] = ACTIONS(2694), - [anon_sym_async] = ACTIONS(2694), - [anon_sym_function] = ACTIONS(2694), - [anon_sym_new] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_void] = ACTIONS(2694), - [anon_sym_delete] = ACTIONS(2694), - [anon_sym_PLUS_PLUS] = ACTIONS(2696), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_DQUOTE] = ACTIONS(2696), - [anon_sym_SQUOTE] = ACTIONS(2696), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2696), - [sym_number] = ACTIONS(2696), - [sym_this] = ACTIONS(2694), - [sym_super] = ACTIONS(2694), - [sym_true] = ACTIONS(2694), - [sym_false] = ACTIONS(2694), - [sym_null] = ACTIONS(2694), - [sym_undefined] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2696), - [anon_sym_static] = ACTIONS(2694), - [anon_sym_readonly] = ACTIONS(2694), - [anon_sym_get] = ACTIONS(2694), - [anon_sym_set] = ACTIONS(2694), - [anon_sym_declare] = ACTIONS(2694), - [anon_sym_public] = ACTIONS(2694), - [anon_sym_private] = ACTIONS(2694), - [anon_sym_protected] = ACTIONS(2694), - [anon_sym_override] = ACTIONS(2694), - [anon_sym_module] = ACTIONS(2694), - [anon_sym_any] = ACTIONS(2694), - [anon_sym_number] = ACTIONS(2694), - [anon_sym_boolean] = ACTIONS(2694), - [anon_sym_string] = ACTIONS(2694), - [anon_sym_symbol] = ACTIONS(2694), - [anon_sym_property] = ACTIONS(2694), - [anon_sym_signal] = ACTIONS(2694), - [anon_sym_on] = ACTIONS(2694), - [anon_sym_required] = ACTIONS(2694), - [anon_sym_component] = ACTIONS(2694), - [anon_sym_abstract] = ACTIONS(2694), - [anon_sym_interface] = ACTIONS(2694), - [anon_sym_enum] = ACTIONS(2694), - }, - [850] = { - [sym_identifier] = ACTIONS(2698), - [anon_sym_export] = ACTIONS(2698), - [anon_sym_default] = ACTIONS(2698), - [anon_sym_type] = ACTIONS(2698), - [anon_sym_namespace] = ACTIONS(2698), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_typeof] = ACTIONS(2698), - [anon_sym_import] = ACTIONS(2698), - [anon_sym_from] = ACTIONS(2698), - [anon_sym_var] = ACTIONS(2698), - [anon_sym_let] = ACTIONS(2698), - [anon_sym_const] = ACTIONS(2698), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_else] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2698), - [anon_sym_switch] = ACTIONS(2698), - [anon_sym_for] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_await] = ACTIONS(2698), - [anon_sym_of] = ACTIONS(2698), - [anon_sym_while] = ACTIONS(2698), - [anon_sym_do] = ACTIONS(2698), - [anon_sym_try] = ACTIONS(2698), - [anon_sym_with] = ACTIONS(2698), - [anon_sym_break] = ACTIONS(2698), - [anon_sym_continue] = ACTIONS(2698), - [anon_sym_debugger] = ACTIONS(2698), - [anon_sym_return] = ACTIONS(2698), - [anon_sym_throw] = ACTIONS(2698), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_case] = ACTIONS(2698), - [anon_sym_yield] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2700), - [anon_sym_LTtemplate_GT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2698), - [anon_sym_class] = ACTIONS(2698), - [anon_sym_async] = ACTIONS(2698), - [anon_sym_function] = ACTIONS(2698), - [anon_sym_new] = ACTIONS(2698), - [anon_sym_PLUS] = ACTIONS(2698), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_void] = ACTIONS(2698), - [anon_sym_delete] = ACTIONS(2698), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2700), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2700), - [sym_number] = ACTIONS(2700), - [sym_this] = ACTIONS(2698), - [sym_super] = ACTIONS(2698), - [sym_true] = ACTIONS(2698), - [sym_false] = ACTIONS(2698), - [sym_null] = ACTIONS(2698), - [sym_undefined] = ACTIONS(2698), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_readonly] = ACTIONS(2698), - [anon_sym_get] = ACTIONS(2698), - [anon_sym_set] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2698), - [anon_sym_public] = ACTIONS(2698), - [anon_sym_private] = ACTIONS(2698), - [anon_sym_protected] = ACTIONS(2698), - [anon_sym_override] = ACTIONS(2698), - [anon_sym_module] = ACTIONS(2698), - [anon_sym_any] = ACTIONS(2698), - [anon_sym_number] = ACTIONS(2698), - [anon_sym_boolean] = ACTIONS(2698), - [anon_sym_string] = ACTIONS(2698), - [anon_sym_symbol] = ACTIONS(2698), - [anon_sym_property] = ACTIONS(2698), - [anon_sym_signal] = ACTIONS(2698), - [anon_sym_on] = ACTIONS(2698), - [anon_sym_required] = ACTIONS(2698), - [anon_sym_component] = ACTIONS(2698), - [anon_sym_abstract] = ACTIONS(2698), - [anon_sym_interface] = ACTIONS(2698), - [anon_sym_enum] = ACTIONS(2698), - }, - [851] = { - [sym_identifier] = ACTIONS(2702), - [anon_sym_export] = ACTIONS(2702), - [anon_sym_default] = ACTIONS(2702), - [anon_sym_type] = ACTIONS(2702), - [anon_sym_namespace] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_typeof] = ACTIONS(2702), - [anon_sym_import] = ACTIONS(2702), - [anon_sym_from] = ACTIONS(2702), - [anon_sym_var] = ACTIONS(2702), - [anon_sym_let] = ACTIONS(2702), - [anon_sym_const] = ACTIONS(2702), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_else] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2702), - [anon_sym_switch] = ACTIONS(2702), - [anon_sym_for] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_await] = ACTIONS(2702), - [anon_sym_of] = ACTIONS(2702), - [anon_sym_while] = ACTIONS(2702), - [anon_sym_do] = ACTIONS(2702), - [anon_sym_try] = ACTIONS(2702), - [anon_sym_with] = ACTIONS(2702), - [anon_sym_break] = ACTIONS(2702), - [anon_sym_continue] = ACTIONS(2702), - [anon_sym_debugger] = ACTIONS(2702), - [anon_sym_return] = ACTIONS(2702), - [anon_sym_throw] = ACTIONS(2702), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_case] = ACTIONS(2702), - [anon_sym_yield] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_LTtemplate_GT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_SLASH] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(2702), - [anon_sym_async] = ACTIONS(2702), - [anon_sym_function] = ACTIONS(2702), - [anon_sym_new] = ACTIONS(2702), - [anon_sym_PLUS] = ACTIONS(2702), - [anon_sym_DASH] = ACTIONS(2702), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_void] = ACTIONS(2702), - [anon_sym_delete] = ACTIONS(2702), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_DQUOTE] = ACTIONS(2704), - [anon_sym_SQUOTE] = ACTIONS(2704), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2704), - [sym_number] = ACTIONS(2704), - [sym_this] = ACTIONS(2702), - [sym_super] = ACTIONS(2702), - [sym_true] = ACTIONS(2702), - [sym_false] = ACTIONS(2702), - [sym_null] = ACTIONS(2702), - [sym_undefined] = ACTIONS(2702), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_static] = ACTIONS(2702), - [anon_sym_readonly] = ACTIONS(2702), - [anon_sym_get] = ACTIONS(2702), - [anon_sym_set] = ACTIONS(2702), - [anon_sym_declare] = ACTIONS(2702), - [anon_sym_public] = ACTIONS(2702), - [anon_sym_private] = ACTIONS(2702), - [anon_sym_protected] = ACTIONS(2702), - [anon_sym_override] = ACTIONS(2702), - [anon_sym_module] = ACTIONS(2702), - [anon_sym_any] = ACTIONS(2702), - [anon_sym_number] = ACTIONS(2702), - [anon_sym_boolean] = ACTIONS(2702), - [anon_sym_string] = ACTIONS(2702), - [anon_sym_symbol] = ACTIONS(2702), - [anon_sym_property] = ACTIONS(2702), - [anon_sym_signal] = ACTIONS(2702), - [anon_sym_on] = ACTIONS(2702), - [anon_sym_required] = ACTIONS(2702), - [anon_sym_component] = ACTIONS(2702), - [anon_sym_abstract] = ACTIONS(2702), - [anon_sym_interface] = ACTIONS(2702), - [anon_sym_enum] = ACTIONS(2702), - }, - [852] = { - [sym_identifier] = ACTIONS(2706), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_typeof] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_from] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_await] = ACTIONS(2706), - [anon_sym_of] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_with] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_debugger] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_yield] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_LTtemplate_GT] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2708), - [sym_number] = ACTIONS(2708), - [sym_this] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_undefined] = ACTIONS(2706), - [anon_sym_AT] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_readonly] = ACTIONS(2706), - [anon_sym_get] = ACTIONS(2706), - [anon_sym_set] = ACTIONS(2706), - [anon_sym_declare] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_protected] = ACTIONS(2706), - [anon_sym_override] = ACTIONS(2706), - [anon_sym_module] = ACTIONS(2706), - [anon_sym_any] = ACTIONS(2706), - [anon_sym_number] = ACTIONS(2706), - [anon_sym_boolean] = ACTIONS(2706), - [anon_sym_string] = ACTIONS(2706), - [anon_sym_symbol] = ACTIONS(2706), - [anon_sym_property] = ACTIONS(2706), - [anon_sym_signal] = ACTIONS(2706), - [anon_sym_on] = ACTIONS(2706), - [anon_sym_required] = ACTIONS(2706), - [anon_sym_component] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - }, - [853] = { - [sym_identifier] = ACTIONS(2706), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_typeof] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_from] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_await] = ACTIONS(2706), - [anon_sym_of] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_with] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_debugger] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_yield] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_LTtemplate_GT] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2708), - [sym_number] = ACTIONS(2708), - [sym_this] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_undefined] = ACTIONS(2706), - [anon_sym_AT] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_readonly] = ACTIONS(2706), - [anon_sym_get] = ACTIONS(2706), - [anon_sym_set] = ACTIONS(2706), - [anon_sym_declare] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_protected] = ACTIONS(2706), - [anon_sym_override] = ACTIONS(2706), - [anon_sym_module] = ACTIONS(2706), - [anon_sym_any] = ACTIONS(2706), - [anon_sym_number] = ACTIONS(2706), - [anon_sym_boolean] = ACTIONS(2706), - [anon_sym_string] = ACTIONS(2706), - [anon_sym_symbol] = ACTIONS(2706), - [anon_sym_property] = ACTIONS(2706), - [anon_sym_signal] = ACTIONS(2706), - [anon_sym_on] = ACTIONS(2706), - [anon_sym_required] = ACTIONS(2706), - [anon_sym_component] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - }, - [854] = { - [sym_identifier] = ACTIONS(2706), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_typeof] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_from] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_await] = ACTIONS(2706), - [anon_sym_of] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_with] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_debugger] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_yield] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_LTtemplate_GT] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2708), - [sym_number] = ACTIONS(2708), - [sym_this] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_undefined] = ACTIONS(2706), - [anon_sym_AT] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_readonly] = ACTIONS(2706), - [anon_sym_get] = ACTIONS(2706), - [anon_sym_set] = ACTIONS(2706), - [anon_sym_declare] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_protected] = ACTIONS(2706), - [anon_sym_override] = ACTIONS(2706), - [anon_sym_module] = ACTIONS(2706), - [anon_sym_any] = ACTIONS(2706), - [anon_sym_number] = ACTIONS(2706), - [anon_sym_boolean] = ACTIONS(2706), - [anon_sym_string] = ACTIONS(2706), - [anon_sym_symbol] = ACTIONS(2706), - [anon_sym_property] = ACTIONS(2706), - [anon_sym_signal] = ACTIONS(2706), - [anon_sym_on] = ACTIONS(2706), - [anon_sym_required] = ACTIONS(2706), - [anon_sym_component] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - }, - [855] = { - [sym_identifier] = ACTIONS(2706), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_typeof] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_from] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_await] = ACTIONS(2706), - [anon_sym_of] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_with] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_debugger] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_yield] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_LTtemplate_GT] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2708), - [sym_number] = ACTIONS(2708), - [sym_this] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_undefined] = ACTIONS(2706), - [anon_sym_AT] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_readonly] = ACTIONS(2706), - [anon_sym_get] = ACTIONS(2706), - [anon_sym_set] = ACTIONS(2706), - [anon_sym_declare] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_protected] = ACTIONS(2706), - [anon_sym_override] = ACTIONS(2706), - [anon_sym_module] = ACTIONS(2706), - [anon_sym_any] = ACTIONS(2706), - [anon_sym_number] = ACTIONS(2706), - [anon_sym_boolean] = ACTIONS(2706), - [anon_sym_string] = ACTIONS(2706), - [anon_sym_symbol] = ACTIONS(2706), - [anon_sym_property] = ACTIONS(2706), - [anon_sym_signal] = ACTIONS(2706), - [anon_sym_on] = ACTIONS(2706), - [anon_sym_required] = ACTIONS(2706), - [anon_sym_component] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - }, - [856] = { - [sym_identifier] = ACTIONS(2706), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_typeof] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_from] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_await] = ACTIONS(2706), - [anon_sym_of] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_with] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_debugger] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_yield] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_LTtemplate_GT] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2708), - [sym_number] = ACTIONS(2708), - [sym_this] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_undefined] = ACTIONS(2706), - [anon_sym_AT] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_readonly] = ACTIONS(2706), - [anon_sym_get] = ACTIONS(2706), - [anon_sym_set] = ACTIONS(2706), - [anon_sym_declare] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_protected] = ACTIONS(2706), - [anon_sym_override] = ACTIONS(2706), - [anon_sym_module] = ACTIONS(2706), - [anon_sym_any] = ACTIONS(2706), - [anon_sym_number] = ACTIONS(2706), - [anon_sym_boolean] = ACTIONS(2706), - [anon_sym_string] = ACTIONS(2706), - [anon_sym_symbol] = ACTIONS(2706), - [anon_sym_property] = ACTIONS(2706), - [anon_sym_signal] = ACTIONS(2706), - [anon_sym_on] = ACTIONS(2706), - [anon_sym_required] = ACTIONS(2706), - [anon_sym_component] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - }, - [857] = { - [sym_identifier] = ACTIONS(2706), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_typeof] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_from] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_await] = ACTIONS(2706), - [anon_sym_of] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_with] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_debugger] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_yield] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_LTtemplate_GT] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2708), - [sym_number] = ACTIONS(2708), - [sym_this] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_undefined] = ACTIONS(2706), - [anon_sym_AT] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_readonly] = ACTIONS(2706), - [anon_sym_get] = ACTIONS(2706), - [anon_sym_set] = ACTIONS(2706), - [anon_sym_declare] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_protected] = ACTIONS(2706), - [anon_sym_override] = ACTIONS(2706), - [anon_sym_module] = ACTIONS(2706), - [anon_sym_any] = ACTIONS(2706), - [anon_sym_number] = ACTIONS(2706), - [anon_sym_boolean] = ACTIONS(2706), - [anon_sym_string] = ACTIONS(2706), - [anon_sym_symbol] = ACTIONS(2706), - [anon_sym_property] = ACTIONS(2706), - [anon_sym_signal] = ACTIONS(2706), - [anon_sym_on] = ACTIONS(2706), - [anon_sym_required] = ACTIONS(2706), - [anon_sym_component] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - }, - [858] = { - [sym_identifier] = ACTIONS(2706), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_typeof] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_from] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_await] = ACTIONS(2706), - [anon_sym_of] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_with] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_debugger] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_yield] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_LTtemplate_GT] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2708), - [sym_number] = ACTIONS(2708), - [sym_this] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_undefined] = ACTIONS(2706), - [anon_sym_AT] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_readonly] = ACTIONS(2706), - [anon_sym_get] = ACTIONS(2706), - [anon_sym_set] = ACTIONS(2706), - [anon_sym_declare] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_protected] = ACTIONS(2706), - [anon_sym_override] = ACTIONS(2706), - [anon_sym_module] = ACTIONS(2706), - [anon_sym_any] = ACTIONS(2706), - [anon_sym_number] = ACTIONS(2706), - [anon_sym_boolean] = ACTIONS(2706), - [anon_sym_string] = ACTIONS(2706), - [anon_sym_symbol] = ACTIONS(2706), - [anon_sym_property] = ACTIONS(2706), - [anon_sym_signal] = ACTIONS(2706), - [anon_sym_on] = ACTIONS(2706), - [anon_sym_required] = ACTIONS(2706), - [anon_sym_component] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - }, - [859] = { - [sym_identifier] = ACTIONS(2706), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_typeof] = ACTIONS(2706), - [anon_sym_import] = ACTIONS(2706), - [anon_sym_from] = ACTIONS(2706), - [anon_sym_var] = ACTIONS(2706), - [anon_sym_let] = ACTIONS(2706), - [anon_sym_const] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2706), - [anon_sym_switch] = ACTIONS(2706), - [anon_sym_for] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2708), - [anon_sym_await] = ACTIONS(2706), - [anon_sym_of] = ACTIONS(2706), - [anon_sym_while] = ACTIONS(2706), - [anon_sym_do] = ACTIONS(2706), - [anon_sym_try] = ACTIONS(2706), - [anon_sym_with] = ACTIONS(2706), - [anon_sym_break] = ACTIONS(2706), - [anon_sym_continue] = ACTIONS(2706), - [anon_sym_debugger] = ACTIONS(2706), - [anon_sym_return] = ACTIONS(2706), - [anon_sym_throw] = ACTIONS(2706), - [anon_sym_SEMI] = ACTIONS(2708), - [anon_sym_yield] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2708), - [anon_sym_LTtemplate_GT] = ACTIONS(2708), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_class] = ACTIONS(2706), - [anon_sym_async] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(2706), - [anon_sym_new] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_TILDE] = ACTIONS(2708), - [anon_sym_void] = ACTIONS(2706), - [anon_sym_delete] = ACTIONS(2706), - [anon_sym_PLUS_PLUS] = ACTIONS(2708), - [anon_sym_DASH_DASH] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2708), - [anon_sym_SQUOTE] = ACTIONS(2708), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2708), - [sym_number] = ACTIONS(2708), - [sym_this] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_true] = ACTIONS(2706), - [sym_false] = ACTIONS(2706), - [sym_null] = ACTIONS(2706), - [sym_undefined] = ACTIONS(2706), - [anon_sym_AT] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_readonly] = ACTIONS(2706), - [anon_sym_get] = ACTIONS(2706), - [anon_sym_set] = ACTIONS(2706), - [anon_sym_declare] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_protected] = ACTIONS(2706), - [anon_sym_override] = ACTIONS(2706), - [anon_sym_module] = ACTIONS(2706), - [anon_sym_any] = ACTIONS(2706), - [anon_sym_number] = ACTIONS(2706), - [anon_sym_boolean] = ACTIONS(2706), - [anon_sym_string] = ACTIONS(2706), - [anon_sym_symbol] = ACTIONS(2706), - [anon_sym_property] = ACTIONS(2706), - [anon_sym_signal] = ACTIONS(2706), - [anon_sym_on] = ACTIONS(2706), - [anon_sym_required] = ACTIONS(2706), - [anon_sym_component] = ACTIONS(2706), - [anon_sym_abstract] = ACTIONS(2706), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2706), - }, - [860] = { - [sym_identifier] = ACTIONS(2710), - [anon_sym_export] = ACTIONS(2710), - [anon_sym_type] = ACTIONS(2710), - [anon_sym_namespace] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2712), - [anon_sym_typeof] = ACTIONS(2710), - [anon_sym_import] = ACTIONS(2710), - [anon_sym_from] = ACTIONS(2710), - [anon_sym_var] = ACTIONS(2710), - [anon_sym_let] = ACTIONS(2710), - [anon_sym_const] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2712), - [anon_sym_if] = ACTIONS(2710), - [anon_sym_switch] = ACTIONS(2710), - [anon_sym_for] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(2712), - [anon_sym_await] = ACTIONS(2710), - [anon_sym_of] = ACTIONS(2710), - [anon_sym_while] = ACTIONS(2710), - [anon_sym_do] = ACTIONS(2710), - [anon_sym_try] = ACTIONS(2710), - [anon_sym_with] = ACTIONS(2710), - [anon_sym_break] = ACTIONS(2710), - [anon_sym_continue] = ACTIONS(2710), - [anon_sym_debugger] = ACTIONS(2710), - [anon_sym_return] = ACTIONS(2710), - [anon_sym_throw] = ACTIONS(2710), - [anon_sym_SEMI] = ACTIONS(2712), - [anon_sym_yield] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2712), - [anon_sym_LTtemplate_GT] = ACTIONS(2712), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_SLASH] = ACTIONS(2710), - [anon_sym_class] = ACTIONS(2710), - [anon_sym_async] = ACTIONS(2710), - [anon_sym_function] = ACTIONS(2710), - [anon_sym_new] = ACTIONS(2710), - [anon_sym_PLUS] = ACTIONS(2710), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_TILDE] = ACTIONS(2712), - [anon_sym_void] = ACTIONS(2710), - [anon_sym_delete] = ACTIONS(2710), - [anon_sym_PLUS_PLUS] = ACTIONS(2712), - [anon_sym_DASH_DASH] = ACTIONS(2712), - [anon_sym_DQUOTE] = ACTIONS(2712), - [anon_sym_SQUOTE] = ACTIONS(2712), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2712), - [sym_number] = ACTIONS(2712), - [sym_this] = ACTIONS(2710), - [sym_super] = ACTIONS(2710), - [sym_true] = ACTIONS(2710), - [sym_false] = ACTIONS(2710), - [sym_null] = ACTIONS(2710), - [sym_undefined] = ACTIONS(2710), - [anon_sym_AT] = ACTIONS(2712), - [anon_sym_static] = ACTIONS(2710), - [anon_sym_readonly] = ACTIONS(2710), - [anon_sym_get] = ACTIONS(2710), - [anon_sym_set] = ACTIONS(2710), - [anon_sym_declare] = ACTIONS(2710), - [anon_sym_public] = ACTIONS(2710), - [anon_sym_private] = ACTIONS(2710), - [anon_sym_protected] = ACTIONS(2710), - [anon_sym_override] = ACTIONS(2710), - [anon_sym_module] = ACTIONS(2710), - [anon_sym_any] = ACTIONS(2710), - [anon_sym_number] = ACTIONS(2710), - [anon_sym_boolean] = ACTIONS(2710), - [anon_sym_string] = ACTIONS(2710), - [anon_sym_symbol] = ACTIONS(2710), - [anon_sym_property] = ACTIONS(2710), - [anon_sym_signal] = ACTIONS(2710), - [anon_sym_on] = ACTIONS(2710), - [anon_sym_required] = ACTIONS(2710), - [anon_sym_component] = ACTIONS(2710), - [anon_sym_abstract] = ACTIONS(2710), - [anon_sym_interface] = ACTIONS(2710), - [anon_sym_enum] = ACTIONS(2710), - }, - [861] = { - [sym_identifier] = ACTIONS(2714), - [anon_sym_export] = ACTIONS(2714), - [anon_sym_type] = ACTIONS(2714), - [anon_sym_namespace] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_typeof] = ACTIONS(2714), - [anon_sym_import] = ACTIONS(2714), - [anon_sym_from] = ACTIONS(2714), - [anon_sym_var] = ACTIONS(2714), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_const] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(2716), - [anon_sym_if] = ACTIONS(2714), - [anon_sym_switch] = ACTIONS(2714), - [anon_sym_for] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2716), - [anon_sym_await] = ACTIONS(2714), - [anon_sym_of] = ACTIONS(2714), - [anon_sym_while] = ACTIONS(2714), - [anon_sym_do] = ACTIONS(2714), - [anon_sym_try] = ACTIONS(2714), - [anon_sym_with] = ACTIONS(2714), - [anon_sym_break] = ACTIONS(2714), - [anon_sym_continue] = ACTIONS(2714), - [anon_sym_debugger] = ACTIONS(2714), - [anon_sym_return] = ACTIONS(2714), - [anon_sym_throw] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2716), - [anon_sym_yield] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2716), - [anon_sym_LTtemplate_GT] = ACTIONS(2716), - [anon_sym_LT] = ACTIONS(2714), - [anon_sym_SLASH] = ACTIONS(2714), - [anon_sym_class] = ACTIONS(2714), - [anon_sym_async] = ACTIONS(2714), - [anon_sym_function] = ACTIONS(2714), - [anon_sym_new] = ACTIONS(2714), - [anon_sym_PLUS] = ACTIONS(2714), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_TILDE] = ACTIONS(2716), - [anon_sym_void] = ACTIONS(2714), - [anon_sym_delete] = ACTIONS(2714), - [anon_sym_PLUS_PLUS] = ACTIONS(2716), - [anon_sym_DASH_DASH] = ACTIONS(2716), - [anon_sym_DQUOTE] = ACTIONS(2716), - [anon_sym_SQUOTE] = ACTIONS(2716), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2716), - [sym_number] = ACTIONS(2716), - [sym_this] = ACTIONS(2714), - [sym_super] = ACTIONS(2714), - [sym_true] = ACTIONS(2714), - [sym_false] = ACTIONS(2714), - [sym_null] = ACTIONS(2714), - [sym_undefined] = ACTIONS(2714), - [anon_sym_AT] = ACTIONS(2716), - [anon_sym_static] = ACTIONS(2714), - [anon_sym_readonly] = ACTIONS(2714), - [anon_sym_get] = ACTIONS(2714), - [anon_sym_set] = ACTIONS(2714), - [anon_sym_declare] = ACTIONS(2714), - [anon_sym_public] = ACTIONS(2714), - [anon_sym_private] = ACTIONS(2714), - [anon_sym_protected] = ACTIONS(2714), - [anon_sym_override] = ACTIONS(2714), - [anon_sym_module] = ACTIONS(2714), - [anon_sym_any] = ACTIONS(2714), - [anon_sym_number] = ACTIONS(2714), - [anon_sym_boolean] = ACTIONS(2714), - [anon_sym_string] = ACTIONS(2714), - [anon_sym_symbol] = ACTIONS(2714), - [anon_sym_property] = ACTIONS(2714), - [anon_sym_signal] = ACTIONS(2714), - [anon_sym_on] = ACTIONS(2714), - [anon_sym_required] = ACTIONS(2714), - [anon_sym_component] = ACTIONS(2714), - [anon_sym_abstract] = ACTIONS(2714), - [anon_sym_interface] = ACTIONS(2714), - [anon_sym_enum] = ACTIONS(2714), - }, - [862] = { - [sym_identifier] = ACTIONS(2718), - [anon_sym_export] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2718), - [anon_sym_namespace] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2720), - [anon_sym_typeof] = ACTIONS(2718), - [anon_sym_import] = ACTIONS(2718), - [anon_sym_from] = ACTIONS(2718), - [anon_sym_var] = ACTIONS(2718), - [anon_sym_let] = ACTIONS(2718), - [anon_sym_const] = ACTIONS(2718), - [anon_sym_BANG] = ACTIONS(2720), - [anon_sym_if] = ACTIONS(2718), - [anon_sym_switch] = ACTIONS(2718), - [anon_sym_for] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2720), - [anon_sym_await] = ACTIONS(2718), - [anon_sym_of] = ACTIONS(2718), - [anon_sym_while] = ACTIONS(2718), - [anon_sym_do] = ACTIONS(2718), - [anon_sym_try] = ACTIONS(2718), - [anon_sym_with] = ACTIONS(2718), - [anon_sym_break] = ACTIONS(2718), - [anon_sym_continue] = ACTIONS(2718), - [anon_sym_debugger] = ACTIONS(2718), - [anon_sym_return] = ACTIONS(2718), - [anon_sym_throw] = ACTIONS(2718), - [anon_sym_SEMI] = ACTIONS(2720), - [anon_sym_yield] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2720), - [anon_sym_LTtemplate_GT] = ACTIONS(2720), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_SLASH] = ACTIONS(2718), - [anon_sym_class] = ACTIONS(2718), - [anon_sym_async] = ACTIONS(2718), - [anon_sym_function] = ACTIONS(2718), - [anon_sym_new] = ACTIONS(2718), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_TILDE] = ACTIONS(2720), - [anon_sym_void] = ACTIONS(2718), - [anon_sym_delete] = ACTIONS(2718), - [anon_sym_PLUS_PLUS] = ACTIONS(2720), - [anon_sym_DASH_DASH] = ACTIONS(2720), - [anon_sym_DQUOTE] = ACTIONS(2720), - [anon_sym_SQUOTE] = ACTIONS(2720), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2720), - [sym_number] = ACTIONS(2720), - [sym_this] = ACTIONS(2718), - [sym_super] = ACTIONS(2718), - [sym_true] = ACTIONS(2718), - [sym_false] = ACTIONS(2718), - [sym_null] = ACTIONS(2718), - [sym_undefined] = ACTIONS(2718), - [anon_sym_AT] = ACTIONS(2720), - [anon_sym_static] = ACTIONS(2718), - [anon_sym_readonly] = ACTIONS(2718), - [anon_sym_get] = ACTIONS(2718), - [anon_sym_set] = ACTIONS(2718), - [anon_sym_declare] = ACTIONS(2718), - [anon_sym_public] = ACTIONS(2718), - [anon_sym_private] = ACTIONS(2718), - [anon_sym_protected] = ACTIONS(2718), - [anon_sym_override] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), - [anon_sym_any] = ACTIONS(2718), - [anon_sym_number] = ACTIONS(2718), - [anon_sym_boolean] = ACTIONS(2718), - [anon_sym_string] = ACTIONS(2718), - [anon_sym_symbol] = ACTIONS(2718), - [anon_sym_property] = ACTIONS(2718), - [anon_sym_signal] = ACTIONS(2718), - [anon_sym_on] = ACTIONS(2718), - [anon_sym_required] = ACTIONS(2718), - [anon_sym_component] = ACTIONS(2718), - [anon_sym_abstract] = ACTIONS(2718), - [anon_sym_interface] = ACTIONS(2718), - [anon_sym_enum] = ACTIONS(2718), - }, - [863] = { - [sym_identifier] = ACTIONS(2722), - [anon_sym_export] = ACTIONS(2722), - [anon_sym_type] = ACTIONS(2722), - [anon_sym_namespace] = ACTIONS(2722), - [anon_sym_LBRACE] = ACTIONS(2724), - [anon_sym_typeof] = ACTIONS(2722), - [anon_sym_import] = ACTIONS(2722), - [anon_sym_from] = ACTIONS(2722), - [anon_sym_var] = ACTIONS(2722), - [anon_sym_let] = ACTIONS(2722), - [anon_sym_const] = ACTIONS(2722), - [anon_sym_BANG] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_switch] = ACTIONS(2722), - [anon_sym_for] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2724), - [anon_sym_await] = ACTIONS(2722), - [anon_sym_of] = ACTIONS(2722), - [anon_sym_while] = ACTIONS(2722), - [anon_sym_do] = ACTIONS(2722), - [anon_sym_try] = ACTIONS(2722), - [anon_sym_with] = ACTIONS(2722), - [anon_sym_break] = ACTIONS(2722), - [anon_sym_continue] = ACTIONS(2722), - [anon_sym_debugger] = ACTIONS(2722), - [anon_sym_return] = ACTIONS(2722), - [anon_sym_throw] = ACTIONS(2722), - [anon_sym_SEMI] = ACTIONS(2724), - [anon_sym_yield] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2724), - [anon_sym_LTtemplate_GT] = ACTIONS(2724), - [anon_sym_LT] = ACTIONS(2722), - [anon_sym_SLASH] = ACTIONS(2722), - [anon_sym_class] = ACTIONS(2722), - [anon_sym_async] = ACTIONS(2722), - [anon_sym_function] = ACTIONS(2722), - [anon_sym_new] = ACTIONS(2722), - [anon_sym_PLUS] = ACTIONS(2722), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_TILDE] = ACTIONS(2724), - [anon_sym_void] = ACTIONS(2722), - [anon_sym_delete] = ACTIONS(2722), - [anon_sym_PLUS_PLUS] = ACTIONS(2724), - [anon_sym_DASH_DASH] = ACTIONS(2724), - [anon_sym_DQUOTE] = ACTIONS(2724), - [anon_sym_SQUOTE] = ACTIONS(2724), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2724), - [sym_number] = ACTIONS(2724), - [sym_this] = ACTIONS(2722), - [sym_super] = ACTIONS(2722), - [sym_true] = ACTIONS(2722), - [sym_false] = ACTIONS(2722), - [sym_null] = ACTIONS(2722), - [sym_undefined] = ACTIONS(2722), - [anon_sym_AT] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2722), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_get] = ACTIONS(2722), - [anon_sym_set] = ACTIONS(2722), - [anon_sym_declare] = ACTIONS(2722), - [anon_sym_public] = ACTIONS(2722), - [anon_sym_private] = ACTIONS(2722), - [anon_sym_protected] = ACTIONS(2722), - [anon_sym_override] = ACTIONS(2722), - [anon_sym_module] = ACTIONS(2722), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - [anon_sym_property] = ACTIONS(2722), - [anon_sym_signal] = ACTIONS(2722), - [anon_sym_on] = ACTIONS(2722), - [anon_sym_required] = ACTIONS(2722), - [anon_sym_component] = ACTIONS(2722), - [anon_sym_abstract] = ACTIONS(2722), - [anon_sym_interface] = ACTIONS(2722), - [anon_sym_enum] = ACTIONS(2722), - }, - [864] = { - [sym_identifier] = ACTIONS(2726), - [anon_sym_export] = ACTIONS(2726), - [anon_sym_type] = ACTIONS(2726), - [anon_sym_namespace] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_typeof] = ACTIONS(2726), - [anon_sym_import] = ACTIONS(2726), - [anon_sym_from] = ACTIONS(2726), - [anon_sym_var] = ACTIONS(2726), - [anon_sym_let] = ACTIONS(2726), - [anon_sym_const] = ACTIONS(2726), - [anon_sym_BANG] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2726), - [anon_sym_switch] = ACTIONS(2726), - [anon_sym_for] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_await] = ACTIONS(2726), - [anon_sym_of] = ACTIONS(2726), - [anon_sym_while] = ACTIONS(2726), - [anon_sym_do] = ACTIONS(2726), - [anon_sym_try] = ACTIONS(2726), - [anon_sym_with] = ACTIONS(2726), - [anon_sym_break] = ACTIONS(2726), - [anon_sym_continue] = ACTIONS(2726), - [anon_sym_debugger] = ACTIONS(2726), - [anon_sym_return] = ACTIONS(2726), - [anon_sym_throw] = ACTIONS(2726), - [anon_sym_SEMI] = ACTIONS(2728), - [anon_sym_yield] = ACTIONS(2726), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_LTtemplate_GT] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2726), - [anon_sym_SLASH] = ACTIONS(2726), - [anon_sym_class] = ACTIONS(2726), - [anon_sym_async] = ACTIONS(2726), - [anon_sym_function] = ACTIONS(2726), - [anon_sym_new] = ACTIONS(2726), - [anon_sym_PLUS] = ACTIONS(2726), - [anon_sym_DASH] = ACTIONS(2726), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_void] = ACTIONS(2726), - [anon_sym_delete] = ACTIONS(2726), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_DQUOTE] = ACTIONS(2728), - [anon_sym_SQUOTE] = ACTIONS(2728), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2728), - [sym_number] = ACTIONS(2728), - [sym_this] = ACTIONS(2726), - [sym_super] = ACTIONS(2726), - [sym_true] = ACTIONS(2726), - [sym_false] = ACTIONS(2726), - [sym_null] = ACTIONS(2726), - [sym_undefined] = ACTIONS(2726), - [anon_sym_AT] = ACTIONS(2728), - [anon_sym_static] = ACTIONS(2726), - [anon_sym_readonly] = ACTIONS(2726), - [anon_sym_get] = ACTIONS(2726), - [anon_sym_set] = ACTIONS(2726), - [anon_sym_declare] = ACTIONS(2726), - [anon_sym_public] = ACTIONS(2726), - [anon_sym_private] = ACTIONS(2726), - [anon_sym_protected] = ACTIONS(2726), - [anon_sym_override] = ACTIONS(2726), - [anon_sym_module] = ACTIONS(2726), - [anon_sym_any] = ACTIONS(2726), - [anon_sym_number] = ACTIONS(2726), - [anon_sym_boolean] = ACTIONS(2726), - [anon_sym_string] = ACTIONS(2726), - [anon_sym_symbol] = ACTIONS(2726), - [anon_sym_property] = ACTIONS(2726), - [anon_sym_signal] = ACTIONS(2726), - [anon_sym_on] = ACTIONS(2726), - [anon_sym_required] = ACTIONS(2726), - [anon_sym_component] = ACTIONS(2726), - [anon_sym_abstract] = ACTIONS(2726), - [anon_sym_interface] = ACTIONS(2726), - [anon_sym_enum] = ACTIONS(2726), - }, - [865] = { - [sym_statement_block] = STATE(886), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_type] = ACTIONS(1489), - [anon_sym_as] = ACTIONS(1489), - [anon_sym_namespace] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_from] = ACTIONS(1489), - [anon_sym_var] = ACTIONS(1489), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_else] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_in] = ACTIONS(1489), - [anon_sym_of] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1489), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(1493), - [anon_sym_async] = ACTIONS(1489), - [anon_sym_function] = ACTIONS(1489), - [anon_sym_QMARK_DOT] = ACTIONS(1493), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1489), - [anon_sym_GT_GT_GT] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_STAR_STAR] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1493), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1493), - [anon_sym_QMARK_QMARK] = ACTIONS(1493), - [anon_sym_instanceof] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_readonly] = ACTIONS(1489), - [anon_sym_get] = ACTIONS(1489), - [anon_sym_set] = ACTIONS(1489), - [anon_sym_declare] = ACTIONS(1489), - [anon_sym_public] = ACTIONS(1489), - [anon_sym_private] = ACTIONS(1489), - [anon_sym_protected] = ACTIONS(1489), - [anon_sym_override] = ACTIONS(1489), - [anon_sym_module] = ACTIONS(1489), - [anon_sym_any] = ACTIONS(1489), - [anon_sym_number] = ACTIONS(1489), - [anon_sym_boolean] = ACTIONS(1489), - [anon_sym_string] = ACTIONS(1489), - [anon_sym_symbol] = ACTIONS(1489), - [anon_sym_property] = ACTIONS(1489), - [anon_sym_signal] = ACTIONS(1489), - [anon_sym_on] = ACTIONS(1489), - [anon_sym_required] = ACTIONS(1489), - [anon_sym_component] = ACTIONS(1489), - [anon_sym_satisfies] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - [sym__automatic_semicolon] = ACTIONS(1493), - [sym__ternary_qmark] = ACTIONS(1493), - }, - [866] = { - [sym_statement_block] = STATE(886), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1489), - [anon_sym_STAR] = ACTIONS(1489), - [anon_sym_default] = ACTIONS(1489), - [anon_sym_type] = ACTIONS(1489), - [anon_sym_as] = ACTIONS(1489), - [anon_sym_namespace] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_from] = ACTIONS(1489), - [anon_sym_var] = ACTIONS(1489), - [anon_sym_BANG] = ACTIONS(1489), - [anon_sym_else] = ACTIONS(1489), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_in] = ACTIONS(1489), - [anon_sym_of] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1489), - [anon_sym_SLASH] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(2732), - [anon_sym_async] = ACTIONS(1489), - [anon_sym_function] = ACTIONS(1489), - [anon_sym_QMARK_DOT] = ACTIONS(1493), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1489), - [anon_sym_GT_GT_GT] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1489), - [anon_sym_CARET] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1489), - [anon_sym_DASH] = ACTIONS(1489), - [anon_sym_PERCENT] = ACTIONS(1493), - [anon_sym_STAR_STAR] = ACTIONS(1493), - [anon_sym_LT_EQ] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1493), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1493), - [anon_sym_QMARK_QMARK] = ACTIONS(1493), - [anon_sym_instanceof] = ACTIONS(1489), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_DASH_DASH] = ACTIONS(1493), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1493), - [anon_sym_AT] = ACTIONS(1493), - [anon_sym_static] = ACTIONS(1489), - [anon_sym_readonly] = ACTIONS(1489), - [anon_sym_get] = ACTIONS(1489), - [anon_sym_set] = ACTIONS(1489), - [anon_sym_declare] = ACTIONS(1489), - [anon_sym_public] = ACTIONS(1489), - [anon_sym_private] = ACTIONS(1489), - [anon_sym_protected] = ACTIONS(1489), - [anon_sym_override] = ACTIONS(1489), - [anon_sym_module] = ACTIONS(1489), - [anon_sym_any] = ACTIONS(1489), - [anon_sym_number] = ACTIONS(1489), - [anon_sym_boolean] = ACTIONS(1489), - [anon_sym_string] = ACTIONS(1489), - [anon_sym_symbol] = ACTIONS(1489), - [anon_sym_property] = ACTIONS(1489), - [anon_sym_signal] = ACTIONS(1489), - [anon_sym_on] = ACTIONS(1489), - [anon_sym_required] = ACTIONS(1489), - [anon_sym_component] = ACTIONS(1489), - [anon_sym_satisfies] = ACTIONS(1489), - [anon_sym_enum] = ACTIONS(1489), - [sym__automatic_semicolon] = ACTIONS(1493), - [sym__ternary_qmark] = ACTIONS(1493), - }, - [867] = { - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_EQ] = ACTIONS(1501), - [anon_sym_as] = ACTIONS(1499), - [anon_sym_namespace] = ACTIONS(1497), - [anon_sym_COMMA] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_from] = ACTIONS(1497), - [anon_sym_var] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_else] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_in] = ACTIONS(1499), - [anon_sym_of] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1499), - [anon_sym_DOT] = ACTIONS(1505), - [anon_sym_async] = ACTIONS(1497), - [anon_sym_function] = ACTIONS(1497), - [anon_sym_QMARK_DOT] = ACTIONS(1505), - [anon_sym_AMP_AMP] = ACTIONS(1505), - [anon_sym_PIPE_PIPE] = ACTIONS(1505), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_GT_GT_GT] = ACTIONS(1505), - [anon_sym_LT_LT] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_PERCENT] = ACTIONS(1505), - [anon_sym_STAR_STAR] = ACTIONS(1505), - [anon_sym_LT_EQ] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1499), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1505), - [anon_sym_BANG_EQ] = ACTIONS(1499), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1505), - [anon_sym_GT_EQ] = ACTIONS(1505), - [anon_sym_QMARK_QMARK] = ACTIONS(1505), - [anon_sym_instanceof] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_DASH_DASH] = ACTIONS(1505), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1505), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_readonly] = ACTIONS(1497), - [anon_sym_get] = ACTIONS(1497), - [anon_sym_set] = ACTIONS(1497), - [anon_sym_declare] = ACTIONS(1497), - [anon_sym_public] = ACTIONS(1497), - [anon_sym_private] = ACTIONS(1497), - [anon_sym_protected] = ACTIONS(1497), - [anon_sym_override] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_any] = ACTIONS(1497), - [anon_sym_number] = ACTIONS(1497), - [anon_sym_boolean] = ACTIONS(1497), - [anon_sym_string] = ACTIONS(1497), - [anon_sym_symbol] = ACTIONS(1497), - [anon_sym_property] = ACTIONS(1497), - [anon_sym_signal] = ACTIONS(1497), - [anon_sym_on] = ACTIONS(1497), - [anon_sym_required] = ACTIONS(1497), - [anon_sym_component] = ACTIONS(1497), - [anon_sym_satisfies] = ACTIONS(1499), - [anon_sym_enum] = ACTIONS(1497), - [sym__automatic_semicolon] = ACTIONS(2734), - [sym__ternary_qmark] = ACTIONS(1505), - }, - [868] = { - [sym_identifier] = ACTIONS(1671), - [anon_sym_export] = ACTIONS(1671), - [anon_sym_STAR] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_type] = ACTIONS(1671), - [anon_sym_as] = ACTIONS(1671), - [anon_sym_namespace] = ACTIONS(1671), - [anon_sym_LBRACE] = ACTIONS(1673), - [anon_sym_COMMA] = ACTIONS(1673), - [anon_sym_RBRACE] = ACTIONS(1673), - [anon_sym_from] = ACTIONS(1671), - [anon_sym_var] = ACTIONS(1671), - [anon_sym_BANG] = ACTIONS(1671), - [anon_sym_else] = ACTIONS(1671), - [anon_sym_LPAREN] = ACTIONS(1673), - [anon_sym_in] = ACTIONS(1671), - [anon_sym_of] = ACTIONS(1671), - [anon_sym_SEMI] = ACTIONS(1673), - [anon_sym_LBRACK] = ACTIONS(1673), - [anon_sym_LT] = ACTIONS(1671), - [anon_sym_GT] = ACTIONS(1671), - [anon_sym_SLASH] = ACTIONS(1671), - [anon_sym_DOT] = ACTIONS(1673), - [anon_sym_async] = ACTIONS(1671), - [anon_sym_function] = ACTIONS(1671), - [anon_sym_QMARK_DOT] = ACTIONS(1673), - [anon_sym_AMP_AMP] = ACTIONS(1673), - [anon_sym_PIPE_PIPE] = ACTIONS(1673), - [anon_sym_GT_GT] = ACTIONS(1671), - [anon_sym_GT_GT_GT] = ACTIONS(1673), - [anon_sym_LT_LT] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_CARET] = ACTIONS(1673), - [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_PLUS] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_PERCENT] = ACTIONS(1673), - [anon_sym_STAR_STAR] = ACTIONS(1673), - [anon_sym_LT_EQ] = ACTIONS(1673), - [anon_sym_EQ_EQ] = ACTIONS(1671), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1673), - [anon_sym_BANG_EQ] = ACTIONS(1671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1673), - [anon_sym_GT_EQ] = ACTIONS(1673), - [anon_sym_QMARK_QMARK] = ACTIONS(1673), - [anon_sym_instanceof] = ACTIONS(1671), - [anon_sym_PLUS_PLUS] = ACTIONS(1673), - [anon_sym_DASH_DASH] = ACTIONS(1673), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1673), - [anon_sym_AT] = ACTIONS(1673), - [anon_sym_static] = ACTIONS(1671), - [anon_sym_readonly] = ACTIONS(1671), - [anon_sym_get] = ACTIONS(1671), - [anon_sym_set] = ACTIONS(1671), - [anon_sym_declare] = ACTIONS(1671), - [anon_sym_public] = ACTIONS(1671), - [anon_sym_private] = ACTIONS(1671), - [anon_sym_protected] = ACTIONS(1671), - [anon_sym_override] = ACTIONS(1671), - [anon_sym_module] = ACTIONS(1671), - [anon_sym_any] = ACTIONS(1671), - [anon_sym_number] = ACTIONS(1671), - [anon_sym_boolean] = ACTIONS(1671), - [anon_sym_string] = ACTIONS(1671), - [anon_sym_symbol] = ACTIONS(1671), - [anon_sym_property] = ACTIONS(1671), - [anon_sym_signal] = ACTIONS(1671), - [anon_sym_on] = ACTIONS(1671), - [anon_sym_required] = ACTIONS(1671), - [anon_sym_component] = ACTIONS(1671), - [anon_sym_satisfies] = ACTIONS(1671), - [anon_sym_enum] = ACTIONS(1671), - [sym__automatic_semicolon] = ACTIONS(1673), - [sym__ternary_qmark] = ACTIONS(1673), - }, - [869] = { - [sym_identifier] = ACTIONS(1533), - [anon_sym_export] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1533), - [anon_sym_default] = ACTIONS(1533), - [anon_sym_type] = ACTIONS(1533), - [anon_sym_as] = ACTIONS(1533), - [anon_sym_namespace] = ACTIONS(1533), - [anon_sym_LBRACE] = ACTIONS(1535), - [anon_sym_COMMA] = ACTIONS(1535), - [anon_sym_RBRACE] = ACTIONS(1535), - [anon_sym_from] = ACTIONS(1533), - [anon_sym_var] = ACTIONS(1533), - [anon_sym_BANG] = ACTIONS(1533), - [anon_sym_else] = ACTIONS(1533), - [anon_sym_LPAREN] = ACTIONS(1535), - [anon_sym_in] = ACTIONS(1533), - [anon_sym_of] = ACTIONS(1533), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_LBRACK] = ACTIONS(1535), - [anon_sym_LT] = ACTIONS(1533), - [anon_sym_GT] = ACTIONS(1533), - [anon_sym_SLASH] = ACTIONS(1533), - [anon_sym_DOT] = ACTIONS(1535), - [anon_sym_async] = ACTIONS(1533), - [anon_sym_function] = ACTIONS(1533), - [anon_sym_QMARK_DOT] = ACTIONS(1535), - [anon_sym_AMP_AMP] = ACTIONS(1535), - [anon_sym_PIPE_PIPE] = ACTIONS(1535), - [anon_sym_GT_GT] = ACTIONS(1533), - [anon_sym_GT_GT_GT] = ACTIONS(1535), - [anon_sym_LT_LT] = ACTIONS(1535), - [anon_sym_AMP] = ACTIONS(1533), - [anon_sym_CARET] = ACTIONS(1535), - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PERCENT] = ACTIONS(1535), - [anon_sym_STAR_STAR] = ACTIONS(1535), - [anon_sym_LT_EQ] = ACTIONS(1535), - [anon_sym_EQ_EQ] = ACTIONS(1533), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1535), - [anon_sym_BANG_EQ] = ACTIONS(1533), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1535), - [anon_sym_GT_EQ] = ACTIONS(1535), - [anon_sym_QMARK_QMARK] = ACTIONS(1535), - [anon_sym_instanceof] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1535), - [anon_sym_DASH_DASH] = ACTIONS(1535), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1535), - [anon_sym_AT] = ACTIONS(1535), - [anon_sym_static] = ACTIONS(1533), - [anon_sym_readonly] = ACTIONS(1533), - [anon_sym_get] = ACTIONS(1533), - [anon_sym_set] = ACTIONS(1533), - [anon_sym_declare] = ACTIONS(1533), - [anon_sym_public] = ACTIONS(1533), - [anon_sym_private] = ACTIONS(1533), - [anon_sym_protected] = ACTIONS(1533), - [anon_sym_override] = ACTIONS(1533), - [anon_sym_module] = ACTIONS(1533), - [anon_sym_any] = ACTIONS(1533), - [anon_sym_number] = ACTIONS(1533), - [anon_sym_boolean] = ACTIONS(1533), - [anon_sym_string] = ACTIONS(1533), - [anon_sym_symbol] = ACTIONS(1533), - [anon_sym_property] = ACTIONS(1533), - [anon_sym_signal] = ACTIONS(1533), - [anon_sym_on] = ACTIONS(1533), - [anon_sym_required] = ACTIONS(1533), - [anon_sym_component] = ACTIONS(1533), - [anon_sym_satisfies] = ACTIONS(1533), - [anon_sym_enum] = ACTIONS(1533), - [sym__automatic_semicolon] = ACTIONS(1535), - [sym__ternary_qmark] = ACTIONS(1535), - }, - [870] = { - [sym_identifier] = ACTIONS(1647), - [anon_sym_export] = ACTIONS(1647), - [anon_sym_STAR] = ACTIONS(1647), - [anon_sym_default] = ACTIONS(1647), - [anon_sym_type] = ACTIONS(1647), - [anon_sym_as] = ACTIONS(1647), - [anon_sym_namespace] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_COMMA] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1649), - [anon_sym_from] = ACTIONS(1647), - [anon_sym_var] = ACTIONS(1647), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_else] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_in] = ACTIONS(1647), - [anon_sym_of] = ACTIONS(1647), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_LT] = ACTIONS(1647), - [anon_sym_GT] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(1649), - [anon_sym_async] = ACTIONS(1647), - [anon_sym_function] = ACTIONS(1647), - [anon_sym_QMARK_DOT] = ACTIONS(1649), - [anon_sym_AMP_AMP] = ACTIONS(1649), - [anon_sym_PIPE_PIPE] = ACTIONS(1649), - [anon_sym_GT_GT] = ACTIONS(1647), - [anon_sym_GT_GT_GT] = ACTIONS(1649), - [anon_sym_LT_LT] = ACTIONS(1649), - [anon_sym_AMP] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1649), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_PERCENT] = ACTIONS(1649), - [anon_sym_STAR_STAR] = ACTIONS(1649), - [anon_sym_LT_EQ] = ACTIONS(1649), - [anon_sym_EQ_EQ] = ACTIONS(1647), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1649), - [anon_sym_BANG_EQ] = ACTIONS(1647), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1649), - [anon_sym_GT_EQ] = ACTIONS(1649), - [anon_sym_QMARK_QMARK] = ACTIONS(1649), - [anon_sym_instanceof] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1649), - [anon_sym_DASH_DASH] = ACTIONS(1649), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1649), - [anon_sym_AT] = ACTIONS(1649), - [anon_sym_static] = ACTIONS(1647), - [anon_sym_readonly] = ACTIONS(1647), - [anon_sym_get] = ACTIONS(1647), - [anon_sym_set] = ACTIONS(1647), - [anon_sym_declare] = ACTIONS(1647), - [anon_sym_public] = ACTIONS(1647), - [anon_sym_private] = ACTIONS(1647), - [anon_sym_protected] = ACTIONS(1647), - [anon_sym_override] = ACTIONS(1647), - [anon_sym_module] = ACTIONS(1647), - [anon_sym_any] = ACTIONS(1647), - [anon_sym_number] = ACTIONS(1647), - [anon_sym_boolean] = ACTIONS(1647), - [anon_sym_string] = ACTIONS(1647), - [anon_sym_symbol] = ACTIONS(1647), - [anon_sym_property] = ACTIONS(1647), - [anon_sym_signal] = ACTIONS(1647), - [anon_sym_on] = ACTIONS(1647), - [anon_sym_required] = ACTIONS(1647), - [anon_sym_component] = ACTIONS(1647), - [anon_sym_satisfies] = ACTIONS(1647), - [anon_sym_enum] = ACTIONS(1647), - [sym__automatic_semicolon] = ACTIONS(1649), - [sym__ternary_qmark] = ACTIONS(1649), - }, - [871] = { - [sym_identifier] = ACTIONS(1519), - [anon_sym_export] = ACTIONS(1519), - [anon_sym_STAR] = ACTIONS(1521), - [anon_sym_default] = ACTIONS(1519), - [anon_sym_type] = ACTIONS(1519), - [anon_sym_as] = ACTIONS(1521), - [anon_sym_namespace] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(1525), - [anon_sym_RBRACE] = ACTIONS(1523), - [anon_sym_from] = ACTIONS(1519), - [anon_sym_var] = ACTIONS(1519), - [anon_sym_BANG] = ACTIONS(1521), - [anon_sym_else] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_in] = ACTIONS(1521), - [anon_sym_of] = ACTIONS(1519), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_LT] = ACTIONS(1521), - [anon_sym_GT] = ACTIONS(1521), - [anon_sym_SLASH] = ACTIONS(1521), - [anon_sym_DOT] = ACTIONS(1525), - [anon_sym_async] = ACTIONS(1519), - [anon_sym_function] = ACTIONS(1519), - [anon_sym_QMARK_DOT] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [anon_sym_GT_GT] = ACTIONS(1521), - [anon_sym_GT_GT_GT] = ACTIONS(1525), - [anon_sym_LT_LT] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1521), - [anon_sym_CARET] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1521), - [anon_sym_PLUS] = ACTIONS(1521), - [anon_sym_DASH] = ACTIONS(1521), - [anon_sym_PERCENT] = ACTIONS(1525), - [anon_sym_STAR_STAR] = ACTIONS(1525), - [anon_sym_LT_EQ] = ACTIONS(1525), - [anon_sym_EQ_EQ] = ACTIONS(1521), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1525), - [anon_sym_BANG_EQ] = ACTIONS(1521), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1525), - [anon_sym_GT_EQ] = ACTIONS(1525), - [anon_sym_QMARK_QMARK] = ACTIONS(1525), - [anon_sym_instanceof] = ACTIONS(1521), - [anon_sym_PLUS_PLUS] = ACTIONS(1525), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1525), - [anon_sym_AT] = ACTIONS(1523), - [anon_sym_static] = ACTIONS(1519), - [anon_sym_readonly] = ACTIONS(1519), - [anon_sym_get] = ACTIONS(1519), - [anon_sym_set] = ACTIONS(1519), - [anon_sym_declare] = ACTIONS(1519), - [anon_sym_public] = ACTIONS(1519), - [anon_sym_private] = ACTIONS(1519), - [anon_sym_protected] = ACTIONS(1519), - [anon_sym_override] = ACTIONS(1519), - [anon_sym_module] = ACTIONS(1519), - [anon_sym_any] = ACTIONS(1519), - [anon_sym_number] = ACTIONS(1519), - [anon_sym_boolean] = ACTIONS(1519), - [anon_sym_string] = ACTIONS(1519), - [anon_sym_symbol] = ACTIONS(1519), - [anon_sym_property] = ACTIONS(1519), - [anon_sym_signal] = ACTIONS(1519), - [anon_sym_on] = ACTIONS(1519), - [anon_sym_required] = ACTIONS(1519), - [anon_sym_component] = ACTIONS(1519), - [anon_sym_satisfies] = ACTIONS(1521), - [anon_sym_enum] = ACTIONS(1519), - [sym__automatic_semicolon] = ACTIONS(2736), - [sym__ternary_qmark] = ACTIONS(1525), - }, - [872] = { - [sym_identifier] = ACTIONS(1689), - [anon_sym_export] = ACTIONS(1689), - [anon_sym_STAR] = ACTIONS(1691), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_type] = ACTIONS(1689), - [anon_sym_as] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1689), - [anon_sym_COMMA] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_from] = ACTIONS(1689), - [anon_sym_var] = ACTIONS(1689), - [anon_sym_BANG] = ACTIONS(1691), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1695), - [anon_sym_in] = ACTIONS(1691), - [anon_sym_of] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1695), - [anon_sym_LBRACK] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1691), - [anon_sym_GT] = ACTIONS(1691), - [anon_sym_SLASH] = ACTIONS(1691), - [anon_sym_DOT] = ACTIONS(1695), - [anon_sym_async] = ACTIONS(1689), - [anon_sym_function] = ACTIONS(1689), - [anon_sym_QMARK_DOT] = ACTIONS(1695), - [anon_sym_AMP_AMP] = ACTIONS(1695), - [anon_sym_PIPE_PIPE] = ACTIONS(1695), - [anon_sym_GT_GT] = ACTIONS(1691), - [anon_sym_GT_GT_GT] = ACTIONS(1695), - [anon_sym_LT_LT] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1695), - [anon_sym_PIPE] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_PERCENT] = ACTIONS(1695), - [anon_sym_STAR_STAR] = ACTIONS(1695), - [anon_sym_LT_EQ] = ACTIONS(1695), - [anon_sym_EQ_EQ] = ACTIONS(1691), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1695), - [anon_sym_BANG_EQ] = ACTIONS(1691), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1695), - [anon_sym_GT_EQ] = ACTIONS(1695), - [anon_sym_QMARK_QMARK] = ACTIONS(1695), - [anon_sym_instanceof] = ACTIONS(1691), - [anon_sym_PLUS_PLUS] = ACTIONS(1695), - [anon_sym_DASH_DASH] = ACTIONS(1695), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1695), - [anon_sym_AT] = ACTIONS(1693), - [anon_sym_static] = ACTIONS(1689), - [anon_sym_readonly] = ACTIONS(1689), - [anon_sym_get] = ACTIONS(1689), - [anon_sym_set] = ACTIONS(1689), - [anon_sym_declare] = ACTIONS(1689), - [anon_sym_public] = ACTIONS(1689), - [anon_sym_private] = ACTIONS(1689), - [anon_sym_protected] = ACTIONS(1689), - [anon_sym_override] = ACTIONS(1689), - [anon_sym_module] = ACTIONS(1689), - [anon_sym_any] = ACTIONS(1689), - [anon_sym_number] = ACTIONS(1689), - [anon_sym_boolean] = ACTIONS(1689), - [anon_sym_string] = ACTIONS(1689), - [anon_sym_symbol] = ACTIONS(1689), - [anon_sym_property] = ACTIONS(1689), - [anon_sym_signal] = ACTIONS(1689), - [anon_sym_on] = ACTIONS(1689), - [anon_sym_required] = ACTIONS(1689), - [anon_sym_component] = ACTIONS(1689), - [anon_sym_satisfies] = ACTIONS(1691), - [anon_sym_enum] = ACTIONS(1689), - [sym__automatic_semicolon] = ACTIONS(2738), - [sym__ternary_qmark] = ACTIONS(1695), - }, - [873] = { - [sym_identifier] = ACTIONS(1537), - [anon_sym_export] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_as] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_COMMA] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_from] = ACTIONS(1537), - [anon_sym_var] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_else] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1537), - [anon_sym_of] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_GT] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1539), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_function] = ACTIONS(1537), - [anon_sym_QMARK_DOT] = ACTIONS(1539), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_PIPE_PIPE] = ACTIONS(1539), - [anon_sym_GT_GT] = ACTIONS(1537), - [anon_sym_GT_GT_GT] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1539), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1539), - [anon_sym_STAR_STAR] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1539), - [anon_sym_EQ_EQ] = ACTIONS(1537), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1537), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1539), - [anon_sym_GT_EQ] = ACTIONS(1539), - [anon_sym_QMARK_QMARK] = ACTIONS(1539), - [anon_sym_instanceof] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1539), - [anon_sym_AT] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_readonly] = ACTIONS(1537), - [anon_sym_get] = ACTIONS(1537), - [anon_sym_set] = ACTIONS(1537), - [anon_sym_declare] = ACTIONS(1537), - [anon_sym_public] = ACTIONS(1537), - [anon_sym_private] = ACTIONS(1537), - [anon_sym_protected] = ACTIONS(1537), - [anon_sym_override] = ACTIONS(1537), - [anon_sym_module] = ACTIONS(1537), - [anon_sym_any] = ACTIONS(1537), - [anon_sym_number] = ACTIONS(1537), - [anon_sym_boolean] = ACTIONS(1537), - [anon_sym_string] = ACTIONS(1537), - [anon_sym_symbol] = ACTIONS(1537), - [anon_sym_property] = ACTIONS(1537), - [anon_sym_signal] = ACTIONS(1537), - [anon_sym_on] = ACTIONS(1537), - [anon_sym_required] = ACTIONS(1537), - [anon_sym_component] = ACTIONS(1537), - [anon_sym_satisfies] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [sym__automatic_semicolon] = ACTIONS(1539), - [sym__ternary_qmark] = ACTIONS(1539), - }, - [874] = { - [sym_identifier] = ACTIONS(1707), - [anon_sym_export] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_default] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), - [anon_sym_as] = ACTIONS(1707), - [anon_sym_namespace] = ACTIONS(1707), - [anon_sym_COMMA] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_from] = ACTIONS(1707), - [anon_sym_var] = ACTIONS(1707), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1709), - [anon_sym_in] = ACTIONS(1707), - [anon_sym_of] = ACTIONS(1707), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_GT] = ACTIONS(1707), - [anon_sym_SLASH] = ACTIONS(1707), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_async] = ACTIONS(1707), - [anon_sym_function] = ACTIONS(1707), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_AMP_AMP] = ACTIONS(1709), - [anon_sym_PIPE_PIPE] = ACTIONS(1709), - [anon_sym_GT_GT] = ACTIONS(1707), - [anon_sym_GT_GT_GT] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1709), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_CARET] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_PERCENT] = ACTIONS(1709), - [anon_sym_STAR_STAR] = ACTIONS(1709), - [anon_sym_LT_EQ] = ACTIONS(1709), - [anon_sym_EQ_EQ] = ACTIONS(1707), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1709), - [anon_sym_BANG_EQ] = ACTIONS(1707), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1709), - [anon_sym_GT_EQ] = ACTIONS(1709), - [anon_sym_QMARK_QMARK] = ACTIONS(1709), - [anon_sym_instanceof] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1709), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1709), - [anon_sym_AT] = ACTIONS(1709), - [anon_sym_static] = ACTIONS(1707), - [anon_sym_readonly] = ACTIONS(1707), - [anon_sym_get] = ACTIONS(1707), - [anon_sym_set] = ACTIONS(1707), - [anon_sym_declare] = ACTIONS(1707), - [anon_sym_public] = ACTIONS(1707), - [anon_sym_private] = ACTIONS(1707), - [anon_sym_protected] = ACTIONS(1707), - [anon_sym_override] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_any] = ACTIONS(1707), - [anon_sym_number] = ACTIONS(1707), - [anon_sym_boolean] = ACTIONS(1707), - [anon_sym_string] = ACTIONS(1707), - [anon_sym_symbol] = ACTIONS(1707), - [anon_sym_property] = ACTIONS(1707), - [anon_sym_signal] = ACTIONS(1707), - [anon_sym_on] = ACTIONS(1707), - [anon_sym_required] = ACTIONS(1707), - [anon_sym_component] = ACTIONS(1707), - [anon_sym_satisfies] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [sym__automatic_semicolon] = ACTIONS(1709), - [sym__ternary_qmark] = ACTIONS(1709), - }, - [875] = { - [sym_identifier] = ACTIONS(1651), - [anon_sym_export] = ACTIONS(1651), - [anon_sym_STAR] = ACTIONS(1653), - [anon_sym_default] = ACTIONS(1651), - [anon_sym_type] = ACTIONS(1651), - [anon_sym_as] = ACTIONS(1653), - [anon_sym_namespace] = ACTIONS(1651), - [anon_sym_COMMA] = ACTIONS(1657), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_from] = ACTIONS(1651), - [anon_sym_var] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1651), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_in] = ACTIONS(1653), - [anon_sym_of] = ACTIONS(1651), - [anon_sym_SEMI] = ACTIONS(1657), - [anon_sym_LBRACK] = ACTIONS(1657), - [anon_sym_LT] = ACTIONS(1653), - [anon_sym_GT] = ACTIONS(1653), - [anon_sym_SLASH] = ACTIONS(1653), - [anon_sym_DOT] = ACTIONS(1657), - [anon_sym_async] = ACTIONS(1651), - [anon_sym_function] = ACTIONS(1651), - [anon_sym_QMARK_DOT] = ACTIONS(1657), - [anon_sym_AMP_AMP] = ACTIONS(1657), - [anon_sym_PIPE_PIPE] = ACTIONS(1657), - [anon_sym_GT_GT] = ACTIONS(1653), - [anon_sym_GT_GT_GT] = ACTIONS(1657), - [anon_sym_LT_LT] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1653), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_PERCENT] = ACTIONS(1657), - [anon_sym_STAR_STAR] = ACTIONS(1657), - [anon_sym_LT_EQ] = ACTIONS(1657), - [anon_sym_EQ_EQ] = ACTIONS(1653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1657), - [anon_sym_BANG_EQ] = ACTIONS(1653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1657), - [anon_sym_GT_EQ] = ACTIONS(1657), - [anon_sym_QMARK_QMARK] = ACTIONS(1657), - [anon_sym_instanceof] = ACTIONS(1653), - [anon_sym_PLUS_PLUS] = ACTIONS(1657), - [anon_sym_DASH_DASH] = ACTIONS(1657), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1657), - [anon_sym_AT] = ACTIONS(1655), - [anon_sym_static] = ACTIONS(1651), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_get] = ACTIONS(1651), - [anon_sym_set] = ACTIONS(1651), - [anon_sym_declare] = ACTIONS(1651), - [anon_sym_public] = ACTIONS(1651), - [anon_sym_private] = ACTIONS(1651), - [anon_sym_protected] = ACTIONS(1651), - [anon_sym_override] = ACTIONS(1651), - [anon_sym_module] = ACTIONS(1651), - [anon_sym_any] = ACTIONS(1651), - [anon_sym_number] = ACTIONS(1651), - [anon_sym_boolean] = ACTIONS(1651), - [anon_sym_string] = ACTIONS(1651), - [anon_sym_symbol] = ACTIONS(1651), - [anon_sym_property] = ACTIONS(1651), - [anon_sym_signal] = ACTIONS(1651), - [anon_sym_on] = ACTIONS(1651), - [anon_sym_required] = ACTIONS(1651), - [anon_sym_component] = ACTIONS(1651), - [anon_sym_satisfies] = ACTIONS(1653), - [anon_sym_enum] = ACTIONS(1651), - [sym__automatic_semicolon] = ACTIONS(2740), - [sym__ternary_qmark] = ACTIONS(1657), - }, - [876] = { - [sym_identifier] = ACTIONS(1497), - [anon_sym_export] = ACTIONS(1497), - [anon_sym_STAR] = ACTIONS(1497), - [anon_sym_default] = ACTIONS(1497), - [anon_sym_type] = ACTIONS(1497), - [anon_sym_as] = ACTIONS(1497), - [anon_sym_namespace] = ACTIONS(1497), - [anon_sym_COMMA] = ACTIONS(1503), - [anon_sym_RBRACE] = ACTIONS(1503), - [anon_sym_from] = ACTIONS(1497), - [anon_sym_var] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1497), - [anon_sym_else] = ACTIONS(1497), - [anon_sym_LPAREN] = ACTIONS(1503), - [anon_sym_in] = ACTIONS(1497), - [anon_sym_of] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(1497), - [anon_sym_GT] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1503), - [anon_sym_async] = ACTIONS(1497), - [anon_sym_function] = ACTIONS(1497), - [anon_sym_QMARK_DOT] = ACTIONS(1503), - [anon_sym_AMP_AMP] = ACTIONS(1503), - [anon_sym_PIPE_PIPE] = ACTIONS(1503), - [anon_sym_GT_GT] = ACTIONS(1497), - [anon_sym_GT_GT_GT] = ACTIONS(1503), - [anon_sym_LT_LT] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1497), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_PIPE] = ACTIONS(1497), - [anon_sym_PLUS] = ACTIONS(1497), - [anon_sym_DASH] = ACTIONS(1497), - [anon_sym_PERCENT] = ACTIONS(1503), - [anon_sym_STAR_STAR] = ACTIONS(1503), - [anon_sym_LT_EQ] = ACTIONS(1503), - [anon_sym_EQ_EQ] = ACTIONS(1497), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1503), - [anon_sym_BANG_EQ] = ACTIONS(1497), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1503), - [anon_sym_GT_EQ] = ACTIONS(1503), - [anon_sym_QMARK_QMARK] = ACTIONS(1503), - [anon_sym_instanceof] = ACTIONS(1497), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1503), - [anon_sym_AT] = ACTIONS(1503), - [anon_sym_static] = ACTIONS(1497), - [anon_sym_readonly] = ACTIONS(1497), - [anon_sym_get] = ACTIONS(1497), - [anon_sym_set] = ACTIONS(1497), - [anon_sym_declare] = ACTIONS(1497), - [anon_sym_public] = ACTIONS(1497), - [anon_sym_private] = ACTIONS(1497), - [anon_sym_protected] = ACTIONS(1497), - [anon_sym_override] = ACTIONS(1497), - [anon_sym_module] = ACTIONS(1497), - [anon_sym_any] = ACTIONS(1497), - [anon_sym_number] = ACTIONS(1497), - [anon_sym_boolean] = ACTIONS(1497), - [anon_sym_string] = ACTIONS(1497), - [anon_sym_symbol] = ACTIONS(1497), - [anon_sym_property] = ACTIONS(1497), - [anon_sym_signal] = ACTIONS(1497), - [anon_sym_on] = ACTIONS(1497), - [anon_sym_required] = ACTIONS(1497), - [anon_sym_component] = ACTIONS(1497), - [anon_sym_satisfies] = ACTIONS(1497), - [anon_sym_enum] = ACTIONS(1497), - [sym__automatic_semicolon] = ACTIONS(2742), - [sym__ternary_qmark] = ACTIONS(1503), - }, - [877] = { - [sym_identifier] = ACTIONS(1577), - [anon_sym_export] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1579), - [anon_sym_default] = ACTIONS(1577), - [anon_sym_type] = ACTIONS(1577), - [anon_sym_as] = ACTIONS(1579), - [anon_sym_namespace] = ACTIONS(1577), - [anon_sym_COMMA] = ACTIONS(1583), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_from] = ACTIONS(1577), - [anon_sym_var] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1579), - [anon_sym_else] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1583), - [anon_sym_in] = ACTIONS(1579), - [anon_sym_of] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1583), - [anon_sym_LBRACK] = ACTIONS(1583), - [anon_sym_LT] = ACTIONS(1579), - [anon_sym_GT] = ACTIONS(1579), - [anon_sym_SLASH] = ACTIONS(1579), - [anon_sym_DOT] = ACTIONS(1583), - [anon_sym_async] = ACTIONS(1577), - [anon_sym_function] = ACTIONS(1577), - [anon_sym_QMARK_DOT] = ACTIONS(1583), - [anon_sym_AMP_AMP] = ACTIONS(1583), - [anon_sym_PIPE_PIPE] = ACTIONS(1583), - [anon_sym_GT_GT] = ACTIONS(1579), - [anon_sym_GT_GT_GT] = ACTIONS(1583), - [anon_sym_LT_LT] = ACTIONS(1583), - [anon_sym_AMP] = ACTIONS(1579), - [anon_sym_CARET] = ACTIONS(1583), - [anon_sym_PIPE] = ACTIONS(1579), - [anon_sym_PLUS] = ACTIONS(1579), - [anon_sym_DASH] = ACTIONS(1579), - [anon_sym_PERCENT] = ACTIONS(1583), - [anon_sym_STAR_STAR] = ACTIONS(1583), - [anon_sym_LT_EQ] = ACTIONS(1583), - [anon_sym_EQ_EQ] = ACTIONS(1579), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1583), - [anon_sym_BANG_EQ] = ACTIONS(1579), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1583), - [anon_sym_GT_EQ] = ACTIONS(1583), - [anon_sym_QMARK_QMARK] = ACTIONS(1583), - [anon_sym_instanceof] = ACTIONS(1579), - [anon_sym_PLUS_PLUS] = ACTIONS(1583), - [anon_sym_DASH_DASH] = ACTIONS(1583), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1583), - [anon_sym_AT] = ACTIONS(1581), - [anon_sym_static] = ACTIONS(1577), - [anon_sym_readonly] = ACTIONS(1577), - [anon_sym_get] = ACTIONS(1577), - [anon_sym_set] = ACTIONS(1577), - [anon_sym_declare] = ACTIONS(1577), - [anon_sym_public] = ACTIONS(1577), - [anon_sym_private] = ACTIONS(1577), - [anon_sym_protected] = ACTIONS(1577), - [anon_sym_override] = ACTIONS(1577), - [anon_sym_module] = ACTIONS(1577), - [anon_sym_any] = ACTIONS(1577), - [anon_sym_number] = ACTIONS(1577), - [anon_sym_boolean] = ACTIONS(1577), - [anon_sym_string] = ACTIONS(1577), - [anon_sym_symbol] = ACTIONS(1577), - [anon_sym_property] = ACTIONS(1577), - [anon_sym_signal] = ACTIONS(1577), - [anon_sym_on] = ACTIONS(1577), - [anon_sym_required] = ACTIONS(1577), - [anon_sym_component] = ACTIONS(1577), - [anon_sym_satisfies] = ACTIONS(1579), - [anon_sym_enum] = ACTIONS(1577), - [sym__automatic_semicolon] = ACTIONS(2744), - [sym__ternary_qmark] = ACTIONS(1583), - }, - [878] = { - [sym_identifier] = ACTIONS(1529), - [anon_sym_export] = ACTIONS(1529), - [anon_sym_STAR] = ACTIONS(1529), - [anon_sym_default] = ACTIONS(1529), - [anon_sym_type] = ACTIONS(1529), - [anon_sym_as] = ACTIONS(1529), - [anon_sym_namespace] = ACTIONS(1529), - [anon_sym_COMMA] = ACTIONS(1531), - [anon_sym_RBRACE] = ACTIONS(1531), - [anon_sym_from] = ACTIONS(1529), - [anon_sym_var] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_else] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_in] = ACTIONS(1529), - [anon_sym_of] = ACTIONS(1529), - [anon_sym_SEMI] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1531), - [anon_sym_LT] = ACTIONS(1529), - [anon_sym_GT] = ACTIONS(1529), - [anon_sym_SLASH] = ACTIONS(1529), - [anon_sym_DOT] = ACTIONS(1531), - [anon_sym_async] = ACTIONS(1529), - [anon_sym_function] = ACTIONS(1529), - [anon_sym_QMARK_DOT] = ACTIONS(1531), - [anon_sym_AMP_AMP] = ACTIONS(1531), - [anon_sym_PIPE_PIPE] = ACTIONS(1531), - [anon_sym_GT_GT] = ACTIONS(1529), - [anon_sym_GT_GT_GT] = ACTIONS(1531), - [anon_sym_LT_LT] = ACTIONS(1531), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_CARET] = ACTIONS(1531), - [anon_sym_PIPE] = ACTIONS(1529), - [anon_sym_PLUS] = ACTIONS(1529), - [anon_sym_DASH] = ACTIONS(1529), - [anon_sym_PERCENT] = ACTIONS(1531), - [anon_sym_STAR_STAR] = ACTIONS(1531), - [anon_sym_LT_EQ] = ACTIONS(1531), - [anon_sym_EQ_EQ] = ACTIONS(1529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1531), - [anon_sym_BANG_EQ] = ACTIONS(1529), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1531), - [anon_sym_GT_EQ] = ACTIONS(1531), - [anon_sym_QMARK_QMARK] = ACTIONS(1531), - [anon_sym_instanceof] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1531), - [anon_sym_DASH_DASH] = ACTIONS(1531), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1531), - [anon_sym_AT] = ACTIONS(1531), - [anon_sym_static] = ACTIONS(1529), - [anon_sym_readonly] = ACTIONS(1529), - [anon_sym_get] = ACTIONS(1529), - [anon_sym_set] = ACTIONS(1529), - [anon_sym_declare] = ACTIONS(1529), - [anon_sym_public] = ACTIONS(1529), - [anon_sym_private] = ACTIONS(1529), - [anon_sym_protected] = ACTIONS(1529), - [anon_sym_override] = ACTIONS(1529), - [anon_sym_module] = ACTIONS(1529), - [anon_sym_any] = ACTIONS(1529), - [anon_sym_number] = ACTIONS(1529), - [anon_sym_boolean] = ACTIONS(1529), - [anon_sym_string] = ACTIONS(1529), - [anon_sym_symbol] = ACTIONS(1529), - [anon_sym_property] = ACTIONS(1529), - [anon_sym_signal] = ACTIONS(1529), - [anon_sym_on] = ACTIONS(1529), - [anon_sym_required] = ACTIONS(1529), - [anon_sym_component] = ACTIONS(1529), - [anon_sym_satisfies] = ACTIONS(1529), - [anon_sym_enum] = ACTIONS(1529), - [sym__automatic_semicolon] = ACTIONS(1531), - [sym__ternary_qmark] = ACTIONS(1531), - }, - [879] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4237), - [sym_optional_tuple_parameter] = STATE(4237), - [sym_optional_type] = STATE(4237), - [sym_rest_type] = STATE(4237), - [sym__tuple_type_member] = STATE(4237), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(2748), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [880] = { - [sym_identifier] = ACTIONS(1597), - [anon_sym_export] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1597), - [anon_sym_default] = ACTIONS(1597), - [anon_sym_type] = ACTIONS(1597), - [anon_sym_as] = ACTIONS(1597), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_COMMA] = ACTIONS(1599), - [anon_sym_RBRACE] = ACTIONS(1599), - [anon_sym_from] = ACTIONS(1597), - [anon_sym_var] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1597), - [anon_sym_else] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1599), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_of] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_LT] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1597), - [anon_sym_SLASH] = ACTIONS(1597), - [anon_sym_DOT] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1597), - [anon_sym_function] = ACTIONS(1597), - [anon_sym_QMARK_DOT] = ACTIONS(1599), - [anon_sym_AMP_AMP] = ACTIONS(1599), - [anon_sym_PIPE_PIPE] = ACTIONS(1599), - [anon_sym_GT_GT] = ACTIONS(1597), - [anon_sym_GT_GT_GT] = ACTIONS(1599), - [anon_sym_LT_LT] = ACTIONS(1599), - [anon_sym_AMP] = ACTIONS(1597), - [anon_sym_CARET] = ACTIONS(1599), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1597), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_PERCENT] = ACTIONS(1599), - [anon_sym_STAR_STAR] = ACTIONS(1599), - [anon_sym_LT_EQ] = ACTIONS(1599), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1599), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1599), - [anon_sym_GT_EQ] = ACTIONS(1599), - [anon_sym_QMARK_QMARK] = ACTIONS(1599), - [anon_sym_instanceof] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1599), - [anon_sym_DASH_DASH] = ACTIONS(1599), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1599), - [anon_sym_AT] = ACTIONS(1599), - [anon_sym_static] = ACTIONS(1597), - [anon_sym_readonly] = ACTIONS(1597), - [anon_sym_get] = ACTIONS(1597), - [anon_sym_set] = ACTIONS(1597), - [anon_sym_declare] = ACTIONS(1597), - [anon_sym_public] = ACTIONS(1597), - [anon_sym_private] = ACTIONS(1597), - [anon_sym_protected] = ACTIONS(1597), - [anon_sym_override] = ACTIONS(1597), - [anon_sym_module] = ACTIONS(1597), - [anon_sym_any] = ACTIONS(1597), - [anon_sym_number] = ACTIONS(1597), - [anon_sym_boolean] = ACTIONS(1597), - [anon_sym_string] = ACTIONS(1597), - [anon_sym_symbol] = ACTIONS(1597), - [anon_sym_property] = ACTIONS(1597), - [anon_sym_signal] = ACTIONS(1597), - [anon_sym_on] = ACTIONS(1597), - [anon_sym_required] = ACTIONS(1597), - [anon_sym_component] = ACTIONS(1597), - [anon_sym_satisfies] = ACTIONS(1597), - [anon_sym_enum] = ACTIONS(1597), - [sym__automatic_semicolon] = ACTIONS(1599), - [sym__ternary_qmark] = ACTIONS(1599), + [1856] = { + [sym_comment] = STATE(1856), + [sym_identifier] = ACTIONS(2430), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_as] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_COMMA] = ACTIONS(2432), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_from] = ACTIONS(2430), + [anon_sym_var] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2432), + [anon_sym_else] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_of] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2432), + [anon_sym_GT] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(2432), + [anon_sym_async] = ACTIONS(2430), + [anon_sym_function] = ACTIONS(2430), + [anon_sym_QMARK_DOT] = ACTIONS(2432), + [anon_sym_AMP_AMP] = ACTIONS(2432), + [anon_sym_PIPE_PIPE] = ACTIONS(2432), + [anon_sym_GT_GT] = ACTIONS(2432), + [anon_sym_GT_GT_GT] = ACTIONS(2432), + [anon_sym_LT_LT] = ACTIONS(2432), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_CARET] = ACTIONS(2432), + [anon_sym_PIPE] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_SLASH] = ACTIONS(2432), + [anon_sym_PERCENT] = ACTIONS(2432), + [anon_sym_STAR_STAR] = ACTIONS(2432), + [anon_sym_LT] = ACTIONS(2432), + [anon_sym_LT_EQ] = ACTIONS(2432), + [anon_sym_EQ_EQ] = ACTIONS(2432), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), + [anon_sym_BANG_EQ] = ACTIONS(2432), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), + [anon_sym_GT_EQ] = ACTIONS(2432), + [anon_sym_QMARK_QMARK] = ACTIONS(2432), + [anon_sym_instanceof] = ACTIONS(2432), + [anon_sym_PLUS_PLUS] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2432), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2432), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2430), + [anon_sym_readonly] = ACTIONS(2430), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_declare] = ACTIONS(2430), + [anon_sym_public] = ACTIONS(2430), + [anon_sym_private] = ACTIONS(2430), + [anon_sym_protected] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_any] = ACTIONS(2430), + [anon_sym_number] = ACTIONS(2430), + [anon_sym_boolean] = ACTIONS(2430), + [anon_sym_string] = ACTIONS(2430), + [anon_sym_symbol] = ACTIONS(2430), + [anon_sym_object] = ACTIONS(2430), + [anon_sym_property] = ACTIONS(2430), + [anon_sym_signal] = ACTIONS(2430), + [anon_sym_on] = ACTIONS(2430), + [anon_sym_required] = ACTIONS(2430), + [anon_sym_component] = ACTIONS(2430), + [anon_sym_satisfies] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2430), + [sym__automatic_semicolon] = ACTIONS(3842), + [sym__ternary_qmark] = ACTIONS(2436), + [sym_html_comment] = ACTIONS(5), }, - [881] = { - [sym_identifier] = ACTIONS(1543), - [anon_sym_export] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_type] = ACTIONS(1543), - [anon_sym_as] = ACTIONS(1545), - [anon_sym_namespace] = ACTIONS(1543), - [anon_sym_COMMA] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1547), - [anon_sym_from] = ACTIONS(1543), - [anon_sym_var] = ACTIONS(1543), - [anon_sym_BANG] = ACTIONS(1545), - [anon_sym_else] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_in] = ACTIONS(1545), - [anon_sym_of] = ACTIONS(1543), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_LT] = ACTIONS(1545), - [anon_sym_GT] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(1549), - [anon_sym_async] = ACTIONS(1543), - [anon_sym_function] = ACTIONS(1543), - [anon_sym_QMARK_DOT] = ACTIONS(1549), - [anon_sym_AMP_AMP] = ACTIONS(1549), - [anon_sym_PIPE_PIPE] = ACTIONS(1549), - [anon_sym_GT_GT] = ACTIONS(1545), - [anon_sym_GT_GT_GT] = ACTIONS(1549), - [anon_sym_LT_LT] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1545), - [anon_sym_PLUS] = ACTIONS(1545), - [anon_sym_DASH] = ACTIONS(1545), - [anon_sym_PERCENT] = ACTIONS(1549), - [anon_sym_STAR_STAR] = ACTIONS(1549), - [anon_sym_LT_EQ] = ACTIONS(1549), - [anon_sym_EQ_EQ] = ACTIONS(1545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1549), - [anon_sym_BANG_EQ] = ACTIONS(1545), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(1549), - [anon_sym_QMARK_QMARK] = ACTIONS(1549), - [anon_sym_instanceof] = ACTIONS(1545), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_DASH_DASH] = ACTIONS(1549), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1549), - [anon_sym_AT] = ACTIONS(1547), - [anon_sym_static] = ACTIONS(1543), - [anon_sym_readonly] = ACTIONS(1543), - [anon_sym_get] = ACTIONS(1543), - [anon_sym_set] = ACTIONS(1543), - [anon_sym_declare] = ACTIONS(1543), - [anon_sym_public] = ACTIONS(1543), - [anon_sym_private] = ACTIONS(1543), - [anon_sym_protected] = ACTIONS(1543), - [anon_sym_override] = ACTIONS(1543), - [anon_sym_module] = ACTIONS(1543), - [anon_sym_any] = ACTIONS(1543), - [anon_sym_number] = ACTIONS(1543), - [anon_sym_boolean] = ACTIONS(1543), - [anon_sym_string] = ACTIONS(1543), - [anon_sym_symbol] = ACTIONS(1543), - [anon_sym_property] = ACTIONS(1543), - [anon_sym_signal] = ACTIONS(1543), - [anon_sym_on] = ACTIONS(1543), - [anon_sym_required] = ACTIONS(1543), - [anon_sym_component] = ACTIONS(1543), - [anon_sym_satisfies] = ACTIONS(1545), - [anon_sym_enum] = ACTIONS(1543), - [sym__automatic_semicolon] = ACTIONS(2758), - [sym__ternary_qmark] = ACTIONS(1549), + [1857] = { + [sym_comment] = STATE(1857), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_default] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_as] = ACTIONS(2414), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_COMMA] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_from] = ACTIONS(2414), + [anon_sym_var] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_in] = ACTIONS(2414), + [anon_sym_of] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2414), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2414), + [anon_sym_QMARK_DOT] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2414), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2414), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_STAR_STAR] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2414), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2414), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_instanceof] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_property] = ACTIONS(2414), + [anon_sym_signal] = ACTIONS(2414), + [anon_sym_on] = ACTIONS(2414), + [anon_sym_required] = ACTIONS(2414), + [anon_sym_component] = ACTIONS(2414), + [anon_sym_satisfies] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [sym__automatic_semicolon] = ACTIONS(2416), + [sym__ternary_qmark] = ACTIONS(2416), + [sym_html_comment] = ACTIONS(5), }, - [882] = { - [sym_identifier] = ACTIONS(1711), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1711), - [anon_sym_type] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1713), - [anon_sym_namespace] = ACTIONS(1711), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_from] = ACTIONS(1711), - [anon_sym_var] = ACTIONS(1711), - [anon_sym_BANG] = ACTIONS(1713), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_in] = ACTIONS(1713), - [anon_sym_of] = ACTIONS(1711), - [anon_sym_SEMI] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LT] = ACTIONS(1713), - [anon_sym_GT] = ACTIONS(1713), - [anon_sym_SLASH] = ACTIONS(1713), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1711), - [anon_sym_function] = ACTIONS(1711), - [anon_sym_QMARK_DOT] = ACTIONS(1717), - [anon_sym_AMP_AMP] = ACTIONS(1717), - [anon_sym_PIPE_PIPE] = ACTIONS(1717), - [anon_sym_GT_GT] = ACTIONS(1713), - [anon_sym_GT_GT_GT] = ACTIONS(1717), - [anon_sym_LT_LT] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1713), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_PERCENT] = ACTIONS(1717), - [anon_sym_STAR_STAR] = ACTIONS(1717), - [anon_sym_LT_EQ] = ACTIONS(1717), - [anon_sym_EQ_EQ] = ACTIONS(1713), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1717), - [anon_sym_BANG_EQ] = ACTIONS(1713), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1717), - [anon_sym_GT_EQ] = ACTIONS(1717), - [anon_sym_QMARK_QMARK] = ACTIONS(1717), - [anon_sym_instanceof] = ACTIONS(1713), - [anon_sym_PLUS_PLUS] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1717), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1717), - [anon_sym_AT] = ACTIONS(1715), - [anon_sym_static] = ACTIONS(1711), - [anon_sym_readonly] = ACTIONS(1711), - [anon_sym_get] = ACTIONS(1711), - [anon_sym_set] = ACTIONS(1711), - [anon_sym_declare] = ACTIONS(1711), - [anon_sym_public] = ACTIONS(1711), - [anon_sym_private] = ACTIONS(1711), - [anon_sym_protected] = ACTIONS(1711), - [anon_sym_override] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_any] = ACTIONS(1711), - [anon_sym_number] = ACTIONS(1711), - [anon_sym_boolean] = ACTIONS(1711), - [anon_sym_string] = ACTIONS(1711), - [anon_sym_symbol] = ACTIONS(1711), - [anon_sym_property] = ACTIONS(1711), - [anon_sym_signal] = ACTIONS(1711), - [anon_sym_on] = ACTIONS(1711), - [anon_sym_required] = ACTIONS(1711), - [anon_sym_component] = ACTIONS(1711), - [anon_sym_satisfies] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1711), - [sym__automatic_semicolon] = ACTIONS(2760), - [sym__ternary_qmark] = ACTIONS(1717), + [1858] = { + [sym_comment] = STATE(1858), + [sym_identifier] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_as] = ACTIONS(2480), + [anon_sym_namespace] = ACTIONS(2478), + [anon_sym_COMMA] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_from] = ACTIONS(2478), + [anon_sym_var] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2480), + [anon_sym_in] = ACTIONS(2480), + [anon_sym_of] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(2480), + [anon_sym_GT] = ACTIONS(2480), + [anon_sym_DOT] = ACTIONS(2480), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_QMARK_DOT] = ACTIONS(2480), + [anon_sym_AMP_AMP] = ACTIONS(2480), + [anon_sym_PIPE_PIPE] = ACTIONS(2480), + [anon_sym_GT_GT] = ACTIONS(2480), + [anon_sym_GT_GT_GT] = ACTIONS(2480), + [anon_sym_LT_LT] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2480), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_SLASH] = ACTIONS(2480), + [anon_sym_PERCENT] = ACTIONS(2480), + [anon_sym_STAR_STAR] = ACTIONS(2480), + [anon_sym_LT] = ACTIONS(2480), + [anon_sym_LT_EQ] = ACTIONS(2480), + [anon_sym_EQ_EQ] = ACTIONS(2480), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), + [anon_sym_BANG_EQ] = ACTIONS(2480), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), + [anon_sym_GT_EQ] = ACTIONS(2480), + [anon_sym_QMARK_QMARK] = ACTIONS(2480), + [anon_sym_instanceof] = ACTIONS(2480), + [anon_sym_PLUS_PLUS] = ACTIONS(2480), + [anon_sym_DASH_DASH] = ACTIONS(2480), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2480), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_override] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_any] = ACTIONS(2478), + [anon_sym_number] = ACTIONS(2478), + [anon_sym_boolean] = ACTIONS(2478), + [anon_sym_string] = ACTIONS(2478), + [anon_sym_symbol] = ACTIONS(2478), + [anon_sym_object] = ACTIONS(2478), + [anon_sym_property] = ACTIONS(2478), + [anon_sym_signal] = ACTIONS(2478), + [anon_sym_on] = ACTIONS(2478), + [anon_sym_required] = ACTIONS(2478), + [anon_sym_component] = ACTIONS(2478), + [anon_sym_satisfies] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2478), + [sym__automatic_semicolon] = ACTIONS(3844), + [sym__ternary_qmark] = ACTIONS(2484), + [sym_html_comment] = ACTIONS(5), + }, + [1859] = { + [sym_comment] = STATE(1859), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_as] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_from] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_else] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_in] = ACTIONS(2442), + [anon_sym_of] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_DOT] = ACTIONS(2442), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_QMARK_DOT] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_PIPE_PIPE] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2442), + [anon_sym_GT_GT_GT] = ACTIONS(2442), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2442), + [anon_sym_PERCENT] = ACTIONS(2442), + [anon_sym_STAR_STAR] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_LT_EQ] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2442), + [anon_sym_BANG_EQ] = ACTIONS(2442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2442), + [anon_sym_GT_EQ] = ACTIONS(2442), + [anon_sym_QMARK_QMARK] = ACTIONS(2442), + [anon_sym_instanceof] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2442), + [anon_sym_AT] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), + [anon_sym_property] = ACTIONS(2440), + [anon_sym_signal] = ACTIONS(2440), + [anon_sym_on] = ACTIONS(2440), + [anon_sym_required] = ACTIONS(2440), + [anon_sym_component] = ACTIONS(2440), + [anon_sym_satisfies] = ACTIONS(2442), + [anon_sym_enum] = ACTIONS(2440), + [sym__automatic_semicolon] = ACTIONS(3846), + [sym__ternary_qmark] = ACTIONS(2446), + [sym_html_comment] = ACTIONS(5), + }, + [1860] = { + [sym_comment] = STATE(1860), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2342), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2342), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_QMARK_DOT] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2342), + [anon_sym_DASH] = ACTIONS(2342), + [anon_sym_SLASH] = ACTIONS(2342), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_instanceof] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2342), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_satisfies] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(3848), + [sym__ternary_qmark] = ACTIONS(2346), + [sym_html_comment] = ACTIONS(5), + }, + [1861] = { + [sym_export_statement] = STATE(5530), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(7345), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1861), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(7345), + [sym_pair] = STATE(7345), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5530), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5530), + [sym_property_signature] = STATE(5530), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5530), + [sym_index_signature] = STATE(5530), + [aux_sym_export_statement_repeat1] = STATE(6305), + [aux_sym_object_repeat1] = STATE(7340), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(3850), + [anon_sym_export] = ACTIONS(3852), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3850), + [anon_sym_namespace] = ACTIONS(3850), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3854), + [anon_sym_RBRACE] = ACTIONS(3856), + [anon_sym_from] = ACTIONS(3850), + [anon_sym_let] = ACTIONS(3850), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(3860), + [anon_sym_new] = ACTIONS(3862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3864), + [anon_sym_readonly] = ACTIONS(3866), + [anon_sym_get] = ACTIONS(3868), + [anon_sym_set] = ACTIONS(3868), + [anon_sym_declare] = ACTIONS(3850), + [anon_sym_public] = ACTIONS(3870), + [anon_sym_private] = ACTIONS(3870), + [anon_sym_protected] = ACTIONS(3870), + [anon_sym_override] = ACTIONS(3872), + [anon_sym_module] = ACTIONS(3850), + [anon_sym_any] = ACTIONS(3850), + [anon_sym_number] = ACTIONS(3850), + [anon_sym_boolean] = ACTIONS(3850), + [anon_sym_string] = ACTIONS(3850), + [anon_sym_symbol] = ACTIONS(3850), + [anon_sym_object] = ACTIONS(3850), + [anon_sym_property] = ACTIONS(3850), + [anon_sym_signal] = ACTIONS(3850), + [anon_sym_on] = ACTIONS(3850), + [anon_sym_required] = ACTIONS(3850), + [anon_sym_component] = ACTIONS(3850), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3874), + [sym_html_comment] = ACTIONS(5), + }, + [1862] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1862), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7182), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(3876), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1863] = { + [sym_export_statement] = STATE(5726), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(7345), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1863), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(7345), + [sym_pair] = STATE(7345), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5726), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5726), + [sym_property_signature] = STATE(5726), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5726), + [sym_index_signature] = STATE(5726), + [aux_sym_export_statement_repeat1] = STATE(6305), + [aux_sym_object_repeat1] = STATE(7340), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(3880), + [anon_sym_export] = ACTIONS(3882), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3880), + [anon_sym_namespace] = ACTIONS(3880), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3814), + [anon_sym_from] = ACTIONS(3880), + [anon_sym_let] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(3880), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(3884), + [anon_sym_new] = ACTIONS(3886), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3888), + [anon_sym_readonly] = ACTIONS(3890), + [anon_sym_get] = ACTIONS(3892), + [anon_sym_set] = ACTIONS(3892), + [anon_sym_declare] = ACTIONS(3880), + [anon_sym_public] = ACTIONS(3894), + [anon_sym_private] = ACTIONS(3894), + [anon_sym_protected] = ACTIONS(3894), + [anon_sym_override] = ACTIONS(3896), + [anon_sym_module] = ACTIONS(3880), + [anon_sym_any] = ACTIONS(3880), + [anon_sym_number] = ACTIONS(3880), + [anon_sym_boolean] = ACTIONS(3880), + [anon_sym_string] = ACTIONS(3880), + [anon_sym_symbol] = ACTIONS(3880), + [anon_sym_object] = ACTIONS(3880), + [anon_sym_property] = ACTIONS(3880), + [anon_sym_signal] = ACTIONS(3880), + [anon_sym_on] = ACTIONS(3880), + [anon_sym_required] = ACTIONS(3880), + [anon_sym_component] = ACTIONS(3880), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3776), + [sym_html_comment] = ACTIONS(5), + }, + [1864] = { + [sym_export_statement] = STATE(5726), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(6846), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1864), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(6846), + [sym_pair] = STATE(6846), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5726), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5726), + [sym_property_signature] = STATE(5726), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5726), + [sym_index_signature] = STATE(5726), + [aux_sym_export_statement_repeat1] = STATE(6305), + [aux_sym_object_repeat1] = STATE(6853), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(3898), + [anon_sym_export] = ACTIONS(3900), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3898), + [anon_sym_namespace] = ACTIONS(3898), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3902), + [anon_sym_from] = ACTIONS(3898), + [anon_sym_let] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(3898), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3908), + [anon_sym_readonly] = ACTIONS(3910), + [anon_sym_get] = ACTIONS(3912), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_declare] = ACTIONS(3898), + [anon_sym_public] = ACTIONS(3914), + [anon_sym_private] = ACTIONS(3914), + [anon_sym_protected] = ACTIONS(3914), + [anon_sym_override] = ACTIONS(3916), + [anon_sym_module] = ACTIONS(3898), + [anon_sym_any] = ACTIONS(3898), + [anon_sym_number] = ACTIONS(3898), + [anon_sym_boolean] = ACTIONS(3898), + [anon_sym_string] = ACTIONS(3898), + [anon_sym_symbol] = ACTIONS(3898), + [anon_sym_object] = ACTIONS(3898), + [anon_sym_property] = ACTIONS(3898), + [anon_sym_signal] = ACTIONS(3898), + [anon_sym_on] = ACTIONS(3898), + [anon_sym_required] = ACTIONS(3898), + [anon_sym_component] = ACTIONS(3898), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3776), + [sym_html_comment] = ACTIONS(5), + }, + [1865] = { + [sym_export_statement] = STATE(5726), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(7345), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1865), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(7345), + [sym_pair] = STATE(7345), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5726), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5726), + [sym_property_signature] = STATE(5726), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5726), + [sym_index_signature] = STATE(5726), + [aux_sym_export_statement_repeat1] = STATE(6305), + [aux_sym_object_repeat1] = STATE(7340), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(3738), + [anon_sym_export] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3738), + [anon_sym_namespace] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3814), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(3738), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(3756), + [anon_sym_new] = ACTIONS(3758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3764), + [anon_sym_readonly] = ACTIONS(3766), + [anon_sym_get] = ACTIONS(3768), + [anon_sym_set] = ACTIONS(3768), + [anon_sym_declare] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3770), + [anon_sym_private] = ACTIONS(3770), + [anon_sym_protected] = ACTIONS(3770), + [anon_sym_override] = ACTIONS(3772), + [anon_sym_module] = ACTIONS(3738), + [anon_sym_any] = ACTIONS(3738), + [anon_sym_number] = ACTIONS(3738), + [anon_sym_boolean] = ACTIONS(3738), + [anon_sym_string] = ACTIONS(3738), + [anon_sym_symbol] = ACTIONS(3738), + [anon_sym_object] = ACTIONS(3738), + [anon_sym_property] = ACTIONS(3738), + [anon_sym_signal] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_component] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3776), + [sym_html_comment] = ACTIONS(5), + }, + [1866] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1866), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7004), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(3918), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3920), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1867] = { + [sym_comment] = STATE(1867), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_QMARK_DOT] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_GT_GT] = ACTIONS(2418), + [anon_sym_GT_GT_GT] = ACTIONS(2418), + [anon_sym_LT_LT] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_PERCENT] = ACTIONS(2418), + [anon_sym_STAR_STAR] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2418), + [anon_sym_QMARK_QMARK] = ACTIONS(2418), + [anon_sym_instanceof] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_satisfies] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2420), + [sym__ternary_qmark] = ACTIONS(2420), + [sym_html_comment] = ACTIONS(5), }, - [883] = { - [sym_identifier] = ACTIONS(1699), - [anon_sym_export] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1699), - [anon_sym_type] = ACTIONS(1699), - [anon_sym_as] = ACTIONS(1701), - [anon_sym_namespace] = ACTIONS(1699), - [anon_sym_COMMA] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_from] = ACTIONS(1699), - [anon_sym_var] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1701), - [anon_sym_else] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1705), - [anon_sym_in] = ACTIONS(1701), - [anon_sym_of] = ACTIONS(1699), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_LBRACK] = ACTIONS(1705), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1699), - [anon_sym_function] = ACTIONS(1699), - [anon_sym_QMARK_DOT] = ACTIONS(1705), - [anon_sym_AMP_AMP] = ACTIONS(1705), - [anon_sym_PIPE_PIPE] = ACTIONS(1705), - [anon_sym_GT_GT] = ACTIONS(1701), - [anon_sym_GT_GT_GT] = ACTIONS(1705), - [anon_sym_LT_LT] = ACTIONS(1705), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1705), - [anon_sym_PIPE] = ACTIONS(1701), - [anon_sym_PLUS] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_PERCENT] = ACTIONS(1705), - [anon_sym_STAR_STAR] = ACTIONS(1705), - [anon_sym_LT_EQ] = ACTIONS(1705), - [anon_sym_EQ_EQ] = ACTIONS(1701), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1705), - [anon_sym_BANG_EQ] = ACTIONS(1701), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1705), - [anon_sym_GT_EQ] = ACTIONS(1705), - [anon_sym_QMARK_QMARK] = ACTIONS(1705), - [anon_sym_instanceof] = ACTIONS(1701), - [anon_sym_PLUS_PLUS] = ACTIONS(1705), - [anon_sym_DASH_DASH] = ACTIONS(1705), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1705), - [anon_sym_AT] = ACTIONS(1703), - [anon_sym_static] = ACTIONS(1699), - [anon_sym_readonly] = ACTIONS(1699), - [anon_sym_get] = ACTIONS(1699), - [anon_sym_set] = ACTIONS(1699), - [anon_sym_declare] = ACTIONS(1699), - [anon_sym_public] = ACTIONS(1699), - [anon_sym_private] = ACTIONS(1699), - [anon_sym_protected] = ACTIONS(1699), - [anon_sym_override] = ACTIONS(1699), - [anon_sym_module] = ACTIONS(1699), - [anon_sym_any] = ACTIONS(1699), - [anon_sym_number] = ACTIONS(1699), - [anon_sym_boolean] = ACTIONS(1699), - [anon_sym_string] = ACTIONS(1699), - [anon_sym_symbol] = ACTIONS(1699), - [anon_sym_property] = ACTIONS(1699), - [anon_sym_signal] = ACTIONS(1699), - [anon_sym_on] = ACTIONS(1699), - [anon_sym_required] = ACTIONS(1699), - [anon_sym_component] = ACTIONS(1699), - [anon_sym_satisfies] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1699), - [sym__automatic_semicolon] = ACTIONS(1705), - [sym__ternary_qmark] = ACTIONS(1705), + [1868] = { + [sym_comment] = STATE(1868), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_default] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2410), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_GT] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_QMARK_DOT] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_PIPE_PIPE] = ACTIONS(2410), + [anon_sym_GT_GT] = ACTIONS(2410), + [anon_sym_GT_GT_GT] = ACTIONS(2410), + [anon_sym_LT_LT] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_PERCENT] = ACTIONS(2410), + [anon_sym_STAR_STAR] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_LT_EQ] = ACTIONS(2410), + [anon_sym_EQ_EQ] = ACTIONS(2410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2410), + [anon_sym_BANG_EQ] = ACTIONS(2410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2410), + [anon_sym_GT_EQ] = ACTIONS(2410), + [anon_sym_QMARK_QMARK] = ACTIONS(2410), + [anon_sym_instanceof] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2412), + [sym__ternary_qmark] = ACTIONS(2412), + [sym_html_comment] = ACTIONS(5), + }, + [1869] = { + [sym_export_statement] = STATE(5726), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(7345), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1869), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(7345), + [sym_pair] = STATE(7345), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5726), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5726), + [sym_property_signature] = STATE(5726), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5726), + [sym_index_signature] = STATE(5726), + [aux_sym_export_statement_repeat1] = STATE(6305), + [aux_sym_object_repeat1] = STATE(7340), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(3850), + [anon_sym_export] = ACTIONS(3852), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3850), + [anon_sym_namespace] = ACTIONS(3850), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3922), + [anon_sym_from] = ACTIONS(3850), + [anon_sym_let] = ACTIONS(3850), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(3860), + [anon_sym_new] = ACTIONS(3862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3864), + [anon_sym_readonly] = ACTIONS(3866), + [anon_sym_get] = ACTIONS(3868), + [anon_sym_set] = ACTIONS(3868), + [anon_sym_declare] = ACTIONS(3850), + [anon_sym_public] = ACTIONS(3870), + [anon_sym_private] = ACTIONS(3870), + [anon_sym_protected] = ACTIONS(3870), + [anon_sym_override] = ACTIONS(3872), + [anon_sym_module] = ACTIONS(3850), + [anon_sym_any] = ACTIONS(3850), + [anon_sym_number] = ACTIONS(3850), + [anon_sym_boolean] = ACTIONS(3850), + [anon_sym_string] = ACTIONS(3850), + [anon_sym_symbol] = ACTIONS(3850), + [anon_sym_object] = ACTIONS(3850), + [anon_sym_property] = ACTIONS(3850), + [anon_sym_signal] = ACTIONS(3850), + [anon_sym_on] = ACTIONS(3850), + [anon_sym_required] = ACTIONS(3850), + [anon_sym_component] = ACTIONS(3850), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3776), + [sym_html_comment] = ACTIONS(5), + }, + [1870] = { + [sym_export_statement] = STATE(5726), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(7345), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1870), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(7345), + [sym_pair] = STATE(7345), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5726), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5726), + [sym_property_signature] = STATE(5726), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5726), + [sym_index_signature] = STATE(5726), + [aux_sym_export_statement_repeat1] = STATE(6305), + [aux_sym_object_repeat1] = STATE(7340), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(3738), + [anon_sym_export] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3738), + [anon_sym_namespace] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3924), + [anon_sym_from] = ACTIONS(3738), + [anon_sym_let] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(3738), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(3756), + [anon_sym_new] = ACTIONS(3758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3764), + [anon_sym_readonly] = ACTIONS(3766), + [anon_sym_get] = ACTIONS(3768), + [anon_sym_set] = ACTIONS(3768), + [anon_sym_declare] = ACTIONS(3738), + [anon_sym_public] = ACTIONS(3770), + [anon_sym_private] = ACTIONS(3770), + [anon_sym_protected] = ACTIONS(3770), + [anon_sym_override] = ACTIONS(3772), + [anon_sym_module] = ACTIONS(3738), + [anon_sym_any] = ACTIONS(3738), + [anon_sym_number] = ACTIONS(3738), + [anon_sym_boolean] = ACTIONS(3738), + [anon_sym_string] = ACTIONS(3738), + [anon_sym_symbol] = ACTIONS(3738), + [anon_sym_object] = ACTIONS(3738), + [anon_sym_property] = ACTIONS(3738), + [anon_sym_signal] = ACTIONS(3738), + [anon_sym_on] = ACTIONS(3738), + [anon_sym_required] = ACTIONS(3738), + [anon_sym_component] = ACTIONS(3738), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3776), + [sym_html_comment] = ACTIONS(5), + }, + [1871] = { + [sym_comment] = STATE(1871), + [sym_identifier] = ACTIONS(2380), + [anon_sym_export] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_as] = ACTIONS(2380), + [anon_sym_namespace] = ACTIONS(2380), + [anon_sym_LBRACE] = ACTIONS(2380), + [anon_sym_COMMA] = ACTIONS(2380), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_from] = ACTIONS(2380), + [anon_sym_var] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(2380), + [anon_sym_in] = ACTIONS(2380), + [anon_sym_of] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2380), + [anon_sym_LBRACK] = ACTIONS(2380), + [anon_sym_GT] = ACTIONS(2380), + [anon_sym_DOT] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_function] = ACTIONS(2380), + [anon_sym_QMARK_DOT] = ACTIONS(2380), + [anon_sym_AMP_AMP] = ACTIONS(2380), + [anon_sym_PIPE_PIPE] = ACTIONS(2380), + [anon_sym_GT_GT] = ACTIONS(2380), + [anon_sym_GT_GT_GT] = ACTIONS(2380), + [anon_sym_LT_LT] = ACTIONS(2380), + [anon_sym_AMP] = ACTIONS(2380), + [anon_sym_CARET] = ACTIONS(2380), + [anon_sym_PIPE] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2380), + [anon_sym_SLASH] = ACTIONS(2380), + [anon_sym_PERCENT] = ACTIONS(2380), + [anon_sym_STAR_STAR] = ACTIONS(2380), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_LT_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ] = ACTIONS(2380), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ] = ACTIONS(2380), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2380), + [anon_sym_GT_EQ] = ACTIONS(2380), + [anon_sym_QMARK_QMARK] = ACTIONS(2380), + [anon_sym_instanceof] = ACTIONS(2380), + [anon_sym_PLUS_PLUS] = ACTIONS(2380), + [anon_sym_DASH_DASH] = ACTIONS(2380), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2380), + [anon_sym_AT] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_readonly] = ACTIONS(2380), + [anon_sym_get] = ACTIONS(2380), + [anon_sym_set] = ACTIONS(2380), + [anon_sym_declare] = ACTIONS(2380), + [anon_sym_public] = ACTIONS(2380), + [anon_sym_private] = ACTIONS(2380), + [anon_sym_protected] = ACTIONS(2380), + [anon_sym_override] = ACTIONS(2380), + [anon_sym_module] = ACTIONS(2380), + [anon_sym_any] = ACTIONS(2380), + [anon_sym_number] = ACTIONS(2380), + [anon_sym_boolean] = ACTIONS(2380), + [anon_sym_string] = ACTIONS(2380), + [anon_sym_symbol] = ACTIONS(2380), + [anon_sym_object] = ACTIONS(2380), + [anon_sym_property] = ACTIONS(2380), + [anon_sym_signal] = ACTIONS(2380), + [anon_sym_on] = ACTIONS(2380), + [anon_sym_required] = ACTIONS(2380), + [anon_sym_component] = ACTIONS(2380), + [anon_sym_satisfies] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [sym__automatic_semicolon] = ACTIONS(2382), + [sym__ternary_qmark] = ACTIONS(2382), + [sym_html_comment] = ACTIONS(5), + }, + [1872] = { + [sym_comment] = STATE(1872), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2287), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_EQ] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2287), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_COMMA] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_in] = ACTIONS(2287), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_GT] = ACTIONS(2287), + [anon_sym_DOT] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_QMARK_DOT] = ACTIONS(2287), + [anon_sym_AMP_AMP] = ACTIONS(2287), + [anon_sym_PIPE_PIPE] = ACTIONS(2287), + [anon_sym_GT_GT] = ACTIONS(2287), + [anon_sym_GT_GT_GT] = ACTIONS(2287), + [anon_sym_LT_LT] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2287), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(2287), + [anon_sym_PLUS] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2287), + [anon_sym_SLASH] = ACTIONS(2287), + [anon_sym_PERCENT] = ACTIONS(2287), + [anon_sym_STAR_STAR] = ACTIONS(2287), + [anon_sym_LT] = ACTIONS(2287), + [anon_sym_LT_EQ] = ACTIONS(2287), + [anon_sym_EQ_EQ] = ACTIONS(2287), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2287), + [anon_sym_BANG_EQ] = ACTIONS(2287), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2287), + [anon_sym_GT_EQ] = ACTIONS(2287), + [anon_sym_QMARK_QMARK] = ACTIONS(2287), + [anon_sym_instanceof] = ACTIONS(2287), + [anon_sym_PLUS_PLUS] = ACTIONS(2287), + [anon_sym_DASH_DASH] = ACTIONS(2287), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2287), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_satisfies] = ACTIONS(2287), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3926), + [sym__ternary_qmark] = ACTIONS(2293), + [sym_html_comment] = ACTIONS(5), + }, + [1873] = { + [sym_comment] = STATE(1873), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_in] = ACTIONS(2376), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2376), + [anon_sym_DOT] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_QMARK_DOT] = ACTIONS(2376), + [anon_sym_AMP_AMP] = ACTIONS(2376), + [anon_sym_PIPE_PIPE] = ACTIONS(2376), + [anon_sym_GT_GT] = ACTIONS(2376), + [anon_sym_GT_GT_GT] = ACTIONS(2376), + [anon_sym_LT_LT] = ACTIONS(2376), + [anon_sym_AMP] = ACTIONS(2376), + [anon_sym_CARET] = ACTIONS(2376), + [anon_sym_PIPE] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_PERCENT] = ACTIONS(2376), + [anon_sym_STAR_STAR] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ] = ACTIONS(2376), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), + [anon_sym_BANG_EQ] = ACTIONS(2376), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2376), + [anon_sym_GT_EQ] = ACTIONS(2376), + [anon_sym_QMARK_QMARK] = ACTIONS(2376), + [anon_sym_instanceof] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_satisfies] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(2378), + [sym__ternary_qmark] = ACTIONS(2378), + [sym_html_comment] = ACTIONS(5), + }, + [1874] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1874), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(6925), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(3928), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3930), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1875] = { + [sym_comment] = STATE(1875), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_from] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_QMARK_DOT] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_instanceof] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_property] = ACTIONS(2456), + [anon_sym_signal] = ACTIONS(2456), + [anon_sym_on] = ACTIONS(2456), + [anon_sym_required] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_satisfies] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2456), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2460), + [sym_html_comment] = ACTIONS(5), + }, + [1876] = { + [sym_export_statement] = STATE(5726), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(7345), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1876), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(7345), + [sym_pair] = STATE(7345), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5726), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5726), + [sym_property_signature] = STATE(5726), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5726), + [sym_index_signature] = STATE(5726), + [aux_sym_export_statement_repeat1] = STATE(6305), + [aux_sym_object_repeat1] = STATE(7340), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(3850), + [anon_sym_export] = ACTIONS(3852), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3850), + [anon_sym_namespace] = ACTIONS(3850), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3786), + [anon_sym_from] = ACTIONS(3850), + [anon_sym_let] = ACTIONS(3850), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(3850), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(3860), + [anon_sym_new] = ACTIONS(3862), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3864), + [anon_sym_readonly] = ACTIONS(3866), + [anon_sym_get] = ACTIONS(3868), + [anon_sym_set] = ACTIONS(3868), + [anon_sym_declare] = ACTIONS(3850), + [anon_sym_public] = ACTIONS(3870), + [anon_sym_private] = ACTIONS(3870), + [anon_sym_protected] = ACTIONS(3870), + [anon_sym_override] = ACTIONS(3872), + [anon_sym_module] = ACTIONS(3850), + [anon_sym_any] = ACTIONS(3850), + [anon_sym_number] = ACTIONS(3850), + [anon_sym_boolean] = ACTIONS(3850), + [anon_sym_string] = ACTIONS(3850), + [anon_sym_symbol] = ACTIONS(3850), + [anon_sym_object] = ACTIONS(3850), + [anon_sym_property] = ACTIONS(3850), + [anon_sym_signal] = ACTIONS(3850), + [anon_sym_on] = ACTIONS(3850), + [anon_sym_required] = ACTIONS(3850), + [anon_sym_component] = ACTIONS(3850), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3776), + [sym_html_comment] = ACTIONS(5), + }, + [1877] = { + [sym_comment] = STATE(1877), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_as] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_COMMA] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_else] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_in] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_QMARK_DOT] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_GT_GT_GT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_STAR_STAR] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2285), + [anon_sym_BANG_EQ] = ACTIONS(2285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2285), + [anon_sym_QMARK_QMARK] = ACTIONS(2285), + [anon_sym_instanceof] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_satisfies] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3932), + [sym__ternary_qmark] = ACTIONS(2374), + [sym_html_comment] = ACTIONS(5), + }, + [1878] = { + [sym_export_statement] = STATE(5726), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(6846), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1878), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(6846), + [sym_pair] = STATE(6846), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5726), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5726), + [sym_property_signature] = STATE(5726), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5726), + [sym_index_signature] = STATE(5726), + [aux_sym_export_statement_repeat1] = STATE(6305), + [aux_sym_object_repeat1] = STATE(6853), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(3898), + [anon_sym_export] = ACTIONS(3900), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3898), + [anon_sym_namespace] = ACTIONS(3898), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3934), + [anon_sym_from] = ACTIONS(3898), + [anon_sym_let] = ACTIONS(3898), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(3898), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(3904), + [anon_sym_new] = ACTIONS(3906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3908), + [anon_sym_readonly] = ACTIONS(3910), + [anon_sym_get] = ACTIONS(3912), + [anon_sym_set] = ACTIONS(3912), + [anon_sym_declare] = ACTIONS(3898), + [anon_sym_public] = ACTIONS(3914), + [anon_sym_private] = ACTIONS(3914), + [anon_sym_protected] = ACTIONS(3914), + [anon_sym_override] = ACTIONS(3916), + [anon_sym_module] = ACTIONS(3898), + [anon_sym_any] = ACTIONS(3898), + [anon_sym_number] = ACTIONS(3898), + [anon_sym_boolean] = ACTIONS(3898), + [anon_sym_string] = ACTIONS(3898), + [anon_sym_symbol] = ACTIONS(3898), + [anon_sym_object] = ACTIONS(3898), + [anon_sym_property] = ACTIONS(3898), + [anon_sym_signal] = ACTIONS(3898), + [anon_sym_on] = ACTIONS(3898), + [anon_sym_required] = ACTIONS(3898), + [anon_sym_component] = ACTIONS(3898), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3776), + [sym_html_comment] = ACTIONS(5), + }, + [1879] = { + [sym_export_statement] = STATE(5726), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7266), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(7345), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1879), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7266), + [sym_method_definition] = STATE(7345), + [sym_pair] = STATE(7345), + [sym_pair_pattern] = STATE(7266), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5726), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5726), + [sym_property_signature] = STATE(5726), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5726), + [sym_index_signature] = STATE(5726), + [aux_sym_export_statement_repeat1] = STATE(6305), + [aux_sym_object_repeat1] = STATE(7340), + [aux_sym_object_pattern_repeat1] = STATE(7272), + [sym_identifier] = ACTIONS(3810), + [anon_sym_export] = ACTIONS(3812), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3810), + [anon_sym_namespace] = ACTIONS(3810), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3936), + [anon_sym_from] = ACTIONS(3810), + [anon_sym_let] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(3810), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(3816), + [anon_sym_new] = ACTIONS(3818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3820), + [anon_sym_readonly] = ACTIONS(3822), + [anon_sym_get] = ACTIONS(3824), + [anon_sym_set] = ACTIONS(3824), + [anon_sym_declare] = ACTIONS(3810), + [anon_sym_public] = ACTIONS(3826), + [anon_sym_private] = ACTIONS(3826), + [anon_sym_protected] = ACTIONS(3826), + [anon_sym_override] = ACTIONS(3828), + [anon_sym_module] = ACTIONS(3810), + [anon_sym_any] = ACTIONS(3810), + [anon_sym_number] = ACTIONS(3810), + [anon_sym_boolean] = ACTIONS(3810), + [anon_sym_string] = ACTIONS(3810), + [anon_sym_symbol] = ACTIONS(3810), + [anon_sym_object] = ACTIONS(3810), + [anon_sym_property] = ACTIONS(3810), + [anon_sym_signal] = ACTIONS(3810), + [anon_sym_on] = ACTIONS(3810), + [anon_sym_required] = ACTIONS(3810), + [anon_sym_component] = ACTIONS(3810), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3776), + [sym_html_comment] = ACTIONS(5), + }, + [1880] = { + [sym_comment] = STATE(1880), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_as] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_COMMA] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_else] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_GT] = ACTIONS(2368), + [anon_sym_DOT] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_QMARK_DOT] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2368), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_GT_GT_GT] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_PERCENT] = ACTIONS(2368), + [anon_sym_STAR_STAR] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_LT_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2368), + [anon_sym_GT_EQ] = ACTIONS(2368), + [anon_sym_QMARK_QMARK] = ACTIONS(2368), + [anon_sym_instanceof] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3938), + [sym__ternary_qmark] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [1881] = { + [sym_comment] = STATE(1881), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_STAR] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_COMMA] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2350), + [anon_sym_GT] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2350), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_QMARK_DOT] = ACTIONS(2350), + [anon_sym_AMP_AMP] = ACTIONS(2350), + [anon_sym_PIPE_PIPE] = ACTIONS(2350), + [anon_sym_GT_GT] = ACTIONS(2350), + [anon_sym_GT_GT_GT] = ACTIONS(2350), + [anon_sym_LT_LT] = ACTIONS(2350), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_SLASH] = ACTIONS(2350), + [anon_sym_PERCENT] = ACTIONS(2350), + [anon_sym_STAR_STAR] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), + [anon_sym_GT_EQ] = ACTIONS(2350), + [anon_sym_QMARK_QMARK] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_PLUS_PLUS] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2350), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_satisfies] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(3940), + [sym__ternary_qmark] = ACTIONS(2354), + [sym_html_comment] = ACTIONS(5), + }, + [1882] = { + [sym_comment] = STATE(1882), + [sym_identifier] = ACTIONS(2360), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_default] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_as] = ACTIONS(2362), + [anon_sym_namespace] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_from] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2362), + [anon_sym_else] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_in] = ACTIONS(2362), + [anon_sym_of] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2362), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_GT] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(2362), + [anon_sym_AMP_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2362), + [anon_sym_GT_GT] = ACTIONS(2362), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_PIPE] = ACTIONS(2362), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_SLASH] = ACTIONS(2362), + [anon_sym_PERCENT] = ACTIONS(2362), + [anon_sym_STAR_STAR] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2362), + [anon_sym_LT_EQ] = ACTIONS(2362), + [anon_sym_EQ_EQ] = ACTIONS(2362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2362), + [anon_sym_BANG_EQ] = ACTIONS(2362), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2362), + [anon_sym_GT_EQ] = ACTIONS(2362), + [anon_sym_QMARK_QMARK] = ACTIONS(2362), + [anon_sym_instanceof] = ACTIONS(2362), + [anon_sym_PLUS_PLUS] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2362), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_readonly] = ACTIONS(2360), + [anon_sym_get] = ACTIONS(2360), + [anon_sym_set] = ACTIONS(2360), + [anon_sym_declare] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_protected] = ACTIONS(2360), + [anon_sym_override] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_any] = ACTIONS(2360), + [anon_sym_number] = ACTIONS(2360), + [anon_sym_boolean] = ACTIONS(2360), + [anon_sym_string] = ACTIONS(2360), + [anon_sym_symbol] = ACTIONS(2360), + [anon_sym_object] = ACTIONS(2360), + [anon_sym_property] = ACTIONS(2360), + [anon_sym_signal] = ACTIONS(2360), + [anon_sym_on] = ACTIONS(2360), + [anon_sym_required] = ACTIONS(2360), + [anon_sym_component] = ACTIONS(2360), + [anon_sym_satisfies] = ACTIONS(2362), + [anon_sym_enum] = ACTIONS(2360), + [sym__automatic_semicolon] = ACTIONS(3942), + [sym__ternary_qmark] = ACTIONS(2366), + [sym_html_comment] = ACTIONS(5), + }, + [1883] = { + [sym_comment] = STATE(1883), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(2390), + [anon_sym_default] = ACTIONS(2388), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_as] = ACTIONS(2390), + [anon_sym_namespace] = ACTIONS(2388), + [anon_sym_COMMA] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_from] = ACTIONS(2388), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_else] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_in] = ACTIONS(2390), + [anon_sym_of] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_GT] = ACTIONS(2390), + [anon_sym_DOT] = ACTIONS(2390), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_QMARK_DOT] = ACTIONS(2390), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2390), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2390), + [anon_sym_CARET] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2390), + [anon_sym_PLUS] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2390), + [anon_sym_SLASH] = ACTIONS(2390), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_STAR_STAR] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2390), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_QMARK_QMARK] = ACTIONS(2390), + [anon_sym_instanceof] = ACTIONS(2390), + [anon_sym_PLUS_PLUS] = ACTIONS(2390), + [anon_sym_DASH_DASH] = ACTIONS(2390), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2390), + [anon_sym_AT] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_readonly] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_declare] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_protected] = ACTIONS(2388), + [anon_sym_override] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_any] = ACTIONS(2388), + [anon_sym_number] = ACTIONS(2388), + [anon_sym_boolean] = ACTIONS(2388), + [anon_sym_string] = ACTIONS(2388), + [anon_sym_symbol] = ACTIONS(2388), + [anon_sym_object] = ACTIONS(2388), + [anon_sym_property] = ACTIONS(2388), + [anon_sym_signal] = ACTIONS(2388), + [anon_sym_on] = ACTIONS(2388), + [anon_sym_required] = ACTIONS(2388), + [anon_sym_component] = ACTIONS(2388), + [anon_sym_satisfies] = ACTIONS(2390), + [anon_sym_enum] = ACTIONS(2388), + [sym__automatic_semicolon] = ACTIONS(3944), + [sym__ternary_qmark] = ACTIONS(2394), + [sym_html_comment] = ACTIONS(5), + }, + [1884] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1884), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7979), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1885] = { + [sym_comment] = STATE(1885), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_from] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_in] = ACTIONS(2334), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_QMARK_DOT] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_SLASH] = ACTIONS(2334), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2334), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2334), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2334), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_property] = ACTIONS(2332), + [anon_sym_signal] = ACTIONS(2332), + [anon_sym_on] = ACTIONS(2332), + [anon_sym_required] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_satisfies] = ACTIONS(2334), + [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(3948), + [sym__ternary_qmark] = ACTIONS(2338), + [sym_html_comment] = ACTIONS(5), + }, + [1886] = { + [sym_comment] = STATE(1886), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_as] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2440), + [anon_sym_COMMA] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_from] = ACTIONS(2440), + [anon_sym_var] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_in] = ACTIONS(2442), + [anon_sym_of] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2442), + [anon_sym_DOT] = ACTIONS(2442), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_function] = ACTIONS(2440), + [anon_sym_QMARK_DOT] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_PIPE_PIPE] = ACTIONS(2442), + [anon_sym_GT_GT] = ACTIONS(2442), + [anon_sym_GT_GT_GT] = ACTIONS(2442), + [anon_sym_LT_LT] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2442), + [anon_sym_PERCENT] = ACTIONS(2442), + [anon_sym_STAR_STAR] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_LT_EQ] = ACTIONS(2442), + [anon_sym_EQ_EQ] = ACTIONS(2442), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2442), + [anon_sym_BANG_EQ] = ACTIONS(2442), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2442), + [anon_sym_GT_EQ] = ACTIONS(2442), + [anon_sym_QMARK_QMARK] = ACTIONS(2442), + [anon_sym_instanceof] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2442), + [anon_sym_AT] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_readonly] = ACTIONS(2440), + [anon_sym_get] = ACTIONS(2440), + [anon_sym_set] = ACTIONS(2440), + [anon_sym_declare] = ACTIONS(2440), + [anon_sym_public] = ACTIONS(2440), + [anon_sym_private] = ACTIONS(2440), + [anon_sym_protected] = ACTIONS(2440), + [anon_sym_override] = ACTIONS(2440), + [anon_sym_module] = ACTIONS(2440), + [anon_sym_any] = ACTIONS(2440), + [anon_sym_number] = ACTIONS(2440), + [anon_sym_boolean] = ACTIONS(2440), + [anon_sym_string] = ACTIONS(2440), + [anon_sym_symbol] = ACTIONS(2440), + [anon_sym_object] = ACTIONS(2440), + [anon_sym_property] = ACTIONS(2440), + [anon_sym_signal] = ACTIONS(2440), + [anon_sym_on] = ACTIONS(2440), + [anon_sym_required] = ACTIONS(2440), + [anon_sym_component] = ACTIONS(2440), + [anon_sym_satisfies] = ACTIONS(2442), + [anon_sym_enum] = ACTIONS(2440), + [sym__automatic_semicolon] = ACTIONS(3950), + [sym__ternary_qmark] = ACTIONS(2446), + [sym_html_comment] = ACTIONS(5), + }, + [1887] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1887), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7979), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3952), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1888] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1888), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7979), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3954), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1889] = { + [sym_comment] = STATE(1889), + [sym_identifier] = ACTIONS(2414), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_default] = ACTIONS(2414), + [anon_sym_type] = ACTIONS(2414), + [anon_sym_as] = ACTIONS(2414), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_COMMA] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_from] = ACTIONS(2414), + [anon_sym_var] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_in] = ACTIONS(2414), + [anon_sym_of] = ACTIONS(2414), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2414), + [anon_sym_DOT] = ACTIONS(2414), + [anon_sym_async] = ACTIONS(2414), + [anon_sym_function] = ACTIONS(2414), + [anon_sym_QMARK_DOT] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2414), + [anon_sym_GT_GT_GT] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_CARET] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2414), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_SLASH] = ACTIONS(2414), + [anon_sym_PERCENT] = ACTIONS(2414), + [anon_sym_STAR_STAR] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_LT_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ] = ACTIONS(2414), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2414), + [anon_sym_BANG_EQ] = ACTIONS(2414), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2414), + [anon_sym_GT_EQ] = ACTIONS(2414), + [anon_sym_QMARK_QMARK] = ACTIONS(2414), + [anon_sym_instanceof] = ACTIONS(2414), + [anon_sym_PLUS_PLUS] = ACTIONS(2414), + [anon_sym_DASH_DASH] = ACTIONS(2414), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2414), + [anon_sym_AT] = ACTIONS(2414), + [anon_sym_static] = ACTIONS(2414), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(2414), + [anon_sym_set] = ACTIONS(2414), + [anon_sym_declare] = ACTIONS(2414), + [anon_sym_public] = ACTIONS(2414), + [anon_sym_private] = ACTIONS(2414), + [anon_sym_protected] = ACTIONS(2414), + [anon_sym_override] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_any] = ACTIONS(2414), + [anon_sym_number] = ACTIONS(2414), + [anon_sym_boolean] = ACTIONS(2414), + [anon_sym_string] = ACTIONS(2414), + [anon_sym_symbol] = ACTIONS(2414), + [anon_sym_object] = ACTIONS(2414), + [anon_sym_property] = ACTIONS(2414), + [anon_sym_signal] = ACTIONS(2414), + [anon_sym_on] = ACTIONS(2414), + [anon_sym_required] = ACTIONS(2414), + [anon_sym_component] = ACTIONS(2414), + [anon_sym_satisfies] = ACTIONS(2414), + [anon_sym_enum] = ACTIONS(2414), + [sym__automatic_semicolon] = ACTIONS(2416), + [sym__ternary_qmark] = ACTIONS(2416), + [sym_html_comment] = ACTIONS(5), }, - [884] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4142), - [sym_optional_tuple_parameter] = STATE(4142), - [sym_optional_type] = STATE(4142), - [sym_rest_type] = STATE(4142), - [sym__tuple_type_member] = STATE(4142), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(2762), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2764), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), + [1890] = { + [sym_comment] = STATE(1890), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_default] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2410), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_GT] = ACTIONS(2410), + [anon_sym_DOT] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_QMARK_DOT] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_PIPE_PIPE] = ACTIONS(2410), + [anon_sym_GT_GT] = ACTIONS(2410), + [anon_sym_GT_GT_GT] = ACTIONS(2410), + [anon_sym_LT_LT] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_CARET] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_PERCENT] = ACTIONS(2410), + [anon_sym_STAR_STAR] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_LT_EQ] = ACTIONS(2410), + [anon_sym_EQ_EQ] = ACTIONS(2410), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2410), + [anon_sym_BANG_EQ] = ACTIONS(2410), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2410), + [anon_sym_GT_EQ] = ACTIONS(2410), + [anon_sym_QMARK_QMARK] = ACTIONS(2410), + [anon_sym_instanceof] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2412), + [sym__ternary_qmark] = ACTIONS(2412), + [sym_html_comment] = ACTIONS(5), + }, + [1891] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1891), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7979), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3956), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1892] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1892), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7979), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3958), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1893] = { + [sym_comment] = STATE(1893), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2456), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2456), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_from] = ACTIONS(2456), + [anon_sym_var] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_function] = ACTIONS(2456), + [anon_sym_QMARK_DOT] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_instanceof] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_readonly] = ACTIONS(2456), + [anon_sym_get] = ACTIONS(2456), + [anon_sym_set] = ACTIONS(2456), + [anon_sym_declare] = ACTIONS(2456), + [anon_sym_public] = ACTIONS(2456), + [anon_sym_private] = ACTIONS(2456), + [anon_sym_protected] = ACTIONS(2456), + [anon_sym_override] = ACTIONS(2456), + [anon_sym_module] = ACTIONS(2456), + [anon_sym_any] = ACTIONS(2456), + [anon_sym_number] = ACTIONS(2456), + [anon_sym_boolean] = ACTIONS(2456), + [anon_sym_string] = ACTIONS(2456), + [anon_sym_symbol] = ACTIONS(2456), + [anon_sym_object] = ACTIONS(2456), + [anon_sym_property] = ACTIONS(2456), + [anon_sym_signal] = ACTIONS(2456), + [anon_sym_on] = ACTIONS(2456), + [anon_sym_required] = ACTIONS(2456), + [anon_sym_component] = ACTIONS(2456), + [anon_sym_satisfies] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2456), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2460), + [sym_html_comment] = ACTIONS(5), + }, + [1894] = { + [sym_comment] = STATE(1894), + [sym_identifier] = ACTIONS(2448), + [anon_sym_export] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2448), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_as] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2448), + [anon_sym_COMMA] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_from] = ACTIONS(2448), + [anon_sym_var] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_of] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_GT] = ACTIONS(2450), + [anon_sym_DOT] = ACTIONS(2450), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_function] = ACTIONS(2448), + [anon_sym_QMARK_DOT] = ACTIONS(2450), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2450), + [anon_sym_GT_GT_GT] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_SLASH] = ACTIONS(2450), + [anon_sym_PERCENT] = ACTIONS(2450), + [anon_sym_STAR_STAR] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_QMARK_QMARK] = ACTIONS(2450), + [anon_sym_instanceof] = ACTIONS(2450), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2450), + [anon_sym_AT] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_readonly] = ACTIONS(2448), + [anon_sym_get] = ACTIONS(2448), + [anon_sym_set] = ACTIONS(2448), + [anon_sym_declare] = ACTIONS(2448), + [anon_sym_public] = ACTIONS(2448), + [anon_sym_private] = ACTIONS(2448), + [anon_sym_protected] = ACTIONS(2448), + [anon_sym_override] = ACTIONS(2448), + [anon_sym_module] = ACTIONS(2448), + [anon_sym_any] = ACTIONS(2448), + [anon_sym_number] = ACTIONS(2448), + [anon_sym_boolean] = ACTIONS(2448), + [anon_sym_string] = ACTIONS(2448), + [anon_sym_symbol] = ACTIONS(2448), + [anon_sym_object] = ACTIONS(2448), + [anon_sym_property] = ACTIONS(2448), + [anon_sym_signal] = ACTIONS(2448), + [anon_sym_on] = ACTIONS(2448), + [anon_sym_required] = ACTIONS(2448), + [anon_sym_component] = ACTIONS(2448), + [anon_sym_satisfies] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2448), + [sym__automatic_semicolon] = ACTIONS(3960), + [sym__ternary_qmark] = ACTIONS(2454), + [sym_html_comment] = ACTIONS(5), + }, + [1895] = { + [sym_comment] = STATE(1895), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_COMMA] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_DOT] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_QMARK_DOT] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_GT_GT] = ACTIONS(2418), + [anon_sym_GT_GT_GT] = ACTIONS(2418), + [anon_sym_LT_LT] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_CARET] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_PERCENT] = ACTIONS(2418), + [anon_sym_STAR_STAR] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_LT_EQ] = ACTIONS(2418), + [anon_sym_EQ_EQ] = ACTIONS(2418), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ] = ACTIONS(2418), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2418), + [anon_sym_GT_EQ] = ACTIONS(2418), + [anon_sym_QMARK_QMARK] = ACTIONS(2418), + [anon_sym_instanceof] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_satisfies] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2420), + [sym__ternary_qmark] = ACTIONS(2420), + [sym_html_comment] = ACTIONS(5), + }, + [1896] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1896), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7979), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3962), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1897] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1897), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7979), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3964), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1898] = { + [sym_comment] = STATE(1898), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_as] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_COMMA] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_GT] = ACTIONS(2368), + [anon_sym_DOT] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_QMARK_DOT] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2368), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_GT_GT_GT] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_PERCENT] = ACTIONS(2368), + [anon_sym_STAR_STAR] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_LT_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2368), + [anon_sym_GT_EQ] = ACTIONS(2368), + [anon_sym_QMARK_QMARK] = ACTIONS(2368), + [anon_sym_instanceof] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(3966), + [sym__ternary_qmark] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [1899] = { + [sym_comment] = STATE(1899), + [sym_identifier] = ACTIONS(2422), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2422), + [anon_sym_type] = ACTIONS(2422), + [anon_sym_as] = ACTIONS(2424), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_COMMA] = ACTIONS(2424), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_from] = ACTIONS(2422), + [anon_sym_var] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2424), + [anon_sym_LPAREN] = ACTIONS(2424), + [anon_sym_in] = ACTIONS(2424), + [anon_sym_of] = ACTIONS(2422), + [anon_sym_SEMI] = ACTIONS(2424), + [anon_sym_LBRACK] = ACTIONS(2424), + [anon_sym_GT] = ACTIONS(2424), + [anon_sym_DOT] = ACTIONS(2424), + [anon_sym_async] = ACTIONS(2422), + [anon_sym_function] = ACTIONS(2422), + [anon_sym_QMARK_DOT] = ACTIONS(2424), + [anon_sym_AMP_AMP] = ACTIONS(2424), + [anon_sym_PIPE_PIPE] = ACTIONS(2424), + [anon_sym_GT_GT] = ACTIONS(2424), + [anon_sym_GT_GT_GT] = ACTIONS(2424), + [anon_sym_LT_LT] = ACTIONS(2424), + [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_CARET] = ACTIONS(2424), + [anon_sym_PIPE] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_SLASH] = ACTIONS(2424), + [anon_sym_PERCENT] = ACTIONS(2424), + [anon_sym_STAR_STAR] = ACTIONS(2424), + [anon_sym_LT] = ACTIONS(2424), + [anon_sym_LT_EQ] = ACTIONS(2424), + [anon_sym_EQ_EQ] = ACTIONS(2424), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2424), + [anon_sym_BANG_EQ] = ACTIONS(2424), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2424), + [anon_sym_GT_EQ] = ACTIONS(2424), + [anon_sym_QMARK_QMARK] = ACTIONS(2424), + [anon_sym_instanceof] = ACTIONS(2424), + [anon_sym_PLUS_PLUS] = ACTIONS(2424), + [anon_sym_DASH_DASH] = ACTIONS(2424), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2424), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(2422), + [anon_sym_readonly] = ACTIONS(2422), + [anon_sym_get] = ACTIONS(2422), + [anon_sym_set] = ACTIONS(2422), + [anon_sym_declare] = ACTIONS(2422), + [anon_sym_public] = ACTIONS(2422), + [anon_sym_private] = ACTIONS(2422), + [anon_sym_protected] = ACTIONS(2422), + [anon_sym_override] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_any] = ACTIONS(2422), + [anon_sym_number] = ACTIONS(2422), + [anon_sym_boolean] = ACTIONS(2422), + [anon_sym_string] = ACTIONS(2422), + [anon_sym_symbol] = ACTIONS(2422), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_property] = ACTIONS(2422), + [anon_sym_signal] = ACTIONS(2422), + [anon_sym_on] = ACTIONS(2422), + [anon_sym_required] = ACTIONS(2422), + [anon_sym_component] = ACTIONS(2422), + [anon_sym_satisfies] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2422), + [sym__automatic_semicolon] = ACTIONS(3968), + [sym__ternary_qmark] = ACTIONS(2428), + [sym_html_comment] = ACTIONS(5), }, - [885] = { - [sym_identifier] = ACTIONS(1537), - [anon_sym_export] = ACTIONS(1537), - [anon_sym_STAR] = ACTIONS(1537), - [anon_sym_default] = ACTIONS(1537), - [anon_sym_type] = ACTIONS(1537), - [anon_sym_as] = ACTIONS(1537), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_COMMA] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_from] = ACTIONS(1537), - [anon_sym_var] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1537), - [anon_sym_else] = ACTIONS(1537), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_in] = ACTIONS(1537), - [anon_sym_of] = ACTIONS(1537), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_LBRACK] = ACTIONS(1539), - [anon_sym_LT] = ACTIONS(1537), - [anon_sym_GT] = ACTIONS(1537), - [anon_sym_SLASH] = ACTIONS(1537), - [anon_sym_DOT] = ACTIONS(1539), - [anon_sym_async] = ACTIONS(1537), - [anon_sym_function] = ACTIONS(1537), - [anon_sym_QMARK_DOT] = ACTIONS(1539), - [anon_sym_AMP_AMP] = ACTIONS(1539), - [anon_sym_PIPE_PIPE] = ACTIONS(1539), - [anon_sym_GT_GT] = ACTIONS(1537), - [anon_sym_GT_GT_GT] = ACTIONS(1539), - [anon_sym_LT_LT] = ACTIONS(1539), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(1539), - [anon_sym_PIPE] = ACTIONS(1537), - [anon_sym_PLUS] = ACTIONS(1537), - [anon_sym_DASH] = ACTIONS(1537), - [anon_sym_PERCENT] = ACTIONS(1539), - [anon_sym_STAR_STAR] = ACTIONS(1539), - [anon_sym_LT_EQ] = ACTIONS(1539), - [anon_sym_EQ_EQ] = ACTIONS(1537), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1539), - [anon_sym_BANG_EQ] = ACTIONS(1537), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1539), - [anon_sym_GT_EQ] = ACTIONS(1539), - [anon_sym_QMARK_QMARK] = ACTIONS(1539), - [anon_sym_instanceof] = ACTIONS(1537), - [anon_sym_PLUS_PLUS] = ACTIONS(1539), - [anon_sym_DASH_DASH] = ACTIONS(1539), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1539), - [anon_sym_AT] = ACTIONS(1539), - [anon_sym_static] = ACTIONS(1537), - [anon_sym_readonly] = ACTIONS(1537), - [anon_sym_get] = ACTIONS(1537), - [anon_sym_set] = ACTIONS(1537), - [anon_sym_declare] = ACTIONS(1537), - [anon_sym_public] = ACTIONS(1537), - [anon_sym_private] = ACTIONS(1537), - [anon_sym_protected] = ACTIONS(1537), - [anon_sym_override] = ACTIONS(1537), - [anon_sym_module] = ACTIONS(1537), - [anon_sym_any] = ACTIONS(1537), - [anon_sym_number] = ACTIONS(1537), - [anon_sym_boolean] = ACTIONS(1537), - [anon_sym_string] = ACTIONS(1537), - [anon_sym_symbol] = ACTIONS(1537), - [anon_sym_property] = ACTIONS(1537), - [anon_sym_signal] = ACTIONS(1537), - [anon_sym_on] = ACTIONS(1537), - [anon_sym_required] = ACTIONS(1537), - [anon_sym_component] = ACTIONS(1537), - [anon_sym_satisfies] = ACTIONS(1537), - [anon_sym_enum] = ACTIONS(1537), - [sym__automatic_semicolon] = ACTIONS(2766), - [sym__ternary_qmark] = ACTIONS(1539), + [1900] = { + [sym_comment] = STATE(1900), + [sym_identifier] = ACTIONS(2402), + [anon_sym_export] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2402), + [anon_sym_type] = ACTIONS(2402), + [anon_sym_as] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2402), + [anon_sym_COMMA] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_from] = ACTIONS(2402), + [anon_sym_var] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_in] = ACTIONS(2404), + [anon_sym_of] = ACTIONS(2402), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_DOT] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2402), + [anon_sym_function] = ACTIONS(2402), + [anon_sym_QMARK_DOT] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_GT_GT_GT] = ACTIONS(2404), + [anon_sym_LT_LT] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + [anon_sym_CARET] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_PERCENT] = ACTIONS(2404), + [anon_sym_STAR_STAR] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_LT_EQ] = ACTIONS(2404), + [anon_sym_EQ_EQ] = ACTIONS(2404), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2404), + [anon_sym_BANG_EQ] = ACTIONS(2404), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2404), + [anon_sym_GT_EQ] = ACTIONS(2404), + [anon_sym_QMARK_QMARK] = ACTIONS(2404), + [anon_sym_instanceof] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2404), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(2402), + [anon_sym_readonly] = ACTIONS(2402), + [anon_sym_get] = ACTIONS(2402), + [anon_sym_set] = ACTIONS(2402), + [anon_sym_declare] = ACTIONS(2402), + [anon_sym_public] = ACTIONS(2402), + [anon_sym_private] = ACTIONS(2402), + [anon_sym_protected] = ACTIONS(2402), + [anon_sym_override] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_any] = ACTIONS(2402), + [anon_sym_number] = ACTIONS(2402), + [anon_sym_boolean] = ACTIONS(2402), + [anon_sym_string] = ACTIONS(2402), + [anon_sym_symbol] = ACTIONS(2402), + [anon_sym_object] = ACTIONS(2402), + [anon_sym_property] = ACTIONS(2402), + [anon_sym_signal] = ACTIONS(2402), + [anon_sym_on] = ACTIONS(2402), + [anon_sym_required] = ACTIONS(2402), + [anon_sym_component] = ACTIONS(2402), + [anon_sym_satisfies] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2402), + [sym__automatic_semicolon] = ACTIONS(3970), + [sym__ternary_qmark] = ACTIONS(2408), + [sym_html_comment] = ACTIONS(5), + }, + [1901] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1901), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7979), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1902] = { + [sym_comment] = STATE(1902), + [sym_identifier] = ACTIONS(2328), + [anon_sym_export] = ACTIONS(2328), + [anon_sym_STAR] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_as] = ACTIONS(2328), + [anon_sym_namespace] = ACTIONS(2328), + [anon_sym_COMMA] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_from] = ACTIONS(2328), + [anon_sym_var] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_in] = ACTIONS(2328), + [anon_sym_of] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_GT] = ACTIONS(2328), + [anon_sym_DOT] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_function] = ACTIONS(2328), + [anon_sym_QMARK_DOT] = ACTIONS(2328), + [anon_sym_AMP_AMP] = ACTIONS(2328), + [anon_sym_PIPE_PIPE] = ACTIONS(2328), + [anon_sym_GT_GT] = ACTIONS(2328), + [anon_sym_GT_GT_GT] = ACTIONS(2328), + [anon_sym_LT_LT] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2328), + [anon_sym_CARET] = ACTIONS(2328), + [anon_sym_PIPE] = ACTIONS(2328), + [anon_sym_PLUS] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_SLASH] = ACTIONS(2328), + [anon_sym_PERCENT] = ACTIONS(2328), + [anon_sym_STAR_STAR] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_LT_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ] = ACTIONS(2328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ] = ACTIONS(2328), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2328), + [anon_sym_GT_EQ] = ACTIONS(2328), + [anon_sym_QMARK_QMARK] = ACTIONS(2328), + [anon_sym_instanceof] = ACTIONS(2328), + [anon_sym_PLUS_PLUS] = ACTIONS(2328), + [anon_sym_DASH_DASH] = ACTIONS(2328), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2328), + [anon_sym_AT] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_readonly] = ACTIONS(2328), + [anon_sym_get] = ACTIONS(2328), + [anon_sym_set] = ACTIONS(2328), + [anon_sym_declare] = ACTIONS(2328), + [anon_sym_public] = ACTIONS(2328), + [anon_sym_private] = ACTIONS(2328), + [anon_sym_protected] = ACTIONS(2328), + [anon_sym_override] = ACTIONS(2328), + [anon_sym_module] = ACTIONS(2328), + [anon_sym_any] = ACTIONS(2328), + [anon_sym_number] = ACTIONS(2328), + [anon_sym_boolean] = ACTIONS(2328), + [anon_sym_string] = ACTIONS(2328), + [anon_sym_symbol] = ACTIONS(2328), + [anon_sym_object] = ACTIONS(2328), + [anon_sym_property] = ACTIONS(2328), + [anon_sym_signal] = ACTIONS(2328), + [anon_sym_on] = ACTIONS(2328), + [anon_sym_required] = ACTIONS(2328), + [anon_sym_component] = ACTIONS(2328), + [anon_sym_satisfies] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [sym__automatic_semicolon] = ACTIONS(2330), + [sym__ternary_qmark] = ACTIONS(2330), + [sym_html_comment] = ACTIONS(5), }, - [886] = { - [sym_identifier] = ACTIONS(1661), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_STAR] = ACTIONS(1661), - [anon_sym_default] = ACTIONS(1661), - [anon_sym_type] = ACTIONS(1661), - [anon_sym_as] = ACTIONS(1661), - [anon_sym_namespace] = ACTIONS(1661), - [anon_sym_COMMA] = ACTIONS(1663), - [anon_sym_RBRACE] = ACTIONS(1663), - [anon_sym_from] = ACTIONS(1661), - [anon_sym_var] = ACTIONS(1661), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_else] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1663), - [anon_sym_in] = ACTIONS(1661), - [anon_sym_of] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1663), - [anon_sym_LBRACK] = ACTIONS(1663), - [anon_sym_LT] = ACTIONS(1661), - [anon_sym_GT] = ACTIONS(1661), - [anon_sym_SLASH] = ACTIONS(1661), - [anon_sym_DOT] = ACTIONS(1663), - [anon_sym_async] = ACTIONS(1661), - [anon_sym_function] = ACTIONS(1661), - [anon_sym_QMARK_DOT] = ACTIONS(1663), - [anon_sym_AMP_AMP] = ACTIONS(1663), - [anon_sym_PIPE_PIPE] = ACTIONS(1663), - [anon_sym_GT_GT] = ACTIONS(1661), - [anon_sym_GT_GT_GT] = ACTIONS(1663), - [anon_sym_LT_LT] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1663), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_PERCENT] = ACTIONS(1663), - [anon_sym_STAR_STAR] = ACTIONS(1663), - [anon_sym_LT_EQ] = ACTIONS(1663), - [anon_sym_EQ_EQ] = ACTIONS(1661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1663), - [anon_sym_BANG_EQ] = ACTIONS(1661), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1663), - [anon_sym_GT_EQ] = ACTIONS(1663), - [anon_sym_QMARK_QMARK] = ACTIONS(1663), - [anon_sym_instanceof] = ACTIONS(1661), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1663), - [anon_sym_AT] = ACTIONS(1663), - [anon_sym_static] = ACTIONS(1661), - [anon_sym_readonly] = ACTIONS(1661), - [anon_sym_get] = ACTIONS(1661), - [anon_sym_set] = ACTIONS(1661), - [anon_sym_declare] = ACTIONS(1661), - [anon_sym_public] = ACTIONS(1661), - [anon_sym_private] = ACTIONS(1661), - [anon_sym_protected] = ACTIONS(1661), - [anon_sym_override] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_any] = ACTIONS(1661), - [anon_sym_number] = ACTIONS(1661), - [anon_sym_boolean] = ACTIONS(1661), - [anon_sym_string] = ACTIONS(1661), - [anon_sym_symbol] = ACTIONS(1661), - [anon_sym_property] = ACTIONS(1661), - [anon_sym_signal] = ACTIONS(1661), - [anon_sym_on] = ACTIONS(1661), - [anon_sym_required] = ACTIONS(1661), - [anon_sym_component] = ACTIONS(1661), - [anon_sym_satisfies] = ACTIONS(1661), - [anon_sym_enum] = ACTIONS(1661), - [sym__automatic_semicolon] = ACTIONS(1663), - [sym__ternary_qmark] = ACTIONS(1663), + [1903] = { + [sym_comment] = STATE(1903), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_as] = ACTIONS(2472), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_COMMA] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_in] = ACTIONS(2472), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym_GT] = ACTIONS(2472), + [anon_sym_DOT] = ACTIONS(2472), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_QMARK_DOT] = ACTIONS(2472), + [anon_sym_AMP_AMP] = ACTIONS(2472), + [anon_sym_PIPE_PIPE] = ACTIONS(2472), + [anon_sym_GT_GT] = ACTIONS(2472), + [anon_sym_GT_GT_GT] = ACTIONS(2472), + [anon_sym_LT_LT] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_CARET] = ACTIONS(2472), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_SLASH] = ACTIONS(2472), + [anon_sym_PERCENT] = ACTIONS(2472), + [anon_sym_STAR_STAR] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_LT_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ] = ACTIONS(2472), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ] = ACTIONS(2472), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2472), + [anon_sym_GT_EQ] = ACTIONS(2472), + [anon_sym_QMARK_QMARK] = ACTIONS(2472), + [anon_sym_instanceof] = ACTIONS(2472), + [anon_sym_PLUS_PLUS] = ACTIONS(2472), + [anon_sym_DASH_DASH] = ACTIONS(2472), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2472), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_satisfies] = ACTIONS(2472), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(3974), + [sym__ternary_qmark] = ACTIONS(2476), + [sym_html_comment] = ACTIONS(5), }, - [887] = { - [sym_identifier] = ACTIONS(1725), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_default] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1727), - [anon_sym_namespace] = ACTIONS(1725), - [anon_sym_COMMA] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_from] = ACTIONS(1725), - [anon_sym_var] = ACTIONS(1725), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_in] = ACTIONS(1727), - [anon_sym_of] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_GT] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(1727), - [anon_sym_DOT] = ACTIONS(1731), - [anon_sym_async] = ACTIONS(1725), - [anon_sym_function] = ACTIONS(1725), - [anon_sym_QMARK_DOT] = ACTIONS(1731), - [anon_sym_AMP_AMP] = ACTIONS(1731), - [anon_sym_PIPE_PIPE] = ACTIONS(1731), - [anon_sym_GT_GT] = ACTIONS(1727), - [anon_sym_GT_GT_GT] = ACTIONS(1731), - [anon_sym_LT_LT] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_PERCENT] = ACTIONS(1731), - [anon_sym_STAR_STAR] = ACTIONS(1731), - [anon_sym_LT_EQ] = ACTIONS(1731), - [anon_sym_EQ_EQ] = ACTIONS(1727), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1731), - [anon_sym_BANG_EQ] = ACTIONS(1727), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1731), - [anon_sym_GT_EQ] = ACTIONS(1731), - [anon_sym_QMARK_QMARK] = ACTIONS(1731), - [anon_sym_instanceof] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1731), - [anon_sym_DASH_DASH] = ACTIONS(1731), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1731), - [anon_sym_AT] = ACTIONS(1729), - [anon_sym_static] = ACTIONS(1725), - [anon_sym_readonly] = ACTIONS(1725), - [anon_sym_get] = ACTIONS(1725), - [anon_sym_set] = ACTIONS(1725), - [anon_sym_declare] = ACTIONS(1725), - [anon_sym_public] = ACTIONS(1725), - [anon_sym_private] = ACTIONS(1725), - [anon_sym_protected] = ACTIONS(1725), - [anon_sym_override] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_any] = ACTIONS(1725), - [anon_sym_number] = ACTIONS(1725), - [anon_sym_boolean] = ACTIONS(1725), - [anon_sym_string] = ACTIONS(1725), - [anon_sym_symbol] = ACTIONS(1725), - [anon_sym_property] = ACTIONS(1725), - [anon_sym_signal] = ACTIONS(1725), - [anon_sym_on] = ACTIONS(1725), - [anon_sym_required] = ACTIONS(1725), - [anon_sym_component] = ACTIONS(1725), - [anon_sym_satisfies] = ACTIONS(1727), - [anon_sym_enum] = ACTIONS(1725), - [sym__automatic_semicolon] = ACTIONS(2768), - [sym__ternary_qmark] = ACTIONS(1731), + [1904] = { + [sym_comment] = STATE(1904), + [sym_identifier] = ACTIONS(2430), + [anon_sym_export] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2430), + [anon_sym_type] = ACTIONS(2430), + [anon_sym_as] = ACTIONS(2432), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_COMMA] = ACTIONS(2432), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_from] = ACTIONS(2430), + [anon_sym_var] = ACTIONS(2430), + [anon_sym_let] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2432), + [anon_sym_LPAREN] = ACTIONS(2432), + [anon_sym_in] = ACTIONS(2432), + [anon_sym_of] = ACTIONS(2430), + [anon_sym_SEMI] = ACTIONS(2432), + [anon_sym_LBRACK] = ACTIONS(2432), + [anon_sym_GT] = ACTIONS(2432), + [anon_sym_DOT] = ACTIONS(2432), + [anon_sym_async] = ACTIONS(2430), + [anon_sym_function] = ACTIONS(2430), + [anon_sym_QMARK_DOT] = ACTIONS(2432), + [anon_sym_AMP_AMP] = ACTIONS(2432), + [anon_sym_PIPE_PIPE] = ACTIONS(2432), + [anon_sym_GT_GT] = ACTIONS(2432), + [anon_sym_GT_GT_GT] = ACTIONS(2432), + [anon_sym_LT_LT] = ACTIONS(2432), + [anon_sym_AMP] = ACTIONS(2432), + [anon_sym_CARET] = ACTIONS(2432), + [anon_sym_PIPE] = ACTIONS(2432), + [anon_sym_PLUS] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2432), + [anon_sym_SLASH] = ACTIONS(2432), + [anon_sym_PERCENT] = ACTIONS(2432), + [anon_sym_STAR_STAR] = ACTIONS(2432), + [anon_sym_LT] = ACTIONS(2432), + [anon_sym_LT_EQ] = ACTIONS(2432), + [anon_sym_EQ_EQ] = ACTIONS(2432), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2432), + [anon_sym_BANG_EQ] = ACTIONS(2432), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2432), + [anon_sym_GT_EQ] = ACTIONS(2432), + [anon_sym_QMARK_QMARK] = ACTIONS(2432), + [anon_sym_instanceof] = ACTIONS(2432), + [anon_sym_PLUS_PLUS] = ACTIONS(2432), + [anon_sym_DASH_DASH] = ACTIONS(2432), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2432), + [anon_sym_AT] = ACTIONS(2430), + [anon_sym_static] = ACTIONS(2430), + [anon_sym_readonly] = ACTIONS(2430), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_declare] = ACTIONS(2430), + [anon_sym_public] = ACTIONS(2430), + [anon_sym_private] = ACTIONS(2430), + [anon_sym_protected] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2430), + [anon_sym_module] = ACTIONS(2430), + [anon_sym_any] = ACTIONS(2430), + [anon_sym_number] = ACTIONS(2430), + [anon_sym_boolean] = ACTIONS(2430), + [anon_sym_string] = ACTIONS(2430), + [anon_sym_symbol] = ACTIONS(2430), + [anon_sym_object] = ACTIONS(2430), + [anon_sym_property] = ACTIONS(2430), + [anon_sym_signal] = ACTIONS(2430), + [anon_sym_on] = ACTIONS(2430), + [anon_sym_required] = ACTIONS(2430), + [anon_sym_component] = ACTIONS(2430), + [anon_sym_satisfies] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2430), + [sym__automatic_semicolon] = ACTIONS(3976), + [sym__ternary_qmark] = ACTIONS(2436), + [sym_html_comment] = ACTIONS(5), }, - [888] = { - [sym_identifier] = ACTIONS(1567), - [anon_sym_export] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1569), - [anon_sym_default] = ACTIONS(1567), - [anon_sym_type] = ACTIONS(1567), - [anon_sym_as] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1567), - [anon_sym_COMMA] = ACTIONS(1573), - [anon_sym_RBRACE] = ACTIONS(1571), - [anon_sym_from] = ACTIONS(1567), - [anon_sym_var] = ACTIONS(1567), - [anon_sym_BANG] = ACTIONS(1569), - [anon_sym_else] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_in] = ACTIONS(1569), - [anon_sym_of] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_LBRACK] = ACTIONS(1573), - [anon_sym_LT] = ACTIONS(1569), - [anon_sym_GT] = ACTIONS(1569), - [anon_sym_SLASH] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1573), - [anon_sym_async] = ACTIONS(1567), - [anon_sym_function] = ACTIONS(1567), - [anon_sym_QMARK_DOT] = ACTIONS(1573), - [anon_sym_AMP_AMP] = ACTIONS(1573), - [anon_sym_PIPE_PIPE] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(1569), - [anon_sym_GT_GT_GT] = ACTIONS(1573), - [anon_sym_LT_LT] = ACTIONS(1573), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_CARET] = ACTIONS(1573), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_PERCENT] = ACTIONS(1573), - [anon_sym_STAR_STAR] = ACTIONS(1573), - [anon_sym_LT_EQ] = ACTIONS(1573), - [anon_sym_EQ_EQ] = ACTIONS(1569), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1573), - [anon_sym_BANG_EQ] = ACTIONS(1569), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1573), - [anon_sym_GT_EQ] = ACTIONS(1573), - [anon_sym_QMARK_QMARK] = ACTIONS(1573), - [anon_sym_instanceof] = ACTIONS(1569), - [anon_sym_PLUS_PLUS] = ACTIONS(1573), - [anon_sym_DASH_DASH] = ACTIONS(1573), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1573), - [anon_sym_AT] = ACTIONS(1571), - [anon_sym_static] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(1567), - [anon_sym_get] = ACTIONS(1567), - [anon_sym_set] = ACTIONS(1567), - [anon_sym_declare] = ACTIONS(1567), - [anon_sym_public] = ACTIONS(1567), - [anon_sym_private] = ACTIONS(1567), - [anon_sym_protected] = ACTIONS(1567), - [anon_sym_override] = ACTIONS(1567), - [anon_sym_module] = ACTIONS(1567), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_property] = ACTIONS(1567), - [anon_sym_signal] = ACTIONS(1567), - [anon_sym_on] = ACTIONS(1567), - [anon_sym_required] = ACTIONS(1567), - [anon_sym_component] = ACTIONS(1567), - [anon_sym_satisfies] = ACTIONS(1569), - [anon_sym_enum] = ACTIONS(1567), - [sym__automatic_semicolon] = ACTIONS(2770), - [sym__ternary_qmark] = ACTIONS(1573), + [1905] = { + [sym_comment] = STATE(1905), + [sym_identifier] = ACTIONS(2478), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_as] = ACTIONS(2480), + [anon_sym_namespace] = ACTIONS(2478), + [anon_sym_COMMA] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_from] = ACTIONS(2478), + [anon_sym_var] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2480), + [anon_sym_in] = ACTIONS(2480), + [anon_sym_of] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(2480), + [anon_sym_GT] = ACTIONS(2480), + [anon_sym_DOT] = ACTIONS(2480), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_QMARK_DOT] = ACTIONS(2480), + [anon_sym_AMP_AMP] = ACTIONS(2480), + [anon_sym_PIPE_PIPE] = ACTIONS(2480), + [anon_sym_GT_GT] = ACTIONS(2480), + [anon_sym_GT_GT_GT] = ACTIONS(2480), + [anon_sym_LT_LT] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_CARET] = ACTIONS(2480), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_SLASH] = ACTIONS(2480), + [anon_sym_PERCENT] = ACTIONS(2480), + [anon_sym_STAR_STAR] = ACTIONS(2480), + [anon_sym_LT] = ACTIONS(2480), + [anon_sym_LT_EQ] = ACTIONS(2480), + [anon_sym_EQ_EQ] = ACTIONS(2480), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), + [anon_sym_BANG_EQ] = ACTIONS(2480), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), + [anon_sym_GT_EQ] = ACTIONS(2480), + [anon_sym_QMARK_QMARK] = ACTIONS(2480), + [anon_sym_instanceof] = ACTIONS(2480), + [anon_sym_PLUS_PLUS] = ACTIONS(2480), + [anon_sym_DASH_DASH] = ACTIONS(2480), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2480), + [anon_sym_AT] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_override] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_any] = ACTIONS(2478), + [anon_sym_number] = ACTIONS(2478), + [anon_sym_boolean] = ACTIONS(2478), + [anon_sym_string] = ACTIONS(2478), + [anon_sym_symbol] = ACTIONS(2478), + [anon_sym_object] = ACTIONS(2478), + [anon_sym_property] = ACTIONS(2478), + [anon_sym_signal] = ACTIONS(2478), + [anon_sym_on] = ACTIONS(2478), + [anon_sym_required] = ACTIONS(2478), + [anon_sym_component] = ACTIONS(2478), + [anon_sym_satisfies] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2478), + [sym__automatic_semicolon] = ACTIONS(3978), + [sym__ternary_qmark] = ACTIONS(2484), + [sym_html_comment] = ACTIONS(5), }, - [889] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4122), - [sym_optional_tuple_parameter] = STATE(4122), - [sym_optional_type] = STATE(4122), - [sym_rest_type] = STATE(4122), - [sym__tuple_type_member] = STATE(4122), - [sym_constructor_type] = STATE(3430), + [1906] = { + [sym_comment] = STATE(1906), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2342), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_QMARK_DOT] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2342), + [anon_sym_DASH] = ACTIONS(2342), + [anon_sym_SLASH] = ACTIONS(2342), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_instanceof] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2342), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_satisfies] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(3980), + [sym__ternary_qmark] = ACTIONS(2346), + [sym_html_comment] = ACTIONS(5), + }, + [1907] = { + [sym_comment] = STATE(1907), + [sym_identifier] = ACTIONS(2388), + [anon_sym_export] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(2390), + [anon_sym_default] = ACTIONS(2388), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_as] = ACTIONS(2390), + [anon_sym_namespace] = ACTIONS(2388), + [anon_sym_COMMA] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_from] = ACTIONS(2388), + [anon_sym_var] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_in] = ACTIONS(2390), + [anon_sym_of] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_GT] = ACTIONS(2390), + [anon_sym_DOT] = ACTIONS(2390), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_function] = ACTIONS(2388), + [anon_sym_QMARK_DOT] = ACTIONS(2390), + [anon_sym_AMP_AMP] = ACTIONS(2390), + [anon_sym_PIPE_PIPE] = ACTIONS(2390), + [anon_sym_GT_GT] = ACTIONS(2390), + [anon_sym_GT_GT_GT] = ACTIONS(2390), + [anon_sym_LT_LT] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2390), + [anon_sym_CARET] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2390), + [anon_sym_PLUS] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2390), + [anon_sym_SLASH] = ACTIONS(2390), + [anon_sym_PERCENT] = ACTIONS(2390), + [anon_sym_STAR_STAR] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2390), + [anon_sym_LT_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ] = ACTIONS(2390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2390), + [anon_sym_BANG_EQ] = ACTIONS(2390), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2390), + [anon_sym_GT_EQ] = ACTIONS(2390), + [anon_sym_QMARK_QMARK] = ACTIONS(2390), + [anon_sym_instanceof] = ACTIONS(2390), + [anon_sym_PLUS_PLUS] = ACTIONS(2390), + [anon_sym_DASH_DASH] = ACTIONS(2390), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2390), + [anon_sym_AT] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_readonly] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2388), + [anon_sym_set] = ACTIONS(2388), + [anon_sym_declare] = ACTIONS(2388), + [anon_sym_public] = ACTIONS(2388), + [anon_sym_private] = ACTIONS(2388), + [anon_sym_protected] = ACTIONS(2388), + [anon_sym_override] = ACTIONS(2388), + [anon_sym_module] = ACTIONS(2388), + [anon_sym_any] = ACTIONS(2388), + [anon_sym_number] = ACTIONS(2388), + [anon_sym_boolean] = ACTIONS(2388), + [anon_sym_string] = ACTIONS(2388), + [anon_sym_symbol] = ACTIONS(2388), + [anon_sym_object] = ACTIONS(2388), + [anon_sym_property] = ACTIONS(2388), + [anon_sym_signal] = ACTIONS(2388), + [anon_sym_on] = ACTIONS(2388), + [anon_sym_required] = ACTIONS(2388), + [anon_sym_component] = ACTIONS(2388), + [anon_sym_satisfies] = ACTIONS(2390), + [anon_sym_enum] = ACTIONS(2388), + [sym__automatic_semicolon] = ACTIONS(3982), + [sym__ternary_qmark] = ACTIONS(2394), + [sym_html_comment] = ACTIONS(5), + }, + [1908] = { + [sym_comment] = STATE(1908), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_STAR] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_COMMA] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2350), + [anon_sym_GT] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2350), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_QMARK_DOT] = ACTIONS(2350), + [anon_sym_AMP_AMP] = ACTIONS(2350), + [anon_sym_PIPE_PIPE] = ACTIONS(2350), + [anon_sym_GT_GT] = ACTIONS(2350), + [anon_sym_GT_GT_GT] = ACTIONS(2350), + [anon_sym_LT_LT] = ACTIONS(2350), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_SLASH] = ACTIONS(2350), + [anon_sym_PERCENT] = ACTIONS(2350), + [anon_sym_STAR_STAR] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), + [anon_sym_GT_EQ] = ACTIONS(2350), + [anon_sym_QMARK_QMARK] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_PLUS_PLUS] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2350), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_satisfies] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(3984), + [sym__ternary_qmark] = ACTIONS(2354), + [sym_html_comment] = ACTIONS(5), + }, + [1909] = { + [sym_comment] = STATE(1909), + [sym_identifier] = ACTIONS(2360), + [anon_sym_export] = ACTIONS(2360), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_default] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_as] = ACTIONS(2362), + [anon_sym_namespace] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_from] = ACTIONS(2360), + [anon_sym_var] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_BANG] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_in] = ACTIONS(2362), + [anon_sym_of] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2362), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_GT] = ACTIONS(2362), + [anon_sym_DOT] = ACTIONS(2362), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_QMARK_DOT] = ACTIONS(2362), + [anon_sym_AMP_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2362), + [anon_sym_GT_GT] = ACTIONS(2362), + [anon_sym_GT_GT_GT] = ACTIONS(2362), + [anon_sym_LT_LT] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_CARET] = ACTIONS(2362), + [anon_sym_PIPE] = ACTIONS(2362), + [anon_sym_PLUS] = ACTIONS(2362), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_SLASH] = ACTIONS(2362), + [anon_sym_PERCENT] = ACTIONS(2362), + [anon_sym_STAR_STAR] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2362), + [anon_sym_LT_EQ] = ACTIONS(2362), + [anon_sym_EQ_EQ] = ACTIONS(2362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2362), + [anon_sym_BANG_EQ] = ACTIONS(2362), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2362), + [anon_sym_GT_EQ] = ACTIONS(2362), + [anon_sym_QMARK_QMARK] = ACTIONS(2362), + [anon_sym_instanceof] = ACTIONS(2362), + [anon_sym_PLUS_PLUS] = ACTIONS(2362), + [anon_sym_DASH_DASH] = ACTIONS(2362), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2362), + [anon_sym_AT] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_readonly] = ACTIONS(2360), + [anon_sym_get] = ACTIONS(2360), + [anon_sym_set] = ACTIONS(2360), + [anon_sym_declare] = ACTIONS(2360), + [anon_sym_public] = ACTIONS(2360), + [anon_sym_private] = ACTIONS(2360), + [anon_sym_protected] = ACTIONS(2360), + [anon_sym_override] = ACTIONS(2360), + [anon_sym_module] = ACTIONS(2360), + [anon_sym_any] = ACTIONS(2360), + [anon_sym_number] = ACTIONS(2360), + [anon_sym_boolean] = ACTIONS(2360), + [anon_sym_string] = ACTIONS(2360), + [anon_sym_symbol] = ACTIONS(2360), + [anon_sym_object] = ACTIONS(2360), + [anon_sym_property] = ACTIONS(2360), + [anon_sym_signal] = ACTIONS(2360), + [anon_sym_on] = ACTIONS(2360), + [anon_sym_required] = ACTIONS(2360), + [anon_sym_component] = ACTIONS(2360), + [anon_sym_satisfies] = ACTIONS(2362), + [anon_sym_enum] = ACTIONS(2360), + [sym__automatic_semicolon] = ACTIONS(3986), + [sym__ternary_qmark] = ACTIONS(2366), + [sym_html_comment] = ACTIONS(5), + }, + [1910] = { + [sym_comment] = STATE(1910), + [sym_identifier] = ACTIONS(2368), + [anon_sym_export] = ACTIONS(2368), + [anon_sym_STAR] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_as] = ACTIONS(2368), + [anon_sym_namespace] = ACTIONS(2368), + [anon_sym_COMMA] = ACTIONS(2368), + [anon_sym_RBRACE] = ACTIONS(2368), + [anon_sym_from] = ACTIONS(2368), + [anon_sym_var] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(2368), + [anon_sym_LPAREN] = ACTIONS(2368), + [anon_sym_in] = ACTIONS(2368), + [anon_sym_of] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2368), + [anon_sym_LBRACK] = ACTIONS(2368), + [anon_sym_GT] = ACTIONS(2368), + [anon_sym_DOT] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_function] = ACTIONS(2368), + [anon_sym_QMARK_DOT] = ACTIONS(2368), + [anon_sym_AMP_AMP] = ACTIONS(2368), + [anon_sym_PIPE_PIPE] = ACTIONS(2368), + [anon_sym_GT_GT] = ACTIONS(2368), + [anon_sym_GT_GT_GT] = ACTIONS(2368), + [anon_sym_LT_LT] = ACTIONS(2368), + [anon_sym_AMP] = ACTIONS(2368), + [anon_sym_CARET] = ACTIONS(2368), + [anon_sym_PIPE] = ACTIONS(2368), + [anon_sym_PLUS] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2368), + [anon_sym_SLASH] = ACTIONS(2368), + [anon_sym_PERCENT] = ACTIONS(2368), + [anon_sym_STAR_STAR] = ACTIONS(2368), + [anon_sym_LT] = ACTIONS(2368), + [anon_sym_LT_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ] = ACTIONS(2368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ] = ACTIONS(2368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2368), + [anon_sym_GT_EQ] = ACTIONS(2368), + [anon_sym_QMARK_QMARK] = ACTIONS(2368), + [anon_sym_instanceof] = ACTIONS(2368), + [anon_sym_PLUS_PLUS] = ACTIONS(2368), + [anon_sym_DASH_DASH] = ACTIONS(2368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2368), + [anon_sym_AT] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_readonly] = ACTIONS(2368), + [anon_sym_get] = ACTIONS(2368), + [anon_sym_set] = ACTIONS(2368), + [anon_sym_declare] = ACTIONS(2368), + [anon_sym_public] = ACTIONS(2368), + [anon_sym_private] = ACTIONS(2368), + [anon_sym_protected] = ACTIONS(2368), + [anon_sym_override] = ACTIONS(2368), + [anon_sym_module] = ACTIONS(2368), + [anon_sym_any] = ACTIONS(2368), + [anon_sym_number] = ACTIONS(2368), + [anon_sym_boolean] = ACTIONS(2368), + [anon_sym_string] = ACTIONS(2368), + [anon_sym_symbol] = ACTIONS(2368), + [anon_sym_object] = ACTIONS(2368), + [anon_sym_property] = ACTIONS(2368), + [anon_sym_signal] = ACTIONS(2368), + [anon_sym_on] = ACTIONS(2368), + [anon_sym_required] = ACTIONS(2368), + [anon_sym_component] = ACTIONS(2368), + [anon_sym_satisfies] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [sym__automatic_semicolon] = ACTIONS(2370), + [sym__ternary_qmark] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [1911] = { + [sym_comment] = STATE(1911), + [sym_identifier] = ACTIONS(2356), + [anon_sym_export] = ACTIONS(2356), + [anon_sym_STAR] = ACTIONS(2356), + [anon_sym_default] = ACTIONS(2356), + [anon_sym_type] = ACTIONS(2356), + [anon_sym_as] = ACTIONS(2356), + [anon_sym_namespace] = ACTIONS(2356), + [anon_sym_COMMA] = ACTIONS(2356), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_from] = ACTIONS(2356), + [anon_sym_var] = ACTIONS(2356), + [anon_sym_let] = ACTIONS(2356), + [anon_sym_BANG] = ACTIONS(2356), + [anon_sym_LPAREN] = ACTIONS(2356), + [anon_sym_in] = ACTIONS(2356), + [anon_sym_of] = ACTIONS(2356), + [anon_sym_SEMI] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(2356), + [anon_sym_GT] = ACTIONS(2356), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2356), + [anon_sym_function] = ACTIONS(2356), + [anon_sym_QMARK_DOT] = ACTIONS(2356), + [anon_sym_AMP_AMP] = ACTIONS(2356), + [anon_sym_PIPE_PIPE] = ACTIONS(2356), + [anon_sym_GT_GT] = ACTIONS(2356), + [anon_sym_GT_GT_GT] = ACTIONS(2356), + [anon_sym_LT_LT] = ACTIONS(2356), + [anon_sym_AMP] = ACTIONS(2356), + [anon_sym_CARET] = ACTIONS(2356), + [anon_sym_PIPE] = ACTIONS(2356), + [anon_sym_PLUS] = ACTIONS(2356), + [anon_sym_DASH] = ACTIONS(2356), + [anon_sym_SLASH] = ACTIONS(2356), + [anon_sym_PERCENT] = ACTIONS(2356), + [anon_sym_STAR_STAR] = ACTIONS(2356), + [anon_sym_LT] = ACTIONS(2356), + [anon_sym_LT_EQ] = ACTIONS(2356), + [anon_sym_EQ_EQ] = ACTIONS(2356), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2356), + [anon_sym_BANG_EQ] = ACTIONS(2356), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2356), + [anon_sym_GT_EQ] = ACTIONS(2356), + [anon_sym_QMARK_QMARK] = ACTIONS(2356), + [anon_sym_instanceof] = ACTIONS(2356), + [anon_sym_PLUS_PLUS] = ACTIONS(2356), + [anon_sym_DASH_DASH] = ACTIONS(2356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2356), + [anon_sym_AT] = ACTIONS(2356), + [anon_sym_static] = ACTIONS(2356), + [anon_sym_readonly] = ACTIONS(2356), + [anon_sym_get] = ACTIONS(2356), + [anon_sym_set] = ACTIONS(2356), + [anon_sym_declare] = ACTIONS(2356), + [anon_sym_public] = ACTIONS(2356), + [anon_sym_private] = ACTIONS(2356), + [anon_sym_protected] = ACTIONS(2356), + [anon_sym_override] = ACTIONS(2356), + [anon_sym_module] = ACTIONS(2356), + [anon_sym_any] = ACTIONS(2356), + [anon_sym_number] = ACTIONS(2356), + [anon_sym_boolean] = ACTIONS(2356), + [anon_sym_string] = ACTIONS(2356), + [anon_sym_symbol] = ACTIONS(2356), + [anon_sym_object] = ACTIONS(2356), + [anon_sym_property] = ACTIONS(2356), + [anon_sym_signal] = ACTIONS(2356), + [anon_sym_on] = ACTIONS(2356), + [anon_sym_required] = ACTIONS(2356), + [anon_sym_component] = ACTIONS(2356), + [anon_sym_satisfies] = ACTIONS(2356), + [anon_sym_enum] = ACTIONS(2356), + [sym__automatic_semicolon] = ACTIONS(2358), + [sym__ternary_qmark] = ACTIONS(2358), + [sym_html_comment] = ACTIONS(5), + }, + [1912] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1912), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7979), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3988), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1913] = { + [sym_comment] = STATE(1913), + [sym_identifier] = ACTIONS(2285), + [anon_sym_export] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_as] = ACTIONS(2285), + [anon_sym_namespace] = ACTIONS(2285), + [anon_sym_COMMA] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_from] = ACTIONS(2285), + [anon_sym_var] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_in] = ACTIONS(2285), + [anon_sym_of] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_GT] = ACTIONS(2285), + [anon_sym_DOT] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_function] = ACTIONS(2285), + [anon_sym_QMARK_DOT] = ACTIONS(2285), + [anon_sym_AMP_AMP] = ACTIONS(2285), + [anon_sym_PIPE_PIPE] = ACTIONS(2285), + [anon_sym_GT_GT] = ACTIONS(2285), + [anon_sym_GT_GT_GT] = ACTIONS(2285), + [anon_sym_LT_LT] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_CARET] = ACTIONS(2285), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_SLASH] = ACTIONS(2285), + [anon_sym_PERCENT] = ACTIONS(2285), + [anon_sym_STAR_STAR] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_LT_EQ] = ACTIONS(2285), + [anon_sym_EQ_EQ] = ACTIONS(2285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2285), + [anon_sym_BANG_EQ] = ACTIONS(2285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2285), + [anon_sym_GT_EQ] = ACTIONS(2285), + [anon_sym_QMARK_QMARK] = ACTIONS(2285), + [anon_sym_instanceof] = ACTIONS(2285), + [anon_sym_PLUS_PLUS] = ACTIONS(2285), + [anon_sym_DASH_DASH] = ACTIONS(2285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2285), + [anon_sym_AT] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2285), + [anon_sym_get] = ACTIONS(2285), + [anon_sym_set] = ACTIONS(2285), + [anon_sym_declare] = ACTIONS(2285), + [anon_sym_public] = ACTIONS(2285), + [anon_sym_private] = ACTIONS(2285), + [anon_sym_protected] = ACTIONS(2285), + [anon_sym_override] = ACTIONS(2285), + [anon_sym_module] = ACTIONS(2285), + [anon_sym_any] = ACTIONS(2285), + [anon_sym_number] = ACTIONS(2285), + [anon_sym_boolean] = ACTIONS(2285), + [anon_sym_string] = ACTIONS(2285), + [anon_sym_symbol] = ACTIONS(2285), + [anon_sym_object] = ACTIONS(2285), + [anon_sym_property] = ACTIONS(2285), + [anon_sym_signal] = ACTIONS(2285), + [anon_sym_on] = ACTIONS(2285), + [anon_sym_required] = ACTIONS(2285), + [anon_sym_component] = ACTIONS(2285), + [anon_sym_satisfies] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [sym__automatic_semicolon] = ACTIONS(3990), + [sym__ternary_qmark] = ACTIONS(2374), + [sym_html_comment] = ACTIONS(5), + }, + [1914] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1914), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7979), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(3992), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1915] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1915), + [sym_formal_parameters] = STATE(8729), + [sym_rest_pattern] = STATE(7513), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5672), + [sym_tuple_parameter] = STATE(7667), + [sym_optional_tuple_parameter] = STATE(7667), + [sym_optional_type] = STATE(7667), + [sym_rest_type] = STATE(7667), + [sym__tuple_type_member] = STATE(7979), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1916] = { + [sym_import] = STATE(7230), + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(1916), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4922), + [sym__type_query_call_expression_in_type_annotation] = STATE(5195), + [sym_asserts] = STATE(5525), + [sym__type] = STATE(4937), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_predicate] = STATE(5528), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4806), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(3994), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(3996), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_asserts] = ACTIONS(3998), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [1917] = { + [sym_import] = STATE(7302), + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(1917), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym__type_query_member_expression_in_type_annotation] = STATE(5186), + [sym__type_query_call_expression_in_type_annotation] = STATE(5662), + [sym_asserts] = STATE(5935), + [sym__type] = STATE(5185), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_predicate] = STATE(5937), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(4928), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4032), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_asserts] = ACTIONS(4040), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [1918] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1918), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5095), + [sym__type_query_call_expression_in_type_annotation] = STATE(5375), + [sym_asserts] = STATE(7579), + [sym__type] = STATE(5089), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_predicate] = STATE(7599), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4577), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_asserts] = ACTIONS(4052), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1919] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1919), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4054), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1920] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1920), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4056), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1921] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1921), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4058), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1922] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1922), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4060), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1923] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1923), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1924] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1924), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4064), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1925] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1925), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4066), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1926] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1926), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4068), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1927] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1927), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1928] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1928), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4072), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1929] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1929), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1930] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1930), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4076), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1931] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1931), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1932] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1932), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1933] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1933), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4082), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1934] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1934), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4084), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1935] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1935), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4086), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1936] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1936), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4088), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1937] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1937), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1938] = { + [sym_export_statement] = STATE(5725), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7696), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(8090), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1938), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7696), + [sym_method_definition] = STATE(8090), + [sym_pair] = STATE(8090), + [sym_pair_pattern] = STATE(7696), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5725), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5725), + [sym_property_signature] = STATE(5725), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5725), + [sym_index_signature] = STATE(5725), + [aux_sym_export_statement_repeat1] = STATE(6305), + [sym_identifier] = ACTIONS(4092), + [anon_sym_export] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(4092), + [anon_sym_namespace] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_from] = ACTIONS(4092), + [anon_sym_let] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(4092), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(4099), + [anon_sym_new] = ACTIONS(4101), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4103), + [anon_sym_readonly] = ACTIONS(4105), + [anon_sym_get] = ACTIONS(4107), + [anon_sym_set] = ACTIONS(4107), + [anon_sym_declare] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4109), + [anon_sym_private] = ACTIONS(4109), + [anon_sym_protected] = ACTIONS(4109), + [anon_sym_override] = ACTIONS(4111), + [anon_sym_module] = ACTIONS(4092), + [anon_sym_any] = ACTIONS(4092), + [anon_sym_number] = ACTIONS(4092), + [anon_sym_boolean] = ACTIONS(4092), + [anon_sym_string] = ACTIONS(4092), + [anon_sym_symbol] = ACTIONS(4092), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_property] = ACTIONS(4092), + [anon_sym_signal] = ACTIONS(4092), + [anon_sym_on] = ACTIONS(4092), + [anon_sym_required] = ACTIONS(4092), + [anon_sym_component] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(3774), + [sym_html_comment] = ACTIONS(5), + }, + [1939] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1939), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4113), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1940] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1940), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4115), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1941] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1941), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4117), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1942] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1942), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4119), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1943] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1943), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5590), + [sym__type_query_call_expression_in_type_annotation] = STATE(6323), + [sym__type] = STATE(5606), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_type_parameter] = STATE(7249), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(4121), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(4123), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1944] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1944), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4125), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1945] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1945), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4127), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1946] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1946), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1947] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1947), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4131), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1948] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1948), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4133), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1949] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1949), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4135), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1950] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1950), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4137), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1951] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1951), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4139), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1952] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1952), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4141), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1953] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1953), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4143), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1954] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1954), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4145), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1955] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1955), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4147), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1956] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1956), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4149), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1957] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1957), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4151), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1958] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1958), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4153), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1959] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1959), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4155), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1960] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1960), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4157), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1961] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1961), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4159), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1962] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1962), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_GT] = ACTIONS(4161), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1963] = { + [sym_export_statement] = STATE(5576), + [sym_object_pattern] = STATE(5071), + [sym_object_assignment_pattern] = STATE(7696), + [sym_array_pattern] = STATE(5071), + [sym__call_signature] = STATE(5733), + [sym__destructuring_pattern] = STATE(8331), + [sym_spread_element] = STATE(8090), + [sym_string] = STATE(4876), + [sym_comment] = STATE(1963), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym_rest_pattern] = STATE(7696), + [sym_method_definition] = STATE(8090), + [sym_pair] = STATE(8090), + [sym_pair_pattern] = STATE(7696), + [sym__property_name] = STATE(4792), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5576), + [sym_accessibility_modifier] = STATE(3780), + [sym_override_modifier] = STATE(3859), + [sym_call_signature] = STATE(5576), + [sym_property_signature] = STATE(5576), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5576), + [sym_index_signature] = STATE(5576), + [aux_sym_export_statement_repeat1] = STATE(6305), + [sym_identifier] = ACTIONS(4092), + [anon_sym_export] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(4092), + [anon_sym_namespace] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(4096), + [anon_sym_RBRACE] = ACTIONS(4096), + [anon_sym_from] = ACTIONS(4092), + [anon_sym_let] = ACTIONS(4092), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(4092), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(4099), + [anon_sym_new] = ACTIONS(4101), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4103), + [anon_sym_readonly] = ACTIONS(4105), + [anon_sym_get] = ACTIONS(4107), + [anon_sym_set] = ACTIONS(4107), + [anon_sym_declare] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4109), + [anon_sym_private] = ACTIONS(4109), + [anon_sym_protected] = ACTIONS(4109), + [anon_sym_override] = ACTIONS(4111), + [anon_sym_module] = ACTIONS(4092), + [anon_sym_any] = ACTIONS(4092), + [anon_sym_number] = ACTIONS(4092), + [anon_sym_boolean] = ACTIONS(4092), + [anon_sym_string] = ACTIONS(4092), + [anon_sym_symbol] = ACTIONS(4092), + [anon_sym_object] = ACTIONS(4092), + [anon_sym_property] = ACTIONS(4092), + [anon_sym_signal] = ACTIONS(4092), + [anon_sym_on] = ACTIONS(4092), + [anon_sym_required] = ACTIONS(4092), + [anon_sym_component] = ACTIONS(4092), + [anon_sym_abstract] = ACTIONS(3774), + [sym_html_comment] = ACTIONS(5), + }, + [1964] = { + [sym_import] = STATE(7230), + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(1964), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type_query_member_expression_in_type_annotation] = STATE(4922), + [sym__type_query_call_expression_in_type_annotation] = STATE(5195), + [sym__type] = STATE(4937), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [1965] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1965), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(6182), + [sym__type_query_call_expression_in_type_annotation] = STATE(7270), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1966] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1966), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5095), + [sym__type_query_call_expression_in_type_annotation] = STATE(5375), + [sym__type] = STATE(5089), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1967] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1967), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5554), + [sym__type_query_call_expression_in_type_annotation] = STATE(6332), + [sym__type] = STATE(5552), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1968] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1968), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5569), + [sym__type_query_call_expression_in_type_annotation] = STATE(6341), + [sym__type] = STATE(5572), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1969] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1969), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5659), + [sym__type_query_call_expression_in_type_annotation] = STATE(6459), + [sym__type] = STATE(5660), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1970] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1970), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5658), + [sym__type_query_call_expression_in_type_annotation] = STATE(6560), + [sym__type] = STATE(5652), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1971] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1971), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5680), + [sym__type_query_call_expression_in_type_annotation] = STATE(6348), + [sym__type] = STATE(5679), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1972] = { + [sym_import] = STATE(7296), + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1972), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type_query_member_expression_in_type_annotation] = STATE(5521), + [sym__type_query_call_expression_in_type_annotation] = STATE(6318), + [sym__type] = STATE(5516), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1973] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(1973), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym_asserts] = STATE(5059), + [sym__type] = STATE(5058), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_predicate] = STATE(5059), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(4928), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4032), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_asserts] = ACTIONS(4040), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [1974] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(1974), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym_asserts] = STATE(4869), + [sym__type] = STATE(4889), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_predicate] = STATE(4869), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4806), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(3994), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(3996), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_asserts] = ACTIONS(3998), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [1975] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(1975), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym_asserts] = STATE(2803), + [sym__type] = STATE(2804), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_predicate] = STATE(2803), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2754), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4191), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_asserts] = ACTIONS(4199), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [1976] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1976), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym_asserts] = STATE(4663), + [sym__type] = STATE(4609), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_predicate] = STATE(4663), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4577), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_asserts] = ACTIONS(4052), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1977] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(1977), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym_asserts] = STATE(4898), + [sym__type] = STATE(4886), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_predicate] = STATE(4898), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4806), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(3994), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(3996), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_asserts] = ACTIONS(3998), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [1978] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(1978), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym_asserts] = STATE(4964), + [sym__type] = STATE(4985), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_predicate] = STATE(4964), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(4928), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4032), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_asserts] = ACTIONS(4040), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [1979] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(1979), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym_asserts] = STATE(2888), + [sym__type] = STATE(2889), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_predicate] = STATE(2888), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2754), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4163), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4191), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_asserts] = ACTIONS(4199), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [1980] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(1980), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym_asserts] = STATE(3403), + [sym__type] = STATE(3402), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_predicate] = STATE(3403), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3178), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4207), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4235), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_asserts] = ACTIONS(4243), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [1981] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1981), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym_asserts] = STATE(4583), + [sym__type] = STATE(4584), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_predicate] = STATE(4583), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4577), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_asserts] = ACTIONS(4052), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1982] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(1982), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym_asserts] = STATE(3354), + [sym__type] = STATE(3353), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_predicate] = STATE(3354), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3178), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4207), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4235), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_asserts] = ACTIONS(4243), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [1983] = { + [sym_nested_identifier] = STATE(1433), + [sym_string] = STATE(1554), + [sym_comment] = STATE(1983), + [sym__module] = STATE(1809), + [aux_sym_object_repeat1] = STATE(6742), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1984] = { + [sym_nested_identifier] = STATE(487), + [sym_string] = STATE(488), + [sym_comment] = STATE(1984), + [sym__module] = STATE(494), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4261), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1985] = { + [sym_variable_declarator] = STATE(6371), + [sym_object_pattern] = STATE(5228), + [sym_array_pattern] = STATE(5228), + [sym__destructuring_pattern] = STATE(5246), + [sym_comment] = STATE(1985), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1986] = { + [sym_nested_identifier] = STATE(1433), + [sym_string] = STATE(1554), + [sym_comment] = STATE(1986), + [sym__module] = STATE(1809), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1987] = { + [sym_variable_declarator] = STATE(6371), + [sym_object_pattern] = STATE(5228), + [sym_array_pattern] = STATE(5228), + [sym__destructuring_pattern] = STATE(5246), + [sym_comment] = STATE(1987), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1988] = { + [sym_nested_identifier] = STATE(487), + [sym_string] = STATE(488), + [sym_comment] = STATE(1988), + [sym__module] = STATE(494), + [aux_sym_object_repeat1] = STATE(6742), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4261), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1989] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1989), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6439), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(4269), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1990] = { + [sym_nested_identifier] = STATE(487), + [sym_string] = STATE(488), + [sym_comment] = STATE(1990), + [sym__module] = STATE(494), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4261), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1991] = { + [sym_nested_identifier] = STATE(487), + [sym_string] = STATE(488), + [sym_comment] = STATE(1991), + [sym__module] = STATE(494), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4261), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1992] = { + [sym_variable_declarator] = STATE(6371), + [sym_object_pattern] = STATE(5228), + [sym_array_pattern] = STATE(5228), + [sym__destructuring_pattern] = STATE(5246), + [sym_comment] = STATE(1992), + [aux_sym_object_repeat1] = STATE(6742), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1993] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1993), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6562), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(4271), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1994] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1994), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6444), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(4273), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1995] = { + [sym_nested_identifier] = STATE(1433), + [sym_string] = STATE(1554), + [sym_comment] = STATE(1995), + [sym__module] = STATE(1809), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1996] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1996), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6516), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(4275), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1997] = { + [sym_nested_identifier] = STATE(1433), + [sym_string] = STATE(1554), + [sym_comment] = STATE(1997), + [sym__module] = STATE(1809), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1998] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(1998), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6405), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_RBRACK] = ACTIONS(4277), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [1999] = { + [sym_variable_declarator] = STATE(6371), + [sym_object_pattern] = STATE(5228), + [sym_array_pattern] = STATE(5228), + [sym__destructuring_pattern] = STATE(5246), + [sym_comment] = STATE(1999), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2000] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2000), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2936), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2001] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2001), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(4962), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2002] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2002), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2968), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2003] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2003), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2841), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2004] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2004), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4676), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2005] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2005), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2933), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2006] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2006), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3452), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2007] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2007), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2892), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2008] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2008), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(6907), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4870), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2009] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2009), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2890), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2010] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2010), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(6907), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4887), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2011] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2011), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6353), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2012] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2012), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(4890), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2013] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2013), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2865), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2014] = { + [sym_comment] = STATE(2014), + [sym_decorator] = STATE(2146), + [aux_sym_export_statement_repeat1] = STATE(2014), + [sym_identifier] = ACTIONS(4291), + [anon_sym_export] = ACTIONS(4291), + [anon_sym_type] = ACTIONS(4291), + [anon_sym_namespace] = ACTIONS(4291), + [anon_sym_LBRACE] = ACTIONS(4291), + [anon_sym_typeof] = ACTIONS(4291), + [anon_sym_import] = ACTIONS(4291), + [anon_sym_from] = ACTIONS(4291), + [anon_sym_let] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_await] = ACTIONS(4291), + [anon_sym_of] = ACTIONS(4291), + [anon_sym_yield] = ACTIONS(4291), + [anon_sym_LBRACK] = ACTIONS(4291), + [anon_sym_LTtemplate_GT] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_class] = ACTIONS(4291), + [anon_sym_async] = ACTIONS(4291), + [anon_sym_function] = ACTIONS(4291), + [anon_sym_new] = ACTIONS(4291), + [anon_sym_using] = ACTIONS(4291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4291), + [anon_sym_SLASH] = ACTIONS(4291), + [anon_sym_LT] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_void] = ACTIONS(4291), + [anon_sym_delete] = ACTIONS(4291), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4291), + [sym_number] = ACTIONS(4291), + [sym_private_property_identifier] = ACTIONS(4291), + [sym_this] = ACTIONS(4291), + [sym_super] = ACTIONS(4291), + [sym_true] = ACTIONS(4291), + [sym_false] = ACTIONS(4291), + [sym_null] = ACTIONS(4291), + [sym_undefined] = ACTIONS(4291), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_static] = ACTIONS(4291), + [anon_sym_readonly] = ACTIONS(4291), + [anon_sym_get] = ACTIONS(4291), + [anon_sym_set] = ACTIONS(4291), + [anon_sym_declare] = ACTIONS(4291), + [anon_sym_public] = ACTIONS(4291), + [anon_sym_private] = ACTIONS(4291), + [anon_sym_protected] = ACTIONS(4291), + [anon_sym_override] = ACTIONS(4291), + [anon_sym_module] = ACTIONS(4291), + [anon_sym_any] = ACTIONS(4291), + [anon_sym_number] = ACTIONS(4291), + [anon_sym_boolean] = ACTIONS(4291), + [anon_sym_string] = ACTIONS(4291), + [anon_sym_symbol] = ACTIONS(4291), + [anon_sym_object] = ACTIONS(4291), + [anon_sym_property] = ACTIONS(4291), + [anon_sym_signal] = ACTIONS(4291), + [anon_sym_on] = ACTIONS(4291), + [anon_sym_required] = ACTIONS(4291), + [anon_sym_component] = ACTIONS(4291), + [sym_html_comment] = ACTIONS(5), + }, + [2015] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2015), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6388), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2016] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2016), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(4992), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2017] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2017), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(4988), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2018] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2018), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4649), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2019] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2019), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(4907), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2020] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2020), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6413), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2021] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2021), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(4980), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2022] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2022), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(6130), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2023] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2023), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6483), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2024] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2024), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(4909), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2025] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2025), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(4979), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2026] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2026), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2861), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2027] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2027), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5928), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2028] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2028), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5908), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2029] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2029), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3453), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2030] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2030), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6351), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2031] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2031), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2876), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4296), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2032] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2032), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(7121), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4582), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2033] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2033), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(5024), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2034] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2034), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2862), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2035] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2035), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6354), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2036] = { + [sym_comment] = STATE(2036), + [sym_arguments] = STATE(2140), + [sym_identifier] = ACTIONS(4298), + [anon_sym_export] = ACTIONS(4298), + [anon_sym_type] = ACTIONS(4298), + [anon_sym_namespace] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4298), + [anon_sym_typeof] = ACTIONS(4298), + [anon_sym_import] = ACTIONS(4298), + [anon_sym_from] = ACTIONS(4298), + [anon_sym_let] = ACTIONS(4298), + [anon_sym_BANG] = ACTIONS(4298), + [anon_sym_LPAREN] = ACTIONS(4300), + [anon_sym_await] = ACTIONS(4298), + [anon_sym_of] = ACTIONS(4298), + [anon_sym_yield] = ACTIONS(4298), + [anon_sym_LBRACK] = ACTIONS(4298), + [anon_sym_LTtemplate_GT] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4302), + [anon_sym_DQUOTE] = ACTIONS(4298), + [anon_sym_SQUOTE] = ACTIONS(4298), + [anon_sym_class] = ACTIONS(4298), + [anon_sym_async] = ACTIONS(4298), + [anon_sym_function] = ACTIONS(4298), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_using] = ACTIONS(4298), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4298), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_TILDE] = ACTIONS(4298), + [anon_sym_void] = ACTIONS(4298), + [anon_sym_delete] = ACTIONS(4298), + [anon_sym_PLUS_PLUS] = ACTIONS(4298), + [anon_sym_DASH_DASH] = ACTIONS(4298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4298), + [sym_number] = ACTIONS(4298), + [sym_private_property_identifier] = ACTIONS(4298), + [sym_this] = ACTIONS(4298), + [sym_super] = ACTIONS(4298), + [sym_true] = ACTIONS(4298), + [sym_false] = ACTIONS(4298), + [sym_null] = ACTIONS(4298), + [sym_undefined] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4298), + [anon_sym_static] = ACTIONS(4298), + [anon_sym_readonly] = ACTIONS(4298), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_declare] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_module] = ACTIONS(4298), + [anon_sym_any] = ACTIONS(4298), + [anon_sym_number] = ACTIONS(4298), + [anon_sym_boolean] = ACTIONS(4298), + [anon_sym_string] = ACTIONS(4298), + [anon_sym_symbol] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4298), + [anon_sym_property] = ACTIONS(4298), + [anon_sym_signal] = ACTIONS(4298), + [anon_sym_on] = ACTIONS(4298), + [anon_sym_required] = ACTIONS(4298), + [anon_sym_component] = ACTIONS(4298), + [sym_html_comment] = ACTIONS(5), + }, + [2037] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2037), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(5025), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2038] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2038), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6500), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2039] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2039), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5507), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2040] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2040), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5895), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2041] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2041), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4638), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2042] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2042), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2814), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2043] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2043), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6577), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2044] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2044), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(7121), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(6173), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(6466), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2045] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2045), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6176), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2046] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2046), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5673), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2047] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2047), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(4865), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2048] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2048), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2811), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2049] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2049), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6580), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2050] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2050), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6541), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2051] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2051), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(6099), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2052] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2052), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6559), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2053] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2053), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4607), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2054] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2054), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4608), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2055] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2055), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6447), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2056] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2056), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(6064), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2057] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2057), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(5125), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2058] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2058), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(6017), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2059] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2059), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(5144), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2060] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2060), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6511), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2061] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2061), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5822), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2062] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2062), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(5927), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2063] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2063), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5813), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2064] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2064), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6392), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2065] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2065), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(5112), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2066] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2066), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6513), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2067] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2067), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(6185), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2068] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2068), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(4877), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2069] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2069), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6377), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2070] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2070), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(6154), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2071] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2071), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(4858), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2072] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2072), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(5113), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2073] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2073), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(6721), + [sym_constructor_type] = STATE(4653), [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [890] = { - [sym_identifier] = ACTIONS(1587), - [anon_sym_export] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_type] = ACTIONS(1587), - [anon_sym_as] = ACTIONS(1589), - [anon_sym_namespace] = ACTIONS(1587), - [anon_sym_COMMA] = ACTIONS(1593), - [anon_sym_RBRACE] = ACTIONS(1591), - [anon_sym_from] = ACTIONS(1587), - [anon_sym_var] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1593), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_of] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1593), - [anon_sym_LBRACK] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1589), - [anon_sym_SLASH] = ACTIONS(1589), - [anon_sym_DOT] = ACTIONS(1593), - [anon_sym_async] = ACTIONS(1587), - [anon_sym_function] = ACTIONS(1587), - [anon_sym_QMARK_DOT] = ACTIONS(1593), - [anon_sym_AMP_AMP] = ACTIONS(1593), - [anon_sym_PIPE_PIPE] = ACTIONS(1593), - [anon_sym_GT_GT] = ACTIONS(1589), - [anon_sym_GT_GT_GT] = ACTIONS(1593), - [anon_sym_LT_LT] = ACTIONS(1593), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_CARET] = ACTIONS(1593), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1589), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_PERCENT] = ACTIONS(1593), - [anon_sym_STAR_STAR] = ACTIONS(1593), - [anon_sym_LT_EQ] = ACTIONS(1593), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1593), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1593), - [anon_sym_GT_EQ] = ACTIONS(1593), - [anon_sym_QMARK_QMARK] = ACTIONS(1593), - [anon_sym_instanceof] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1593), - [anon_sym_DASH_DASH] = ACTIONS(1593), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1593), - [anon_sym_AT] = ACTIONS(1591), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_readonly] = ACTIONS(1587), - [anon_sym_get] = ACTIONS(1587), - [anon_sym_set] = ACTIONS(1587), - [anon_sym_declare] = ACTIONS(1587), - [anon_sym_public] = ACTIONS(1587), - [anon_sym_private] = ACTIONS(1587), - [anon_sym_protected] = ACTIONS(1587), - [anon_sym_override] = ACTIONS(1587), - [anon_sym_module] = ACTIONS(1587), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2074] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2074), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5803), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2075] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2075), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5845), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2076] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2076), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(6721), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(2793), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2077] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2077), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2795), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2078] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2078), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2805), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2079] = { + [sym_nested_identifier] = STATE(8362), + [sym_string] = STATE(2935), + [sym_comment] = STATE(2079), + [sym_formal_parameters] = STATE(8392), + [sym_nested_type_identifier] = STATE(2772), + [sym__type] = STATE(2817), + [sym_constructor_type] = STATE(2953), + [sym__primary_type] = STATE(2954), + [sym_template_literal_type] = STATE(2957), + [sym_infer_type] = STATE(2953), + [sym_conditional_type] = STATE(2957), + [sym_generic_type] = STATE(2957), + [sym_type_query] = STATE(2957), + [sym_index_type_query] = STATE(2957), + [sym_lookup_type] = STATE(2957), + [sym_literal_type] = STATE(2957), + [sym__number] = STATE(2963), + [sym_existential_type] = STATE(2957), + [sym_flow_maybe_type] = STATE(2957), + [sym_parenthesized_type] = STATE(2957), + [sym_predefined_type] = STATE(2957), + [sym_object_type] = STATE(2957), + [sym_type_parameters] = STATE(8151), + [sym_array_type] = STATE(2957), + [sym_tuple_type] = STATE(2957), + [sym_readonly_type] = STATE(2953), + [sym_union_type] = STATE(2957), + [sym_intersection_type] = STATE(2957), + [sym_function_type] = STATE(2953), + [sym_identifier] = ACTIONS(4279), + [anon_sym_STAR] = ACTIONS(4165), + [anon_sym_LBRACE] = ACTIONS(4167), + [anon_sym_typeof] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(4171), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_LBRACK] = ACTIONS(4175), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4177), + [anon_sym_AMP] = ACTIONS(4179), + [anon_sym_PIPE] = ACTIONS(4181), + [anon_sym_PLUS] = ACTIONS(4183), + [anon_sym_DASH] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4185), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4187), + [sym_number] = ACTIONS(4189), + [sym_this] = ACTIONS(4281), + [sym_true] = ACTIONS(4189), + [sym_false] = ACTIONS(4189), + [sym_null] = ACTIONS(4189), + [sym_undefined] = ACTIONS(4189), + [anon_sym_readonly] = ACTIONS(4193), + [anon_sym_QMARK] = ACTIONS(4195), + [anon_sym_any] = ACTIONS(4185), + [anon_sym_number] = ACTIONS(4185), + [anon_sym_boolean] = ACTIONS(4185), + [anon_sym_string] = ACTIONS(4185), + [anon_sym_symbol] = ACTIONS(4185), + [anon_sym_object] = ACTIONS(4185), + [anon_sym_abstract] = ACTIONS(4197), + [anon_sym_infer] = ACTIONS(4201), + [anon_sym_keyof] = ACTIONS(4203), + [anon_sym_unique] = ACTIONS(4205), + [anon_sym_unknown] = ACTIONS(4185), + [anon_sym_never] = ACTIONS(4185), + [anon_sym_LBRACE_PIPE] = ACTIONS(4167), + [sym_html_comment] = ACTIONS(5), + }, + [2080] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2080), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(4908), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2081] = { + [sym_comment] = STATE(2081), + [sym_decorator] = STATE(2146), + [aux_sym_export_statement_repeat1] = STATE(2014), + [sym_identifier] = ACTIONS(4291), + [anon_sym_export] = ACTIONS(4291), + [anon_sym_type] = ACTIONS(4291), + [anon_sym_namespace] = ACTIONS(4291), + [anon_sym_LBRACE] = ACTIONS(4291), + [anon_sym_typeof] = ACTIONS(4291), + [anon_sym_import] = ACTIONS(4291), + [anon_sym_from] = ACTIONS(4291), + [anon_sym_let] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_LPAREN] = ACTIONS(4291), + [anon_sym_await] = ACTIONS(4291), + [anon_sym_of] = ACTIONS(4291), + [anon_sym_yield] = ACTIONS(4291), + [anon_sym_LBRACK] = ACTIONS(4291), + [anon_sym_LTtemplate_GT] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_class] = ACTIONS(4304), + [anon_sym_async] = ACTIONS(4291), + [anon_sym_function] = ACTIONS(4291), + [anon_sym_new] = ACTIONS(4291), + [anon_sym_using] = ACTIONS(4291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), + [anon_sym_PLUS] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4291), + [anon_sym_SLASH] = ACTIONS(4291), + [anon_sym_LT] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_void] = ACTIONS(4291), + [anon_sym_delete] = ACTIONS(4291), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4291), + [sym_number] = ACTIONS(4291), + [sym_private_property_identifier] = ACTIONS(4291), + [sym_this] = ACTIONS(4291), + [sym_super] = ACTIONS(4291), + [sym_true] = ACTIONS(4291), + [sym_false] = ACTIONS(4291), + [sym_null] = ACTIONS(4291), + [sym_undefined] = ACTIONS(4291), + [anon_sym_AT] = ACTIONS(4293), + [anon_sym_static] = ACTIONS(4291), + [anon_sym_readonly] = ACTIONS(4291), + [anon_sym_get] = ACTIONS(4291), + [anon_sym_set] = ACTIONS(4291), + [anon_sym_declare] = ACTIONS(4291), + [anon_sym_public] = ACTIONS(4291), + [anon_sym_private] = ACTIONS(4291), + [anon_sym_protected] = ACTIONS(4291), + [anon_sym_override] = ACTIONS(4291), + [anon_sym_module] = ACTIONS(4291), + [anon_sym_any] = ACTIONS(4291), + [anon_sym_number] = ACTIONS(4291), + [anon_sym_boolean] = ACTIONS(4291), + [anon_sym_string] = ACTIONS(4291), + [anon_sym_symbol] = ACTIONS(4291), + [anon_sym_object] = ACTIONS(4291), + [anon_sym_property] = ACTIONS(4291), + [anon_sym_signal] = ACTIONS(4291), + [anon_sym_on] = ACTIONS(4291), + [anon_sym_required] = ACTIONS(4291), + [anon_sym_component] = ACTIONS(4291), + [sym_html_comment] = ACTIONS(5), + }, + [2082] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2082), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3319), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2083] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2083), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3320), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2084] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2084), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5745), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2085] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2085), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(6003), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2086] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2086), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(6294), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2087] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2087), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3335), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2088] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2088), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3336), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2089] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2089), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3421), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2090] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2090), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3351), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2091] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2091), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3352), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2092] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2092), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5738), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2093] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2093), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5740), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2094] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2094), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(4880), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2095] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2095), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(4879), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2096] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2096), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(7007), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4966), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2097] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2097), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3362), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2098] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2098), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6106), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2099] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2099), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5747), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2100] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2100), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(7007), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4972), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2101] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2101), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3363), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2102] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2102), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(5056), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2103] = { + [sym_nested_identifier] = STATE(8460), + [sym_string] = STATE(5091), + [sym_comment] = STATE(2103), + [sym_formal_parameters] = STATE(8573), + [sym_nested_type_identifier] = STATE(4872), + [sym__type] = STATE(5057), + [sym_constructor_type] = STATE(5111), + [sym__primary_type] = STATE(5114), + [sym_template_literal_type] = STATE(5132), + [sym_infer_type] = STATE(5111), + [sym_conditional_type] = STATE(5132), + [sym_generic_type] = STATE(5132), + [sym_type_query] = STATE(5132), + [sym_index_type_query] = STATE(5132), + [sym_lookup_type] = STATE(5132), + [sym_literal_type] = STATE(5132), + [sym__number] = STATE(5139), + [sym_existential_type] = STATE(5132), + [sym_flow_maybe_type] = STATE(5132), + [sym_parenthesized_type] = STATE(5132), + [sym_predefined_type] = STATE(5132), + [sym_object_type] = STATE(5132), + [sym_type_parameters] = STATE(8040), + [sym_array_type] = STATE(5132), + [sym_tuple_type] = STATE(5132), + [sym_readonly_type] = STATE(5111), + [sym_union_type] = STATE(5132), + [sym_intersection_type] = STATE(5132), + [sym_function_type] = STATE(5111), + [sym_identifier] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4002), + [anon_sym_LBRACE] = ACTIONS(4004), + [anon_sym_typeof] = ACTIONS(4006), + [anon_sym_const] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4010), + [anon_sym_LBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_new] = ACTIONS(4018), + [anon_sym_AMP] = ACTIONS(4020), + [anon_sym_PIPE] = ACTIONS(4022), + [anon_sym_PLUS] = ACTIONS(4024), + [anon_sym_DASH] = ACTIONS(4024), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4026), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4028), + [sym_number] = ACTIONS(4030), + [sym_this] = ACTIONS(4285), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), + [sym_undefined] = ACTIONS(4030), + [anon_sym_readonly] = ACTIONS(4034), + [anon_sym_QMARK] = ACTIONS(4036), + [anon_sym_any] = ACTIONS(4026), + [anon_sym_number] = ACTIONS(4026), + [anon_sym_boolean] = ACTIONS(4026), + [anon_sym_string] = ACTIONS(4026), + [anon_sym_symbol] = ACTIONS(4026), + [anon_sym_object] = ACTIONS(4026), + [anon_sym_abstract] = ACTIONS(4038), + [anon_sym_infer] = ACTIONS(4042), + [anon_sym_keyof] = ACTIONS(4044), + [anon_sym_unique] = ACTIONS(4046), + [anon_sym_unknown] = ACTIONS(4026), + [anon_sym_never] = ACTIONS(4026), + [anon_sym_LBRACE_PIPE] = ACTIONS(4004), + [sym_html_comment] = ACTIONS(5), + }, + [2104] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2104), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(7121), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4641), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2105] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2105), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4658), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2106] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2106), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4640), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2107] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2107), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(6514), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2108] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2108), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3390), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2109] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2109), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3392), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2110] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2110), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(4896), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), [anon_sym_any] = ACTIONS(1587), [anon_sym_number] = ACTIONS(1587), [anon_sym_boolean] = ACTIONS(1587), [anon_sym_string] = ACTIONS(1587), [anon_sym_symbol] = ACTIONS(1587), - [anon_sym_property] = ACTIONS(1587), - [anon_sym_signal] = ACTIONS(1587), - [anon_sym_on] = ACTIONS(1587), - [anon_sym_required] = ACTIONS(1587), - [anon_sym_component] = ACTIONS(1587), - [anon_sym_satisfies] = ACTIONS(1589), - [anon_sym_enum] = ACTIONS(1587), - [sym__automatic_semicolon] = ACTIONS(2776), - [sym__ternary_qmark] = ACTIONS(1593), - }, - [891] = { - [sym_identifier] = ACTIONS(1637), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_STAR] = ACTIONS(1639), - [anon_sym_default] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_as] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1637), - [anon_sym_COMMA] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_from] = ACTIONS(1637), - [anon_sym_var] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(1639), - [anon_sym_else] = ACTIONS(1637), - [anon_sym_LPAREN] = ACTIONS(1643), - [anon_sym_in] = ACTIONS(1639), - [anon_sym_of] = ACTIONS(1637), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(1639), - [anon_sym_GT] = ACTIONS(1639), - [anon_sym_SLASH] = ACTIONS(1639), - [anon_sym_DOT] = ACTIONS(1643), - [anon_sym_async] = ACTIONS(1637), - [anon_sym_function] = ACTIONS(1637), - [anon_sym_QMARK_DOT] = ACTIONS(1643), - [anon_sym_AMP_AMP] = ACTIONS(1643), - [anon_sym_PIPE_PIPE] = ACTIONS(1643), - [anon_sym_GT_GT] = ACTIONS(1639), - [anon_sym_GT_GT_GT] = ACTIONS(1643), - [anon_sym_LT_LT] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1639), - [anon_sym_CARET] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1639), - [anon_sym_PLUS] = ACTIONS(1639), - [anon_sym_DASH] = ACTIONS(1639), - [anon_sym_PERCENT] = ACTIONS(1643), - [anon_sym_STAR_STAR] = ACTIONS(1643), - [anon_sym_LT_EQ] = ACTIONS(1643), - [anon_sym_EQ_EQ] = ACTIONS(1639), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1643), - [anon_sym_BANG_EQ] = ACTIONS(1639), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1643), - [anon_sym_GT_EQ] = ACTIONS(1643), - [anon_sym_QMARK_QMARK] = ACTIONS(1643), - [anon_sym_instanceof] = ACTIONS(1639), - [anon_sym_PLUS_PLUS] = ACTIONS(1643), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1643), - [anon_sym_AT] = ACTIONS(1641), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_readonly] = ACTIONS(1637), - [anon_sym_get] = ACTIONS(1637), - [anon_sym_set] = ACTIONS(1637), - [anon_sym_declare] = ACTIONS(1637), - [anon_sym_public] = ACTIONS(1637), - [anon_sym_private] = ACTIONS(1637), - [anon_sym_protected] = ACTIONS(1637), - [anon_sym_override] = ACTIONS(1637), - [anon_sym_module] = ACTIONS(1637), - [anon_sym_any] = ACTIONS(1637), - [anon_sym_number] = ACTIONS(1637), - [anon_sym_boolean] = ACTIONS(1637), - [anon_sym_string] = ACTIONS(1637), - [anon_sym_symbol] = ACTIONS(1637), - [anon_sym_property] = ACTIONS(1637), - [anon_sym_signal] = ACTIONS(1637), - [anon_sym_on] = ACTIONS(1637), - [anon_sym_required] = ACTIONS(1637), - [anon_sym_component] = ACTIONS(1637), - [anon_sym_satisfies] = ACTIONS(1639), - [anon_sym_enum] = ACTIONS(1637), - [sym__automatic_semicolon] = ACTIONS(2778), - [sym__ternary_qmark] = ACTIONS(1643), - }, - [892] = { - [sym_identifier] = ACTIONS(1735), - [anon_sym_export] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1735), - [anon_sym_type] = ACTIONS(1735), - [anon_sym_as] = ACTIONS(1737), - [anon_sym_namespace] = ACTIONS(1735), - [anon_sym_COMMA] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_from] = ACTIONS(1735), - [anon_sym_var] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1737), - [anon_sym_else] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_in] = ACTIONS(1737), - [anon_sym_of] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LT] = ACTIONS(1737), - [anon_sym_GT] = ACTIONS(1737), - [anon_sym_SLASH] = ACTIONS(1737), - [anon_sym_DOT] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1735), - [anon_sym_function] = ACTIONS(1735), - [anon_sym_QMARK_DOT] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1741), - [anon_sym_GT_GT] = ACTIONS(1737), - [anon_sym_GT_GT_GT] = ACTIONS(1741), - [anon_sym_LT_LT] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1737), - [anon_sym_PLUS] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_PERCENT] = ACTIONS(1741), - [anon_sym_STAR_STAR] = ACTIONS(1741), - [anon_sym_LT_EQ] = ACTIONS(1741), - [anon_sym_EQ_EQ] = ACTIONS(1737), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1741), - [anon_sym_BANG_EQ] = ACTIONS(1737), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(1741), - [anon_sym_QMARK_QMARK] = ACTIONS(1741), - [anon_sym_instanceof] = ACTIONS(1737), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1741), - [anon_sym_AT] = ACTIONS(1739), - [anon_sym_static] = ACTIONS(1735), - [anon_sym_readonly] = ACTIONS(1735), - [anon_sym_get] = ACTIONS(1735), - [anon_sym_set] = ACTIONS(1735), - [anon_sym_declare] = ACTIONS(1735), - [anon_sym_public] = ACTIONS(1735), - [anon_sym_private] = ACTIONS(1735), - [anon_sym_protected] = ACTIONS(1735), - [anon_sym_override] = ACTIONS(1735), - [anon_sym_module] = ACTIONS(1735), - [anon_sym_any] = ACTIONS(1735), - [anon_sym_number] = ACTIONS(1735), - [anon_sym_boolean] = ACTIONS(1735), - [anon_sym_string] = ACTIONS(1735), - [anon_sym_symbol] = ACTIONS(1735), - [anon_sym_property] = ACTIONS(1735), - [anon_sym_signal] = ACTIONS(1735), - [anon_sym_on] = ACTIONS(1735), - [anon_sym_required] = ACTIONS(1735), - [anon_sym_component] = ACTIONS(1735), - [anon_sym_satisfies] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1735), - [sym__automatic_semicolon] = ACTIONS(2780), - [sym__ternary_qmark] = ACTIONS(1741), - }, - [893] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4269), - [sym_optional_tuple_parameter] = STATE(4269), - [sym_optional_type] = STATE(4269), - [sym_rest_type] = STATE(4269), - [sym__tuple_type_member] = STATE(4269), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [894] = { - [sym_identifier] = ACTIONS(1721), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_default] = ACTIONS(1721), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_COMMA] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_from] = ACTIONS(1721), - [anon_sym_var] = ACTIONS(1721), - [anon_sym_BANG] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_of] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1721), - [anon_sym_GT] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(1723), - [anon_sym_async] = ACTIONS(1721), - [anon_sym_function] = ACTIONS(1721), - [anon_sym_QMARK_DOT] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1723), - [anon_sym_PIPE_PIPE] = ACTIONS(1723), - [anon_sym_GT_GT] = ACTIONS(1721), - [anon_sym_GT_GT_GT] = ACTIONS(1723), - [anon_sym_LT_LT] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_CARET] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1721), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_PERCENT] = ACTIONS(1723), - [anon_sym_STAR_STAR] = ACTIONS(1723), - [anon_sym_LT_EQ] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1721), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1721), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1723), - [anon_sym_GT_EQ] = ACTIONS(1723), - [anon_sym_QMARK_QMARK] = ACTIONS(1723), - [anon_sym_instanceof] = ACTIONS(1721), - [anon_sym_PLUS_PLUS] = ACTIONS(1723), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1723), - [anon_sym_AT] = ACTIONS(1723), - [anon_sym_static] = ACTIONS(1721), - [anon_sym_readonly] = ACTIONS(1721), - [anon_sym_get] = ACTIONS(1721), - [anon_sym_set] = ACTIONS(1721), - [anon_sym_declare] = ACTIONS(1721), - [anon_sym_public] = ACTIONS(1721), - [anon_sym_private] = ACTIONS(1721), - [anon_sym_protected] = ACTIONS(1721), - [anon_sym_override] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_any] = ACTIONS(1721), - [anon_sym_number] = ACTIONS(1721), - [anon_sym_boolean] = ACTIONS(1721), - [anon_sym_string] = ACTIONS(1721), - [anon_sym_symbol] = ACTIONS(1721), - [anon_sym_property] = ACTIONS(1721), - [anon_sym_signal] = ACTIONS(1721), - [anon_sym_on] = ACTIONS(1721), - [anon_sym_required] = ACTIONS(1721), - [anon_sym_component] = ACTIONS(1721), - [anon_sym_satisfies] = ACTIONS(1721), - [anon_sym_enum] = ACTIONS(1721), - [sym__automatic_semicolon] = ACTIONS(1723), - [sym__ternary_qmark] = ACTIONS(1723), - }, - [895] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4264), - [sym_optional_tuple_parameter] = STATE(4264), - [sym_optional_type] = STATE(4264), - [sym_rest_type] = STATE(4264), - [sym__tuple_type_member] = STATE(4264), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [896] = { - [sym_identifier] = ACTIONS(1553), - [anon_sym_export] = ACTIONS(1553), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_default] = ACTIONS(1553), - [anon_sym_type] = ACTIONS(1553), - [anon_sym_as] = ACTIONS(1555), - [anon_sym_namespace] = ACTIONS(1553), - [anon_sym_COMMA] = ACTIONS(1559), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_from] = ACTIONS(1553), - [anon_sym_var] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_else] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1559), - [anon_sym_in] = ACTIONS(1555), - [anon_sym_of] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1559), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_GT] = ACTIONS(1555), - [anon_sym_SLASH] = ACTIONS(1555), - [anon_sym_DOT] = ACTIONS(1559), - [anon_sym_async] = ACTIONS(1553), - [anon_sym_function] = ACTIONS(1553), - [anon_sym_QMARK_DOT] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_PIPE_PIPE] = ACTIONS(1559), - [anon_sym_GT_GT] = ACTIONS(1555), - [anon_sym_GT_GT_GT] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1559), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_PERCENT] = ACTIONS(1559), - [anon_sym_STAR_STAR] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(1559), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1559), - [anon_sym_BANG_EQ] = ACTIONS(1555), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1559), - [anon_sym_GT_EQ] = ACTIONS(1559), - [anon_sym_QMARK_QMARK] = ACTIONS(1559), - [anon_sym_instanceof] = ACTIONS(1555), - [anon_sym_PLUS_PLUS] = ACTIONS(1559), - [anon_sym_DASH_DASH] = ACTIONS(1559), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1559), - [anon_sym_AT] = ACTIONS(1557), - [anon_sym_static] = ACTIONS(1553), - [anon_sym_readonly] = ACTIONS(1553), - [anon_sym_get] = ACTIONS(1553), - [anon_sym_set] = ACTIONS(1553), - [anon_sym_declare] = ACTIONS(1553), - [anon_sym_public] = ACTIONS(1553), - [anon_sym_private] = ACTIONS(1553), - [anon_sym_protected] = ACTIONS(1553), - [anon_sym_override] = ACTIONS(1553), - [anon_sym_module] = ACTIONS(1553), - [anon_sym_any] = ACTIONS(1553), - [anon_sym_number] = ACTIONS(1553), - [anon_sym_boolean] = ACTIONS(1553), - [anon_sym_string] = ACTIONS(1553), - [anon_sym_symbol] = ACTIONS(1553), - [anon_sym_property] = ACTIONS(1553), - [anon_sym_signal] = ACTIONS(1553), - [anon_sym_on] = ACTIONS(1553), - [anon_sym_required] = ACTIONS(1553), - [anon_sym_component] = ACTIONS(1553), - [anon_sym_satisfies] = ACTIONS(1555), - [anon_sym_enum] = ACTIONS(1553), - [sym__automatic_semicolon] = ACTIONS(2790), - [sym__ternary_qmark] = ACTIONS(1559), - }, - [897] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4357), - [sym_optional_tuple_parameter] = STATE(4357), - [sym_optional_type] = STATE(4357), - [sym_rest_type] = STATE(4357), - [sym__tuple_type_member] = STATE(4357), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2792), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [898] = { - [sym_identifier] = ACTIONS(2794), - [anon_sym_export] = ACTIONS(2794), - [anon_sym_type] = ACTIONS(2794), - [anon_sym_EQ] = ACTIONS(2794), - [anon_sym_namespace] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_COMMA] = ACTIONS(2796), - [anon_sym_RBRACE] = ACTIONS(2796), - [anon_sym_typeof] = ACTIONS(2794), - [anon_sym_import] = ACTIONS(2794), - [anon_sym_from] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym_RPAREN] = ACTIONS(2796), - [anon_sym_await] = ACTIONS(2794), - [anon_sym_of] = ACTIONS(2794), - [anon_sym_COLON] = ACTIONS(2796), - [anon_sym_yield] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2796), - [anon_sym_RBRACK] = ACTIONS(2796), - [anon_sym_LTtemplate_GT] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_GT] = ACTIONS(2796), - [anon_sym_SLASH] = ACTIONS(2794), - [anon_sym_class] = ACTIONS(2794), - [anon_sym_async] = ACTIONS(2794), - [anon_sym_function] = ACTIONS(2794), - [anon_sym_EQ_GT] = ACTIONS(2796), - [anon_sym_new] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_PLUS] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_void] = ACTIONS(2794), - [anon_sym_delete] = ACTIONS(2794), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_DQUOTE] = ACTIONS(2796), - [anon_sym_SQUOTE] = ACTIONS(2796), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2796), - [sym_number] = ACTIONS(2796), - [sym_this] = ACTIONS(2794), - [sym_super] = ACTIONS(2794), - [sym_true] = ACTIONS(2794), - [sym_false] = ACTIONS(2794), - [sym_null] = ACTIONS(2794), - [sym_undefined] = ACTIONS(2794), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_static] = ACTIONS(2794), - [anon_sym_readonly] = ACTIONS(2794), - [anon_sym_get] = ACTIONS(2794), - [anon_sym_set] = ACTIONS(2794), - [anon_sym_QMARK] = ACTIONS(2796), - [anon_sym_declare] = ACTIONS(2794), - [anon_sym_public] = ACTIONS(2794), - [anon_sym_private] = ACTIONS(2794), - [anon_sym_protected] = ACTIONS(2794), - [anon_sym_override] = ACTIONS(2794), - [anon_sym_module] = ACTIONS(2794), - [anon_sym_any] = ACTIONS(2794), - [anon_sym_number] = ACTIONS(2794), - [anon_sym_boolean] = ACTIONS(2794), - [anon_sym_string] = ACTIONS(2794), - [anon_sym_symbol] = ACTIONS(2794), - [anon_sym_property] = ACTIONS(2794), - [anon_sym_signal] = ACTIONS(2794), - [anon_sym_on] = ACTIONS(2794), - [anon_sym_required] = ACTIONS(2794), - [anon_sym_component] = ACTIONS(2794), - [anon_sym_extends] = ACTIONS(2794), - [anon_sym_implements] = ACTIONS(2794), - }, - [899] = { - [sym_export_statement] = STATE(3459), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4101), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4101), - [sym_pair] = STATE(4101), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3459), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3459), - [sym_property_signature] = STATE(3459), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3459), - [sym_index_signature] = STATE(3459), - [aux_sym_export_statement_repeat1] = STATE(3910), - [aux_sym_object_repeat1] = STATE(4092), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(2798), - [anon_sym_export] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_namespace] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_from] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2798), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2816), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2824), - [anon_sym_readonly] = ACTIONS(2826), - [anon_sym_get] = ACTIONS(2828), - [anon_sym_set] = ACTIONS(2828), - [anon_sym_declare] = ACTIONS(2798), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_protected] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_module] = ACTIONS(2798), - [anon_sym_any] = ACTIONS(2798), - [anon_sym_number] = ACTIONS(2798), - [anon_sym_boolean] = ACTIONS(2798), - [anon_sym_string] = ACTIONS(2798), - [anon_sym_symbol] = ACTIONS(2798), - [anon_sym_property] = ACTIONS(2798), - [anon_sym_signal] = ACTIONS(2798), - [anon_sym_on] = ACTIONS(2798), - [anon_sym_required] = ACTIONS(2798), - [anon_sym_component] = ACTIONS(2798), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_PIPE_RBRACE] = ACTIONS(2836), - }, - [900] = { - [sym_export_statement] = STATE(3457), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4101), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4101), - [sym_pair] = STATE(4101), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3457), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3457), - [sym_property_signature] = STATE(3457), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3457), - [sym_index_signature] = STATE(3457), - [aux_sym_export_statement_repeat1] = STATE(3910), - [aux_sym_object_repeat1] = STATE(4092), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(2798), - [anon_sym_export] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_namespace] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2838), - [anon_sym_RBRACE] = ACTIONS(2840), - [anon_sym_from] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2798), - [anon_sym_SEMI] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2816), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2824), - [anon_sym_readonly] = ACTIONS(2826), - [anon_sym_get] = ACTIONS(2828), - [anon_sym_set] = ACTIONS(2828), - [anon_sym_declare] = ACTIONS(2798), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_protected] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_module] = ACTIONS(2798), - [anon_sym_any] = ACTIONS(2798), - [anon_sym_number] = ACTIONS(2798), - [anon_sym_boolean] = ACTIONS(2798), - [anon_sym_string] = ACTIONS(2798), - [anon_sym_symbol] = ACTIONS(2798), - [anon_sym_property] = ACTIONS(2798), - [anon_sym_signal] = ACTIONS(2798), - [anon_sym_on] = ACTIONS(2798), - [anon_sym_required] = ACTIONS(2798), - [anon_sym_component] = ACTIONS(2798), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_PIPE_RBRACE] = ACTIONS(2844), - }, - [901] = { - [sym_export_statement] = STATE(3459), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4101), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4101), - [sym_pair] = STATE(4101), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3459), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3459), - [sym_property_signature] = STATE(3459), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3459), - [sym_index_signature] = STATE(3459), - [aux_sym_export_statement_repeat1] = STATE(3910), - [aux_sym_object_repeat1] = STATE(4092), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(2846), - [anon_sym_export] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_namespace] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2850), - [anon_sym_from] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2846), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2854), - [anon_sym_readonly] = ACTIONS(2856), - [anon_sym_get] = ACTIONS(2858), - [anon_sym_set] = ACTIONS(2858), - [anon_sym_declare] = ACTIONS(2846), - [anon_sym_public] = ACTIONS(2860), - [anon_sym_private] = ACTIONS(2860), - [anon_sym_protected] = ACTIONS(2860), - [anon_sym_override] = ACTIONS(2862), - [anon_sym_module] = ACTIONS(2846), - [anon_sym_any] = ACTIONS(2846), - [anon_sym_number] = ACTIONS(2846), - [anon_sym_boolean] = ACTIONS(2846), - [anon_sym_string] = ACTIONS(2846), - [anon_sym_symbol] = ACTIONS(2846), - [anon_sym_property] = ACTIONS(2846), - [anon_sym_signal] = ACTIONS(2846), - [anon_sym_on] = ACTIONS(2846), - [anon_sym_required] = ACTIONS(2846), - [anon_sym_component] = ACTIONS(2846), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_PIPE_RBRACE] = ACTIONS(2836), - }, - [902] = { - [sym_export_statement] = STATE(3459), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4101), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4101), - [sym_pair] = STATE(4101), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3459), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3459), - [sym_property_signature] = STATE(3459), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3459), - [sym_index_signature] = STATE(3459), - [aux_sym_export_statement_repeat1] = STATE(3910), - [aux_sym_object_repeat1] = STATE(4092), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(2864), - [anon_sym_export] = ACTIONS(2866), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2864), - [anon_sym_namespace] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_from] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2870), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_readonly] = ACTIONS(2874), - [anon_sym_get] = ACTIONS(2876), - [anon_sym_set] = ACTIONS(2876), - [anon_sym_declare] = ACTIONS(2864), - [anon_sym_public] = ACTIONS(2878), - [anon_sym_private] = ACTIONS(2878), - [anon_sym_protected] = ACTIONS(2878), - [anon_sym_override] = ACTIONS(2880), - [anon_sym_module] = ACTIONS(2864), - [anon_sym_any] = ACTIONS(2864), - [anon_sym_number] = ACTIONS(2864), - [anon_sym_boolean] = ACTIONS(2864), - [anon_sym_string] = ACTIONS(2864), - [anon_sym_symbol] = ACTIONS(2864), - [anon_sym_property] = ACTIONS(2864), - [anon_sym_signal] = ACTIONS(2864), - [anon_sym_on] = ACTIONS(2864), - [anon_sym_required] = ACTIONS(2864), - [anon_sym_component] = ACTIONS(2864), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_PIPE_RBRACE] = ACTIONS(2836), - }, - [903] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4357), - [sym_optional_tuple_parameter] = STATE(4357), - [sym_optional_type] = STATE(4357), - [sym_rest_type] = STATE(4357), - [sym__tuple_type_member] = STATE(4357), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [904] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4357), - [sym_optional_tuple_parameter] = STATE(4357), - [sym_optional_type] = STATE(4357), - [sym_rest_type] = STATE(4357), - [sym__tuple_type_member] = STATE(4357), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [905] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4357), - [sym_optional_tuple_parameter] = STATE(4357), - [sym_optional_type] = STATE(4357), - [sym_rest_type] = STATE(4357), - [sym__tuple_type_member] = STATE(4357), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2886), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [906] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4357), - [sym_optional_tuple_parameter] = STATE(4357), - [sym_optional_type] = STATE(4357), - [sym_rest_type] = STATE(4357), - [sym__tuple_type_member] = STATE(4357), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2888), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [907] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4357), - [sym_optional_tuple_parameter] = STATE(4357), - [sym_optional_type] = STATE(4357), - [sym_rest_type] = STATE(4357), - [sym__tuple_type_member] = STATE(4357), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [908] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4357), - [sym_optional_tuple_parameter] = STATE(4357), - [sym_optional_type] = STATE(4357), - [sym_rest_type] = STATE(4357), - [sym__tuple_type_member] = STATE(4357), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [909] = { - [sym_export_statement] = STATE(3459), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4141), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4141), - [sym_pair] = STATE(4141), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3459), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3459), - [sym_property_signature] = STATE(3459), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3459), - [sym_index_signature] = STATE(3459), - [aux_sym_export_statement_repeat1] = STATE(3910), - [aux_sym_object_repeat1] = STATE(4139), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(2894), - [anon_sym_export] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_namespace] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym_from] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2894), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_readonly] = ACTIONS(2904), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_declare] = ACTIONS(2894), - [anon_sym_public] = ACTIONS(2908), - [anon_sym_private] = ACTIONS(2908), - [anon_sym_protected] = ACTIONS(2908), - [anon_sym_override] = ACTIONS(2910), - [anon_sym_module] = ACTIONS(2894), - [anon_sym_any] = ACTIONS(2894), - [anon_sym_number] = ACTIONS(2894), - [anon_sym_boolean] = ACTIONS(2894), - [anon_sym_string] = ACTIONS(2894), - [anon_sym_symbol] = ACTIONS(2894), - [anon_sym_property] = ACTIONS(2894), - [anon_sym_signal] = ACTIONS(2894), - [anon_sym_on] = ACTIONS(2894), - [anon_sym_required] = ACTIONS(2894), - [anon_sym_component] = ACTIONS(2894), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_PIPE_RBRACE] = ACTIONS(2836), - }, - [910] = { - [sym_export_statement] = STATE(3459), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4141), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4141), - [sym_pair] = STATE(4141), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3459), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3459), - [sym_property_signature] = STATE(3459), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3459), - [sym_index_signature] = STATE(3459), - [aux_sym_export_statement_repeat1] = STATE(3910), - [aux_sym_object_repeat1] = STATE(4139), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(2894), - [anon_sym_export] = ACTIONS(2896), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_namespace] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_from] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2894), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_readonly] = ACTIONS(2904), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_declare] = ACTIONS(2894), - [anon_sym_public] = ACTIONS(2908), - [anon_sym_private] = ACTIONS(2908), - [anon_sym_protected] = ACTIONS(2908), - [anon_sym_override] = ACTIONS(2910), - [anon_sym_module] = ACTIONS(2894), - [anon_sym_any] = ACTIONS(2894), - [anon_sym_number] = ACTIONS(2894), - [anon_sym_boolean] = ACTIONS(2894), - [anon_sym_string] = ACTIONS(2894), - [anon_sym_symbol] = ACTIONS(2894), - [anon_sym_property] = ACTIONS(2894), - [anon_sym_signal] = ACTIONS(2894), - [anon_sym_on] = ACTIONS(2894), - [anon_sym_required] = ACTIONS(2894), - [anon_sym_component] = ACTIONS(2894), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_PIPE_RBRACE] = ACTIONS(2836), - }, - [911] = { - [sym_export_statement] = STATE(3459), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4101), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4101), - [sym_pair] = STATE(4101), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3459), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3459), - [sym_property_signature] = STATE(3459), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3459), - [sym_index_signature] = STATE(3459), - [aux_sym_export_statement_repeat1] = STATE(3910), - [aux_sym_object_repeat1] = STATE(4092), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(2798), - [anon_sym_export] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_namespace] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_from] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2798), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2816), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2824), - [anon_sym_readonly] = ACTIONS(2826), - [anon_sym_get] = ACTIONS(2828), - [anon_sym_set] = ACTIONS(2828), - [anon_sym_declare] = ACTIONS(2798), - [anon_sym_public] = ACTIONS(2830), - [anon_sym_private] = ACTIONS(2830), - [anon_sym_protected] = ACTIONS(2830), - [anon_sym_override] = ACTIONS(2832), - [anon_sym_module] = ACTIONS(2798), - [anon_sym_any] = ACTIONS(2798), - [anon_sym_number] = ACTIONS(2798), - [anon_sym_boolean] = ACTIONS(2798), - [anon_sym_string] = ACTIONS(2798), - [anon_sym_symbol] = ACTIONS(2798), - [anon_sym_property] = ACTIONS(2798), - [anon_sym_signal] = ACTIONS(2798), - [anon_sym_on] = ACTIONS(2798), - [anon_sym_required] = ACTIONS(2798), - [anon_sym_component] = ACTIONS(2798), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_PIPE_RBRACE] = ACTIONS(2836), - }, - [912] = { - [sym_export_statement] = STATE(3459), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4101), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4101), - [sym_pair] = STATE(4101), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3459), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3459), - [sym_property_signature] = STATE(3459), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3459), - [sym_index_signature] = STATE(3459), - [aux_sym_export_statement_repeat1] = STATE(3910), - [aux_sym_object_repeat1] = STATE(4092), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(2846), - [anon_sym_export] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_namespace] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2916), - [anon_sym_from] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2846), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2854), - [anon_sym_readonly] = ACTIONS(2856), - [anon_sym_get] = ACTIONS(2858), - [anon_sym_set] = ACTIONS(2858), - [anon_sym_declare] = ACTIONS(2846), - [anon_sym_public] = ACTIONS(2860), - [anon_sym_private] = ACTIONS(2860), - [anon_sym_protected] = ACTIONS(2860), - [anon_sym_override] = ACTIONS(2862), - [anon_sym_module] = ACTIONS(2846), - [anon_sym_any] = ACTIONS(2846), - [anon_sym_number] = ACTIONS(2846), - [anon_sym_boolean] = ACTIONS(2846), - [anon_sym_string] = ACTIONS(2846), - [anon_sym_symbol] = ACTIONS(2846), - [anon_sym_property] = ACTIONS(2846), - [anon_sym_signal] = ACTIONS(2846), - [anon_sym_on] = ACTIONS(2846), - [anon_sym_required] = ACTIONS(2846), - [anon_sym_component] = ACTIONS(2846), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_PIPE_RBRACE] = ACTIONS(2836), - }, - [913] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4357), - [sym_optional_tuple_parameter] = STATE(4357), - [sym_optional_type] = STATE(4357), - [sym_rest_type] = STATE(4357), - [sym__tuple_type_member] = STATE(4357), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2918), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [914] = { - [sym_identifier] = ACTIONS(2920), - [anon_sym_export] = ACTIONS(2920), - [anon_sym_type] = ACTIONS(2920), - [anon_sym_EQ] = ACTIONS(2920), - [anon_sym_namespace] = ACTIONS(2920), - [anon_sym_LBRACE] = ACTIONS(2922), - [anon_sym_COMMA] = ACTIONS(2922), - [anon_sym_RBRACE] = ACTIONS(2922), - [anon_sym_typeof] = ACTIONS(2920), - [anon_sym_import] = ACTIONS(2920), - [anon_sym_from] = ACTIONS(2920), - [anon_sym_BANG] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2922), - [anon_sym_RPAREN] = ACTIONS(2922), - [anon_sym_await] = ACTIONS(2920), - [anon_sym_of] = ACTIONS(2920), - [anon_sym_COLON] = ACTIONS(2922), - [anon_sym_yield] = ACTIONS(2920), - [anon_sym_LBRACK] = ACTIONS(2922), - [anon_sym_RBRACK] = ACTIONS(2922), - [anon_sym_LTtemplate_GT] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(2920), - [anon_sym_GT] = ACTIONS(2922), - [anon_sym_SLASH] = ACTIONS(2920), - [anon_sym_class] = ACTIONS(2920), - [anon_sym_async] = ACTIONS(2920), - [anon_sym_function] = ACTIONS(2920), - [anon_sym_EQ_GT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2920), - [anon_sym_AMP] = ACTIONS(2922), - [anon_sym_PIPE] = ACTIONS(2922), - [anon_sym_PLUS] = ACTIONS(2920), - [anon_sym_DASH] = ACTIONS(2920), - [anon_sym_TILDE] = ACTIONS(2922), - [anon_sym_void] = ACTIONS(2920), - [anon_sym_delete] = ACTIONS(2920), - [anon_sym_PLUS_PLUS] = ACTIONS(2922), - [anon_sym_DASH_DASH] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2922), - [anon_sym_SQUOTE] = ACTIONS(2922), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2922), - [sym_number] = ACTIONS(2922), - [sym_this] = ACTIONS(2920), - [sym_super] = ACTIONS(2920), - [sym_true] = ACTIONS(2920), - [sym_false] = ACTIONS(2920), - [sym_null] = ACTIONS(2920), - [sym_undefined] = ACTIONS(2920), - [anon_sym_AT] = ACTIONS(2922), - [anon_sym_static] = ACTIONS(2920), - [anon_sym_readonly] = ACTIONS(2920), - [anon_sym_get] = ACTIONS(2920), - [anon_sym_set] = ACTIONS(2920), - [anon_sym_QMARK] = ACTIONS(2922), - [anon_sym_declare] = ACTIONS(2920), - [anon_sym_public] = ACTIONS(2920), - [anon_sym_private] = ACTIONS(2920), - [anon_sym_protected] = ACTIONS(2920), - [anon_sym_override] = ACTIONS(2920), - [anon_sym_module] = ACTIONS(2920), - [anon_sym_any] = ACTIONS(2920), - [anon_sym_number] = ACTIONS(2920), - [anon_sym_boolean] = ACTIONS(2920), - [anon_sym_string] = ACTIONS(2920), - [anon_sym_symbol] = ACTIONS(2920), - [anon_sym_property] = ACTIONS(2920), - [anon_sym_signal] = ACTIONS(2920), - [anon_sym_on] = ACTIONS(2920), - [anon_sym_required] = ACTIONS(2920), - [anon_sym_component] = ACTIONS(2920), - [anon_sym_extends] = ACTIONS(2920), - [anon_sym_implements] = ACTIONS(2920), - }, - [915] = { - [sym_identifier] = ACTIONS(2924), - [anon_sym_export] = ACTIONS(2924), - [anon_sym_type] = ACTIONS(2924), - [anon_sym_EQ] = ACTIONS(2924), - [anon_sym_namespace] = ACTIONS(2924), - [anon_sym_LBRACE] = ACTIONS(2926), - [anon_sym_COMMA] = ACTIONS(2926), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_typeof] = ACTIONS(2924), - [anon_sym_import] = ACTIONS(2924), - [anon_sym_from] = ACTIONS(2924), - [anon_sym_BANG] = ACTIONS(2926), - [anon_sym_LPAREN] = ACTIONS(2926), - [anon_sym_RPAREN] = ACTIONS(2926), - [anon_sym_await] = ACTIONS(2924), - [anon_sym_of] = ACTIONS(2924), - [anon_sym_COLON] = ACTIONS(2926), - [anon_sym_yield] = ACTIONS(2924), - [anon_sym_LBRACK] = ACTIONS(2926), - [anon_sym_RBRACK] = ACTIONS(2926), - [anon_sym_LTtemplate_GT] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2924), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_SLASH] = ACTIONS(2924), - [anon_sym_class] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(2924), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_EQ_GT] = ACTIONS(2926), - [anon_sym_new] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2926), - [anon_sym_PLUS] = ACTIONS(2924), - [anon_sym_DASH] = ACTIONS(2924), - [anon_sym_TILDE] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(2924), - [anon_sym_delete] = ACTIONS(2924), - [anon_sym_PLUS_PLUS] = ACTIONS(2926), - [anon_sym_DASH_DASH] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_SQUOTE] = ACTIONS(2926), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2926), - [sym_number] = ACTIONS(2926), - [sym_this] = ACTIONS(2924), - [sym_super] = ACTIONS(2924), - [sym_true] = ACTIONS(2924), - [sym_false] = ACTIONS(2924), - [sym_null] = ACTIONS(2924), - [sym_undefined] = ACTIONS(2924), - [anon_sym_AT] = ACTIONS(2926), - [anon_sym_static] = ACTIONS(2924), - [anon_sym_readonly] = ACTIONS(2924), - [anon_sym_get] = ACTIONS(2924), - [anon_sym_set] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(2926), - [anon_sym_declare] = ACTIONS(2924), - [anon_sym_public] = ACTIONS(2924), - [anon_sym_private] = ACTIONS(2924), - [anon_sym_protected] = ACTIONS(2924), - [anon_sym_override] = ACTIONS(2924), - [anon_sym_module] = ACTIONS(2924), - [anon_sym_any] = ACTIONS(2924), - [anon_sym_number] = ACTIONS(2924), - [anon_sym_boolean] = ACTIONS(2924), - [anon_sym_string] = ACTIONS(2924), - [anon_sym_symbol] = ACTIONS(2924), - [anon_sym_property] = ACTIONS(2924), - [anon_sym_signal] = ACTIONS(2924), - [anon_sym_on] = ACTIONS(2924), - [anon_sym_required] = ACTIONS(2924), - [anon_sym_component] = ACTIONS(2924), - [anon_sym_extends] = ACTIONS(2924), - [anon_sym_implements] = ACTIONS(2924), - }, - [916] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4357), - [sym_optional_tuple_parameter] = STATE(4357), - [sym_optional_type] = STATE(4357), - [sym_rest_type] = STATE(4357), - [sym__tuple_type_member] = STATE(4357), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [917] = { - [sym_export_statement] = STATE(3459), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4101), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4101), - [sym_pair] = STATE(4101), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3459), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3459), - [sym_property_signature] = STATE(3459), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3459), - [sym_index_signature] = STATE(3459), - [aux_sym_export_statement_repeat1] = STATE(3910), - [aux_sym_object_repeat1] = STATE(4092), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(2930), - [anon_sym_export] = ACTIONS(2932), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2930), - [anon_sym_namespace] = ACTIONS(2930), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_from] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2930), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2936), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2938), - [anon_sym_readonly] = ACTIONS(2940), - [anon_sym_get] = ACTIONS(2942), - [anon_sym_set] = ACTIONS(2942), - [anon_sym_declare] = ACTIONS(2930), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_override] = ACTIONS(2946), - [anon_sym_module] = ACTIONS(2930), - [anon_sym_any] = ACTIONS(2930), - [anon_sym_number] = ACTIONS(2930), - [anon_sym_boolean] = ACTIONS(2930), - [anon_sym_string] = ACTIONS(2930), - [anon_sym_symbol] = ACTIONS(2930), - [anon_sym_property] = ACTIONS(2930), - [anon_sym_signal] = ACTIONS(2930), - [anon_sym_on] = ACTIONS(2930), - [anon_sym_required] = ACTIONS(2930), - [anon_sym_component] = ACTIONS(2930), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_PIPE_RBRACE] = ACTIONS(2836), - }, - [918] = { - [sym_export_statement] = STATE(3459), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4101), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4101), - [sym_pair] = STATE(4101), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3459), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3459), - [sym_property_signature] = STATE(3459), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3459), - [sym_index_signature] = STATE(3459), - [aux_sym_export_statement_repeat1] = STATE(3910), - [aux_sym_object_repeat1] = STATE(4092), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(2864), - [anon_sym_export] = ACTIONS(2866), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2864), - [anon_sym_namespace] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2948), - [anon_sym_from] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2870), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_readonly] = ACTIONS(2874), - [anon_sym_get] = ACTIONS(2876), - [anon_sym_set] = ACTIONS(2876), - [anon_sym_declare] = ACTIONS(2864), - [anon_sym_public] = ACTIONS(2878), - [anon_sym_private] = ACTIONS(2878), - [anon_sym_protected] = ACTIONS(2878), - [anon_sym_override] = ACTIONS(2880), - [anon_sym_module] = ACTIONS(2864), - [anon_sym_any] = ACTIONS(2864), - [anon_sym_number] = ACTIONS(2864), - [anon_sym_boolean] = ACTIONS(2864), - [anon_sym_string] = ACTIONS(2864), - [anon_sym_symbol] = ACTIONS(2864), - [anon_sym_property] = ACTIONS(2864), - [anon_sym_signal] = ACTIONS(2864), - [anon_sym_on] = ACTIONS(2864), - [anon_sym_required] = ACTIONS(2864), - [anon_sym_component] = ACTIONS(2864), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_PIPE_RBRACE] = ACTIONS(2836), - }, - [919] = { - [sym_export_statement] = STATE(3459), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4101), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4101), - [sym_pair] = STATE(4101), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3459), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3459), - [sym_property_signature] = STATE(3459), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3459), - [sym_index_signature] = STATE(3459), - [aux_sym_export_statement_repeat1] = STATE(3910), - [aux_sym_object_repeat1] = STATE(4092), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(2950), - [anon_sym_export] = ACTIONS(2952), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2950), - [anon_sym_namespace] = ACTIONS(2950), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_from] = ACTIONS(2950), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2950), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2954), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2956), - [anon_sym_readonly] = ACTIONS(2958), - [anon_sym_get] = ACTIONS(2960), - [anon_sym_set] = ACTIONS(2960), - [anon_sym_declare] = ACTIONS(2950), - [anon_sym_public] = ACTIONS(2962), - [anon_sym_private] = ACTIONS(2962), - [anon_sym_protected] = ACTIONS(2962), - [anon_sym_override] = ACTIONS(2964), - [anon_sym_module] = ACTIONS(2950), - [anon_sym_any] = ACTIONS(2950), - [anon_sym_number] = ACTIONS(2950), - [anon_sym_boolean] = ACTIONS(2950), - [anon_sym_string] = ACTIONS(2950), - [anon_sym_symbol] = ACTIONS(2950), - [anon_sym_property] = ACTIONS(2950), - [anon_sym_signal] = ACTIONS(2950), - [anon_sym_on] = ACTIONS(2950), - [anon_sym_required] = ACTIONS(2950), - [anon_sym_component] = ACTIONS(2950), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_PIPE_RBRACE] = ACTIONS(2836), - }, - [920] = { - [sym_export_statement] = STATE(3459), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4101), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4101), - [sym_pair] = STATE(4101), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3459), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3459), - [sym_property_signature] = STATE(3459), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3459), - [sym_index_signature] = STATE(3459), - [aux_sym_export_statement_repeat1] = STATE(3910), - [aux_sym_object_repeat1] = STATE(4092), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(2846), - [anon_sym_export] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2846), - [anon_sym_namespace] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_from] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2846), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2852), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2854), - [anon_sym_readonly] = ACTIONS(2856), - [anon_sym_get] = ACTIONS(2858), - [anon_sym_set] = ACTIONS(2858), - [anon_sym_declare] = ACTIONS(2846), - [anon_sym_public] = ACTIONS(2860), - [anon_sym_private] = ACTIONS(2860), - [anon_sym_protected] = ACTIONS(2860), - [anon_sym_override] = ACTIONS(2862), - [anon_sym_module] = ACTIONS(2846), - [anon_sym_any] = ACTIONS(2846), - [anon_sym_number] = ACTIONS(2846), - [anon_sym_boolean] = ACTIONS(2846), - [anon_sym_string] = ACTIONS(2846), - [anon_sym_symbol] = ACTIONS(2846), - [anon_sym_property] = ACTIONS(2846), - [anon_sym_signal] = ACTIONS(2846), - [anon_sym_on] = ACTIONS(2846), - [anon_sym_required] = ACTIONS(2846), - [anon_sym_component] = ACTIONS(2846), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_PIPE_RBRACE] = ACTIONS(2836), - }, - [921] = { - [sym_export_statement] = STATE(3459), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4245), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4101), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4245), - [sym_method_definition] = STATE(4101), - [sym_pair] = STATE(4101), - [sym_pair_pattern] = STATE(4245), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3459), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3459), - [sym_property_signature] = STATE(3459), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3459), - [sym_index_signature] = STATE(3459), - [aux_sym_export_statement_repeat1] = STATE(3910), - [aux_sym_object_repeat1] = STATE(4092), - [aux_sym_object_pattern_repeat1] = STATE(4271), - [sym_identifier] = ACTIONS(2864), - [anon_sym_export] = ACTIONS(2866), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2864), - [anon_sym_namespace] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2934), - [anon_sym_from] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2870), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_readonly] = ACTIONS(2874), - [anon_sym_get] = ACTIONS(2876), - [anon_sym_set] = ACTIONS(2876), - [anon_sym_declare] = ACTIONS(2864), - [anon_sym_public] = ACTIONS(2878), - [anon_sym_private] = ACTIONS(2878), - [anon_sym_protected] = ACTIONS(2878), - [anon_sym_override] = ACTIONS(2880), - [anon_sym_module] = ACTIONS(2864), - [anon_sym_any] = ACTIONS(2864), - [anon_sym_number] = ACTIONS(2864), - [anon_sym_boolean] = ACTIONS(2864), - [anon_sym_string] = ACTIONS(2864), - [anon_sym_symbol] = ACTIONS(2864), - [anon_sym_property] = ACTIONS(2864), - [anon_sym_signal] = ACTIONS(2864), - [anon_sym_on] = ACTIONS(2864), - [anon_sym_required] = ACTIONS(2864), - [anon_sym_component] = ACTIONS(2864), - [anon_sym_abstract] = ACTIONS(2834), - [anon_sym_PIPE_RBRACE] = ACTIONS(2836), - }, - [922] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4357), - [sym_optional_tuple_parameter] = STATE(4357), - [sym_optional_type] = STATE(4357), - [sym_rest_type] = STATE(4357), - [sym__tuple_type_member] = STATE(4357), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(2966), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [923] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_rest_pattern] = STATE(4496), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3430), - [sym_tuple_parameter] = STATE(4357), - [sym_optional_tuple_parameter] = STATE(4357), - [sym_optional_type] = STATE(4357), - [sym_rest_type] = STATE(4357), - [sym__tuple_type_member] = STATE(4357), - [sym_constructor_type] = STATE(3430), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3430), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3430), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3430), - [sym_identifier] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [924] = { - [sym_export_statement] = STATE(3511), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4404), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4369), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4404), - [sym_method_definition] = STATE(4369), - [sym_pair] = STATE(4369), - [sym_pair_pattern] = STATE(4404), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3511), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3511), - [sym_property_signature] = STATE(3511), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3511), - [sym_index_signature] = STATE(3511), - [aux_sym_export_statement_repeat1] = STATE(3910), - [sym_identifier] = ACTIONS(2968), - [anon_sym_export] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2972), - [anon_sym_RBRACE] = ACTIONS(2972), - [anon_sym_from] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_readonly] = ACTIONS(2979), - [anon_sym_get] = ACTIONS(2981), - [anon_sym_set] = ACTIONS(2981), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_protected] = ACTIONS(2983), - [anon_sym_override] = ACTIONS(2985), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_property] = ACTIONS(2968), - [anon_sym_signal] = ACTIONS(2968), - [anon_sym_on] = ACTIONS(2968), - [anon_sym_required] = ACTIONS(2968), - [anon_sym_component] = ACTIONS(2968), - [anon_sym_abstract] = ACTIONS(2834), - }, - [925] = { - [sym_export_statement] = STATE(3550), - [sym_object_pattern] = STATE(4732), - [sym_object_assignment_pattern] = STATE(4404), - [sym_array_pattern] = STATE(4732), - [sym__call_signature] = STATE(3805), - [sym__destructuring_pattern] = STATE(4732), - [sym_spread_element] = STATE(4369), - [sym_string] = STATE(2967), - [sym_decorator] = STATE(1136), - [sym_formal_parameters] = STATE(3114), - [sym_rest_pattern] = STATE(4404), - [sym_method_definition] = STATE(4369), - [sym_pair] = STATE(4369), - [sym_pair_pattern] = STATE(4404), - [sym__property_name] = STATE(2967), - [sym_computed_property_name] = STATE(2967), - [sym_method_signature] = STATE(3550), - [sym_accessibility_modifier] = STATE(2454), - [sym_override_modifier] = STATE(2489), - [sym_call_signature] = STATE(3550), - [sym_property_signature] = STATE(3550), - [sym_type_parameters] = STATE(4526), - [sym_construct_signature] = STATE(3550), - [sym_index_signature] = STATE(3550), - [aux_sym_export_statement_repeat1] = STATE(3910), - [sym_identifier] = ACTIONS(2968), - [anon_sym_export] = ACTIONS(2970), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2972), - [anon_sym_RBRACE] = ACTIONS(2972), - [anon_sym_from] = ACTIONS(2968), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_of] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2818), - [anon_sym_DOT_DOT_DOT] = ACTIONS(203), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2822), - [sym_private_property_identifier] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(104), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_readonly] = ACTIONS(2979), - [anon_sym_get] = ACTIONS(2981), - [anon_sym_set] = ACTIONS(2981), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2983), - [anon_sym_private] = ACTIONS(2983), - [anon_sym_protected] = ACTIONS(2983), - [anon_sym_override] = ACTIONS(2985), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_property] = ACTIONS(2968), - [anon_sym_signal] = ACTIONS(2968), - [anon_sym_on] = ACTIONS(2968), - [anon_sym_required] = ACTIONS(2968), - [anon_sym_component] = ACTIONS(2968), - [anon_sym_abstract] = ACTIONS(2834), - }, - [926] = { - [sym_nested_identifier] = STATE(678), - [sym_string] = STATE(701), - [sym__module] = STATE(732), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(2989), - [anon_sym_SQUOTE] = ACTIONS(2991), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), - }, - [927] = { - [sym_nested_identifier] = STATE(678), - [sym_string] = STATE(701), - [sym__module] = STATE(732), - [aux_sym_object_repeat1] = STATE(4225), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(2989), - [anon_sym_SQUOTE] = ACTIONS(2991), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), - }, - [928] = { - [sym_nested_identifier] = STATE(151), - [sym_string] = STATE(153), - [sym__module] = STATE(188), - [aux_sym_object_repeat1] = STATE(4225), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(2995), - [anon_sym_SQUOTE] = ACTIONS(2997), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), - }, - [929] = { - [sym_nested_identifier] = STATE(151), - [sym_string] = STATE(153), - [sym__module] = STATE(188), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(2995), - [anon_sym_SQUOTE] = ACTIONS(2997), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), - }, - [930] = { - [sym_nested_identifier] = STATE(151), - [sym_string] = STATE(153), - [sym__module] = STATE(188), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(2995), - [anon_sym_SQUOTE] = ACTIONS(2997), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), - }, - [931] = { - [sym_nested_identifier] = STATE(678), - [sym_string] = STATE(701), - [sym__module] = STATE(732), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(2989), - [anon_sym_SQUOTE] = ACTIONS(2991), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), - }, - [932] = { - [sym_nested_identifier] = STATE(678), - [sym_string] = STATE(701), - [sym__module] = STATE(732), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(2989), - [anon_sym_SQUOTE] = ACTIONS(2991), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), - }, - [933] = { - [sym_nested_identifier] = STATE(151), - [sym_string] = STATE(153), - [sym__module] = STATE(188), - [aux_sym_object_repeat1] = STATE(4063), - [aux_sym_object_pattern_repeat1] = STATE(4043), - [sym_identifier] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(26), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_COLON] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(2995), - [anon_sym_SQUOTE] = ACTIONS(2997), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(2037), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), - }, - [934] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3135), - [sym_constructor_type] = STATE(3135), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3135), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_predicate] = STATE(4555), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2876), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3135), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3135), - [sym_identifier] = ACTIONS(2999), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(3001), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_asserts] = ACTIONS(3003), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [935] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3238), - [sym_constructor_type] = STATE(3238), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3238), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_predicate] = STATE(3856), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3107), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3238), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3238), - [sym_identifier] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3035), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_asserts] = ACTIONS(3045), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [936] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3125), - [sym_constructor_type] = STATE(3125), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3125), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_predicate] = STATE(3443), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3035), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3125), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3125), - [sym_identifier] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(3057), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_asserts] = ACTIONS(3059), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [937] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2899), - [sym_constructor_type] = STATE(2899), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2899), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_predicate] = STATE(2877), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2876), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2899), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2899), - [sym_identifier] = ACTIONS(2999), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(3001), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [938] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3070), - [sym_constructor_type] = STATE(3070), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3070), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_predicate] = STATE(3066), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3035), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3070), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3070), - [sym_identifier] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(3057), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [939] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3521), - [sym_constructor_type] = STATE(3521), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3521), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3521), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3521), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [940] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3521), - [sym_constructor_type] = STATE(3521), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3521), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3521), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3521), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(3063), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [941] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1544), - [sym_constructor_type] = STATE(1544), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1544), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_predicate] = STATE(1540), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1457), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1544), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1544), - [sym_identifier] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3091), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [942] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3391), - [sym_constructor_type] = STATE(3391), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3391), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_type_parameter] = STATE(4268), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3391), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3391), - [sym_identifier] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [943] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3918), - [sym_constructor_type] = STATE(3918), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3918), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3918), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3918), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [944] = { - [sym_nested_identifier] = STATE(1537), - [sym_string] = STATE(1536), - [sym__module] = STATE(1728), - [sym_identifier] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(122), - [anon_sym_as] = ACTIONS(26), - [anon_sym_COMMA] = ACTIONS(125), - [anon_sym_RBRACE] = ACTIONS(125), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(125), - [anon_sym_in] = ACTIONS(26), - [anon_sym_COLON] = ACTIONS(125), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(125), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [945] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(2007), - [sym_constructor_type] = STATE(2007), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(2007), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_predicate] = STATE(2008), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1851), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(2007), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(2007), - [sym_identifier] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3139), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [946] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3051), - [sym_constructor_type] = STATE(3051), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3051), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_predicate] = STATE(3052), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3035), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3051), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3051), - [sym_identifier] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(3057), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [947] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3521), - [sym_constructor_type] = STATE(3521), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3521), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3521), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3521), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(3155), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [948] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3221), - [sym_constructor_type] = STATE(3221), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3221), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_predicate] = STATE(3197), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3107), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3221), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3221), - [sym_identifier] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3035), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [949] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3521), - [sym_constructor_type] = STATE(3521), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3521), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3521), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3521), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [950] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3906), - [sym_constructor_type] = STATE(3906), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3906), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3906), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3906), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [951] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3521), - [sym_constructor_type] = STATE(3521), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3521), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3521), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3521), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [952] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3521), - [sym_constructor_type] = STATE(3521), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3521), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3521), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3521), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [953] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3521), - [sym_constructor_type] = STATE(3521), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3521), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3521), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3521), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [954] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(3536), - [sym_constructor_type] = STATE(3536), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3536), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_predicate] = STATE(2877), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(3361), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3536), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3536), - [sym_identifier] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(3177), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [955] = { - [sym_nested_identifier] = STATE(1537), - [sym_string] = STATE(1536), - [sym__module] = STATE(1728), - [sym_identifier] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(1469), - [anon_sym_in] = ACTIONS(26), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_EQ_GT] = ACTIONS(127), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(2197), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [956] = { - [sym_nested_identifier] = STATE(1537), - [sym_string] = STATE(1536), - [sym__module] = STATE(1728), - [sym_identifier] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(23), - [anon_sym_as] = ACTIONS(26), - [anon_sym_COMMA] = ACTIONS(32), - [anon_sym_RBRACE] = ACTIONS(32), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(32), - [anon_sym_in] = ACTIONS(26), - [anon_sym_COLON] = ACTIONS(32), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(32), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [957] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(3455), - [sym_constructor_type] = STATE(3455), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3455), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_predicate] = STATE(2867), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(3361), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3455), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3455), - [sym_identifier] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(3177), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [958] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3521), - [sym_constructor_type] = STATE(3521), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3521), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3521), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3521), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [959] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3866), - [sym_constructor_type] = STATE(3866), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3866), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3866), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3866), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [960] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3157), - [sym_constructor_type] = STATE(3157), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3157), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_predicate] = STATE(3158), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3107), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3157), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3157), - [sym_identifier] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3035), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [961] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3521), - [sym_constructor_type] = STATE(3521), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3521), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3521), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3521), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [962] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(1920), - [sym_constructor_type] = STATE(1920), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(1920), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_predicate] = STATE(2014), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1851), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(1920), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(1920), - [sym_identifier] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3139), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [963] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3877), - [sym_constructor_type] = STATE(3877), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3877), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3877), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3877), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [964] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3917), - [sym_constructor_type] = STATE(3917), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3917), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3917), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3917), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [965] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2912), - [sym_constructor_type] = STATE(2912), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2912), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_predicate] = STATE(2867), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2876), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2912), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2912), - [sym_identifier] = ACTIONS(2999), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(3001), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [966] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3521), - [sym_constructor_type] = STATE(3521), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3521), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3521), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3521), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [967] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1496), - [sym_constructor_type] = STATE(1496), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1496), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_predicate] = STATE(1494), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1457), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1496), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1496), - [sym_identifier] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3091), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [968] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3521), - [sym_constructor_type] = STATE(3521), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3521), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3521), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3521), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [969] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3521), - [sym_constructor_type] = STATE(3521), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3521), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3521), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3521), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [970] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3999), - [sym_constructor_type] = STATE(3999), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3999), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3999), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3999), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [971] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3766), - [sym_constructor_type] = STATE(3766), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3766), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3766), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3766), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [972] = { - [sym_nested_identifier] = STATE(1456), - [sym_string] = STATE(1453), - [sym__module] = STATE(1727), - [sym_ui_object_initializer] = STATE(2492), - [sym_identifier] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), - }, - [973] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3068), - [sym_constructor_type] = STATE(3068), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3068), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3068), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3068), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [974] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3606), - [sym_constructor_type] = STATE(3606), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3606), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3606), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3606), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [975] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3094), - [sym_constructor_type] = STATE(3094), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3094), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3094), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3094), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [976] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2871), - [sym_constructor_type] = STATE(2871), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2871), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2871), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2871), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [977] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2900), - [sym_constructor_type] = STATE(2900), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2900), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2900), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2900), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [978] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3892), - [sym_constructor_type] = STATE(3892), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3892), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3892), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3892), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [979] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(2882), - [sym_constructor_type] = STATE(2882), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2882), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2882), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2882), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [980] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2896), - [sym_constructor_type] = STATE(2896), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2896), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2896), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2896), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [981] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(4159), - [sym_constructor_type] = STATE(4159), - [sym__primary_type] = STATE(2879), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(4159), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(4159), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(4159), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [982] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(4159), - [sym_constructor_type] = STATE(4159), - [sym__primary_type] = STATE(2875), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(4159), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(4159), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(4159), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [983] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3395), - [sym_constructor_type] = STATE(3395), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3395), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3395), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3395), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [984] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(2074), - [sym_constructor_type] = STATE(2074), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(2074), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(2074), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(2074), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [985] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(2077), - [sym_constructor_type] = STATE(2077), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(2077), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(2077), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(2077), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [986] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(2087), - [sym_constructor_type] = STATE(2087), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(2087), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(2087), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(2087), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [987] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(3452), - [sym_constructor_type] = STATE(3452), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3452), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3452), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3452), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [988] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3187), - [sym_constructor_type] = STATE(3187), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3187), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3203), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3187), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3187), - [sym_identifier] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3215), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [989] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3185), - [sym_constructor_type] = STATE(3185), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3185), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3203), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3185), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3185), - [sym_identifier] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3215), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [990] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3172), - [sym_constructor_type] = STATE(3172), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3172), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3203), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3172), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3172), - [sym_identifier] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3215), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [991] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3171), - [sym_constructor_type] = STATE(3171), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3171), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3203), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3171), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3171), - [sym_identifier] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3215), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [992] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3160), - [sym_constructor_type] = STATE(3160), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3160), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3203), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3160), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3160), - [sym_identifier] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3215), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [993] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3159), - [sym_constructor_type] = STATE(3159), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3159), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3203), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3159), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3159), - [sym_identifier] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3215), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [994] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(3451), - [sym_constructor_type] = STATE(3451), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3451), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3451), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3451), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [995] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(4238), - [sym_constructor_type] = STATE(4238), - [sym__primary_type] = STATE(2090), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(4238), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(4238), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(4238), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [996] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3152), - [sym_constructor_type] = STATE(3152), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3152), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3203), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3152), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3152), - [sym_identifier] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3215), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [997] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(4238), - [sym_constructor_type] = STATE(4238), - [sym__primary_type] = STATE(2094), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(4238), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(4238), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(4238), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [998] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3047), - [sym_constructor_type] = STATE(3047), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3047), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3047), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3047), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [999] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3062), - [sym_constructor_type] = STATE(3062), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3062), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3062), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3062), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1000] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(4174), - [sym_constructor_type] = STATE(4174), - [sym__primary_type] = STATE(2879), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(4174), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(4174), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(4174), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [1001] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(2848), - [sym_constructor_type] = STATE(2848), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2848), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2848), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2848), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [1002] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(2849), - [sym_constructor_type] = STATE(2849), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2849), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2849), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2849), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [1003] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3133), - [sym_constructor_type] = STATE(3133), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3133), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3203), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3133), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3133), - [sym_identifier] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3215), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [1004] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3169), - [sym_constructor_type] = STATE(3169), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3169), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3203), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3169), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3169), - [sym_identifier] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3215), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [1005] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3061), - [sym_constructor_type] = STATE(3061), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3061), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3061), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3061), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1006] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3860), - [sym_constructor_type] = STATE(3860), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3860), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3860), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3860), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1007] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3088), - [sym_constructor_type] = STATE(3088), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3088), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3088), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3088), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1008] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3971), - [sym_constructor_type] = STATE(3971), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3971), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3971), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3971), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1009] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(2055), - [sym_constructor_type] = STATE(2055), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(2055), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(2055), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(2055), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [1010] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(4272), - [sym_constructor_type] = STATE(4272), - [sym__primary_type] = STATE(3164), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(4272), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3203), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(4272), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(4272), - [sym_identifier] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3215), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [1011] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(4272), - [sym_constructor_type] = STATE(4272), - [sym__primary_type] = STATE(3173), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(4272), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3203), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(4272), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(4272), - [sym_identifier] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3215), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [1012] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(3679), - [sym_constructor_type] = STATE(3679), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3679), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3679), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3679), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [1013] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3942), - [sym_constructor_type] = STATE(3942), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3942), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3942), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3942), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1014] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1539), - [sym_constructor_type] = STATE(1539), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1539), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1539), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1539), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1015] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(2086), - [sym_constructor_type] = STATE(2086), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(2086), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(2086), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(2086), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [1016] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3175), - [sym_constructor_type] = STATE(3175), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3175), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3203), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3175), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3175), - [sym_identifier] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3215), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [1017] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3205), - [sym_constructor_type] = STATE(3205), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3205), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3203), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3205), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3205), - [sym_identifier] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3215), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [1018] = { - [sym_nested_identifier] = STATE(4821), - [sym_string] = STATE(3178), - [sym_formal_parameters] = STATE(4985), - [sym_nested_type_identifier] = STATE(3065), - [sym__type] = STATE(3207), - [sym_constructor_type] = STATE(3207), - [sym__primary_type] = STATE(3201), - [sym_template_literal_type] = STATE(3203), - [sym_infer_type] = STATE(3207), - [sym_conditional_type] = STATE(3203), - [sym_generic_type] = STATE(3203), - [sym_type_query] = STATE(3203), - [sym_index_type_query] = STATE(3203), - [sym_lookup_type] = STATE(3203), - [sym_literal_type] = STATE(3203), - [sym__number] = STATE(3204), - [sym_existential_type] = STATE(3203), - [sym_flow_maybe_type] = STATE(3203), - [sym_parenthesized_type] = STATE(3203), - [sym_predefined_type] = STATE(3203), - [sym_object_type] = STATE(3203), - [sym_type_parameters] = STATE(4449), - [sym_array_type] = STATE(3203), - [sym_tuple_type] = STATE(3203), - [sym_readonly_type] = STATE(3207), - [sym_union_type] = STATE(3203), - [sym_intersection_type] = STATE(3203), - [sym_function_type] = STATE(3207), - [sym_identifier] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_typeof] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3023), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_void] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3031), - [sym_number] = ACTIONS(3033), - [sym_this] = ACTIONS(3215), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_null] = ACTIONS(3037), - [sym_undefined] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_abstract] = ACTIONS(3043), - [anon_sym_infer] = ACTIONS(3047), - [anon_sym_keyof] = ACTIONS(3049), - [anon_sym_unknown] = ACTIONS(3025), - [anon_sym_never] = ACTIONS(3025), - [anon_sym_object] = ACTIONS(3025), - [anon_sym_LBRACE_PIPE] = ACTIONS(3051), - }, - [1019] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(3406), - [sym_constructor_type] = STATE(3406), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3406), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3406), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3406), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [1020] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3509), - [sym_constructor_type] = STATE(3509), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3509), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3509), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3509), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1021] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3135), - [sym_constructor_type] = STATE(3135), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3135), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3135), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3135), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1022] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3681), - [sym_constructor_type] = STATE(3681), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3681), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3681), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3681), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1023] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(2883), - [sym_constructor_type] = STATE(2883), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2883), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2883), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2883), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [1024] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1538), - [sym_constructor_type] = STATE(1538), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1538), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1538), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1538), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1025] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(3414), - [sym_constructor_type] = STATE(3414), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3414), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3414), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3414), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [1026] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3838), - [sym_constructor_type] = STATE(3838), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3838), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3838), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3838), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1027] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3477), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2111] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2111), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(4900), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2112] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2112), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4681), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2113] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2113), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5172), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2114] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2114), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4671), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2115] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2115), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5174), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2116] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2116), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5175), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2117] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2117), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4620), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2118] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2118), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4611), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2119] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2119), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3383), [sym_constructor_type] = STATE(3477), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), [sym_infer_type] = STATE(3477), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), [sym_readonly_type] = STATE(3477), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), [sym_function_type] = STATE(3477), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1028] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3084), - [sym_constructor_type] = STATE(3084), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3084), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3084), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3084), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1029] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3055), - [sym_constructor_type] = STATE(3055), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3055), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3055), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3055), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1030] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3521), - [sym_constructor_type] = STATE(3521), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3521), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3521), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3521), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1031] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(4156), - [sym_constructor_type] = STATE(4156), - [sym__primary_type] = STATE(3083), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(4156), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(4156), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(4156), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1032] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1568), - [sym_constructor_type] = STATE(1568), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1568), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1568), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1568), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1033] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(3407), - [sym_constructor_type] = STATE(3407), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3407), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3407), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3407), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [1034] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(4156), - [sym_constructor_type] = STATE(4156), - [sym__primary_type] = STATE(3080), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(4156), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(4156), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(4156), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1035] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(4126), - [sym_constructor_type] = STATE(4126), - [sym__primary_type] = STATE(1625), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(4126), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(4126), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(4126), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1036] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(3535), - [sym_constructor_type] = STATE(3535), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3535), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3535), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3535), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [1037] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3054), - [sym_constructor_type] = STATE(3054), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3054), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3054), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3054), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1038] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3408), - [sym_constructor_type] = STATE(3408), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3408), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3408), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3408), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1039] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(2868), - [sym_constructor_type] = STATE(2868), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2868), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2868), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2868), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [1040] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3941), - [sym_constructor_type] = STATE(3941), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3941), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3941), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3941), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1041] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3603), - [sym_constructor_type] = STATE(3603), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3603), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3603), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3603), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1042] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3384), - [sym_constructor_type] = STATE(3384), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3384), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3384), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3384), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1043] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(4159), - [sym_constructor_type] = STATE(4159), - [sym__primary_type] = STATE(3586), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3884), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(4159), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(4159), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1044] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3588), - [sym_constructor_type] = STATE(3588), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3588), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3588), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3588), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1045] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3394), - [sym_constructor_type] = STATE(3394), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3394), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3394), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3394), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1046] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3391), - [sym_constructor_type] = STATE(3391), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3391), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3391), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3391), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1047] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(4126), - [sym_constructor_type] = STATE(4126), - [sym__primary_type] = STATE(1615), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(4126), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(4126), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(4126), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1048] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1565), - [sym_constructor_type] = STATE(1565), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1565), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1565), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1565), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1049] = { - [sym_nested_identifier] = STATE(1456), - [sym_string] = STATE(1453), - [sym__module] = STATE(1727), - [sym_ui_object_initializer] = STATE(4328), - [sym_identifier] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(26), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_SEMI] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_satisfies] = ACTIONS(26), - [sym__automatic_semicolon] = ACTIONS(65), - [sym__ternary_qmark] = ACTIONS(65), - }, - [1050] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3893), - [sym_constructor_type] = STATE(3893), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3893), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3893), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3893), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1051] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3780), - [sym_constructor_type] = STATE(3780), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3780), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3780), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3780), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1052] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2891), - [sym_constructor_type] = STATE(2891), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2891), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2891), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2891), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1053] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2868), - [sym_constructor_type] = STATE(2868), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2868), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2868), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2868), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1054] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2910), - [sym_constructor_type] = STATE(2910), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2910), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2910), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2910), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1055] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3888), - [sym_constructor_type] = STATE(3888), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3888), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3888), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3888), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1056] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3125), - [sym_constructor_type] = STATE(3125), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3125), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3125), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3125), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1057] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3806), - [sym_constructor_type] = STATE(3806), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3806), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3806), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3806), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1058] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1502), - [sym_constructor_type] = STATE(1502), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1502), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1502), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1502), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1059] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1603), - [sym_constructor_type] = STATE(1603), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1603), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1603), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1603), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1060] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2892), - [sym_constructor_type] = STATE(2892), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2892), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2892), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2892), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1061] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2922), - [sym_constructor_type] = STATE(2922), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2922), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2922), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2922), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1062] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(4174), - [sym_constructor_type] = STATE(4174), - [sym__primary_type] = STATE(2875), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(4174), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(4174), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(4174), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [1063] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3998), - [sym_constructor_type] = STATE(3998), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3998), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3998), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3998), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1064] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3242), - [sym_constructor_type] = STATE(3242), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3242), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3242), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3242), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1065] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1594), - [sym_constructor_type] = STATE(1594), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1594), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1594), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1594), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1066] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3235), - [sym_constructor_type] = STATE(3235), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3235), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3235), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3235), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1067] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3997), - [sym_constructor_type] = STATE(3997), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3997), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3997), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3997), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1068] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(1936), - [sym_constructor_type] = STATE(1936), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(1936), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(1936), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(1936), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [1069] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(1937), - [sym_constructor_type] = STATE(1937), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(1937), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(1937), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(1937), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [1070] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1591), - [sym_constructor_type] = STATE(1591), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1591), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1591), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1591), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1071] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3762), - [sym_constructor_type] = STATE(3762), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3762), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3762), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3762), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1072] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2883), - [sym_constructor_type] = STATE(2883), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2883), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2883), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2883), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1073] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(2064), - [sym_constructor_type] = STATE(2064), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(2064), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(2064), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(2064), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [1074] = { - [sym_nested_identifier] = STATE(1537), - [sym_string] = STATE(1536), - [sym__module] = STATE(1728), - [sym_identifier] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(1396), - [anon_sym_as] = ACTIONS(26), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(65), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [1075] = { - [sym_nested_identifier] = STATE(4799), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4780), - [sym_nested_type_identifier] = STATE(3253), - [sym__type] = STATE(2871), - [sym_constructor_type] = STATE(2871), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2871), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4402), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2871), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2871), - [sym_identifier] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(3185), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(3187), - }, - [1076] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3965), - [sym_constructor_type] = STATE(3965), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3965), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3965), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3965), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1077] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3547), - [sym_constructor_type] = STATE(3547), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3547), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3547), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3547), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1078] = { - [sym_nested_identifier] = STATE(1537), - [sym_string] = STATE(1536), - [sym__module] = STATE(1728), - [sym_identifier] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(26), - [anon_sym_EQ] = ACTIONS(1774), - [anon_sym_as] = ACTIONS(26), - [anon_sym_COMMA] = ACTIONS(65), - [anon_sym_RBRACE] = ACTIONS(65), - [anon_sym_BANG] = ACTIONS(26), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(65), - [anon_sym_in] = ACTIONS(26), - [anon_sym_COLON] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(65), - [anon_sym_RBRACK] = ACTIONS(65), - [anon_sym_LT] = ACTIONS(26), - [anon_sym_GT] = ACTIONS(26), - [anon_sym_SLASH] = ACTIONS(26), - [anon_sym_DOT] = ACTIONS(65), - [anon_sym_EQ_GT] = ACTIONS(63), - [anon_sym_QMARK_DOT] = ACTIONS(65), - [anon_sym_PLUS_EQ] = ACTIONS(69), - [anon_sym_DASH_EQ] = ACTIONS(69), - [anon_sym_STAR_EQ] = ACTIONS(69), - [anon_sym_SLASH_EQ] = ACTIONS(69), - [anon_sym_PERCENT_EQ] = ACTIONS(69), - [anon_sym_CARET_EQ] = ACTIONS(69), - [anon_sym_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_EQ] = ACTIONS(69), - [anon_sym_GT_GT_EQ] = ACTIONS(69), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(69), - [anon_sym_LT_LT_EQ] = ACTIONS(69), - [anon_sym_STAR_STAR_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP_EQ] = ACTIONS(69), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(69), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(69), - [anon_sym_AMP_AMP] = ACTIONS(26), - [anon_sym_PIPE_PIPE] = ACTIONS(26), - [anon_sym_GT_GT] = ACTIONS(26), - [anon_sym_GT_GT_GT] = ACTIONS(26), - [anon_sym_LT_LT] = ACTIONS(26), - [anon_sym_AMP] = ACTIONS(26), - [anon_sym_CARET] = ACTIONS(26), - [anon_sym_PIPE] = ACTIONS(26), - [anon_sym_PLUS] = ACTIONS(26), - [anon_sym_DASH] = ACTIONS(26), - [anon_sym_PERCENT] = ACTIONS(26), - [anon_sym_STAR_STAR] = ACTIONS(26), - [anon_sym_LT_EQ] = ACTIONS(65), - [anon_sym_EQ_EQ] = ACTIONS(26), - [anon_sym_EQ_EQ_EQ] = ACTIONS(65), - [anon_sym_BANG_EQ] = ACTIONS(26), - [anon_sym_BANG_EQ_EQ] = ACTIONS(65), - [anon_sym_GT_EQ] = ACTIONS(65), - [anon_sym_QMARK_QMARK] = ACTIONS(26), - [anon_sym_instanceof] = ACTIONS(26), - [anon_sym_PLUS_PLUS] = ACTIONS(65), - [anon_sym_DASH_DASH] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_satisfies] = ACTIONS(26), - [sym__ternary_qmark] = ACTIONS(65), - }, - [1079] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3652), - [sym_constructor_type] = STATE(3652), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3652), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3652), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3652), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1080] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3967), - [sym_constructor_type] = STATE(3967), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3967), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3967), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3967), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1081] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(2004), - [sym_constructor_type] = STATE(2004), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(2004), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(2004), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(2004), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [1082] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3903), - [sym_constructor_type] = STATE(3903), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3903), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3903), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3903), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1083] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3970), - [sym_constructor_type] = STATE(3970), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3970), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3970), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3970), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1084] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1466), - [sym_constructor_type] = STATE(1466), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1466), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1466), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1466), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1085] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2882), - [sym_constructor_type] = STATE(2882), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2882), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2882), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2882), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1086] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1467), - [sym_constructor_type] = STATE(1467), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1467), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1467), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1467), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1087] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3895), - [sym_constructor_type] = STATE(3895), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3895), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3895), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3895), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1088] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3879), - [sym_constructor_type] = STATE(3879), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3879), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3879), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3879), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1089] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3878), - [sym_constructor_type] = STATE(3878), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3878), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3878), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3878), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1090] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3048), - [sym_constructor_type] = STATE(3048), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3048), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3048), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3048), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1091] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(2010), - [sym_constructor_type] = STATE(2010), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(2010), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(2010), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(2010), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [1092] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(2011), - [sym_constructor_type] = STATE(2011), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(2011), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(2011), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(2011), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [1093] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3861), - [sym_constructor_type] = STATE(3861), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3861), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3861), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3861), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1094] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2848), - [sym_constructor_type] = STATE(2848), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2848), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2848), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2848), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1095] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3064), - [sym_constructor_type] = STATE(3064), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3064), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3064), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3064), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), - }, - [1096] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1559), - [sym_constructor_type] = STATE(1559), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1559), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1559), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1559), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1097] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(2038), - [sym_constructor_type] = STATE(2038), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(2038), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(2038), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(2038), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [1098] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(2849), - [sym_constructor_type] = STATE(2849), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(2849), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(2849), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(2849), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1099] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(2039), - [sym_constructor_type] = STATE(2039), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(2039), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(2039), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(2039), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [1100] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1497), - [sym_constructor_type] = STATE(1497), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1497), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1497), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1497), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1101] = { - [sym_nested_identifier] = STATE(4675), - [sym_string] = STATE(1957), - [sym_formal_parameters] = STATE(4746), - [sym_nested_type_identifier] = STATE(1878), - [sym__type] = STATE(2063), - [sym_constructor_type] = STATE(2063), - [sym__primary_type] = STATE(1967), - [sym_template_literal_type] = STATE(1968), - [sym_infer_type] = STATE(2063), - [sym_conditional_type] = STATE(1968), - [sym_generic_type] = STATE(1968), - [sym_type_query] = STATE(1968), - [sym_index_type_query] = STATE(1968), - [sym_lookup_type] = STATE(1968), - [sym_literal_type] = STATE(1968), - [sym__number] = STATE(1949), - [sym_existential_type] = STATE(1968), - [sym_flow_maybe_type] = STATE(1968), - [sym_parenthesized_type] = STATE(1968), - [sym_predefined_type] = STATE(1968), - [sym_object_type] = STATE(1968), - [sym_type_parameters] = STATE(4575), - [sym_array_type] = STATE(1968), - [sym_tuple_type] = STATE(1968), - [sym_readonly_type] = STATE(2063), - [sym_union_type] = STATE(1968), - [sym_intersection_type] = STATE(1968), - [sym_function_type] = STATE(2063), - [sym_identifier] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_void] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3135), - [sym_number] = ACTIONS(3137), - [sym_this] = ACTIONS(3211), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_null] = ACTIONS(3141), - [sym_undefined] = ACTIONS(3141), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_any] = ACTIONS(3133), - [anon_sym_number] = ACTIONS(3133), - [anon_sym_boolean] = ACTIONS(3133), - [anon_sym_string] = ACTIONS(3133), - [anon_sym_symbol] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_infer] = ACTIONS(3149), - [anon_sym_keyof] = ACTIONS(3151), - [anon_sym_unknown] = ACTIONS(3133), - [anon_sym_never] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_LBRACE_PIPE] = ACTIONS(3153), - }, - [1102] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1493), - [sym_constructor_type] = STATE(1493), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1493), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1493), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1493), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1103] = { - [sym_nested_identifier] = STATE(4880), - [sym_string] = STATE(2850), - [sym_formal_parameters] = STATE(4771), - [sym_nested_type_identifier] = STATE(2841), - [sym__type] = STATE(3982), - [sym_constructor_type] = STATE(3982), - [sym__primary_type] = STATE(2858), - [sym_template_literal_type] = STATE(2856), - [sym_infer_type] = STATE(3982), - [sym_conditional_type] = STATE(2856), - [sym_generic_type] = STATE(2856), - [sym_type_query] = STATE(2856), - [sym_index_type_query] = STATE(2856), - [sym_lookup_type] = STATE(2856), - [sym_literal_type] = STATE(2856), - [sym__number] = STATE(2852), - [sym_existential_type] = STATE(2856), - [sym_flow_maybe_type] = STATE(2856), - [sym_parenthesized_type] = STATE(2856), - [sym_predefined_type] = STATE(2856), - [sym_object_type] = STATE(2856), - [sym_type_parameters] = STATE(4492), - [sym_array_type] = STATE(2856), - [sym_tuple_type] = STATE(2856), - [sym_readonly_type] = STATE(3982), - [sym_union_type] = STATE(2856), - [sym_intersection_type] = STATE(2856), - [sym_function_type] = STATE(3982), - [sym_identifier] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(670), - [anon_sym_LBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_PLUS] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2756), - [anon_sym_void] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1412), - [anon_sym_SQUOTE] = ACTIONS(1414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1416), - [sym_number] = ACTIONS(1418), - [sym_this] = ACTIONS(1420), - [sym_true] = ACTIONS(1422), - [sym_false] = ACTIONS(1422), - [sym_null] = ACTIONS(1422), - [sym_undefined] = ACTIONS(1422), - [anon_sym_readonly] = ACTIONS(1424), - [anon_sym_QMARK] = ACTIONS(716), - [anon_sym_any] = ACTIONS(118), - [anon_sym_number] = ACTIONS(118), - [anon_sym_boolean] = ACTIONS(118), - [anon_sym_string] = ACTIONS(118), - [anon_sym_symbol] = ACTIONS(118), - [anon_sym_abstract] = ACTIONS(112), - [anon_sym_infer] = ACTIONS(114), - [anon_sym_keyof] = ACTIONS(116), - [anon_sym_unknown] = ACTIONS(118), - [anon_sym_never] = ACTIONS(118), - [anon_sym_object] = ACTIONS(118), - [anon_sym_LBRACE_PIPE] = ACTIONS(120), - }, - [1104] = { - [sym_nested_identifier] = STATE(4768), - [sym_string] = STATE(1463), - [sym_formal_parameters] = STATE(4857), - [sym_nested_type_identifier] = STATE(1441), - [sym__type] = STATE(1492), - [sym_constructor_type] = STATE(1492), - [sym__primary_type] = STATE(1560), - [sym_template_literal_type] = STATE(1562), - [sym_infer_type] = STATE(1492), - [sym_conditional_type] = STATE(1562), - [sym_generic_type] = STATE(1562), - [sym_type_query] = STATE(1562), - [sym_index_type_query] = STATE(1562), - [sym_lookup_type] = STATE(1562), - [sym_literal_type] = STATE(1562), - [sym__number] = STATE(1567), - [sym_existential_type] = STATE(1562), - [sym_flow_maybe_type] = STATE(1562), - [sym_parenthesized_type] = STATE(1562), - [sym_predefined_type] = STATE(1562), - [sym_object_type] = STATE(1562), - [sym_type_parameters] = STATE(4493), - [sym_array_type] = STATE(1562), - [sym_tuple_type] = STATE(1562), - [sym_readonly_type] = STATE(1492), - [sym_union_type] = STATE(1562), - [sym_intersection_type] = STATE(1562), - [sym_function_type] = STATE(1492), - [sym_identifier] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_typeof] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3083), - [anon_sym_DASH] = ACTIONS(3083), - [anon_sym_void] = ACTIONS(3085), - [anon_sym_DQUOTE] = ACTIONS(88), - [anon_sym_SQUOTE] = ACTIONS(90), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3087), - [sym_number] = ACTIONS(3089), - [sym_this] = ACTIONS(3219), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_null] = ACTIONS(3093), - [sym_undefined] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_any] = ACTIONS(3085), - [anon_sym_number] = ACTIONS(3085), - [anon_sym_boolean] = ACTIONS(3085), - [anon_sym_string] = ACTIONS(3085), - [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_abstract] = ACTIONS(3099), - [anon_sym_infer] = ACTIONS(3101), - [anon_sym_keyof] = ACTIONS(3103), - [anon_sym_unknown] = ACTIONS(3085), - [anon_sym_never] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_LBRACE_PIPE] = ACTIONS(3105), - }, - [1105] = { - [sym_nested_identifier] = STATE(4807), - [sym_string] = STATE(3095), - [sym_formal_parameters] = STATE(4714), - [sym_nested_type_identifier] = STATE(2964), - [sym__type] = STATE(3056), - [sym_constructor_type] = STATE(3056), - [sym__primary_type] = STATE(3098), - [sym_template_literal_type] = STATE(3102), - [sym_infer_type] = STATE(3056), - [sym_conditional_type] = STATE(3102), - [sym_generic_type] = STATE(3102), - [sym_type_query] = STATE(3102), - [sym_index_type_query] = STATE(3102), - [sym_lookup_type] = STATE(3102), - [sym_literal_type] = STATE(3102), - [sym__number] = STATE(3101), - [sym_existential_type] = STATE(3102), - [sym_flow_maybe_type] = STATE(3102), - [sym_parenthesized_type] = STATE(3102), - [sym_predefined_type] = STATE(3102), - [sym_object_type] = STATE(3102), - [sym_type_parameters] = STATE(4479), - [sym_array_type] = STATE(3102), - [sym_tuple_type] = STATE(3102), - [sym_readonly_type] = STATE(3056), - [sym_union_type] = STATE(3102), - [sym_intersection_type] = STATE(3102), - [sym_function_type] = STATE(3056), - [sym_identifier] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(1605), - [anon_sym_typeof] = ACTIONS(1607), - [anon_sym_LPAREN] = ACTIONS(1609), - [anon_sym_LBRACK] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(2752), - [anon_sym_new] = ACTIONS(1613), - [anon_sym_AMP] = ACTIONS(806), - [anon_sym_PIPE] = ACTIONS(808), - [anon_sym_PLUS] = ACTIONS(3055), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_void] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(1621), - [anon_sym_SQUOTE] = ACTIONS(1623), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1625), - [sym_number] = ACTIONS(1627), - [sym_this] = ACTIONS(1629), - [sym_true] = ACTIONS(1631), - [sym_false] = ACTIONS(1631), - [sym_null] = ACTIONS(1631), - [sym_undefined] = ACTIONS(1631), - [anon_sym_readonly] = ACTIONS(1633), - [anon_sym_QMARK] = ACTIONS(826), - [anon_sym_any] = ACTIONS(836), - [anon_sym_number] = ACTIONS(836), - [anon_sym_boolean] = ACTIONS(836), - [anon_sym_string] = ACTIONS(836), - [anon_sym_symbol] = ACTIONS(836), - [anon_sym_abstract] = ACTIONS(830), - [anon_sym_infer] = ACTIONS(832), - [anon_sym_keyof] = ACTIONS(834), - [anon_sym_unknown] = ACTIONS(836), - [anon_sym_never] = ACTIONS(836), - [anon_sym_object] = ACTIONS(836), - [anon_sym_LBRACE_PIPE] = ACTIONS(838), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2120] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2120), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4656), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2121] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2121), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5798), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2122] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2122), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5806), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2123] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2123), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5812), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2124] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2124), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(7178), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(3443), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2125] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2125), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(7178), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(3445), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2126] = { + [sym_nested_identifier] = STATE(8459), + [sym_string] = STATE(4690), + [sym_comment] = STATE(2126), + [sym_formal_parameters] = STATE(8729), + [sym_nested_type_identifier] = STATE(4575), + [sym__type] = STATE(4589), + [sym_constructor_type] = STATE(4653), + [sym__primary_type] = STATE(4657), + [sym_template_literal_type] = STATE(4606), + [sym_infer_type] = STATE(4653), + [sym_conditional_type] = STATE(4606), + [sym_generic_type] = STATE(4606), + [sym_type_query] = STATE(4606), + [sym_index_type_query] = STATE(4606), + [sym_lookup_type] = STATE(4606), + [sym_literal_type] = STATE(4606), + [sym__number] = STATE(4684), + [sym_existential_type] = STATE(4606), + [sym_flow_maybe_type] = STATE(4606), + [sym_parenthesized_type] = STATE(4606), + [sym_predefined_type] = STATE(4606), + [sym_object_type] = STATE(4606), + [sym_type_parameters] = STATE(7408), + [sym_array_type] = STATE(4606), + [sym_tuple_type] = STATE(4606), + [sym_readonly_type] = STATE(4653), + [sym_union_type] = STATE(4606), + [sym_intersection_type] = STATE(4606), + [sym_function_type] = STATE(4653), + [sym_identifier] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2259), + [sym_number] = ACTIONS(2261), + [sym_this] = ACTIONS(2263), + [sym_true] = ACTIONS(2261), + [sym_false] = ACTIONS(2261), + [sym_null] = ACTIONS(2261), + [sym_undefined] = ACTIONS(2261), + [anon_sym_readonly] = ACTIONS(2265), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [2127] = { + [sym_nested_identifier] = STATE(8281), + [sym_string] = STATE(3479), + [sym_comment] = STATE(2127), + [sym_formal_parameters] = STATE(8207), + [sym_nested_type_identifier] = STATE(3167), + [sym__type] = STATE(3447), + [sym_constructor_type] = STATE(3477), + [sym__primary_type] = STATE(3476), + [sym_template_literal_type] = STATE(3475), + [sym_infer_type] = STATE(3477), + [sym_conditional_type] = STATE(3475), + [sym_generic_type] = STATE(3475), + [sym_type_query] = STATE(3475), + [sym_index_type_query] = STATE(3475), + [sym_lookup_type] = STATE(3475), + [sym_literal_type] = STATE(3475), + [sym__number] = STATE(3474), + [sym_existential_type] = STATE(3475), + [sym_flow_maybe_type] = STATE(3475), + [sym_parenthesized_type] = STATE(3475), + [sym_predefined_type] = STATE(3475), + [sym_object_type] = STATE(3475), + [sym_type_parameters] = STATE(8081), + [sym_array_type] = STATE(3475), + [sym_tuple_type] = STATE(3475), + [sym_readonly_type] = STATE(3477), + [sym_union_type] = STATE(3475), + [sym_intersection_type] = STATE(3475), + [sym_function_type] = STATE(3477), + [sym_identifier] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4209), + [anon_sym_LBRACE] = ACTIONS(4211), + [anon_sym_typeof] = ACTIONS(4213), + [anon_sym_const] = ACTIONS(4215), + [anon_sym_LPAREN] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_PIPE] = ACTIONS(4225), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(4229), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4231), + [sym_number] = ACTIONS(4233), + [sym_this] = ACTIONS(4289), + [sym_true] = ACTIONS(4233), + [sym_false] = ACTIONS(4233), + [sym_null] = ACTIONS(4233), + [sym_undefined] = ACTIONS(4233), + [anon_sym_readonly] = ACTIONS(4237), + [anon_sym_QMARK] = ACTIONS(4239), + [anon_sym_any] = ACTIONS(4229), + [anon_sym_number] = ACTIONS(4229), + [anon_sym_boolean] = ACTIONS(4229), + [anon_sym_string] = ACTIONS(4229), + [anon_sym_symbol] = ACTIONS(4229), + [anon_sym_object] = ACTIONS(4229), + [anon_sym_abstract] = ACTIONS(4241), + [anon_sym_infer] = ACTIONS(4245), + [anon_sym_keyof] = ACTIONS(4247), + [anon_sym_unique] = ACTIONS(4249), + [anon_sym_unknown] = ACTIONS(4229), + [anon_sym_never] = ACTIONS(4229), + [anon_sym_LBRACE_PIPE] = ACTIONS(4211), + [sym_html_comment] = ACTIONS(5), + }, + [2128] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2128), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(4882), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2129] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2129), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(4891), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2130] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2130), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5834), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2131] = { + [sym_nested_identifier] = STATE(8287), + [sym_string] = STATE(4864), + [sym_comment] = STATE(2131), + [sym_formal_parameters] = STATE(8652), + [sym_nested_type_identifier] = STATE(4769), + [sym__type] = STATE(5844), + [sym_constructor_type] = STATE(4917), + [sym__primary_type] = STATE(4905), + [sym_template_literal_type] = STATE(4892), + [sym_infer_type] = STATE(4917), + [sym_conditional_type] = STATE(4892), + [sym_generic_type] = STATE(4892), + [sym_type_query] = STATE(4892), + [sym_index_type_query] = STATE(4892), + [sym_lookup_type] = STATE(4892), + [sym_literal_type] = STATE(4892), + [sym__number] = STATE(4859), + [sym_existential_type] = STATE(4892), + [sym_flow_maybe_type] = STATE(4892), + [sym_parenthesized_type] = STATE(4892), + [sym_predefined_type] = STATE(4892), + [sym_object_type] = STATE(4892), + [sym_type_parameters] = STATE(7865), + [sym_array_type] = STATE(4892), + [sym_tuple_type] = STATE(4892), + [sym_readonly_type] = STATE(4917), + [sym_union_type] = STATE(4892), + [sym_intersection_type] = STATE(4892), + [sym_function_type] = STATE(4917), + [sym_identifier] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_typeof] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_void] = ACTIONS(1587), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2504), + [sym_number] = ACTIONS(2506), + [sym_this] = ACTIONS(2508), + [sym_true] = ACTIONS(2506), + [sym_false] = ACTIONS(2506), + [sym_null] = ACTIONS(2506), + [sym_undefined] = ACTIONS(2506), + [anon_sym_readonly] = ACTIONS(2510), + [anon_sym_QMARK] = ACTIONS(1575), + [anon_sym_any] = ACTIONS(1587), + [anon_sym_number] = ACTIONS(1587), + [anon_sym_boolean] = ACTIONS(1587), + [anon_sym_string] = ACTIONS(1587), + [anon_sym_symbol] = ACTIONS(1587), + [anon_sym_object] = ACTIONS(1587), + [anon_sym_abstract] = ACTIONS(1579), + [anon_sym_infer] = ACTIONS(1581), + [anon_sym_keyof] = ACTIONS(1583), + [anon_sym_unique] = ACTIONS(1585), + [anon_sym_unknown] = ACTIONS(1587), + [anon_sym_never] = ACTIONS(1587), + [anon_sym_LBRACE_PIPE] = ACTIONS(1589), + [sym_html_comment] = ACTIONS(5), + }, + [2132] = { + [sym_comment] = STATE(2132), + [sym_identifier] = ACTIONS(4309), + [anon_sym_export] = ACTIONS(4309), + [anon_sym_type] = ACTIONS(4309), + [anon_sym_namespace] = ACTIONS(4309), + [anon_sym_LBRACE] = ACTIONS(4309), + [anon_sym_typeof] = ACTIONS(4309), + [anon_sym_import] = ACTIONS(4309), + [anon_sym_from] = ACTIONS(4309), + [anon_sym_let] = ACTIONS(4309), + [anon_sym_BANG] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_await] = ACTIONS(4309), + [anon_sym_of] = ACTIONS(4309), + [anon_sym_yield] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_LTtemplate_GT] = ACTIONS(4309), + [anon_sym_DOT] = ACTIONS(4309), + [anon_sym_DQUOTE] = ACTIONS(4309), + [anon_sym_SQUOTE] = ACTIONS(4309), + [anon_sym_class] = ACTIONS(4309), + [anon_sym_async] = ACTIONS(4309), + [anon_sym_function] = ACTIONS(4309), + [anon_sym_new] = ACTIONS(4309), + [anon_sym_using] = ACTIONS(4309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4309), + [anon_sym_DASH] = ACTIONS(4309), + [anon_sym_SLASH] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4309), + [anon_sym_TILDE] = ACTIONS(4309), + [anon_sym_void] = ACTIONS(4309), + [anon_sym_delete] = ACTIONS(4309), + [anon_sym_PLUS_PLUS] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4309), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4309), + [sym_number] = ACTIONS(4309), + [sym_private_property_identifier] = ACTIONS(4309), + [sym_this] = ACTIONS(4309), + [sym_super] = ACTIONS(4309), + [sym_true] = ACTIONS(4309), + [sym_false] = ACTIONS(4309), + [sym_null] = ACTIONS(4309), + [sym_undefined] = ACTIONS(4309), + [anon_sym_AT] = ACTIONS(4309), + [anon_sym_static] = ACTIONS(4309), + [anon_sym_readonly] = ACTIONS(4309), + [anon_sym_get] = ACTIONS(4309), + [anon_sym_set] = ACTIONS(4309), + [anon_sym_declare] = ACTIONS(4309), + [anon_sym_public] = ACTIONS(4309), + [anon_sym_private] = ACTIONS(4309), + [anon_sym_protected] = ACTIONS(4309), + [anon_sym_override] = ACTIONS(4309), + [anon_sym_module] = ACTIONS(4309), + [anon_sym_any] = ACTIONS(4309), + [anon_sym_number] = ACTIONS(4309), + [anon_sym_boolean] = ACTIONS(4309), + [anon_sym_string] = ACTIONS(4309), + [anon_sym_symbol] = ACTIONS(4309), + [anon_sym_object] = ACTIONS(4309), + [anon_sym_property] = ACTIONS(4309), + [anon_sym_signal] = ACTIONS(4309), + [anon_sym_on] = ACTIONS(4309), + [anon_sym_required] = ACTIONS(4309), + [anon_sym_component] = ACTIONS(4309), + [sym_html_comment] = ACTIONS(5), + }, + [2133] = { + [sym_comment] = STATE(2133), + [sym_identifier] = ACTIONS(3548), + [anon_sym_export] = ACTIONS(3548), + [anon_sym_type] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3548), + [anon_sym_typeof] = ACTIONS(3548), + [anon_sym_import] = ACTIONS(3548), + [anon_sym_from] = ACTIONS(3548), + [anon_sym_let] = ACTIONS(3548), + [anon_sym_BANG] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(3548), + [anon_sym_RPAREN] = ACTIONS(3548), + [anon_sym_await] = ACTIONS(3548), + [anon_sym_of] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3548), + [anon_sym_yield] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_LTtemplate_GT] = ACTIONS(3548), + [anon_sym_DQUOTE] = ACTIONS(3548), + [anon_sym_SQUOTE] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_async] = ACTIONS(3548), + [anon_sym_function] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_using] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_LT] = ACTIONS(3548), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_void] = ACTIONS(3548), + [anon_sym_delete] = ACTIONS(3548), + [anon_sym_PLUS_PLUS] = ACTIONS(3548), + [anon_sym_DASH_DASH] = ACTIONS(3548), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3548), + [sym_number] = ACTIONS(3548), + [sym_private_property_identifier] = ACTIONS(3548), + [sym_this] = ACTIONS(3548), + [sym_super] = ACTIONS(3548), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [sym_null] = ACTIONS(3548), + [sym_undefined] = ACTIONS(3548), + [anon_sym_AT] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_readonly] = ACTIONS(3548), + [anon_sym_get] = ACTIONS(3548), + [anon_sym_set] = ACTIONS(3548), + [anon_sym_declare] = ACTIONS(3548), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_override] = ACTIONS(3548), + [anon_sym_module] = ACTIONS(3548), + [anon_sym_any] = ACTIONS(3548), + [anon_sym_number] = ACTIONS(3548), + [anon_sym_boolean] = ACTIONS(3548), + [anon_sym_string] = ACTIONS(3548), + [anon_sym_symbol] = ACTIONS(3548), + [anon_sym_object] = ACTIONS(3548), + [anon_sym_property] = ACTIONS(3548), + [anon_sym_signal] = ACTIONS(3548), + [anon_sym_on] = ACTIONS(3548), + [anon_sym_required] = ACTIONS(3548), + [anon_sym_component] = ACTIONS(3548), + [sym_html_comment] = ACTIONS(5), + }, + [2134] = { + [sym_nested_identifier] = STATE(2951), + [sym_string] = STATE(2952), + [sym_comment] = STATE(2134), + [sym__module] = STATE(2972), + [sym_identifier] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_RPAREN] = ACTIONS(1321), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(1321), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1321), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2135] = { + [sym_comment] = STATE(2135), + [sym_identifier] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_type] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_typeof] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_from] = ACTIONS(3564), + [anon_sym_let] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_RPAREN] = ACTIONS(3564), + [anon_sym_await] = ACTIONS(3564), + [anon_sym_of] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym_yield] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LTtemplate_GT] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_async] = ACTIONS(3564), + [anon_sym_function] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_void] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3564), + [sym_number] = ACTIONS(3564), + [sym_private_property_identifier] = ACTIONS(3564), + [sym_this] = ACTIONS(3564), + [sym_super] = ACTIONS(3564), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_undefined] = ACTIONS(3564), + [anon_sym_AT] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_readonly] = ACTIONS(3564), + [anon_sym_get] = ACTIONS(3564), + [anon_sym_set] = ACTIONS(3564), + [anon_sym_declare] = ACTIONS(3564), + [anon_sym_public] = ACTIONS(3564), + [anon_sym_private] = ACTIONS(3564), + [anon_sym_protected] = ACTIONS(3564), + [anon_sym_override] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_any] = ACTIONS(3564), + [anon_sym_number] = ACTIONS(3564), + [anon_sym_boolean] = ACTIONS(3564), + [anon_sym_string] = ACTIONS(3564), + [anon_sym_symbol] = ACTIONS(3564), + [anon_sym_object] = ACTIONS(3564), + [anon_sym_property] = ACTIONS(3564), + [anon_sym_signal] = ACTIONS(3564), + [anon_sym_on] = ACTIONS(3564), + [anon_sym_required] = ACTIONS(3564), + [anon_sym_component] = ACTIONS(3564), + [sym_html_comment] = ACTIONS(5), + }, + [2136] = { + [sym_nested_identifier] = STATE(2951), + [sym_string] = STATE(2952), + [sym_comment] = STATE(2136), + [sym__module] = STATE(2972), + [sym_identifier] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(34), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_RPAREN] = ACTIONS(34), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(34), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2137] = { + [sym_nested_identifier] = STATE(2951), + [sym_string] = STATE(2952), + [sym_comment] = STATE(2137), + [sym__module] = STATE(2972), + [sym_identifier] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2138] = { + [sym_nested_identifier] = STATE(2951), + [sym_string] = STATE(2952), + [sym_comment] = STATE(2138), + [sym__module] = STATE(2972), + [sym_identifier] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_RPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2139] = { + [sym_nested_identifier] = STATE(2951), + [sym_string] = STATE(2952), + [sym_comment] = STATE(2139), + [sym__module] = STATE(2972), + [sym_identifier] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_RPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2140] = { + [sym_comment] = STATE(2140), + [sym_identifier] = ACTIONS(4313), + [anon_sym_export] = ACTIONS(4313), + [anon_sym_type] = ACTIONS(4313), + [anon_sym_namespace] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_typeof] = ACTIONS(4313), + [anon_sym_import] = ACTIONS(4313), + [anon_sym_from] = ACTIONS(4313), + [anon_sym_let] = ACTIONS(4313), + [anon_sym_BANG] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_await] = ACTIONS(4313), + [anon_sym_of] = ACTIONS(4313), + [anon_sym_yield] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_LTtemplate_GT] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4313), + [anon_sym_SQUOTE] = ACTIONS(4313), + [anon_sym_class] = ACTIONS(4313), + [anon_sym_async] = ACTIONS(4313), + [anon_sym_function] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4313), + [anon_sym_using] = ACTIONS(4313), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_SLASH] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4313), + [anon_sym_TILDE] = ACTIONS(4313), + [anon_sym_void] = ACTIONS(4313), + [anon_sym_delete] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4313), + [sym_number] = ACTIONS(4313), + [sym_private_property_identifier] = ACTIONS(4313), + [sym_this] = ACTIONS(4313), + [sym_super] = ACTIONS(4313), + [sym_true] = ACTIONS(4313), + [sym_false] = ACTIONS(4313), + [sym_null] = ACTIONS(4313), + [sym_undefined] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4313), + [anon_sym_static] = ACTIONS(4313), + [anon_sym_readonly] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_declare] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_override] = ACTIONS(4313), + [anon_sym_module] = ACTIONS(4313), + [anon_sym_any] = ACTIONS(4313), + [anon_sym_number] = ACTIONS(4313), + [anon_sym_boolean] = ACTIONS(4313), + [anon_sym_string] = ACTIONS(4313), + [anon_sym_symbol] = ACTIONS(4313), + [anon_sym_object] = ACTIONS(4313), + [anon_sym_property] = ACTIONS(4313), + [anon_sym_signal] = ACTIONS(4313), + [anon_sym_on] = ACTIONS(4313), + [anon_sym_required] = ACTIONS(4313), + [anon_sym_component] = ACTIONS(4313), + [sym_html_comment] = ACTIONS(5), + }, + [2141] = { + [sym_comment] = STATE(2141), + [sym_identifier] = ACTIONS(3464), + [anon_sym_export] = ACTIONS(3464), + [anon_sym_type] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3464), + [anon_sym_typeof] = ACTIONS(3464), + [anon_sym_import] = ACTIONS(3464), + [anon_sym_from] = ACTIONS(3464), + [anon_sym_let] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3464), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_await] = ACTIONS(3464), + [anon_sym_of] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_yield] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_LTtemplate_GT] = ACTIONS(3464), + [anon_sym_DQUOTE] = ACTIONS(3464), + [anon_sym_SQUOTE] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_async] = ACTIONS(3464), + [anon_sym_function] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_SLASH] = ACTIONS(3464), + [anon_sym_LT] = ACTIONS(3464), + [anon_sym_TILDE] = ACTIONS(3464), + [anon_sym_void] = ACTIONS(3464), + [anon_sym_delete] = ACTIONS(3464), + [anon_sym_PLUS_PLUS] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3464), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3464), + [sym_number] = ACTIONS(3464), + [sym_private_property_identifier] = ACTIONS(3464), + [sym_this] = ACTIONS(3464), + [sym_super] = ACTIONS(3464), + [sym_true] = ACTIONS(3464), + [sym_false] = ACTIONS(3464), + [sym_null] = ACTIONS(3464), + [sym_undefined] = ACTIONS(3464), + [anon_sym_AT] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_readonly] = ACTIONS(3464), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3464), + [anon_sym_declare] = ACTIONS(3464), + [anon_sym_public] = ACTIONS(3464), + [anon_sym_private] = ACTIONS(3464), + [anon_sym_protected] = ACTIONS(3464), + [anon_sym_override] = ACTIONS(3464), + [anon_sym_module] = ACTIONS(3464), + [anon_sym_any] = ACTIONS(3464), + [anon_sym_number] = ACTIONS(3464), + [anon_sym_boolean] = ACTIONS(3464), + [anon_sym_string] = ACTIONS(3464), + [anon_sym_symbol] = ACTIONS(3464), + [anon_sym_object] = ACTIONS(3464), + [anon_sym_property] = ACTIONS(3464), + [anon_sym_signal] = ACTIONS(3464), + [anon_sym_on] = ACTIONS(3464), + [anon_sym_required] = ACTIONS(3464), + [anon_sym_component] = ACTIONS(3464), + [sym_html_comment] = ACTIONS(5), + }, + [2142] = { + [sym_comment] = STATE(2142), + [sym_identifier] = ACTIONS(4315), + [anon_sym_export] = ACTIONS(4315), + [anon_sym_type] = ACTIONS(4315), + [anon_sym_namespace] = ACTIONS(4315), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_typeof] = ACTIONS(4315), + [anon_sym_import] = ACTIONS(4315), + [anon_sym_from] = ACTIONS(4315), + [anon_sym_let] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(4315), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_await] = ACTIONS(4315), + [anon_sym_of] = ACTIONS(4315), + [anon_sym_yield] = ACTIONS(4315), + [anon_sym_LBRACK] = ACTIONS(4315), + [anon_sym_LTtemplate_GT] = ACTIONS(4315), + [anon_sym_DQUOTE] = ACTIONS(4315), + [anon_sym_SQUOTE] = ACTIONS(4315), + [anon_sym_class] = ACTIONS(4315), + [anon_sym_async] = ACTIONS(4315), + [anon_sym_function] = ACTIONS(4315), + [anon_sym_new] = ACTIONS(4315), + [anon_sym_using] = ACTIONS(4315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4315), + [anon_sym_PLUS] = ACTIONS(4315), + [anon_sym_DASH] = ACTIONS(4315), + [anon_sym_SLASH] = ACTIONS(4315), + [anon_sym_LT] = ACTIONS(4315), + [anon_sym_TILDE] = ACTIONS(4315), + [anon_sym_void] = ACTIONS(4315), + [anon_sym_delete] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4315), + [sym_number] = ACTIONS(4315), + [sym_private_property_identifier] = ACTIONS(4315), + [sym_this] = ACTIONS(4315), + [sym_super] = ACTIONS(4315), + [sym_true] = ACTIONS(4315), + [sym_false] = ACTIONS(4315), + [sym_null] = ACTIONS(4315), + [sym_undefined] = ACTIONS(4315), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_static] = ACTIONS(4315), + [anon_sym_readonly] = ACTIONS(4315), + [anon_sym_get] = ACTIONS(4315), + [anon_sym_set] = ACTIONS(4315), + [anon_sym_declare] = ACTIONS(4315), + [anon_sym_public] = ACTIONS(4315), + [anon_sym_private] = ACTIONS(4315), + [anon_sym_protected] = ACTIONS(4315), + [anon_sym_override] = ACTIONS(4315), + [anon_sym_module] = ACTIONS(4315), + [anon_sym_any] = ACTIONS(4315), + [anon_sym_number] = ACTIONS(4315), + [anon_sym_boolean] = ACTIONS(4315), + [anon_sym_string] = ACTIONS(4315), + [anon_sym_symbol] = ACTIONS(4315), + [anon_sym_object] = ACTIONS(4315), + [anon_sym_property] = ACTIONS(4315), + [anon_sym_signal] = ACTIONS(4315), + [anon_sym_on] = ACTIONS(4315), + [anon_sym_required] = ACTIONS(4315), + [anon_sym_component] = ACTIONS(4315), + [sym_html_comment] = ACTIONS(5), + }, + [2143] = { + [sym_comment] = STATE(2143), + [sym_identifier] = ACTIONS(3470), + [anon_sym_export] = ACTIONS(3470), + [anon_sym_type] = ACTIONS(3470), + [anon_sym_namespace] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_typeof] = ACTIONS(3470), + [anon_sym_import] = ACTIONS(3470), + [anon_sym_from] = ACTIONS(3470), + [anon_sym_let] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3470), + [anon_sym_await] = ACTIONS(3470), + [anon_sym_of] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_yield] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3470), + [anon_sym_LTtemplate_GT] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_async] = ACTIONS(3470), + [anon_sym_function] = ACTIONS(3470), + [anon_sym_new] = ACTIONS(3470), + [anon_sym_using] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3470), + [anon_sym_SLASH] = ACTIONS(3470), + [anon_sym_LT] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_void] = ACTIONS(3470), + [anon_sym_delete] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3470), + [sym_number] = ACTIONS(3470), + [sym_private_property_identifier] = ACTIONS(3470), + [sym_this] = ACTIONS(3470), + [sym_super] = ACTIONS(3470), + [sym_true] = ACTIONS(3470), + [sym_false] = ACTIONS(3470), + [sym_null] = ACTIONS(3470), + [sym_undefined] = ACTIONS(3470), + [anon_sym_AT] = ACTIONS(3470), + [anon_sym_static] = ACTIONS(3470), + [anon_sym_readonly] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3470), + [anon_sym_set] = ACTIONS(3470), + [anon_sym_declare] = ACTIONS(3470), + [anon_sym_public] = ACTIONS(3470), + [anon_sym_private] = ACTIONS(3470), + [anon_sym_protected] = ACTIONS(3470), + [anon_sym_override] = ACTIONS(3470), + [anon_sym_module] = ACTIONS(3470), + [anon_sym_any] = ACTIONS(3470), + [anon_sym_number] = ACTIONS(3470), + [anon_sym_boolean] = ACTIONS(3470), + [anon_sym_string] = ACTIONS(3470), + [anon_sym_symbol] = ACTIONS(3470), + [anon_sym_object] = ACTIONS(3470), + [anon_sym_property] = ACTIONS(3470), + [anon_sym_signal] = ACTIONS(3470), + [anon_sym_on] = ACTIONS(3470), + [anon_sym_required] = ACTIONS(3470), + [anon_sym_component] = ACTIONS(3470), + [sym_html_comment] = ACTIONS(5), + }, + [2144] = { + [sym_comment] = STATE(2144), + [sym_identifier] = ACTIONS(3476), + [anon_sym_export] = ACTIONS(3476), + [anon_sym_type] = ACTIONS(3476), + [anon_sym_namespace] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_typeof] = ACTIONS(3476), + [anon_sym_import] = ACTIONS(3476), + [anon_sym_from] = ACTIONS(3476), + [anon_sym_let] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_await] = ACTIONS(3476), + [anon_sym_of] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_yield] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(3476), + [anon_sym_LTtemplate_GT] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_class] = ACTIONS(3476), + [anon_sym_async] = ACTIONS(3476), + [anon_sym_function] = ACTIONS(3476), + [anon_sym_new] = ACTIONS(3476), + [anon_sym_using] = ACTIONS(3476), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_SLASH] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_void] = ACTIONS(3476), + [anon_sym_delete] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3476), + [sym_number] = ACTIONS(3476), + [sym_private_property_identifier] = ACTIONS(3476), + [sym_this] = ACTIONS(3476), + [sym_super] = ACTIONS(3476), + [sym_true] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [sym_null] = ACTIONS(3476), + [sym_undefined] = ACTIONS(3476), + [anon_sym_AT] = ACTIONS(3476), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_readonly] = ACTIONS(3476), + [anon_sym_get] = ACTIONS(3476), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_declare] = ACTIONS(3476), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_override] = ACTIONS(3476), + [anon_sym_module] = ACTIONS(3476), + [anon_sym_any] = ACTIONS(3476), + [anon_sym_number] = ACTIONS(3476), + [anon_sym_boolean] = ACTIONS(3476), + [anon_sym_string] = ACTIONS(3476), + [anon_sym_symbol] = ACTIONS(3476), + [anon_sym_object] = ACTIONS(3476), + [anon_sym_property] = ACTIONS(3476), + [anon_sym_signal] = ACTIONS(3476), + [anon_sym_on] = ACTIONS(3476), + [anon_sym_required] = ACTIONS(3476), + [anon_sym_component] = ACTIONS(3476), + [sym_html_comment] = ACTIONS(5), + }, + [2145] = { + [sym_comment] = STATE(2145), + [sym_identifier] = ACTIONS(3488), + [anon_sym_export] = ACTIONS(3488), + [anon_sym_type] = ACTIONS(3488), + [anon_sym_namespace] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_typeof] = ACTIONS(3488), + [anon_sym_import] = ACTIONS(3488), + [anon_sym_from] = ACTIONS(3488), + [anon_sym_let] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_await] = ACTIONS(3488), + [anon_sym_of] = ACTIONS(3488), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym_yield] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3488), + [anon_sym_LTtemplate_GT] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [anon_sym_SQUOTE] = ACTIONS(3488), + [anon_sym_class] = ACTIONS(3488), + [anon_sym_async] = ACTIONS(3488), + [anon_sym_function] = ACTIONS(3488), + [anon_sym_new] = ACTIONS(3488), + [anon_sym_using] = ACTIONS(3488), + [anon_sym_PLUS] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3488), + [anon_sym_SLASH] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_void] = ACTIONS(3488), + [anon_sym_delete] = ACTIONS(3488), + [anon_sym_PLUS_PLUS] = ACTIONS(3488), + [anon_sym_DASH_DASH] = ACTIONS(3488), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3488), + [sym_number] = ACTIONS(3488), + [sym_private_property_identifier] = ACTIONS(3488), + [sym_this] = ACTIONS(3488), + [sym_super] = ACTIONS(3488), + [sym_true] = ACTIONS(3488), + [sym_false] = ACTIONS(3488), + [sym_null] = ACTIONS(3488), + [sym_undefined] = ACTIONS(3488), + [anon_sym_AT] = ACTIONS(3488), + [anon_sym_static] = ACTIONS(3488), + [anon_sym_readonly] = ACTIONS(3488), + [anon_sym_get] = ACTIONS(3488), + [anon_sym_set] = ACTIONS(3488), + [anon_sym_declare] = ACTIONS(3488), + [anon_sym_public] = ACTIONS(3488), + [anon_sym_private] = ACTIONS(3488), + [anon_sym_protected] = ACTIONS(3488), + [anon_sym_override] = ACTIONS(3488), + [anon_sym_module] = ACTIONS(3488), + [anon_sym_any] = ACTIONS(3488), + [anon_sym_number] = ACTIONS(3488), + [anon_sym_boolean] = ACTIONS(3488), + [anon_sym_string] = ACTIONS(3488), + [anon_sym_symbol] = ACTIONS(3488), + [anon_sym_object] = ACTIONS(3488), + [anon_sym_property] = ACTIONS(3488), + [anon_sym_signal] = ACTIONS(3488), + [anon_sym_on] = ACTIONS(3488), + [anon_sym_required] = ACTIONS(3488), + [anon_sym_component] = ACTIONS(3488), + [sym_html_comment] = ACTIONS(5), + }, + [2146] = { + [sym_comment] = STATE(2146), + [sym_identifier] = ACTIONS(4317), + [anon_sym_export] = ACTIONS(4317), + [anon_sym_type] = ACTIONS(4317), + [anon_sym_namespace] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4317), + [anon_sym_typeof] = ACTIONS(4317), + [anon_sym_import] = ACTIONS(4317), + [anon_sym_from] = ACTIONS(4317), + [anon_sym_let] = ACTIONS(4317), + [anon_sym_BANG] = ACTIONS(4317), + [anon_sym_LPAREN] = ACTIONS(4317), + [anon_sym_await] = ACTIONS(4317), + [anon_sym_of] = ACTIONS(4317), + [anon_sym_yield] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(4317), + [anon_sym_LTtemplate_GT] = ACTIONS(4317), + [anon_sym_DQUOTE] = ACTIONS(4317), + [anon_sym_SQUOTE] = ACTIONS(4317), + [anon_sym_class] = ACTIONS(4317), + [anon_sym_async] = ACTIONS(4317), + [anon_sym_function] = ACTIONS(4317), + [anon_sym_new] = ACTIONS(4317), + [anon_sym_using] = ACTIONS(4317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4317), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4317), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_TILDE] = ACTIONS(4317), + [anon_sym_void] = ACTIONS(4317), + [anon_sym_delete] = ACTIONS(4317), + [anon_sym_PLUS_PLUS] = ACTIONS(4317), + [anon_sym_DASH_DASH] = ACTIONS(4317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4317), + [sym_number] = ACTIONS(4317), + [sym_private_property_identifier] = ACTIONS(4317), + [sym_this] = ACTIONS(4317), + [sym_super] = ACTIONS(4317), + [sym_true] = ACTIONS(4317), + [sym_false] = ACTIONS(4317), + [sym_null] = ACTIONS(4317), + [sym_undefined] = ACTIONS(4317), + [anon_sym_AT] = ACTIONS(4317), + [anon_sym_static] = ACTIONS(4317), + [anon_sym_readonly] = ACTIONS(4317), + [anon_sym_get] = ACTIONS(4317), + [anon_sym_set] = ACTIONS(4317), + [anon_sym_declare] = ACTIONS(4317), + [anon_sym_public] = ACTIONS(4317), + [anon_sym_private] = ACTIONS(4317), + [anon_sym_protected] = ACTIONS(4317), + [anon_sym_override] = ACTIONS(4317), + [anon_sym_module] = ACTIONS(4317), + [anon_sym_any] = ACTIONS(4317), + [anon_sym_number] = ACTIONS(4317), + [anon_sym_boolean] = ACTIONS(4317), + [anon_sym_string] = ACTIONS(4317), + [anon_sym_symbol] = ACTIONS(4317), + [anon_sym_object] = ACTIONS(4317), + [anon_sym_property] = ACTIONS(4317), + [anon_sym_signal] = ACTIONS(4317), + [anon_sym_on] = ACTIONS(4317), + [anon_sym_required] = ACTIONS(4317), + [anon_sym_component] = ACTIONS(4317), + [sym_html_comment] = ACTIONS(5), + }, + [2147] = { + [sym_comment] = STATE(2147), + [sym_identifier] = ACTIONS(4319), + [anon_sym_export] = ACTIONS(4319), + [anon_sym_type] = ACTIONS(4319), + [anon_sym_namespace] = ACTIONS(4319), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_typeof] = ACTIONS(4319), + [anon_sym_import] = ACTIONS(4319), + [anon_sym_from] = ACTIONS(4319), + [anon_sym_let] = ACTIONS(4319), + [anon_sym_BANG] = ACTIONS(4319), + [anon_sym_LPAREN] = ACTIONS(4319), + [anon_sym_await] = ACTIONS(4319), + [anon_sym_of] = ACTIONS(4319), + [anon_sym_yield] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4319), + [anon_sym_LTtemplate_GT] = ACTIONS(4319), + [anon_sym_DQUOTE] = ACTIONS(4319), + [anon_sym_SQUOTE] = ACTIONS(4319), + [anon_sym_class] = ACTIONS(4319), + [anon_sym_async] = ACTIONS(4319), + [anon_sym_function] = ACTIONS(4319), + [anon_sym_new] = ACTIONS(4319), + [anon_sym_using] = ACTIONS(4319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4319), + [anon_sym_PLUS] = ACTIONS(4319), + [anon_sym_DASH] = ACTIONS(4319), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_LT] = ACTIONS(4319), + [anon_sym_TILDE] = ACTIONS(4319), + [anon_sym_void] = ACTIONS(4319), + [anon_sym_delete] = ACTIONS(4319), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4319), + [sym_number] = ACTIONS(4319), + [sym_private_property_identifier] = ACTIONS(4319), + [sym_this] = ACTIONS(4319), + [sym_super] = ACTIONS(4319), + [sym_true] = ACTIONS(4319), + [sym_false] = ACTIONS(4319), + [sym_null] = ACTIONS(4319), + [sym_undefined] = ACTIONS(4319), + [anon_sym_AT] = ACTIONS(4319), + [anon_sym_static] = ACTIONS(4319), + [anon_sym_readonly] = ACTIONS(4319), + [anon_sym_get] = ACTIONS(4319), + [anon_sym_set] = ACTIONS(4319), + [anon_sym_declare] = ACTIONS(4319), + [anon_sym_public] = ACTIONS(4319), + [anon_sym_private] = ACTIONS(4319), + [anon_sym_protected] = ACTIONS(4319), + [anon_sym_override] = ACTIONS(4319), + [anon_sym_module] = ACTIONS(4319), + [anon_sym_any] = ACTIONS(4319), + [anon_sym_number] = ACTIONS(4319), + [anon_sym_boolean] = ACTIONS(4319), + [anon_sym_string] = ACTIONS(4319), + [anon_sym_symbol] = ACTIONS(4319), + [anon_sym_object] = ACTIONS(4319), + [anon_sym_property] = ACTIONS(4319), + [anon_sym_signal] = ACTIONS(4319), + [anon_sym_on] = ACTIONS(4319), + [anon_sym_required] = ACTIONS(4319), + [anon_sym_component] = ACTIONS(4319), + [sym_html_comment] = ACTIONS(5), + }, + [2148] = { + [sym_comment] = STATE(2148), + [sym_identifier] = ACTIONS(4298), + [anon_sym_export] = ACTIONS(4298), + [anon_sym_type] = ACTIONS(4298), + [anon_sym_namespace] = ACTIONS(4298), + [anon_sym_LBRACE] = ACTIONS(4298), + [anon_sym_typeof] = ACTIONS(4298), + [anon_sym_import] = ACTIONS(4298), + [anon_sym_from] = ACTIONS(4298), + [anon_sym_let] = ACTIONS(4298), + [anon_sym_BANG] = ACTIONS(4298), + [anon_sym_LPAREN] = ACTIONS(4298), + [anon_sym_await] = ACTIONS(4298), + [anon_sym_of] = ACTIONS(4298), + [anon_sym_yield] = ACTIONS(4298), + [anon_sym_LBRACK] = ACTIONS(4298), + [anon_sym_LTtemplate_GT] = ACTIONS(4298), + [anon_sym_DQUOTE] = ACTIONS(4298), + [anon_sym_SQUOTE] = ACTIONS(4298), + [anon_sym_class] = ACTIONS(4298), + [anon_sym_async] = ACTIONS(4298), + [anon_sym_function] = ACTIONS(4298), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_using] = ACTIONS(4298), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4298), + [anon_sym_PLUS] = ACTIONS(4298), + [anon_sym_DASH] = ACTIONS(4298), + [anon_sym_SLASH] = ACTIONS(4298), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_TILDE] = ACTIONS(4298), + [anon_sym_void] = ACTIONS(4298), + [anon_sym_delete] = ACTIONS(4298), + [anon_sym_PLUS_PLUS] = ACTIONS(4298), + [anon_sym_DASH_DASH] = ACTIONS(4298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4298), + [sym_number] = ACTIONS(4298), + [sym_private_property_identifier] = ACTIONS(4298), + [sym_this] = ACTIONS(4298), + [sym_super] = ACTIONS(4298), + [sym_true] = ACTIONS(4298), + [sym_false] = ACTIONS(4298), + [sym_null] = ACTIONS(4298), + [sym_undefined] = ACTIONS(4298), + [anon_sym_AT] = ACTIONS(4298), + [anon_sym_static] = ACTIONS(4298), + [anon_sym_readonly] = ACTIONS(4298), + [anon_sym_get] = ACTIONS(4298), + [anon_sym_set] = ACTIONS(4298), + [anon_sym_declare] = ACTIONS(4298), + [anon_sym_public] = ACTIONS(4298), + [anon_sym_private] = ACTIONS(4298), + [anon_sym_protected] = ACTIONS(4298), + [anon_sym_override] = ACTIONS(4298), + [anon_sym_module] = ACTIONS(4298), + [anon_sym_any] = ACTIONS(4298), + [anon_sym_number] = ACTIONS(4298), + [anon_sym_boolean] = ACTIONS(4298), + [anon_sym_string] = ACTIONS(4298), + [anon_sym_symbol] = ACTIONS(4298), + [anon_sym_object] = ACTIONS(4298), + [anon_sym_property] = ACTIONS(4298), + [anon_sym_signal] = ACTIONS(4298), + [anon_sym_on] = ACTIONS(4298), + [anon_sym_required] = ACTIONS(4298), + [anon_sym_component] = ACTIONS(4298), + [sym_html_comment] = ACTIONS(5), + }, + [2149] = { + [sym_nested_identifier] = STATE(2746), + [sym_string] = STATE(2747), + [sym_comment] = STATE(2149), + [sym__module] = STATE(2971), + [sym_ui_object_initializer] = STATE(7779), + [sym_identifier] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2150] = { + [sym_comment] = STATE(2150), + [sym_identifier] = ACTIONS(4323), + [anon_sym_export] = ACTIONS(4323), + [anon_sym_type] = ACTIONS(4323), + [anon_sym_namespace] = ACTIONS(4323), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_typeof] = ACTIONS(4323), + [anon_sym_import] = ACTIONS(4323), + [anon_sym_from] = ACTIONS(4323), + [anon_sym_let] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_await] = ACTIONS(4323), + [anon_sym_of] = ACTIONS(4323), + [anon_sym_yield] = ACTIONS(4323), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_LTtemplate_GT] = ACTIONS(4323), + [anon_sym_DQUOTE] = ACTIONS(4323), + [anon_sym_SQUOTE] = ACTIONS(4323), + [anon_sym_class] = ACTIONS(4323), + [anon_sym_async] = ACTIONS(4323), + [anon_sym_function] = ACTIONS(4323), + [anon_sym_new] = ACTIONS(4323), + [anon_sym_using] = ACTIONS(4323), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4323), + [anon_sym_DASH] = ACTIONS(4323), + [anon_sym_SLASH] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4323), + [anon_sym_TILDE] = ACTIONS(4323), + [anon_sym_void] = ACTIONS(4323), + [anon_sym_delete] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4323), + [sym_number] = ACTIONS(4323), + [sym_private_property_identifier] = ACTIONS(4323), + [sym_this] = ACTIONS(4323), + [sym_super] = ACTIONS(4323), + [sym_true] = ACTIONS(4323), + [sym_false] = ACTIONS(4323), + [sym_null] = ACTIONS(4323), + [sym_undefined] = ACTIONS(4323), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_static] = ACTIONS(4323), + [anon_sym_readonly] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4323), + [anon_sym_set] = ACTIONS(4323), + [anon_sym_declare] = ACTIONS(4323), + [anon_sym_public] = ACTIONS(4323), + [anon_sym_private] = ACTIONS(4323), + [anon_sym_protected] = ACTIONS(4323), + [anon_sym_override] = ACTIONS(4323), + [anon_sym_module] = ACTIONS(4323), + [anon_sym_any] = ACTIONS(4323), + [anon_sym_number] = ACTIONS(4323), + [anon_sym_boolean] = ACTIONS(4323), + [anon_sym_string] = ACTIONS(4323), + [anon_sym_symbol] = ACTIONS(4323), + [anon_sym_object] = ACTIONS(4323), + [anon_sym_property] = ACTIONS(4323), + [anon_sym_signal] = ACTIONS(4323), + [anon_sym_on] = ACTIONS(4323), + [anon_sym_required] = ACTIONS(4323), + [anon_sym_component] = ACTIONS(4323), + [sym_html_comment] = ACTIONS(5), + }, + [2151] = { + [sym_nested_identifier] = STATE(2746), + [sym_string] = STATE(2747), + [sym_comment] = STATE(2151), + [sym__module] = STATE(2971), + [sym_ui_object_initializer] = STATE(4299), + [sym_identifier] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2152] = { + [sym_nested_identifier] = STATE(2746), + [sym_string] = STATE(2747), + [sym_comment] = STATE(2152), + [sym__module] = STATE(2971), + [sym_identifier] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2153] = { + [sym_comment] = STATE(2153), + [sym_identifier] = ACTIONS(4325), + [anon_sym_export] = ACTIONS(4325), + [anon_sym_type] = ACTIONS(4325), + [anon_sym_namespace] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(4325), + [anon_sym_typeof] = ACTIONS(4325), + [anon_sym_import] = ACTIONS(4325), + [anon_sym_from] = ACTIONS(4325), + [anon_sym_let] = ACTIONS(4325), + [anon_sym_BANG] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4325), + [anon_sym_await] = ACTIONS(4325), + [anon_sym_of] = ACTIONS(4325), + [anon_sym_yield] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_LTtemplate_GT] = ACTIONS(4325), + [anon_sym_DQUOTE] = ACTIONS(4325), + [anon_sym_SQUOTE] = ACTIONS(4325), + [anon_sym_class] = ACTIONS(4325), + [anon_sym_async] = ACTIONS(4325), + [anon_sym_function] = ACTIONS(4325), + [anon_sym_new] = ACTIONS(4325), + [anon_sym_using] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_TILDE] = ACTIONS(4325), + [anon_sym_void] = ACTIONS(4325), + [anon_sym_delete] = ACTIONS(4325), + [anon_sym_PLUS_PLUS] = ACTIONS(4325), + [anon_sym_DASH_DASH] = ACTIONS(4325), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4325), + [sym_number] = ACTIONS(4325), + [sym_private_property_identifier] = ACTIONS(4325), + [sym_this] = ACTIONS(4325), + [sym_super] = ACTIONS(4325), + [sym_true] = ACTIONS(4325), + [sym_false] = ACTIONS(4325), + [sym_null] = ACTIONS(4325), + [sym_undefined] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4325), + [anon_sym_static] = ACTIONS(4325), + [anon_sym_readonly] = ACTIONS(4325), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_declare] = ACTIONS(4325), + [anon_sym_public] = ACTIONS(4325), + [anon_sym_private] = ACTIONS(4325), + [anon_sym_protected] = ACTIONS(4325), + [anon_sym_override] = ACTIONS(4325), + [anon_sym_module] = ACTIONS(4325), + [anon_sym_any] = ACTIONS(4325), + [anon_sym_number] = ACTIONS(4325), + [anon_sym_boolean] = ACTIONS(4325), + [anon_sym_string] = ACTIONS(4325), + [anon_sym_symbol] = ACTIONS(4325), + [anon_sym_object] = ACTIONS(4325), + [anon_sym_property] = ACTIONS(4325), + [anon_sym_signal] = ACTIONS(4325), + [anon_sym_on] = ACTIONS(4325), + [anon_sym_required] = ACTIONS(4325), + [anon_sym_component] = ACTIONS(4325), + [sym_html_comment] = ACTIONS(5), + }, + [2154] = { + [sym_nested_identifier] = STATE(994), + [sym_string] = STATE(1036), + [sym_comment] = STATE(2154), + [sym__module] = STATE(1093), + [sym_identifier] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4331), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2155] = { + [sym_nested_identifier] = STATE(2951), + [sym_string] = STATE(2952), + [sym_comment] = STATE(2155), + [sym__module] = STATE(2972), + [sym_identifier] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2156] = { + [sym_variable_declarator] = STATE(6390), + [sym_object_pattern] = STATE(5228), + [sym_array_pattern] = STATE(5228), + [sym__destructuring_pattern] = STATE(5246), + [sym_comment] = STATE(2156), + [sym_identifier] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2157] = { + [sym_nested_identifier] = STATE(408), + [sym_string] = STATE(392), + [sym_comment] = STATE(2157), + [sym__module] = STATE(445), + [sym_identifier] = ACTIONS(4333), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2158] = { + [sym_nested_identifier] = STATE(2951), + [sym_string] = STATE(2952), + [sym_comment] = STATE(2158), + [sym__module] = STATE(2972), + [sym_identifier] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(1431), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2159] = { + [sym_comment] = STATE(2159), + [sym_identifier] = ACTIONS(4339), + [anon_sym_export] = ACTIONS(4339), + [anon_sym_type] = ACTIONS(4339), + [anon_sym_namespace] = ACTIONS(4339), + [anon_sym_LBRACE] = ACTIONS(4339), + [anon_sym_typeof] = ACTIONS(4339), + [anon_sym_import] = ACTIONS(4339), + [anon_sym_from] = ACTIONS(4339), + [anon_sym_let] = ACTIONS(4339), + [anon_sym_BANG] = ACTIONS(4339), + [anon_sym_LPAREN] = ACTIONS(4339), + [anon_sym_await] = ACTIONS(4339), + [anon_sym_of] = ACTIONS(4339), + [anon_sym_yield] = ACTIONS(4339), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_LTtemplate_GT] = ACTIONS(4339), + [anon_sym_DQUOTE] = ACTIONS(4339), + [anon_sym_SQUOTE] = ACTIONS(4339), + [anon_sym_class] = ACTIONS(4339), + [anon_sym_async] = ACTIONS(4339), + [anon_sym_function] = ACTIONS(4339), + [anon_sym_new] = ACTIONS(4339), + [anon_sym_using] = ACTIONS(4339), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_SLASH] = ACTIONS(4339), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_TILDE] = ACTIONS(4339), + [anon_sym_void] = ACTIONS(4339), + [anon_sym_delete] = ACTIONS(4339), + [anon_sym_PLUS_PLUS] = ACTIONS(4339), + [anon_sym_DASH_DASH] = ACTIONS(4339), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4339), + [sym_number] = ACTIONS(4339), + [sym_private_property_identifier] = ACTIONS(4339), + [sym_this] = ACTIONS(4339), + [sym_super] = ACTIONS(4339), + [sym_true] = ACTIONS(4339), + [sym_false] = ACTIONS(4339), + [sym_null] = ACTIONS(4339), + [sym_undefined] = ACTIONS(4339), + [anon_sym_AT] = ACTIONS(4339), + [anon_sym_static] = ACTIONS(4339), + [anon_sym_readonly] = ACTIONS(4339), + [anon_sym_get] = ACTIONS(4339), + [anon_sym_set] = ACTIONS(4339), + [anon_sym_declare] = ACTIONS(4339), + [anon_sym_public] = ACTIONS(4339), + [anon_sym_private] = ACTIONS(4339), + [anon_sym_protected] = ACTIONS(4339), + [anon_sym_override] = ACTIONS(4339), + [anon_sym_module] = ACTIONS(4339), + [anon_sym_any] = ACTIONS(4339), + [anon_sym_number] = ACTIONS(4339), + [anon_sym_boolean] = ACTIONS(4339), + [anon_sym_string] = ACTIONS(4339), + [anon_sym_symbol] = ACTIONS(4339), + [anon_sym_object] = ACTIONS(4339), + [anon_sym_property] = ACTIONS(4339), + [anon_sym_signal] = ACTIONS(4339), + [anon_sym_on] = ACTIONS(4339), + [anon_sym_required] = ACTIONS(4339), + [anon_sym_component] = ACTIONS(4339), + [sym_html_comment] = ACTIONS(5), + }, + [2160] = { + [sym_comment] = STATE(2160), + [sym_identifier] = ACTIONS(4341), + [anon_sym_export] = ACTIONS(4341), + [anon_sym_type] = ACTIONS(4341), + [anon_sym_namespace] = ACTIONS(4341), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_typeof] = ACTIONS(4341), + [anon_sym_import] = ACTIONS(4341), + [anon_sym_from] = ACTIONS(4341), + [anon_sym_let] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4341), + [anon_sym_LPAREN] = ACTIONS(4341), + [anon_sym_await] = ACTIONS(4341), + [anon_sym_of] = ACTIONS(4341), + [anon_sym_yield] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4341), + [anon_sym_LTtemplate_GT] = ACTIONS(4341), + [anon_sym_DQUOTE] = ACTIONS(4341), + [anon_sym_SQUOTE] = ACTIONS(4341), + [anon_sym_class] = ACTIONS(4341), + [anon_sym_async] = ACTIONS(4341), + [anon_sym_function] = ACTIONS(4341), + [anon_sym_new] = ACTIONS(4341), + [anon_sym_using] = ACTIONS(4341), + [anon_sym_PLUS] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4341), + [anon_sym_SLASH] = ACTIONS(4341), + [anon_sym_LT] = ACTIONS(4341), + [anon_sym_TILDE] = ACTIONS(4341), + [anon_sym_void] = ACTIONS(4341), + [anon_sym_delete] = ACTIONS(4341), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4341), + [sym_number] = ACTIONS(4341), + [sym_private_property_identifier] = ACTIONS(4341), + [sym_this] = ACTIONS(4341), + [sym_super] = ACTIONS(4341), + [sym_true] = ACTIONS(4341), + [sym_false] = ACTIONS(4341), + [sym_null] = ACTIONS(4341), + [sym_undefined] = ACTIONS(4341), + [anon_sym_AT] = ACTIONS(4341), + [anon_sym_static] = ACTIONS(4341), + [anon_sym_readonly] = ACTIONS(4341), + [anon_sym_get] = ACTIONS(4341), + [anon_sym_set] = ACTIONS(4341), + [anon_sym_declare] = ACTIONS(4341), + [anon_sym_public] = ACTIONS(4341), + [anon_sym_private] = ACTIONS(4341), + [anon_sym_protected] = ACTIONS(4341), + [anon_sym_override] = ACTIONS(4341), + [anon_sym_module] = ACTIONS(4341), + [anon_sym_any] = ACTIONS(4341), + [anon_sym_number] = ACTIONS(4341), + [anon_sym_boolean] = ACTIONS(4341), + [anon_sym_string] = ACTIONS(4341), + [anon_sym_symbol] = ACTIONS(4341), + [anon_sym_object] = ACTIONS(4341), + [anon_sym_property] = ACTIONS(4341), + [anon_sym_signal] = ACTIONS(4341), + [anon_sym_on] = ACTIONS(4341), + [anon_sym_required] = ACTIONS(4341), + [anon_sym_component] = ACTIONS(4341), + [sym_html_comment] = ACTIONS(5), + }, + [2161] = { + [sym_comment] = STATE(2161), + [sym_identifier] = ACTIONS(4343), + [anon_sym_export] = ACTIONS(4343), + [anon_sym_type] = ACTIONS(4343), + [anon_sym_namespace] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4343), + [anon_sym_typeof] = ACTIONS(4343), + [anon_sym_import] = ACTIONS(4343), + [anon_sym_from] = ACTIONS(4343), + [anon_sym_let] = ACTIONS(4343), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_LPAREN] = ACTIONS(4343), + [anon_sym_await] = ACTIONS(4343), + [anon_sym_of] = ACTIONS(4343), + [anon_sym_yield] = ACTIONS(4343), + [anon_sym_LBRACK] = ACTIONS(4343), + [anon_sym_LTtemplate_GT] = ACTIONS(4343), + [anon_sym_DQUOTE] = ACTIONS(4343), + [anon_sym_SQUOTE] = ACTIONS(4343), + [anon_sym_class] = ACTIONS(4343), + [anon_sym_async] = ACTIONS(4343), + [anon_sym_function] = ACTIONS(4343), + [anon_sym_new] = ACTIONS(4343), + [anon_sym_using] = ACTIONS(4343), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_TILDE] = ACTIONS(4343), + [anon_sym_void] = ACTIONS(4343), + [anon_sym_delete] = ACTIONS(4343), + [anon_sym_PLUS_PLUS] = ACTIONS(4343), + [anon_sym_DASH_DASH] = ACTIONS(4343), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4343), + [sym_number] = ACTIONS(4343), + [sym_private_property_identifier] = ACTIONS(4343), + [sym_this] = ACTIONS(4343), + [sym_super] = ACTIONS(4343), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [sym_null] = ACTIONS(4343), + [sym_undefined] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4343), + [anon_sym_static] = ACTIONS(4343), + [anon_sym_readonly] = ACTIONS(4343), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_declare] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_override] = ACTIONS(4343), + [anon_sym_module] = ACTIONS(4343), + [anon_sym_any] = ACTIONS(4343), + [anon_sym_number] = ACTIONS(4343), + [anon_sym_boolean] = ACTIONS(4343), + [anon_sym_string] = ACTIONS(4343), + [anon_sym_symbol] = ACTIONS(4343), + [anon_sym_object] = ACTIONS(4343), + [anon_sym_property] = ACTIONS(4343), + [anon_sym_signal] = ACTIONS(4343), + [anon_sym_on] = ACTIONS(4343), + [anon_sym_required] = ACTIONS(4343), + [anon_sym_component] = ACTIONS(4343), + [sym_html_comment] = ACTIONS(5), + }, + [2162] = { + [sym_variable_declarator] = STATE(6371), + [sym_object_pattern] = STATE(5228), + [sym_array_pattern] = STATE(5228), + [sym__destructuring_pattern] = STATE(5246), + [sym_comment] = STATE(2162), + [sym_identifier] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2163] = { + [sym_variable_declarator] = STATE(6433), + [sym_object_pattern] = STATE(5228), + [sym_array_pattern] = STATE(5228), + [sym__destructuring_pattern] = STATE(5246), + [sym_comment] = STATE(2163), + [sym_identifier] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2164] = { + [sym_variable_declarator] = STATE(6547), + [sym_object_pattern] = STATE(5228), + [sym_array_pattern] = STATE(5228), + [sym__destructuring_pattern] = STATE(5246), + [sym_comment] = STATE(2164), + [sym_identifier] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2165] = { + [sym_nested_identifier] = STATE(1829), + [sym_string] = STATE(1830), + [sym_comment] = STATE(2165), + [sym__module] = STATE(1857), + [sym_identifier] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4349), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2166] = { + [sym_nested_identifier] = STATE(1433), + [sym_string] = STATE(1554), + [sym_comment] = STATE(2166), + [sym__module] = STATE(1809), + [sym_identifier] = ACTIONS(4251), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4253), + [anon_sym_SQUOTE] = ACTIONS(4255), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2167] = { + [sym_comment] = STATE(2167), + [sym_identifier] = ACTIONS(4351), + [anon_sym_export] = ACTIONS(4351), + [anon_sym_type] = ACTIONS(4351), + [anon_sym_namespace] = ACTIONS(4351), + [anon_sym_LBRACE] = ACTIONS(4351), + [anon_sym_typeof] = ACTIONS(4351), + [anon_sym_import] = ACTIONS(4351), + [anon_sym_from] = ACTIONS(4351), + [anon_sym_let] = ACTIONS(4351), + [anon_sym_BANG] = ACTIONS(4351), + [anon_sym_LPAREN] = ACTIONS(4351), + [anon_sym_await] = ACTIONS(4351), + [anon_sym_of] = ACTIONS(4351), + [anon_sym_yield] = ACTIONS(4351), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_LTtemplate_GT] = ACTIONS(4351), + [anon_sym_DQUOTE] = ACTIONS(4351), + [anon_sym_SQUOTE] = ACTIONS(4351), + [anon_sym_class] = ACTIONS(4351), + [anon_sym_async] = ACTIONS(4351), + [anon_sym_function] = ACTIONS(4351), + [anon_sym_new] = ACTIONS(4351), + [anon_sym_using] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_DASH] = ACTIONS(4351), + [anon_sym_SLASH] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4351), + [anon_sym_TILDE] = ACTIONS(4351), + [anon_sym_void] = ACTIONS(4351), + [anon_sym_delete] = ACTIONS(4351), + [anon_sym_PLUS_PLUS] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4351), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4351), + [sym_number] = ACTIONS(4351), + [sym_private_property_identifier] = ACTIONS(4351), + [sym_this] = ACTIONS(4351), + [sym_super] = ACTIONS(4351), + [sym_true] = ACTIONS(4351), + [sym_false] = ACTIONS(4351), + [sym_null] = ACTIONS(4351), + [sym_undefined] = ACTIONS(4351), + [anon_sym_AT] = ACTIONS(4351), + [anon_sym_static] = ACTIONS(4351), + [anon_sym_readonly] = ACTIONS(4351), + [anon_sym_get] = ACTIONS(4351), + [anon_sym_set] = ACTIONS(4351), + [anon_sym_declare] = ACTIONS(4351), + [anon_sym_public] = ACTIONS(4351), + [anon_sym_private] = ACTIONS(4351), + [anon_sym_protected] = ACTIONS(4351), + [anon_sym_override] = ACTIONS(4351), + [anon_sym_module] = ACTIONS(4351), + [anon_sym_any] = ACTIONS(4351), + [anon_sym_number] = ACTIONS(4351), + [anon_sym_boolean] = ACTIONS(4351), + [anon_sym_string] = ACTIONS(4351), + [anon_sym_symbol] = ACTIONS(4351), + [anon_sym_object] = ACTIONS(4351), + [anon_sym_property] = ACTIONS(4351), + [anon_sym_signal] = ACTIONS(4351), + [anon_sym_on] = ACTIONS(4351), + [anon_sym_required] = ACTIONS(4351), + [anon_sym_component] = ACTIONS(4351), + [sym_html_comment] = ACTIONS(5), + }, + [2168] = { + [sym_nested_identifier] = STATE(2951), + [sym_string] = STATE(2952), + [sym_comment] = STATE(2168), + [sym__module] = STATE(2972), + [sym_identifier] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(1449), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2169] = { + [sym_nested_identifier] = STATE(487), + [sym_string] = STATE(488), + [sym_comment] = STATE(2169), + [sym__module] = STATE(494), + [sym_identifier] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4259), + [anon_sym_SQUOTE] = ACTIONS(4261), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2170] = { + [sym_variable_declarator] = STATE(6330), + [sym_object_pattern] = STATE(5228), + [sym_array_pattern] = STATE(5228), + [sym__destructuring_pattern] = STATE(5246), + [sym_comment] = STATE(2170), + [sym_identifier] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2171] = { + [sym_nested_identifier] = STATE(3954), + [sym_string] = STATE(3990), + [sym_comment] = STATE(2171), + [sym__module] = STATE(4245), + [sym_identifier] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4355), + [anon_sym_SQUOTE] = ACTIONS(4357), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2172] = { + [sym_nested_identifier] = STATE(2746), + [sym_string] = STATE(2747), + [sym_comment] = STATE(2172), + [sym__module] = STATE(2971), + [sym_identifier] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(1449), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2173] = { + [sym_nested_identifier] = STATE(1151), + [sym_string] = STATE(1286), + [sym_comment] = STATE(2173), + [sym__module] = STATE(1545), + [sym_identifier] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4361), + [anon_sym_SQUOTE] = ACTIONS(4363), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2174] = { + [sym_variable_declarator] = STATE(6401), + [sym_object_pattern] = STATE(5228), + [sym_array_pattern] = STATE(5228), + [sym__destructuring_pattern] = STATE(5246), + [sym_comment] = STATE(2174), + [sym_identifier] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2175] = { + [sym_nested_identifier] = STATE(3891), + [sym_string] = STATE(3948), + [sym_comment] = STATE(2175), + [sym__module] = STATE(4139), + [sym_identifier] = ACTIONS(4365), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4369), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2176] = { + [sym_nested_identifier] = STATE(6024), + [sym_string] = STATE(6566), + [sym_comment] = STATE(2176), + [sym__module] = STATE(7424), + [sym_identifier] = ACTIONS(4371), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2177] = { + [sym_nested_identifier] = STATE(2746), + [sym_string] = STATE(2747), + [sym_comment] = STATE(2177), + [sym__module] = STATE(2971), + [sym_identifier] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(1434), + [anon_sym_of] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2178] = { + [sym_variable_declarator] = STATE(6334), + [sym_object_pattern] = STATE(5228), + [sym_array_pattern] = STATE(5228), + [sym__destructuring_pattern] = STATE(5037), + [sym_comment] = STATE(2178), + [sym_identifier] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(1434), + [anon_sym_of] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2179] = { + [sym_nested_identifier] = STATE(374), + [sym_string] = STATE(375), + [sym_comment] = STATE(2179), + [sym__module] = STATE(403), + [sym_identifier] = ACTIONS(4377), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4379), + [anon_sym_SQUOTE] = ACTIONS(4381), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2180] = { + [sym_nested_identifier] = STATE(2746), + [sym_string] = STATE(2747), + [sym_comment] = STATE(2180), + [sym__module] = STATE(2971), + [sym_identifier] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2181] = { + [sym_nested_identifier] = STATE(1042), + [sym_string] = STATE(1144), + [sym_comment] = STATE(2181), + [sym__module] = STATE(1297), + [sym_identifier] = ACTIONS(4383), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4385), + [anon_sym_SQUOTE] = ACTIONS(4387), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2182] = { + [sym_comment] = STATE(2182), + [sym_identifier] = ACTIONS(4389), + [anon_sym_export] = ACTIONS(4389), + [anon_sym_type] = ACTIONS(4389), + [anon_sym_namespace] = ACTIONS(4389), + [anon_sym_LBRACE] = ACTIONS(4389), + [anon_sym_typeof] = ACTIONS(4389), + [anon_sym_import] = ACTIONS(4389), + [anon_sym_from] = ACTIONS(4389), + [anon_sym_let] = ACTIONS(4389), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_LPAREN] = ACTIONS(4389), + [anon_sym_await] = ACTIONS(4389), + [anon_sym_of] = ACTIONS(4389), + [anon_sym_yield] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [anon_sym_LTtemplate_GT] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4389), + [anon_sym_class] = ACTIONS(4389), + [anon_sym_async] = ACTIONS(4389), + [anon_sym_function] = ACTIONS(4389), + [anon_sym_new] = ACTIONS(4389), + [anon_sym_using] = ACTIONS(4389), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_SLASH] = ACTIONS(4389), + [anon_sym_LT] = ACTIONS(4389), + [anon_sym_TILDE] = ACTIONS(4389), + [anon_sym_void] = ACTIONS(4389), + [anon_sym_delete] = ACTIONS(4389), + [anon_sym_PLUS_PLUS] = ACTIONS(4389), + [anon_sym_DASH_DASH] = ACTIONS(4389), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4389), + [sym_number] = ACTIONS(4389), + [sym_private_property_identifier] = ACTIONS(4389), + [sym_this] = ACTIONS(4389), + [sym_super] = ACTIONS(4389), + [sym_true] = ACTIONS(4389), + [sym_false] = ACTIONS(4389), + [sym_null] = ACTIONS(4389), + [sym_undefined] = ACTIONS(4389), + [anon_sym_AT] = ACTIONS(4389), + [anon_sym_static] = ACTIONS(4389), + [anon_sym_readonly] = ACTIONS(4389), + [anon_sym_get] = ACTIONS(4389), + [anon_sym_set] = ACTIONS(4389), + [anon_sym_declare] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_override] = ACTIONS(4389), + [anon_sym_module] = ACTIONS(4389), + [anon_sym_any] = ACTIONS(4389), + [anon_sym_number] = ACTIONS(4389), + [anon_sym_boolean] = ACTIONS(4389), + [anon_sym_string] = ACTIONS(4389), + [anon_sym_symbol] = ACTIONS(4389), + [anon_sym_object] = ACTIONS(4389), + [anon_sym_property] = ACTIONS(4389), + [anon_sym_signal] = ACTIONS(4389), + [anon_sym_on] = ACTIONS(4389), + [anon_sym_required] = ACTIONS(4389), + [anon_sym_component] = ACTIONS(4389), + [sym_html_comment] = ACTIONS(5), + }, + [2183] = { + [sym_nested_identifier] = STATE(342), + [sym_string] = STATE(344), + [sym_comment] = STATE(2183), + [sym__module] = STATE(362), + [sym_identifier] = ACTIONS(4391), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4395), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2184] = { + [sym_comment] = STATE(2184), + [sym_identifier] = ACTIONS(4397), + [anon_sym_export] = ACTIONS(4397), + [anon_sym_type] = ACTIONS(4397), + [anon_sym_namespace] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_typeof] = ACTIONS(4397), + [anon_sym_import] = ACTIONS(4397), + [anon_sym_from] = ACTIONS(4397), + [anon_sym_let] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_await] = ACTIONS(4397), + [anon_sym_of] = ACTIONS(4397), + [anon_sym_yield] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [anon_sym_LTtemplate_GT] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_class] = ACTIONS(4397), + [anon_sym_async] = ACTIONS(4397), + [anon_sym_function] = ACTIONS(4397), + [anon_sym_new] = ACTIONS(4397), + [anon_sym_using] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_void] = ACTIONS(4397), + [anon_sym_delete] = ACTIONS(4397), + [anon_sym_PLUS_PLUS] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4397), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4397), + [sym_number] = ACTIONS(4397), + [sym_private_property_identifier] = ACTIONS(4397), + [sym_this] = ACTIONS(4397), + [sym_super] = ACTIONS(4397), + [sym_true] = ACTIONS(4397), + [sym_false] = ACTIONS(4397), + [sym_null] = ACTIONS(4397), + [sym_undefined] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4397), + [anon_sym_static] = ACTIONS(4397), + [anon_sym_readonly] = ACTIONS(4397), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_declare] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_module] = ACTIONS(4397), + [anon_sym_any] = ACTIONS(4397), + [anon_sym_number] = ACTIONS(4397), + [anon_sym_boolean] = ACTIONS(4397), + [anon_sym_string] = ACTIONS(4397), + [anon_sym_symbol] = ACTIONS(4397), + [anon_sym_object] = ACTIONS(4397), + [anon_sym_property] = ACTIONS(4397), + [anon_sym_signal] = ACTIONS(4397), + [anon_sym_on] = ACTIONS(4397), + [anon_sym_required] = ACTIONS(4397), + [anon_sym_component] = ACTIONS(4397), + [sym_html_comment] = ACTIONS(5), + }, + [2185] = { + [sym_comment] = STATE(2185), + [sym_identifier] = ACTIONS(4399), + [anon_sym_export] = ACTIONS(4399), + [anon_sym_type] = ACTIONS(4399), + [anon_sym_namespace] = ACTIONS(4399), + [anon_sym_LBRACE] = ACTIONS(4399), + [anon_sym_typeof] = ACTIONS(4399), + [anon_sym_import] = ACTIONS(4399), + [anon_sym_from] = ACTIONS(4399), + [anon_sym_let] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_await] = ACTIONS(4399), + [anon_sym_of] = ACTIONS(4399), + [anon_sym_yield] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_LTtemplate_GT] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4399), + [anon_sym_class] = ACTIONS(4399), + [anon_sym_async] = ACTIONS(4399), + [anon_sym_function] = ACTIONS(4399), + [anon_sym_new] = ACTIONS(4399), + [anon_sym_using] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_void] = ACTIONS(4399), + [anon_sym_delete] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4399), + [sym_number] = ACTIONS(4399), + [sym_private_property_identifier] = ACTIONS(4399), + [sym_this] = ACTIONS(4399), + [sym_super] = ACTIONS(4399), + [sym_true] = ACTIONS(4399), + [sym_false] = ACTIONS(4399), + [sym_null] = ACTIONS(4399), + [sym_undefined] = ACTIONS(4399), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_static] = ACTIONS(4399), + [anon_sym_readonly] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4399), + [anon_sym_declare] = ACTIONS(4399), + [anon_sym_public] = ACTIONS(4399), + [anon_sym_private] = ACTIONS(4399), + [anon_sym_protected] = ACTIONS(4399), + [anon_sym_override] = ACTIONS(4399), + [anon_sym_module] = ACTIONS(4399), + [anon_sym_any] = ACTIONS(4399), + [anon_sym_number] = ACTIONS(4399), + [anon_sym_boolean] = ACTIONS(4399), + [anon_sym_string] = ACTIONS(4399), + [anon_sym_symbol] = ACTIONS(4399), + [anon_sym_object] = ACTIONS(4399), + [anon_sym_property] = ACTIONS(4399), + [anon_sym_signal] = ACTIONS(4399), + [anon_sym_on] = ACTIONS(4399), + [anon_sym_required] = ACTIONS(4399), + [anon_sym_component] = ACTIONS(4399), + [sym_html_comment] = ACTIONS(5), + }, + [2186] = { + [sym_nested_identifier] = STATE(1833), + [sym_string] = STATE(1838), + [sym_comment] = STATE(2186), + [sym__module] = STATE(1889), + [sym_identifier] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4403), + [anon_sym_SQUOTE] = ACTIONS(4405), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2187] = { + [sym_comment] = STATE(2187), + [sym_identifier] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4407), + [anon_sym_type] = ACTIONS(4407), + [anon_sym_namespace] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_typeof] = ACTIONS(4407), + [anon_sym_import] = ACTIONS(4407), + [anon_sym_from] = ACTIONS(4407), + [anon_sym_let] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_await] = ACTIONS(4407), + [anon_sym_of] = ACTIONS(4407), + [anon_sym_yield] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4407), + [anon_sym_LTtemplate_GT] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_class] = ACTIONS(4407), + [anon_sym_async] = ACTIONS(4407), + [anon_sym_function] = ACTIONS(4407), + [anon_sym_new] = ACTIONS(4407), + [anon_sym_using] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_void] = ACTIONS(4407), + [anon_sym_delete] = ACTIONS(4407), + [anon_sym_PLUS_PLUS] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4407), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4407), + [sym_number] = ACTIONS(4407), + [sym_private_property_identifier] = ACTIONS(4407), + [sym_this] = ACTIONS(4407), + [sym_super] = ACTIONS(4407), + [sym_true] = ACTIONS(4407), + [sym_false] = ACTIONS(4407), + [sym_null] = ACTIONS(4407), + [sym_undefined] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4407), + [anon_sym_static] = ACTIONS(4407), + [anon_sym_readonly] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_declare] = ACTIONS(4407), + [anon_sym_public] = ACTIONS(4407), + [anon_sym_private] = ACTIONS(4407), + [anon_sym_protected] = ACTIONS(4407), + [anon_sym_override] = ACTIONS(4407), + [anon_sym_module] = ACTIONS(4407), + [anon_sym_any] = ACTIONS(4407), + [anon_sym_number] = ACTIONS(4407), + [anon_sym_boolean] = ACTIONS(4407), + [anon_sym_string] = ACTIONS(4407), + [anon_sym_symbol] = ACTIONS(4407), + [anon_sym_object] = ACTIONS(4407), + [anon_sym_property] = ACTIONS(4407), + [anon_sym_signal] = ACTIONS(4407), + [anon_sym_on] = ACTIONS(4407), + [anon_sym_required] = ACTIONS(4407), + [anon_sym_component] = ACTIONS(4407), + [sym_html_comment] = ACTIONS(5), + }, + [2188] = { + [sym_comment] = STATE(2188), + [sym_identifier] = ACTIONS(4325), + [anon_sym_export] = ACTIONS(4325), + [anon_sym_type] = ACTIONS(4325), + [anon_sym_namespace] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(4325), + [anon_sym_typeof] = ACTIONS(4325), + [anon_sym_import] = ACTIONS(4325), + [anon_sym_from] = ACTIONS(4325), + [anon_sym_let] = ACTIONS(4325), + [anon_sym_BANG] = ACTIONS(4325), + [anon_sym_LPAREN] = ACTIONS(4325), + [anon_sym_await] = ACTIONS(4325), + [anon_sym_of] = ACTIONS(4325), + [anon_sym_yield] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_LTtemplate_GT] = ACTIONS(4325), + [anon_sym_DQUOTE] = ACTIONS(4325), + [anon_sym_SQUOTE] = ACTIONS(4325), + [anon_sym_class] = ACTIONS(4325), + [anon_sym_async] = ACTIONS(4325), + [anon_sym_function] = ACTIONS(4325), + [anon_sym_new] = ACTIONS(4325), + [anon_sym_using] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_TILDE] = ACTIONS(4325), + [anon_sym_void] = ACTIONS(4325), + [anon_sym_delete] = ACTIONS(4325), + [anon_sym_PLUS_PLUS] = ACTIONS(4325), + [anon_sym_DASH_DASH] = ACTIONS(4325), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4325), + [sym_number] = ACTIONS(4325), + [sym_private_property_identifier] = ACTIONS(4325), + [sym_this] = ACTIONS(4325), + [sym_super] = ACTIONS(4325), + [sym_true] = ACTIONS(4325), + [sym_false] = ACTIONS(4325), + [sym_null] = ACTIONS(4325), + [sym_undefined] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4325), + [anon_sym_static] = ACTIONS(4325), + [anon_sym_readonly] = ACTIONS(4325), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_declare] = ACTIONS(4325), + [anon_sym_public] = ACTIONS(4325), + [anon_sym_private] = ACTIONS(4325), + [anon_sym_protected] = ACTIONS(4325), + [anon_sym_override] = ACTIONS(4325), + [anon_sym_module] = ACTIONS(4325), + [anon_sym_any] = ACTIONS(4325), + [anon_sym_number] = ACTIONS(4325), + [anon_sym_boolean] = ACTIONS(4325), + [anon_sym_string] = ACTIONS(4325), + [anon_sym_symbol] = ACTIONS(4325), + [anon_sym_object] = ACTIONS(4325), + [anon_sym_property] = ACTIONS(4325), + [anon_sym_signal] = ACTIONS(4325), + [anon_sym_on] = ACTIONS(4325), + [anon_sym_required] = ACTIONS(4325), + [anon_sym_component] = ACTIONS(4325), + [sym_html_comment] = ACTIONS(5), + }, + [2189] = { + [sym_comment] = STATE(2189), + [sym_identifier] = ACTIONS(4397), + [anon_sym_export] = ACTIONS(4397), + [anon_sym_type] = ACTIONS(4397), + [anon_sym_namespace] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4397), + [anon_sym_typeof] = ACTIONS(4397), + [anon_sym_import] = ACTIONS(4397), + [anon_sym_from] = ACTIONS(4397), + [anon_sym_let] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4397), + [anon_sym_LPAREN] = ACTIONS(4397), + [anon_sym_await] = ACTIONS(4397), + [anon_sym_of] = ACTIONS(4397), + [anon_sym_yield] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [anon_sym_LTtemplate_GT] = ACTIONS(4397), + [anon_sym_DQUOTE] = ACTIONS(4397), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_class] = ACTIONS(4397), + [anon_sym_async] = ACTIONS(4397), + [anon_sym_function] = ACTIONS(4397), + [anon_sym_new] = ACTIONS(4397), + [anon_sym_using] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_SLASH] = ACTIONS(4397), + [anon_sym_LT] = ACTIONS(4397), + [anon_sym_TILDE] = ACTIONS(4397), + [anon_sym_void] = ACTIONS(4397), + [anon_sym_delete] = ACTIONS(4397), + [anon_sym_PLUS_PLUS] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4397), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4397), + [sym_number] = ACTIONS(4397), + [sym_private_property_identifier] = ACTIONS(4397), + [sym_this] = ACTIONS(4397), + [sym_super] = ACTIONS(4397), + [sym_true] = ACTIONS(4397), + [sym_false] = ACTIONS(4397), + [sym_null] = ACTIONS(4397), + [sym_undefined] = ACTIONS(4397), + [anon_sym_AT] = ACTIONS(4397), + [anon_sym_static] = ACTIONS(4397), + [anon_sym_readonly] = ACTIONS(4397), + [anon_sym_get] = ACTIONS(4397), + [anon_sym_set] = ACTIONS(4397), + [anon_sym_declare] = ACTIONS(4397), + [anon_sym_public] = ACTIONS(4397), + [anon_sym_private] = ACTIONS(4397), + [anon_sym_protected] = ACTIONS(4397), + [anon_sym_override] = ACTIONS(4397), + [anon_sym_module] = ACTIONS(4397), + [anon_sym_any] = ACTIONS(4397), + [anon_sym_number] = ACTIONS(4397), + [anon_sym_boolean] = ACTIONS(4397), + [anon_sym_string] = ACTIONS(4397), + [anon_sym_symbol] = ACTIONS(4397), + [anon_sym_object] = ACTIONS(4397), + [anon_sym_property] = ACTIONS(4397), + [anon_sym_signal] = ACTIONS(4397), + [anon_sym_on] = ACTIONS(4397), + [anon_sym_required] = ACTIONS(4397), + [anon_sym_component] = ACTIONS(4397), + [sym_html_comment] = ACTIONS(5), + }, + [2190] = { + [sym_variable_declarator] = STATE(6449), + [sym_object_pattern] = STATE(5228), + [sym_array_pattern] = STATE(5228), + [sym__destructuring_pattern] = STATE(5246), + [sym_comment] = STATE(2190), + [sym_identifier] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4265), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2191] = { + [sym_nested_identifier] = STATE(2951), + [sym_string] = STATE(2952), + [sym_comment] = STATE(2191), + [sym__module] = STATE(2972), + [sym_ui_object_initializer] = STATE(7050), + [sym_identifier] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(3278), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2192] = { + [sym_export_statement] = STATE(5526), + [sym__call_signature] = STATE(5733), + [sym_string] = STATE(4876), + [sym_comment] = STATE(2192), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym__property_name] = STATE(4798), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5526), + [sym_accessibility_modifier] = STATE(3754), + [sym_override_modifier] = STATE(3860), + [sym_call_signature] = STATE(5526), + [sym_property_signature] = STATE(5526), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5526), + [sym_index_signature] = STATE(5526), + [aux_sym_export_statement_repeat1] = STATE(6305), + [sym_identifier] = ACTIONS(4409), + [anon_sym_export] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_namespace] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4415), + [anon_sym_RBRACE] = ACTIONS(4417), + [anon_sym_from] = ACTIONS(4409), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4415), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(4421), + [anon_sym_new] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_readonly] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4429), + [anon_sym_declare] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4431), + [anon_sym_private] = ACTIONS(4431), + [anon_sym_protected] = ACTIONS(4431), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_module] = ACTIONS(4409), + [anon_sym_any] = ACTIONS(4409), + [anon_sym_number] = ACTIONS(4409), + [anon_sym_boolean] = ACTIONS(4409), + [anon_sym_string] = ACTIONS(4409), + [anon_sym_symbol] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_property] = ACTIONS(4409), + [anon_sym_signal] = ACTIONS(4409), + [anon_sym_on] = ACTIONS(4409), + [anon_sym_required] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(4417), + [sym_html_comment] = ACTIONS(5), + }, + [2193] = { + [sym_export_statement] = STATE(5559), + [sym__call_signature] = STATE(5733), + [sym_string] = STATE(4876), + [sym_comment] = STATE(2193), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym__property_name] = STATE(4798), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5559), + [sym_accessibility_modifier] = STATE(3754), + [sym_override_modifier] = STATE(3860), + [sym_call_signature] = STATE(5559), + [sym_property_signature] = STATE(5559), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5559), + [sym_index_signature] = STATE(5559), + [aux_sym_export_statement_repeat1] = STATE(6305), + [sym_identifier] = ACTIONS(4409), + [anon_sym_export] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_namespace] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4435), + [anon_sym_RBRACE] = ACTIONS(4437), + [anon_sym_from] = ACTIONS(4409), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4435), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(4421), + [anon_sym_new] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_readonly] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4429), + [anon_sym_declare] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4431), + [anon_sym_private] = ACTIONS(4431), + [anon_sym_protected] = ACTIONS(4431), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_module] = ACTIONS(4409), + [anon_sym_any] = ACTIONS(4409), + [anon_sym_number] = ACTIONS(4409), + [anon_sym_boolean] = ACTIONS(4409), + [anon_sym_string] = ACTIONS(4409), + [anon_sym_symbol] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_property] = ACTIONS(4409), + [anon_sym_signal] = ACTIONS(4409), + [anon_sym_on] = ACTIONS(4409), + [anon_sym_required] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(4437), + [sym_html_comment] = ACTIONS(5), + }, + [2194] = { + [sym_nested_identifier] = STATE(2951), + [sym_string] = STATE(2952), + [sym_comment] = STATE(2194), + [sym__module] = STATE(2972), + [sym_identifier] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_implements] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2195] = { + [sym_export_statement] = STATE(5719), + [sym__call_signature] = STATE(5733), + [sym_string] = STATE(4876), + [sym_comment] = STATE(2195), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym__property_name] = STATE(4798), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5719), + [sym_accessibility_modifier] = STATE(3754), + [sym_override_modifier] = STATE(3860), + [sym_call_signature] = STATE(5719), + [sym_property_signature] = STATE(5719), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5719), + [sym_index_signature] = STATE(5719), + [aux_sym_export_statement_repeat1] = STATE(6305), + [sym_identifier] = ACTIONS(4409), + [anon_sym_export] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_namespace] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4439), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_from] = ACTIONS(4409), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(4421), + [anon_sym_new] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_readonly] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4429), + [anon_sym_declare] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4431), + [anon_sym_private] = ACTIONS(4431), + [anon_sym_protected] = ACTIONS(4431), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_module] = ACTIONS(4409), + [anon_sym_any] = ACTIONS(4409), + [anon_sym_number] = ACTIONS(4409), + [anon_sym_boolean] = ACTIONS(4409), + [anon_sym_string] = ACTIONS(4409), + [anon_sym_symbol] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_property] = ACTIONS(4409), + [anon_sym_signal] = ACTIONS(4409), + [anon_sym_on] = ACTIONS(4409), + [anon_sym_required] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(4441), + [sym_html_comment] = ACTIONS(5), + }, + [2196] = { + [sym_nested_identifier] = STATE(2951), + [sym_string] = STATE(2952), + [sym_comment] = STATE(2196), + [sym__module] = STATE(2972), + [sym_identifier] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_implements] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2197] = { + [sym_comment] = STATE(2197), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1168), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2198] = { + [sym_export_statement] = STATE(5574), + [sym__call_signature] = STATE(5733), + [sym_string] = STATE(4876), + [sym_comment] = STATE(2198), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym__property_name] = STATE(4798), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5574), + [sym_accessibility_modifier] = STATE(3754), + [sym_override_modifier] = STATE(3860), + [sym_call_signature] = STATE(5574), + [sym_property_signature] = STATE(5574), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5574), + [sym_index_signature] = STATE(5574), + [aux_sym_export_statement_repeat1] = STATE(6305), + [sym_identifier] = ACTIONS(4409), + [anon_sym_export] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_namespace] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4447), + [anon_sym_from] = ACTIONS(4409), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(4421), + [anon_sym_new] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_readonly] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4429), + [anon_sym_declare] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4431), + [anon_sym_private] = ACTIONS(4431), + [anon_sym_protected] = ACTIONS(4431), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_module] = ACTIONS(4409), + [anon_sym_any] = ACTIONS(4409), + [anon_sym_number] = ACTIONS(4409), + [anon_sym_boolean] = ACTIONS(4409), + [anon_sym_string] = ACTIONS(4409), + [anon_sym_symbol] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_property] = ACTIONS(4409), + [anon_sym_signal] = ACTIONS(4409), + [anon_sym_on] = ACTIONS(4409), + [anon_sym_required] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(4447), + [sym_html_comment] = ACTIONS(5), + }, + [2199] = { + [sym_export_statement] = STATE(5723), + [sym__call_signature] = STATE(5733), + [sym_string] = STATE(4876), + [sym_comment] = STATE(2199), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym__property_name] = STATE(4798), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5723), + [sym_accessibility_modifier] = STATE(3754), + [sym_override_modifier] = STATE(3860), + [sym_call_signature] = STATE(5723), + [sym_property_signature] = STATE(5723), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5723), + [sym_index_signature] = STATE(5723), + [aux_sym_export_statement_repeat1] = STATE(6305), + [sym_identifier] = ACTIONS(4409), + [anon_sym_export] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_namespace] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_RBRACE] = ACTIONS(4451), + [anon_sym_from] = ACTIONS(4409), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(4421), + [anon_sym_new] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_readonly] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4429), + [anon_sym_declare] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4431), + [anon_sym_private] = ACTIONS(4431), + [anon_sym_protected] = ACTIONS(4431), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_module] = ACTIONS(4409), + [anon_sym_any] = ACTIONS(4409), + [anon_sym_number] = ACTIONS(4409), + [anon_sym_boolean] = ACTIONS(4409), + [anon_sym_string] = ACTIONS(4409), + [anon_sym_symbol] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_property] = ACTIONS(4409), + [anon_sym_signal] = ACTIONS(4409), + [anon_sym_on] = ACTIONS(4409), + [anon_sym_required] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(4451), + [sym_html_comment] = ACTIONS(5), + }, + [2200] = { + [sym_nested_identifier] = STATE(2951), + [sym_string] = STATE(2952), + [sym_comment] = STATE(2200), + [sym__module] = STATE(2972), + [sym_identifier] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1418), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2201] = { + [sym_export_statement] = STATE(5512), + [sym__call_signature] = STATE(5733), + [sym_string] = STATE(4876), + [sym_comment] = STATE(2201), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym__property_name] = STATE(4798), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5512), + [sym_accessibility_modifier] = STATE(3754), + [sym_override_modifier] = STATE(3860), + [sym_call_signature] = STATE(5512), + [sym_property_signature] = STATE(5512), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5512), + [sym_index_signature] = STATE(5512), + [aux_sym_export_statement_repeat1] = STATE(6305), + [sym_identifier] = ACTIONS(4409), + [anon_sym_export] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_namespace] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4455), + [anon_sym_from] = ACTIONS(4409), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(4421), + [anon_sym_new] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_readonly] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4429), + [anon_sym_declare] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4431), + [anon_sym_private] = ACTIONS(4431), + [anon_sym_protected] = ACTIONS(4431), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_module] = ACTIONS(4409), + [anon_sym_any] = ACTIONS(4409), + [anon_sym_number] = ACTIONS(4409), + [anon_sym_boolean] = ACTIONS(4409), + [anon_sym_string] = ACTIONS(4409), + [anon_sym_symbol] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_property] = ACTIONS(4409), + [anon_sym_signal] = ACTIONS(4409), + [anon_sym_on] = ACTIONS(4409), + [anon_sym_required] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(4455), + [sym_html_comment] = ACTIONS(5), + }, + [2202] = { + [sym_export_statement] = STATE(5608), + [sym__call_signature] = STATE(5733), + [sym_string] = STATE(4876), + [sym_comment] = STATE(2202), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym__property_name] = STATE(4798), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5608), + [sym_accessibility_modifier] = STATE(3754), + [sym_override_modifier] = STATE(3860), + [sym_call_signature] = STATE(5608), + [sym_property_signature] = STATE(5608), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5608), + [sym_index_signature] = STATE(5608), + [aux_sym_export_statement_repeat1] = STATE(6305), + [sym_identifier] = ACTIONS(4409), + [anon_sym_export] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_namespace] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4459), + [anon_sym_from] = ACTIONS(4409), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(4421), + [anon_sym_new] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_readonly] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4429), + [anon_sym_declare] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4431), + [anon_sym_private] = ACTIONS(4431), + [anon_sym_protected] = ACTIONS(4431), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_module] = ACTIONS(4409), + [anon_sym_any] = ACTIONS(4409), + [anon_sym_number] = ACTIONS(4409), + [anon_sym_boolean] = ACTIONS(4409), + [anon_sym_string] = ACTIONS(4409), + [anon_sym_symbol] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_property] = ACTIONS(4409), + [anon_sym_signal] = ACTIONS(4409), + [anon_sym_on] = ACTIONS(4409), + [anon_sym_required] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(4459), + [sym_html_comment] = ACTIONS(5), + }, + [2203] = { + [sym_export_statement] = STATE(5567), + [sym__call_signature] = STATE(5733), + [sym_string] = STATE(4876), + [sym_comment] = STATE(2203), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym__property_name] = STATE(4798), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5567), + [sym_accessibility_modifier] = STATE(3754), + [sym_override_modifier] = STATE(3860), + [sym_call_signature] = STATE(5567), + [sym_property_signature] = STATE(5567), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5567), + [sym_index_signature] = STATE(5567), + [aux_sym_export_statement_repeat1] = STATE(6305), + [sym_identifier] = ACTIONS(4409), + [anon_sym_export] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_namespace] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4461), + [anon_sym_RBRACE] = ACTIONS(4463), + [anon_sym_from] = ACTIONS(4409), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4461), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(4421), + [anon_sym_new] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_readonly] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4429), + [anon_sym_declare] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4431), + [anon_sym_private] = ACTIONS(4431), + [anon_sym_protected] = ACTIONS(4431), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_module] = ACTIONS(4409), + [anon_sym_any] = ACTIONS(4409), + [anon_sym_number] = ACTIONS(4409), + [anon_sym_boolean] = ACTIONS(4409), + [anon_sym_string] = ACTIONS(4409), + [anon_sym_symbol] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_property] = ACTIONS(4409), + [anon_sym_signal] = ACTIONS(4409), + [anon_sym_on] = ACTIONS(4409), + [anon_sym_required] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(4463), + [sym_html_comment] = ACTIONS(5), + }, + [2204] = { + [sym_comment] = STATE(2204), + [aux_sym_object_repeat1] = STATE(6742), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2205] = { + [sym_export_statement] = STATE(5530), + [sym__call_signature] = STATE(5733), + [sym_string] = STATE(4876), + [sym_comment] = STATE(2205), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym__property_name] = STATE(4798), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5530), + [sym_accessibility_modifier] = STATE(3754), + [sym_override_modifier] = STATE(3860), + [sym_call_signature] = STATE(5530), + [sym_property_signature] = STATE(5530), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5530), + [sym_index_signature] = STATE(5530), + [aux_sym_export_statement_repeat1] = STATE(6305), + [sym_identifier] = ACTIONS(4409), + [anon_sym_export] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_namespace] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(3858), + [anon_sym_RBRACE] = ACTIONS(3874), + [anon_sym_from] = ACTIONS(4409), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(4421), + [anon_sym_new] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_readonly] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4429), + [anon_sym_declare] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4431), + [anon_sym_private] = ACTIONS(4431), + [anon_sym_protected] = ACTIONS(4431), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_module] = ACTIONS(4409), + [anon_sym_any] = ACTIONS(4409), + [anon_sym_number] = ACTIONS(4409), + [anon_sym_boolean] = ACTIONS(4409), + [anon_sym_string] = ACTIONS(4409), + [anon_sym_symbol] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_property] = ACTIONS(4409), + [anon_sym_signal] = ACTIONS(4409), + [anon_sym_on] = ACTIONS(4409), + [anon_sym_required] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3874), + [sym_html_comment] = ACTIONS(5), + }, + [2206] = { + [sym_comment] = STATE(2206), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2207] = { + [sym_comment] = STATE(2207), + [aux_sym_object_repeat1] = STATE(7100), + [aux_sym_object_pattern_repeat1] = STATE(7162), + [sym_identifier] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1162), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1263), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1181), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1189), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2208] = { + [sym_export_statement] = STATE(5714), + [sym__call_signature] = STATE(5733), + [sym_string] = STATE(4876), + [sym_comment] = STATE(2208), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym__property_name] = STATE(4798), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5714), + [sym_accessibility_modifier] = STATE(3754), + [sym_override_modifier] = STATE(3860), + [sym_call_signature] = STATE(5714), + [sym_property_signature] = STATE(5714), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5714), + [sym_index_signature] = STATE(5714), + [aux_sym_export_statement_repeat1] = STATE(6305), + [sym_identifier] = ACTIONS(4409), + [anon_sym_export] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_namespace] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_RBRACE] = ACTIONS(4467), + [anon_sym_from] = ACTIONS(4409), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(4421), + [anon_sym_new] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_readonly] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4429), + [anon_sym_declare] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4431), + [anon_sym_private] = ACTIONS(4431), + [anon_sym_protected] = ACTIONS(4431), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_module] = ACTIONS(4409), + [anon_sym_any] = ACTIONS(4409), + [anon_sym_number] = ACTIONS(4409), + [anon_sym_boolean] = ACTIONS(4409), + [anon_sym_string] = ACTIONS(4409), + [anon_sym_symbol] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_property] = ACTIONS(4409), + [anon_sym_signal] = ACTIONS(4409), + [anon_sym_on] = ACTIONS(4409), + [anon_sym_required] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(4467), + [sym_html_comment] = ACTIONS(5), + }, + [2209] = { + [sym_export_statement] = STATE(5726), + [sym__call_signature] = STATE(5733), + [sym_string] = STATE(4876), + [sym_comment] = STATE(2209), + [sym_decorator] = STATE(6520), + [sym_formal_parameters] = STATE(4941), + [sym__property_name] = STATE(4798), + [sym_computed_property_name] = STATE(4876), + [sym_method_signature] = STATE(5726), + [sym_accessibility_modifier] = STATE(3754), + [sym_override_modifier] = STATE(3860), + [sym_call_signature] = STATE(5726), + [sym_property_signature] = STATE(5726), + [sym_type_parameters] = STATE(7440), + [sym_construct_signature] = STATE(5726), + [sym_index_signature] = STATE(5726), + [aux_sym_export_statement_repeat1] = STATE(6305), + [sym_identifier] = ACTIONS(4409), + [anon_sym_export] = ACTIONS(4411), + [anon_sym_STAR] = ACTIONS(4413), + [anon_sym_type] = ACTIONS(4409), + [anon_sym_namespace] = ACTIONS(4409), + [anon_sym_COMMA] = ACTIONS(3752), + [anon_sym_RBRACE] = ACTIONS(3776), + [anon_sym_from] = ACTIONS(4409), + [anon_sym_let] = ACTIONS(4409), + [anon_sym_LPAREN] = ACTIONS(3750), + [anon_sym_of] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(4421), + [anon_sym_new] = ACTIONS(4423), + [anon_sym_PLUS] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3760), + [anon_sym_LT] = ACTIONS(2257), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3762), + [sym_private_property_identifier] = ACTIONS(3762), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4425), + [anon_sym_readonly] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4429), + [anon_sym_declare] = ACTIONS(4409), + [anon_sym_public] = ACTIONS(4431), + [anon_sym_private] = ACTIONS(4431), + [anon_sym_protected] = ACTIONS(4431), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_module] = ACTIONS(4409), + [anon_sym_any] = ACTIONS(4409), + [anon_sym_number] = ACTIONS(4409), + [anon_sym_boolean] = ACTIONS(4409), + [anon_sym_string] = ACTIONS(4409), + [anon_sym_symbol] = ACTIONS(4409), + [anon_sym_object] = ACTIONS(4409), + [anon_sym_property] = ACTIONS(4409), + [anon_sym_signal] = ACTIONS(4409), + [anon_sym_on] = ACTIONS(4409), + [anon_sym_required] = ACTIONS(4409), + [anon_sym_component] = ACTIONS(4409), + [anon_sym_abstract] = ACTIONS(3774), + [anon_sym_PIPE_RBRACE] = ACTIONS(3776), + [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 13, + [0] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1189), 1, + anon_sym_QMARK, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3005), 1, + anon_sym_RBRACE, + ACTIONS(4471), 1, + anon_sym_EQ, + ACTIONS(4475), 1, + anon_sym_LPAREN, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_LT, + STATE(2210), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [95] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4263), 1, + sym_identifier, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + STATE(2211), 1, + sym_comment, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6347), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [188] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2212), 1, + sym_comment, + ACTIONS(4485), 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(4487), 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, + [263] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1162), 1, + anon_sym_EQ, + ACTIONS(1189), 1, + anon_sym_QMARK, + ACTIONS(2936), 1, + anon_sym_LT, + ACTIONS(2961), 1, + anon_sym_RBRACE, + ACTIONS(2971), 1, + anon_sym_LPAREN, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2213), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [358] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4263), 1, + sym_identifier, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + STATE(2214), 1, + sym_comment, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6449), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [451] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4263), 1, + sym_identifier, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + STATE(2215), 1, + sym_comment, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6371), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [544] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2216), 1, + sym_comment, + ACTIONS(4489), 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(4491), 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, + [619] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4359), 1, + sym_identifier, + ACTIONS(4361), 1, + anon_sym_DQUOTE, + ACTIONS(4363), 1, + anon_sym_SQUOTE, + STATE(1151), 1, + sym_nested_identifier, + STATE(1286), 1, + sym_string, + STATE(1545), 1, + sym__module, + STATE(2217), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [712] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4263), 1, + sym_identifier, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + STATE(2218), 1, + sym_comment, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6433), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [805] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(34), 1, + anon_sym_RBRACK, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(131), 1, + anon_sym_COMMA, + ACTIONS(1418), 1, + anon_sym_EQ, + ACTIONS(1427), 1, + anon_sym_EQ_GT, + ACTIONS(4311), 1, + sym_identifier, + STATE(2219), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [902] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4497), 1, + anon_sym_LPAREN, + ACTIONS(4499), 1, + anon_sym_DOT, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + ACTIONS(4503), 1, + anon_sym_QMARK_DOT, + ACTIONS(4507), 1, + anon_sym_LT, + STATE(2220), 1, + sym_comment, + STATE(4772), 1, + sym_arguments, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4505), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4495), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [999] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4251), 1, + sym_identifier, + ACTIONS(4253), 1, + anon_sym_DQUOTE, + ACTIONS(4255), 1, + anon_sym_SQUOTE, + STATE(1433), 1, + sym_nested_identifier, + STATE(1554), 1, + sym_string, + STATE(1809), 1, + sym__module, + STATE(2221), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1092] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4353), 1, + sym_identifier, + ACTIONS(4355), 1, + anon_sym_DQUOTE, + ACTIONS(4357), 1, + anon_sym_SQUOTE, + STATE(2222), 1, + sym_comment, + STATE(3954), 1, + sym_nested_identifier, + STATE(3990), 1, + sym_string, + STATE(4245), 1, + sym__module, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1185] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4263), 1, + sym_identifier, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + STATE(2223), 1, + sym_comment, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6330), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1278] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4383), 1, + sym_identifier, + ACTIONS(4385), 1, + anon_sym_DQUOTE, + ACTIONS(4387), 1, + anon_sym_SQUOTE, + STATE(1042), 1, + sym_nested_identifier, + STATE(1144), 1, + sym_string, + STATE(1297), 1, + sym__module, + STATE(2224), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1371] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(197), 1, + anon_sym_DQUOTE, + ACTIONS(199), 1, + anon_sym_SQUOTE, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4321), 1, + sym_identifier, + STATE(2225), 1, + sym_comment, + STATE(2746), 1, + sym_nested_identifier, + STATE(2747), 1, + sym_string, + STATE(2971), 1, + sym__module, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1464] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1162), 1, + anon_sym_EQ, + ACTIONS(1189), 1, + anon_sym_QMARK, + ACTIONS(2936), 1, + anon_sym_LT, + ACTIONS(2971), 1, + anon_sym_LPAREN, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3003), 1, + anon_sym_RBRACE, + STATE(2226), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [1559] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4333), 1, + sym_identifier, + ACTIONS(4335), 1, + anon_sym_DQUOTE, + ACTIONS(4337), 1, + anon_sym_SQUOTE, + STATE(392), 1, + sym_string, + STATE(408), 1, + sym_nested_identifier, + STATE(445), 1, + sym__module, + STATE(2227), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1652] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4263), 1, + sym_identifier, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + STATE(2228), 1, + sym_comment, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6401), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1745] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4391), 1, + sym_identifier, + ACTIONS(4393), 1, + anon_sym_DQUOTE, + ACTIONS(4395), 1, + anon_sym_SQUOTE, + STATE(342), 1, + sym_nested_identifier, + STATE(344), 1, + sym_string, + STATE(362), 1, + sym__module, + STATE(2229), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1838] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(4371), 1, + sym_identifier, + STATE(2230), 1, + sym_comment, + STATE(6024), 1, + sym_nested_identifier, + STATE(6566), 1, + sym_string, + STATE(7424), 1, + sym__module, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1931] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4401), 1, + sym_identifier, + ACTIONS(4403), 1, + anon_sym_DQUOTE, + ACTIONS(4405), 1, + anon_sym_SQUOTE, + STATE(1833), 1, + sym_nested_identifier, + STATE(1838), 1, + sym_string, + STATE(1889), 1, + sym__module, + STATE(2231), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2024] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(1423), 1, + anon_sym_COLON, + ACTIONS(1427), 1, + anon_sym_EQ_GT, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(4311), 1, + sym_identifier, + STATE(2232), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2119] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1189), 1, + anon_sym_QMARK, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3003), 1, + anon_sym_RBRACE, + ACTIONS(4471), 1, + anon_sym_EQ, + ACTIONS(4475), 1, + anon_sym_LPAREN, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_LT, + STATE(2233), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [2214] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2234), 1, + sym_comment, + ACTIONS(4509), 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(4511), 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, + [2289] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4263), 1, + sym_identifier, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + STATE(2235), 1, + sym_comment, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6390), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2382] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_DQUOTE, + ACTIONS(4331), 1, + anon_sym_SQUOTE, + STATE(994), 1, + sym_nested_identifier, + STATE(1036), 1, + sym_string, + STATE(1093), 1, + sym__module, + STATE(2236), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2475] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LT, + STATE(2237), 1, + sym_comment, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + ACTIONS(4495), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4505), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [2572] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4345), 1, + sym_identifier, + ACTIONS(4347), 1, + anon_sym_DQUOTE, + ACTIONS(4349), 1, + anon_sym_SQUOTE, + STATE(1829), 1, + sym_nested_identifier, + STATE(1830), 1, + sym_string, + STATE(1857), 1, + sym__module, + STATE(2238), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2665] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4311), 1, + sym_identifier, + STATE(2239), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2758] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4379), 1, + anon_sym_DQUOTE, + ACTIONS(4381), 1, + anon_sym_SQUOTE, + STATE(374), 1, + sym_nested_identifier, + STATE(375), 1, + sym_string, + STATE(403), 1, + sym__module, + STATE(2240), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2851] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(1427), 1, + anon_sym_EQ_GT, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(1459), 1, + anon_sym_COLON, + ACTIONS(4311), 1, + sym_identifier, + STATE(2241), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2946] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2242), 1, + sym_comment, + ACTIONS(4521), 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(4523), 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, + [3021] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4263), 1, + sym_identifier, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + STATE(2243), 1, + sym_comment, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6547), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [3114] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4525), 1, + sym_identifier, + STATE(2244), 1, + sym_comment, + STATE(5200), 1, + sym_nested_identifier, + STATE(5500), 1, + sym_string, + STATE(6198), 1, + sym__module, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [3207] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1189), 1, + anon_sym_QMARK, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3001), 1, + anon_sym_RBRACE, + ACTIONS(4471), 1, + anon_sym_EQ, + ACTIONS(4475), 1, + anon_sym_LPAREN, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_LT, + STATE(2245), 1, + sym_comment, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [3302] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1162), 1, + anon_sym_EQ, + ACTIONS(1189), 1, + anon_sym_QMARK, + ACTIONS(2936), 1, + anon_sym_LT, + ACTIONS(2971), 1, + anon_sym_LPAREN, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3005), 1, + anon_sym_RBRACE, + STATE(2246), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [3397] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4365), 1, + sym_identifier, + ACTIONS(4367), 1, + anon_sym_DQUOTE, + ACTIONS(4369), 1, + anon_sym_SQUOTE, + STATE(2247), 1, + sym_comment, + STATE(3891), 1, + sym_nested_identifier, + STATE(3948), 1, + sym_string, + STATE(4139), 1, + sym__module, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [3490] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4257), 1, + sym_identifier, + ACTIONS(4259), 1, + anon_sym_DQUOTE, + ACTIONS(4261), 1, + anon_sym_SQUOTE, + STATE(487), 1, + sym_nested_identifier, + STATE(488), 1, + sym_string, + STATE(494), 1, + sym__module, + STATE(2248), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [3583] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1189), 1, + anon_sym_QMARK, + ACTIONS(2961), 1, + anon_sym_RBRACE, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4471), 1, + anon_sym_EQ, + ACTIONS(4475), 1, + anon_sym_LPAREN, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_LT, + STATE(2249), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [3678] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2250), 1, + sym_comment, + ACTIONS(4527), 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(4529), 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, + [3753] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2251), 1, + sym_comment, + ACTIONS(4531), 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(4533), 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, + [3828] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2252), 1, + sym_comment, + ACTIONS(4535), 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(4537), 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, + [3903] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1162), 1, + anon_sym_EQ, + ACTIONS(1189), 1, + anon_sym_QMARK, + ACTIONS(2936), 1, + anon_sym_LT, + ACTIONS(2971), 1, + anon_sym_LPAREN, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3001), 1, + anon_sym_RBRACE, + STATE(2253), 1, + sym_comment, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [3998] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + ACTIONS(4539), 1, + anon_sym_EQ, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4551), 1, + anon_sym_DOT, + ACTIONS(4557), 1, + anon_sym_LT, + STATE(2254), 1, + sym_comment, + STATE(4899), 1, + sym_type_arguments, + ACTIONS(4542), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4554), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4546), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [4092] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2255), 1, + sym_comment, + ACTIONS(3466), 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(4560), 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, + [4166] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(1427), 1, + anon_sym_EQ_GT, + ACTIONS(4311), 1, + sym_identifier, + STATE(2256), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [4258] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2257), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4562), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [4388] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2258), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4564), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [4518] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2259), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4566), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [4648] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2260), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4568), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [4778] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + ACTIONS(4546), 1, + anon_sym_extends, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + STATE(2261), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + ACTIONS(4548), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4554), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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(4473), 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, + [4870] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2262), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4576), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [5000] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2263), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4578), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [5130] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2264), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4580), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [5260] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LT, + STATE(2265), 1, + sym_comment, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + ACTIONS(4505), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4495), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [5356] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2266), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4582), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [5486] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2267), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4584), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [5616] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2268), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4586), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [5746] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + STATE(2269), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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(4473), 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, + [5824] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2270), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4590), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [5954] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2271), 1, + sym_comment, + ACTIONS(3472), 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(4592), 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, + [6028] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(1529), 1, + anon_sym_EQ_GT, + ACTIONS(4311), 1, + sym_identifier, + STATE(2272), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [6120] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2273), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4594), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [6250] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + ACTIONS(4539), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_extends, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(4598), 1, + anon_sym_QMARK, + STATE(2274), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + STATE(8056), 1, + sym_type_annotation, + ACTIONS(4542), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4554), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [6350] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LT, + ACTIONS(4601), 1, + anon_sym_EQ, + ACTIONS(4603), 1, + anon_sym_EQ_GT, + STATE(2275), 1, + sym_comment, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + ACTIONS(4495), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4505), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [6446] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2276), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4605), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [6576] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2277), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4607), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [6706] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(1434), 1, + anon_sym_in, + ACTIONS(4311), 1, + sym_identifier, + ACTIONS(4373), 1, + anon_sym_of, + STATE(2278), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 34, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [6802] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2279), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4609), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [6932] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(1503), 1, + anon_sym_EQ_GT, + ACTIONS(4311), 1, + sym_identifier, + STATE(2280), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7024] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2281), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4611), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [7154] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2282), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4613), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [7284] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2283), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4615), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [7414] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2284), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4617), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [7544] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2285), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4619), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [7674] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(1427), 1, + anon_sym_EQ_GT, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(4311), 1, + sym_identifier, + STATE(2286), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7766] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LT, + ACTIONS(4621), 1, + anon_sym_EQ, + STATE(2287), 1, + sym_comment, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + ACTIONS(4495), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4505), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [7862] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2288), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4623), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [7992] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2289), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4625), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [8122] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2290), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4627), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [8252] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2291), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4629), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [8382] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2292), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4631), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [8512] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2293), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4633), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [8642] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2294), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4635), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [8772] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2295), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4637), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [8902] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2296), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4639), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [9032] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(1493), 1, + anon_sym_EQ, + ACTIONS(1503), 1, + anon_sym_EQ_GT, + ACTIONS(4311), 1, + sym_identifier, + STATE(2297), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [9124] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2298), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4641), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [9254] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2299), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4643), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [9384] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(1523), 1, + anon_sym_EQ, + ACTIONS(1529), 1, + anon_sym_EQ_GT, + ACTIONS(4311), 1, + sym_identifier, + STATE(2300), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [9476] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2301), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4645), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [9606] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2302), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4647), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [9736] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(1434), 1, + anon_sym_in, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(4373), 1, + anon_sym_of, + ACTIONS(4649), 1, + sym_identifier, + ACTIONS(4651), 1, + anon_sym_LBRACK, + STATE(2303), 1, + sym_comment, + STATE(7928), 1, + sym__destructuring_pattern, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 33, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [9829] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4654), 1, + anon_sym_EQ, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + ACTIONS(4661), 1, + anon_sym_QMARK, + STATE(2304), 1, + sym_comment, + ACTIONS(4657), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [9912] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1539), 1, + anon_sym_EQ, + ACTIONS(4311), 1, + sym_identifier, + STATE(2305), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10003] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1535), 1, + anon_sym_EQ, + ACTIONS(4311), 1, + sym_identifier, + STATE(2306), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10094] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1513), 1, + anon_sym_EQ, + ACTIONS(4311), 1, + sym_identifier, + STATE(2307), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10185] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4546), 1, + anon_sym_extends, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + ACTIONS(4621), 1, + anon_sym_EQ, + STATE(2308), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + ACTIONS(4548), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4554), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [10276] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4546), 1, + anon_sym_extends, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + ACTIONS(4601), 1, + anon_sym_EQ, + ACTIONS(4603), 1, + anon_sym_EQ_GT, + STATE(2309), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + ACTIONS(4548), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4554), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [10367] = 17, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4546), 1, + anon_sym_extends, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + ACTIONS(4654), 1, + anon_sym_EQ, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + ACTIONS(4661), 1, + anon_sym_QMARK, + ACTIONS(4663), 1, + anon_sym_RPAREN, + STATE(2310), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + ACTIONS(4554), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4657), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [10464] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1511), 1, + anon_sym_EQ, + ACTIONS(4311), 1, + sym_identifier, + STATE(2311), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10555] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(4311), 1, + sym_identifier, + STATE(2312), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10646] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(1321), 1, + anon_sym_QMARK, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + STATE(2313), 1, + sym_comment, + ACTIONS(4666), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [10729] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + ACTIONS(4672), 1, + anon_sym_QMARK, + STATE(2314), 1, + sym_comment, + ACTIONS(4670), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [10812] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1509), 1, + anon_sym_EQ, + ACTIONS(4311), 1, + sym_identifier, + STATE(2315), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10903] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LT, + ACTIONS(4674), 1, + anon_sym_EQ, + ACTIONS(4676), 1, + anon_sym_EQ_GT, + STATE(2316), 1, + sym_comment, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + ACTIONS(4495), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4505), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [10998] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(128), 1, + anon_sym_EQ, + ACTIONS(131), 1, + anon_sym_QMARK, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + STATE(2317), 1, + sym_comment, + ACTIONS(4678), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [11081] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LT, + ACTIONS(4680), 1, + anon_sym_EQ, + ACTIONS(4682), 1, + anon_sym_EQ_GT, + STATE(2318), 1, + sym_comment, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + ACTIONS(4495), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4505), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [11176] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1367), 1, + anon_sym_EQ, + ACTIONS(2267), 1, + anon_sym_extends, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2319), 1, + sym_comment, + ACTIONS(4684), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4687), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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(126), 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, + [11261] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LT, + STATE(2320), 1, + sym_comment, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + ACTIONS(4505), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4495), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [11356] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2321), 1, + sym_comment, + ACTIONS(4531), 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(4533), 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, + [11429] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2322), 1, + sym_comment, + ACTIONS(4535), 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(4537), 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, + [11502] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(4311), 1, + sym_identifier, + STATE(2323), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11593] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(25), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4684), 1, + anon_sym_LBRACK, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2324), 1, + sym_comment, + ACTIONS(4687), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2267), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [11678] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1591), 1, + anon_sym_EQ, + ACTIONS(4311), 1, + sym_identifier, + STATE(2325), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11769] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1517), 1, + anon_sym_EQ, + ACTIONS(4311), 1, + sym_identifier, + STATE(2326), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11860] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + ACTIONS(4539), 1, + anon_sym_EQ, + ACTIONS(4661), 1, + anon_sym_QMARK, + STATE(2327), 1, + sym_comment, + ACTIONS(4692), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [11943] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(25), 1, + anon_sym_EQ, + ACTIONS(131), 1, + anon_sym_QMARK, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2328), 1, + sym_comment, + ACTIONS(4695), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [12026] = 17, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + ACTIONS(4539), 1, + anon_sym_EQ, + ACTIONS(4542), 1, + anon_sym_RPAREN, + ACTIONS(4546), 1, + anon_sym_extends, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + ACTIONS(4661), 1, + anon_sym_QMARK, + STATE(2329), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + ACTIONS(4554), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4692), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [12123] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1537), 1, + anon_sym_EQ, + ACTIONS(4311), 1, + sym_identifier, + STATE(2330), 1, + sym_comment, + STATE(2951), 1, + sym_nested_identifier, + STATE(2952), 1, + sym_string, + STATE(2972), 1, + sym__module, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [12214] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(25), 1, + anon_sym_EQ, + ACTIONS(131), 1, + anon_sym_QMARK, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4684), 1, + anon_sym_LBRACK, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2331), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4687), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4695), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [12302] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4546), 1, + anon_sym_extends, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + ACTIONS(4674), 1, + anon_sym_EQ, + ACTIONS(4676), 1, + anon_sym_EQ_GT, + STATE(2332), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + ACTIONS(4548), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4554), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [12392] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1181), 1, + anon_sym_EQ_GT, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1410), 1, + anon_sym_COLON, + ACTIONS(4443), 1, + sym_identifier, + STATE(2333), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 37, + anon_sym_STAR, + anon_sym_as, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [12474] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2334), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5560), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [12600] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + ACTIONS(4588), 1, + anon_sym_EQ, + STATE(2335), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [12678] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4654), 1, + anon_sym_EQ, + ACTIONS(4661), 1, + anon_sym_QMARK, + STATE(2336), 1, + sym_comment, + ACTIONS(4657), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [12758] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4539), 1, + anon_sym_EQ, + ACTIONS(4661), 1, + anon_sym_QMARK, + STATE(2337), 1, + sym_comment, + ACTIONS(4692), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [12838] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2338), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5576), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [12964] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1443), 1, + anon_sym_EQ, + ACTIONS(2267), 1, + anon_sym_extends, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4698), 1, + anon_sym_EQ_GT, + STATE(2339), 1, + sym_comment, + ACTIONS(4684), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4687), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [13048] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + STATE(2340), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [13126] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2341), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5725), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [13252] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1181), 1, + anon_sym_EQ_GT, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1377), 1, + anon_sym_COLON, + ACTIONS(4700), 1, + sym_identifier, + STATE(2342), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 37, + anon_sym_STAR, + anon_sym_as, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13334] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2343), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5591), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [13460] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4702), 1, + anon_sym_LBRACE, + ACTIONS(4704), 1, + anon_sym_DOT, + STATE(2344), 1, + sym_comment, + STATE(7779), 1, + sym_ui_object_initializer, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(28), 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, + [13544] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2345), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6054), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [13670] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2346), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5588), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [13796] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + STATE(2347), 1, + sym_comment, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + ACTIONS(4505), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4495), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [13890] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LT, + ACTIONS(4707), 1, + anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_EQ_GT, + STATE(2348), 1, + sym_comment, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + ACTIONS(4495), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4505), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [13984] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1181), 1, + anon_sym_EQ_GT, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1412), 1, + anon_sym_COLON, + ACTIONS(4711), 1, + sym_identifier, + STATE(2349), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 37, + anon_sym_STAR, + anon_sym_as, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [14066] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2350), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5623), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [14192] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1181), 1, + anon_sym_EQ_GT, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1373), 1, + anon_sym_COLON, + ACTIONS(4713), 1, + sym_identifier, + STATE(2351), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 37, + anon_sym_STAR, + anon_sym_as, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [14274] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4621), 1, + anon_sym_EQ, + ACTIONS(4702), 1, + anon_sym_LBRACE, + ACTIONS(4715), 1, + anon_sym_DOT, + STATE(2352), 1, + sym_comment, + STATE(7780), 1, + sym_ui_object_initializer, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4469), 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, + [14358] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1367), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2353), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [14436] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4672), 1, + anon_sym_QMARK, + STATE(2354), 1, + sym_comment, + ACTIONS(4670), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [14516] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2355), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5587), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [14642] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1181), 1, + anon_sym_EQ_GT, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1375), 1, + anon_sym_COLON, + ACTIONS(4718), 1, + sym_identifier, + STATE(2356), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 37, + anon_sym_STAR, + anon_sym_as, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [14724] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2357), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5694), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [14850] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2358), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5622), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [14976] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + ACTIONS(4546), 1, + anon_sym_extends, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + ACTIONS(4670), 1, + anon_sym_COLON, + STATE(2359), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + ACTIONS(4554), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4720), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [15070] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4621), 1, + anon_sym_EQ, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4724), 1, + anon_sym_LBRACE, + STATE(2360), 1, + sym_comment, + STATE(4298), 1, + sym_ui_object_initializer, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4469), 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, + [15154] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(128), 1, + anon_sym_EQ, + ACTIONS(131), 1, + anon_sym_QMARK, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + ACTIONS(4684), 1, + anon_sym_LBRACK, + STATE(2361), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4678), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4687), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [15242] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1181), 1, + anon_sym_EQ_GT, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1408), 1, + anon_sym_COLON, + ACTIONS(4726), 1, + sym_identifier, + STATE(2362), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 37, + anon_sym_STAR, + anon_sym_as, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [15324] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + ACTIONS(4680), 1, + anon_sym_EQ, + ACTIONS(4682), 1, + anon_sym_EQ_GT, + STATE(2363), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + ACTIONS(4546), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4554), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [15414] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LT, + ACTIONS(4728), 1, + anon_sym_EQ, + ACTIONS(4730), 1, + anon_sym_EQ_GT, + STATE(2364), 1, + sym_comment, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + ACTIONS(4495), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4505), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [15508] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2267), 1, + anon_sym_extends, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2365), 1, + sym_comment, + ACTIONS(4684), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4687), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [15592] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + ACTIONS(4670), 1, + anon_sym_COLON, + STATE(2366), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + ACTIONS(4554), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4546), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [15684] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2367), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5677), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [15810] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1181), 1, + anon_sym_EQ_GT, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1371), 1, + anon_sym_COLON, + ACTIONS(4732), 1, + sym_identifier, + STATE(2368), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 37, + anon_sym_STAR, + anon_sym_as, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [15892] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2369), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [15970] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(3750), 1, + anon_sym_LPAREN, + ACTIONS(3774), 1, + anon_sym_abstract, + ACTIONS(4411), 1, + anon_sym_export, + ACTIONS(4413), 1, + anon_sym_STAR, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4421), 1, + anon_sym_async, + ACTIONS(4423), 1, + anon_sym_new, + ACTIONS(4425), 1, + anon_sym_static, + ACTIONS(4427), 1, + anon_sym_readonly, + ACTIONS(4433), 1, + anon_sym_override, + STATE(2370), 1, + sym_comment, + STATE(3754), 1, + sym_accessibility_modifier, + STATE(3860), 1, + sym_override_modifier, + STATE(4798), 1, + sym__property_name, + STATE(4941), 1, + sym_formal_parameters, + STATE(5733), 1, + sym__call_signature, + STATE(6305), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4429), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4431), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5603), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4409), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [16096] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LT, + ACTIONS(4734), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_EQ_GT, + STATE(2371), 1, + sym_comment, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + ACTIONS(4495), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4505), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 12, + sym__ternary_qmark, + anon_sym_as, + 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [16190] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4704), 1, + anon_sym_DOT, + ACTIONS(4724), 1, + anon_sym_LBRACE, + STATE(2372), 1, + sym_comment, + STATE(4299), 1, + sym_ui_object_initializer, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(28), 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, + [16274] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + ACTIONS(4734), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_EQ_GT, + STATE(2373), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + ACTIONS(4546), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4554), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [16363] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3243), 1, + anon_sym_COLON, + STATE(2374), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [16442] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3243), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4621), 1, + anon_sym_EQ, + STATE(2375), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [16521] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3075), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4621), 1, + anon_sym_EQ, + STATE(2376), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [16600] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1465), 1, + anon_sym_EQ, + ACTIONS(2267), 1, + anon_sym_extends, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4738), 1, + anon_sym_EQ_GT, + STATE(2377), 1, + sym_comment, + ACTIONS(4684), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4687), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [16683] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + STATE(2378), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [16758] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2379), 1, + sym_comment, + ACTIONS(4740), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(4531), 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(4533), 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, + [16831] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3205), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4621), 1, + anon_sym_EQ, + STATE(2380), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [16910] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2381), 1, + sym_comment, + ACTIONS(4742), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(4535), 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(4537), 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, + [16983] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + ACTIONS(4707), 1, + anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_EQ_GT, + STATE(2382), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + ACTIONS(4546), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4554), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [17072] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4603), 1, + anon_sym_EQ_GT, + STATE(2383), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [17149] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3075), 1, + anon_sym_COLON, + STATE(2384), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [17228] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + ACTIONS(4546), 1, + anon_sym_extends, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + STATE(2385), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + ACTIONS(4548), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4554), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [17317] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3205), 1, + anon_sym_COLON, + STATE(2386), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [17396] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3037), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4621), 1, + anon_sym_EQ, + STATE(2387), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [17475] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3357), 1, + anon_sym_EQ_GT, + ACTIONS(4684), 1, + anon_sym_LBRACK, + STATE(2388), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4687), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [17558] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3037), 1, + anon_sym_COLON, + STATE(2389), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [17637] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4698), 1, + anon_sym_EQ_GT, + STATE(2390), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [17714] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + STATE(2391), 1, + sym_comment, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + ACTIONS(4495), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4505), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [17807] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3163), 1, + anon_sym_COLON, + STATE(2392), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [17886] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4601), 1, + anon_sym_EQ, + ACTIONS(4603), 1, + anon_sym_EQ_GT, + STATE(2393), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [17963] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2394), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [18040] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4621), 1, + anon_sym_EQ, + STATE(2395), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [18117] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(25), 1, + anon_sym_EQ, + ACTIONS(2215), 1, + anon_sym_QMARK, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4684), 1, + anon_sym_LBRACK, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2396), 1, + sym_comment, + ACTIONS(4687), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2267), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [18202] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2397), 1, + sym_comment, + ACTIONS(4485), 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(4487), 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, + [18273] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3163), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4621), 1, + anon_sym_EQ, + STATE(2398), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [18352] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(25), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + ACTIONS(4704), 1, + anon_sym_DOT, + ACTIONS(4744), 1, + anon_sym_LBRACE, + STATE(2399), 1, + sym_comment, + STATE(7050), 1, + sym_ui_object_initializer, + ACTIONS(4695), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(126), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [18437] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + ACTIONS(4539), 1, + anon_sym_EQ, + ACTIONS(4715), 1, + anon_sym_DOT, + ACTIONS(4744), 1, + anon_sym_LBRACE, + STATE(2400), 1, + sym_comment, + STATE(6956), 1, + sym_ui_object_initializer, + ACTIONS(4692), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4473), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [18522] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4666), 1, + anon_sym_COLON, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + ACTIONS(4684), 1, + anon_sym_LBRACK, + STATE(2401), 1, + sym_comment, + ACTIONS(4687), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2267), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [18607] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + ACTIONS(4728), 1, + anon_sym_EQ, + ACTIONS(4730), 1, + anon_sym_EQ_GT, + STATE(2402), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + ACTIONS(4546), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4554), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [18696] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2403), 1, + sym_comment, + ACTIONS(3472), 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(4592), 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, + [18767] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + anon_sym_DOT, + ACTIONS(4517), 1, + anon_sym_QMARK_DOT, + ACTIONS(4519), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + STATE(2404), 1, + sym_comment, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + ACTIONS(4505), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4495), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [18860] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4588), 1, + anon_sym_EQ, + STATE(2405), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [18937] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1367), 1, + anon_sym_EQ, + ACTIONS(2267), 1, + anon_sym_extends, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4666), 1, + anon_sym_COLON, + ACTIONS(4684), 1, + anon_sym_LBRACK, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2406), 1, + sym_comment, + ACTIONS(4687), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4746), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [19024] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2407), 1, + sym_comment, + ACTIONS(4489), 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(4491), 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, + [19095] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2408), 1, + sym_comment, + ACTIONS(3466), 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(4560), 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, + [19166] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4621), 1, + anon_sym_EQ, + ACTIONS(4750), 1, + anon_sym_in, + ACTIONS(4753), 1, + anon_sym_of, + STATE(2409), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [19247] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1434), 1, + anon_sym_in, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4755), 1, + anon_sym_of, + STATE(2410), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [19328] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3113), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4621), 1, + anon_sym_EQ, + STATE(2411), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [19407] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3113), 1, + anon_sym_COLON, + STATE(2412), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [19486] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2413), 1, + sym_comment, + ACTIONS(4521), 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(4523), 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, + [19557] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2414), 1, + sym_comment, + ACTIONS(4527), 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(4529), 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, + [19628] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2415), 1, + sym_comment, + ACTIONS(4531), 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(4533), 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, + [19699] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2416), 1, + sym_comment, + ACTIONS(4535), 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(4537), 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, + [19770] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3015), 1, + anon_sym_COLON, + ACTIONS(4478), 1, + anon_sym_EQ_GT, + ACTIONS(4621), 1, + anon_sym_EQ, + STATE(2417), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [19849] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3015), 1, + anon_sym_COLON, + STATE(2418), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [19928] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1367), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4666), 1, + anon_sym_COLON, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2419), 1, + sym_comment, + ACTIONS(4757), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [20009] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2420), 1, + sym_comment, + ACTIONS(4535), 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(4537), 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, + [20080] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2421), 1, + sym_comment, + ACTIONS(4531), 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(4533), 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, + [20151] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + STATE(2422), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [20226] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2423), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [20303] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2424), 1, + sym_comment, + ACTIONS(4509), 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(4511), 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, + [20374] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1443), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4698), 1, + anon_sym_EQ_GT, + STATE(2425), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [20451] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4762), 1, + anon_sym_RBRACE, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + STATE(2426), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [20575] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4782), 1, + anon_sym_RBRACE, + STATE(2427), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [20699] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4784), 1, + anon_sym_RBRACE, + STATE(2428), 1, + sym_comment, + STATE(2444), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [20823] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(4788), 1, + anon_sym_RBRACE, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4792), 1, + anon_sym_async, + ACTIONS(4794), 1, + anon_sym_static, + ACTIONS(4796), 1, + anon_sym_readonly, + ACTIONS(4802), 1, + anon_sym_override, + STATE(2429), 1, + sym_comment, + STATE(3779), 1, + sym_accessibility_modifier, + STATE(3869), 1, + sym_override_modifier, + STATE(5413), 1, + sym__property_name, + STATE(6853), 1, + aux_sym_object_repeat1, + STATE(7272), 1, + aux_sym_object_pattern_repeat1, + STATE(8331), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4798), 2, + anon_sym_get, + anon_sym_set, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4800), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6846), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7266), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(4786), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [20941] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4804), 1, + anon_sym_RBRACE, + STATE(2430), 1, + sym_comment, + STATE(2434), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [21065] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4711), 1, + sym_identifier, + STATE(2431), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [21143] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4713), 1, + sym_identifier, + STATE(2432), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [21221] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4806), 1, + anon_sym_RBRACE, + STATE(2433), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [21345] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4808), 1, + anon_sym_RBRACE, + STATE(2434), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [21469] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4810), 1, + anon_sym_RBRACE, + STATE(2435), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [21593] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1465), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4738), 1, + anon_sym_EQ_GT, + STATE(2436), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [21669] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4812), 1, + anon_sym_RBRACE, + STATE(2437), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [21793] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4814), 1, + anon_sym_RBRACE, + STATE(2437), 1, + aux_sym_class_body_repeat1, + STATE(2438), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [21917] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4601), 1, + anon_sym_EQ, + STATE(2439), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [21991] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4501), 1, + anon_sym_EQ_GT, + STATE(2440), 1, + sym_comment, + ACTIONS(4816), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [22069] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4670), 1, + anon_sym_COLON, + STATE(2441), 1, + sym_comment, + ACTIONS(4816), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [22147] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4819), 1, + anon_sym_RBRACE, + STATE(2442), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [22271] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4700), 1, + sym_identifier, + STATE(2443), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [22349] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4821), 1, + anon_sym_RBRACE, + STATE(2444), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [22473] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4823), 1, + sym_identifier, + STATE(2445), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [22551] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4825), 1, + anon_sym_RBRACE, + STATE(2442), 1, + aux_sym_class_body_repeat1, + STATE(2446), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [22675] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4443), 1, + sym_identifier, + STATE(2447), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [22753] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4827), 1, + anon_sym_RBRACE, + STATE(2448), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [22877] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4829), 1, + anon_sym_RBRACE, + STATE(2449), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23001] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4831), 1, + anon_sym_RBRACE, + STATE(2449), 1, + aux_sym_class_body_repeat1, + STATE(2450), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23125] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4726), 1, + sym_identifier, + STATE(2451), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [23203] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4833), 1, + anon_sym_RBRACE, + STATE(2452), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23327] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4835), 1, + anon_sym_RBRACE, + STATE(2452), 1, + aux_sym_class_body_repeat1, + STATE(2453), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23451] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4837), 1, + anon_sym_RBRACE, + STATE(2454), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23575] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4839), 1, + anon_sym_RBRACE, + STATE(2435), 1, + aux_sym_class_body_repeat1, + STATE(2455), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23699] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4841), 1, + anon_sym_RBRACE, + STATE(2454), 1, + aux_sym_class_body_repeat1, + STATE(2456), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23823] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4843), 1, + anon_sym_RBRACE, + STATE(2457), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23947] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4845), 1, + anon_sym_RBRACE, + STATE(2457), 1, + aux_sym_class_body_repeat1, + STATE(2458), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [24071] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4738), 1, + anon_sym_EQ_GT, + STATE(2459), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [24147] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4847), 1, + anon_sym_RBRACE, + STATE(2460), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [24271] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4849), 1, + anon_sym_RBRACE, + STATE(2460), 1, + aux_sym_class_body_repeat1, + STATE(2461), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [24395] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4853), 1, + anon_sym_RBRACE, + ACTIONS(4855), 1, + anon_sym_async, + ACTIONS(4857), 1, + anon_sym_static, + ACTIONS(4859), 1, + anon_sym_readonly, + ACTIONS(4865), 1, + anon_sym_override, + STATE(2462), 1, + sym_comment, + STATE(3779), 1, + sym_accessibility_modifier, + STATE(3869), 1, + sym_override_modifier, + STATE(5413), 1, + sym__property_name, + STATE(7272), 1, + aux_sym_object_pattern_repeat1, + STATE(7340), 1, + aux_sym_object_repeat1, + STATE(8331), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4861), 2, + anon_sym_get, + anon_sym_set, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4863), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(7266), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(7345), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4851), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [24513] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4867), 1, + anon_sym_RBRACE, + STATE(2427), 1, + aux_sym_class_body_repeat1, + STATE(2463), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [24637] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4732), 1, + sym_identifier, + STATE(2464), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [24715] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4869), 1, + anon_sym_RBRACE, + STATE(2465), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [24839] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4676), 1, + anon_sym_EQ_GT, + STATE(2466), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [24915] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4871), 1, + anon_sym_RBRACE, + STATE(2433), 1, + aux_sym_class_body_repeat1, + STATE(2467), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [25039] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4621), 1, + anon_sym_EQ, + ACTIONS(4750), 1, + anon_sym_in, + ACTIONS(4753), 1, + anon_sym_of, + STATE(2468), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [25117] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1493), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4684), 1, + anon_sym_LBRACK, + ACTIONS(4873), 1, + anon_sym_EQ_GT, + STATE(2469), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4687), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(126), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [25199] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4877), 1, + anon_sym_RBRACE, + ACTIONS(4879), 1, + anon_sym_async, + ACTIONS(4881), 1, + anon_sym_static, + ACTIONS(4883), 1, + anon_sym_readonly, + ACTIONS(4889), 1, + anon_sym_override, + STATE(2470), 1, + sym_comment, + STATE(3779), 1, + sym_accessibility_modifier, + STATE(3869), 1, + sym_override_modifier, + STATE(5413), 1, + sym__property_name, + STATE(7272), 1, + aux_sym_object_pattern_repeat1, + STATE(7340), 1, + aux_sym_object_repeat1, + STATE(8331), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4885), 2, + anon_sym_get, + anon_sym_set, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4887), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(7266), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(7345), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4875), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [25317] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4891), 1, + anon_sym_RBRACE, + STATE(2465), 1, + aux_sym_class_body_repeat1, + STATE(2471), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [25441] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4893), 1, + anon_sym_RBRACE, + STATE(2472), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [25565] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4895), 1, + anon_sym_RBRACE, + STATE(2473), 1, + sym_comment, + STATE(2485), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [25689] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4897), 1, + anon_sym_RBRACE, + STATE(2472), 1, + aux_sym_class_body_repeat1, + STATE(2474), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [25813] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4548), 1, + anon_sym_LBRACK, + ACTIONS(4570), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + anon_sym_LT, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + STATE(2475), 1, + sym_comment, + STATE(4639), 1, + sym_type_arguments, + ACTIONS(4546), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4554), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [25901] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4899), 1, + anon_sym_RBRACE, + STATE(2476), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [26025] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4901), 1, + anon_sym_RBRACE, + STATE(2476), 1, + aux_sym_class_body_repeat1, + STATE(2477), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [26149] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4905), 1, + anon_sym_RBRACE, + ACTIONS(4907), 1, + anon_sym_async, + ACTIONS(4909), 1, + anon_sym_static, + ACTIONS(4911), 1, + anon_sym_readonly, + ACTIONS(4917), 1, + anon_sym_override, + STATE(2478), 1, + sym_comment, + STATE(3779), 1, + sym_accessibility_modifier, + STATE(3869), 1, + sym_override_modifier, + STATE(5413), 1, + sym__property_name, + STATE(6853), 1, + aux_sym_object_repeat1, + STATE(7272), 1, + aux_sym_object_pattern_repeat1, + STATE(8331), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4913), 2, + anon_sym_get, + anon_sym_set, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4915), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6846), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7266), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(4903), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [26267] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1367), 1, + anon_sym_EQ, + ACTIONS(2267), 1, + anon_sym_extends, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2479), 1, + sym_comment, + ACTIONS(4684), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4687), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [26349] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4684), 1, + anon_sym_LBRACK, + ACTIONS(4919), 1, + anon_sym_EQ_GT, + STATE(2480), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4687), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [26431] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4921), 1, + anon_sym_RBRACE, + STATE(2426), 1, + aux_sym_class_body_repeat1, + STATE(2481), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [26555] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4923), 1, + anon_sym_RBRACE, + STATE(2448), 1, + aux_sym_class_body_repeat1, + STATE(2482), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [26679] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4927), 1, + anon_sym_RBRACE, + ACTIONS(4929), 1, + anon_sym_async, + ACTIONS(4931), 1, + anon_sym_static, + ACTIONS(4933), 1, + anon_sym_readonly, + ACTIONS(4939), 1, + anon_sym_override, + STATE(2483), 1, + sym_comment, + STATE(3779), 1, + sym_accessibility_modifier, + STATE(3869), 1, + sym_override_modifier, + STATE(5413), 1, + sym__property_name, + STATE(7272), 1, + aux_sym_object_pattern_repeat1, + STATE(7340), 1, + aux_sym_object_repeat1, + STATE(8331), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4935), 2, + anon_sym_get, + anon_sym_set, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4937), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(7266), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(7345), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4925), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [26797] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4941), 1, + anon_sym_RBRACE, + STATE(2484), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [26921] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4943), 1, + anon_sym_RBRACE, + STATE(2485), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [27045] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4945), 1, + anon_sym_RBRACE, + STATE(2484), 1, + aux_sym_class_body_repeat1, + STATE(2486), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [27169] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4657), 1, + anon_sym_COMMA, + ACTIONS(4692), 1, + anon_sym_RBRACK, + ACTIONS(4730), 1, + anon_sym_EQ_GT, + ACTIONS(4947), 1, + anon_sym_EQ, + ACTIONS(4950), 1, + anon_sym_in, + ACTIONS(4952), 1, + anon_sym_COLON, + STATE(2487), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [27253] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4956), 1, + anon_sym_RBRACE, + ACTIONS(4958), 1, + anon_sym_async, + ACTIONS(4960), 1, + anon_sym_static, + ACTIONS(4962), 1, + anon_sym_readonly, + ACTIONS(4968), 1, + anon_sym_override, + STATE(2488), 1, + sym_comment, + STATE(3779), 1, + sym_accessibility_modifier, + STATE(3869), 1, + sym_override_modifier, + STATE(5413), 1, + sym__property_name, + STATE(7272), 1, + aux_sym_object_pattern_repeat1, + STATE(7340), 1, + aux_sym_object_repeat1, + STATE(8331), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4964), 2, + anon_sym_get, + anon_sym_set, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4966), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(7266), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(7345), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4954), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [27371] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4970), 1, + anon_sym_RBRACE, + STATE(2489), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [27495] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4972), 1, + anon_sym_RBRACE, + STATE(2489), 1, + aux_sym_class_body_repeat1, + STATE(2490), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [27619] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4974), 1, + anon_sym_RBRACE, + STATE(2491), 1, + sym_comment, + STATE(2496), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [27743] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1523), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4684), 1, + anon_sym_LBRACK, + ACTIONS(4976), 1, + anon_sym_EQ_GT, + STATE(2492), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4687), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [27825] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4621), 1, + anon_sym_EQ, + STATE(2493), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [27899] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4740), 1, + anon_sym_COMMA, + STATE(2494), 1, + sym_comment, + ACTIONS(4531), 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(4533), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_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, + [27971] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4742), 1, + anon_sym_COMMA, + STATE(2495), 1, + sym_comment, + ACTIONS(4535), 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(4537), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_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, + [28043] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4978), 1, + anon_sym_RBRACE, + STATE(2496), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [28167] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(4982), 1, + anon_sym_RBRACE, + ACTIONS(4984), 1, + anon_sym_async, + ACTIONS(4986), 1, + anon_sym_static, + ACTIONS(4988), 1, + anon_sym_readonly, + ACTIONS(4994), 1, + anon_sym_override, + STATE(2497), 1, + sym_comment, + STATE(3779), 1, + sym_accessibility_modifier, + STATE(3869), 1, + sym_override_modifier, + STATE(5413), 1, + sym__property_name, + STATE(7272), 1, + aux_sym_object_pattern_repeat1, + STATE(7340), 1, + aux_sym_object_repeat1, + STATE(8331), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4990), 2, + anon_sym_get, + anon_sym_set, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4992), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(7266), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(7345), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4980), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [28285] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1418), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4678), 1, + anon_sym_COMMA, + ACTIONS(4695), 1, + anon_sym_RBRACK, + ACTIONS(4919), 1, + anon_sym_EQ_GT, + ACTIONS(4996), 1, + anon_sym_COLON, + STATE(2498), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [28367] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(4998), 1, + anon_sym_RBRACE, + STATE(2499), 1, + sym_comment, + STATE(2501), 1, + aux_sym_class_body_repeat1, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [28491] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(1485), 1, + anon_sym_EQ_GT, + ACTIONS(4718), 1, + sym_identifier, + STATE(2500), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [28569] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5003), 1, + anon_sym_STAR, + ACTIONS(5006), 1, + anon_sym_RBRACE, + ACTIONS(5008), 1, + anon_sym_SEMI, + ACTIONS(5011), 1, + anon_sym_LBRACK, + ACTIONS(5014), 1, + anon_sym_DQUOTE, + ACTIONS(5017), 1, + anon_sym_SQUOTE, + ACTIONS(5020), 1, + anon_sym_async, + ACTIONS(5029), 1, + anon_sym_AT, + ACTIONS(5032), 1, + anon_sym_static, + ACTIONS(5035), 1, + anon_sym_readonly, + ACTIONS(5041), 1, + anon_sym_declare, + ACTIONS(5047), 1, + anon_sym_override, + ACTIONS(5050), 1, + anon_sym_abstract, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(5023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5026), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5038), 2, + anon_sym_get, + anon_sym_set, + STATE(2501), 2, + sym_comment, + aux_sym_class_body_repeat1, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(5044), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(5000), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [28691] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4674), 1, + anon_sym_EQ, + ACTIONS(4676), 1, + anon_sym_EQ_GT, + STATE(2502), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [28767] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4419), 1, + anon_sym_LBRACK, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4760), 1, + anon_sym_STAR, + ACTIONS(4764), 1, + anon_sym_SEMI, + ACTIONS(4766), 1, + anon_sym_async, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(4770), 1, + anon_sym_static, + ACTIONS(4772), 1, + anon_sym_readonly, + ACTIONS(4776), 1, + anon_sym_declare, + ACTIONS(4780), 1, + anon_sym_abstract, + ACTIONS(5053), 1, + anon_sym_RBRACE, + STATE(2499), 1, + aux_sym_class_body_repeat1, + STATE(2503), 1, + sym_comment, + STATE(2762), 1, + aux_sym_export_statement_repeat1, + STATE(3289), 1, + sym_method_definition, + STATE(3411), 1, + sym_class_static_block, + STATE(3589), 1, + sym_accessibility_modifier, + STATE(3867), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4702), 1, + sym__property_name, + STATE(6558), 1, + sym_method_signature, + ACTIONS(3760), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4774), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6669), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [28891] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4674), 1, + anon_sym_EQ, + STATE(2504), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [28964] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4682), 1, + anon_sym_EQ_GT, + STATE(2505), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [29039] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4728), 1, + anon_sym_EQ, + ACTIONS(4730), 1, + anon_sym_EQ_GT, + ACTIONS(4950), 1, + anon_sym_in, + ACTIONS(4952), 1, + anon_sym_COLON, + STATE(2506), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [29118] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4680), 1, + anon_sym_EQ, + ACTIONS(4682), 1, + anon_sym_EQ_GT, + STATE(2507), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [29193] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1479), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3357), 1, + anon_sym_EQ_GT, + STATE(2508), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [29268] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4919), 1, + anon_sym_EQ_GT, + ACTIONS(4996), 1, + anon_sym_COLON, + STATE(2509), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [29345] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4919), 1, + anon_sym_EQ_GT, + ACTIONS(5055), 1, + anon_sym_COLON, + STATE(2510), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [29422] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4728), 1, + anon_sym_EQ, + ACTIONS(4730), 1, + anon_sym_EQ_GT, + ACTIONS(4950), 1, + anon_sym_in, + ACTIONS(5057), 1, + anon_sym_COLON, + STATE(2511), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [29501] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4657), 1, + anon_sym_COMMA, + ACTIONS(4692), 1, + anon_sym_RBRACK, + ACTIONS(4730), 1, + anon_sym_EQ_GT, + ACTIONS(4947), 1, + anon_sym_EQ, + STATE(2512), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [29580] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4740), 1, + anon_sym_COMMA, + STATE(2513), 1, + sym_comment, + ACTIONS(4531), 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(4533), 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, + [29651] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4742), 1, + anon_sym_COMMA, + STATE(2514), 1, + sym_comment, + ACTIONS(4535), 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(4537), 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, + [29722] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1418), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4678), 1, + anon_sym_COMMA, + ACTIONS(4695), 1, + anon_sym_RBRACK, + ACTIONS(4919), 1, + anon_sym_EQ_GT, + STATE(2515), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [29801] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3357), 1, + anon_sym_EQ_GT, + STATE(2516), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [29876] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + ACTIONS(4684), 1, + anon_sym_LBRACK, + STATE(2517), 1, + sym_comment, + ACTIONS(2267), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4687), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [29957] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1457), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4919), 1, + anon_sym_EQ_GT, + STATE(2518), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [30031] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4730), 1, + anon_sym_EQ_GT, + STATE(2519), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [30105] = 26, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(5061), 1, + anon_sym_async, + ACTIONS(5063), 1, + anon_sym_static, + ACTIONS(5065), 1, + anon_sym_readonly, + ACTIONS(5071), 1, + anon_sym_override, + STATE(2520), 1, + sym_comment, + STATE(3779), 1, + sym_accessibility_modifier, + STATE(3869), 1, + sym_override_modifier, + STATE(5413), 1, + sym__property_name, + STATE(8331), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4096), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5067), 2, + anon_sym_get, + anon_sym_set, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(5069), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(7696), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(8090), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5059), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [30215] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4873), 1, + anon_sym_EQ_GT, + STATE(2521), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(28), 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, + [30289] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1523), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4976), 1, + anon_sym_EQ_GT, + STATE(2522), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [30363] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4734), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_EQ_GT, + STATE(2523), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4469), 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, + [30437] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4657), 1, + anon_sym_COMMA, + ACTIONS(4692), 1, + anon_sym_RBRACK, + ACTIONS(4947), 1, + anon_sym_EQ, + STATE(2524), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [30513] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4736), 1, + anon_sym_EQ_GT, + STATE(2525), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4469), 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, + [30587] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_EQ_GT, + STATE(2526), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [30661] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4728), 1, + anon_sym_EQ, + ACTIONS(4730), 1, + anon_sym_EQ_GT, + STATE(2527), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [30735] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + ACTIONS(4750), 1, + anon_sym_in, + ACTIONS(4753), 1, + anon_sym_of, + STATE(2528), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [30813] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1493), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4873), 1, + anon_sym_EQ_GT, + STATE(2529), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(28), 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, + [30887] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4680), 1, + anon_sym_EQ, + STATE(2530), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [30959] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(1434), 1, + anon_sym_in, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + ACTIONS(4755), 1, + anon_sym_of, + STATE(2531), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [31037] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_EQ_GT, + STATE(2532), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [31111] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4976), 1, + anon_sym_EQ_GT, + STATE(2533), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [31185] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4919), 1, + anon_sym_EQ_GT, + STATE(2534), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [31259] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4734), 1, + anon_sym_EQ, + STATE(2535), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4469), 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, + [31330] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + ACTIONS(5073), 1, + anon_sym_EQ, + STATE(2536), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [31403] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1511), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + STATE(2537), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [31476] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1517), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + STATE(2538), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [31549] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + ACTIONS(5075), 1, + anon_sym_EQ, + STATE(2539), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [31622] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + ACTIONS(5077), 1, + anon_sym_EQ, + STATE(2540), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [31695] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5079), 1, + sym_identifier, + ACTIONS(5085), 1, + anon_sym_default, + ACTIONS(5088), 1, + anon_sym_RBRACE, + ACTIONS(5090), 1, + anon_sym_var, + ACTIONS(5093), 1, + anon_sym_async, + ACTIONS(5096), 1, + anon_sym_function, + ACTIONS(5099), 1, + anon_sym_AT, + ACTIONS(5102), 1, + anon_sym_readonly, + ACTIONS(5105), 1, + anon_sym_property, + ACTIONS(5108), 1, + anon_sym_signal, + ACTIONS(5111), 1, + anon_sym_required, + ACTIONS(5114), 1, + anon_sym_component, + ACTIONS(5117), 1, + anon_sym_enum, + STATE(2601), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4268), 1, + sym__qml_enum_declaration, + STATE(4447), 1, + sym_ui_annotation, + STATE(5501), 1, + aux_sym_ui_property_repeat1, + STATE(5973), 1, + sym_ui_nested_identifier, + STATE(6576), 1, + sym_ui_property_modifier, + STATE(2541), 2, + sym_comment, + aux_sym_ui_object_initializer_repeat1, + STATE(4271), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5082), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_on, + [31800] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + ACTIONS(5120), 1, + anon_sym_EQ, + STATE(2542), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [31873] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1509), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + STATE(2543), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [31946] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + STATE(2544), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [32019] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(982), 1, + anon_sym_var, + ACTIONS(5122), 1, + sym_identifier, + ACTIONS(5126), 1, + anon_sym_default, + ACTIONS(5128), 1, + anon_sym_RBRACE, + ACTIONS(5130), 1, + anon_sym_async, + ACTIONS(5132), 1, + anon_sym_function, + ACTIONS(5134), 1, + anon_sym_AT, + ACTIONS(5136), 1, + anon_sym_readonly, + ACTIONS(5138), 1, + anon_sym_property, + ACTIONS(5140), 1, + anon_sym_signal, + ACTIONS(5142), 1, + anon_sym_required, + ACTIONS(5144), 1, + anon_sym_component, + ACTIONS(5146), 1, + anon_sym_enum, + STATE(2541), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2545), 1, + sym_comment, + STATE(2601), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4268), 1, + sym__qml_enum_declaration, + STATE(4447), 1, + sym_ui_annotation, + STATE(5501), 1, + aux_sym_ui_property_repeat1, + STATE(5973), 1, + sym_ui_nested_identifier, + STATE(6576), 1, + sym_ui_property_modifier, + STATE(4271), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5124), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_on, + [32126] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ, + STATE(2546), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [32197] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + ACTIONS(5148), 1, + anon_sym_EQ, + STATE(2547), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [32270] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1537), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + STATE(2548), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [32343] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + ACTIONS(5150), 1, + anon_sym_EQ, + STATE(2549), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [32416] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + ACTIONS(5152), 1, + anon_sym_EQ, + STATE(2550), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [32489] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(982), 1, + anon_sym_var, + ACTIONS(5122), 1, + sym_identifier, + ACTIONS(5126), 1, + anon_sym_default, + ACTIONS(5130), 1, + anon_sym_async, + ACTIONS(5132), 1, + anon_sym_function, + ACTIONS(5134), 1, + anon_sym_AT, + ACTIONS(5136), 1, + anon_sym_readonly, + ACTIONS(5138), 1, + anon_sym_property, + ACTIONS(5140), 1, + anon_sym_signal, + ACTIONS(5142), 1, + anon_sym_required, + ACTIONS(5144), 1, + anon_sym_component, + ACTIONS(5146), 1, + anon_sym_enum, + ACTIONS(5154), 1, + anon_sym_RBRACE, + STATE(2541), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2551), 1, + sym_comment, + STATE(2601), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4268), 1, + sym__qml_enum_declaration, + STATE(4447), 1, + sym_ui_annotation, + STATE(5501), 1, + aux_sym_ui_property_repeat1, + STATE(5973), 1, + sym_ui_nested_identifier, + STATE(6576), 1, + sym_ui_property_modifier, + STATE(4271), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5124), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_on, + [32596] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(982), 1, + anon_sym_var, + ACTIONS(5122), 1, + sym_identifier, + ACTIONS(5126), 1, + anon_sym_default, + ACTIONS(5130), 1, + anon_sym_async, + ACTIONS(5132), 1, + anon_sym_function, + ACTIONS(5134), 1, + anon_sym_AT, + ACTIONS(5136), 1, + anon_sym_readonly, + ACTIONS(5138), 1, + anon_sym_property, + ACTIONS(5140), 1, + anon_sym_signal, + ACTIONS(5142), 1, + anon_sym_required, + ACTIONS(5144), 1, + anon_sym_component, + ACTIONS(5146), 1, + anon_sym_enum, + ACTIONS(5156), 1, + anon_sym_RBRACE, + STATE(2551), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2552), 1, + sym_comment, + STATE(2601), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4268), 1, + sym__qml_enum_declaration, + STATE(4447), 1, + sym_ui_annotation, + STATE(5501), 1, + aux_sym_ui_property_repeat1, + STATE(5973), 1, + sym_ui_nested_identifier, + STATE(6576), 1, + sym_ui_property_modifier, + STATE(4271), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5124), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_on, + [32703] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1539), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + STATE(2553), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [32776] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4750), 1, + anon_sym_in, + ACTIONS(4753), 1, + anon_sym_of, + STATE(2554), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [32851] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + STATE(2555), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [32924] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4728), 1, + anon_sym_EQ, + STATE(2556), 1, + sym_comment, + ACTIONS(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4473), 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(4469), 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, + [32995] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(982), 1, + anon_sym_var, + ACTIONS(5122), 1, + sym_identifier, + ACTIONS(5126), 1, + anon_sym_default, + ACTIONS(5130), 1, + anon_sym_async, + ACTIONS(5132), 1, + anon_sym_function, + ACTIONS(5134), 1, + anon_sym_AT, + ACTIONS(5136), 1, + anon_sym_readonly, + ACTIONS(5138), 1, + anon_sym_property, + ACTIONS(5140), 1, + anon_sym_signal, + ACTIONS(5142), 1, + anon_sym_required, + ACTIONS(5144), 1, + anon_sym_component, + ACTIONS(5146), 1, + anon_sym_enum, + ACTIONS(5158), 1, + anon_sym_RBRACE, + STATE(2541), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2557), 1, + sym_comment, + STATE(2601), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4268), 1, + sym__qml_enum_declaration, + STATE(4447), 1, + sym_ui_annotation, + STATE(5501), 1, + aux_sym_ui_property_repeat1, + STATE(5973), 1, + sym_ui_nested_identifier, + STATE(6576), 1, + sym_ui_property_modifier, + STATE(4271), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5124), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_on, + [33102] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(982), 1, + anon_sym_var, + ACTIONS(5122), 1, + sym_identifier, + ACTIONS(5126), 1, + anon_sym_default, + ACTIONS(5130), 1, + anon_sym_async, + ACTIONS(5132), 1, + anon_sym_function, + ACTIONS(5134), 1, + anon_sym_AT, + ACTIONS(5136), 1, + anon_sym_readonly, + ACTIONS(5138), 1, + anon_sym_property, + ACTIONS(5140), 1, + anon_sym_signal, + ACTIONS(5142), 1, + anon_sym_required, + ACTIONS(5144), 1, + anon_sym_component, + ACTIONS(5146), 1, + anon_sym_enum, + ACTIONS(5160), 1, + anon_sym_RBRACE, + STATE(2558), 1, + sym_comment, + STATE(2566), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2601), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4268), 1, + sym__qml_enum_declaration, + STATE(4447), 1, + sym_ui_annotation, + STATE(5501), 1, + aux_sym_ui_property_repeat1, + STATE(5973), 1, + sym_ui_nested_identifier, + STATE(6576), 1, + sym_ui_property_modifier, + STATE(4271), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5124), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_on, + [33209] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(982), 1, + anon_sym_var, + ACTIONS(5122), 1, + sym_identifier, + ACTIONS(5126), 1, + anon_sym_default, + ACTIONS(5130), 1, + anon_sym_async, + ACTIONS(5132), 1, + anon_sym_function, + ACTIONS(5134), 1, + anon_sym_AT, + ACTIONS(5136), 1, + anon_sym_readonly, + ACTIONS(5138), 1, + anon_sym_property, + ACTIONS(5140), 1, + anon_sym_signal, + ACTIONS(5142), 1, + anon_sym_required, + ACTIONS(5144), 1, + anon_sym_component, + ACTIONS(5146), 1, + anon_sym_enum, + ACTIONS(5162), 1, + anon_sym_RBRACE, + STATE(2557), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2559), 1, + sym_comment, + STATE(2601), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4268), 1, + sym__qml_enum_declaration, + STATE(4447), 1, + sym_ui_annotation, + STATE(5501), 1, + aux_sym_ui_property_repeat1, + STATE(5973), 1, + sym_ui_nested_identifier, + STATE(6576), 1, + sym_ui_property_modifier, + STATE(4271), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5124), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_on, + [33316] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + ACTIONS(5164), 1, + anon_sym_EQ, + STATE(2560), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [33389] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(982), 1, + anon_sym_var, + ACTIONS(5122), 1, + sym_identifier, + ACTIONS(5126), 1, + anon_sym_default, + ACTIONS(5130), 1, + anon_sym_async, + ACTIONS(5132), 1, + anon_sym_function, + ACTIONS(5134), 1, + anon_sym_AT, + ACTIONS(5136), 1, + anon_sym_readonly, + ACTIONS(5138), 1, + anon_sym_property, + ACTIONS(5140), 1, + anon_sym_signal, + ACTIONS(5142), 1, + anon_sym_required, + ACTIONS(5144), 1, + anon_sym_component, + ACTIONS(5146), 1, + anon_sym_enum, + ACTIONS(5166), 1, + anon_sym_RBRACE, + STATE(2545), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2561), 1, + sym_comment, + STATE(2601), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4268), 1, + sym__qml_enum_declaration, + STATE(4447), 1, + sym_ui_annotation, + STATE(5501), 1, + aux_sym_ui_property_repeat1, + STATE(5973), 1, + sym_ui_nested_identifier, + STATE(6576), 1, + sym_ui_property_modifier, + STATE(4271), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5124), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_on, + [33496] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4659), 1, + anon_sym_EQ_GT, + ACTIONS(5168), 1, + anon_sym_EQ, + STATE(2562), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [33569] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1513), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + STATE(2563), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [33642] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1591), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + STATE(2564), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [33715] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1535), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + STATE(2565), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [33788] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(982), 1, + anon_sym_var, + ACTIONS(5122), 1, + sym_identifier, + ACTIONS(5126), 1, + anon_sym_default, + ACTIONS(5130), 1, + anon_sym_async, + ACTIONS(5132), 1, + anon_sym_function, + ACTIONS(5134), 1, + anon_sym_AT, + ACTIONS(5136), 1, + anon_sym_readonly, + ACTIONS(5138), 1, + anon_sym_property, + ACTIONS(5140), 1, + anon_sym_signal, + ACTIONS(5142), 1, + anon_sym_required, + ACTIONS(5144), 1, + anon_sym_component, + ACTIONS(5146), 1, + anon_sym_enum, + ACTIONS(5170), 1, + anon_sym_RBRACE, + STATE(2541), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2566), 1, + sym_comment, + STATE(2601), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4268), 1, + sym__qml_enum_declaration, + STATE(4447), 1, + sym_ui_annotation, + STATE(5501), 1, + aux_sym_ui_property_repeat1, + STATE(5973), 1, + sym_ui_nested_identifier, + STATE(6576), 1, + sym_ui_property_modifier, + STATE(4271), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5124), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_on, + [33895] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4668), 1, + anon_sym_EQ_GT, + STATE(2567), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [33968] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5120), 1, + anon_sym_EQ, + STATE(2568), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [34038] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5179), 1, + anon_sym_RBRACE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5184), 1, + anon_sym_async, + ACTIONS(5186), 1, + anon_sym_readonly, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2569), 1, + sym_comment, + STATE(3893), 1, + sym_override_modifier, + STATE(4790), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5188), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [34140] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5075), 1, + anon_sym_EQ, + STATE(2570), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [34210] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5150), 1, + anon_sym_EQ, + STATE(2571), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [34280] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5184), 1, + anon_sym_async, + ACTIONS(5186), 1, + anon_sym_readonly, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5192), 1, + anon_sym_RBRACE, + STATE(2572), 1, + sym_comment, + STATE(3893), 1, + sym_override_modifier, + STATE(4790), 1, + sym__property_name, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5188), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [34382] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5148), 1, + anon_sym_EQ, + STATE(2573), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [34452] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5184), 1, + anon_sym_async, + ACTIONS(5186), 1, + anon_sym_readonly, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5195), 1, + anon_sym_RBRACE, + STATE(2574), 1, + sym_comment, + STATE(3893), 1, + sym_override_modifier, + STATE(4790), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5188), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [34554] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5168), 1, + anon_sym_EQ, + STATE(2575), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [34624] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5184), 1, + anon_sym_async, + ACTIONS(5186), 1, + anon_sym_readonly, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5198), 1, + anon_sym_RBRACE, + STATE(2576), 1, + sym_comment, + STATE(3893), 1, + sym_override_modifier, + STATE(4790), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5188), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [34726] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5077), 1, + anon_sym_EQ, + STATE(2577), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [34796] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5152), 1, + anon_sym_EQ, + STATE(2578), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [34866] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5073), 1, + anon_sym_EQ, + STATE(2579), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [34936] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5184), 1, + anon_sym_async, + ACTIONS(5186), 1, + anon_sym_readonly, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5201), 1, + anon_sym_RBRACE, + STATE(2580), 1, + sym_comment, + STATE(3893), 1, + sym_override_modifier, + STATE(4790), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5188), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [35038] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5164), 1, + anon_sym_EQ, + STATE(2581), 1, + sym_comment, + ACTIONS(4473), 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(4480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4469), 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, + [35108] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5184), 1, + anon_sym_async, + ACTIONS(5186), 1, + anon_sym_readonly, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5204), 1, + anon_sym_RBRACE, + STATE(2582), 1, + sym_comment, + STATE(3893), 1, + sym_override_modifier, + STATE(4790), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5188), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [35210] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5209), 1, + anon_sym_LBRACE, + ACTIONS(5211), 1, + anon_sym_async, + ACTIONS(5213), 1, + anon_sym_readonly, + STATE(2583), 1, + sym_comment, + STATE(3359), 1, + sym_statement_block, + STATE(3865), 1, + sym_override_modifier, + STATE(4733), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5215), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [35305] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5184), 1, + anon_sym_async, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5201), 1, + anon_sym_RBRACE, + ACTIONS(5217), 1, + anon_sym_LBRACK, + STATE(2584), 1, + sym_comment, + STATE(4790), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5188), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [35400] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5184), 1, + anon_sym_async, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5192), 1, + anon_sym_RBRACE, + ACTIONS(5217), 1, + anon_sym_LBRACK, + STATE(2585), 1, + sym_comment, + STATE(4790), 1, + sym__property_name, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5188), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [35495] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5195), 1, + anon_sym_RBRACE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2586), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5221), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [35588] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5184), 1, + anon_sym_async, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5198), 1, + anon_sym_RBRACE, + ACTIONS(5217), 1, + anon_sym_LBRACK, + STATE(2587), 1, + sym_comment, + STATE(4790), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5188), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [35683] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5192), 1, + anon_sym_RBRACE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2588), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5221), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [35776] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5184), 1, + anon_sym_async, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5195), 1, + anon_sym_RBRACE, + ACTIONS(5217), 1, + anon_sym_LBRACK, + STATE(2589), 1, + sym_comment, + STATE(4790), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5188), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [35871] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5179), 1, + anon_sym_RBRACE, + ACTIONS(5184), 1, + anon_sym_async, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5217), 1, + anon_sym_LBRACK, + STATE(2590), 1, + sym_comment, + STATE(4790), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5188), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [35966] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5198), 1, + anon_sym_RBRACE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2591), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5221), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [36059] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5179), 1, + anon_sym_RBRACE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2592), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5221), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [36152] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5204), 1, + anon_sym_RBRACE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2593), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5221), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [36245] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5201), 1, + anon_sym_RBRACE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2594), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5221), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [36338] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5184), 1, + anon_sym_async, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5204), 1, + anon_sym_RBRACE, + ACTIONS(5217), 1, + anon_sym_LBRACK, + STATE(2595), 1, + sym_comment, + STATE(4790), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5188), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [36433] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5204), 1, + anon_sym_RBRACE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2596), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [36521] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3365), 1, + anon_sym_namespace, + ACTIONS(3367), 1, + anon_sym_import, + ACTIONS(3369), 1, + anon_sym_var, + ACTIONS(3371), 1, + anon_sym_let, + ACTIONS(3373), 1, + anon_sym_const, + ACTIONS(3375), 1, + anon_sym_class, + ACTIONS(3377), 1, + anon_sym_async, + ACTIONS(3379), 1, + anon_sym_function, + ACTIONS(3381), 1, + anon_sym_declare, + ACTIONS(3385), 1, + anon_sym_abstract, + ACTIONS(3389), 1, + anon_sym_interface, + ACTIONS(3391), 1, + anon_sym_enum, + ACTIONS(5223), 1, + anon_sym_STAR, + ACTIONS(5225), 1, + anon_sym_default, + ACTIONS(5227), 1, + anon_sym_type, + ACTIONS(5229), 1, + anon_sym_EQ, + ACTIONS(5231), 1, + anon_sym_as, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5236), 1, + anon_sym_RBRACE, + ACTIONS(5239), 1, + anon_sym_module, + STATE(2597), 1, + sym_comment, + STATE(5811), 1, + aux_sym_export_statement_repeat1, + STATE(6045), 1, + sym_declaration, + STATE(6052), 1, + sym_internal_module, + STATE(6453), 1, + sym_export_clause, + STATE(6520), 1, + sym_decorator, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + STATE(8032), 1, + sym_namespace_export, + ACTIONS(5190), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(6178), 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, + [36645] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5192), 1, + anon_sym_RBRACE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2598), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [36733] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3365), 1, + anon_sym_namespace, + ACTIONS(3367), 1, + anon_sym_import, + ACTIONS(3369), 1, + anon_sym_var, + ACTIONS(3371), 1, + anon_sym_let, + ACTIONS(3373), 1, + anon_sym_const, + ACTIONS(3375), 1, + anon_sym_class, + ACTIONS(3377), 1, + anon_sym_async, + ACTIONS(3379), 1, + anon_sym_function, + ACTIONS(3381), 1, + anon_sym_declare, + ACTIONS(3385), 1, + anon_sym_abstract, + ACTIONS(3389), 1, + anon_sym_interface, + ACTIONS(3391), 1, + anon_sym_enum, + ACTIONS(5223), 1, + anon_sym_STAR, + ACTIONS(5225), 1, + anon_sym_default, + ACTIONS(5227), 1, + anon_sym_type, + ACTIONS(5229), 1, + anon_sym_EQ, + ACTIONS(5231), 1, + anon_sym_as, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5239), 1, + anon_sym_module, + ACTIONS(5241), 1, + anon_sym_RBRACE, + STATE(2599), 1, + sym_comment, + STATE(5811), 1, + aux_sym_export_statement_repeat1, + STATE(6045), 1, + sym_declaration, + STATE(6052), 1, + sym_internal_module, + STATE(6453), 1, + sym_export_clause, + STATE(6520), 1, + sym_decorator, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + STATE(8032), 1, + sym_namespace_export, + ACTIONS(5190), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(6178), 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, + [36857] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5198), 1, + anon_sym_RBRACE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2600), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [36945] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(982), 1, + anon_sym_var, + ACTIONS(5122), 1, + sym_identifier, + ACTIONS(5126), 1, + anon_sym_default, + ACTIONS(5130), 1, + anon_sym_async, + ACTIONS(5132), 1, + anon_sym_function, + ACTIONS(5134), 1, + anon_sym_AT, + ACTIONS(5136), 1, + anon_sym_readonly, + ACTIONS(5138), 1, + anon_sym_property, + ACTIONS(5140), 1, + anon_sym_signal, + ACTIONS(5142), 1, + anon_sym_required, + ACTIONS(5144), 1, + anon_sym_component, + ACTIONS(5146), 1, + anon_sym_enum, + STATE(2601), 1, + sym_comment, + STATE(4175), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4225), 1, + sym_variable_declaration, + STATE(4239), 1, + sym_function_declaration, + STATE(4241), 1, + sym_generator_function_declaration, + STATE(4247), 1, + sym_ui_object_definition, + STATE(4248), 1, + sym_ui_object_definition_binding, + STATE(4257), 1, + sym_ui_binding, + STATE(4258), 1, + sym_ui_property, + STATE(4260), 1, + sym_ui_required, + STATE(4266), 1, + sym_ui_signal, + STATE(4270), 1, + sym_ui_inline_component, + STATE(4309), 1, + sym__qml_enum_declaration, + STATE(4447), 1, + sym_ui_annotation, + STATE(5501), 1, + aux_sym_ui_property_repeat1, + STATE(5973), 1, + sym_ui_nested_identifier, + STATE(6576), 1, + sym_ui_property_modifier, + ACTIONS(5124), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_on, + [37063] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3365), 1, + anon_sym_namespace, + ACTIONS(3367), 1, + anon_sym_import, + ACTIONS(3369), 1, + anon_sym_var, + ACTIONS(3371), 1, + anon_sym_let, + ACTIONS(3373), 1, + anon_sym_const, + ACTIONS(3375), 1, + anon_sym_class, + ACTIONS(3377), 1, + anon_sym_async, + ACTIONS(3379), 1, + anon_sym_function, + ACTIONS(3381), 1, + anon_sym_declare, + ACTIONS(3385), 1, + anon_sym_abstract, + ACTIONS(3389), 1, + anon_sym_interface, + ACTIONS(3391), 1, + anon_sym_enum, + ACTIONS(5223), 1, + anon_sym_STAR, + ACTIONS(5225), 1, + anon_sym_default, + ACTIONS(5227), 1, + anon_sym_type, + ACTIONS(5229), 1, + anon_sym_EQ, + ACTIONS(5231), 1, + anon_sym_as, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5239), 1, + anon_sym_module, + ACTIONS(5244), 1, + anon_sym_RBRACE, + STATE(2602), 1, + sym_comment, + STATE(5811), 1, + aux_sym_export_statement_repeat1, + STATE(6045), 1, + sym_declaration, + STATE(6052), 1, + sym_internal_module, + STATE(6453), 1, + sym_export_clause, + STATE(6520), 1, + sym_decorator, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + STATE(8032), 1, + sym_namespace_export, + ACTIONS(5190), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(6178), 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, + [37187] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5184), 1, + anon_sym_async, + ACTIONS(5186), 1, + anon_sym_readonly, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2603), 1, + sym_comment, + STATE(3893), 1, + sym_override_modifier, + STATE(4790), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5188), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5247), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [37281] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5179), 1, + anon_sym_RBRACE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2604), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [37369] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5195), 1, + anon_sym_RBRACE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2605), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [37457] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3365), 1, + anon_sym_namespace, + ACTIONS(3367), 1, + anon_sym_import, + ACTIONS(3369), 1, + anon_sym_var, + ACTIONS(3371), 1, + anon_sym_let, + ACTIONS(3373), 1, + anon_sym_const, + ACTIONS(3375), 1, + anon_sym_class, + ACTIONS(3377), 1, + anon_sym_async, + ACTIONS(3379), 1, + anon_sym_function, + ACTIONS(3381), 1, + anon_sym_declare, + ACTIONS(3385), 1, + anon_sym_abstract, + ACTIONS(3389), 1, + anon_sym_interface, + ACTIONS(3391), 1, + anon_sym_enum, + ACTIONS(5223), 1, + anon_sym_STAR, + ACTIONS(5225), 1, + anon_sym_default, + ACTIONS(5227), 1, + anon_sym_type, + ACTIONS(5229), 1, + anon_sym_EQ, + ACTIONS(5231), 1, + anon_sym_as, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5239), 1, + anon_sym_module, + ACTIONS(5251), 1, + anon_sym_RBRACE, + STATE(2606), 1, + sym_comment, + STATE(5811), 1, + aux_sym_export_statement_repeat1, + STATE(6045), 1, + sym_declaration, + STATE(6052), 1, + sym_internal_module, + STATE(6453), 1, + sym_export_clause, + STATE(6520), 1, + sym_decorator, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + STATE(8032), 1, + sym_namespace_export, + ACTIONS(5190), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(6178), 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, + [37581] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5254), 1, + anon_sym_static, + ACTIONS(5256), 1, + anon_sym_readonly, + ACTIONS(5258), 1, + anon_sym_abstract, + STATE(2607), 1, + sym_comment, + STATE(3783), 1, + sym_accessibility_modifier, + STATE(3969), 1, + sym_override_modifier, + STATE(4975), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(1189), 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(4409), 24, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [37673] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3365), 1, + anon_sym_namespace, + ACTIONS(3367), 1, + anon_sym_import, + ACTIONS(3369), 1, + anon_sym_var, + ACTIONS(3371), 1, + anon_sym_let, + ACTIONS(3373), 1, + anon_sym_const, + ACTIONS(3375), 1, + anon_sym_class, + ACTIONS(3377), 1, + anon_sym_async, + ACTIONS(3379), 1, + anon_sym_function, + ACTIONS(3381), 1, + anon_sym_declare, + ACTIONS(3385), 1, + anon_sym_abstract, + ACTIONS(3389), 1, + anon_sym_interface, + ACTIONS(3391), 1, + anon_sym_enum, + ACTIONS(5223), 1, + anon_sym_STAR, + ACTIONS(5225), 1, + anon_sym_default, + ACTIONS(5227), 1, + anon_sym_type, + ACTIONS(5229), 1, + anon_sym_EQ, + ACTIONS(5231), 1, + anon_sym_as, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5239), 1, + anon_sym_module, + ACTIONS(5260), 1, + anon_sym_RBRACE, + STATE(2608), 1, + sym_comment, + STATE(5811), 1, + aux_sym_export_statement_repeat1, + STATE(6045), 1, + sym_declaration, + STATE(6052), 1, + sym_internal_module, + STATE(6453), 1, + sym_export_clause, + STATE(6520), 1, + sym_decorator, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + STATE(8032), 1, + sym_namespace_export, + ACTIONS(5190), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(6178), 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, + [37797] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5263), 1, + anon_sym_static, + ACTIONS(5265), 1, + anon_sym_readonly, + ACTIONS(5267), 1, + anon_sym_abstract, + STATE(2609), 1, + sym_comment, + STATE(3776), 1, + sym_accessibility_modifier, + STATE(3953), 1, + sym_override_modifier, + STATE(5138), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(1189), 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(4409), 24, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [37889] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3365), 1, + anon_sym_namespace, + ACTIONS(3367), 1, + anon_sym_import, + ACTIONS(3369), 1, + anon_sym_var, + ACTIONS(3371), 1, + anon_sym_let, + ACTIONS(3373), 1, + anon_sym_const, + ACTIONS(3375), 1, + anon_sym_class, + ACTIONS(3377), 1, + anon_sym_async, + ACTIONS(3379), 1, + anon_sym_function, + ACTIONS(3381), 1, + anon_sym_declare, + ACTIONS(3385), 1, + anon_sym_abstract, + ACTIONS(3389), 1, + anon_sym_interface, + ACTIONS(3391), 1, + anon_sym_enum, + ACTIONS(5223), 1, + anon_sym_STAR, + ACTIONS(5225), 1, + anon_sym_default, + ACTIONS(5227), 1, + anon_sym_type, + ACTIONS(5229), 1, + anon_sym_EQ, + ACTIONS(5231), 1, + anon_sym_as, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5239), 1, + anon_sym_module, + ACTIONS(5269), 1, + anon_sym_RBRACE, + STATE(2610), 1, + sym_comment, + STATE(5811), 1, + aux_sym_export_statement_repeat1, + STATE(6045), 1, + sym_declaration, + STATE(6052), 1, + sym_internal_module, + STATE(6453), 1, + sym_export_clause, + STATE(6520), 1, + sym_decorator, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + STATE(8032), 1, + sym_namespace_export, + ACTIONS(5190), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(6178), 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, + [38013] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5201), 1, + anon_sym_RBRACE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2611), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [38101] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5272), 1, + anon_sym_static, + ACTIONS(5274), 1, + anon_sym_readonly, + ACTIONS(5276), 1, + anon_sym_abstract, + STATE(2612), 1, + sym_comment, + STATE(3907), 1, + sym_override_modifier, + STATE(5085), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [38188] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5278), 1, + anon_sym_STAR, + ACTIONS(5280), 1, + anon_sym_async, + ACTIONS(5282), 1, + anon_sym_readonly, + STATE(2613), 1, + sym_comment, + STATE(3890), 1, + sym_override_modifier, + STATE(4736), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5284), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [38277] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1168), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2614), 1, + sym_comment, + STATE(3899), 1, + sym_override_modifier, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [38374] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5288), 1, + anon_sym_STAR, + ACTIONS(5290), 1, + anon_sym_async, + ACTIONS(5292), 1, + anon_sym_readonly, + STATE(2615), 1, + sym_comment, + STATE(3866), 1, + sym_override_modifier, + STATE(4692), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5294), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [38463] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5296), 1, + anon_sym_STAR, + ACTIONS(5298), 1, + anon_sym_async, + ACTIONS(5300), 1, + anon_sym_readonly, + STATE(2616), 1, + sym_comment, + STATE(3861), 1, + sym_override_modifier, + STATE(4775), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5302), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [38552] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5304), 1, + anon_sym_static, + ACTIONS(5306), 1, + anon_sym_readonly, + ACTIONS(5308), 1, + anon_sym_abstract, + STATE(2617), 1, + sym_comment, + STATE(3941), 1, + sym_override_modifier, + STATE(5073), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [38639] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(74), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, + anon_sym_COMMA, + ACTIONS(5314), 1, + anon_sym_RBRACE, + STATE(2618), 1, + sym_comment, + STATE(7272), 1, + aux_sym_object_pattern_repeat1, + STATE(8331), 1, + sym__destructuring_pattern, + STATE(8332), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + STATE(7266), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(5310), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [38728] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5288), 1, + anon_sym_STAR, + ACTIONS(5290), 1, + anon_sym_async, + ACTIONS(5316), 1, + anon_sym_abstract, + STATE(2619), 1, + sym_comment, + STATE(4717), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5294), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [38813] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1263), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2620), 1, + sym_comment, + STATE(3899), 1, + sym_override_modifier, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [38910] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2621), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5221), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5247), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [38995] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1247), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2622), 1, + sym_comment, + STATE(3899), 1, + sym_override_modifier, + STATE(5600), 1, + sym__property_name, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [39092] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5318), 1, + anon_sym_STAR, + ACTIONS(5320), 1, + anon_sym_async, + ACTIONS(5322), 1, + anon_sym_readonly, + STATE(2623), 1, + sym_comment, + STATE(3898), 1, + sym_override_modifier, + STATE(4765), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5324), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [39181] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5172), 1, + anon_sym_STAR, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5184), 1, + anon_sym_async, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5217), 1, + anon_sym_LBRACK, + STATE(2624), 1, + sym_comment, + STATE(4790), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5188), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5247), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [39268] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5326), 1, + anon_sym_STAR, + ACTIONS(5328), 1, + anon_sym_async, + ACTIONS(5332), 1, + anon_sym_abstract, + STATE(2625), 1, + sym_comment, + STATE(4716), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5330), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [39353] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5211), 1, + anon_sym_async, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5334), 1, + anon_sym_abstract, + STATE(2626), 1, + sym_comment, + STATE(4733), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5215), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [39438] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5336), 1, + anon_sym_STAR, + ACTIONS(5338), 1, + anon_sym_async, + ACTIONS(5342), 1, + anon_sym_abstract, + STATE(2627), 1, + sym_comment, + STATE(4707), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5340), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [39523] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + ACTIONS(5344), 1, + anon_sym_RBRACE, + STATE(2628), 1, + sym_comment, + STATE(3899), 1, + sym_override_modifier, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [39620] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5326), 1, + anon_sym_STAR, + ACTIONS(5328), 1, + anon_sym_async, + ACTIONS(5346), 1, + anon_sym_readonly, + STATE(2629), 1, + sym_comment, + STATE(3882), 1, + sym_override_modifier, + STATE(4714), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5330), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [39709] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + ACTIONS(5348), 1, + anon_sym_RBRACE, + STATE(2630), 1, + sym_comment, + STATE(3899), 1, + sym_override_modifier, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [39806] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + ACTIONS(5350), 1, + anon_sym_RBRACE, + STATE(2631), 1, + sym_comment, + STATE(3899), 1, + sym_override_modifier, + STATE(5600), 1, + sym__property_name, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [39903] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1249), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2632), 1, + sym_comment, + STATE(3899), 1, + sym_override_modifier, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [40000] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(74), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(4790), 1, + anon_sym_LBRACK, + ACTIONS(5312), 1, + anon_sym_COMMA, + ACTIONS(5354), 1, + anon_sym_RBRACE, + STATE(2633), 1, + sym_comment, + STATE(6599), 1, + aux_sym_object_pattern_repeat1, + STATE(8331), 1, + sym__destructuring_pattern, + STATE(8332), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + STATE(6678), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(5352), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [40089] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5336), 1, + anon_sym_STAR, + ACTIONS(5338), 1, + anon_sym_async, + ACTIONS(5356), 1, + anon_sym_readonly, + STATE(2634), 1, + sym_comment, + STATE(3885), 1, + sym_override_modifier, + STATE(4707), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5340), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [40178] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1249), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2635), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [40266] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5198), 1, + anon_sym_RBRACE, + STATE(2636), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [40340] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + ACTIONS(5350), 1, + anon_sym_RBRACE, + STATE(2637), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [40430] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2638), 1, + sym_comment, + ACTIONS(2376), 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(2378), 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, + [40492] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2639), 1, + sym_comment, + ACTIONS(2380), 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(2382), 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, + [40554] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5358), 1, + anon_sym_STAR, + STATE(2640), 1, + sym_comment, + STATE(5563), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5360), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [40634] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + ACTIONS(5350), 1, + anon_sym_RBRACE, + STATE(2641), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [40722] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_STAR, + STATE(2642), 1, + sym_comment, + STATE(5720), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5362), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [40802] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5364), 1, + anon_sym_STAR, + ACTIONS(5366), 1, + anon_sym_async, + STATE(2643), 1, + sym_comment, + STATE(4704), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5368), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [40884] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + ACTIONS(5344), 1, + anon_sym_RBRACE, + STATE(2644), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [40972] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2518), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_COMMA, + ACTIONS(5374), 1, + anon_sym_RBRACE, + ACTIONS(5376), 1, + anon_sym_async, + ACTIONS(5378), 1, + anon_sym_static, + ACTIONS(5380), 1, + anon_sym_readonly, + ACTIONS(5386), 1, + anon_sym_override, + STATE(2645), 1, + sym_comment, + STATE(3779), 1, + sym_accessibility_modifier, + STATE(3869), 1, + sym_override_modifier, + STATE(5351), 1, + sym__property_name, + STATE(7233), 1, + aux_sym_object_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5382), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(5384), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(7231), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5370), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [41072] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + ACTIONS(5344), 1, + anon_sym_RBRACE, + STATE(2646), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [41162] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5278), 1, + anon_sym_STAR, + ACTIONS(5280), 1, + anon_sym_async, + STATE(2647), 1, + sym_comment, + STATE(4736), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5284), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [41244] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + ACTIONS(5348), 1, + anon_sym_RBRACE, + STATE(2648), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [41332] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5364), 1, + anon_sym_STAR, + STATE(2649), 1, + sym_comment, + STATE(5721), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5388), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [41412] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5195), 1, + anon_sym_RBRACE, + STATE(2650), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [41486] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5336), 1, + anon_sym_STAR, + STATE(2651), 1, + sym_comment, + STATE(5678), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5390), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [41566] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5336), 1, + anon_sym_STAR, + ACTIONS(5338), 1, + anon_sym_async, + STATE(2652), 1, + sym_comment, + STATE(4707), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5340), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [41648] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5195), 1, + anon_sym_RBRACE, + STATE(2653), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [41722] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + ACTIONS(5348), 1, + anon_sym_RBRACE, + STATE(2654), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [41812] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5326), 1, + anon_sym_STAR, + STATE(2655), 1, + sym_comment, + STATE(5607), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5392), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [41892] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5394), 1, + anon_sym_STAR, + ACTIONS(5396), 1, + anon_sym_async, + STATE(2656), 1, + sym_comment, + STATE(4800), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5398), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [41974] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5192), 1, + anon_sym_RBRACE, + STATE(2657), 1, + sym_comment, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [42048] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1249), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2658), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [42138] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5217), 1, + anon_sym_LBRACK, + ACTIONS(5296), 1, + anon_sym_STAR, + ACTIONS(5298), 1, + anon_sym_async, + STATE(2659), 1, + sym_comment, + STATE(4775), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5302), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [42220] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2660), 1, + sym_comment, + STATE(5663), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5400), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [42300] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5364), 1, + anon_sym_STAR, + ACTIONS(5366), 1, + anon_sym_async, + STATE(2661), 1, + sym_comment, + STATE(4727), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5368), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [42382] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2662), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5247), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [42462] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5278), 1, + anon_sym_STAR, + STATE(2663), 1, + sym_comment, + STATE(5644), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5402), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [42542] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5404), 1, + anon_sym_STAR, + ACTIONS(5406), 1, + anon_sym_async, + STATE(2664), 1, + sym_comment, + STATE(4711), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5408), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [42624] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5410), 1, + anon_sym_STAR, + ACTIONS(5412), 1, + anon_sym_async, + STATE(2665), 1, + sym_comment, + STATE(4791), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5414), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [42706] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5404), 1, + anon_sym_STAR, + STATE(2666), 1, + sym_comment, + STATE(5653), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5416), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [42786] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5318), 1, + anon_sym_STAR, + STATE(2667), 1, + sym_comment, + STATE(5602), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5418), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [42866] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5198), 1, + anon_sym_RBRACE, + STATE(2668), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [42940] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5318), 1, + anon_sym_STAR, + ACTIONS(5320), 1, + anon_sym_async, + STATE(2669), 1, + sym_comment, + STATE(4765), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5324), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [43022] = 31, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3365), 1, + anon_sym_namespace, + ACTIONS(3367), 1, + anon_sym_import, + ACTIONS(3369), 1, + anon_sym_var, + ACTIONS(3371), 1, + anon_sym_let, + ACTIONS(3373), 1, + anon_sym_const, + ACTIONS(3375), 1, + anon_sym_class, + ACTIONS(3377), 1, + anon_sym_async, + ACTIONS(3379), 1, + anon_sym_function, + ACTIONS(3381), 1, + anon_sym_declare, + ACTIONS(3385), 1, + anon_sym_abstract, + ACTIONS(3389), 1, + anon_sym_interface, + ACTIONS(3391), 1, + anon_sym_enum, + ACTIONS(5223), 1, + anon_sym_STAR, + ACTIONS(5225), 1, + anon_sym_default, + ACTIONS(5227), 1, + anon_sym_type, + ACTIONS(5231), 1, + anon_sym_as, + ACTIONS(5239), 1, + anon_sym_module, + ACTIONS(5420), 1, + anon_sym_EQ, + STATE(2670), 1, + sym_comment, + STATE(5811), 1, + aux_sym_export_statement_repeat1, + STATE(6045), 1, + sym_declaration, + STATE(6052), 1, + sym_internal_module, + STATE(6453), 1, + sym_export_clause, + STATE(6520), 1, + sym_decorator, + STATE(8032), 1, + sym_namespace_export, + ACTIONS(5190), 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(6178), 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, + [43136] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5422), 1, + anon_sym_STAR, + STATE(2671), 1, + sym_comment, + STATE(5722), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5424), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [43216] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1247), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2672), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [43306] = 32, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3365), 1, + anon_sym_namespace, + ACTIONS(3367), 1, + anon_sym_import, + ACTIONS(3369), 1, + anon_sym_var, + ACTIONS(3371), 1, + anon_sym_let, + ACTIONS(3373), 1, + anon_sym_const, + ACTIONS(3375), 1, + anon_sym_class, + ACTIONS(3377), 1, + anon_sym_async, + ACTIONS(3379), 1, + anon_sym_function, + ACTIONS(3381), 1, + anon_sym_declare, + ACTIONS(3385), 1, + anon_sym_abstract, + ACTIONS(3389), 1, + anon_sym_interface, + ACTIONS(3391), 1, + anon_sym_enum, + ACTIONS(5223), 1, + anon_sym_STAR, + ACTIONS(5225), 1, + anon_sym_default, + ACTIONS(5227), 1, + anon_sym_type, + ACTIONS(5229), 1, + anon_sym_EQ, + ACTIONS(5231), 1, + anon_sym_as, + ACTIONS(5239), 1, + anon_sym_module, + STATE(2673), 1, + sym_comment, + STATE(5811), 1, + aux_sym_export_statement_repeat1, + STATE(6045), 1, + sym_declaration, + STATE(6052), 1, + sym_internal_module, + STATE(6453), 1, + sym_export_clause, + STATE(6520), 1, + sym_decorator, + STATE(8032), 1, + sym_namespace_export, + ACTIONS(5426), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5190), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(6178), 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, + [43422] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1263), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2674), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [43512] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, + anon_sym_STAR, + STATE(2675), 1, + sym_comment, + STATE(5654), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5430), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [43592] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1247), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2676), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [43680] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1263), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2677), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [43768] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5201), 1, + anon_sym_RBRACE, + STATE(2678), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [43842] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_STAR, + STATE(2679), 1, + sym_comment, + STATE(5729), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5434), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [43922] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5201), 1, + anon_sym_RBRACE, + STATE(2680), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [43996] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5436), 1, + anon_sym_STAR, + ACTIONS(5438), 1, + anon_sym_async, + STATE(2681), 1, + sym_comment, + STATE(4796), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5440), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44078] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5442), 1, + anon_sym_STAR, + STATE(2682), 1, + sym_comment, + STATE(5515), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5444), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44158] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5422), 1, + anon_sym_STAR, + ACTIONS(5446), 1, + anon_sym_async, + STATE(2683), 1, + sym_comment, + STATE(4726), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5448), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44240] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(74), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(4790), 1, + anon_sym_LBRACK, + STATE(2684), 1, + sym_comment, + STATE(8331), 1, + sym__destructuring_pattern, + STATE(8332), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5452), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + STATE(7696), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(5450), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44324] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1168), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2685), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44412] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5288), 1, + anon_sym_STAR, + ACTIONS(5290), 1, + anon_sym_async, + STATE(2686), 1, + sym_comment, + STATE(4718), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5294), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44494] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5454), 1, + anon_sym_STAR, + ACTIONS(5456), 1, + anon_sym_async, + STATE(2687), 1, + sym_comment, + STATE(4697), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5458), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44576] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5436), 1, + anon_sym_STAR, + STATE(2688), 1, + sym_comment, + STATE(5665), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5460), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44656] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5179), 1, + anon_sym_RBRACE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2689), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44730] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5179), 1, + anon_sym_RBRACE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2690), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44804] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5204), 1, + anon_sym_RBRACE, + STATE(2691), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44878] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5462), 1, + anon_sym_STAR, + STATE(2692), 1, + sym_comment, + STATE(5693), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5464), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44958] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5288), 1, + anon_sym_STAR, + ACTIONS(5290), 1, + anon_sym_async, + STATE(2693), 1, + sym_comment, + STATE(4715), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5294), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [45040] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5466), 1, + anon_sym_STAR, + ACTIONS(5468), 1, + anon_sym_async, + STATE(2694), 1, + sym_comment, + STATE(4756), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5470), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [45122] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1168), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2695), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [45212] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5204), 1, + anon_sym_RBRACE, + STATE(2696), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [45286] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5364), 1, + anon_sym_STAR, + ACTIONS(5366), 1, + anon_sym_async, + STATE(2697), 1, + sym_comment, + STATE(4700), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5368), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [45368] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5296), 1, + anon_sym_STAR, + STATE(2698), 1, + sym_comment, + STATE(5724), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5472), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [45448] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5410), 1, + anon_sym_STAR, + STATE(2699), 1, + sym_comment, + STATE(5671), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5474), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [45528] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5454), 1, + anon_sym_STAR, + STATE(2700), 1, + sym_comment, + STATE(5620), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5476), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [45608] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5466), 1, + anon_sym_STAR, + STATE(2701), 1, + sym_comment, + STATE(5636), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5478), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [45688] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5176), 1, + anon_sym_COMMA, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5192), 1, + anon_sym_RBRACE, + STATE(2702), 1, + sym_comment, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [45762] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2703), 1, + sym_comment, + STATE(5663), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [45837] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2704), 1, + sym_comment, + STATE(5671), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [45912] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2705), 1, + sym_comment, + STATE(5607), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [45987] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5490), 1, + anon_sym_QMARK_DOT, + ACTIONS(5492), 1, + anon_sym_LT, + STATE(2706), 1, + sym_comment, + STATE(2896), 1, + sym_type_arguments, + STATE(3108), 1, + sym_arguments, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5480), 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(5482), 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, + [46064] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + ACTIONS(5372), 1, + anon_sym_COMMA, + ACTIONS(5494), 1, + anon_sym_RBRACE, + STATE(2707), 1, + sym_comment, + STATE(3899), 1, + sym_override_modifier, + STATE(5600), 1, + sym__property_name, + STATE(7278), 1, + aux_sym_object_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [46155] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2708), 1, + sym_comment, + STATE(5620), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [46230] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2709), 1, + sym_comment, + STATE(5636), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [46305] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1247), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2710), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [46388] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1249), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2711), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [46471] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2712), 1, + sym_comment, + STATE(5724), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [46546] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5350), 1, + anon_sym_RBRACE, + STATE(2713), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [46629] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2714), 1, + sym_comment, + STATE(5085), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [46704] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2715), 1, + sym_comment, + STATE(5722), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [46779] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1168), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2716), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [46862] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5492), 1, + anon_sym_LT, + ACTIONS(5498), 1, + anon_sym_DOT, + ACTIONS(5500), 1, + anon_sym_is, + STATE(2717), 1, + sym_comment, + STATE(2797), 1, + sym_type_arguments, + ACTIONS(5496), 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(4546), 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, + [46931] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2518), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5506), 1, + anon_sym_async, + ACTIONS(5508), 1, + anon_sym_static, + ACTIONS(5510), 1, + anon_sym_readonly, + ACTIONS(5516), 1, + anon_sym_override, + STATE(2718), 1, + sym_comment, + STATE(3779), 1, + sym_accessibility_modifier, + STATE(3869), 1, + sym_override_modifier, + STATE(5351), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5504), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5512), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(5514), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(8090), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5502), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47026] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2719), 1, + sym_comment, + STATE(5653), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47101] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1263), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2720), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47184] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5492), 1, + anon_sym_LT, + ACTIONS(5522), 1, + anon_sym_DOT, + STATE(2721), 1, + sym_comment, + STATE(2785), 1, + sym_arguments, + STATE(2786), 1, + sym_type_arguments, + ACTIONS(5518), 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(5520), 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, + [47255] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5492), 1, + anon_sym_LT, + ACTIONS(5528), 1, + anon_sym_DOT, + STATE(2722), 1, + sym_comment, + STATE(2781), 1, + sym_arguments, + STATE(2782), 1, + sym_type_arguments, + ACTIONS(5524), 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(5526), 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, + [47326] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2723), 1, + sym_comment, + STATE(5543), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47401] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2724), 1, + sym_comment, + STATE(5720), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47476] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2725), 1, + sym_comment, + ACTIONS(1189), 10, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47539] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5492), 1, + anon_sym_LT, + ACTIONS(5530), 1, + anon_sym_DOT, + STATE(2726), 1, + sym_comment, + STATE(2836), 1, + sym_type_arguments, + STATE(2838), 1, + sym_arguments, + ACTIONS(4505), 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(4495), 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, + [47610] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2727), 1, + sym_comment, + STATE(5665), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47685] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2728), 1, + sym_comment, + STATE(5067), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47760] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2729), 1, + sym_comment, + STATE(5693), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47835] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2730), 1, + sym_comment, + STATE(5705), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47910] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2731), 1, + sym_comment, + STATE(5729), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47985] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2732), 1, + sym_comment, + STATE(5644), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48060] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2733), 1, + sym_comment, + STATE(5563), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48135] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2734), 1, + sym_comment, + STATE(5515), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48210] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2735), 1, + sym_comment, + STATE(5602), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48285] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2736), 1, + sym_comment, + STATE(5678), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48360] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2737), 1, + sym_comment, + STATE(5654), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48435] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2738), 1, + sym_comment, + STATE(5721), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 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(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48510] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2739), 1, + sym_comment, + STATE(3899), 1, + sym_override_modifier, + STATE(5600), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5532), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48599] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5348), 1, + anon_sym_RBRACE, + STATE(2740), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48682] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5344), 1, + anon_sym_RBRACE, + STATE(2741), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48765] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5535), 1, + anon_sym_readonly, + STATE(2742), 1, + sym_comment, + STATE(3924), 1, + sym_override_modifier, + STATE(5067), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48845] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2743), 1, + sym_comment, + ACTIONS(2380), 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(2382), 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, + [48905] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5537), 1, + anon_sym_readonly, + STATE(2744), 1, + sym_comment, + STATE(3960), 1, + sym_override_modifier, + STATE(5157), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48985] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, + anon_sym_LBRACE, + ACTIONS(5541), 1, + anon_sym_DOT, + STATE(2745), 1, + sym_comment, + STATE(3097), 1, + sym_statement_block, + ACTIONS(2318), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2324), 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, + [49051] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, + anon_sym_LBRACE, + ACTIONS(5543), 1, + anon_sym_DOT, + STATE(2746), 1, + sym_comment, + STATE(3097), 1, + sym_statement_block, + ACTIONS(2318), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2324), 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, + [49117] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, + anon_sym_LBRACE, + STATE(2747), 1, + sym_comment, + STATE(3097), 1, + sym_statement_block, + ACTIONS(2318), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2324), 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, + [49181] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5545), 1, + anon_sym_readonly, + STATE(2748), 1, + sym_comment, + STATE(3907), 1, + sym_override_modifier, + STATE(5085), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [49261] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2749), 1, + sym_comment, + ACTIONS(2376), 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(2378), 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, + [49321] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5342), 1, + anon_sym_abstract, + STATE(2750), 1, + sym_comment, + STATE(5085), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [49397] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + ACTIONS(5372), 1, + anon_sym_COMMA, + ACTIONS(5494), 1, + anon_sym_RBRACE, + STATE(2751), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7278), 1, + aux_sym_object_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [49481] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2752), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5532), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [49561] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5547), 1, + anon_sym_readonly, + STATE(2753), 1, + sym_comment, + STATE(3964), 1, + sym_override_modifier, + STATE(5022), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [49641] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5553), 1, + anon_sym_is, + STATE(2754), 1, + sym_comment, + ACTIONS(5549), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5551), 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, + [49703] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2755), 1, + sym_comment, + STATE(3899), 1, + sym_override_modifier, + STATE(5600), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5555), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [49789] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5500), 1, + anon_sym_is, + STATE(2756), 1, + sym_comment, + ACTIONS(5557), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5559), 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, + [49851] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2757), 1, + sym_comment, + ACTIONS(1189), 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(2574), 37, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [49913] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2758), 1, + sym_comment, + ACTIONS(4315), 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(5561), 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, + [49973] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + ACTIONS(5372), 1, + anon_sym_COMMA, + ACTIONS(5494), 1, + anon_sym_RBRACE, + STATE(2759), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7278), 1, + aux_sym_object_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50055] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5500), 1, + anon_sym_is, + STATE(2760), 1, + sym_comment, + ACTIONS(5563), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5565), 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, + [50117] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5567), 1, + anon_sym_abstract, + STATE(2761), 1, + sym_comment, + STATE(5162), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50193] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(4768), 1, + anon_sym_AT, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5569), 1, + anon_sym_STAR, + ACTIONS(5571), 1, + anon_sym_async, + ACTIONS(5573), 1, + anon_sym_static, + ACTIONS(5575), 1, + anon_sym_readonly, + ACTIONS(5579), 1, + anon_sym_declare, + ACTIONS(5581), 1, + anon_sym_abstract, + STATE(2762), 1, + sym_comment, + STATE(3258), 1, + sym_method_definition, + STATE(3640), 1, + sym_accessibility_modifier, + STATE(3827), 1, + aux_sym_export_statement_repeat1, + STATE(3858), 1, + sym_override_modifier, + STATE(3950), 1, + sym_decorator, + STATE(4730), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5577), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4778), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(4409), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50293] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5583), 1, + anon_sym_abstract, + STATE(2763), 1, + sym_comment, + STATE(5067), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50369] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5585), 1, + anon_sym_readonly, + STATE(2764), 1, + sym_comment, + STATE(3979), 1, + sym_override_modifier, + STATE(5140), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50449] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5587), 1, + anon_sym_abstract, + STATE(2765), 1, + sym_comment, + STATE(5137), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50525] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2766), 1, + sym_comment, + ACTIONS(5247), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50591] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2767), 1, + sym_comment, + ACTIONS(5247), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1189), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50657] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + ACTIONS(5589), 1, + anon_sym_abstract, + STATE(2768), 1, + sym_comment, + STATE(5011), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50733] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2769), 1, + sym_comment, + ACTIONS(2215), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2267), 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, + [50793] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2770), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5532), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50875] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5591), 1, + sym__automatic_semicolon, + STATE(2771), 1, + sym_comment, + ACTIONS(2285), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2374), 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, + [50939] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5492), 1, + anon_sym_LT, + STATE(2772), 1, + sym_comment, + STATE(2955), 1, + sym_type_arguments, + ACTIONS(5549), 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(5551), 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, + [51003] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2773), 1, + sym_comment, + ACTIONS(5593), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5595), 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, + [51063] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + STATE(2774), 1, + sym_comment, + STATE(3139), 2, + sym_template_string, + sym_arguments, + ACTIONS(5597), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5599), 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, + [51129] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2775), 1, + sym_comment, + ACTIONS(4319), 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(5603), 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, + [51189] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5492), 1, + anon_sym_LT, + ACTIONS(5498), 1, + anon_sym_DOT, + STATE(2776), 1, + sym_comment, + STATE(2797), 1, + sym_type_arguments, + ACTIONS(5496), 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(4546), 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, + [51255] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2777), 1, + sym_comment, + ACTIONS(4323), 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(5605), 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, + [51315] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2778), 1, + sym_comment, + ACTIONS(5607), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5609), 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, + [51374] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2779), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5615), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [51491] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(5661), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(2780), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + STATE(8557), 1, + sym_type_annotation, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51616] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2781), 1, + sym_comment, + ACTIONS(5663), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5665), 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, + [51675] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2782), 1, + sym_comment, + ACTIONS(5667), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5669), 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, + [51734] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(5671), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(2783), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + STATE(8562), 1, + sym_type_annotation, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51859] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2784), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5673), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [51976] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2785), 1, + sym_comment, + ACTIONS(5675), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5677), 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, + [52035] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2786), 1, + sym_comment, + ACTIONS(5679), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5681), 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, + [52094] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5689), 1, + anon_sym_extends, + STATE(2787), 1, + sym_comment, + ACTIONS(5683), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5686), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2287), 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(2293), 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, + [52161] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2788), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5691), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [52278] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2789), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5693), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [52395] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5591), 1, + sym__automatic_semicolon, + STATE(2790), 1, + sym_comment, + ACTIONS(2285), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2374), 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, + [52456] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(5707), 1, + anon_sym_extends, + STATE(2791), 1, + sym_comment, + ACTIONS(5701), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5704), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5695), 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(5699), 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, + [52523] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2792), 1, + sym_comment, + ACTIONS(5709), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5711), 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, + [52582] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5717), 1, + anon_sym_LBRACK, + ACTIONS(5721), 1, + anon_sym_extends, + STATE(2793), 1, + sym_comment, + ACTIONS(5719), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5713), 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(5715), 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, + [52647] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2794), 1, + sym_comment, + ACTIONS(5723), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5725), 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, + [52706] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_PIPE, + ACTIONS(5735), 1, + anon_sym_extends, + STATE(2795), 1, + sym_comment, + ACTIONS(5727), 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(5729), 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, + [52771] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5737), 1, + sym__automatic_semicolon, + STATE(2796), 1, + sym_comment, + ACTIONS(2368), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2370), 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, + [52832] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2797), 1, + sym_comment, + ACTIONS(5739), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5741), 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, + [52891] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2798), 1, + sym_comment, + ACTIONS(5743), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5745), 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, + [52950] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2799), 1, + sym_comment, + ACTIONS(5747), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 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, + [53009] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1263), 1, + anon_sym_RBRACE, + ACTIONS(5174), 1, + anon_sym_EQ, + STATE(2800), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [53078] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1263), 1, + anon_sym_RBRACE, + ACTIONS(5174), 1, + anon_sym_EQ, + STATE(2801), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [53147] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2802), 1, + sym_comment, + ACTIONS(5751), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5753), 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, + [53206] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2803), 1, + sym_comment, + ACTIONS(5755), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5757), 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, + [53265] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_PIPE, + ACTIONS(5735), 1, + anon_sym_extends, + STATE(2804), 1, + sym_comment, + ACTIONS(5755), 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(5757), 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, + [53330] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5731), 1, + anon_sym_AMP, + STATE(2805), 1, + sym_comment, + ACTIONS(5759), 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(5761), 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, + [53391] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2806), 1, + sym_comment, + ACTIONS(4325), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5763), 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, + [53450] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2807), 1, + sym_comment, + ACTIONS(4325), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5763), 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, + [53509] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2808), 1, + sym_comment, + ACTIONS(4397), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5765), 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, + [53568] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2809), 1, + sym_comment, + ACTIONS(4397), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5765), 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, + [53627] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2810), 1, + sym_comment, + ACTIONS(4399), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5767), 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, + [53686] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2811), 1, + sym_comment, + ACTIONS(5769), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5771), 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, + [53745] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5643), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(2812), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5773), 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(5775), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [53816] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2813), 1, + sym_comment, + STATE(5014), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [53889] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5731), 1, + anon_sym_AMP, + STATE(2814), 1, + sym_comment, + ACTIONS(5777), 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(5779), 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, + [53950] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2815), 1, + sym_comment, + ACTIONS(5781), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5783), 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, + [54009] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(5785), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(2816), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + STATE(8583), 1, + sym_type_annotation, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [54134] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2817), 1, + sym_comment, + ACTIONS(5787), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5789), 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, + [54193] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2818), 1, + sym_comment, + ACTIONS(5791), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5707), 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, + [54252] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2819), 1, + sym_comment, + STATE(5134), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [54325] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2820), 1, + sym_comment, + ACTIONS(5563), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5565), 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, + [54384] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2821), 1, + sym_comment, + STATE(5027), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [54457] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2822), 1, + sym_comment, + ACTIONS(3518), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5793), 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, + [54516] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2823), 1, + sym_comment, + ACTIONS(5795), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5797), 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, + [54575] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5803), 1, + anon_sym_DOT, + STATE(2824), 1, + sym_comment, + ACTIONS(5799), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5801), 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, + [54636] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2825), 1, + sym_comment, + STATE(5165), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [54709] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(5806), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(2826), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + STATE(8203), 1, + sym_type_annotation, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [54834] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2827), 1, + sym_comment, + STATE(5064), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [54907] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2828), 1, + sym_comment, + ACTIONS(5808), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5810), 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, + [54966] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2829), 1, + sym_comment, + ACTIONS(5812), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5814), 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, + [55025] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2830), 1, + sym_comment, + ACTIONS(5751), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5753), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4469), 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(4473), 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, + [55088] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2831), 1, + sym_comment, + ACTIONS(5816), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5818), 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, + [55147] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2832), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5820), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [55264] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2833), 1, + sym_comment, + ACTIONS(5812), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5814), 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, + [55323] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2834), 1, + sym_comment, + ACTIONS(5816), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5818), 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, + [55382] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2835), 1, + sym_comment, + ACTIONS(5822), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5824), 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, + [55441] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2836), 1, + sym_comment, + ACTIONS(5826), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [55500] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2837), 1, + sym_comment, + ACTIONS(5822), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5824), 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, + [55559] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2838), 1, + sym_comment, + ACTIONS(5830), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5832), 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, + [55618] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2839), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5834), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [55735] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5830), 1, + anon_sym_QMARK, + ACTIONS(5832), 1, + anon_sym_extends, + STATE(2840), 1, + sym_comment, + ACTIONS(5836), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5838), 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, + [55798] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_PIPE, + ACTIONS(5735), 1, + anon_sym_extends, + STATE(2841), 1, + sym_comment, + ACTIONS(5840), 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(5842), 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, + [55863] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(5844), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(2842), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + STATE(8578), 1, + sym_type_annotation, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [55988] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2843), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5846), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [56105] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2844), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5848), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [56222] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2845), 1, + sym_comment, + STATE(5103), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [56295] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5372), 1, + anon_sym_COMMA, + ACTIONS(5494), 1, + anon_sym_RBRACE, + STATE(2846), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + STATE(7278), 1, + aux_sym_object_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [56372] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(2847), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [56463] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2848), 1, + sym_comment, + STATE(5035), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [56536] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5348), 1, + anon_sym_RBRACE, + STATE(2849), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [56605] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2850), 1, + sym_comment, + ACTIONS(3510), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [56664] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5348), 1, + anon_sym_RBRACE, + STATE(2851), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [56733] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2852), 1, + sym_comment, + ACTIONS(5856), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5858), 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, + [56792] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5860), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(2853), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [56873] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2854), 1, + sym_comment, + STATE(4983), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [56946] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2855), 1, + sym_comment, + 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(5865), 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, + [57005] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2856), 1, + sym_comment, + ACTIONS(5856), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5858), 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, + [57064] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2857), 1, + sym_comment, + STATE(5145), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [57137] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5717), 1, + anon_sym_LBRACK, + STATE(2858), 1, + sym_comment, + ACTIONS(5867), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5869), 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, + [57198] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2859), 1, + sym_comment, + 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(5865), 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, + [57257] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2860), 1, + sym_comment, + ACTIONS(5871), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5873), 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, + [57316] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2861), 1, + sym_comment, + ACTIONS(5875), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5877), 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, + [57375] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_PIPE, + ACTIONS(5735), 1, + anon_sym_extends, + STATE(2862), 1, + sym_comment, + ACTIONS(5879), 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(5881), 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, + [57440] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5344), 1, + anon_sym_RBRACE, + STATE(2863), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [57509] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5344), 1, + anon_sym_RBRACE, + STATE(2864), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [57578] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_PIPE, + ACTIONS(5735), 1, + anon_sym_extends, + STATE(2865), 1, + sym_comment, + ACTIONS(5883), 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(5885), 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, + [57643] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_BANG, + STATE(2774), 1, + sym_type_arguments, + STATE(2866), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [57748] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_BANG, + STATE(2774), 1, + sym_type_arguments, + STATE(2867), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [57855] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2868), 1, + sym_comment, + ACTIONS(3498), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5689), 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, + [57914] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2869), 1, + sym_comment, + STATE(5047), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [57987] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(5887), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(2870), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + STATE(8714), 1, + sym_type_annotation, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58112] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2871), 1, + sym_comment, + ACTIONS(4407), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5889), 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, + [58171] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2872), 1, + sym_comment, + STATE(5013), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [58244] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5895), 1, + anon_sym_extends, + STATE(2873), 1, + sym_comment, + ACTIONS(5891), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5893), 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, + [58305] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2874), 1, + sym_comment, + ACTIONS(4389), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5897), 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, + [58364] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2875), 1, + sym_comment, + ACTIONS(4351), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5899), 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, + [58423] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_PIPE, + ACTIONS(5735), 1, + anon_sym_extends, + STATE(2876), 1, + sym_comment, + ACTIONS(5901), 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(5903), 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, + [58488] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(5905), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(2877), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + STATE(8675), 1, + sym_type_annotation, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58613] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5551), 1, + anon_sym_extends, + STATE(2878), 1, + sym_comment, + ACTIONS(5901), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5903), 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, + [58674] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(5907), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(2879), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + STATE(8421), 1, + sym_type_annotation, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [58799] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5860), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(2880), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [58886] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(2881), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5852), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5850), 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, + [58985] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2882), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5555), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [59064] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2883), 1, + sym_comment, + ACTIONS(5909), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5911), 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, + [59123] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(2884), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5852), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [59224] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(2885), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5555), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [59301] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2886), 1, + sym_comment, + STATE(4973), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [59374] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(2887), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5852), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [59477] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2888), 1, + sym_comment, + ACTIONS(5913), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5915), 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, + [59536] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_PIPE, + ACTIONS(5735), 1, + anon_sym_extends, + STATE(2889), 1, + sym_comment, + ACTIONS(5913), 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(5915), 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, + [59601] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_PIPE, + ACTIONS(5735), 1, + anon_sym_extends, + STATE(2890), 1, + sym_comment, + ACTIONS(5917), 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(5919), 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, + [59666] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5925), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(2891), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5921), 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(5923), 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, + [59743] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5731), 1, + anon_sym_AMP, + ACTIONS(5733), 1, + anon_sym_PIPE, + ACTIONS(5735), 1, + anon_sym_extends, + STATE(2892), 1, + sym_comment, + ACTIONS(5928), 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(5930), 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, + [59808] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5860), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(2893), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [59893] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2894), 1, + sym_comment, + ACTIONS(3526), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5932), 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, + [59952] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2895), 1, + sym_comment, + STATE(5034), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [60025] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + STATE(2896), 1, + sym_comment, + STATE(3001), 1, + sym_arguments, + ACTIONS(5934), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5936), 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, + [60088] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2897), 1, + sym_comment, + ACTIONS(5938), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5940), 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, + [60147] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2898), 1, + sym_comment, + ACTIONS(5942), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5944), 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, + [60206] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2899), 1, + sym_comment, + ACTIONS(1189), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [60267] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2900), 1, + sym_comment, + ACTIONS(5942), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5944), 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, + [60326] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2901), 1, + sym_comment, + ACTIONS(5942), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5944), 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, + [60385] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2902), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5946), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [60502] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2903), 1, + sym_comment, + ACTIONS(5948), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5950), 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, + [60561] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2904), 1, + sym_comment, + ACTIONS(5948), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5950), 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, + [60620] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5860), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(2905), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [60707] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2906), 1, + sym_comment, + ACTIONS(5948), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5950), 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, + [60766] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5956), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(2907), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5952), 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(5954), 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, + [60851] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(2908), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5852), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 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, + [60946] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5852), 1, + anon_sym_BANG, + STATE(2774), 1, + sym_type_arguments, + STATE(2909), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [61055] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1168), 1, + anon_sym_RBRACE, + ACTIONS(5174), 1, + anon_sym_EQ, + STATE(2910), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [61124] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2911), 1, + sym_comment, + ACTIONS(5959), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5961), 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, + [61183] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2912), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5963), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [61300] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5969), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(2913), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5965), 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(5967), 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, + [61379] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2914), 1, + sym_comment, + ACTIONS(5959), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5961), 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, + [61438] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2915), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5972), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [61555] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2916), 1, + sym_comment, + STATE(5120), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [61628] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2917), 1, + sym_comment, + STATE(4995), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [61701] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2918), 1, + sym_comment, + ACTIONS(5974), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5976), 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, + [61760] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2919), 1, + sym_comment, + ACTIONS(5959), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5961), 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, + [61819] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2920), 1, + sym_comment, + ACTIONS(2384), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2386), 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, + [61878] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2921), 1, + sym_comment, + ACTIONS(2396), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2398), 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, + [61937] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2922), 1, + sym_comment, + ACTIONS(5607), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5609), 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, + [61996] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5982), 1, + anon_sym_DOT, + STATE(2923), 1, + sym_comment, + ACTIONS(5978), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5980), 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, + [62057] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2924), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5984), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [62174] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2925), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5986), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [62291] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2926), 1, + sym_comment, + ACTIONS(5988), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5990), 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, + [62350] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2927), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5992), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [62467] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5190), 1, + sym__automatic_semicolon, + STATE(2928), 1, + sym_comment, + STATE(5130), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4409), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [62540] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + STATE(2929), 1, + sym_comment, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, + [62601] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2930), 1, + sym_comment, + ACTIONS(5994), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5996), 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, + [62660] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5490), 1, + anon_sym_QMARK_DOT, + STATE(2931), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(2458), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2460), 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, + [62727] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2932), 1, + sym_comment, + ACTIONS(4343), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5998), 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, + [62786] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2933), 1, + sym_comment, + ACTIONS(6000), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6002), 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, + [62845] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2934), 1, + sym_comment, + ACTIONS(4341), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6004), 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, + [62904] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2935), 1, + sym_comment, + ACTIONS(6006), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6008), 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, + [62963] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2936), 1, + sym_comment, + ACTIONS(6010), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6012), 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, + [63022] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2937), 1, + sym_comment, + ACTIONS(3530), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6014), 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, + [63081] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2938), 1, + sym_comment, + ACTIONS(5557), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5559), 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, + [63140] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1247), 1, + anon_sym_RBRACE, + ACTIONS(5174), 1, + anon_sym_EQ, + STATE(2939), 1, + sym_comment, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [63209] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5350), 1, + anon_sym_RBRACE, + STATE(2940), 1, + sym_comment, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [63278] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5350), 1, + anon_sym_RBRACE, + STATE(2941), 1, + sym_comment, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [63347] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1247), 1, + anon_sym_RBRACE, + ACTIONS(5174), 1, + anon_sym_EQ, + STATE(2942), 1, + sym_comment, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [63416] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1168), 1, + anon_sym_RBRACE, + ACTIONS(5174), 1, + anon_sym_EQ, + STATE(2943), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [63485] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5174), 1, + anon_sym_EQ, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2944), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5532), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [63560] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(2945), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(6016), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [63677] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6018), 1, + anon_sym_DOT, + STATE(2946), 1, + sym_comment, + ACTIONS(5799), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5801), 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, + [63738] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2947), 1, + sym_comment, + ACTIONS(6021), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6023), 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, + [63797] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2948), 1, + sym_comment, + ACTIONS(6025), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6027), 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, + [63856] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2949), 1, + sym_comment, + ACTIONS(4339), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6029), 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, + [63915] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6031), 1, + anon_sym_LBRACE, + ACTIONS(6033), 1, + anon_sym_DOT, + STATE(2950), 1, + sym_comment, + STATE(3052), 1, + sym_statement_block, + ACTIONS(2318), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2324), 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, + [63980] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6031), 1, + anon_sym_LBRACE, + ACTIONS(6035), 1, + anon_sym_DOT, + STATE(2951), 1, + sym_comment, + STATE(3052), 1, + sym_statement_block, + ACTIONS(2318), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2324), 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, + [64045] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6031), 1, + anon_sym_LBRACE, + STATE(2952), 1, + sym_comment, + STATE(3052), 1, + sym_statement_block, + ACTIONS(2318), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2324), 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, + [64108] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2953), 1, + sym_comment, + ACTIONS(5719), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5721), 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, + [64167] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5717), 1, + anon_sym_LBRACK, + STATE(2954), 1, + sym_comment, + ACTIONS(5719), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5721), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + 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, + [64228] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2955), 1, + sym_comment, + ACTIONS(6037), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6039), 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, + [64287] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6041), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(2956), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + STATE(8292), 1, + sym_type_annotation, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [64412] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2957), 1, + sym_comment, + ACTIONS(5549), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5551), 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, + [64471] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2958), 1, + sym_comment, + ACTIONS(6025), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6027), 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, + [64530] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2959), 1, + sym_comment, + ACTIONS(6025), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6027), 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, + [64589] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2960), 1, + sym_comment, + ACTIONS(6043), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6045), 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, + [64648] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2961), 1, + sym_comment, + ACTIONS(6043), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6045), 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, + [64707] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2962), 1, + sym_comment, + ACTIONS(6043), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6045), 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, + [64766] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2963), 1, + sym_comment, + ACTIONS(6047), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6049), 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, + [64825] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2964), 1, + sym_comment, + ACTIONS(6051), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6053), 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, + [64884] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2965), 1, + sym_comment, + ACTIONS(6051), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6053), 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, + [64943] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1249), 1, + anon_sym_RBRACE, + ACTIONS(5174), 1, + anon_sym_EQ, + STATE(2966), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [65012] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2967), 1, + sym_comment, + ACTIONS(6051), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6053), 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, + [65071] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2968), 1, + sym_comment, + ACTIONS(6055), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6057), 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, + [65130] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1249), 1, + anon_sym_RBRACE, + ACTIONS(5174), 1, + anon_sym_EQ, + STATE(2969), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [65199] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2970), 1, + sym_comment, + ACTIONS(2458), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2460), 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, + [65257] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2971), 1, + sym_comment, + ACTIONS(2414), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2416), 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, + [65315] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2972), 1, + sym_comment, + ACTIONS(2414), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2416), 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, + [65373] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2973), 1, + sym_comment, + ACTIONS(6059), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6061), 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, + [65431] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6067), 1, + anon_sym_COMMA, + ACTIONS(6070), 1, + anon_sym_RBRACE, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(2974), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5834), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [65551] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + STATE(2975), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5972), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [65667] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + STATE(2976), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5963), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [65783] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + STATE(2977), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [65891] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + STATE(2978), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5852), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 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, + [65985] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6156), 1, + anon_sym_LT, + STATE(2979), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [66071] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6159), 1, + anon_sym_LT, + STATE(2980), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5952), 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(5954), 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, + [66155] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6156), 1, + anon_sym_LT, + STATE(2981), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [66239] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + STATE(2982), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5852), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [66341] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + STATE(2983), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5852), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [66441] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + STATE(2984), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [66539] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6156), 1, + anon_sym_LT, + STATE(2985), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [66625] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + STATE(2986), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5946), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [66741] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + STATE(2987), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [66847] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2988), 1, + sym_comment, + ACTIONS(5697), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6162), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5695), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5699), 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, + [66909] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2989), 1, + sym_comment, + ACTIONS(6164), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6166), 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, + [66967] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(2990), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5555), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [67039] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + STATE(2991), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [67143] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2992), 1, + sym_comment, + ACTIONS(6168), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6170), 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, + [67201] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6156), 1, + anon_sym_LT, + STATE(2993), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [67281] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(2994), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6174), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67401] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + STATE(2995), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [67491] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6176), 1, + anon_sym_LT, + STATE(2996), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5921), 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(5923), 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, + [67567] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6179), 1, + anon_sym_COMMA, + ACTIONS(6182), 1, + anon_sym_RBRACE, + STATE(2997), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5834), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [67687] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + STATE(2998), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5846), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [67803] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + STATE(2999), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5834), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [67919] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3000), 1, + sym_comment, + ACTIONS(6184), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6186), 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, + [67977] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3001), 1, + sym_comment, + ACTIONS(6188), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6190), 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, + [68035] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3002), 1, + sym_comment, + ACTIONS(2342), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2346), 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, + [68093] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6008), 1, + anon_sym_extends, + STATE(3003), 1, + sym_comment, + ACTIONS(6192), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 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(4473), 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, + [68157] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3004), 1, + sym_comment, + ACTIONS(5836), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5838), 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, + [68215] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + STATE(3005), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5673), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [68331] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6198), 1, + sym__automatic_semicolon, + STATE(3006), 1, + sym_comment, + ACTIONS(2368), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2370), 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, + [68391] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + STATE(3007), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5691), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [68507] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3008), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6200), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68627] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + STATE(3009), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5693), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [68743] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3010), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6202), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68863] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6144), 1, + anon_sym_LT, + STATE(3011), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5773), 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(5775), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [68933] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + STATE(3012), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5984), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [69049] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + STATE(3013), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5986), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [69165] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + STATE(3014), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5992), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [69281] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + STATE(3015), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(6016), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [69397] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3016), 1, + sym_comment, + ACTIONS(6204), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6206), 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, + [69455] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + STATE(3017), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5820), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [69571] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3018), 1, + sym_comment, + ACTIONS(6208), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6210), 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, + [69629] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3019), 1, + sym_comment, + ACTIONS(6212), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6214), 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, + [69687] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3020), 1, + sym_comment, + ACTIONS(6216), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6218), 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, + [69745] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3021), 1, + sym_comment, + ACTIONS(6220), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6222), 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, + [69803] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3022), 1, + sym_comment, + ACTIONS(6224), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5992), 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, + [69861] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3023), 1, + sym_comment, + ACTIONS(6226), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5986), 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, + [69919] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5745), 1, + anon_sym_extends, + STATE(3024), 1, + sym_comment, + ACTIONS(6228), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6231), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6184), 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(6186), 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, + [69983] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3025), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6234), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70103] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6236), 1, + anon_sym_LT, + STATE(3026), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5921), 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(5923), 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, + [70179] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3027), 1, + sym_comment, + ACTIONS(6239), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6241), 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, + [70237] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3028), 1, + sym_comment, + ACTIONS(6243), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6245), 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, + [70295] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3029), 1, + sym_comment, + ACTIONS(6247), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5984), 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, + [70353] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3030), 1, + sym_comment, + ACTIONS(6249), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6251), 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, + [70411] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3031), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6253), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70531] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3032), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6255), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70651] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3033), 1, + sym_comment, + ACTIONS(2350), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2354), 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, + [70709] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3034), 1, + sym_comment, + ACTIONS(2362), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2366), 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, + [70767] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3035), 1, + sym_comment, + ACTIONS(2418), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2420), 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, + [70825] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3036), 1, + sym_comment, + ACTIONS(6257), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6259), 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, + [70883] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3037), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6261), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71003] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3038), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5834), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [71119] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + STATE(3039), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5773), 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(5775), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [71189] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3040), 1, + sym_comment, + ACTIONS(2418), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2420), 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, + [71247] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3041), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5846), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [71363] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + STATE(3042), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [71453] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6070), 1, + anon_sym_RBRACE, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6263), 1, + anon_sym_COMMA, + STATE(3043), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5693), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71573] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3044), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6266), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [71693] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3045), 1, + sym_comment, + ACTIONS(6268), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6270), 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, + [71751] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + STATE(3046), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5848), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [71867] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3047), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5984), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [71983] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3048), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6272), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [72103] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3049), 1, + sym_comment, + ACTIONS(2328), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2330), 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, + [72161] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3050), 1, + sym_comment, + ACTIONS(6274), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5691), 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, + [72219] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3051), 1, + sym_comment, + ACTIONS(2480), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2484), 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, + [72277] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3052), 1, + sym_comment, + ACTIONS(2410), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2412), 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, + [72335] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3053), 1, + sym_comment, + ACTIONS(2432), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2436), 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, + [72393] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3054), 1, + sym_comment, + ACTIONS(6278), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6282), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(6276), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6280), 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, + [72455] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6284), 1, + sym__automatic_semicolon, + STATE(3055), 1, + sym_comment, + ACTIONS(2285), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2374), 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, + [72515] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3056), 1, + sym_comment, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, + [72573] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3057), 1, + sym_comment, + ACTIONS(6286), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6288), 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, + [72631] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3058), 1, + sym_comment, + ACTIONS(2472), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2476), 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, + [72689] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3059), 1, + sym_comment, + ACTIONS(2334), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2338), 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, + [72747] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3060), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5986), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [72863] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6290), 1, + anon_sym_LT, + STATE(3061), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [72943] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3062), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5992), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [73059] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3063), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5848), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [73175] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3064), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(6016), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [73291] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3065), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5820), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [73407] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5673), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [73523] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6293), 1, + anon_sym_QMARK_DOT, + ACTIONS(6295), 1, + anon_sym_LT, + STATE(3067), 1, + sym_comment, + STATE(3305), 1, + sym_type_arguments, + STATE(3554), 1, + sym_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5480), 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(5482), 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, + [73597] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3068), 1, + sym_comment, + ACTIONS(2404), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2408), 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, + [73655] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5697), 1, + anon_sym_EQ, + STATE(3069), 1, + sym_comment, + ACTIONS(5695), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5699), 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, + [73715] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3070), 1, + sym_comment, + ACTIONS(2424), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2428), 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, + [73773] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + STATE(3071), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [73877] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3072), 1, + sym_comment, + ACTIONS(6297), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6299), 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, + [73935] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3073), 1, + sym_comment, + ACTIONS(2287), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2293), 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, + [73995] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + STATE(3074), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [74101] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6290), 1, + anon_sym_LT, + STATE(3075), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [74187] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + STATE(3076), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [74285] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + STATE(3077), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5852), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [74385] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + STATE(3078), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5852), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [74487] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3079), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6301), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74607] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6290), 1, + anon_sym_LT, + STATE(3080), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [74691] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6290), 1, + anon_sym_LT, + STATE(3081), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [74777] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6278), 1, + anon_sym_EQ, + STATE(3082), 1, + sym_comment, + ACTIONS(6276), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6280), 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, + [74837] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3083), 1, + sym_comment, + ACTIONS(2368), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2370), 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, + [74895] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3084), 1, + sym_comment, + ACTIONS(6303), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6305), 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, + [74953] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3085), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6307), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75073] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3086), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6309), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75193] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3087), 1, + sym_comment, + ACTIONS(2450), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2454), 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, + [75251] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + STATE(3088), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5852), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 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, + [75345] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3089), 1, + sym_comment, + ACTIONS(2442), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2446), 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, + [75403] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + STATE(3090), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [75511] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3091), 1, + sym_comment, + ACTIONS(2368), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2370), 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, + [75569] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3092), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6311), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75689] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3093), 1, + sym_comment, + ACTIONS(2356), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2358), 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, + [75747] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3094), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5693), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [75863] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3095), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5691), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [75979] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3096), 1, + sym_comment, + ACTIONS(6313), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6315), 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, + [76037] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3097), 1, + sym_comment, + ACTIONS(2410), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2412), 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, + [76095] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3098), 1, + sym_comment, + ACTIONS(2328), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2330), 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, + [76153] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3099), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6317), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76273] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3100), 1, + sym_comment, + ACTIONS(2390), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2394), 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, + [76331] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3101), 1, + sym_comment, + ACTIONS(6319), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6321), 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, + [76389] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3102), 1, + sym_comment, + ACTIONS(6323), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6325), 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, + [76447] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3103), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6327), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76567] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3104), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6329), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76687] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3105), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5963), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [76803] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3106), 1, + sym_comment, + ACTIONS(6331), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6333), 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, + [76861] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3107), 1, + sym_comment, + ACTIONS(6335), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6337), 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, + [76919] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3108), 1, + sym_comment, + ACTIONS(6339), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6341), 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, + [76977] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3109), 1, + sym_comment, + ACTIONS(2289), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6343), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2287), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2293), 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, + [77039] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3110), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5972), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [77155] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6295), 1, + anon_sym_LT, + ACTIONS(6345), 1, + anon_sym_DOT, + ACTIONS(6347), 1, + anon_sym_is, + STATE(3111), 1, + sym_comment, + STATE(3448), 1, + sym_type_arguments, + ACTIONS(5496), 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(4546), 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, + [77221] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3112), 1, + sym_comment, + ACTIONS(6349), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6351), 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, + [77279] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3113), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6353), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77399] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3114), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(6355), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [77515] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3115), 1, + sym_comment, + ACTIONS(2356), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2358), 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, + [77573] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3116), 1, + sym_comment, + ACTIONS(2384), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2386), 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, + [77631] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5559), 1, + anon_sym_extends, + STATE(3117), 1, + sym_comment, + ACTIONS(6357), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6360), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 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(4473), 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, + [77695] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3118), 1, + sym_comment, + ACTIONS(2396), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2398), 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, + [77753] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6070), 1, + anon_sym_RBRACE, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6263), 1, + anon_sym_COMMA, + STATE(3119), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6363), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77873] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3120), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6365), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [77993] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3121), 1, + sym_comment, + ACTIONS(6367), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6369), 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, + [78051] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3122), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6371), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78171] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3123), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6070), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6373), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78289] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3124), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6375), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78409] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3125), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6377), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78529] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3126), 1, + sym_comment, + ACTIONS(6379), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5963), 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, + [78587] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3127), 1, + sym_comment, + ACTIONS(6381), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6383), 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, + [78645] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3128), 1, + sym_comment, + ACTIONS(6385), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6387), 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, + [78703] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6389), 1, + anon_sym_LT, + STATE(3129), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5965), 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(5967), 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, + [78781] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6392), 1, + anon_sym_LT, + STATE(3130), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5952), 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(5954), 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, + [78865] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3131), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5946), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [78981] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6395), 1, + anon_sym_LT, + STATE(3132), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5965), 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(5967), 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, + [79059] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3133), 1, + sym_comment, + ACTIONS(6398), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6400), 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, + [79117] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3134), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(6406), 1, + aux_sym_sequence_expression_repeat1, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6402), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79237] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6295), 1, + anon_sym_LT, + ACTIONS(6404), 1, + anon_sym_DOT, + STATE(3135), 1, + sym_comment, + STATE(3412), 1, + sym_type_arguments, + STATE(3413), 1, + sym_arguments, + ACTIONS(5518), 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(5520), 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, + [79305] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6295), 1, + anon_sym_LT, + ACTIONS(6406), 1, + anon_sym_DOT, + STATE(3136), 1, + sym_comment, + STATE(3414), 1, + sym_type_arguments, + STATE(3415), 1, + sym_arguments, + ACTIONS(5524), 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(5526), 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, + [79373] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6295), 1, + anon_sym_LT, + ACTIONS(6408), 1, + anon_sym_DOT, + STATE(3137), 1, + sym_comment, + STATE(3416), 1, + sym_type_arguments, + STATE(3418), 1, + sym_arguments, + ACTIONS(4505), 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(4495), 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, + [79441] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3138), 1, + sym_comment, + ACTIONS(6410), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5846), 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, + [79499] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3139), 1, + sym_comment, + ACTIONS(6412), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6414), 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, + [79557] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6122), 1, + anon_sym_GT, + ACTIONS(6124), 1, + anon_sym_AMP_AMP, + ACTIONS(6126), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6128), 1, + anon_sym_GT_GT, + ACTIONS(6132), 1, + anon_sym_AMP, + ACTIONS(6134), 1, + anon_sym_CARET, + ACTIONS(6136), 1, + anon_sym_PIPE, + ACTIONS(6140), 1, + anon_sym_PERCENT, + ACTIONS(6142), 1, + anon_sym_STAR_STAR, + ACTIONS(6144), 1, + anon_sym_LT, + ACTIONS(6152), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6154), 1, + sym__ternary_qmark, + ACTIONS(6418), 1, + anon_sym_in, + STATE(3140), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6120), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6130), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6138), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6148), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6150), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6146), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(6416), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [79675] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6423), 1, + sym__automatic_semicolon, + STATE(3141), 1, + sym_comment, + ACTIONS(6421), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [79732] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3142), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5846), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79847] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3143), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5834), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79962] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3144), 1, + sym_comment, + ACTIONS(5593), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5595), 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, + [80019] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6461), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3145), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80138] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6463), 1, + sym__automatic_semicolon, + STATE(3146), 1, + sym_comment, + ACTIONS(2368), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [80195] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5693), 1, + anon_sym_COMMA, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3147), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6465), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80312] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3148), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5673), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80427] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6469), 1, + sym__automatic_semicolon, + STATE(3149), 1, + sym_comment, + ACTIONS(6467), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [80484] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6473), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3150), 1, + sym_comment, + STATE(6654), 1, + aux_sym_array_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80603] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6475), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3151), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80722] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6479), 1, + sym__automatic_semicolon, + STATE(3152), 1, + sym_comment, + ACTIONS(6477), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [80779] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6481), 1, + anon_sym_RBRACK, + STATE(2774), 1, + sym_type_arguments, + STATE(3153), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [80898] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + STATE(3154), 1, + sym_comment, + ACTIONS(5532), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [80959] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3155), 1, + sym_comment, + ACTIONS(6278), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6483), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(6276), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6280), 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, + [81020] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5174), 1, + anon_sym_EQ, + STATE(3156), 1, + sym_comment, + ACTIONS(5532), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [81081] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3157), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5691), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81196] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3158), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5693), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81311] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6295), 1, + anon_sym_LT, + ACTIONS(6345), 1, + anon_sym_DOT, + STATE(3159), 1, + sym_comment, + STATE(3448), 1, + sym_type_arguments, + ACTIONS(5496), 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(4546), 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, + [81374] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3160), 1, + sym_comment, + ACTIONS(2289), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6486), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2287), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2293), 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, + [81435] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5693), 1, + anon_sym_COMMA, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3161), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6489), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81552] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(6449), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3162), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5773), 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(5775), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + anon_sym_implements, + [81621] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6493), 1, + sym__automatic_semicolon, + STATE(3163), 1, + sym_comment, + ACTIONS(6491), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [81678] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6495), 1, + sym__automatic_semicolon, + STATE(3164), 1, + sym_comment, + ACTIONS(2285), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [81735] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6497), 1, + anon_sym_RBRACK, + STATE(2774), 1, + sym_type_arguments, + STATE(3165), 1, + sym_comment, + STATE(6786), 1, + aux_sym_array_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81854] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6499), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3166), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81973] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6295), 1, + anon_sym_LT, + STATE(3167), 1, + sym_comment, + STATE(3442), 1, + sym_type_arguments, + ACTIONS(5549), 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(5551), 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, + [82034] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6501), 1, + anon_sym_COLON, + STATE(2774), 1, + sym_type_arguments, + STATE(3168), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82153] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3169), 1, + sym_comment, + ACTIONS(2215), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2267), 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, + [82210] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6423), 1, + sym__automatic_semicolon, + STATE(3170), 1, + sym_comment, + ACTIONS(6421), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [82267] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6505), 1, + sym__automatic_semicolon, + STATE(3171), 1, + sym_comment, + ACTIONS(6503), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [82324] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3172), 1, + sym_comment, + ACTIONS(5697), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6507), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5695), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5699), 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, + [82385] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6505), 1, + sym__automatic_semicolon, + STATE(3173), 1, + sym_comment, + ACTIONS(6503), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [82442] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6423), 1, + sym__automatic_semicolon, + STATE(3174), 1, + sym_comment, + ACTIONS(6421), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [82499] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5693), 1, + anon_sym_COMMA, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3175), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6510), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82616] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6505), 1, + sym__automatic_semicolon, + STATE(3176), 1, + sym_comment, + ACTIONS(6503), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [82673] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6512), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3177), 1, + sym_comment, + STATE(6996), 1, + aux_sym_array_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82792] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6514), 1, + anon_sym_is, + STATE(3178), 1, + sym_comment, + ACTIONS(5549), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5551), 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, + [82851] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6518), 1, + sym__automatic_semicolon, + STATE(3179), 1, + sym_comment, + ACTIONS(6516), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [82908] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(5701), 1, + anon_sym_LBRACK, + STATE(3180), 1, + sym_comment, + ACTIONS(5704), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6520), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5707), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5695), 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(5699), 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, + [82975] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6526), 1, + sym__automatic_semicolon, + STATE(3181), 1, + sym_comment, + ACTIONS(6524), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [83032] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6530), 1, + sym__automatic_semicolon, + STATE(3182), 1, + sym_comment, + ACTIONS(6528), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [83089] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6534), 1, + sym__automatic_semicolon, + STATE(3183), 1, + sym_comment, + ACTIONS(6532), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [83146] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5683), 1, + anon_sym_LBRACK, + STATE(3184), 1, + sym_comment, + ACTIONS(5686), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6536), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5689), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2287), 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(2293), 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, + [83213] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3185), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [83302] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6540), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3186), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [83381] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3187), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [83484] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3188), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [83589] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6540), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3189), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [83674] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6545), 1, + sym__automatic_semicolon, + STATE(3190), 1, + sym_comment, + ACTIONS(6543), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [83731] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6549), 1, + sym__automatic_semicolon, + STATE(3191), 1, + sym_comment, + ACTIONS(6547), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [83788] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3192), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [83885] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6551), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3193), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84004] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3194), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(6553), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [84119] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6557), 1, + sym__automatic_semicolon, + STATE(3195), 1, + sym_comment, + ACTIONS(6555), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [84176] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3196), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5852), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [84275] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6534), 1, + sym__automatic_semicolon, + STATE(3197), 1, + sym_comment, + ACTIONS(6532), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [84332] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3198), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5852), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [84433] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6559), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3199), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84552] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6561), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3200), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84671] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6563), 1, + anon_sym_RBRACK, + STATE(2774), 1, + sym_type_arguments, + STATE(3201), 1, + sym_comment, + STATE(6786), 1, + aux_sym_array_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84790] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6565), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3202), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [84909] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6540), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3203), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [84992] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6540), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3204), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [85077] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6505), 1, + sym__automatic_semicolon, + STATE(3205), 1, + sym_comment, + ACTIONS(6503), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [85134] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(6008), 1, + anon_sym_extends, + STATE(3206), 1, + sym_comment, + ACTIONS(6192), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 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(4473), 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, + [85199] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3207), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5852), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 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, + [85292] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3208), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [85399] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3209), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5963), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85514] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6549), 1, + sym__automatic_semicolon, + STATE(3210), 1, + sym_comment, + ACTIONS(6547), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [85571] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3211), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5972), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85686] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5693), 1, + anon_sym_COMMA, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3212), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6567), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85803] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6347), 1, + anon_sym_is, + STATE(3213), 1, + sym_comment, + ACTIONS(5557), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5559), 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, + [85862] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6557), 1, + sym__automatic_semicolon, + STATE(3214), 1, + sym_comment, + ACTIONS(6555), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [85919] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6423), 1, + sym__automatic_semicolon, + STATE(3215), 1, + sym_comment, + ACTIONS(6421), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [85976] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6423), 1, + sym__automatic_semicolon, + STATE(3216), 1, + sym_comment, + ACTIONS(6421), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [86033] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3217), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(6416), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [86148] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6505), 1, + sym__automatic_semicolon, + STATE(3218), 1, + sym_comment, + ACTIONS(6503), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [86205] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6569), 1, + sym__automatic_semicolon, + STATE(3219), 1, + sym_comment, + ACTIONS(2368), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [86262] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4672), 1, + anon_sym_QMARK, + STATE(3220), 1, + sym_comment, + ACTIONS(4670), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, + [86325] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3221), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5984), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86440] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6571), 1, + sym__automatic_semicolon, + STATE(3222), 1, + sym_comment, + ACTIONS(2285), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [86497] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(6573), 1, + anon_sym_STAR, + ACTIONS(6575), 1, + anon_sym_async, + ACTIONS(6577), 1, + anon_sym_readonly, + STATE(3223), 1, + sym_comment, + STATE(3879), 1, + sym_override_modifier, + STATE(5599), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6579), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [86578] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3224), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5986), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86693] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6581), 1, + anon_sym_RBRACK, + STATE(2774), 1, + sym_type_arguments, + STATE(3225), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86812] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3226), 1, + sym_comment, + ACTIONS(4323), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5605), 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, + [86869] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6493), 1, + sym__automatic_semicolon, + STATE(3227), 1, + sym_comment, + ACTIONS(6491), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [86926] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6493), 1, + sym__automatic_semicolon, + STATE(3228), 1, + sym_comment, + ACTIONS(6491), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [86983] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6479), 1, + sym__automatic_semicolon, + STATE(3229), 1, + sym_comment, + ACTIONS(6477), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [87040] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3230), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5992), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87155] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6469), 1, + sym__automatic_semicolon, + STATE(3231), 1, + sym_comment, + ACTIONS(6467), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [87212] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3232), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6016), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87327] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3233), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5820), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87442] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3234), 1, + sym_comment, + ACTIONS(5836), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5838), 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, + [87499] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6583), 1, + anon_sym_RBRACK, + STATE(2774), 1, + sym_type_arguments, + STATE(3235), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87618] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3236), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5615), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87733] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6347), 1, + anon_sym_is, + STATE(3237), 1, + sym_comment, + ACTIONS(5563), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5565), 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, + [87792] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3238), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(6585), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [87907] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6587), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3239), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5921), 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(5923), 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, + [87982] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3240), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5946), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88097] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6505), 1, + sym__automatic_semicolon, + STATE(3241), 1, + sym_comment, + ACTIONS(6503), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [88154] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6590), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3242), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + STATE(7328), 1, + aux_sym_array_repeat1, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88273] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6592), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3243), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5952), 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(5954), 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, + [88356] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3244), 1, + sym_comment, + ACTIONS(4319), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5603), 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, + [88413] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6595), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3245), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5965), 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(5967), 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, + [88490] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6479), 1, + sym__automatic_semicolon, + STATE(3246), 1, + sym_comment, + ACTIONS(6477), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [88547] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6479), 1, + sym__automatic_semicolon, + STATE(3247), 1, + sym_comment, + ACTIONS(6477), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [88604] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6598), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3248), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88723] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2370), 1, + sym__automatic_semicolon, + STATE(3249), 1, + sym_comment, + ACTIONS(2368), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [88780] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6600), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3250), 1, + sym_comment, + STATE(6787), 1, + aux_sym_array_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88899] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2358), 1, + sym__automatic_semicolon, + STATE(3251), 1, + sym_comment, + ACTIONS(2356), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [88956] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3252), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5848), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89071] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6602), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3253), 1, + sym_comment, + STATE(7014), 1, + aux_sym_array_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89190] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6606), 1, + sym__automatic_semicolon, + STATE(3254), 1, + sym_comment, + ACTIONS(6604), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [89247] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3255), 1, + sym_comment, + ACTIONS(4315), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5561), 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, + [89304] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6610), 1, + sym__automatic_semicolon, + STATE(3256), 1, + sym_comment, + ACTIONS(6608), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [89361] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6469), 1, + sym__automatic_semicolon, + STATE(3257), 1, + sym_comment, + ACTIONS(6467), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [89418] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6614), 1, + anon_sym_SEMI, + ACTIONS(6617), 1, + sym__automatic_semicolon, + STATE(3258), 1, + sym_comment, + ACTIONS(6612), 41, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [89477] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3259), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(6416), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + [89592] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6619), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3260), 1, + sym_comment, + STATE(7077), 1, + aux_sym_array_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89711] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5693), 1, + anon_sym_COMMA, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3261), 1, + sym_comment, + STATE(3264), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6363), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89828] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6469), 1, + sym__automatic_semicolon, + STATE(3262), 1, + sym_comment, + ACTIONS(6467), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [89885] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6534), 1, + sym__automatic_semicolon, + STATE(3263), 1, + sym_comment, + ACTIONS(6532), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [89942] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + STATE(3264), 1, + sym_comment, + STATE(3619), 2, + sym_template_string, + sym_arguments, + ACTIONS(5597), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5599), 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, + [90005] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5693), 1, + anon_sym_COMMA, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3265), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6621), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90122] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6479), 1, + sym__automatic_semicolon, + STATE(3266), 1, + sym_comment, + ACTIONS(6477), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [90179] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6623), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3267), 1, + sym_comment, + STATE(7163), 1, + aux_sym_array_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90298] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6493), 1, + sym__automatic_semicolon, + STATE(3268), 1, + sym_comment, + ACTIONS(6491), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [90355] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5689), 1, + anon_sym_extends, + STATE(3269), 1, + sym_comment, + ACTIONS(5683), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5686), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2287), 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(2293), 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, + [90420] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6479), 1, + sym__automatic_semicolon, + STATE(3270), 1, + sym_comment, + ACTIONS(6477), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [90477] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6469), 1, + sym__automatic_semicolon, + STATE(3271), 1, + sym_comment, + ACTIONS(6467), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [90534] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6625), 1, + anon_sym_RBRACE, + STATE(2774), 1, + sym_type_arguments, + STATE(3272), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90653] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4654), 1, + anon_sym_EQ, + ACTIONS(4661), 1, + anon_sym_QMARK, + STATE(3273), 1, + sym_comment, + ACTIONS(4657), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, + [90716] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6627), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3274), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90835] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6629), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3275), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90954] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4539), 1, + anon_sym_EQ, + ACTIONS(4661), 1, + anon_sym_QMARK, + STATE(3276), 1, + sym_comment, + ACTIONS(4692), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, + [91017] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6479), 1, + sym__automatic_semicolon, + STATE(3277), 1, + sym_comment, + ACTIONS(6477), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [91074] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6631), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3278), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91193] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6633), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3279), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91312] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5372), 1, + anon_sym_COMMA, + ACTIONS(5494), 1, + anon_sym_RBRACE, + STATE(3280), 1, + sym_comment, + STATE(7278), 1, + aux_sym_object_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [91375] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5372), 1, + anon_sym_COMMA, + ACTIONS(5494), 1, + anon_sym_RBRACE, + STATE(3281), 1, + sym_comment, + STATE(7278), 1, + aux_sym_object_repeat1, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [91438] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6534), 1, + sym__automatic_semicolon, + STATE(3282), 1, + sym_comment, + ACTIONS(6532), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [91495] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4539), 1, + anon_sym_EQ, + ACTIONS(6192), 1, + anon_sym_LBRACK, + STATE(3283), 1, + sym_comment, + ACTIONS(6195), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6008), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4469), 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(4473), 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, + [91560] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6635), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3284), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91679] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5693), 1, + anon_sym_COMMA, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6082), 1, + anon_sym_AMP_AMP, + ACTIONS(6084), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6086), 1, + anon_sym_GT_GT, + ACTIONS(6090), 1, + anon_sym_AMP, + ACTIONS(6092), 1, + anon_sym_CARET, + ACTIONS(6094), 1, + anon_sym_PIPE, + ACTIONS(6098), 1, + anon_sym_PERCENT, + ACTIONS(6100), 1, + anon_sym_STAR_STAR, + ACTIONS(6102), 1, + anon_sym_LT, + ACTIONS(6110), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6118), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3285), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6063), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6076), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6088), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6096), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6106), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6108), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6637), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6104), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91796] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6429), 1, + anon_sym_AMP_AMP, + ACTIONS(6431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6433), 1, + anon_sym_GT_GT, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_CARET, + ACTIONS(6441), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_PERCENT, + ACTIONS(6447), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_LT, + ACTIONS(6457), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6459), 1, + sym__ternary_qmark, + STATE(3286), 1, + sym_comment, + STATE(3502), 1, + sym_type_arguments, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6425), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6427), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6435), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6443), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6453), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6455), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6451), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(6639), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [91911] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6641), 1, + anon_sym_RPAREN, + STATE(2774), 1, + sym_type_arguments, + STATE(3287), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92030] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(5707), 1, + anon_sym_extends, + STATE(3288), 1, + sym_comment, + ACTIONS(5701), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5704), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5695), 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(5699), 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, + [92095] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6645), 1, + anon_sym_SEMI, + ACTIONS(6648), 1, + sym__automatic_semicolon, + STATE(3289), 1, + sym_comment, + ACTIONS(6643), 41, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [92154] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6493), 1, + sym__automatic_semicolon, + STATE(3290), 1, + sym_comment, + ACTIONS(6491), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [92211] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(5659), 1, + anon_sym_COMMA, + ACTIONS(6650), 1, + anon_sym_RBRACK, + STATE(2774), 1, + sym_type_arguments, + STATE(3291), 1, + sym_comment, + STATE(5642), 1, + aux_sym_sequence_expression_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92330] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6652), 1, + anon_sym_RBRACK, + STATE(2774), 1, + sym_type_arguments, + STATE(3292), 1, + sym_comment, + STATE(6977), 1, + aux_sym_array_repeat1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92449] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6534), 1, + sym__automatic_semicolon, + STATE(3293), 1, + sym_comment, + ACTIONS(6532), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [92506] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6505), 1, + sym__automatic_semicolon, + STATE(3294), 1, + sym_comment, + ACTIONS(6503), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [92563] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3498), 1, + anon_sym_QMARK, + ACTIONS(5683), 1, + anon_sym_LBRACK, + ACTIONS(5689), 1, + anon_sym_extends, + ACTIONS(6343), 1, + anon_sym_COLON, + STATE(3295), 1, + sym_comment, + ACTIONS(5686), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6536), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2287), 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(2293), 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, + [92633] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(6573), 1, + anon_sym_STAR, + ACTIONS(6575), 1, + anon_sym_async, + STATE(3296), 1, + sym_comment, + STATE(5599), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6579), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [92707] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + STATE(3297), 1, + sym_comment, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, + [92765] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5559), 1, + anon_sym_extends, + ACTIONS(6357), 1, + anon_sym_LBRACK, + ACTIONS(6658), 1, + anon_sym_RPAREN, + STATE(3298), 1, + sym_comment, + ACTIONS(6360), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6654), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6656), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4469), 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(4473), 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, + [92833] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4654), 1, + anon_sym_EQ, + ACTIONS(4661), 1, + anon_sym_QMARK, + ACTIONS(6192), 1, + anon_sym_LBRACK, + STATE(3299), 1, + sym_comment, + ACTIONS(4657), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(6008), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(6195), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 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(4473), 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, + [92901] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + STATE(3300), 1, + sym_comment, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, + [92959] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6661), 1, + anon_sym_LT, + STATE(3264), 1, + sym_type_arguments, + STATE(3301), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5773), 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(5775), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [93027] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3302), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5693), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93141] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3303), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5691), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93255] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3304), 1, + sym_comment, + ACTIONS(5751), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5753), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4469), 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(4473), 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, + [93315] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6074), 1, + anon_sym_LPAREN, + STATE(3305), 1, + sym_comment, + STATE(3737), 1, + sym_arguments, + ACTIONS(5934), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5936), 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, + [93375] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6293), 1, + anon_sym_QMARK_DOT, + STATE(3306), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(2458), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2460), 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, + [93439] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(6697), 1, + anon_sym_STAR, + STATE(3307), 1, + sym_comment, + STATE(5573), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6699), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [93511] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(6697), 1, + anon_sym_STAR, + ACTIONS(6701), 1, + anon_sym_async, + STATE(3308), 1, + sym_comment, + STATE(5573), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6699), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [93585] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6703), 1, + anon_sym_LT, + STATE(3264), 1, + sym_type_arguments, + STATE(3309), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5921), 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(5923), 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, + [93659] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3310), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5946), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93773] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6706), 1, + anon_sym_LT, + STATE(3264), 1, + sym_type_arguments, + STATE(3311), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5952), 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(5954), 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, + [93855] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3312), 1, + sym_comment, + ACTIONS(5555), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2574), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [93913] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3313), 1, + sym_comment, + ACTIONS(5751), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5753), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4469), 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(4473), 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, + [93973] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5745), 1, + anon_sym_extends, + STATE(3314), 1, + sym_comment, + ACTIONS(6228), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6231), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6184), 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(6186), 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, + [94035] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3315), 1, + sym_comment, + ACTIONS(5555), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1189), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2590), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [94093] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6709), 1, + anon_sym_LT, + STATE(3264), 1, + sym_type_arguments, + STATE(3316), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5965), 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(5967), 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, + [94169] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3317), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6712), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94283] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6714), 1, + sym__automatic_semicolon, + STATE(3318), 1, + sym_comment, + ACTIONS(2374), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2287), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2293), 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, + [94345] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6716), 1, + anon_sym_AMP, + ACTIONS(6718), 1, + anon_sym_PIPE, + ACTIONS(6720), 1, + anon_sym_extends, + STATE(3319), 1, + sym_comment, + ACTIONS(5840), 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(5842), 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, + [94407] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3320), 1, + sym_comment, + ACTIONS(6055), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6057), 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, + [94463] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3321), 1, + sym_comment, + ACTIONS(6051), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6053), 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, + [94519] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3322), 1, + sym_comment, + ACTIONS(6051), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6053), 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, + [94575] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + ACTIONS(6722), 1, + anon_sym_SEMI, + ACTIONS(6724), 1, + sym__automatic_semicolon, + STATE(3264), 1, + sym_type_arguments, + STATE(3323), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94691] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3324), 1, + sym_comment, + ACTIONS(6051), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6053), 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, + [94747] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3325), 1, + sym_comment, + ACTIONS(6043), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6045), 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, + [94803] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3326), 1, + sym_comment, + ACTIONS(6043), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6045), 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, + [94859] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3327), 1, + sym_comment, + ACTIONS(6043), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6045), 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, + [94915] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3328), 1, + sym_comment, + ACTIONS(6360), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6357), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5559), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4469), 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(4473), 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, + [94977] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3329), 1, + sym_comment, + ACTIONS(6025), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6027), 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, + [95033] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3330), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5848), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95147] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3331), 1, + sym_comment, + ACTIONS(6025), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6027), 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, + [95203] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3332), 1, + sym_comment, + ACTIONS(6025), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6027), 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, + [95259] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3333), 1, + sym_comment, + ACTIONS(6021), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6023), 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, + [95315] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3334), 1, + sym_comment, + ACTIONS(3530), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6014), 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, + [95371] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3335), 1, + sym_comment, + ACTIONS(6010), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6012), 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, + [95427] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3336), 1, + sym_comment, + ACTIONS(6000), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6002), 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, + [95483] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3337), 1, + sym_comment, + ACTIONS(5994), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5996), 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, + [95539] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3338), 1, + sym_comment, + ACTIONS(5959), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5961), 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, + [95595] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3339), 1, + sym_comment, + ACTIONS(5959), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5961), 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, + [95651] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3340), 1, + sym_comment, + ACTIONS(5959), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5961), 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, + [95707] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + ACTIONS(6726), 1, + anon_sym_SEMI, + ACTIONS(6728), 1, + sym__automatic_semicolon, + STATE(3264), 1, + sym_type_arguments, + STATE(3341), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95823] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3342), 1, + sym_comment, + ACTIONS(5948), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5950), 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, + [95879] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3343), 1, + sym_comment, + ACTIONS(5948), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5950), 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, + [95935] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3344), 1, + sym_comment, + ACTIONS(5948), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5950), 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, + [95991] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3345), 1, + sym_comment, + ACTIONS(5942), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5944), 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, + [96047] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3346), 1, + sym_comment, + ACTIONS(5942), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5944), 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, + [96103] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3347), 1, + sym_comment, + ACTIONS(5942), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5944), 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, + [96159] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3348), 1, + sym_comment, + ACTIONS(5938), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5940), 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, + [96215] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3349), 1, + sym_comment, + ACTIONS(3526), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5932), 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, + [96271] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3350), 1, + sym_comment, + ACTIONS(2287), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2293), 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, + [96329] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6716), 1, + anon_sym_AMP, + ACTIONS(6718), 1, + anon_sym_PIPE, + ACTIONS(6720), 1, + anon_sym_extends, + STATE(3351), 1, + sym_comment, + ACTIONS(5928), 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(5930), 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, + [96391] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6716), 1, + anon_sym_AMP, + ACTIONS(6718), 1, + anon_sym_PIPE, + ACTIONS(6720), 1, + anon_sym_extends, + STATE(3352), 1, + sym_comment, + ACTIONS(5917), 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(5919), 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, + [96453] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6716), 1, + anon_sym_AMP, + ACTIONS(6718), 1, + anon_sym_PIPE, + ACTIONS(6720), 1, + anon_sym_extends, + STATE(3353), 1, + sym_comment, + ACTIONS(5913), 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(5915), 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, + [96515] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3354), 1, + sym_comment, + ACTIONS(5913), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5915), 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, + [96571] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3355), 1, + sym_comment, + ACTIONS(5909), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5911), 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, + [96627] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3356), 1, + sym_comment, + ACTIONS(4351), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5899), 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, + [96683] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + ACTIONS(6730), 1, + anon_sym_SEMI, + ACTIONS(6732), 1, + sym__automatic_semicolon, + STATE(3264), 1, + sym_type_arguments, + STATE(3357), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96799] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3358), 1, + sym_comment, + ACTIONS(4389), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5897), 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, + [96855] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3359), 1, + sym_comment, + ACTIONS(6734), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [96909] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3360), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6736), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97023] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3361), 1, + sym_comment, + ACTIONS(4407), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5889), 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, + [97079] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6716), 1, + anon_sym_AMP, + ACTIONS(6718), 1, + anon_sym_PIPE, + ACTIONS(6720), 1, + anon_sym_extends, + STATE(3362), 1, + sym_comment, + ACTIONS(5883), 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(5885), 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, + [97141] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3363), 1, + sym_comment, + ACTIONS(5875), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5877), 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, + [97197] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3364), 1, + sym_comment, + ACTIONS(5871), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5873), 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, + [97253] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3365), 1, + sym_comment, + 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(5865), 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, + [97309] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3366), 1, + sym_comment, + ACTIONS(5856), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5858), 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, + [97365] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3367), 1, + sym_comment, + 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(5865), 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, + [97421] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3368), 1, + sym_comment, + ACTIONS(5856), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5858), 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, + [97477] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3369), 1, + sym_comment, + ACTIONS(5607), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5609), 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, + [97533] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3370), 1, + sym_comment, + ACTIONS(5822), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5824), 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, + [97589] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3371), 1, + sym_comment, + ACTIONS(5607), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5609), 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, + [97645] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3372), 1, + sym_comment, + ACTIONS(5822), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5824), 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, + [97701] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3373), 1, + sym_comment, + ACTIONS(5816), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5818), 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, + [97757] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3374), 1, + sym_comment, + ACTIONS(6738), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [97811] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3375), 1, + sym_comment, + ACTIONS(5812), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5814), 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, + [97867] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3376), 1, + sym_comment, + ACTIONS(5816), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5818), 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, + [97923] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3377), 1, + sym_comment, + ACTIONS(5812), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5814), 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, + [97979] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3378), 1, + sym_comment, + ACTIONS(5808), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5810), 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, + [98035] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3379), 1, + sym_comment, + ACTIONS(5795), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5797), 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, + [98091] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3380), 1, + sym_comment, + ACTIONS(3518), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5793), 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, + [98147] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5551), 1, + anon_sym_extends, + STATE(3381), 1, + sym_comment, + ACTIONS(5901), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5903), 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, + [98205] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3382), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6740), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98319] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6716), 1, + anon_sym_AMP, + ACTIONS(6718), 1, + anon_sym_PIPE, + ACTIONS(6720), 1, + anon_sym_extends, + STATE(3383), 1, + sym_comment, + ACTIONS(5901), 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(5903), 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, + [98381] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3384), 1, + sym_comment, + ACTIONS(5563), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5565), 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, + [98437] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3385), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6742), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98551] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5803), 1, + anon_sym_DOT, + STATE(3386), 1, + sym_comment, + ACTIONS(5799), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5801), 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, + [98609] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6018), 1, + anon_sym_DOT, + STATE(3387), 1, + sym_comment, + ACTIONS(5799), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5801), 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, + [98667] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3388), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5820), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [98781] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3389), 1, + sym_comment, + ACTIONS(5781), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5783), 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, + [98837] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6716), 1, + anon_sym_AMP, + STATE(3390), 1, + sym_comment, + ACTIONS(5777), 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(5779), 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, + [98895] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3391), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6016), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99009] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3392), 1, + sym_comment, + ACTIONS(5769), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5771), 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, + [99065] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3393), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5992), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99179] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3394), 1, + sym_comment, + ACTIONS(4399), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5767), 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, + [99235] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3395), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5986), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99349] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3396), 1, + sym_comment, + ACTIONS(4397), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5765), 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, + [99405] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5559), 1, + anon_sym_extends, + STATE(3397), 1, + sym_comment, + ACTIONS(6357), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6360), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 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(4473), 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, + [99467] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3398), 1, + sym_comment, + ACTIONS(4397), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5765), 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, + [99523] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3399), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5984), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [99637] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3400), 1, + sym_comment, + ACTIONS(4325), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5763), 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, + [99693] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3401), 1, + sym_comment, + ACTIONS(4325), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5763), 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, + [99749] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6716), 1, + anon_sym_AMP, + ACTIONS(6718), 1, + anon_sym_PIPE, + ACTIONS(6720), 1, + anon_sym_extends, + STATE(3402), 1, + sym_comment, + ACTIONS(5755), 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(5757), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99811] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3403), 1, + sym_comment, + ACTIONS(5755), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5757), 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, + [99867] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3404), 1, + sym_comment, + ACTIONS(5832), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5836), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5838), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99925] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3405), 1, + sym_comment, + ACTIONS(5747), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5749), 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, + [99981] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3406), 1, + sym_comment, + ACTIONS(5723), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5725), 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, + [100037] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3407), 1, + sym_comment, + ACTIONS(5709), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5711), 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, + [100093] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3408), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6744), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100207] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(5701), 1, + anon_sym_LBRACK, + STATE(3409), 1, + sym_comment, + ACTIONS(5707), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5704), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5695), 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(5699), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100271] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5683), 1, + anon_sym_LBRACK, + STATE(3410), 1, + sym_comment, + ACTIONS(5689), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5686), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2287), 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(2293), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100335] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3411), 1, + sym_comment, + ACTIONS(6643), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [100389] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3412), 1, + sym_comment, + ACTIONS(5679), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5681), 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, + [100445] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3413), 1, + sym_comment, + ACTIONS(5675), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5677), 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, + [100501] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3414), 1, + sym_comment, + ACTIONS(5667), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5669), 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, + [100557] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3415), 1, + sym_comment, + ACTIONS(5663), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5665), 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, + [100613] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3416), 1, + sym_comment, + ACTIONS(5826), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [100669] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3417), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6746), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100783] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3418), 1, + sym_comment, + ACTIONS(5830), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5832), 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, + [100839] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3419), 1, + sym_comment, + ACTIONS(3510), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [100895] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4621), 1, + anon_sym_EQ, + ACTIONS(6008), 1, + anon_sym_extends, + STATE(3420), 1, + sym_comment, + ACTIONS(6192), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 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(4473), 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, + [100959] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6716), 1, + anon_sym_AMP, + ACTIONS(6718), 1, + anon_sym_PIPE, + ACTIONS(6720), 1, + anon_sym_extends, + STATE(3421), 1, + sym_comment, + ACTIONS(5879), 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(5881), 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, + [101021] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(6748), 1, + anon_sym_STAR, + STATE(3422), 1, + sym_comment, + STATE(5690), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6750), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [101093] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5683), 1, + anon_sym_LBRACK, + ACTIONS(5689), 1, + anon_sym_extends, + ACTIONS(6536), 1, + anon_sym_RPAREN, + STATE(3423), 1, + sym_comment, + ACTIONS(2289), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5686), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6486), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2287), 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(2293), 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, + [101161] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5701), 1, + anon_sym_LBRACK, + ACTIONS(5707), 1, + anon_sym_extends, + ACTIONS(6520), 1, + anon_sym_RPAREN, + STATE(3424), 1, + sym_comment, + ACTIONS(5697), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5704), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6507), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5695), 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(5699), 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, + [101229] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3425), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6373), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101343] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6756), 1, + sym_regex_flags, + STATE(3426), 1, + sym_comment, + ACTIONS(6752), 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(6754), 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, + [101401] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3427), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5673), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101515] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3428), 1, + sym_comment, + ACTIONS(2356), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [101569] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3429), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6070), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101683] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3430), 1, + sym_comment, + ACTIONS(2368), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [101737] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5623), 1, + anon_sym_AMP_AMP, + ACTIONS(5625), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5627), 1, + anon_sym_GT_GT, + ACTIONS(5631), 1, + anon_sym_AMP, + ACTIONS(5633), 1, + anon_sym_CARET, + ACTIONS(5635), 1, + anon_sym_PIPE, + ACTIONS(5639), 1, + anon_sym_PERCENT, + ACTIONS(5641), 1, + anon_sym_STAR_STAR, + ACTIONS(5643), 1, + anon_sym_LT, + ACTIONS(5651), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5657), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3431), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5611), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5619), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5629), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5637), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5647), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5649), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6182), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5645), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101851] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6008), 1, + anon_sym_extends, + STATE(3432), 1, + sym_comment, + ACTIONS(6192), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 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(4473), 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, + [101913] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + ACTIONS(6758), 1, + anon_sym_SEMI, + ACTIONS(6760), 1, + sym__automatic_semicolon, + STATE(3264), 1, + sym_type_arguments, + STATE(3433), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102029] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5832), 1, + anon_sym_extends, + STATE(3434), 1, + sym_comment, + ACTIONS(5836), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5838), 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, + [102087] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5559), 1, + anon_sym_extends, + ACTIONS(6357), 1, + anon_sym_LBRACK, + ACTIONS(6765), 1, + anon_sym_RPAREN, + STATE(3435), 1, + sym_comment, + ACTIONS(6360), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6654), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6762), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4469), 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(4473), 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, + [102155] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4539), 1, + anon_sym_EQ, + ACTIONS(4661), 1, + anon_sym_QMARK, + ACTIONS(6192), 1, + anon_sym_LBRACK, + STATE(3436), 1, + sym_comment, + ACTIONS(4692), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(6008), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(6195), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 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(4473), 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, + [102223] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3437), 1, + sym_comment, + ACTIONS(6769), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [102277] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3438), 1, + sym_comment, + ACTIONS(4343), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5998), 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, + [102333] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3439), 1, + sym_comment, + ACTIONS(4341), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6004), 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, + [102389] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3440), 1, + sym_comment, + ACTIONS(6769), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [102443] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3441), 1, + sym_comment, + ACTIONS(4339), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6029), 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, + [102499] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3442), 1, + sym_comment, + ACTIONS(6037), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6039), 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, + [102555] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6771), 1, + anon_sym_LBRACK, + STATE(3443), 1, + sym_comment, + ACTIONS(5867), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5869), 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, + [102613] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6773), 1, + anon_sym_extends, + STATE(3444), 1, + sym_comment, + ACTIONS(5891), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5893), 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, + [102671] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5721), 1, + anon_sym_extends, + ACTIONS(6771), 1, + anon_sym_LBRACK, + STATE(3445), 1, + sym_comment, + ACTIONS(5719), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5713), 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(5715), 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, + [102733] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5683), 1, + anon_sym_LBRACK, + ACTIONS(5689), 1, + anon_sym_extends, + ACTIONS(6775), 1, + anon_sym_RPAREN, + STATE(3446), 1, + sym_comment, + ACTIONS(2289), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5686), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6343), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2287), 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(2293), 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, + [102801] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6716), 1, + anon_sym_AMP, + ACTIONS(6718), 1, + anon_sym_PIPE, + ACTIONS(6720), 1, + anon_sym_extends, + STATE(3447), 1, + sym_comment, + ACTIONS(5727), 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(5729), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [102863] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3448), 1, + sym_comment, + ACTIONS(5739), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5741), 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, + [102919] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3449), 1, + sym_comment, + ACTIONS(5743), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5745), 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, + [102975] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3450), 1, + sym_comment, + ACTIONS(5751), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5753), 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, + [103031] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3451), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6778), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103145] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6716), 1, + anon_sym_AMP, + STATE(3452), 1, + sym_comment, + ACTIONS(5759), 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(5761), 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, + [103203] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3453), 1, + sym_comment, + ACTIONS(5787), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5789), 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, + [103259] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3454), 1, + sym_comment, + ACTIONS(5791), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5707), 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, + [103315] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3455), 1, + sym_comment, + ACTIONS(5832), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5836), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5838), 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, + [103373] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6278), 1, + anon_sym_EQ, + STATE(3456), 1, + sym_comment, + ACTIONS(6276), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6280), 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, + [103431] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3457), 1, + sym_comment, + ACTIONS(5988), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5990), 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, + [103487] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6780), 1, + anon_sym_DOT, + STATE(3458), 1, + sym_comment, + ACTIONS(5978), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5980), 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, + [103545] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3459), 1, + sym_comment, + ACTIONS(6231), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6228), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5745), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(6184), 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(6186), 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, + [103607] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3460), 1, + sym_comment, + ACTIONS(3498), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5689), 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, + [103663] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3461), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5834), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103777] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3462), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5846), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103891] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5701), 1, + anon_sym_LBRACK, + ACTIONS(5707), 1, + anon_sym_extends, + ACTIONS(6782), 1, + anon_sym_RPAREN, + STATE(3463), 1, + sym_comment, + ACTIONS(5697), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5704), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6162), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5695), 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(5699), 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, + [103959] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + ACTIONS(6785), 1, + anon_sym_SEMI, + ACTIONS(6787), 1, + sym__automatic_semicolon, + STATE(3264), 1, + sym_type_arguments, + STATE(3464), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104075] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + STATE(3264), 1, + sym_type_arguments, + STATE(3465), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [104163] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6789), 1, + anon_sym_LT, + STATE(3264), 1, + sym_type_arguments, + STATE(3466), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [104241] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + STATE(3264), 1, + sym_type_arguments, + STATE(3467), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [104343] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + STATE(3264), 1, + sym_type_arguments, + STATE(3468), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [104447] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6789), 1, + anon_sym_LT, + STATE(3264), 1, + sym_type_arguments, + STATE(3469), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [104531] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5559), 1, + anon_sym_extends, + ACTIONS(6357), 1, + anon_sym_LBRACK, + ACTIONS(6796), 1, + anon_sym_RPAREN, + STATE(3470), 1, + sym_comment, + ACTIONS(6360), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6792), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6794), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4469), 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(4473), 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, + [104599] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + ACTIONS(6799), 1, + anon_sym_SEMI, + ACTIONS(6801), 1, + sym__automatic_semicolon, + STATE(3264), 1, + sym_type_arguments, + STATE(3471), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104715] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5697), 1, + anon_sym_EQ, + STATE(3472), 1, + sym_comment, + ACTIONS(5695), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5699), 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, + [104773] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + STATE(3264), 1, + sym_type_arguments, + STATE(3473), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [104869] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3474), 1, + sym_comment, + ACTIONS(6047), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6049), 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, + [104925] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3475), 1, + sym_comment, + ACTIONS(5549), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5551), 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, + [104981] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6771), 1, + anon_sym_LBRACK, + STATE(3476), 1, + sym_comment, + ACTIONS(5719), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5721), 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, + [105039] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3477), 1, + sym_comment, + ACTIONS(5719), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5721), 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, + [105095] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3478), 1, + sym_comment, + ACTIONS(5557), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5559), 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, + [105151] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3479), 1, + sym_comment, + ACTIONS(6006), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6008), 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, + [105207] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3480), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6803), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [105321] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3481), 1, + sym_comment, + ACTIONS(5974), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5976), 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, + [105377] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + STATE(3264), 1, + sym_type_arguments, + STATE(3482), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5852), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [105475] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + ACTIONS(6805), 1, + anon_sym_SEMI, + ACTIONS(6807), 1, + sym__automatic_semicolon, + STATE(3264), 1, + sym_type_arguments, + STATE(3483), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [105591] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(6809), 1, + anon_sym_STAR, + ACTIONS(6811), 1, + anon_sym_async, + STATE(3484), 1, + sym_comment, + STATE(5541), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6813), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [105665] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6284), 1, + sym__automatic_semicolon, + STATE(3485), 1, + sym_comment, + ACTIONS(2285), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2374), 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, + [105725] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4601), 1, + anon_sym_EQ, + ACTIONS(6008), 1, + anon_sym_extends, + STATE(3486), 1, + sym_comment, + ACTIONS(6192), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 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(4473), 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, + [105789] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(6809), 1, + anon_sym_STAR, + STATE(3487), 1, + sym_comment, + STATE(5541), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6813), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [105861] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3488), 1, + sym_comment, + ACTIONS(6195), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6192), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(6008), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4469), 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(4473), 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, + [105923] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3489), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6815), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [106037] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + STATE(3264), 1, + sym_type_arguments, + STATE(3490), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5852), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [106137] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6789), 1, + anon_sym_LT, + STATE(3264), 1, + sym_type_arguments, + STATE(3491), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [106219] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + ACTIONS(6817), 1, + anon_sym_SEMI, + ACTIONS(6819), 1, + sym__automatic_semicolon, + STATE(3264), 1, + sym_type_arguments, + STATE(3492), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [106335] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(5701), 1, + anon_sym_LBRACK, + ACTIONS(5707), 1, + anon_sym_extends, + ACTIONS(5791), 1, + anon_sym_QMARK, + ACTIONS(6162), 1, + anon_sym_COLON, + STATE(3493), 1, + sym_comment, + ACTIONS(5704), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6520), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5695), 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(5699), 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, + [106405] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6789), 1, + anon_sym_LT, + STATE(3264), 1, + sym_type_arguments, + STATE(3494), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [106489] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + STATE(3264), 1, + sym_type_arguments, + STATE(3495), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5852), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 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, + [106581] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + STATE(3264), 1, + sym_type_arguments, + STATE(3496), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 6, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [106687] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3497), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5963), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [106801] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2722), 1, + anon_sym_EQ_GT, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3498), 1, + sym_comment, + STATE(5599), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [106871] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6065), 1, + anon_sym_as, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(6116), 1, + anon_sym_satisfies, + ACTIONS(6661), 1, + anon_sym_LT, + ACTIONS(6667), 1, + anon_sym_AMP_AMP, + ACTIONS(6669), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6671), 1, + anon_sym_GT_GT, + ACTIONS(6675), 1, + anon_sym_AMP, + ACTIONS(6677), 1, + anon_sym_CARET, + ACTIONS(6679), 1, + anon_sym_PIPE, + ACTIONS(6683), 1, + anon_sym_PERCENT, + ACTIONS(6685), 1, + anon_sym_STAR_STAR, + ACTIONS(6693), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6695), 1, + sym__ternary_qmark, + STATE(3264), 1, + sym_type_arguments, + STATE(3499), 1, + sym_comment, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5972), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6663), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6665), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6673), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6689), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6691), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(6687), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [106985] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(6573), 1, + anon_sym_STAR, + STATE(3500), 1, + sym_comment, + STATE(5599), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6579), 2, + anon_sym_get, + anon_sym_set, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [107057] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6825), 1, + anon_sym_COLON, + ACTIONS(6827), 1, + anon_sym_AMP_AMP, + ACTIONS(6829), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6839), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3501), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107170] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + STATE(3502), 1, + sym_comment, + STATE(3139), 2, + sym_template_string, + sym_arguments, + ACTIONS(6859), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5597), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5599), 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, + [107233] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3503), 1, + sym_comment, + ACTIONS(6861), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2458), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2460), 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, + [107290] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3504), 1, + sym_comment, + ACTIONS(5836), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5838), 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, + [107345] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5984), 1, + anon_sym_of, + ACTIONS(6867), 1, + anon_sym_AMP_AMP, + ACTIONS(6869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6875), 1, + anon_sym_AMP, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3505), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107458] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5986), 1, + anon_sym_of, + ACTIONS(6867), 1, + anon_sym_AMP_AMP, + ACTIONS(6869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6875), 1, + anon_sym_AMP, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3506), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107571] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3507), 1, + sym_comment, + ACTIONS(6059), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6061), 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, + [107626] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6006), 1, + anon_sym_QMARK, + STATE(3508), 1, + sym_comment, + ACTIONS(6008), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(6195), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6192), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4469), 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(4473), 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, + [107689] = 11, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3509), 1, sym_comment, - ACTIONS(1454), 1, + STATE(5701), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [107756] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4674), 1, anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2107), 1, + ACTIONS(6008), 1, + anon_sym_extends, + STATE(3510), 1, + sym_comment, + ACTIONS(6192), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 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(4473), 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, + [107819] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3511), 1, + sym_comment, + ACTIONS(6654), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6656), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(2993), 1, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, + [107878] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3512), 1, + sym_comment, + STATE(5515), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, - ACTIONS(2995), 1, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [107945] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3513), 1, + sym_comment, + ACTIONS(2480), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2484), 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, + [108000] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3514), 1, + sym_comment, + ACTIONS(6899), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2442), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2446), 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, + [108057] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5992), 1, + anon_sym_of, + ACTIONS(6867), 1, + anon_sym_AMP_AMP, + ACTIONS(6869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6875), 1, + anon_sym_AMP, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3515), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [108170] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(2997), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - STATE(151), 1, - sym_nested_identifier, - STATE(153), 1, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3516), 1, + sym_comment, + STATE(5693), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, sym_string, - STATE(188), 1, - sym__module, - ACTIONS(65), 15, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [108237] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6903), 1, + sym__automatic_semicolon, + STATE(3517), 1, + sym_comment, + ACTIONS(6901), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2450), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2454), 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, + [108296] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3518), 1, + sym_comment, + ACTIONS(6243), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6245), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_satisfies, + [108351] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3519), 1, + sym_comment, + ACTIONS(6220), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6222), 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, + [108406] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6016), 1, + anon_sym_of, + ACTIONS(6867), 1, + anon_sym_AMP_AMP, + ACTIONS(6869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6875), 1, + anon_sym_AMP, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3520), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [108519] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3521), 1, + sym_comment, + STATE(5671), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [108586] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3522), 1, + sym_comment, + ACTIONS(6905), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2424), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2428), 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, + [108643] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5820), 1, + anon_sym_of, + ACTIONS(6867), 1, + anon_sym_AMP_AMP, + ACTIONS(6869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6875), 1, + anon_sym_AMP, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3523), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [108756] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3524), 1, + sym_comment, + ACTIONS(6907), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2404), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2408), 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, + [108813] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3525), 1, + sym_comment, + STATE(5636), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [108880] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3526), 1, + sym_comment, + STATE(5654), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [108947] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5848), 1, + anon_sym_of, + ACTIONS(6867), 1, + anon_sym_AMP_AMP, + ACTIONS(6869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6875), 1, + anon_sym_AMP, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3527), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [109060] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3528), 1, + sym_comment, + STATE(5644), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [109127] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6909), 1, + sym_regex_flags, + STATE(3529), 1, + sym_comment, + ACTIONS(6752), 17, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_of, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [91] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(1450), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 15, + ACTIONS(6754), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -126984,1114 +347941,1021 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 25, + [109184] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3530), 1, + sym_comment, + ACTIONS(6303), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [180] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - ACTIONS(1448), 1, - anon_sym_EQ, - ACTIONS(1450), 1, - anon_sym_EQ_GT, - ACTIONS(3205), 1, - sym_identifier, - STATE(1453), 1, - sym_string, - STATE(1456), 1, - sym_nested_identifier, - STATE(1727), 1, - sym__module, - ACTIONS(65), 15, + ACTIONS(6305), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 25, + anon_sym_satisfies, + [109239] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6913), 1, + sym__automatic_semicolon, + STATE(3531), 1, + sym_comment, + ACTIONS(6911), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2334), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [269] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(3205), 1, - sym_identifier, - STATE(1453), 1, - sym_string, - STATE(1456), 1, - sym_nested_identifier, - STATE(1727), 1, - sym__module, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 16, - sym__automatic_semicolon, + ACTIONS(2338), 23, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(26), 24, + anon_sym_satisfies, + [109298] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6917), 1, + sym__automatic_semicolon, + STATE(3532), 1, + sym_comment, + ACTIONS(6915), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2472), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [358] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_EQ, - ACTIONS(63), 1, - anon_sym_EQ_GT, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(2213), 1, - anon_sym_LBRACE, - ACTIONS(2215), 1, - anon_sym_DOT, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - STATE(2492), 1, - sym_ui_object_initializer, - ACTIONS(32), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(65), 11, + ACTIONS(2476), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_satisfies, + [109357] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4621), 1, + anon_sym_EQ, + ACTIONS(4750), 1, + anon_sym_in, + ACTIONS(4753), 1, + anon_sym_of, + STATE(3533), 1, + sym_comment, + ACTIONS(4469), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [455] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2256), 1, - anon_sym_in, - ACTIONS(3205), 1, - sym_identifier, - ACTIONS(3221), 1, - anon_sym_of, - STATE(1453), 1, - sym_string, - STATE(1456), 1, - sym_nested_identifier, - STATE(1727), 1, - sym__module, - ACTIONS(65), 15, + ACTIONS(4473), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 23, + anon_sym_satisfies, + [109418] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6919), 1, + sym__automatic_semicolon, + STATE(3534), 1, + sym_comment, + ACTIONS(6901), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2450), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [548] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2107), 1, - anon_sym_COLON, - ACTIONS(2987), 1, - sym_identifier, - ACTIONS(2989), 1, - anon_sym_DQUOTE, - ACTIONS(2991), 1, - anon_sym_SQUOTE, - STATE(678), 1, - sym_nested_identifier, - STATE(701), 1, - sym_string, - STATE(732), 1, - sym__module, - ACTIONS(65), 15, - sym__automatic_semicolon, + ACTIONS(2454), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, - anon_sym_STAR, + anon_sym_satisfies, + [109477] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6925), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, anon_sym_AMP_AMP, + ACTIONS(6929), 1, anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6935), 1, anon_sym_AMP, + ACTIONS(6937), 1, anon_sym_CARET, + ACTIONS(6939), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6943), 1, anon_sym_PERCENT, + ACTIONS(6945), 1, anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + ACTIONS(6955), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6957), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3535), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6951), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_satisfies, - [639] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - ACTIONS(1454), 1, + [109590] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4601), 1, anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2131), 1, - anon_sym_COLON, - ACTIONS(3205), 1, - sym_identifier, - STATE(1453), 1, - sym_string, - STATE(1456), 1, - sym_nested_identifier, - STATE(1727), 1, - sym__module, - ACTIONS(65), 15, + STATE(3536), 1, + sym_comment, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_satisfies, + [109647] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3537), 1, + sym_comment, + ACTIONS(6959), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2432), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [730] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2163), 1, - anon_sym_COLON, - ACTIONS(3223), 1, - sym_identifier, - ACTIONS(3225), 1, - anon_sym_DQUOTE, - ACTIONS(3227), 1, - anon_sym_SQUOTE, - STATE(2463), 1, - sym_nested_identifier, - STATE(2479), 1, - sym_string, - STATE(2690), 1, - sym__module, - ACTIONS(65), 15, - sym__automatic_semicolon, + ACTIONS(2436), 23, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_satisfies, + [109704] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3538), 1, + sym_comment, + STATE(5508), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [109771] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3539), 1, + sym_comment, + ACTIONS(2450), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [821] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2131), 1, - anon_sym_COLON, - ACTIONS(3229), 1, - sym_identifier, - STATE(732), 1, - sym__module, - STATE(3557), 1, - sym_nested_identifier, - STATE(3976), 1, - sym_string, - ACTIONS(65), 15, + ACTIONS(2454), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_satisfies, + [109826] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3540), 1, + sym_comment, + ACTIONS(6297), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [912] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 16, + ACTIONS(6299), 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, - ACTIONS(26), 24, + anon_sym_satisfies, + [109881] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6961), 1, + sym__automatic_semicolon, + STATE(3541), 1, + sym_comment, + ACTIONS(6899), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2442), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [1001] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(63), 1, - anon_sym_EQ_GT, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(1396), 1, - anon_sym_EQ, - ACTIONS(1469), 1, - anon_sym_COLON, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(1466), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(65), 12, + ACTIONS(2446), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, - anon_sym_STAR, + anon_sym_satisfies, + [109940] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6416), 1, + anon_sym_of, + ACTIONS(6865), 1, anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6867), 1, anon_sym_AMP_AMP, + ACTIONS(6869), 1, anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6875), 1, anon_sym_AMP, + ACTIONS(6877), 1, anon_sym_CARET, + ACTIONS(6879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6883), 1, anon_sym_PERCENT, + ACTIONS(6885), 1, anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, + sym__ternary_qmark, + ACTIONS(6963), 1, + anon_sym_in, + STATE(2774), 1, + sym_type_arguments, + STATE(3542), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_satisfies, - [1094] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2163), 1, - anon_sym_COLON, - ACTIONS(3231), 1, - sym_identifier, - ACTIONS(3233), 1, - anon_sym_DQUOTE, - ACTIONS(3235), 1, - anon_sym_SQUOTE, - STATE(865), 1, - sym_string, - STATE(866), 1, - sym_nested_identifier, - STATE(894), 1, - sym__module, - ACTIONS(65), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + [110055] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5601), 1, anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, - anon_sym_STAR, + ACTIONS(5613), 1, anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5848), 1, + anon_sym_COLON, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6835), 1, anon_sym_AMP, + ACTIONS(6837), 1, anon_sym_CARET, + ACTIONS(6839), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6843), 1, anon_sym_PERCENT, + ACTIONS(6845), 1, anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3543), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_satisfies, - [1185] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2013), 1, - anon_sym_EQ, - ACTIONS(2021), 1, - anon_sym_COLON, - ACTIONS(2037), 1, - anon_sym_QMARK, - ACTIONS(2039), 1, - anon_sym_RBRACE, - ACTIONS(2067), 1, + [110168] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - ACTIONS(2070), 1, - anon_sym_LT, - ACTIONS(3237), 1, - sym_identifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(65), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5601), 1, anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 23, - anon_sym_STAR, + ACTIONS(5613), 1, anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5820), 1, + anon_sym_COLON, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6835), 1, anon_sym_AMP, + ACTIONS(6837), 1, anon_sym_CARET, + ACTIONS(6839), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6843), 1, anon_sym_PERCENT, + ACTIONS(6845), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [1277] = 7, - ACTIONS(3), 1, + ACTIONS(6857), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3544), 1, sym_comment, - ACTIONS(3243), 1, - anon_sym_class, - ACTIONS(3246), 1, - anon_sym_AT, - STATE(1127), 1, - aux_sym_export_statement_repeat1, - STATE(1136), 1, - sym_decorator, - ACTIONS(3241), 13, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - ACTIONS(3239), 45, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_from, - anon_sym_await, - anon_sym_of, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [1355] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3253), 1, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110281] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - ACTIONS(3255), 1, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - STATE(1150), 1, - sym_arguments, - ACTIONS(3251), 13, - anon_sym_LBRACE, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6016), 1, + anon_sym_COLON, + ACTIONS(6827), 1, + anon_sym_AMP_AMP, + ACTIONS(6829), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6839), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3545), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110394] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, + ACTIONS(2251), 1, anon_sym_SQUOTE, - anon_sym_BQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3546), 1, + sym_comment, + STATE(5599), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, - anon_sym_AT, - ACTIONS(3249), 46, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, anon_sym_from, - anon_sym_await, + anon_sym_let, anon_sym_of, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, anon_sym_async, - anon_sym_function, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -128107,447 +348971,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [1431] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2013), 1, - anon_sym_EQ, - ACTIONS(2021), 1, - anon_sym_COLON, - ACTIONS(2037), 1, - anon_sym_QMARK, - ACTIONS(2043), 1, - anon_sym_RBRACE, - ACTIONS(2067), 1, + [110461] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - ACTIONS(2070), 1, - anon_sym_LT, - ACTIONS(3237), 1, - sym_identifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(65), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5601), 1, anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 23, - anon_sym_STAR, + ACTIONS(5613), 1, anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5992), 1, + anon_sym_COLON, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6835), 1, anon_sym_AMP, + ACTIONS(6837), 1, anon_sym_CARET, + ACTIONS(6839), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6843), 1, anon_sym_PERCENT, + ACTIONS(6845), 1, anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3547), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_satisfies, - [1523] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(1563), 1, - anon_sym_EQ, - ACTIONS(1565), 1, - anon_sym_EQ_GT, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 14, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + [110574] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5601), 1, anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 25, - anon_sym_STAR, + ACTIONS(5613), 1, anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5986), 1, + anon_sym_COLON, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6835), 1, anon_sym_AMP, + ACTIONS(6837), 1, anon_sym_CARET, + ACTIONS(6839), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6843), 1, anon_sym_PERCENT, + ACTIONS(6845), 1, anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3548), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [1611] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2013), 1, - anon_sym_EQ, - ACTIONS(2021), 1, - anon_sym_COLON, - ACTIONS(2037), 1, - anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_RBRACE, - ACTIONS(2067), 1, + [110687] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6966), 1, anon_sym_LPAREN, - ACTIONS(2070), 1, + ACTIONS(6969), 1, + anon_sym_COLON, + ACTIONS(6971), 1, anon_sym_LT, - ACTIONS(3237), 1, - sym_identifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(65), 14, + ACTIONS(6974), 1, + anon_sym_QMARK, + STATE(3549), 1, + sym_comment, + ACTIONS(6313), 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(6315), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 23, + anon_sym_satisfies, + [110750] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3550), 1, + sym_comment, + ACTIONS(5836), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [1703] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2013), 1, - anon_sym_EQ, - ACTIONS(2015), 1, - anon_sym_RBRACE, - ACTIONS(2021), 1, - anon_sym_COLON, - ACTIONS(2037), 1, - anon_sym_QMARK, - ACTIONS(2067), 1, - anon_sym_LPAREN, - ACTIONS(2070), 1, - anon_sym_LT, - ACTIONS(3237), 1, - sym_identifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(65), 14, + ACTIONS(5838), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 23, + anon_sym_satisfies, + [110805] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6909), 1, + sym_regex_flags, + STATE(3551), 1, + sym_comment, + ACTIONS(6752), 16, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [1795] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(1565), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 14, + ACTIONS(6754), 24, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 25, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_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, - [1883] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3246), 1, - anon_sym_AT, - STATE(1127), 1, - aux_sym_export_statement_repeat1, - STATE(1136), 1, - sym_decorator, - ACTIONS(3241), 13, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [110862] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, + ACTIONS(2251), 1, anon_sym_SQUOTE, - anon_sym_BQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3552), 1, + sym_comment, + STATE(5573), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, - ACTIONS(3239), 46, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, anon_sym_from, - anon_sym_await, + anon_sym_let, anon_sym_of, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, anon_sym_async, - anon_sym_function, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -128563,616 +349340,561 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [1959] = 15, - ACTIONS(3), 1, + [110929] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3553), 1, sym_comment, - ACTIONS(32), 1, - anon_sym_RBRACK, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(125), 1, + ACTIONS(6976), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(1758), 1, - anon_sym_EQ_GT, - ACTIONS(2269), 1, - anon_sym_EQ, - ACTIONS(2272), 1, - anon_sym_COLON, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 12, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2480), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2484), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_satisfies, + [110986] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3554), 1, + sym_comment, + ACTIONS(6339), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6341), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [2053] = 3, - ACTIONS(3), 1, + [111041] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3555), 1, sym_comment, - ACTIONS(3257), 23, + ACTIONS(2458), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3259), 38, + ACTIONS(2460), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [2122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3263), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(3261), 47, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_from, - anon_sym_await, - anon_sym_of, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [2191] = 3, - ACTIONS(3), 1, + [111096] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4621), 1, + anon_sym_EQ, + STATE(3556), 1, sym_comment, - ACTIONS(3265), 23, + ACTIONS(4469), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3267), 38, + ACTIONS(4473), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [2260] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(1667), 1, - anon_sym_EQ, - ACTIONS(1669), 1, - anon_sym_EQ_GT, - ACTIONS(3269), 1, - sym_identifier, - STATE(3254), 1, - sym_nested_identifier, - STATE(3276), 1, - sym_string, - STATE(3769), 1, - sym__module, - ACTIONS(65), 14, + [111153] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6980), 1, sym__automatic_semicolon, + STATE(3557), 1, + sym_comment, + ACTIONS(6978), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2342), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2346), 23, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_satisfies, + [111212] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3558), 1, + sym_comment, + ACTIONS(4469), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [2347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3273), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(3271), 47, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_from, - anon_sym_await, - anon_sym_of, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_satisfies, + [111267] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5683), 1, + anon_sym_LBRACK, + STATE(3559), 1, + sym_comment, + ACTIONS(5689), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5686), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2287), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [2416] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2013), 1, - anon_sym_EQ, - ACTIONS(2021), 1, - anon_sym_COLON, - ACTIONS(2037), 1, - anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_RBRACE, - ACTIONS(2067), 1, - anon_sym_LPAREN, - ACTIONS(2070), 1, + anon_sym_SLASH, anon_sym_LT, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 17, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2293), 24, 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, - ACTIONS(26), 20, + [111330] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3560), 1, + sym_comment, + ACTIONS(6982), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2350), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2354), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [2505] = 3, - ACTIONS(3), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [111387] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3561), 1, sym_comment, - ACTIONS(3275), 23, + ACTIONS(6984), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2362), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2366), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [111444] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(5701), 1, + anon_sym_LBRACK, + STATE(3562), 1, + sym_comment, + ACTIONS(5707), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5704), 3, + anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, + ACTIONS(5695), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3277), 38, + ACTIONS(5699), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [2574] = 3, + [111507] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3281), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, + ACTIONS(2251), 1, anon_sym_SQUOTE, - anon_sym_BQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3563), 1, + sym_comment, + STATE(5579), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, - anon_sym_AT, - ACTIONS(3279), 47, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, anon_sym_from, - anon_sym_await, + anon_sym_let, anon_sym_of, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, anon_sym_async, - anon_sym_function, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -129188,341 +349910,835 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - [2643] = 13, - ACTIONS(3), 1, + [111574] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3564), 1, sym_comment, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2013), 1, - anon_sym_EQ, - ACTIONS(2021), 1, - anon_sym_COLON, - ACTIONS(2037), 1, - anon_sym_QMARK, - ACTIONS(2043), 1, - anon_sym_RBRACE, - ACTIONS(2067), 1, - anon_sym_LPAREN, - ACTIONS(2070), 1, + ACTIONS(6268), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 17, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6270), 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, - ACTIONS(26), 20, - anon_sym_STAR, + [111629] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5984), 1, + anon_sym_COLON, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6835), 1, anon_sym_AMP, + ACTIONS(6837), 1, anon_sym_CARET, + ACTIONS(6839), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6843), 1, anon_sym_PERCENT, + ACTIONS(6845), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, anon_sym_QMARK_QMARK, - [2732] = 3, - ACTIONS(3), 1, + ACTIONS(6857), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3565), 1, sym_comment, - ACTIONS(3283), 23, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6823), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111742] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5972), 1, + anon_sym_COLON, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6839), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3566), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111855] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3567), 1, + sym_comment, + ACTIONS(2442), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3285), 38, + ACTIONS(2446), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [2801] = 13, - ACTIONS(3), 1, + [111910] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3568), 1, sym_comment, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1758), 1, - anon_sym_EQ_GT, - ACTIONS(2285), 1, - anon_sym_COLON, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 13, + ACTIONS(6331), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6333), 28, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, - anon_sym_STAR, + anon_sym_satisfies, + [111965] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5963), 1, + anon_sym_COLON, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6839), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3569), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112078] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6827), 1, + anon_sym_AMP_AMP, + ACTIONS(6829), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6835), 1, anon_sym_AMP, + ACTIONS(6837), 1, anon_sym_CARET, + ACTIONS(6839), 1, anon_sym_PIPE, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3570), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [112183] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6843), 1, anon_sym_PERCENT, + ACTIONS(6845), 1, anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3571), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5852), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(5850), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_satisfies, - [2890] = 3, - ACTIONS(3), 1, + [112274] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6986), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3572), 1, sym_comment, - ACTIONS(3287), 23, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 11, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 14, + sym__ternary_qmark, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, 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, + [112357] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6986), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3573), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3289), 38, + ACTIONS(5850), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + 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, + [112438] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3574), 1, + sym_comment, + ACTIONS(6989), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6991), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [2959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3293), 14, - anon_sym_LBRACE, - anon_sym_BANG, + [112497] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6827), 1, + anon_sym_AMP_AMP, + ACTIONS(6829), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6839), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + ACTIONS(6993), 1, + anon_sym_COLON, + STATE(2774), 1, + sym_type_arguments, + STATE(3575), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112610] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, + ACTIONS(2251), 1, anon_sym_SQUOTE, - anon_sym_BQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3576), 1, + sym_comment, + STATE(5729), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, - anon_sym_AT, - ACTIONS(3291), 47, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, anon_sym_from, - anon_sym_await, + anon_sym_let, anon_sym_of, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, anon_sym_async, - anon_sym_function, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -129538,642 +350754,498 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - [3028] = 3, - ACTIONS(3), 1, + [112677] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3577), 1, sym_comment, - ACTIONS(3295), 23, - anon_sym_STAR, - anon_sym_EQ, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5852), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [112776] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3578), 1, + sym_comment, + ACTIONS(6995), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6997), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3297), 38, + ACTIONS(4473), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [3097] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1667), 1, - anon_sym_EQ, - ACTIONS(1669), 1, - anon_sym_EQ_GT, - ACTIONS(2993), 1, - sym_identifier, - ACTIONS(2995), 1, - anon_sym_DQUOTE, - ACTIONS(2997), 1, - anon_sym_SQUOTE, - STATE(151), 1, - sym_nested_identifier, - STATE(153), 1, - sym_string, - STATE(188), 1, - sym__module, - ACTIONS(65), 14, - sym__automatic_semicolon, - sym__ternary_qmark, + [112835] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3579), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, - anon_sym_STAR, - anon_sym_as, + ACTIONS(5852), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6833), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(6841), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3184] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(32), 1, - anon_sym_RBRACK, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(125), 1, - anon_sym_COMMA, - ACTIONS(1758), 1, - anon_sym_EQ_GT, - ACTIONS(2269), 1, - anon_sym_EQ, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 12, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(6853), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, - anon_sym_STAR, + anon_sym_instanceof, + ACTIONS(5850), 8, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_satisfies, - [3275] = 3, - ACTIONS(3), 1, + [112932] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3580), 1, sym_comment, - ACTIONS(3299), 23, - anon_sym_STAR, + ACTIONS(6995), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6997), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4469), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(3301), 38, + ACTIONS(4473), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [3344] = 12, - ACTIONS(3), 1, + [112991] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3581), 1, sym_comment, - ACTIONS(1667), 1, + ACTIONS(6995), 2, anon_sym_EQ, - ACTIONS(1669), 1, - anon_sym_EQ_GT, - ACTIONS(3231), 1, - sym_identifier, - ACTIONS(3233), 1, - anon_sym_DQUOTE, - ACTIONS(3235), 1, - anon_sym_SQUOTE, - STATE(865), 1, - sym_string, - STATE(866), 1, - sym_nested_identifier, - STATE(894), 1, - sym__module, - ACTIONS(65), 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(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_QMARK, + ACTIONS(6997), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4469), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3431] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1667), 1, - anon_sym_EQ, - ACTIONS(1669), 1, - anon_sym_EQ_GT, - ACTIONS(3229), 1, - sym_identifier, - STATE(732), 1, - sym__module, - STATE(3557), 1, - sym_nested_identifier, - STATE(3976), 1, - sym_string, - ACTIONS(65), 14, - sym__automatic_semicolon, + ACTIONS(4473), 23, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, 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(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [113050] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3582), 1, + sym_comment, + ACTIONS(6257), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3518] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2021), 1, - anon_sym_COLON, - ACTIONS(2037), 1, - anon_sym_QMARK, - ACTIONS(2039), 1, - anon_sym_RBRACE, - ACTIONS(3305), 1, - anon_sym_EQ, - ACTIONS(3309), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_LT, - ACTIONS(3315), 1, - anon_sym_EQ_GT, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 17, + ACTIONS(6259), 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, - ACTIONS(3303), 20, + [113105] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3583), 1, + sym_comment, + ACTIONS(6204), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [3607] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1667), 1, - anon_sym_EQ, - ACTIONS(1669), 1, - anon_sym_EQ_GT, - ACTIONS(2987), 1, - sym_identifier, - ACTIONS(2989), 1, - anon_sym_DQUOTE, - ACTIONS(2991), 1, - anon_sym_SQUOTE, - STATE(678), 1, - sym_nested_identifier, - STATE(701), 1, - sym_string, - STATE(732), 1, - sym__module, - ACTIONS(65), 14, + ACTIONS(6206), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_satisfies, + [113160] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6999), 1, + sym__automatic_semicolon, + STATE(3584), 1, + sym_comment, + ACTIONS(6905), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2424), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2428), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [3694] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3321), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [113219] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, + ACTIONS(2251), 1, anon_sym_SQUOTE, - anon_sym_BQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3585), 1, + sym_comment, + STATE(5690), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, - anon_sym_AT, - ACTIONS(3319), 47, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, anon_sym_from, - anon_sym_await, + anon_sym_let, anon_sym_of, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, anon_sym_async, - anon_sym_function, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -130189,424 +351261,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - [3763] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - ACTIONS(1667), 1, - anon_sym_EQ, - ACTIONS(1669), 1, - anon_sym_EQ_GT, - ACTIONS(3205), 1, - sym_identifier, - STATE(1453), 1, - sym_string, - STATE(1456), 1, - sym_nested_identifier, - STATE(1727), 1, - sym__module, - ACTIONS(65), 14, - sym__automatic_semicolon, - sym__ternary_qmark, + [113286] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3586), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + ACTIONS(6821), 2, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6823), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6833), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(6841), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3850] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1667), 1, - anon_sym_EQ, - ACTIONS(1669), 1, - anon_sym_EQ_GT, - ACTIONS(3223), 1, - sym_identifier, - ACTIONS(3225), 1, - anon_sym_DQUOTE, - ACTIONS(3227), 1, - anon_sym_SQUOTE, - STATE(2463), 1, - sym_nested_identifier, - STATE(2479), 1, - sym_string, - STATE(2690), 1, - sym__module, - ACTIONS(65), 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, + ACTIONS(6853), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6849), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, - anon_sym_STAR, + anon_sym_instanceof, + ACTIONS(5850), 8, + sym__ternary_qmark, anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [113381] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3587), 1, + sym_comment, + ACTIONS(6398), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [3937] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(1669), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 14, + ACTIONS(6400), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_satisfies, + [113436] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6986), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3588), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, anon_sym_STAR, - anon_sym_as, + anon_sym_SLASH, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(5850), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_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, - [4024] = 3, + [113519] = 19, ACTIONS(3), 1, - sym_comment, - ACTIONS(3325), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, + ACTIONS(2498), 1, anon_sym_SQUOTE, - anon_sym_BQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5207), 1, + anon_sym_STAR, + ACTIONS(5211), 1, + anon_sym_async, + ACTIONS(7001), 1, + anon_sym_static, + ACTIONS(7003), 1, + anon_sym_readonly, + ACTIONS(7005), 1, + anon_sym_declare, + ACTIONS(7007), 1, + anon_sym_abstract, + STATE(3589), 1, + sym_comment, + STATE(3865), 1, + sym_override_modifier, + STATE(4733), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, - anon_sym_AT, - ACTIONS(3323), 47, + sym_private_property_identifier, + ACTIONS(5215), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, anon_sym_from, - anon_sym_await, + anon_sym_let, anon_sym_of, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - [4093] = 13, - ACTIONS(3), 1, + [113602] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3590), 1, sym_comment, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2013), 1, - anon_sym_EQ, - ACTIONS(2015), 1, - anon_sym_RBRACE, - ACTIONS(2021), 1, - anon_sym_COLON, - ACTIONS(2037), 1, - anon_sym_QMARK, - ACTIONS(2067), 1, - anon_sym_LPAREN, - ACTIONS(2070), 1, + ACTIONS(6410), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 17, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5846), 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(26), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [4182] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3251), 14, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_TILDE, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [113657] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, + ACTIONS(2251), 1, anon_sym_SQUOTE, - anon_sym_BQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3591), 1, + sym_comment, + STATE(5722), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, - anon_sym_AT, - ACTIONS(3249), 47, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, anon_sym_from, - anon_sym_await, + anon_sym_let, anon_sym_of, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, anon_sym_async, - anon_sym_function, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -130622,7464 +351615,7539 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - [4251] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2015), 1, - anon_sym_RBRACE, - ACTIONS(2021), 1, - anon_sym_COLON, - ACTIONS(2037), 1, - anon_sym_QMARK, - ACTIONS(3305), 1, - anon_sym_EQ, - ACTIONS(3309), 1, + [113724] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - ACTIONS(3312), 1, - anon_sym_LT, - ACTIONS(3315), 1, - anon_sym_EQ_GT, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5601), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3303), 20, - anon_sym_STAR, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5972), 1, + anon_sym_of, + ACTIONS(6867), 1, anon_sym_AMP_AMP, + ACTIONS(6869), 1, anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6875), 1, anon_sym_AMP, + ACTIONS(6877), 1, anon_sym_CARET, + ACTIONS(6879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6883), 1, anon_sym_PERCENT, + ACTIONS(6885), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [4340] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2021), 1, - anon_sym_COLON, - ACTIONS(2037), 1, - anon_sym_QMARK, - ACTIONS(2043), 1, - anon_sym_RBRACE, - ACTIONS(3305), 1, - anon_sym_EQ, - ACTIONS(3309), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(6887), 1, anon_sym_LT, - ACTIONS(3315), 1, - anon_sym_EQ_GT, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 17, - sym__automatic_semicolon, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, 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, + STATE(2774), 1, + sym_type_arguments, + STATE(3592), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3303), 20, + ACTIONS(6863), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6865), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6873), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(6881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [4429] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2013), 1, - anon_sym_EQ, - ACTIONS(2021), 1, - anon_sym_COLON, - ACTIONS(2037), 1, - anon_sym_QMARK, - ACTIONS(2039), 1, - anon_sym_RBRACE, - ACTIONS(2067), 1, - anon_sym_LPAREN, - ACTIONS(2070), 1, - anon_sym_LT, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 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, + ACTIONS(6893), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(26), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [4518] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1758), 1, - anon_sym_EQ_GT, - ACTIONS(2272), 1, - anon_sym_COLON, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 13, - sym__ternary_qmark, + [113837] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5601), 1, anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, - anon_sym_STAR, - anon_sym_as, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6827), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6835), 1, anon_sym_AMP, + ACTIONS(6837), 1, anon_sym_CARET, + ACTIONS(6839), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6843), 1, anon_sym_PERCENT, + ACTIONS(6845), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4607] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2021), 1, - anon_sym_COLON, - ACTIONS(2037), 1, - anon_sym_QMARK, - ACTIONS(2041), 1, - anon_sym_RBRACE, - ACTIONS(3305), 1, - anon_sym_EQ, - ACTIONS(3309), 1, - anon_sym_LPAREN, - ACTIONS(3312), 1, + ACTIONS(6847), 1, anon_sym_LT, - ACTIONS(3315), 1, - anon_sym_EQ_GT, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 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, + STATE(2774), 1, + sym_type_arguments, + STATE(3593), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3303), 20, + ACTIONS(6821), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6823), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6833), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(6841), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [4696] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3327), 1, - anon_sym_EQ, - ACTIONS(3334), 1, - anon_sym_COLON, - ACTIONS(3336), 1, - anon_sym_LBRACK, - ACTIONS(3339), 1, - anon_sym_LT, - ACTIONS(3342), 1, - anon_sym_DOT, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3350), 1, - anon_sym_QMARK, - ACTIONS(3353), 1, - anon_sym_extends, - STATE(2885), 1, - sym_type_arguments, - STATE(4471), 1, - sym_type_annotation, - ACTIONS(3330), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3347), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(6853), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, + ACTIONS(5850), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4790] = 12, + anon_sym_satisfies, + [113940] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(88), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(90), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(1754), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3594), 1, + sym_comment, + STATE(5678), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 12, - sym__ternary_qmark, + sym_computed_property_name, + ACTIONS(1189), 3, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 25, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_of, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [4876] = 3, - ACTIONS(3), 1, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [114007] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7009), 1, + sym__automatic_semicolon, + STATE(3595), 1, sym_comment, - ACTIONS(2714), 22, + ACTIONS(6907), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2404), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2716), 38, + ACTIONS(2408), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [4944] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(1772), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 13, - sym__ternary_qmark, + [114066] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6839), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3596), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + ACTIONS(6821), 2, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6823), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6833), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(6841), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + ACTIONS(5850), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [5030] = 3, - ACTIONS(3), 1, + [114167] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6986), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3597), 1, sym_comment, - ACTIONS(2722), 22, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 12, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2724), 38, + ACTIONS(5850), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [5098] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(1770), 1, - anon_sym_EQ, - ACTIONS(1772), 1, - anon_sym_EQ_GT, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 13, - sym__ternary_qmark, + [114244] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6867), 1, + anon_sym_AMP_AMP, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6875), 1, + anon_sym_AMP, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3598), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6893), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_instanceof, + ACTIONS(5850), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [114347] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7011), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3599), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5921), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5923), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - [5184] = 5, - ACTIONS(3), 1, + [114420] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3600), 1, sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 21, + ACTIONS(6335), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3307), 23, + ACTIONS(6337), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_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, - [5256] = 14, - ACTIONS(3), 1, + [114475] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3601), 1, sym_comment, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(127), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(2256), 1, + ACTIONS(7014), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2390), 13, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(3111), 1, - sym_identifier, - ACTIONS(3221), 1, - anon_sym_of, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 12, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2394), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 23, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + anon_sym_satisfies, + [114532] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, anon_sym_LT, - anon_sym_GT, + STATE(2774), 1, + sym_type_arguments, + STATE(3602), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6833), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(6841), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 13, + sym__ternary_qmark, + anon_sym_as, + 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, - [5346] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(1752), 1, - anon_sym_EQ, - ACTIONS(1754), 1, - anon_sym_EQ_GT, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 12, - sym__ternary_qmark, + [114619] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5601), 1, anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 25, - anon_sym_STAR, + ACTIONS(5613), 1, anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5946), 1, anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6867), 1, anon_sym_AMP_AMP, + ACTIONS(6869), 1, anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6875), 1, anon_sym_AMP, + ACTIONS(6877), 1, anon_sym_CARET, + ACTIONS(6879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6883), 1, anon_sym_PERCENT, + ACTIONS(6885), 1, anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3603), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_satisfies, - [5432] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3327), 1, - anon_sym_EQ, - ACTIONS(3336), 1, + [114732] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3357), 1, - anon_sym_LT, - ACTIONS(3360), 1, + ACTIONS(5488), 1, anon_sym_DOT, - STATE(3085), 1, - sym_type_arguments, - ACTIONS(3330), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3347), 2, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5846), 1, + anon_sym_COLON, + ACTIONS(6827), 1, + anon_sym_AMP_AMP, + ACTIONS(6829), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6835), 1, anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6839), 1, anon_sym_PIPE, - ACTIONS(3353), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3307), 13, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + STATE(2774), 1, + sym_type_arguments, + STATE(3604), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [114845] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, - anon_sym_STAR, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6839), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + ACTIONS(7016), 1, + anon_sym_COLON, + STATE(2774), 1, + sym_type_arguments, + STATE(3605), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6841), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [5520] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3363), 1, - anon_sym_EQ, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOT, - ACTIONS(3371), 1, - anon_sym_QMARK_DOT, - STATE(2970), 1, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, sym_arguments, - ACTIONS(3373), 2, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [114958] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4670), 1, + anon_sym_COLON, + ACTIONS(6008), 1, + anon_sym_extends, + ACTIONS(6192), 1, + anon_sym_LBRACK, + STATE(3606), 1, + sym_comment, + ACTIONS(6195), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3365), 7, - sym__automatic_semicolon, + ACTIONS(7018), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3307), 11, + anon_sym_RBRACK, + ACTIONS(4469), 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(4473), 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, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 19, + [115025] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6357), 1, + anon_sym_LBRACK, + STATE(3607), 1, + sym_comment, + ACTIONS(5559), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6360), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [5606] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1758), 1, - anon_sym_EQ_GT, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 13, + ACTIONS(4473), 25, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_of, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, - anon_sym_STAR, + anon_sym_satisfies, + [115086] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5834), 1, + anon_sym_COLON, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6835), 1, anon_sym_AMP, + ACTIONS(6837), 1, anon_sym_CARET, + ACTIONS(6839), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6843), 1, anon_sym_PERCENT, + ACTIONS(6845), 1, anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3608), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_satisfies, - [5692] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(1758), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 13, - sym__ternary_qmark, + [115199] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5601), 1, anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, - anon_sym_STAR, + ACTIONS(5613), 1, anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5963), 1, + anon_sym_of, + ACTIONS(6867), 1, anon_sym_AMP_AMP, + ACTIONS(6869), 1, anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6875), 1, anon_sym_AMP, + ACTIONS(6877), 1, anon_sym_CARET, + ACTIONS(6879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6883), 1, anon_sym_PERCENT, + ACTIONS(6885), 1, anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3609), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_satisfies, - [5778] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3363), 1, - anon_sym_EQ, - ACTIONS(3375), 1, + [115312] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - ACTIONS(3377), 1, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - ACTIONS(3379), 1, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - STATE(2836), 1, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7022), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3610), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, sym_arguments, - ACTIONS(3365), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3373), 3, + ACTIONS(5952), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3307), 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5954), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + 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, + [115393] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, - anon_sym_STAR, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5673), 1, + anon_sym_COLON, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6837), 1, anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6839), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, anon_sym_PERCENT, + ACTIONS(6845), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [5864] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3339), 1, + ACTIONS(6847), 1, anon_sym_LT, - ACTIONS(3342), 1, - anon_sym_DOT, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3353), 1, - anon_sym_extends, - ACTIONS(3363), 1, - anon_sym_EQ, - STATE(2885), 1, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + STATE(2774), 1, sym_type_arguments, - ACTIONS(3336), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3347), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 17, + STATE(3611), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6841), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3307), 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, + ACTIONS(6853), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [5950] = 15, - ACTIONS(3), 1, + [115506] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3612), 1, sym_comment, - ACTIONS(3336), 1, - anon_sym_LBRACK, - ACTIONS(3339), 1, - anon_sym_LT, - ACTIONS(3342), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_extends, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3386), 1, - anon_sym_RPAREN, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - ACTIONS(3391), 1, - anon_sym_QMARK, - STATE(2885), 1, - sym_type_arguments, - ACTIONS(3347), 2, + ACTIONS(6164), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3384), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3307), 13, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6166), 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, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [6041] = 31, + [115561] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3399), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3401), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3407), 2, + STATE(3613), 1, + sym_comment, + STATE(5721), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(3542), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [6164] = 8, - ACTIONS(3), 1, + [115628] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3614), 1, sym_comment, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - ACTIONS(3391), 1, - anon_sym_QMARK, - ACTIONS(3384), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3307), 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(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 21, + ACTIONS(6208), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [6241] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(127), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(2197), 1, - anon_sym_QMARK, - ACTIONS(1469), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(65), 15, + ACTIONS(6210), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [6318] = 31, + [115683] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3615), 1, + sym_comment, + STATE(5549), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, anon_sym_async, - ACTIONS(3409), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(3411), 1, anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, anon_sym_get, anon_sym_set, - ACTIONS(3419), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3421), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2974), 3, - sym_string, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [115750] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3616), 1, + sym_comment, + STATE(5541), 1, sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, sym_computed_property_name, - STATE(3517), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [6441] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3327), 1, - anon_sym_EQ, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3391), 1, - anon_sym_QMARK, - ACTIONS(3423), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3307), 15, - sym__ternary_qmark, - anon_sym_as, + [115817] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5691), 1, + anon_sym_COLON, + ACTIONS(6827), 1, + anon_sym_AMP_AMP, + ACTIONS(6829), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6839), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3617), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 21, + [115930] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3618), 1, + sym_comment, + ACTIONS(2424), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [6518] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(122), 1, - anon_sym_EQ, - ACTIONS(127), 1, - anon_sym_EQ_GT, - ACTIONS(662), 1, - anon_sym_QMARK, - ACTIONS(125), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(65), 15, + ACTIONS(2428), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 21, + [115985] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3619), 1, + sym_comment, + ACTIONS(6412), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [6595] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3363), 1, - anon_sym_EQ, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3377), 1, - anon_sym_DOT, - ACTIONS(3379), 1, - anon_sym_QMARK_DOT, - STATE(2836), 1, - sym_arguments, - ACTIONS(3373), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3365), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3307), 13, + ACTIONS(6414), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 19, + [116040] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3620), 1, + sym_comment, + ACTIONS(2404), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [6680] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(63), 1, - anon_sym_EQ_GT, - ACTIONS(1396), 1, - anon_sym_EQ, - ACTIONS(1509), 1, - anon_sym_extends, - ACTIONS(3426), 2, + ACTIONS(2408), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3429), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 18, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(65), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6759] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + [116095] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5486), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(2812), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2836), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3459), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [6882] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3339), 1, - anon_sym_LT, - ACTIONS(3342), 1, + ACTIONS(5488), 1, anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_extends, - ACTIONS(3432), 1, - anon_sym_EQ, - ACTIONS(3434), 1, - anon_sym_EQ_GT, - STATE(2885), 1, - sym_type_arguments, - ACTIONS(3336), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3347), 3, - anon_sym_GT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6827), 1, + anon_sym_AMP_AMP, + ACTIONS(6829), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6835), 1, anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6839), 1, anon_sym_PIPE, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 16, - sym__automatic_semicolon, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(7025), 1, + anon_sym_COLON, + STATE(2774), 1, + sym_type_arguments, + STATE(3621), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [116208] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3303), 17, - anon_sym_STAR, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5693), 1, + anon_sym_COLON, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6837), 1, anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6839), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, anon_sym_PERCENT, + ACTIONS(6845), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, anon_sym_QMARK_QMARK, - [6967] = 31, - ACTIONS(3), 1, + ACTIONS(6857), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3622), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3436), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3438), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3423), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [7090] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_EQ, - ACTIONS(63), 1, - anon_sym_EQ_GT, - ACTIONS(662), 1, - anon_sym_QMARK, - ACTIONS(32), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(65), 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_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, + [116321] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7027), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3623), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 21, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5965), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7167] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(2842), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(2844), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3457), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [7290] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(88), 1, - anon_sym_DQUOTE, - ACTIONS(90), 1, - anon_sym_SQUOTE, - ACTIONS(127), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(3111), 1, - sym_identifier, - STATE(1536), 1, - sym_string, - STATE(1537), 1, - sym_nested_identifier, - STATE(1728), 1, - sym__module, - ACTIONS(65), 12, + ACTIONS(5967), 17, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + 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, + [116396] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7030), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3624), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5965), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5967), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [7375] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_EQ_GT, - ACTIONS(3375), 1, + [116471] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - ACTIONS(3377), 1, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - ACTIONS(3379), 1, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - ACTIONS(3440), 1, - anon_sym_EQ, - STATE(2836), 1, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7033), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3625), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, sym_arguments, - ACTIONS(3365), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3373), 3, + ACTIONS(5952), 11, + anon_sym_STAR, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3307), 14, - sym__automatic_semicolon, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5954), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [116552] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, - anon_sym_STAR, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5946), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, anon_sym_AMP_AMP, + ACTIONS(6929), 1, anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, + anon_sym_PIPE, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + ACTIONS(6955), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6957), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3626), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6941), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6951), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7460] = 15, - ACTIONS(3), 1, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [116665] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7036), 1, + sym__automatic_semicolon, + STATE(3627), 1, sym_comment, - ACTIONS(3327), 1, - anon_sym_EQ, - ACTIONS(3330), 1, - anon_sym_RPAREN, - ACTIONS(3336), 1, - anon_sym_LBRACK, - ACTIONS(3339), 1, - anon_sym_LT, - ACTIONS(3342), 1, - anon_sym_DOT, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3353), 1, - anon_sym_extends, - ACTIONS(3391), 1, - anon_sym_QMARK, - STATE(2885), 1, - sym_type_arguments, - ACTIONS(3347), 2, + ACTIONS(6911), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2334), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3423), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3307), 13, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2338), 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, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, + [116724] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7038), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3628), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5921), 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(5923), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [7551] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [116797] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4680), 1, anon_sym_EQ, - ACTIONS(63), 1, - anon_sym_EQ_GT, - ACTIONS(3426), 1, + ACTIONS(6192), 1, anon_sym_LBRACK, - ACTIONS(3429), 2, + STATE(3629), 1, + sym_comment, + ACTIONS(6008), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6195), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1509), 6, + ACTIONS(4469), 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(4473), 24, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(65), 14, 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 19, - anon_sym_STAR, + [116860] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6839), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + ACTIONS(7041), 1, + anon_sym_COLON, + STATE(2774), 1, + sym_type_arguments, + STATE(3630), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6841), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [7630] = 31, - ACTIONS(3), 1, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [116973] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3631), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, + ACTIONS(6212), 13, anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3442), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3444), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3527), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [7753] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - ACTIONS(3448), 1, - anon_sym_QMARK, - ACTIONS(3446), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3307), 15, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6214), 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, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 21, - anon_sym_STAR, + [117028] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6835), 1, anon_sym_AMP, + ACTIONS(6837), 1, anon_sym_CARET, + ACTIONS(6839), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6843), 1, anon_sym_PERCENT, + ACTIONS(6845), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, anon_sym_QMARK_QMARK, - [7830] = 12, - ACTIONS(3), 1, + ACTIONS(6857), 1, + sym__ternary_qmark, + ACTIONS(7043), 1, + anon_sym_COLON, + STATE(2774), 1, + sym_type_arguments, + STATE(3632), 1, sym_comment, - ACTIONS(3375), 1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [117141] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - ACTIONS(3377), 1, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - ACTIONS(3379), 1, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - ACTIONS(3432), 1, - anon_sym_EQ, - ACTIONS(3434), 1, - anon_sym_EQ_GT, - STATE(2836), 1, - sym_arguments, - ACTIONS(3365), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3373), 3, - anon_sym_GT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6827), 1, + anon_sym_AMP_AMP, + ACTIONS(6829), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6835), 1, anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6839), 1, anon_sym_PIPE, - ACTIONS(3307), 14, - sym__automatic_semicolon, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LT_EQ, + ACTIONS(7045), 1, + anon_sym_COLON, + STATE(2774), 1, + sym_type_arguments, + STATE(3633), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6841), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6851), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6853), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, + [117254] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7047), 1, + sym__automatic_semicolon, + STATE(3634), 1, + sym_comment, + ACTIONS(6915), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2472), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2476), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [7915] = 31, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [117313] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, + STATE(3635), 1, + sym_comment, + STATE(5720), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3450), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3452), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(3501), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [8038] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_EQ_GT, - ACTIONS(3339), 1, - anon_sym_LT, - ACTIONS(3342), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_extends, - ACTIONS(3440), 1, - anon_sym_EQ, - STATE(2885), 1, - sym_type_arguments, - ACTIONS(3336), 2, - anon_sym_COMMA, + [117380] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, - ACTIONS(3347), 3, - anon_sym_GT, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6827), 1, + anon_sym_AMP_AMP, + ACTIONS(6829), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, + anon_sym_GT_GT, + ACTIONS(6835), 1, anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6839), 1, anon_sym_PIPE, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 16, - sym__automatic_semicolon, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, 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, + ACTIONS(7049), 1, + anon_sym_COLON, + STATE(2774), 1, + sym_type_arguments, + STATE(3636), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3303), 17, + ACTIONS(6821), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6841), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8123] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2131), 1, - anon_sym_COLON, - ACTIONS(3237), 1, - sym_identifier, - ACTIONS(65), 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, + ACTIONS(6853), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_instanceof, + [117493] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7051), 1, + sym__automatic_semicolon, + STATE(3637), 1, + sym_comment, + ACTIONS(6984), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2362), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [8199] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3391), 1, - anon_sym_QMARK, - ACTIONS(3384), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3307), 15, + ACTIONS(2366), 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, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 21, + [117552] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7053), 1, + sym__automatic_semicolon, + STATE(3638), 1, + sym_comment, + ACTIONS(6982), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2350), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8273] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2220), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - anon_sym_EQ_GT, - ACTIONS(3440), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_DOT, - STATE(4329), 1, - sym_ui_object_initializer, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 17, - sym__automatic_semicolon, + ACTIONS(2354), 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, - ACTIONS(3303), 21, + [117611] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7055), 1, + sym__automatic_semicolon, + STATE(3639), 1, + sym_comment, + ACTIONS(6978), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2346), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [8351] = 6, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [117670] = 19, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5326), 1, + anon_sym_STAR, + ACTIONS(5328), 1, + anon_sym_async, + ACTIONS(7057), 1, + anon_sym_static, + ACTIONS(7059), 1, + anon_sym_readonly, + ACTIONS(7061), 1, + anon_sym_declare, + ACTIONS(7063), 1, + anon_sym_abstract, + STATE(3640), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 20, + STATE(3864), 1, + sym_override_modifier, + STATE(4694), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5330), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [117753] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3641), 1, + sym_comment, + ACTIONS(2362), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2366), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(26), 21, + [117808] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3642), 1, + sym_comment, + ACTIONS(2350), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8423] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2213), 1, - anon_sym_LBRACE, - ACTIONS(2215), 1, - anon_sym_DOT, - STATE(2492), 1, - sym_ui_object_initializer, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 17, + ACTIONS(2354), 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, - ACTIONS(26), 21, + [117863] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7065), 1, + sym__automatic_semicolon, + STATE(3643), 1, + sym_comment, + ACTIONS(6976), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2480), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8501] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3448), 1, - anon_sym_QMARK, - ACTIONS(3446), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3307), 15, + ACTIONS(2484), 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, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 21, + [117922] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3644), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6865), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6873), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5852), 5, + anon_sym_BANG, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 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, + [118013] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6008), 1, + anon_sym_extends, + STATE(3645), 1, + sym_comment, + ACTIONS(6195), 2, + anon_sym_AMP, anon_sym_PIPE, + ACTIONS(6192), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4469), 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_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8575] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2163), 1, - anon_sym_COLON, - ACTIONS(3457), 1, - sym_identifier, - ACTIONS(65), 15, - sym__automatic_semicolon, + ACTIONS(4473), 24, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_satisfies, + [118074] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7067), 1, + sym__automatic_semicolon, + STATE(3646), 1, + sym_comment, + ACTIONS(6959), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2432), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [8651] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3336), 1, - anon_sym_LBRACK, - ACTIONS(3339), 1, - anon_sym_LT, - ACTIONS(3342), 1, - anon_sym_DOT, - ACTIONS(3459), 1, - anon_sym_EQ, - ACTIONS(3461), 1, - anon_sym_EQ_GT, - STATE(2885), 1, - sym_type_arguments, - ACTIONS(3353), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3347), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 15, - sym__automatic_semicolon, + ACTIONS(2436), 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, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 17, - anon_sym_STAR, + [118133] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6837), 1, anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6839), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, anon_sym_PERCENT, + ACTIONS(6845), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8735] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3336), 1, - anon_sym_LBRACK, - ACTIONS(3339), 1, + ACTIONS(6847), 1, anon_sym_LT, - ACTIONS(3342), 1, - anon_sym_DOT, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3353), 1, - anon_sym_extends, - ACTIONS(3363), 1, - anon_sym_EQ, - ACTIONS(3446), 1, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + ACTIONS(7069), 1, anon_sym_COLON, - STATE(2885), 1, + STATE(2774), 1, sym_type_arguments, - ACTIONS(3347), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3463), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3307), 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, + STATE(3647), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, + ACTIONS(6821), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6823), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6833), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6841), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8823] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3377), 1, - anon_sym_DOT, - ACTIONS(3379), 1, - anon_sym_QMARK_DOT, - ACTIONS(3459), 1, - anon_sym_EQ, - ACTIONS(3461), 1, - anon_sym_EQ_GT, - STATE(2836), 1, - sym_arguments, - ACTIONS(3365), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3373), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_LT_EQ, + ACTIONS(6853), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, + [118246] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3648), 1, + sym_comment, + ACTIONS(6249), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8907] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 20, + ACTIONS(6251), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3303), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [8979] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3377), 1, - anon_sym_DOT, - ACTIONS(3379), 1, - anon_sym_QMARK_DOT, - ACTIONS(3467), 1, - anon_sym_EQ, - ACTIONS(3469), 1, - anon_sym_EQ_GT, - STATE(2836), 1, - sym_arguments, - ACTIONS(3365), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3373), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, + [118301] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6228), 1, + anon_sym_LBRACK, + STATE(3649), 1, + sym_comment, + ACTIONS(5745), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6231), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6184), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9063] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1448), 1, - anon_sym_EQ, - ACTIONS(1450), 1, - anon_sym_EQ_GT, - ACTIONS(1509), 1, - anon_sym_extends, - ACTIONS(3426), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3429), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 17, - sym__automatic_semicolon, + ACTIONS(6186), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(26), 18, + [118362] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3650), 1, + sym_comment, + ACTIONS(6247), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9141] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(1509), 1, - anon_sym_extends, - ACTIONS(3426), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3429), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 17, + ACTIONS(5984), 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, - ACTIONS(26), 18, + [118417] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7071), 1, + anon_sym_LPAREN, + ACTIONS(7073), 1, + anon_sym_DOT, + STATE(3651), 1, + sym_comment, + STATE(3938), 1, + sym_arguments, + ACTIONS(4298), 38, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [118476] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(6887), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3652), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5773), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9219] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_EQ, - ACTIONS(63), 1, - anon_sym_EQ_GT, - ACTIONS(662), 1, - anon_sym_QMARK, - ACTIONS(3426), 1, - anon_sym_LBRACK, - ACTIONS(32), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1509), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3429), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(65), 14, + ACTIONS(5775), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 19, + [118543] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4670), 1, + anon_sym_COLON, + ACTIONS(6192), 1, + anon_sym_LBRACK, + STATE(3653), 1, + sym_comment, + ACTIONS(6195), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6008), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4469), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9301] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3363), 1, - anon_sym_EQ, - ACTIONS(3375), 1, + ACTIONS(4473), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3377), 1, anon_sym_DOT, - ACTIONS(3379), 1, anon_sym_QMARK_DOT, - STATE(2836), 1, - sym_arguments, - ACTIONS(3373), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(3365), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3307), 11, - 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_BQUOTE, anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 19, + [118608] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3654), 1, + sym_comment, + ACTIONS(7075), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(7077), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9385] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3363), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 20, + ACTIONS(4473), 23, 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, - ACTIONS(3303), 21, + [118667] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6278), 1, + anon_sym_EQ, + ACTIONS(6282), 1, + anon_sym_of, + ACTIONS(7079), 1, + anon_sym_in, + STATE(3655), 1, + sym_comment, + ACTIONS(6276), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9457] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(122), 1, - anon_sym_EQ, - ACTIONS(127), 1, - anon_sym_EQ_GT, - ACTIONS(662), 1, - anon_sym_QMARK, - ACTIONS(3426), 1, - anon_sym_LBRACK, - ACTIONS(125), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1509), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(3429), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(65), 14, + ACTIONS(6280), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 19, + [118728] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(6847), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3656), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5773), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9539] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - anon_sym_EQ_GT, - ACTIONS(3440), 1, - anon_sym_EQ, - ACTIONS(3454), 1, - anon_sym_DOT, - STATE(2500), 1, - sym_ui_object_initializer, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 17, - sym__automatic_semicolon, + ACTIONS(5775), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3303), 21, + [118795] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3657), 1, + sym_comment, + ACTIONS(6349), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9617] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(63), 1, - anon_sym_EQ_GT, - ACTIONS(1396), 1, - anon_sym_EQ, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 20, + ACTIONS(6351), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(26), 21, - anon_sym_STAR, + [118850] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5693), 1, + anon_sym_of, + ACTIONS(6867), 1, anon_sym_AMP_AMP, + ACTIONS(6869), 1, anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6875), 1, anon_sym_AMP, + ACTIONS(6877), 1, anon_sym_CARET, + ACTIONS(6879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6883), 1, anon_sym_PERCENT, + ACTIONS(6885), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9689] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3336), 1, - anon_sym_LBRACK, - ACTIONS(3339), 1, + ACTIONS(6887), 1, anon_sym_LT, - ACTIONS(3342), 1, - anon_sym_DOT, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - ACTIONS(3446), 1, - anon_sym_COLON, - STATE(2885), 1, - sym_type_arguments, - ACTIONS(3347), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3353), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3307), 13, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, 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, + STATE(2774), 1, + sym_type_arguments, + STATE(3658), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, + ACTIONS(6863), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6865), 2, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6873), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9775] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3339), 1, - anon_sym_LT, - ACTIONS(3342), 1, - anon_sym_DOT, - ACTIONS(3353), 1, - anon_sym_extends, - ACTIONS(3467), 1, - anon_sym_EQ, - ACTIONS(3469), 1, - anon_sym_EQ_GT, - STATE(2885), 1, - sym_type_arguments, - ACTIONS(3336), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3347), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(6893), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_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(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 17, + [118963] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3659), 1, + sym_comment, + ACTIONS(2390), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9859] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2215), 1, - anon_sym_DOT, - ACTIONS(2220), 1, - anon_sym_LBRACE, - STATE(4328), 1, - sym_ui_object_initializer, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 17, + ACTIONS(2394), 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, - ACTIONS(26), 21, + [119018] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3660), 1, + sym_comment, + ACTIONS(6239), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [9937] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2107), 1, - anon_sym_COLON, - ACTIONS(3237), 1, - sym_identifier, - ACTIONS(65), 15, + ACTIONS(6241), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_satisfies, + [119073] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3661), 1, + sym_comment, + STATE(5634), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [119140] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6343), 1, + anon_sym_of, + ACTIONS(7082), 1, + anon_sym_in, + STATE(3662), 1, + sym_comment, + ACTIONS(2287), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [10013] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3327), 1, - anon_sym_EQ, - ACTIONS(3391), 1, - anon_sym_QMARK, - ACTIONS(3423), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3307), 15, + ACTIONS(2293), 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, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10087] = 30, + [119201] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, + STATE(3663), 1, + sym_comment, + STATE(5620), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3471), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [10206] = 6, - ACTIONS(3), 1, + [119268] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3664), 1, sym_comment, - ACTIONS(1450), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 19, + ACTIONS(6226), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5986), 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, - ACTIONS(26), 21, + [119323] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(6162), 1, + anon_sym_of, + ACTIONS(7085), 1, + anon_sym_in, + STATE(3665), 1, + sym_comment, + ACTIONS(5695), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10277] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3375), 1, + ACTIONS(5699), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3377), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(3379), 1, anon_sym_QMARK_DOT, - ACTIONS(3473), 1, - anon_sym_EQ, - ACTIONS(3475), 1, - anon_sym_EQ_GT, - STATE(2836), 1, - sym_arguments, - ACTIONS(3365), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3373), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [119384] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7088), 1, + sym__automatic_semicolon, + STATE(3666), 1, + sym_comment, + ACTIONS(7014), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2390), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3307), 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2394), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, - anon_sym_STAR, + [119443] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5691), 1, + anon_sym_of, + ACTIONS(6867), 1, anon_sym_AMP_AMP, + ACTIONS(6869), 1, anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, anon_sym_GT_GT, + ACTIONS(6875), 1, + anon_sym_AMP, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3667), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6873), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10360] = 30, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119556] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, + STATE(3668), 1, + sym_comment, + STATE(5563), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3477), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [10479] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3339), 1, + [119623] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5848), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, + anon_sym_AMP_AMP, + ACTIONS(6929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, + anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, + anon_sym_PIPE, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, anon_sym_LT, - ACTIONS(3342), 1, + ACTIONS(6955), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6957), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3669), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6951), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119736] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3353), 1, - anon_sym_extends, - ACTIONS(3363), 1, - anon_sym_EQ, - STATE(2885), 1, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5820), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, + anon_sym_AMP_AMP, + ACTIONS(6929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, + anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, + anon_sym_PIPE, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + ACTIONS(6955), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6957), 1, + sym__ternary_qmark, + STATE(2774), 1, sym_type_arguments, - ACTIONS(3336), 2, + STATE(3670), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6951), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119849] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3671), 1, + sym_comment, + ACTIONS(6861), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3347), 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2458), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3307), 14, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2460), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, - anon_sym_STAR, + [119906] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6016), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, anon_sym_AMP_AMP, + ACTIONS(6929), 1, anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, + anon_sym_PIPE, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + ACTIONS(6955), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6957), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3672), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6941), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6951), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10562] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120019] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5486), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3479), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [10681] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5992), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, + anon_sym_AMP_AMP, + ACTIONS(6929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, + anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, + anon_sym_PIPE, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3481), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [10800] = 12, - ACTIONS(3), 1, + ACTIONS(6955), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6957), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3673), 1, sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3375), 1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6951), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120132] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - ACTIONS(3377), 1, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - ACTIONS(3379), 1, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - STATE(2836), 1, - sym_arguments, - ACTIONS(3373), 2, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5986), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, + anon_sym_AMP_AMP, + ACTIONS(6929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, + anon_sym_GT_GT, + ACTIONS(6935), 1, anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, anon_sym_PIPE, - ACTIONS(3365), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3307), 11, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + ACTIONS(6955), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6957), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LT_EQ, + STATE(2774), 1, + sym_type_arguments, + STATE(3674), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6951), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6953), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [120245] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 19, - anon_sym_STAR, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5984), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, anon_sym_AMP_AMP, + ACTIONS(6929), 1, anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, + anon_sym_PIPE, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + ACTIONS(6955), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6957), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3675), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6941), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6951), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10883] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1509), 1, - anon_sym_extends, - ACTIONS(1563), 1, - anon_sym_EQ, - ACTIONS(1565), 1, - anon_sym_EQ_GT, - ACTIONS(3426), 2, - anon_sym_COMMA, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120358] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, - ACTIONS(3429), 3, - anon_sym_GT, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5972), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, + anon_sym_AMP_AMP, + ACTIONS(6929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, + anon_sym_GT_GT, + ACTIONS(6935), 1, anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, anon_sym_PIPE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 16, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + ACTIONS(6955), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6957), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + STATE(2774), 1, + sym_type_arguments, + STATE(3676), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6951), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120471] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5963), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, + anon_sym_AMP_AMP, + ACTIONS(6929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, + anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, + anon_sym_PIPE, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + ACTIONS(6955), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6957), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3677), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6951), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6953), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [120584] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(26), 18, - anon_sym_STAR, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + ACTIONS(6927), 1, anon_sym_AMP_AMP, + ACTIONS(6929), 1, anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, + anon_sym_PIPE, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3678), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6941), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6951), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, anon_sym_QMARK_QMARK, - [10960] = 3, - ACTIONS(3), 1, + anon_sym_satisfies, + [120689] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3679), 1, sym_comment, - ACTIONS(3283), 22, - anon_sym_STAR, + ACTIONS(7090), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(7092), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4469), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3285), 35, - sym__automatic_semicolon, + ACTIONS(4473), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11025] = 11, - ACTIONS(3), 1, + [120748] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3680), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_EQ_GT, - ACTIONS(1396), 1, + ACTIONS(7090), 2, anon_sym_EQ, - ACTIONS(1469), 1, + anon_sym_QMARK, + ACTIONS(7092), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(1509), 1, - anon_sym_extends, - ACTIONS(3426), 1, - anon_sym_LBRACK, - ACTIONS(3429), 2, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3483), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(65), 14, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 19, - anon_sym_STAR, + [120807] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6927), 1, anon_sym_AMP_AMP, + ACTIONS(6929), 1, anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, + anon_sym_PIPE, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + ACTIONS(6955), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6957), 1, + sym__ternary_qmark, + ACTIONS(7094), 1, + anon_sym_RBRACK, + STATE(2774), 1, + sym_type_arguments, + STATE(3681), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6941), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6951), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120920] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6931), 1, + anon_sym_GT_GT, + ACTIONS(6943), 1, anon_sym_PERCENT, + ACTIONS(6945), 1, anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3682), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5852), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(5850), 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, - [11106] = 10, - ACTIONS(3), 1, + anon_sym_satisfies, + [121011] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3683), 1, sym_comment, - ACTIONS(127), 1, - anon_sym_EQ_GT, - ACTIONS(1469), 1, - anon_sym_COLON, - ACTIONS(1774), 1, + ACTIONS(7090), 2, anon_sym_EQ, - ACTIONS(3426), 1, - anon_sym_LBRACK, - ACTIONS(3429), 2, + anon_sym_QMARK, + ACTIONS(7092), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1509), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(65), 14, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 19, + [121070] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3684), 1, + sym_comment, + ACTIONS(6184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6186), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [11185] = 30, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [121125] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, + STATE(3685), 1, + sym_comment, + STATE(5653), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3487), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [11304] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LBRACE, - ACTIONS(3327), 1, - anon_sym_EQ, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3454), 1, - anon_sym_DOT, - STATE(2500), 1, - sym_ui_object_initializer, - ACTIONS(3423), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3307), 14, - sym__ternary_qmark, - anon_sym_as, + [121192] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(7096), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3686), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [121275] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(7096), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3687), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 21, + ACTIONS(6921), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(5850), 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, - [11383] = 8, - ACTIONS(3), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [121356] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3688), 1, sym_comment, - ACTIONS(63), 1, - anon_sym_EQ_GT, - ACTIONS(1396), 1, + ACTIONS(6792), 2, anon_sym_EQ, - ACTIONS(1469), 1, - anon_sym_COLON, - ACTIONS(1466), 3, + anon_sym_QMARK, + ACTIONS(6794), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(65), 15, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 21, + [121415] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5743), 1, + anon_sym_QMARK, + STATE(3689), 1, + sym_comment, + ACTIONS(5745), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(6231), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6228), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(6184), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11458] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3336), 1, - anon_sym_LBRACK, - ACTIONS(3339), 1, - anon_sym_LT, - ACTIONS(3342), 1, - anon_sym_DOT, - ACTIONS(3489), 1, - anon_sym_EQ, - ACTIONS(3491), 1, - anon_sym_EQ_GT, - STATE(2885), 1, - sym_type_arguments, - ACTIONS(3353), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3347), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 14, + ACTIONS(6186), 22, 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, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 17, + [121478] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3690), 1, + sym_comment, + ACTIONS(5751), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5753), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4469), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11541] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2131), 1, - anon_sym_COLON, - ACTIONS(3315), 1, - anon_sym_EQ_GT, - ACTIONS(3440), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 18, - sym__automatic_semicolon, + ACTIONS(4473), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3303), 21, - anon_sym_STAR, + [121537] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6931), 1, + anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3691), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5852), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6933), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(6941), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6951), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11614] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3493), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [11733] = 7, - ACTIONS(3), 1, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [121636] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3692), 1, sym_comment, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2131), 1, - anon_sym_COLON, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 18, + ACTIONS(6224), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5992), 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, - ACTIONS(26), 21, + [121691] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5745), 1, + anon_sym_extends, + STATE(3693), 1, + sym_comment, + ACTIONS(6231), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6228), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(6184), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6186), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [11806] = 30, - ACTIONS(3), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [121752] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3694), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3495), 2, - anon_sym_RBRACE, + ACTIONS(7099), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [11925] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_EQ, - ACTIONS(63), 1, - anon_sym_EQ_GT, - ACTIONS(2213), 1, - anon_sym_LBRACE, - ACTIONS(2215), 1, - anon_sym_DOT, - STATE(2492), 1, - sym_ui_object_initializer, - ACTIONS(32), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(65), 14, + ACTIONS(5836), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5838), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 21, - anon_sym_STAR, + [121809] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6931), 1, + anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3695), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5852), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6951), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [121906] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6931), 1, anon_sym_GT_GT, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3696), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(6941), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6951), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, - [12004] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3375), 1, + anon_sym_satisfies, + [122001] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - ACTIONS(3377), 1, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - ACTIONS(3379), 1, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - ACTIONS(3497), 1, - anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_EQ_GT, - STATE(2836), 1, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(7096), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3697), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3004), 2, + sym_template_string, sym_arguments, - ACTIONS(3365), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3373), 3, + ACTIONS(5852), 8, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3307), 12, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, - anon_sym_STAR, + [122084] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + ACTIONS(6927), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, + anon_sym_PIPE, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3698), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6941), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6951), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12087] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_EQ_GT, - ACTIONS(3440), 1, - anon_sym_EQ, - ACTIONS(3501), 1, - anon_sym_in, - ACTIONS(3504), 1, - anon_sym_of, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 18, - sym__automatic_semicolon, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [122187] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6931), 1, + anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, + anon_sym_PIPE, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3699), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6951), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6953), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5850), 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, - ACTIONS(3303), 20, + [122288] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7101), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3700), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5921), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12162] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(23), 1, - anon_sym_EQ, - ACTIONS(63), 1, - anon_sym_EQ_GT, - ACTIONS(1511), 1, - anon_sym_QMARK, - ACTIONS(3426), 1, - anon_sym_LBRACK, - ACTIONS(3429), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1509), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(65), 14, + ACTIONS(5923), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 19, + [122361] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(7096), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3701), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_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, + [122438] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6931), 1, + anon_sym_GT_GT, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3702), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, - [12241] = 30, + anon_sym_instanceof, + anon_sym_satisfies, + [122525] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, + STATE(3703), 1, + sym_comment, + STATE(5543), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3506), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [12360] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + ACTIONS(1189), 3, anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3508), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [12479] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, anon_sym_async, - ACTIONS(3409), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(3411), 1, anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, anon_sym_get, anon_sym_set, - ACTIONS(3510), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - sym_identifier, - anon_sym_declare, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [12598] = 12, - ACTIONS(3), 1, + [122592] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3704), 1, sym_comment, - ACTIONS(3336), 1, - anon_sym_LBRACK, - ACTIONS(3339), 1, - anon_sym_LT, - ACTIONS(3342), 1, - anon_sym_DOT, - ACTIONS(3497), 1, + ACTIONS(6654), 2, anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_EQ_GT, - STATE(2885), 1, - sym_type_arguments, - ACTIONS(3353), 2, + anon_sym_QMARK, + ACTIONS(6762), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3347), 3, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3307), 14, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 17, - anon_sym_STAR, + [122651] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5946), 1, + anon_sym_COLON, + ACTIONS(6827), 1, anon_sym_AMP_AMP, + ACTIONS(6829), 1, anon_sym_PIPE_PIPE, + ACTIONS(6831), 1, anon_sym_GT_GT, + ACTIONS(6835), 1, + anon_sym_AMP, + ACTIONS(6837), 1, + anon_sym_CARET, + ACTIONS(6839), 1, + anon_sym_PIPE, + ACTIONS(6843), 1, + anon_sym_PERCENT, + ACTIONS(6845), 1, + anon_sym_STAR_STAR, + ACTIONS(6847), 1, + anon_sym_LT, + ACTIONS(6855), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6857), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3705), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6821), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6823), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6833), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6841), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6851), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12681] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + ACTIONS(6853), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6849), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [122764] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5486), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3512), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [12800] = 7, - ACTIONS(3), 1, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7104), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3706), 1, sym_comment, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2107), 1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5952), 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(5954), 15, + sym__ternary_qmark, anon_sym_COLON, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 18, - sym__automatic_semicolon, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [122845] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5846), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, + anon_sym_AMP_AMP, + ACTIONS(6929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, + anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, + anon_sym_PIPE, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + ACTIONS(6955), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6957), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + STATE(2774), 1, + sym_type_arguments, + STATE(3707), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6951), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [122958] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(7107), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3708), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [123041] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(7107), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3709), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(26), 21, + ACTIONS(6863), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 10, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12873] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2107), 1, - anon_sym_COLON, - ACTIONS(3315), 1, - anon_sym_EQ_GT, - ACTIONS(3440), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 18, - sym__automatic_semicolon, + ACTIONS(5850), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3303), 21, - anon_sym_STAR, + [123122] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5834), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, anon_sym_AMP_AMP, + ACTIONS(6929), 1, anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6935), 1, anon_sym_AMP, + ACTIONS(6937), 1, anon_sym_CARET, + ACTIONS(6939), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6943), 1, anon_sym_PERCENT, + ACTIONS(6945), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6947), 1, + anon_sym_LT, + ACTIONS(6955), 1, anon_sym_QMARK_QMARK, - [12946] = 30, - ACTIONS(3), 1, + ACTIONS(6957), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3710), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, anon_sym_STAR, - ACTIONS(3403), 1, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6951), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [123235] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3514), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [13065] = 3, - ACTIONS(3), 1, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6875), 1, + anon_sym_AMP, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3711), 1, sym_comment, - ACTIONS(2722), 22, - anon_sym_STAR, - anon_sym_EQ, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5852), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [123334] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3712), 1, + sym_comment, + ACTIONS(6274), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2724), 35, + ACTIONS(5691), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138091,500 +359159,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13130] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2163), 1, - anon_sym_COLON, - ACTIONS(3315), 1, - anon_sym_EQ_GT, - ACTIONS(3440), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + [123389] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(7110), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3713), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3303), 21, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5965), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13203] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3516), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [13322] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3336), 1, - anon_sym_LBRACK, - ACTIONS(3339), 1, - anon_sym_LT, - ACTIONS(3342), 1, - anon_sym_DOT, - ACTIONS(3473), 1, - anon_sym_EQ, - ACTIONS(3475), 1, - anon_sym_EQ_GT, - STATE(2885), 1, - sym_type_arguments, - ACTIONS(3353), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3347), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 14, + ACTIONS(5967), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, anon_sym_COLON, - anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 17, + [123464] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3714), 1, + sym_comment, + ACTIONS(6381), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13405] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2163), 1, - anon_sym_COLON, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 18, + ACTIONS(6383), 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, - ACTIONS(26), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13478] = 30, + [123519] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, + STATE(3715), 1, + sym_comment, + STATE(5665), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3518), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [13597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3275), 22, - anon_sym_STAR, - anon_sym_EQ, + [123586] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5673), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, anon_sym_AMP_AMP, + ACTIONS(6929), 1, anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6935), 1, anon_sym_AMP, + ACTIONS(6937), 1, anon_sym_CARET, + ACTIONS(6939), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6943), 1, anon_sym_PERCENT, + ACTIONS(6945), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6947), 1, + anon_sym_LT, + ACTIONS(6955), 1, anon_sym_QMARK_QMARK, - ACTIONS(3277), 35, - sym__automatic_semicolon, + ACTIONS(6957), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, + STATE(2774), 1, + sym_type_arguments, + STATE(3716), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6951), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6953), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [13662] = 3, - ACTIONS(3), 1, + [123699] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3717), 1, sym_comment, - ACTIONS(2714), 22, + ACTIONS(6216), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(2716), 35, + ACTIONS(6218), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138596,57 +359454,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13727] = 3, - ACTIONS(3), 1, + [123754] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3718), 1, sym_comment, - ACTIONS(3265), 22, + ACTIONS(2334), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3267), 35, + ACTIONS(2338), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -138658,838 +359504,936 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13792] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 1, + [123809] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, anon_sym_EQ, - ACTIONS(3434), 1, - anon_sym_EQ_GT, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 19, - sym__automatic_semicolon, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5683), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, + anon_sym_COLON, + STATE(3719), 1, + sym_comment, + ACTIONS(5686), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5689), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2287), 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(2293), 22, 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, - ACTIONS(3303), 21, + [123874] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3720), 1, + sym_comment, + ACTIONS(2472), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13863] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3377), 1, - anon_sym_DOT, - ACTIONS(3379), 1, - anon_sym_QMARK_DOT, - ACTIONS(3489), 1, - anon_sym_EQ, - ACTIONS(3491), 1, - anon_sym_EQ_GT, - STATE(2836), 1, - sym_arguments, - ACTIONS(3365), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3373), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 12, + ACTIONS(2476), 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, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, + [123929] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3721), 1, + sym_comment, + ACTIONS(6286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13946] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3520), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [14065] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1667), 1, - anon_sym_EQ, - ACTIONS(1669), 1, - anon_sym_EQ_GT, - ACTIONS(3426), 1, - anon_sym_LBRACK, - ACTIONS(1509), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3429), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 16, + ACTIONS(6288), 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, - ACTIONS(26), 18, + [123984] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3722), 1, + sym_comment, + ACTIONS(6319), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14142] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 19, + ACTIONS(6321), 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, - ACTIONS(26), 21, + [124039] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(5701), 1, + anon_sym_LBRACK, + ACTIONS(6162), 1, + anon_sym_COLON, + STATE(3723), 1, + sym_comment, + ACTIONS(5704), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5707), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5695), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5699), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [14213] = 30, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [124104] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, + STATE(3724), 1, + sym_comment, + STATE(5545), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3522), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [14332] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, anon_sym_async, - ACTIONS(3409), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(3411), 1, anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, anon_sym_get, anon_sym_set, - ACTIONS(3524), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - sym_identifier, - anon_sym_declare, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [14451] = 3, - ACTIONS(3), 1, + [124171] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7113), 1, + anon_sym_LPAREN, + ACTIONS(7116), 1, + anon_sym_COLON, + ACTIONS(7118), 1, + anon_sym_LT, + ACTIONS(7121), 1, + anon_sym_QMARK, + STATE(3725), 1, sym_comment, - ACTIONS(3257), 22, + ACTIONS(4469), 12, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3259), 35, + ACTIONS(4473), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14516] = 3, - ACTIONS(3), 1, + [124234] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6875), 1, + anon_sym_AMP, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3726), 1, sym_comment, - ACTIONS(3287), 22, - anon_sym_STAR, - anon_sym_EQ, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5852), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [124331] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5691), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, anon_sym_AMP_AMP, + ACTIONS(6929), 1, anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, anon_sym_GT_GT, + ACTIONS(6935), 1, + anon_sym_AMP, + ACTIONS(6937), 1, + anon_sym_CARET, + ACTIONS(6939), 1, + anon_sym_PIPE, + ACTIONS(6943), 1, + anon_sym_PERCENT, + ACTIONS(6945), 1, + anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + ACTIONS(6955), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6957), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3727), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6951), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124444] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6192), 1, + anon_sym_LBRACK, + STATE(3728), 1, + sym_comment, + ACTIONS(6008), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6195), 3, + anon_sym_GT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, + ACTIONS(4469), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3289), 35, - sym__automatic_semicolon, + ACTIONS(4473), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14581] = 3, - ACTIONS(3), 1, + [124505] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3729), 1, sym_comment, - ACTIONS(3299), 22, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6865), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6873), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 3, + anon_sym_BANG, anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [124600] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4539), 1, + anon_sym_EQ, + ACTIONS(6006), 1, + anon_sym_QMARK, + ACTIONS(6192), 1, + anon_sym_LBRACK, + STATE(3730), 1, + sym_comment, + ACTIONS(6195), 2, + anon_sym_AMP, anon_sym_PIPE, + ACTIONS(6008), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4469), 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_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3301), 35, - sym__automatic_semicolon, + ACTIONS(4473), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14646] = 5, - ACTIONS(3), 1, + [124665] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3731), 1, sym_comment, - ACTIONS(3363), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 20, + ACTIONS(6385), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6387), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3303), 21, + [124720] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(7107), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3732), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 8, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, 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_LT_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, + [124803] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5693), 1, + anon_sym_RBRACK, + ACTIONS(6927), 1, + anon_sym_AMP_AMP, + ACTIONS(6929), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6931), 1, + anon_sym_GT_GT, + ACTIONS(6935), 1, anon_sym_AMP, + ACTIONS(6937), 1, anon_sym_CARET, + ACTIONS(6939), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6943), 1, anon_sym_PERCENT, + ACTIONS(6945), 1, anon_sym_STAR_STAR, + ACTIONS(6947), 1, + anon_sym_LT, + ACTIONS(6955), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6957), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3733), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6921), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6923), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6933), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6941), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6951), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14715] = 5, - ACTIONS(3), 1, + ACTIONS(6953), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6949), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [124916] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3734), 1, sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 20, + ACTIONS(2432), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2436), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139501,194 +360445,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3303), 21, + [124971] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3735), 1, + sym_comment, + ACTIONS(6379), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14784] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3315), 1, - anon_sym_EQ_GT, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 19, + ACTIONS(5963), 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, - ACTIONS(3303), 21, + [125026] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3736), 1, + sym_comment, + ACTIONS(2342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14855] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1448), 1, - anon_sym_EQ, - ACTIONS(1450), 1, - anon_sym_EQ_GT, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 19, + ACTIONS(2346), 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, - ACTIONS(26), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14926] = 3, - ACTIONS(3), 1, + [125081] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3737), 1, sym_comment, - ACTIONS(3295), 22, + ACTIONS(6188), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(3297), 35, + ACTIONS(6190), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -139700,5469 +360595,5325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14991] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3526), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [15110] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + [125136] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5486), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3528), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [15229] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6867), 1, + anon_sym_AMP_AMP, + ACTIONS(6869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6875), 1, + anon_sym_AMP, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3530), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [15348] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3434), 1, - anon_sym_EQ_GT, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 19, - sym__automatic_semicolon, + STATE(2774), 1, + sym_type_arguments, + STATE(3738), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 5, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [125241] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5673), 1, + anon_sym_of, + ACTIONS(6867), 1, + anon_sym_AMP_AMP, + ACTIONS(6869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6875), 1, + anon_sym_AMP, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, + anon_sym_PIPE, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3739), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6893), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3303), 21, + [125354] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3740), 1, + sym_comment, + ACTIONS(6367), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [15419] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(2256), 1, - anon_sym_in, - ACTIONS(3532), 1, - anon_sym_of, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 18, + ACTIONS(6369), 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, - ACTIONS(26), 20, + [125409] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3741), 1, + sym_comment, + ACTIONS(7123), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(7125), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [15494] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1454), 1, - anon_sym_EQ, - ACTIONS(1456), 1, - anon_sym_EQ_GT, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 19, - sym__automatic_semicolon, + ACTIONS(4473), 23, 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, - ACTIONS(26), 21, - anon_sym_STAR, + [125468] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5834), 1, + anon_sym_of, + ACTIONS(6867), 1, anon_sym_AMP_AMP, + ACTIONS(6869), 1, anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6875), 1, anon_sym_AMP, + ACTIONS(6877), 1, anon_sym_CARET, + ACTIONS(6879), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6883), 1, anon_sym_PERCENT, + ACTIONS(6885), 1, anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3742), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6865), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6873), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6881), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [15565] = 6, - ACTIONS(3), 1, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125581] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3743), 1, sym_comment, - ACTIONS(3315), 1, - anon_sym_EQ_GT, - ACTIONS(3440), 1, + ACTIONS(7127), 2, anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 19, - sym__automatic_semicolon, + anon_sym_QMARK, + ACTIONS(7129), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 23, 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, - ACTIONS(3303), 21, + [125640] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3744), 1, + sym_comment, + ACTIONS(6168), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6170), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [15636] = 30, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [125695] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, - anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, + STATE(3745), 1, + sym_comment, + STATE(5602), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3534), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(1189), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [15755] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1770), 1, - anon_sym_EQ, - ACTIONS(1772), 1, - anon_sym_EQ_GT, - ACTIONS(3426), 1, + [125762] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, - ACTIONS(1509), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3429), 3, - anon_sym_GT, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(5846), 1, + anon_sym_of, + ACTIONS(6867), 1, + anon_sym_AMP_AMP, + ACTIONS(6869), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6875), 1, anon_sym_AMP, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, anon_sym_PIPE, - ACTIONS(65), 15, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + ACTIONS(6895), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6897), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + STATE(2774), 1, + sym_type_arguments, + STATE(3746), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 18, + ACTIONS(6863), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6865), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6873), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [15831] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3375), 1, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125875] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - ACTIONS(3377), 1, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - ACTIONS(3379), 1, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - STATE(2836), 1, - sym_arguments, - ACTIONS(3373), 2, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6875), 1, anon_sym_AMP, + ACTIONS(6877), 1, + anon_sym_CARET, + ACTIONS(6879), 1, anon_sym_PIPE, - ACTIONS(3365), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3307), 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, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3747), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 19, + ACTIONS(6863), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6865), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6873), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6891), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [15913] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(63), 1, - anon_sym_EQ_GT, - ACTIONS(1396), 1, - anon_sym_EQ, - ACTIONS(1509), 1, - anon_sym_extends, - ACTIONS(3426), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(3429), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(65), 15, + ACTIONS(6893), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(6889), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [125976] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(7107), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3748), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 19, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [15989] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3440), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 19, - sym__automatic_semicolon, + ACTIONS(5850), 16, 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_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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3303), 21, + [126053] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3749), 1, + sym_comment, + ACTIONS(6313), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16057] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3440), 1, - anon_sym_EQ, - ACTIONS(3501), 1, - anon_sym_in, - ACTIONS(3504), 1, - anon_sym_of, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 18, + ACTIONS(6315), 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, - ACTIONS(3303), 20, - anon_sym_STAR, - anon_sym_BANG, + [126108] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6871), 1, + anon_sym_GT_GT, + ACTIONS(6883), 1, + anon_sym_PERCENT, + ACTIONS(6885), 1, + anon_sym_STAR_STAR, + ACTIONS(6887), 1, anon_sym_LT, - anon_sym_GT, + STATE(2774), 1, + sym_type_arguments, + STATE(3750), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6863), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(6873), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(6881), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16129] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3375), 1, - anon_sym_LPAREN, - ACTIONS(3377), 1, - anon_sym_DOT, - ACTIONS(3379), 1, - anon_sym_QMARK_DOT, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - STATE(2836), 1, + STATE(3004), 2, + sym_template_string, sym_arguments, - ACTIONS(3365), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3373), 3, + ACTIONS(5852), 7, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3307), 11, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 18, + [126195] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(6947), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3751), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5773), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16211] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1667), 1, - anon_sym_EQ, - ACTIONS(1669), 1, - anon_sym_EQ_GT, - ACTIONS(3237), 1, - sym_identifier, - ACTIONS(65), 14, - sym__automatic_semicolon, + ACTIONS(5775), 22, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_as, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + anon_sym_satisfies, + [126262] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3752), 1, + sym_comment, + ACTIONS(6323), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [16283] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1667), 1, - anon_sym_EQ, - ACTIONS(1669), 1, - anon_sym_EQ_GT, - ACTIONS(3536), 1, - sym_identifier, - ACTIONS(65), 14, + ACTIONS(6325), 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, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, - anon_sym_STAR, - anon_sym_as, + anon_sym_satisfies, + [126317] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(7135), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7137), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(7141), 1, anon_sym_AMP, + ACTIONS(7143), 1, anon_sym_CARET, + ACTIONS(7145), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7149), 1, anon_sym_PERCENT, + ACTIONS(7151), 1, anon_sym_STAR_STAR, + ACTIONS(7153), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3753), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7131), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + ACTIONS(5850), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [16355] = 6, + [126419] = 17, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5296), 1, + anon_sym_STAR, + ACTIONS(5298), 1, + anon_sym_async, + ACTIONS(5300), 1, + anon_sym_readonly, + ACTIONS(7161), 1, + anon_sym_static, + STATE(3754), 1, sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3469), 1, - anon_sym_EQ_GT, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + STATE(3861), 1, + sym_override_modifier, + STATE(4775), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5302), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 24, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [126497] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5601), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3303), 21, - anon_sym_STAR, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7137), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(7141), 1, anon_sym_AMP, + ACTIONS(7143), 1, anon_sym_CARET, + ACTIONS(7145), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7149), 1, anon_sym_PERCENT, + ACTIONS(7151), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, anon_sym_QMARK_QMARK, - [16425] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(32), 1, - anon_sym_RBRACK, - ACTIONS(125), 1, - anon_sym_COMMA, - ACTIONS(1758), 1, - anon_sym_EQ_GT, - ACTIONS(2269), 1, - anon_sym_EQ, - ACTIONS(2272), 1, - anon_sym_COLON, - ACTIONS(65), 15, + ACTIONS(7167), 1, 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, + STATE(2774), 1, + sym_type_arguments, + STATE(3755), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 21, + ACTIONS(7131), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(7133), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(7139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(7147), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16501] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3384), 1, - anon_sym_COMMA, - ACTIONS(3423), 1, - anon_sym_RBRACK, - ACTIONS(3499), 1, - anon_sym_EQ_GT, - ACTIONS(3538), 1, - anon_sym_EQ, - ACTIONS(3541), 1, - anon_sym_in, - ACTIONS(3543), 1, - anon_sym_COLON, - ACTIONS(3307), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(7159), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [126607] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 20, - anon_sym_STAR, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7137), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(7141), 1, anon_sym_AMP, + ACTIONS(7143), 1, anon_sym_CARET, + ACTIONS(7145), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7149), 1, anon_sym_PERCENT, + ACTIONS(7151), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, anon_sym_QMARK_QMARK, - [16579] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3467), 1, - anon_sym_EQ, - ACTIONS(3469), 1, - anon_sym_EQ_GT, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 18, + ACTIONS(7167), 1, 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, + STATE(2774), 1, + sym_type_arguments, + STATE(3756), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(3303), 21, + ACTIONS(7131), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(7133), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(7139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(7147), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16649] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 1, - anon_sym_EQ_GT, - ACTIONS(3363), 1, - anon_sym_EQ, - ACTIONS(3545), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3307), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(7159), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [126717] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 21, - anon_sym_STAR, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(7135), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7137), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(7141), 1, anon_sym_AMP, + ACTIONS(7143), 1, anon_sym_CARET, + ACTIONS(7145), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7149), 1, anon_sym_PERCENT, + ACTIONS(7151), 1, anon_sym_STAR_STAR, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + STATE(2774), 1, + sym_type_arguments, + STATE(3757), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7131), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16721] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3363), 1, - anon_sym_EQ, - ACTIONS(3446), 1, - anon_sym_COLON, - ACTIONS(3545), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3307), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(7159), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5850), 4, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 21, + [126821] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3758), 1, + sym_comment, + ACTIONS(5832), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5836), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16793] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 19, + ACTIONS(5838), 25, 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, - ACTIONS(3303), 21, - anon_sym_STAR, + [126877] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7169), 1, + anon_sym_RBRACE, + STATE(3759), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [126945] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7137), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(7141), 1, anon_sym_AMP, + ACTIONS(7143), 1, anon_sym_CARET, + ACTIONS(7145), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7149), 1, anon_sym_PERCENT, + ACTIONS(7151), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, anon_sym_QMARK_QMARK, - [16861] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1565), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 18, + ACTIONS(7167), 1, 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, + STATE(2774), 1, + sym_type_arguments, + STATE(3760), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(26), 21, + ACTIONS(7131), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(7133), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(7139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(7147), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16931] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1758), 1, - anon_sym_EQ_GT, - ACTIONS(3426), 1, - anon_sym_LBRACK, - ACTIONS(1509), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3429), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(65), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(7159), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [127055] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 18, - anon_sym_STAR, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7137), 1, anon_sym_GT_GT, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7143), 1, + anon_sym_CARET, + ACTIONS(7145), 1, + anon_sym_PIPE, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7167), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3761), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7131), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(7147), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17007] = 9, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [127165] = 12, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7171), 1, + anon_sym_RBRACE, + STATE(3762), 1, sym_comment, - ACTIONS(1752), 1, - anon_sym_EQ, - ACTIONS(1754), 1, - anon_sym_EQ_GT, - ACTIONS(3426), 1, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [127233] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6228), 1, anon_sym_LBRACK, - ACTIONS(1509), 2, + STATE(3763), 1, + sym_comment, + ACTIONS(5745), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3429), 3, + ACTIONS(6231), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(65), 15, + ACTIONS(6184), 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(6186), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 18, - anon_sym_STAR, + [127293] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7173), 1, + anon_sym_RBRACE, + STATE(3764), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [127361] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7175), 1, + anon_sym_RBRACE, + STATE(3765), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [127429] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7137), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7143), 1, anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7145), 1, + anon_sym_PIPE, + ACTIONS(7149), 1, anon_sym_PERCENT, + ACTIONS(7151), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17083] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3336), 1, - anon_sym_LBRACK, - ACTIONS(3339), 1, + ACTIONS(7153), 1, anon_sym_LT, - ACTIONS(3342), 1, - anon_sym_DOT, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - STATE(2885), 1, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7167), 1, + sym__ternary_qmark, + STATE(2774), 1, sym_type_arguments, - ACTIONS(3353), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3347), 3, + STATE(3766), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7131), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7133), 2, + anon_sym_in, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3307), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(7139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7157), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7159), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, + [127539] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7177), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3767), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 17, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5965), 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(5967), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [17165] = 7, + anon_sym_instanceof, + anon_sym_satisfies, + [127613] = 12, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7180), 1, + anon_sym_RBRACE, + STATE(3768), 1, sym_comment, - ACTIONS(1667), 1, - anon_sym_EQ, - ACTIONS(1669), 1, - anon_sym_EQ_GT, - ACTIONS(3457), 1, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, - ACTIONS(65), 14, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [127681] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(7137), 1, + anon_sym_GT_GT, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7153), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3769), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 24, + ACTIONS(7131), 2, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(7133), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(7139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(7147), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5852), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [17237] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1563), 1, - anon_sym_EQ, - ACTIONS(1565), 1, - anon_sym_EQ_GT, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 18, + ACTIONS(5850), 9, 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(26), 21, + [127771] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7099), 1, + anon_sym_COMMA, + STATE(3770), 1, + sym_comment, + ACTIONS(5836), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17307] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1669), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 17, - sym__automatic_semicolon, + ACTIONS(5838), 26, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(26), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17376] = 29, + [127827] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7182), 1, + anon_sym_RBRACE, + STATE(3771), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [127895] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, + ACTIONS(7184), 1, + anon_sym_RBRACE, + STATE(3772), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, anon_sym_async, - ACTIONS(3409), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(3411), 1, anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2974), 3, - sym_string, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [127963] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7186), 1, + anon_sym_RBRACE, + STATE(3773), 1, + sym_comment, + STATE(6331), 1, sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, sym_computed_property_name, - STATE(3550), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(2934), 30, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [17491] = 7, + [128031] = 14, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_import, + ACTIONS(15), 1, + anon_sym_AT, + ACTIONS(17), 1, + anon_sym_pragma, + STATE(3774), 1, sym_comment, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1758), 1, - anon_sym_EQ_GT, - ACTIONS(2285), 1, - anon_sym_COLON, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 16, - sym__ternary_qmark, - anon_sym_as, + STATE(4314), 1, + aux_sym_program_repeat1, + STATE(4444), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4483), 1, + sym_ui_annotation, + STATE(7330), 1, + sym_ui_nested_identifier, + STATE(4475), 2, + sym_ui_pragma, + sym_ui_import, + STATE(8634), 2, + sym_ui_object_definition, + sym_ui_annotated_object, + ACTIONS(11), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [128103] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5601), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(26), 21, - anon_sym_STAR, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7137), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(7141), 1, anon_sym_AMP, + ACTIONS(7143), 1, anon_sym_CARET, + ACTIONS(7145), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7149), 1, anon_sym_PERCENT, + ACTIONS(7151), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, anon_sym_QMARK_QMARK, - [17562] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(127), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(3426), 1, - anon_sym_LBRACK, - ACTIONS(1509), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3429), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(65), 14, + ACTIONS(7167), 1, 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, + STATE(2774), 1, + sym_type_arguments, + STATE(3775), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 18, + ACTIONS(7131), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(7133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(7147), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17637] = 29, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [128213] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, + ACTIONS(5272), 1, anon_sym_static, - ACTIONS(3411), 1, + ACTIONS(5274), 1, anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, + ACTIONS(5276), 1, + anon_sym_abstract, + STATE(3776), 1, + sym_comment, + STATE(3907), 1, sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, + STATE(5085), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(3511), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(4409), 27, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [17752] = 7, - ACTIONS(3), 1, + [128287] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5557), 1, + anon_sym_QMARK, + ACTIONS(5559), 1, + anon_sym_extends, + STATE(3777), 1, sym_comment, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1758), 1, - anon_sym_EQ_GT, - ACTIONS(2272), 1, - anon_sym_COLON, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(6360), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6357), 3, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(26), 21, + ACTIONS(4469), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17823] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3497), 1, - anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_EQ_GT, - ACTIONS(3541), 1, - anon_sym_in, - ACTIONS(3548), 1, - anon_sym_COLON, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 16, + ACTIONS(4473), 22, 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, - ACTIONS(3303), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17896] = 29, + [128349] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, + ACTIONS(7188), 1, + anon_sym_RBRACE, + STATE(3778), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, anon_sym_async, - ACTIONS(3409), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(3411), 1, anon_sym_readonly, - ACTIONS(3417), 1, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [128417] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + ACTIONS(7190), 1, + anon_sym_static, + STATE(3779), 1, + sym_comment, + STATE(3899), 1, sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, + STATE(5600), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3413), 2, + ACTIONS(2943), 2, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(3619), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(2934), 24, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [18011] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3461), 1, - anon_sym_EQ_GT, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 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(3303), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [18080] = 29, + [128495] = 17, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5172), 1, anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, + ACTIONS(5184), 1, anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, + ACTIONS(5186), 1, anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, + ACTIONS(7192), 1, + anon_sym_static, + STATE(3780), 1, + sym_comment, + STATE(3893), 1, sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, + STATE(4790), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3413), 2, + ACTIONS(5188), 2, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(3440), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(4409), 24, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [18195] = 29, + [128573] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, + ACTIONS(7194), 1, + anon_sym_RBRACE, + STATE(3781), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, anon_sym_async, - ACTIONS(3409), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(3411), 1, anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2974), 3, - sym_string, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [128641] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7196), 1, + anon_sym_RBRACE, + STATE(3782), 1, + sym_comment, + STATE(6331), 1, sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, sym_computed_property_name, - STATE(3424), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(2934), 30, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [18310] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1667), 1, - anon_sym_EQ, - ACTIONS(1669), 1, - anon_sym_EQ_GT, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 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(26), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [18379] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3497), 1, - anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_EQ_GT, - ACTIONS(3541), 1, - anon_sym_in, - ACTIONS(3543), 1, - anon_sym_COLON, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 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(3303), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [18452] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3467), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 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(3303), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [18519] = 29, + [128709] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, + ACTIONS(7198), 1, anon_sym_static, - ACTIONS(3411), 1, + ACTIONS(7200), 1, anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, + ACTIONS(7202), 1, + anon_sym_abstract, + STATE(3783), 1, + sym_comment, + STATE(3974), 1, sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, + STATE(5020), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3413), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(3525), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(4409), 27, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [18634] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(32), 1, - anon_sym_RBRACK, - ACTIONS(125), 1, - anon_sym_COMMA, - ACTIONS(1758), 1, - anon_sym_EQ_GT, - ACTIONS(2269), 1, - anon_sym_EQ, - ACTIONS(65), 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(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [18707] = 29, + [128783] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_import, + ACTIONS(15), 1, anon_sym_AT, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, + ACTIONS(17), 1, + anon_sym_pragma, + STATE(3784), 1, + sym_comment, + STATE(4314), 1, + aux_sym_program_repeat1, + STATE(4444), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4483), 1, + sym_ui_annotation, + STATE(7330), 1, + sym_ui_nested_identifier, + STATE(4475), 2, + sym_ui_pragma, + sym_ui_import, + STATE(8520), 2, + sym_ui_object_definition, + sym_ui_annotated_object, + ACTIONS(11), 28, anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3405), 1, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, anon_sym_async, - ACTIONS(3409), 1, anon_sym_static, - ACTIONS(3411), 1, anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, - sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3413), 2, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(2974), 3, - sym_string, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [128855] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7204), 1, + anon_sym_RBRACE, + STATE(3785), 1, + sym_comment, + STATE(5818), 1, sym__property_name, + STATE(7101), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, sym_computed_property_name, - STATE(3526), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(2934), 30, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [18822] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3384), 1, - anon_sym_COMMA, - ACTIONS(3423), 1, - anon_sym_RBRACK, - ACTIONS(3499), 1, - anon_sym_EQ_GT, - ACTIONS(3538), 1, - anon_sym_EQ, - ACTIONS(3307), 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(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [18895] = 29, + [128923] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(2818), 1, - anon_sym_new, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(2834), 1, - anon_sym_abstract, - ACTIONS(3395), 1, - anon_sym_export, - ACTIONS(3397), 1, - anon_sym_STAR, - ACTIONS(3403), 1, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3405), 1, - anon_sym_async, - ACTIONS(3409), 1, - anon_sym_static, - ACTIONS(3411), 1, + ACTIONS(5545), 1, anon_sym_readonly, - ACTIONS(3417), 1, - anon_sym_override, - STATE(1136), 1, - sym_decorator, - STATE(2453), 1, - sym_accessibility_modifier, - STATE(2502), 1, + ACTIONS(7206), 1, + anon_sym_STAR, + STATE(3786), 1, + sym_comment, + STATE(3884), 1, sym_override_modifier, - STATE(3114), 1, - sym_formal_parameters, - STATE(3805), 1, - sym__call_signature, - STATE(3910), 1, - aux_sym_export_statement_repeat1, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(3407), 2, + STATE(4712), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3413), 2, + ACTIONS(7208), 2, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(2974), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(3494), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(4409), 26, + anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [19010] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 1, + [128997] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6278), 1, anon_sym_EQ, - ACTIONS(3461), 1, - anon_sym_EQ_GT, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 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(3303), 21, + ACTIONS(6282), 1, + anon_sym_COLON, + STATE(3787), 1, + sym_comment, + ACTIONS(6483), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(6276), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19079] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1754), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 16, + ACTIONS(6280), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(26), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19147] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(127), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(2256), 1, - anon_sym_in, - ACTIONS(3532), 1, - anon_sym_of, - ACTIONS(65), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 20, + [129057] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5689), 1, + anon_sym_extends, + STATE(3788), 1, + sym_comment, + ACTIONS(5683), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5686), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2287), 11, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, + anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19219] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3475), 1, - anon_sym_EQ_GT, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 16, + ACTIONS(2293), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, 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(3303), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19287] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3489), 1, - anon_sym_EQ, - ACTIONS(3491), 1, - anon_sym_EQ_GT, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3303), 21, + [129119] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6756), 1, + sym_regex_flags, + STATE(3789), 1, + sym_comment, + ACTIONS(6752), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19355] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3491), 1, - anon_sym_EQ_GT, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 16, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(6754), 22, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, 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(3303), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19423] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 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_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3303), 21, + [129175] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(5707), 1, + anon_sym_extends, + STATE(3790), 1, + sym_comment, + ACTIONS(5701), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5704), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5695), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19489] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - ACTIONS(3501), 1, - anon_sym_in, - ACTIONS(3504), 1, - anon_sym_of, - ACTIONS(3307), 15, + ACTIONS(5699), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19561] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1756), 1, - anon_sym_EQ, - ACTIONS(1758), 1, - anon_sym_EQ_GT, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(26), 21, + [129237] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, + anon_sym_EQ, + STATE(3791), 1, + sym_comment, + ACTIONS(4816), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19629] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3497), 1, - anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_EQ_GT, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 16, + ACTIONS(4473), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3303), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19697] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3384), 1, - anon_sym_COMMA, - ACTIONS(3423), 1, - anon_sym_RBRACK, - ACTIONS(3538), 1, - anon_sym_EQ, - ACTIONS(3307), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 21, - anon_sym_STAR, + [129295] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_import, + ACTIONS(15), 1, + anon_sym_AT, + ACTIONS(17), 1, + anon_sym_pragma, + STATE(3784), 1, + aux_sym_program_repeat1, + STATE(3792), 1, + sym_comment, + STATE(4444), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4483), 1, + sym_ui_annotation, + STATE(7330), 1, + sym_ui_nested_identifier, + STATE(4475), 2, + sym_ui_pragma, + sym_ui_import, + STATE(8634), 2, + sym_ui_object_definition, + sym_ui_annotated_object, + ACTIONS(11), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [129367] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7137), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(7141), 1, anon_sym_AMP, + ACTIONS(7143), 1, anon_sym_CARET, + ACTIONS(7145), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7149), 1, anon_sym_PERCENT, + ACTIONS(7151), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, anon_sym_QMARK_QMARK, - [19767] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3473), 1, - anon_sym_EQ, - ACTIONS(3475), 1, - anon_sym_EQ_GT, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 16, + ACTIONS(7167), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + STATE(2774), 1, + sym_type_arguments, + STATE(3793), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3303), 21, + ACTIONS(7131), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(7133), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(7139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(7147), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19835] = 6, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [129477] = 12, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7210), 1, + anon_sym_RBRACE, + STATE(3794), 1, sym_comment, - ACTIONS(1770), 1, - anon_sym_EQ, - ACTIONS(1772), 1, - anon_sym_EQ_GT, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 16, - sym__ternary_qmark, - anon_sym_as, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [129545] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5601), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(26), 21, - anon_sym_STAR, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7137), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(7141), 1, anon_sym_AMP, + ACTIONS(7143), 1, anon_sym_CARET, + ACTIONS(7145), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7149), 1, anon_sym_PERCENT, + ACTIONS(7151), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, anon_sym_QMARK_QMARK, - [19903] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1758), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 16, + ACTIONS(7167), 1, 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, + STATE(2774), 1, + sym_type_arguments, + STATE(3795), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(26), 21, + ACTIONS(7131), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(7133), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(7139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(7147), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19971] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1772), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, + ACTIONS(7159), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(26), 21, + [129655] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7212), 1, + anon_sym_catch, + ACTIONS(7214), 1, + anon_sym_finally, + STATE(3796), 1, + sym_comment, + STATE(3904), 1, + sym_catch_clause, + STATE(4147), 1, + sym_finally_clause, + ACTIONS(3341), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [129715] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(6162), 1, + anon_sym_COMMA, + ACTIONS(6507), 1, + anon_sym_RBRACK, + STATE(3797), 1, + sym_comment, + ACTIONS(5695), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20039] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1752), 1, - anon_sym_EQ, - ACTIONS(1754), 1, - anon_sym_EQ_GT, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(65), 16, + ACTIONS(5699), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(26), 21, - anon_sym_STAR, + [129775] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7137), 1, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(7141), 1, anon_sym_AMP, + ACTIONS(7143), 1, anon_sym_CARET, + ACTIONS(7145), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7149), 1, anon_sym_PERCENT, + ACTIONS(7151), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, anon_sym_QMARK_QMARK, - [20107] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3499), 1, - anon_sym_EQ_GT, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 16, + ACTIONS(7167), 1, 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, + STATE(2774), 1, + sym_type_arguments, + STATE(3798), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3303), 21, + ACTIONS(7131), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(7133), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(7139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7157), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [129885] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4734), 1, + anon_sym_EQ, + ACTIONS(6192), 1, + anon_sym_LBRACK, + STATE(3799), 1, + sym_comment, + ACTIONS(6008), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6195), 3, + anon_sym_GT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, + ACTIONS(4469), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20175] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3473), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 16, + ACTIONS(4473), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3303), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [20240] = 25, + [129947] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(133), 1, - anon_sym_STAR, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(203), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2804), 1, - anon_sym_LBRACE, - ACTIONS(3552), 1, - anon_sym_RBRACE, - ACTIONS(3554), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3556), 1, + ACTIONS(7216), 1, + anon_sym_RBRACE, + STATE(3800), 1, + sym_comment, + STATE(6174), 1, + sym__property_name, + STATE(6942), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, anon_sym_async, - ACTIONS(3558), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(3560), 1, anon_sym_readonly, - ACTIONS(3566), 1, - anon_sym_override, - STATE(2452), 1, - sym_accessibility_modifier, - STATE(2494), 1, - sym_override_modifier, - STATE(4139), 1, - aux_sym_object_repeat1, - STATE(4271), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(215), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3562), 2, anon_sym_get, anon_sym_set, - ACTIONS(3564), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3262), 3, - sym_string, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [130015] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7218), 1, + anon_sym_RBRACE, + STATE(3801), 1, + sym_comment, + STATE(5804), 1, sym__property_name, + STATE(7147), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, sym_computed_property_name, - STATE(4141), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4245), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4732), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3550), 18, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [20345] = 25, + [130083] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(133), 1, - anon_sym_STAR, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(203), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2804), 1, - anon_sym_LBRACE, - ACTIONS(3554), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3570), 1, + ACTIONS(7220), 1, anon_sym_RBRACE, - ACTIONS(3572), 1, + STATE(3802), 1, + sym_comment, + STATE(6224), 1, + sym__property_name, + STATE(7034), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, anon_sym_async, - ACTIONS(3574), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(3576), 1, anon_sym_readonly, - ACTIONS(3582), 1, - anon_sym_override, - STATE(2452), 1, - sym_accessibility_modifier, - STATE(2494), 1, - sym_override_modifier, - STATE(4092), 1, - aux_sym_object_repeat1, - STATE(4271), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(215), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3578), 2, anon_sym_get, anon_sym_set, - ACTIONS(3580), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3262), 3, - sym_string, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [130151] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7222), 1, + anon_sym_RBRACE, + STATE(3803), 1, + sym_comment, + STATE(6331), 1, sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, sym_computed_property_name, - STATE(4101), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4245), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4732), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3568), 18, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [20450] = 25, + [130219] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(133), 1, - anon_sym_STAR, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(203), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2804), 1, - anon_sym_LBRACE, - ACTIONS(3554), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3586), 1, + ACTIONS(7224), 1, anon_sym_RBRACE, - ACTIONS(3588), 1, + STATE(3804), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, anon_sym_async, - ACTIONS(3590), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(3592), 1, anon_sym_readonly, - ACTIONS(3598), 1, - anon_sym_override, - STATE(2452), 1, - sym_accessibility_modifier, - STATE(2494), 1, - sym_override_modifier, - STATE(4092), 1, - aux_sym_object_repeat1, - STATE(4271), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(215), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3594), 2, anon_sym_get, anon_sym_set, - ACTIONS(3596), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3262), 3, - sym_string, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [130287] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(7153), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3805), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5773), 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(5775), 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, + [130353] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7226), 1, + anon_sym_RBRACE, + STATE(3806), 1, + sym_comment, + STATE(6331), 1, sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, sym_computed_property_name, - STATE(4101), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4245), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4732), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3584), 18, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [20555] = 25, + [130421] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(133), 1, - anon_sym_STAR, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(203), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2804), 1, - anon_sym_LBRACE, - ACTIONS(3554), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3602), 1, + ACTIONS(7228), 1, anon_sym_RBRACE, - ACTIONS(3604), 1, + STATE(3807), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, anon_sym_async, - ACTIONS(3606), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(3608), 1, anon_sym_readonly, - ACTIONS(3614), 1, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - STATE(2452), 1, - sym_accessibility_modifier, - STATE(2494), 1, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [130489] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(4433), 1, + anon_sym_override, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(7230), 1, + anon_sym_STAR, + ACTIONS(7232), 1, + anon_sym_readonly, + STATE(3808), 1, + sym_comment, + STATE(3870), 1, sym_override_modifier, - STATE(4092), 1, - aux_sym_object_repeat1, - STATE(4271), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(215), 2, + STATE(4721), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3610), 2, + ACTIONS(7234), 2, anon_sym_get, anon_sym_set, - ACTIONS(3612), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3262), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4101), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4245), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4732), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3600), 18, + ACTIONS(4409), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [20660] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3355), 1, + [130563] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, anon_sym_EQ, - ACTIONS(3389), 1, - anon_sym_EQ_GT, - ACTIONS(3307), 15, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6343), 1, + anon_sym_COMMA, + ACTIONS(6486), 1, + anon_sym_RBRACK, + STATE(3809), 1, + sym_comment, + ACTIONS(2287), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2293), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 21, + [130623] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3810), 1, + sym_comment, + ACTIONS(5751), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(5753), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4469), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [130681] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7236), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3811), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5952), 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_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(5954), 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, - [20727] = 5, - ACTIONS(3), 1, + anon_sym_instanceof, + [130761] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6357), 1, + anon_sym_LBRACK, + STATE(3812), 1, sym_comment, - ACTIONS(3497), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 16, + ACTIONS(5559), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6360), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 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(4473), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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, - ACTIONS(3303), 21, + [130821] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, + anon_sym_AMP_AMP, + ACTIONS(7137), 1, + anon_sym_GT_GT, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7143), 1, + anon_sym_CARET, + ACTIONS(7145), 1, + anon_sym_PIPE, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7167), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3813), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7131), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7157), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [130931] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, + anon_sym_AMP_AMP, + ACTIONS(7137), 1, + anon_sym_GT_GT, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7143), 1, + anon_sym_CARET, + ACTIONS(7145), 1, + anon_sym_PIPE, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7167), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3814), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7131), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7133), 2, anon_sym_in, + anon_sym_GT, + ACTIONS(7139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7157), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [131041] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7239), 1, anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3815), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 13, + sym__ternary_qmark, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_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, + [131123] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, + anon_sym_AMP_AMP, + ACTIONS(7137), 1, + anon_sym_GT_GT, + ACTIONS(7141), 1, anon_sym_AMP, + ACTIONS(7143), 1, anon_sym_CARET, + ACTIONS(7145), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7149), 1, anon_sym_PERCENT, + ACTIONS(7151), 1, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, anon_sym_QMARK_QMARK, - [20792] = 7, - ACTIONS(3), 1, + ACTIONS(7167), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3816), 1, sym_comment, - ACTIONS(3355), 1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7131), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7157), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [131233] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6278), 1, anon_sym_EQ, - ACTIONS(3501), 1, + ACTIONS(6282), 1, + anon_sym_COMMA, + ACTIONS(6483), 1, + anon_sym_RBRACK, + STATE(3817), 1, + sym_comment, + ACTIONS(6276), 13, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(3504), 1, - anon_sym_of, - ACTIONS(3307), 15, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6280), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3303), 20, + [131293] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ, + ACTIONS(6192), 1, + anon_sym_LBRACK, + STATE(3818), 1, + sym_comment, + ACTIONS(6008), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 10, anon_sym_STAR, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + 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(4473), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [20861] = 25, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [131355] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(133), 1, - anon_sym_STAR, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(203), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2804), 1, - anon_sym_LBRACE, - ACTIONS(3554), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3618), 1, + ACTIONS(7242), 1, anon_sym_RBRACE, - ACTIONS(3620), 1, - anon_sym_async, - ACTIONS(3622), 1, - anon_sym_static, - ACTIONS(3624), 1, - anon_sym_readonly, - ACTIONS(3630), 1, - anon_sym_override, - STATE(2452), 1, - sym_accessibility_modifier, - STATE(2494), 1, - sym_override_modifier, - STATE(4092), 1, - aux_sym_object_repeat1, - STATE(4271), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(215), 2, + STATE(3819), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3626), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3628), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3262), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4101), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4245), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4732), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3616), 18, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [20966] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(127), 1, - anon_sym_EQ_GT, - ACTIONS(1774), 1, - anon_sym_EQ, - ACTIONS(65), 15, - sym__ternary_qmark, - anon_sym_as, + [131423] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(7137), 1, + anon_sym_GT_GT, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7153), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3820), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(69), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(26), 21, + ACTIONS(7131), 2, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(7139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(7147), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, - [21033] = 25, + anon_sym_instanceof, + anon_sym_satisfies, + [131509] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(133), 1, - anon_sym_STAR, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(203), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2804), 1, - anon_sym_LBRACE, - ACTIONS(3554), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3634), 1, + ACTIONS(7244), 1, anon_sym_RBRACE, - ACTIONS(3636), 1, - anon_sym_async, - ACTIONS(3638), 1, - anon_sym_static, - ACTIONS(3640), 1, - anon_sym_readonly, - ACTIONS(3646), 1, - anon_sym_override, - STATE(2452), 1, - sym_accessibility_modifier, - STATE(2494), 1, - sym_override_modifier, - STATE(4139), 1, - aux_sym_object_repeat1, - STATE(4271), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(215), 2, + STATE(3821), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3642), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3644), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3262), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4141), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4245), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4732), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3632), 18, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [21138] = 25, + [131577] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(133), 1, - anon_sym_STAR, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(203), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2804), 1, - anon_sym_LBRACE, - ACTIONS(3554), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(7246), 1, anon_sym_RBRACE, - ACTIONS(3652), 1, + STATE(3822), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, anon_sym_async, - ACTIONS(3654), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(3656), 1, anon_sym_readonly, - ACTIONS(3662), 1, - anon_sym_override, - STATE(2452), 1, - sym_accessibility_modifier, - STATE(2494), 1, - sym_override_modifier, - STATE(4092), 1, - aux_sym_object_repeat1, - STATE(4271), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(215), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3658), 2, anon_sym_get, anon_sym_set, - ACTIONS(3660), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3262), 3, - sym_string, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [131645] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7248), 1, + anon_sym_RBRACE, + STATE(3823), 1, + sym_comment, + STATE(6331), 1, sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, sym_computed_property_name, - STATE(4101), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4245), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4732), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3648), 18, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [21243] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3489), 1, - anon_sym_EQ, - ACTIONS(3317), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3307), 16, - sym__ternary_qmark, - anon_sym_as, + [131713] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(5486), 1, anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, + anon_sym_AMP_AMP, + ACTIONS(7137), 1, + anon_sym_GT_GT, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7143), 1, + anon_sym_CARET, + ACTIONS(7145), 1, + anon_sym_PIPE, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7167), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3824), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(3303), 21, + ACTIONS(7131), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(7133), 2, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(7139), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(7147), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [21308] = 21, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [131823] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(13), 1, - anon_sym_AT, - ACTIONS(558), 1, - anon_sym_var, - ACTIONS(3664), 1, - sym_identifier, - ACTIONS(3668), 1, - anon_sym_default, - ACTIONS(3670), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7250), 1, anon_sym_RBRACE, - ACTIONS(3672), 1, - anon_sym_async, - ACTIONS(3674), 1, - anon_sym_function, - ACTIONS(3676), 1, - anon_sym_readonly, - ACTIONS(3678), 1, - anon_sym_property, - ACTIONS(3680), 1, - anon_sym_signal, - ACTIONS(3682), 1, - anon_sym_required, - ACTIONS(3684), 1, - anon_sym_component, - ACTIONS(3686), 1, - anon_sym_enum, - STATE(1403), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(2711), 1, - sym__qml_enum_declaration, - STATE(2770), 1, - sym_ui_annotation, - STATE(3840), 1, - sym_ui_nested_identifier, - STATE(3429), 2, - sym_ui_property_modifier, - aux_sym_ui_property_repeat1, - STATE(1364), 12, - sym_variable_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ui_object_definition, - sym_ui_annotated_object_member, - sym_ui_object_definition_binding, - sym_ui_binding, - sym_ui_property, - sym_ui_required, - sym_ui_signal, - sym_ui_inline_component, - aux_sym_ui_object_initializer_repeat1, - ACTIONS(3666), 20, + STATE(3825), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -145176,67 +365927,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_on, - [21403] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13), 1, - anon_sym_AT, - ACTIONS(558), 1, - anon_sym_var, - ACTIONS(3664), 1, - sym_identifier, - ACTIONS(3668), 1, - anon_sym_default, - ACTIONS(3672), 1, - anon_sym_async, - ACTIONS(3674), 1, - anon_sym_function, - ACTIONS(3676), 1, - anon_sym_readonly, - ACTIONS(3678), 1, + anon_sym_object, anon_sym_property, - ACTIONS(3680), 1, anon_sym_signal, - ACTIONS(3682), 1, + anon_sym_on, anon_sym_required, - ACTIONS(3684), 1, anon_sym_component, - ACTIONS(3686), 1, - anon_sym_enum, - ACTIONS(3688), 1, - anon_sym_RBRACE, - STATE(1403), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(2711), 1, - sym__qml_enum_declaration, - STATE(2770), 1, - sym_ui_annotation, - STATE(3840), 1, - sym_ui_nested_identifier, - STATE(3429), 2, - sym_ui_property_modifier, - aux_sym_ui_property_repeat1, - STATE(1359), 12, - sym_variable_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ui_object_definition, - sym_ui_annotated_object_member, - sym_ui_object_definition_binding, - sym_ui_binding, - sym_ui_property, - sym_ui_required, - sym_ui_signal, - sym_ui_inline_component, - aux_sym_ui_object_initializer_repeat1, - ACTIONS(3666), 20, + [131891] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(6072), 1, + anon_sym_BANG, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6078), 1, + anon_sym_LBRACK, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(7135), 1, + anon_sym_AMP_AMP, + ACTIONS(7137), 1, + anon_sym_GT_GT, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7143), 1, + anon_sym_CARET, + ACTIONS(7145), 1, + anon_sym_PIPE, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7167), 1, + sym__ternary_qmark, + STATE(3826), 1, + sym_comment, + STATE(3967), 1, + sym_type_arguments, + STATE(7075), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7131), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7157), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3550), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [132001] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7252), 1, + anon_sym_AT, + STATE(3950), 1, + sym_decorator, + STATE(3827), 2, + sym_comment, + aux_sym_export_statement_repeat1, + ACTIONS(4291), 37, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -145250,142 +366053,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, anon_sym_on, - [21498] = 22, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [132057] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(133), 1, - anon_sym_STAR, - ACTIONS(203), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2804), 1, - anon_sym_LBRACE, - ACTIONS(3554), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3692), 1, - anon_sym_async, - ACTIONS(3694), 1, - anon_sym_static, - ACTIONS(3696), 1, - anon_sym_readonly, - ACTIONS(3702), 1, - anon_sym_override, - STATE(2452), 1, - sym_accessibility_modifier, - STATE(2494), 1, - sym_override_modifier, - ACTIONS(215), 2, + ACTIONS(7255), 1, + anon_sym_RBRACE, + STATE(3828), 1, + sym_comment, + STATE(5924), 1, + sym__property_name, + STATE(6811), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(2972), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3698), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3700), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3262), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4369), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(4404), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4732), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(3690), 18, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [21595] = 21, + [132125] = 12, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7257), 1, + anon_sym_RBRACE, + STATE(3829), 1, sym_comment, - ACTIONS(13), 1, - anon_sym_AT, - ACTIONS(558), 1, - anon_sym_var, - ACTIONS(3664), 1, - sym_identifier, - ACTIONS(3668), 1, - anon_sym_default, - ACTIONS(3672), 1, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, anon_sym_async, - ACTIONS(3674), 1, - anon_sym_function, - ACTIONS(3676), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_readonly, - ACTIONS(3678), 1, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, anon_sym_property, - ACTIONS(3680), 1, anon_sym_signal, - ACTIONS(3682), 1, + anon_sym_on, anon_sym_required, - ACTIONS(3684), 1, anon_sym_component, - ACTIONS(3686), 1, - anon_sym_enum, - ACTIONS(3704), 1, + [132193] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7259), 1, anon_sym_RBRACE, - STATE(1403), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(2711), 1, - sym__qml_enum_declaration, - STATE(2770), 1, - sym_ui_annotation, - STATE(3840), 1, - sym_ui_nested_identifier, - STATE(3429), 2, - sym_ui_property_modifier, - aux_sym_ui_property_repeat1, - STATE(1363), 12, - sym_variable_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ui_object_definition, - sym_ui_annotated_object_member, - sym_ui_object_definition_binding, - sym_ui_binding, - sym_ui_property, - sym_ui_required, - sym_ui_signal, - sym_ui_inline_component, - aux_sym_ui_object_initializer_repeat1, - ACTIONS(3666), 20, + STATE(3830), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -145399,67 +366222,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_on, - [21690] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13), 1, - anon_sym_AT, - ACTIONS(558), 1, - anon_sym_var, - ACTIONS(3664), 1, - sym_identifier, - ACTIONS(3668), 1, - anon_sym_default, - ACTIONS(3672), 1, - anon_sym_async, - ACTIONS(3674), 1, - anon_sym_function, - ACTIONS(3676), 1, - anon_sym_readonly, - ACTIONS(3678), 1, + anon_sym_object, anon_sym_property, - ACTIONS(3680), 1, anon_sym_signal, - ACTIONS(3682), 1, + anon_sym_on, anon_sym_required, - ACTIONS(3684), 1, anon_sym_component, - ACTIONS(3686), 1, - anon_sym_enum, - ACTIONS(3706), 1, + [132261] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7261), 1, anon_sym_RBRACE, - STATE(1403), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(2711), 1, - sym__qml_enum_declaration, - STATE(2770), 1, - sym_ui_annotation, - STATE(3840), 1, - sym_ui_nested_identifier, - STATE(3429), 2, - sym_ui_property_modifier, - aux_sym_ui_property_repeat1, - STATE(1364), 12, - sym_variable_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ui_object_definition, - sym_ui_annotated_object_member, - sym_ui_object_definition_binding, - sym_ui_binding, - sym_ui_property, - sym_ui_required, - sym_ui_signal, - sym_ui_inline_component, - aux_sym_ui_object_initializer_repeat1, - ACTIONS(3666), 20, + STATE(3831), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -145473,67 +366278,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_on, - [21785] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3708), 1, - sym_identifier, - ACTIONS(3714), 1, - anon_sym_default, - ACTIONS(3717), 1, - anon_sym_RBRACE, - ACTIONS(3719), 1, - anon_sym_var, - ACTIONS(3722), 1, - anon_sym_async, - ACTIONS(3725), 1, - anon_sym_function, - ACTIONS(3728), 1, - anon_sym_AT, - ACTIONS(3731), 1, - anon_sym_readonly, - ACTIONS(3734), 1, + anon_sym_object, anon_sym_property, - ACTIONS(3737), 1, anon_sym_signal, - ACTIONS(3740), 1, + anon_sym_on, anon_sym_required, - ACTIONS(3743), 1, anon_sym_component, - ACTIONS(3746), 1, - anon_sym_enum, - STATE(1403), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(2711), 1, - sym__qml_enum_declaration, - STATE(2770), 1, - sym_ui_annotation, - STATE(3840), 1, - sym_ui_nested_identifier, - STATE(3429), 2, - sym_ui_property_modifier, - aux_sym_ui_property_repeat1, - STATE(1364), 12, - sym_variable_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ui_object_definition, - sym_ui_annotated_object_member, - sym_ui_object_definition_binding, - sym_ui_binding, - sym_ui_property, - sym_ui_required, - sym_ui_signal, - sym_ui_inline_component, - aux_sym_ui_object_initializer_repeat1, - ACTIONS(3711), 20, + [132329] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7263), 1, + anon_sym_RBRACE, + STATE(3832), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -145547,541 +366334,594 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, anon_sym_on, - [21880] = 33, - ACTIONS(3), 1, + anon_sym_required, + anon_sym_component, + [132397] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, + anon_sym_AMP_AMP, + ACTIONS(7137), 1, + anon_sym_GT_GT, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7143), 1, + anon_sym_CARET, + ACTIONS(7145), 1, + anon_sym_PIPE, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7153), 1, + anon_sym_LT, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7167), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3833), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(2057), 1, - anon_sym_LBRACE, - ACTIONS(2224), 1, - anon_sym_namespace, - ACTIONS(2226), 1, - anon_sym_import, - ACTIONS(2228), 1, - anon_sym_var, - ACTIONS(2230), 1, - anon_sym_let, - ACTIONS(2232), 1, - anon_sym_const, - ACTIONS(2234), 1, - anon_sym_class, - ACTIONS(2236), 1, - anon_sym_async, - ACTIONS(2238), 1, - anon_sym_function, - ACTIONS(2240), 1, - anon_sym_declare, - ACTIONS(2244), 1, - anon_sym_abstract, - ACTIONS(2248), 1, - anon_sym_interface, - ACTIONS(2250), 1, - anon_sym_enum, - ACTIONS(3749), 1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7131), 2, anon_sym_STAR, - ACTIONS(3751), 1, - anon_sym_default, - ACTIONS(3753), 1, - anon_sym_type, - ACTIONS(3755), 1, + anon_sym_SLASH, + ACTIONS(7133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7157), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [132507] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4493), 1, anon_sym_EQ, - ACTIONS(3757), 1, + ACTIONS(6008), 1, + anon_sym_extends, + STATE(3834), 1, + sym_comment, + ACTIONS(6192), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(6195), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 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(4473), 23, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3759), 1, anon_sym_COMMA, - ACTIONS(3762), 1, - anon_sym_RBRACE, - ACTIONS(3767), 1, - anon_sym_module, - STATE(1136), 1, - sym_decorator, - STATE(3633), 1, - aux_sym_export_statement_repeat1, - STATE(3748), 1, - sym_declaration, - STATE(3757), 1, - sym_internal_module, - STATE(3883), 1, - sym_export_clause, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - STATE(4569), 1, - sym_namespace_export, - ACTIONS(3765), 7, - sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3636), 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, - [21998] = 33, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [132569] = 12, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7265), 1, + anon_sym_RBRACE, + STATE(3835), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(2057), 1, - anon_sym_LBRACE, - ACTIONS(2224), 1, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(2226), 1, - anon_sym_import, - ACTIONS(2228), 1, - anon_sym_var, - ACTIONS(2230), 1, + anon_sym_from, anon_sym_let, - ACTIONS(2232), 1, - anon_sym_const, - ACTIONS(2234), 1, - anon_sym_class, - ACTIONS(2236), 1, + anon_sym_of, anon_sym_async, - ACTIONS(2238), 1, - anon_sym_function, - ACTIONS(2240), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(2244), 1, - anon_sym_abstract, - ACTIONS(2248), 1, - anon_sym_interface, - ACTIONS(2250), 1, - anon_sym_enum, - ACTIONS(3749), 1, - anon_sym_STAR, - ACTIONS(3751), 1, - anon_sym_default, - ACTIONS(3753), 1, - anon_sym_type, - ACTIONS(3755), 1, - anon_sym_EQ, - ACTIONS(3757), 1, - anon_sym_as, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3767), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, - ACTIONS(3769), 1, - anon_sym_RBRACE, - STATE(1136), 1, - sym_decorator, - STATE(3633), 1, - aux_sym_export_statement_repeat1, - STATE(3748), 1, - sym_declaration, - STATE(3757), 1, - sym_internal_module, - STATE(3883), 1, - sym_export_clause, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - STATE(4569), 1, - sym_namespace_export, - ACTIONS(3765), 7, - sym__automatic_semicolon, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [132637] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5613), 1, + anon_sym_as, + ACTIONS(5617), 1, + anon_sym_BANG, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5655), 1, + anon_sym_satisfies, + ACTIONS(7135), 1, + anon_sym_AMP_AMP, + ACTIONS(7137), 1, + anon_sym_GT_GT, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7143), 1, + anon_sym_CARET, + ACTIONS(7145), 1, + anon_sym_PIPE, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7153), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3636), 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, - [22116] = 25, + ACTIONS(7163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7165), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7167), 1, + sym__ternary_qmark, + STATE(2774), 1, + sym_type_arguments, + STATE(3836), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7131), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7157), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [132747] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, - anon_sym_STAR, - ACTIONS(3774), 1, + ACTIONS(7267), 1, anon_sym_RBRACE, - ACTIONS(3776), 1, - anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, - anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + STATE(3837), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1384), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [22218] = 25, - ACTIONS(3), 1, + [132815] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7269), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3838), 1, sym_comment, - ACTIONS(1621), 1, + STATE(7174), 1, + sym_optional_chain, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5921), 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(5923), 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, + [132887] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, - anon_sym_STAR, - ACTIONS(3776), 1, - anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, - anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3792), 1, + ACTIONS(7272), 1, anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + STATE(3839), 1, + sym_comment, + STATE(5735), 1, + sym__property_name, + STATE(7343), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1385), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [22320] = 33, - ACTIONS(3), 1, + [132955] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7239), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3840), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(2057), 1, - anon_sym_LBRACE, - ACTIONS(2224), 1, - anon_sym_namespace, - ACTIONS(2226), 1, - anon_sym_import, - ACTIONS(2228), 1, - anon_sym_var, - ACTIONS(2230), 1, - anon_sym_let, - ACTIONS(2232), 1, - anon_sym_const, - ACTIONS(2234), 1, - anon_sym_class, - ACTIONS(2236), 1, - anon_sym_async, - ACTIONS(2238), 1, - anon_sym_function, - ACTIONS(2240), 1, - anon_sym_declare, - ACTIONS(2244), 1, - anon_sym_abstract, - ACTIONS(2248), 1, - anon_sym_interface, - ACTIONS(2250), 1, - anon_sym_enum, - ACTIONS(3749), 1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 12, anon_sym_STAR, - ACTIONS(3751), 1, - anon_sym_default, - ACTIONS(3753), 1, - anon_sym_type, - ACTIONS(3755), 1, - anon_sym_EQ, - ACTIONS(3757), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 15, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3767), 1, - anon_sym_module, - ACTIONS(3794), 1, - anon_sym_RBRACE, - STATE(1136), 1, - sym_decorator, - STATE(3633), 1, - aux_sym_export_statement_repeat1, - STATE(3748), 1, - sym_declaration, - STATE(3757), 1, - sym_internal_module, - STATE(3883), 1, - sym_export_clause, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - STATE(4569), 1, - sym_namespace_export, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3636), 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, - [22438] = 25, + anon_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, + [133031] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, - anon_sym_STAR, - ACTIONS(3776), 1, - anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, - anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3797), 1, + ACTIONS(7274), 1, anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + STATE(3841), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1381), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [22540] = 13, - ACTIONS(3), 1, + [133099] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6192), 1, + anon_sym_LBRACK, + STATE(3842), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3799), 1, - sym_identifier, - ACTIONS(3801), 1, + ACTIONS(6008), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 10, anon_sym_STAR, - ACTIONS(3807), 1, - anon_sym_LBRACE, - STATE(4510), 1, - sym_import_clause, - STATE(4571), 1, - sym_string, - STATE(4572), 1, - sym_import_require_clause, - ACTIONS(3803), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4877), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(3805), 15, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(3809), 23, + ACTIONS(4473), 24, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -146096,603 +366936,884 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22618] = 25, + anon_sym_satisfies, + [133159] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, - anon_sym_STAR, - ACTIONS(3776), 1, - anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, - anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3811), 1, + ACTIONS(7276), 1, anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + STATE(3843), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1386), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [22720] = 25, + [133227] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, - anon_sym_STAR, - ACTIONS(3776), 1, - anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, - anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3813), 1, + ACTIONS(7278), 1, anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + STATE(3844), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1377), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [22822] = 25, + [133295] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, - anon_sym_STAR, - ACTIONS(3776), 1, - anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, - anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3815), 1, + ACTIONS(7280), 1, anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + STATE(3845), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1389), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [22924] = 25, - ACTIONS(3), 1, + [133363] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7239), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3846), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(2820), 1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7131), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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, - ACTIONS(3403), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5850), 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, + [133443] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7137), 1, + anon_sym_GT_GT, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7143), 1, + anon_sym_CARET, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7153), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3847), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5852), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(7131), 2, anon_sym_STAR, - ACTIONS(3776), 1, - anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, - anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3817), 1, + anon_sym_SLASH, + ACTIONS(7133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7157), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [133541] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7282), 1, anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + STATE(3848), 1, + sym_comment, + STATE(6033), 1, + sym__property_name, + STATE(6624), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1383), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [23026] = 33, + [133609] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3849), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(2057), 1, - anon_sym_LBRACE, - ACTIONS(2224), 1, - anon_sym_namespace, - ACTIONS(2226), 1, - anon_sym_import, - ACTIONS(2228), 1, - anon_sym_var, - ACTIONS(2230), 1, - anon_sym_let, - ACTIONS(2232), 1, - anon_sym_const, - ACTIONS(2234), 1, - anon_sym_class, - ACTIONS(2236), 1, - anon_sym_async, - ACTIONS(2238), 1, - anon_sym_function, - ACTIONS(2240), 1, - anon_sym_declare, - ACTIONS(2244), 1, - anon_sym_abstract, - ACTIONS(2248), 1, - anon_sym_interface, - ACTIONS(2250), 1, - anon_sym_enum, - ACTIONS(3749), 1, + ACTIONS(4309), 40, + anon_sym_export, anon_sym_STAR, - ACTIONS(3751), 1, - anon_sym_default, - ACTIONS(3753), 1, anon_sym_type, - ACTIONS(3755), 1, - anon_sym_EQ, - ACTIONS(3757), 1, - anon_sym_as, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3767), 1, - anon_sym_module, - ACTIONS(3819), 1, - anon_sym_RBRACE, - STATE(1136), 1, - sym_decorator, - STATE(3633), 1, - aux_sym_export_statement_repeat1, - STATE(3748), 1, - sym_declaration, - STATE(3757), 1, - sym_internal_module, - STATE(3883), 1, - sym_export_clause, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - STATE(4569), 1, - sym_namespace_export, - ACTIONS(3765), 7, - sym__automatic_semicolon, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3636), 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, - [23144] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_DQUOTE, - ACTIONS(1623), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, - anon_sym_STAR, - ACTIONS(3776), 1, anon_sym_async, - ACTIONS(3780), 1, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, anon_sym_AT, - ACTIONS(3782), 1, anon_sym_static, - ACTIONS(3784), 1, anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3822), 1, - anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3786), 2, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1384), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - sym_identifier, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [23246] = 25, - ACTIONS(3), 1, + anon_sym_abstract, + [133661] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7137), 1, + anon_sym_GT_GT, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7153), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3850), 1, sym_comment, - ACTIONS(1621), 1, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5852), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(7131), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7157), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [133757] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, - anon_sym_STAR, - ACTIONS(3776), 1, - anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, - anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3824), 1, + ACTIONS(7284), 1, anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + STATE(3851), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(1384), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, - sym_string, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [133825] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7137), 1, + anon_sym_GT_GT, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7153), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3852), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7131), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7157), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 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, + [133919] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4728), 1, + anon_sym_EQ, + ACTIONS(6192), 1, + anon_sym_LBRACK, + STATE(3853), 1, + sym_comment, + ACTIONS(6008), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 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(4473), 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, + [133981] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(5852), 1, + anon_sym_BANG, + ACTIONS(7137), 1, + anon_sym_GT_GT, + ACTIONS(7141), 1, + anon_sym_AMP, + ACTIONS(7143), 1, + anon_sym_CARET, + ACTIONS(7145), 1, + anon_sym_PIPE, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7153), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3854), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7131), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7133), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7139), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7157), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7159), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(7155), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5850), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [134081] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5486), 1, + anon_sym_LBRACK, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7149), 1, + anon_sym_PERCENT, + ACTIONS(7151), 1, + anon_sym_STAR_STAR, + ACTIONS(7239), 1, + anon_sym_LT, + STATE(2774), 1, + sym_type_arguments, + STATE(3855), 1, + sym_comment, + STATE(7174), 1, + sym_optional_chain, + ACTIONS(5653), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7131), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7147), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3004), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 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(5850), 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, + [134163] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(7286), 1, + anon_sym_RBRACE, + STATE(3856), 1, + sym_comment, + STATE(5837), 1, sym__property_name, + STATE(7049), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [23348] = 13, - ACTIONS(3), 1, + [134231] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4674), 1, + anon_sym_EQ, + STATE(3857), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3801), 1, + ACTIONS(4469), 13, anon_sym_STAR, - ACTIONS(3807), 1, - anon_sym_LBRACE, - ACTIONS(3826), 1, - sym_identifier, - STATE(4376), 1, - sym_import_clause, - STATE(4378), 1, - sym_string, - STATE(4380), 1, - sym_import_require_clause, - ACTIONS(3828), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4877), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(3805), 15, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(3809), 23, - sym__automatic_semicolon, + ACTIONS(4473), 26, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -146708,1261 +367829,1429 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23426] = 33, + anon_sym_satisfies, + anon_sym_implements, + [134287] = 14, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5326), 1, + anon_sym_STAR, + ACTIONS(5328), 1, + anon_sym_async, + ACTIONS(7288), 1, + anon_sym_readonly, + STATE(3858), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(2057), 1, - anon_sym_LBRACE, - ACTIONS(2224), 1, + STATE(4719), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5330), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 26, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(2226), 1, - anon_sym_import, - ACTIONS(2228), 1, - anon_sym_var, - ACTIONS(2230), 1, + anon_sym_from, anon_sym_let, - ACTIONS(2232), 1, - anon_sym_const, - ACTIONS(2234), 1, - anon_sym_class, - ACTIONS(2236), 1, - anon_sym_async, - ACTIONS(2238), 1, - anon_sym_function, - ACTIONS(2240), 1, + anon_sym_of, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_declare, - ACTIONS(2244), 1, - anon_sym_abstract, - ACTIONS(2248), 1, - anon_sym_interface, - ACTIONS(2250), 1, - anon_sym_enum, - ACTIONS(3749), 1, - anon_sym_STAR, - ACTIONS(3751), 1, - anon_sym_default, - ACTIONS(3753), 1, - anon_sym_type, - ACTIONS(3755), 1, - anon_sym_EQ, - ACTIONS(3757), 1, - anon_sym_as, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3767), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, - ACTIONS(3830), 1, - anon_sym_RBRACE, - STATE(1136), 1, - sym_decorator, - STATE(3633), 1, - aux_sym_export_statement_repeat1, - STATE(3748), 1, - sym_declaration, - STATE(3757), 1, - sym_internal_module, - STATE(3883), 1, - sym_export_clause, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - STATE(4569), 1, - sym_namespace_export, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3636), 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, - [23544] = 25, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [134358] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, + ACTIONS(5172), 1, anon_sym_STAR, - ACTIONS(3776), 1, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5184), 1, anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, + ACTIONS(5186), 1, anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3833), 1, - anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + STATE(3859), 1, + sym_comment, + STATE(4790), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, + ACTIONS(5188), 2, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1384), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(4409), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [23646] = 25, + [134429] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, + ACTIONS(5296), 1, anon_sym_STAR, - ACTIONS(3776), 1, + ACTIONS(5298), 1, anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, + ACTIONS(5300), 1, anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3835), 1, - anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + STATE(3860), 1, + sym_comment, + STATE(4775), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, + ACTIONS(5302), 2, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1367), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(4409), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [23748] = 25, + [134500] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, + ACTIONS(5318), 1, anon_sym_STAR, - ACTIONS(3776), 1, + ACTIONS(5320), 1, anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, + ACTIONS(5322), 1, anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3837), 1, - anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + STATE(3861), 1, + sym_comment, + STATE(4765), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, + ACTIONS(5324), 2, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1384), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(4409), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [23850] = 25, - ACTIONS(3), 1, + [134571] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3862), 1, sym_comment, - ACTIONS(3842), 1, + ACTIONS(6299), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(7290), 13, anon_sym_STAR, - ACTIONS(3845), 1, - anon_sym_RBRACE, - ACTIONS(3847), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7293), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3850), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [134626] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7296), 1, + sym__automatic_semicolon, + STATE(3863), 1, + sym_comment, + ACTIONS(2368), 38, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_catch, + anon_sym_finally, anon_sym_async, - ACTIONS(3853), 1, - anon_sym_DASH, - ACTIONS(3856), 1, - anon_sym_DQUOTE, - ACTIONS(3859), 1, - anon_sym_SQUOTE, - ACTIONS(3865), 1, + anon_sym_function, + sym_identifier, anon_sym_AT, - ACTIONS(3868), 1, anon_sym_static, - ACTIONS(3871), 1, anon_sym_readonly, - ACTIONS(3877), 1, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(3883), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - ACTIONS(3886), 1, - anon_sym_abstract, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3862), 2, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [134679] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_STAR, + ACTIONS(5290), 1, + anon_sym_async, + ACTIONS(7298), 1, + anon_sym_readonly, + STATE(3864), 1, + sym_comment, + STATE(4732), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3874), 2, + ACTIONS(5294), 2, anon_sym_get, anon_sym_set, - ACTIONS(3880), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1384), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3839), 17, + ACTIONS(4409), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [23952] = 25, + [134750] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, + ACTIONS(5336), 1, anon_sym_STAR, - ACTIONS(3776), 1, + ACTIONS(5338), 1, anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, + ACTIONS(5356), 1, anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3889), 1, - anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + STATE(3865), 1, + sym_comment, + STATE(4707), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, + ACTIONS(5340), 2, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1384), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(4409), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [24054] = 25, + [134821] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, + ACTIONS(5364), 1, anon_sym_STAR, - ACTIONS(3776), 1, + ACTIONS(5366), 1, anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, + ACTIONS(7300), 1, anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3891), 1, - anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + STATE(3866), 1, + sym_comment, + STATE(4705), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, + ACTIONS(5368), 2, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1384), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(4409), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [24156] = 25, + [134892] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, + ACTIONS(5207), 1, anon_sym_STAR, - ACTIONS(3776), 1, + ACTIONS(5211), 1, anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, + ACTIONS(5213), 1, anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3893), 1, - anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + STATE(3867), 1, + sym_comment, + STATE(4733), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, + ACTIONS(5215), 2, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1378), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(4409), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [24258] = 33, - ACTIONS(3), 1, + [134963] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(6192), 1, + anon_sym_LBRACK, + STATE(3868), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(2057), 1, - anon_sym_LBRACE, - ACTIONS(2224), 1, - anon_sym_namespace, - ACTIONS(2226), 1, - anon_sym_import, - ACTIONS(2228), 1, - anon_sym_var, - ACTIONS(2230), 1, - anon_sym_let, - ACTIONS(2232), 1, - anon_sym_const, - ACTIONS(2234), 1, - anon_sym_class, - ACTIONS(2236), 1, - anon_sym_async, - ACTIONS(2238), 1, - anon_sym_function, - ACTIONS(2240), 1, - anon_sym_declare, - ACTIONS(2244), 1, - anon_sym_abstract, - ACTIONS(2248), 1, - anon_sym_interface, - ACTIONS(2250), 1, - anon_sym_enum, - ACTIONS(3749), 1, + ACTIONS(6008), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6195), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 10, anon_sym_STAR, - ACTIONS(3751), 1, - anon_sym_default, - ACTIONS(3753), 1, - anon_sym_type, - ACTIONS(3755), 1, - anon_sym_EQ, - ACTIONS(3757), 1, + 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(4473), 22, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3767), 1, - anon_sym_module, - ACTIONS(3895), 1, - anon_sym_RBRACE, - STATE(1136), 1, - sym_decorator, - STATE(3633), 1, - aux_sym_export_statement_repeat1, - STATE(3748), 1, - sym_declaration, - STATE(3757), 1, - sym_internal_module, - STATE(3883), 1, - sym_export_clause, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - STATE(4569), 1, - sym_namespace_export, - ACTIONS(3765), 7, - sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3636), 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, - [24376] = 25, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [135024] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2820), 1, - anon_sym_DASH, - ACTIONS(3403), 1, - anon_sym_LBRACK, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3772), 1, - anon_sym_STAR, - ACTIONS(3776), 1, + ACTIONS(2939), 1, anon_sym_async, - ACTIONS(3780), 1, - anon_sym_AT, - ACTIONS(3782), 1, - anon_sym_static, - ACTIONS(3784), 1, + ACTIONS(2941), 1, anon_sym_readonly, - ACTIONS(3788), 1, - anon_sym_declare, - ACTIONS(3790), 1, - anon_sym_abstract, - ACTIONS(3898), 1, - anon_sym_RBRACE, - STATE(2404), 1, - sym_method_definition, - STATE(2446), 1, - sym_accessibility_modifier, - STATE(2490), 1, - sym_override_modifier, - STATE(3973), 1, - sym_method_signature, - ACTIONS(3778), 2, + ACTIONS(5219), 1, + anon_sym_LBRACK, + ACTIONS(5286), 1, + anon_sym_STAR, + STATE(3869), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3786), 2, + ACTIONS(2943), 2, anon_sym_get, anon_sym_set, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(1384), 3, - sym_decorator, - sym_class_static_block, - aux_sym_class_body_repeat1, - STATE(2911), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4075), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(3393), 17, + ACTIONS(2934), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [24478] = 19, + [135095] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3794), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3904), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3906), 1, - anon_sym_async, - ACTIONS(3910), 1, - anon_sym_readonly, - STATE(2480), 1, - sym_override_modifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3908), 2, + ACTIONS(7206), 1, + anon_sym_STAR, + STATE(3870), 1, + sym_comment, + STATE(5705), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3912), 2, + ACTIONS(7302), 2, anon_sym_get, anon_sym_set, - STATE(2980), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3393), 22, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [24567] = 19, - ACTIONS(3), 1, + [135162] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3871), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3759), 1, + ACTIONS(2428), 3, anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(7304), 13, anon_sym_STAR, - ACTIONS(3902), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7307), 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, + [135217] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4657), 1, + anon_sym_COMMA, + ACTIONS(4692), 1, + anon_sym_RBRACK, + ACTIONS(4947), 1, anon_sym_EQ, - ACTIONS(3904), 1, + STATE(3872), 1, + sym_comment, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3906), 1, - anon_sym_async, - ACTIONS(3910), 1, - anon_sym_readonly, - STATE(2480), 1, - sym_override_modifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3908), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [135276] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3873), 1, + sym_comment, + STATE(6331), 1, + sym__property_name, + STATE(7429), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_get, - anon_sym_set, - STATE(2980), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3393), 22, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [24656] = 19, - ACTIONS(3), 1, + [135341] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3874), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3759), 1, + ACTIONS(6369), 3, anon_sym_COMMA, - ACTIONS(3895), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(7310), 13, anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(3906), 1, - anon_sym_async, - ACTIONS(3910), 1, - anon_sym_readonly, - STATE(2480), 1, - sym_override_modifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(3908), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_get, - anon_sym_set, - STATE(2980), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7313), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [135396] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6357), 1, + anon_sym_LBRACK, + STATE(3875), 1, + sym_comment, + ACTIONS(6360), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5559), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4469), 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3393), 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, + [135455] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7316), 1, + sym__automatic_semicolon, + STATE(3876), 1, + sym_comment, + ACTIONS(2285), 38, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_catch, + anon_sym_finally, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [24745] = 19, - ACTIONS(3), 1, + anon_sym_enum, + [135508] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6192), 1, + anon_sym_LBRACK, + STATE(3877), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3759), 1, + ACTIONS(6195), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6008), 3, anon_sym_COMMA, - ACTIONS(3762), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4469), 11, anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3904), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, + [135567] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6228), 1, + anon_sym_LBRACK, + STATE(3878), 1, + sym_comment, + ACTIONS(6231), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5745), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6184), 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(6186), 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, + [135626] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3906), 1, + ACTIONS(6697), 1, + anon_sym_STAR, + ACTIONS(6701), 1, anon_sym_async, - ACTIONS(3910), 1, + ACTIONS(7318), 1, anon_sym_readonly, - STATE(2480), 1, - sym_override_modifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3908), 2, + STATE(3879), 1, + sym_comment, + STATE(5573), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3912), 2, + ACTIONS(6699), 2, anon_sym_get, anon_sym_set, - STATE(2980), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3393), 22, + ACTIONS(2934), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [24834] = 19, - ACTIONS(3), 1, + [135697] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3880), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3759), 1, + ACTIONS(2484), 3, anon_sym_COMMA, - ACTIONS(3769), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(7320), 13, anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(3906), 1, - anon_sym_async, - ACTIONS(3910), 1, - anon_sym_readonly, - STATE(2480), 1, - sym_override_modifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3908), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_get, - anon_sym_set, - STATE(2980), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7323), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [135752] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3881), 1, + sym_comment, + ACTIONS(2408), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, + ACTIONS(7326), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3393), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [24923] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7329), 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, + [135807] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3904), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3906), 1, + ACTIONS(5288), 1, + anon_sym_STAR, + ACTIONS(5290), 1, anon_sym_async, - ACTIONS(3910), 1, + ACTIONS(7332), 1, anon_sym_readonly, - STATE(2480), 1, - sym_override_modifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3908), 2, + STATE(3882), 1, + sym_comment, + STATE(4729), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3912), 2, + ACTIONS(5294), 2, anon_sym_get, anon_sym_set, - STATE(2980), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3393), 22, + ACTIONS(4409), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [25012] = 15, - ACTIONS(3), 1, + [135878] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4680), 1, + anon_sym_EQ, + STATE(3883), 1, sym_comment, - ACTIONS(1412), 1, + ACTIONS(4469), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, + [135933] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3769), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3916), 2, + ACTIONS(7334), 1, + anon_sym_STAR, + STATE(3884), 1, + sym_comment, + STATE(5543), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3918), 2, + ACTIONS(7336), 2, anon_sym_get, anon_sym_set, - STATE(3529), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 25, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -147977,187 +369266,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [25092] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(2057), 1, - anon_sym_LBRACE, - ACTIONS(2224), 1, - anon_sym_namespace, - ACTIONS(2226), 1, - anon_sym_import, - ACTIONS(2228), 1, - anon_sym_var, - ACTIONS(2230), 1, - anon_sym_let, - ACTIONS(2232), 1, - anon_sym_const, - ACTIONS(2234), 1, - anon_sym_class, - ACTIONS(2236), 1, - anon_sym_async, - ACTIONS(2238), 1, - anon_sym_function, - ACTIONS(2240), 1, - anon_sym_declare, - ACTIONS(2244), 1, - anon_sym_abstract, - ACTIONS(2248), 1, - anon_sym_interface, - ACTIONS(2250), 1, - anon_sym_enum, - ACTIONS(3749), 1, - anon_sym_STAR, - ACTIONS(3751), 1, - anon_sym_default, - ACTIONS(3753), 1, - anon_sym_type, - ACTIONS(3757), 1, - anon_sym_as, - ACTIONS(3767), 1, - anon_sym_module, - ACTIONS(3920), 1, - anon_sym_EQ, - STATE(1136), 1, - sym_decorator, - STATE(3633), 1, - aux_sym_export_statement_repeat1, - STATE(3748), 1, - sym_declaration, - STATE(3757), 1, - sym_internal_module, - STATE(3883), 1, - sym_export_clause, - STATE(4569), 1, - sym_namespace_export, - ACTIONS(3765), 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(3636), 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, - [25200] = 16, + [136000] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3904), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3922), 1, + ACTIONS(5404), 1, anon_sym_STAR, - ACTIONS(3924), 1, - anon_sym_LBRACE, - ACTIONS(3926), 1, + ACTIONS(5406), 1, anon_sym_async, - ACTIONS(3930), 1, + ACTIONS(7338), 1, anon_sym_readonly, - STATE(2458), 1, - sym_statement_block, - STATE(2503), 1, - sym_override_modifier, - ACTIONS(3928), 2, + STATE(3885), 1, + sym_comment, + STATE(4711), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3932), 2, + ACTIONS(5408), 2, anon_sym_get, anon_sym_set, - STATE(2951), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 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(3393), 22, + ACTIONS(4409), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [25282] = 3, - ACTIONS(3), 1, + [136071] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5559), 1, + anon_sym_extends, + STATE(3886), 1, sym_comment, - ACTIONS(1671), 14, + ACTIONS(6357), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(6360), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4469), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4473), 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, + [136130] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7099), 1, + anon_sym_COMMA, + STATE(3887), 1, + sym_comment, + ACTIONS(5836), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_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(1673), 34, + ACTIONS(5838), 25, 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, + [136185] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3888), 1, + sym_comment, + ACTIONS(6245), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, + ACTIONS(7340), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7343), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -148178,57 +369478,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [25338] = 15, - ACTIONS(3), 1, + [136240] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3889), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3759), 1, + ACTIONS(6222), 3, anon_sym_COMMA, - ACTIONS(3762), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(7346), 13, anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7349), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3916), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [136295] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5394), 1, + anon_sym_STAR, + ACTIONS(5396), 1, + anon_sym_async, + ACTIONS(7352), 1, + anon_sym_readonly, + STATE(3890), 1, + sym_comment, + STATE(4800), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3918), 2, + ACTIONS(5398), 2, anon_sym_get, anon_sym_set, - STATE(3529), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 25, + ACTIONS(4409), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -148240,61 +369578,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [25418] = 16, + [136366] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7354), 1, + anon_sym_LBRACE, + ACTIONS(7356), 1, + anon_sym_DOT, + STATE(3891), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3906), 1, - anon_sym_async, - ACTIONS(3934), 1, - anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3908), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_get, - anon_sym_set, - STATE(2980), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3393), 24, + STATE(4148), 1, + sym_statement_block, + ACTIONS(2318), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -148306,43 +369627,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [25500] = 3, - ACTIONS(3), 1, + anon_sym_enum, + [136423] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3892), 1, sym_comment, - ACTIONS(1647), 14, + ACTIONS(5832), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5836), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1649), 34, - sym__automatic_semicolon, + ACTIONS(5838), 24, 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_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -148362,75 +369683,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [25556] = 29, + [136478] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(13), 1, - anon_sym_AT, - ACTIONS(558), 1, - anon_sym_var, - ACTIONS(3664), 1, - sym_identifier, - ACTIONS(3668), 1, - anon_sym_default, - ACTIONS(3672), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5278), 1, + anon_sym_STAR, + ACTIONS(5280), 1, anon_sym_async, - ACTIONS(3674), 1, - anon_sym_function, - ACTIONS(3676), 1, + ACTIONS(5282), 1, anon_sym_readonly, - ACTIONS(3678), 1, - anon_sym_property, - ACTIONS(3680), 1, - anon_sym_signal, - ACTIONS(3682), 1, - anon_sym_required, - ACTIONS(3684), 1, - anon_sym_component, - ACTIONS(3686), 1, - anon_sym_enum, - STATE(2652), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(2710), 1, - sym_ui_object_definition_binding, - STATE(2715), 1, - sym_ui_binding, - STATE(2718), 1, - sym_function_declaration, - STATE(2719), 1, - sym_ui_property, - STATE(2723), 1, - sym__qml_enum_declaration, - STATE(2724), 1, - sym_ui_required, - STATE(2734), 1, - sym_ui_signal, - STATE(2737), 1, - sym_ui_object_definition, - STATE(2739), 1, - sym_ui_inline_component, - STATE(2740), 1, - sym_generator_function_declaration, - STATE(2742), 1, - sym_variable_declaration, - STATE(2770), 1, - sym_ui_annotation, - STATE(3840), 1, - sym_ui_nested_identifier, - STATE(3429), 2, - sym_ui_property_modifier, - aux_sym_ui_property_repeat1, - ACTIONS(3666), 20, + STATE(3893), 1, + sym_comment, + STATE(4736), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5284), 2, + anon_sym_get, + anon_sym_set, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_new, + sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -148442,56 +369734,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, anon_sym_on, - [25664] = 15, - ACTIONS(3), 1, + anon_sym_required, + anon_sym_component, + [136549] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3894), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3759), 1, + ACTIONS(2446), 3, anon_sym_COMMA, - ACTIONS(3794), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3916), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3918), 2, - anon_sym_get, - anon_sym_set, - STATE(3529), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, + ACTIONS(7358), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7361), 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, + [136604] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7354), 1, + anon_sym_LBRACE, + ACTIONS(7364), 1, + anon_sym_DOT, + STATE(3895), 1, + sym_comment, + STATE(4148), 1, + sym_statement_block, + ACTIONS(2318), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -148503,60 +369832,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [25744] = 15, + anon_sym_enum, + [136661] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7366), 1, + anon_sym_catch, + ACTIONS(7368), 1, + anon_sym_finally, + STATE(3896), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3895), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(3916), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3918), 2, - anon_sym_get, - anon_sym_set, - STATE(3529), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 25, + STATE(3988), 1, + sym_catch_clause, + STATE(4259), 1, + sym_finally_clause, + ACTIONS(3341), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -148568,60 +369883,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [25824] = 15, + anon_sym_enum, + [136720] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3897), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3916), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3918), 2, - anon_sym_get, - anon_sym_set, - STATE(3529), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, + ACTIONS(1189), 3, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 25, + ACTIONS(2590), 36, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, + anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -148633,61 +369932,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [25904] = 16, + [136773] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3895), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(5436), 1, anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3906), 1, + ACTIONS(5438), 1, anon_sym_async, - ACTIONS(3934), 1, - anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(3908), 2, + ACTIONS(7370), 1, + anon_sym_readonly, + STATE(3898), 1, + sym_comment, + STATE(4796), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3912), 2, + ACTIONS(5440), 2, anon_sym_get, anon_sym_set, - STATE(2980), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3393), 24, + ACTIONS(4409), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -148699,60 +369989,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [25986] = 15, + [136844] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3916), 2, + ACTIONS(6573), 1, + anon_sym_STAR, + ACTIONS(6575), 1, + anon_sym_async, + ACTIONS(6577), 1, + anon_sym_readonly, + STATE(3899), 1, + sym_comment, + STATE(5599), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3918), 2, + ACTIONS(6579), 2, anon_sym_get, anon_sym_set, - STATE(3529), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 25, + ACTIONS(2934), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -148764,61 +370046,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [26066] = 16, + [136915] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3794), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3906), 1, - anon_sym_async, - ACTIONS(3934), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3908), 2, + STATE(3900), 1, + sym_comment, + STATE(5541), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_get, - anon_sym_set, - STATE(2980), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3393), 24, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -148830,61 +370098,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [26148] = 16, + [136977] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3769), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3906), 1, - anon_sym_async, - ACTIONS(3934), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3908), 2, + STATE(3901), 1, + sym_comment, + STATE(5721), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_get, - anon_sym_set, - STATE(2980), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3393), 24, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -148896,61 +370150,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [26230] = 16, + [137039] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3762), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3906), 1, - anon_sym_async, - ACTIONS(3934), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3908), 2, + STATE(3902), 1, + sym_comment, + STATE(5653), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_get, - anon_sym_set, - STATE(2980), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3393), 24, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -148962,141 +370202,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [26312] = 30, - ACTIONS(3), 1, + [137101] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, + anon_sym_EQ, + ACTIONS(4750), 1, + anon_sym_in, + ACTIONS(4753), 1, + anon_sym_of, + STATE(3903), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(2057), 1, - anon_sym_LBRACE, - ACTIONS(2224), 1, - anon_sym_namespace, - ACTIONS(2226), 1, - anon_sym_import, - ACTIONS(2228), 1, - anon_sym_var, - ACTIONS(2230), 1, - anon_sym_let, - ACTIONS(2232), 1, - anon_sym_const, - ACTIONS(2234), 1, - anon_sym_class, - ACTIONS(2236), 1, - anon_sym_async, - ACTIONS(2238), 1, - anon_sym_function, - ACTIONS(2240), 1, - anon_sym_declare, - ACTIONS(2244), 1, - anon_sym_abstract, - ACTIONS(2248), 1, - anon_sym_interface, - ACTIONS(2250), 1, - anon_sym_enum, - ACTIONS(3749), 1, + ACTIONS(4469), 12, anon_sym_STAR, - ACTIONS(3751), 1, - anon_sym_default, - ACTIONS(3753), 1, - anon_sym_type, - ACTIONS(3755), 1, - anon_sym_EQ, - ACTIONS(3757), 1, + 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(4473), 23, + sym__ternary_qmark, anon_sym_as, - ACTIONS(3767), 1, - anon_sym_module, - STATE(1136), 1, - sym_decorator, - STATE(3633), 1, - aux_sym_export_statement_repeat1, - STATE(3748), 1, - sym_declaration, - STATE(3757), 1, - sym_internal_module, - STATE(3883), 1, - sym_export_clause, - STATE(4569), 1, - sym_namespace_export, - ACTIONS(3936), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3765), 7, - sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(3636), 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, - [26422] = 16, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [137159] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7214), 1, + anon_sym_finally, + STATE(3904), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3906), 1, - anon_sym_async, - ACTIONS(3934), 1, - anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3908), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_get, - anon_sym_set, - STATE(2980), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3393), 24, + STATE(4115), 1, + sym_finally_clause, + ACTIONS(3412), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -149108,106 +370299,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [26504] = 15, + anon_sym_enum, + [137213] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3904), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3942), 1, - anon_sym_static, - ACTIONS(3944), 1, - anon_sym_readonly, - ACTIONS(3946), 1, - anon_sym_abstract, - STATE(2457), 1, - sym_accessibility_modifier, - STATE(2517), 1, - sym_override_modifier, - ACTIONS(3940), 2, + STATE(3905), 1, + sym_comment, + STATE(5571), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3415), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3145), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 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(3393), 21, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [26583] = 4, + [137275] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3906), 1, sym_comment, - ACTIONS(3948), 1, - sym__automatic_semicolon, - ACTIONS(1503), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_PIPE_RBRACE, - ACTIONS(1497), 34, + ACTIONS(2384), 38, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_from, anon_sym_var, + anon_sym_let, anon_sym_else, anon_sym_of, - anon_sym_while, + anon_sym_DOT, anon_sym_async, anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -149223,57 +370397,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, anon_sym_enum, - [26640] = 13, + [137325] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3916), 2, + ACTIONS(5535), 1, + anon_sym_readonly, + STATE(3907), 1, + sym_comment, + STATE(5067), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - STATE(3529), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 27, + ACTIONS(4409), 29, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -149287,117 +370451,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [26715] = 16, + [137389] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3904), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3906), 1, - anon_sym_async, - ACTIONS(3910), 1, - anon_sym_readonly, - STATE(2480), 1, - sym_override_modifier, - ACTIONS(3908), 2, + STATE(3908), 1, + sym_comment, + STATE(5724), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3936), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2980), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3393), 22, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [26796] = 13, + [137451] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3909), 1, sym_comment, - ACTIONS(1412), 1, + ACTIONS(4319), 38, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3762), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [137501] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3916), 2, + STATE(3910), 1, + sym_comment, + STATE(5573), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(3529), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 27, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -149414,40 +370601,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [26871] = 3, + [137563] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1539), 13, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, + ACTIONS(2251), 1, anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3911), 1, + sym_comment, + STATE(5508), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - anon_sym_PIPE_RBRACE, - ACTIONS(1537), 34, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, anon_sym_from, - anon_sym_var, - anon_sym_else, + anon_sym_let, anon_sym_of, - anon_sym_while, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -149464,54 +370653,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - anon_sym_enum, - [26926] = 13, + [137625] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3769), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3916), 2, + STATE(3912), 1, + sym_comment, + STATE(5636), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(3529), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 27, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -149528,52 +370705,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [27001] = 13, + [137687] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3794), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3916), 2, + STATE(3913), 1, + sym_comment, + STATE(5599), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(3529), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 27, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -149590,40 +370757,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [27076] = 3, + [137749] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1709), 13, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, + ACTIONS(2498), 1, anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + STATE(3914), 1, + sym_comment, + STATE(5067), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - anon_sym_PIPE_RBRACE, - ACTIONS(1707), 34, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, anon_sym_from, - anon_sym_var, - anon_sym_else, + anon_sym_let, anon_sym_of, - anon_sym_while, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -149640,43 +370809,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - anon_sym_enum, - [27131] = 4, + [137811] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3950), 1, - sym__automatic_semicolon, - ACTIONS(1539), 10, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, + ACTIONS(2251), 1, anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3915), 1, + sym_comment, + STATE(5644), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1537), 36, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, anon_sym_from, - anon_sym_var, - anon_sym_else, + anon_sym_let, anon_sym_of, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -149693,54 +370861,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - anon_sym_enum, - [27188] = 13, + [137873] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3895), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(3916), 2, + STATE(3916), 1, + sym_comment, + STATE(5579), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(3529), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 27, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -149757,42 +370913,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [27263] = 4, + [137935] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2734), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7372), 1, sym__automatic_semicolon, - ACTIONS(1503), 10, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1497), 36, + STATE(3917), 1, + sym_comment, + ACTIONS(2368), 37, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, anon_sym_var, + anon_sym_let, anon_sym_else, anon_sym_of, - anon_sym_while, - anon_sym_catch, anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -149808,44 +370959,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, anon_sym_enum, - [27320] = 4, + [137987] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3918), 1, sym_comment, - ACTIONS(3952), 1, - sym__automatic_semicolon, - ACTIONS(1539), 12, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_PIPE_RBRACE, - ACTIONS(1537), 34, + ACTIONS(2396), 38, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_from, anon_sym_var, + anon_sym_let, anon_sym_else, anon_sym_of, - anon_sym_while, + anon_sym_DOT, anon_sym_async, anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -149861,111 +371005,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, anon_sym_enum, - [27377] = 7, - ACTIONS(3), 1, + [138037] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6278), 1, + anon_sym_EQ, + ACTIONS(6282), 1, + anon_sym_of, + ACTIONS(7079), 1, + anon_sym_in, + STATE(3919), 1, sym_comment, - ACTIONS(3956), 1, - anon_sym_LT, - ACTIONS(3958), 1, - anon_sym_DOT, - ACTIONS(3960), 1, - anon_sym_is, - STATE(1602), 1, - sym_type_arguments, - ACTIONS(3954), 12, + ACTIONS(6276), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3353), 31, + ACTIONS(6280), 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_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [27440] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3956), 1, - anon_sym_LT, - ACTIONS(3966), 1, anon_sym_LPAREN, - ACTIONS(3968), 1, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(3972), 1, anon_sym_QMARK_DOT, - STATE(1512), 1, - sym_type_arguments, - STATE(1701), 1, - sym_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(3962), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3964), 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, @@ -149983,49 +371062,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [27511] = 13, + [138095] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3916), 2, - sym_number, - sym_private_property_identifier, - STATE(3529), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7374), 1, sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 27, + STATE(3920), 1, + sym_comment, + ACTIONS(2368), 37, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, + anon_sym_catch, + anon_sym_finally, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -150041,122 +371102,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [27586] = 19, + anon_sym_enum, + [138147] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_async, - ACTIONS(2093), 1, - anon_sym_readonly, - ACTIONS(2097), 1, - anon_sym_override, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(3976), 1, - anon_sym_RBRACE, - STATE(2488), 1, - sym_override_modifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [27672] = 12, - ACTIONS(3), 1, + STATE(3921), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3916), 2, + STATE(5128), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3918), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3936), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3529), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 25, + ACTIONS(4409), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -150168,169 +371155,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [27744] = 14, + [138209] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3904), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3978), 1, - anon_sym_STAR, - ACTIONS(3980), 1, - anon_sym_async, - ACTIONS(3984), 1, + ACTIONS(7376), 1, anon_sym_readonly, - STATE(2505), 1, - sym_override_modifier, - ACTIONS(3982), 2, + STATE(3922), 1, + sym_comment, + STATE(5136), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3986), 2, - anon_sym_get, - anon_sym_set, - STATE(2971), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 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(3393), 22, + ACTIONS(4409), 29, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [27820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1649), 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, - [27874] = 13, + [138273] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3906), 1, - anon_sym_async, - ACTIONS(3934), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3908), 2, + STATE(3923), 1, + sym_comment, + STATE(5620), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3936), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2980), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3393), 24, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -150342,232 +371260,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [27948] = 14, + [138335] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3904), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3988), 1, - anon_sym_STAR, - ACTIONS(3990), 1, - anon_sym_async, - ACTIONS(3994), 1, + ACTIONS(7378), 1, anon_sym_readonly, - STATE(2491), 1, - sym_override_modifier, - ACTIONS(3992), 2, + STATE(3924), 1, + sym_comment, + STATE(5047), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(3996), 2, - anon_sym_get, - anon_sym_set, - STATE(2959), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 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(3393), 22, + ACTIONS(4409), 29, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [28024] = 3, + [138399] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3925), 1, sym_comment, - ACTIONS(1671), 14, + ACTIONS(4315), 38, + anon_sym_export, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(1673), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [28078] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(2091), 1, anon_sym_async, - ACTIONS(2093), 1, - anon_sym_readonly, - ACTIONS(2097), 1, - anon_sym_override, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(3998), 1, - anon_sym_RBRACE, - STATE(2488), 1, - sym_override_modifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, + anon_sym_new, sym_number, + sym_identifier, sym_private_property_identifier, - ACTIONS(2095), 2, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [28164] = 14, + anon_sym_abstract, + [138449] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2804), 1, - anon_sym_LBRACE, - ACTIONS(3554), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(4002), 1, - anon_sym_COMMA, - ACTIONS(4004), 1, - anon_sym_RBRACE, - STATE(4271), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4006), 2, + STATE(3926), 1, + sym_comment, + STATE(5654), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4245), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4731), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4732), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4000), 27, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -150583,271 +371410,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_number, anon_sym_boolean, anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [28240] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3960), 1, - anon_sym_is, - ACTIONS(4008), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4010), 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, - [28296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1509), 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, - [28350] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3956), 1, - anon_sym_LT, - STATE(1631), 1, - sym_type_arguments, - ACTIONS(4012), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4014), 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, - [28408] = 14, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [138511] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3904), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(4016), 1, - anon_sym_STAR, - ACTIONS(4018), 1, - anon_sym_async, - ACTIONS(4022), 1, - anon_sym_readonly, - STATE(2495), 1, - sym_override_modifier, - ACTIONS(4020), 2, + STATE(3927), 1, + sym_comment, + STATE(5634), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(4024), 2, - anon_sym_get, - anon_sym_set, - STATE(2981), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 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(3393), 22, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [28484] = 14, + [138573] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2804), 1, - anon_sym_LBRACE, - ACTIONS(3554), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(4002), 1, - anon_sym_COMMA, - ACTIONS(4028), 1, - anon_sym_RBRACE, - STATE(4194), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4006), 2, + STATE(3928), 1, + sym_comment, + STATE(5147), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - STATE(4204), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4731), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4732), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4026), 27, + ACTIONS(4409), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -150864,645 +371515,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [28560] = 19, + [138635] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_async, - ACTIONS(2093), 1, - anon_sym_readonly, - ACTIONS(2097), 1, - anon_sym_override, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(4030), 1, - anon_sym_RBRACE, - STATE(2488), 1, - sym_override_modifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, + STATE(3929), 1, + sym_comment, + STATE(5665), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 22, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [28646] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3956), 1, - anon_sym_LT, - ACTIONS(3958), 1, - anon_sym_DOT, - STATE(1602), 1, - sym_type_arguments, - ACTIONS(3954), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3353), 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, - [28706] = 19, + [138697] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2043), 1, - anon_sym_RBRACE, - ACTIONS(2091), 1, - anon_sym_async, - ACTIONS(2093), 1, - anon_sym_readonly, - ACTIONS(2097), 1, - anon_sym_override, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - STATE(2488), 1, - sym_override_modifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, + STATE(3930), 1, + sym_comment, + STATE(5663), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 22, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [28792] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(4032), 1, - anon_sym_DOT, - STATE(1611), 1, - sym_arguments, - ACTIONS(3373), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3365), 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, - [28852] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(4038), 1, - anon_sym_DOT, - STATE(1598), 1, - sym_arguments, - ACTIONS(4034), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4036), 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, - [28912] = 19, + [138759] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_RBRACE, - ACTIONS(2091), 1, - anon_sym_async, - ACTIONS(2093), 1, - anon_sym_readonly, - ACTIONS(2097), 1, - anon_sym_override, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - STATE(2488), 1, - sym_override_modifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, + STATE(3931), 1, + sym_comment, + STATE(5097), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 22, + ACTIONS(4409), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [28998] = 6, + [138821] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(4044), 1, - anon_sym_DOT, - STATE(1576), 1, - sym_arguments, - ACTIONS(4040), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4042), 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, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [29058] = 5, - ACTIONS(3), 1, + ACTIONS(7380), 1, + anon_sym_readonly, + STATE(3932), 1, sym_comment, - ACTIONS(1501), 1, - anon_sym_EQ, - ACTIONS(4046), 1, - sym__automatic_semicolon, - ACTIONS(1497), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1503), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(5009), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 29, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [29116] = 19, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [138885] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, - anon_sym_RBRACE, - ACTIONS(2091), 1, - anon_sym_async, - ACTIONS(2093), 1, - anon_sym_readonly, - ACTIONS(2097), 1, - anon_sym_override, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - STATE(2488), 1, - sym_override_modifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, + STATE(3933), 1, + sym_comment, + STATE(5047), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 22, + ACTIONS(4409), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [29202] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4048), 1, - anon_sym_LBRACE, - STATE(1665), 1, - sym_statement_block, - ACTIONS(1489), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1493), 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, - [29260] = 12, + [138947] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3904), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(4050), 1, - anon_sym_STAR, - ACTIONS(4052), 1, - anon_sym_async, - ACTIONS(4058), 1, - anon_sym_abstract, - ACTIONS(4054), 2, + STATE(3934), 1, + sym_comment, + STATE(5549), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(4056), 2, - anon_sym_get, - anon_sym_set, - STATE(2914), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 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(3393), 24, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -151514,275 +371828,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [29332] = 14, + [139009] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3904), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(4050), 1, - anon_sym_STAR, - ACTIONS(4052), 1, - anon_sym_async, - ACTIONS(4060), 1, - anon_sym_readonly, - STATE(2482), 1, - sym_override_modifier, - ACTIONS(4054), 2, + STATE(3935), 1, + sym_comment, + STATE(5600), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(4056), 2, - anon_sym_get, - anon_sym_set, - STATE(2914), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 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(3393), 22, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [29408] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4048), 1, - anon_sym_LBRACE, - ACTIONS(4062), 1, - anon_sym_DOT, - STATE(1665), 1, - sym_statement_block, - ACTIONS(1489), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1493), 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, - [29468] = 4, + [139071] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3936), 1, sym_comment, - ACTIONS(4064), 1, - anon_sym_is, - ACTIONS(4012), 13, + ACTIONS(4298), 38, + anon_sym_export, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4014), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [29524] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(2041), 1, - anon_sym_RBRACE, - ACTIONS(2091), 1, anon_sym_async, - ACTIONS(2093), 1, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, anon_sym_readonly, - ACTIONS(2097), 1, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [139121] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - STATE(2488), 1, - sym_override_modifier, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, + STATE(3937), 1, + sym_comment, + STATE(5545), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 22, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + 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_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [29610] = 3, + [139183] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3938), 1, sym_comment, - ACTIONS(1539), 10, + ACTIONS(4313), 38, + anon_sym_export, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, anon_sym_LBRACK, - anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, sym_number, + sym_identifier, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1537), 36, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [139233] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3939), 1, + sym_comment, + ACTIONS(2368), 38, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, anon_sym_var, + anon_sym_let, anon_sym_else, anon_sym_of, - anon_sym_while, anon_sym_catch, anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -151798,57 +372069,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, anon_sym_enum, - [29664] = 12, + [139283] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3922), 1, - anon_sym_STAR, - ACTIONS(3926), 1, - anon_sym_async, - ACTIONS(3934), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(4066), 1, - anon_sym_abstract, - ACTIONS(3928), 2, + STATE(3940), 1, + sym_comment, + STATE(5543), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3932), 2, - anon_sym_get, - anon_sym_set, - STATE(2951), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 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(3393), 24, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -151860,42 +372122,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [29736] = 3, + [139345] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1709), 10, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, + ACTIONS(2498), 1, anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(7382), 1, + anon_sym_readonly, + STATE(3941), 1, + sym_comment, + STATE(5131), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(1707), 36, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 29, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, anon_sym_from, - anon_sym_var, - anon_sym_else, + anon_sym_let, anon_sym_of, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -151909,209 +372175,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - anon_sym_enum, - [29790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4068), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4070), 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, - [29843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4072), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4074), 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, - [29896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2121), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2123), 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, - [29949] = 15, + [139409] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, + STATE(3942), 1, + sym_comment, + STATE(5729), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 25, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [139471] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3943), 1, + sym_comment, + ACTIONS(2356), 38, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_catch, + anon_sym_finally, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -152123,138 +372272,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [30026] = 3, - ACTIONS(3), 1, + anon_sym_enum, + [139521] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4728), 1, + anon_sym_EQ, + STATE(3944), 1, sym_comment, - ACTIONS(4076), 13, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4078), 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, - [30079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4080), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4082), 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, - [30132] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4084), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4086), 32, + ACTIONS(4473), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, @@ -152276,55 +372327,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [30185] = 16, + [139575] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_RBRACE, - ACTIONS(2091), 1, - anon_sym_async, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, + STATE(3945), 1, + sym_comment, + STATE(5029), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 24, + ACTIONS(4409), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -152336,104 +372373,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [30264] = 5, + [139637] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(3375), 1, - anon_sym_LPAREN, - STATE(2836), 1, - sym_arguments, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 30, - sym__ternary_qmark, - anon_sym_as, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7384), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(7386), 1, + anon_sym_DOT, + STATE(3946), 1, + sym_comment, + STATE(4286), 1, + sym_statement_block, + ACTIONS(2318), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [30321] = 10, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [139693] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(4088), 1, - anon_sym_STAR, - ACTIONS(4090), 2, + STATE(3947), 1, + sym_comment, + STATE(5607), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(4092), 2, - anon_sym_get, - anon_sym_set, - STATE(3520), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 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(2089), 25, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -152445,57 +372474,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [30388] = 15, + [139755] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7354), 1, + anon_sym_LBRACE, + STATE(3948), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(3976), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 25, + STATE(4148), 1, + sym_statement_block, + ACTIONS(2318), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -152507,57 +372521,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [30465] = 15, + anon_sym_enum, + [139809] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2041), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, + STATE(3949), 1, + sym_comment, + STATE(5148), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 25, + ACTIONS(4409), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -152569,57 +372574,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [30542] = 15, + [139871] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3950), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, + ACTIONS(4317), 38, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1414), 1, anon_sym_SQUOTE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(3998), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, + anon_sym_async, + anon_sym_new, sym_number, + sym_identifier, sym_private_property_identifier, - ACTIONS(2095), 2, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3399), 3, - sym_string, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [139921] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3951), 1, + sym_comment, + STATE(5705), 1, sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 25, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -152631,53 +372672,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [30619] = 11, + [139983] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3904), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(4088), 1, - anon_sym_STAR, - ACTIONS(4094), 1, - anon_sym_async, - ACTIONS(4096), 2, + STATE(3952), 1, + sym_comment, + STATE(5671), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(4098), 2, - anon_sym_get, - anon_sym_set, - STATE(2909), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 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(3393), 24, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -152689,158 +372724,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [30688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4100), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4102), 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, - [30741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4100), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4102), 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, - [30794] = 16, + [140045] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2041), 1, - anon_sym_RBRACE, - ACTIONS(2091), 1, - anon_sym_async, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, + ACTIONS(5545), 1, + anon_sym_readonly, + STATE(3953), 1, + sym_comment, + STATE(5085), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 24, + ACTIONS(4409), 29, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -152852,296 +372777,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [30873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4104), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(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, - [30926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2794), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2796), 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, - [30979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4104), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(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, - [31032] = 3, + [140109] = 7, ACTIONS(3), 1, - sym_comment, - ACTIONS(4104), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4106), 32, - sym__ternary_qmark, - anon_sym_as, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7384), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7388), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [31085] = 3, - ACTIONS(3), 1, + STATE(3954), 1, sym_comment, - ACTIONS(4108), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4110), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + STATE(4286), 1, + sym_statement_block, + ACTIONS(2318), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [31138] = 9, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [140165] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, + ACTIONS(2251), 1, anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3955), 1, + sym_comment, + STATE(5701), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1788), 27, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -153158,46 +372878,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [31203] = 9, + [140227] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, + ACTIONS(2251), 1, anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3956), 1, + sym_comment, + STATE(5720), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1806), 27, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -153214,196 +372930,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [31268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4108), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4110), 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, - [31321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4108), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4110), 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, - [31374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4112), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4114), 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, - [31427] = 9, + [140289] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3769), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, + ACTIONS(2251), 1, anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3957), 1, + sym_comment, + STATE(5722), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1788), 27, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -153420,96 +372982,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [31492] = 3, + [140351] = 11, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(7390), 1, + anon_sym_readonly, + STATE(3958), 1, sym_comment, - ACTIONS(2117), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2119), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(4997), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 29, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [31545] = 9, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [140415] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3769), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, + ACTIONS(2251), 1, anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3959), 1, + sym_comment, + STATE(5563), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1806), 27, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -153526,214 +373087,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [31610] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4120), 1, - anon_sym_AMP, - ACTIONS(4122), 1, - anon_sym_PIPE, - ACTIONS(4124), 1, - anon_sym_extends, - ACTIONS(4116), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4118), 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, - [31669] = 6, + [140477] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(4120), 1, - anon_sym_AMP, - ACTIONS(4122), 1, - anon_sym_PIPE, - ACTIONS(4124), 1, - anon_sym_extends, - ACTIONS(4126), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4128), 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, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [31728] = 3, - ACTIONS(3), 1, + ACTIONS(7392), 1, + anon_sym_readonly, + STATE(3960), 1, sym_comment, - ACTIONS(4130), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4132), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(5135), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 29, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [31781] = 16, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [140541] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_async, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(3998), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, + STATE(3961), 1, + sym_comment, + STATE(5085), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 24, + ACTIONS(4409), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -153745,207 +373192,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [31860] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4120), 1, - anon_sym_AMP, - ACTIONS(4122), 1, - anon_sym_PIPE, - ACTIONS(4124), 1, - anon_sym_extends, - ACTIONS(4130), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4132), 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, - [31919] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4120), 1, - anon_sym_AMP, - ACTIONS(4122), 1, - anon_sym_PIPE, - ACTIONS(4124), 1, - anon_sym_extends, - ACTIONS(4134), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4136), 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, - [31978] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4138), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4140), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [32035] = 12, + [140603] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(71), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(2804), 1, - anon_sym_LBRACE, - ACTIONS(3554), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(4006), 2, + STATE(3962), 1, + sym_comment, + STATE(5693), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(4144), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4404), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(4731), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - STATE(4732), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(4142), 27, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -153962,140 +373244,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [32106] = 3, - ACTIONS(3), 1, + [140665] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ, + STATE(3963), 1, sym_comment, - ACTIONS(4146), 13, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(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, - [32159] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2920), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2922), 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, - [32212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4150), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4152), 32, + ACTIONS(4473), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -154115,49 +373298,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [32265] = 10, + [140719] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2498), 1, anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3988), 1, - anon_sym_STAR, - ACTIONS(4154), 2, + ACTIONS(7394), 1, + anon_sym_readonly, + STATE(3964), 1, + sym_comment, + STATE(5121), 1, + sym__property_name, + ACTIONS(3762), 2, sym_number, sym_private_property_identifier, - ACTIONS(4156), 2, - anon_sym_get, - anon_sym_set, - STATE(3502), 3, + STATE(4876), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 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(2089), 25, + ACTIONS(4409), 29, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -154169,190 +373345,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [32332] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4160), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + [140783] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2289), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6343), 1, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [32385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4162), 13, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(7082), 1, anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(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, - [32438] = 3, - ACTIONS(3), 1, + STATE(3965), 1, sym_comment, - ACTIONS(4166), 13, + ACTIONS(2287), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_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, - [32491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4160), 32, + ACTIONS(2293), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -154372,50 +373401,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [32544] = 11, + [140841] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3934), 1, + ACTIONS(5219), 1, anon_sym_LBRACK, - ACTIONS(3988), 1, - anon_sym_STAR, - ACTIONS(3990), 1, - anon_sym_async, - ACTIONS(3992), 2, + STATE(3966), 1, + sym_comment, + STATE(5678), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3996), 2, - anon_sym_get, - anon_sym_set, - STATE(2959), 3, + STATE(5344), 2, sym_string, - sym__property_name, sym_computed_property_name, - ACTIONS(3765), 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(3393), 24, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -154427,222 +373447,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [32613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4158), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(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, - [32666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4162), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4164), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [140903] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6074), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(6114), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [32719] = 32, - ACTIONS(3), 1, + STATE(3967), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, + STATE(3619), 2, sym_template_string, sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4174), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [32830] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3966), 1, - anon_sym_LPAREN, - STATE(1748), 1, - sym_arguments, - ACTIONS(4218), 13, + ACTIONS(5597), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4220), 30, + ACTIONS(5599), 21, 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, @@ -154660,41 +373502,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [32887] = 4, + [140961] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, + ACTIONS(2251), 1, anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3968), 1, + sym_comment, + STATE(5515), 1, + sym__property_name, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(3765), 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(1806), 28, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [141023] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(7396), 1, + anon_sym_readonly, + STATE(3969), 1, + sym_comment, + STATE(5026), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 29, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -154708,41 +373602,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - [32942] = 3, - ACTIONS(3), 1, + [141087] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4734), 1, + anon_sym_EQ, + STATE(3970), 1, sym_comment, - ACTIONS(1533), 13, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1535), 32, - sym__automatic_semicolon, + ACTIONS(4473), 24, 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, @@ -154763,36 +373656,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [32995] = 3, - ACTIONS(3), 1, + [141141] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(6162), 1, + anon_sym_of, + ACTIONS(7085), 1, + anon_sym_in, + STATE(3971), 1, sym_comment, - ACTIONS(4222), 13, + ACTIONS(5695), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4224), 32, + ACTIONS(5699), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -154812,150 +373706,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [33048] = 3, + [141199] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3972), 1, + sym_comment, + STATE(5602), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [141261] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3973), 1, sym_comment, - ACTIONS(4226), 13, + ACTIONS(4323), 38, + anon_sym_export, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4228), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [33101] = 16, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [141311] = 11, ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4234), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4232), 19, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(7398), 1, + anon_sym_readonly, + STATE(3974), 1, + sym_comment, + STATE(4977), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 29, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [141375] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7400), 1, + sym__automatic_semicolon, + STATE(3975), 1, + sym_comment, + ACTIONS(2285), 37, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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, - [33180] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_catch, + anon_sym_finally, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [141427] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7402), 1, + sym__automatic_semicolon, + STATE(3976), 1, + sym_comment, + ACTIONS(2285), 37, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_finally, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [141479] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6756), 1, + sym_regex_flags, + STATE(3977), 1, sym_comment, - ACTIONS(4222), 13, + ACTIONS(6752), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, + anon_sym_of, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4224), 32, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6754), 20, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -154970,222 +373996,756 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [33233] = 3, + [141533] = 11, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, + anon_sym_LBRACK, + ACTIONS(7404), 1, + anon_sym_readonly, + STATE(3978), 1, sym_comment, - ACTIONS(4226), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4228), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(5164), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 29, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_COLON, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [141597] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [33286] = 33, + ACTIONS(7406), 1, + anon_sym_readonly, + STATE(3979), 1, + sym_comment, + STATE(5030), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 29, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [141661] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(5219), 1, + anon_sym_LBRACK, + STATE(3980), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, + STATE(5690), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5344), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [141723] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(5182), 1, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4239), 4, + ACTIONS(7408), 1, + anon_sym_readonly, + STATE(3981), 1, + sym_comment, + STATE(5082), 1, + sym__property_name, + ACTIONS(3762), 2, + sym_number, + sym_private_property_identifier, + STATE(4876), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4409), 29, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [141787] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3734), 1, + sym__automatic_semicolon, + STATE(3982), 1, + sym_comment, + ACTIONS(2285), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [33399] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [141838] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3832), 1, + sym__automatic_semicolon, + STATE(3983), 1, + sym_comment, + ACTIONS(2402), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [141889] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2420), 1, + sym__automatic_semicolon, + STATE(3984), 1, + sym_comment, + ACTIONS(2418), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [141940] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3838), 1, + sym__automatic_semicolon, + STATE(3985), 1, + sym_comment, + ACTIONS(2332), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [141991] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3840), 1, + sym__automatic_semicolon, + STATE(3986), 1, + sym_comment, + ACTIONS(2470), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [142042] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3844), 1, + sym__automatic_semicolon, + STATE(3987), 1, + sym_comment, + ACTIONS(2478), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [142093] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7368), 1, + anon_sym_finally, + STATE(3988), 1, + sym_comment, + STATE(4433), 1, + sym_finally_clause, + ACTIONS(3412), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [142146] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2330), 1, + sym__automatic_semicolon, + STATE(3989), 1, + sym_comment, + ACTIONS(2328), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [142197] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7384), 1, + anon_sym_LBRACE, + STATE(3990), 1, + sym_comment, + STATE(4286), 1, + sym_statement_block, + ACTIONS(2318), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [142250] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3940), 1, + sym__automatic_semicolon, + STATE(3991), 1, + sym_comment, + ACTIONS(2348), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [142301] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3942), 1, + sym__automatic_semicolon, + STATE(3992), 1, sym_comment, - ACTIONS(4241), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4243), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2360), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [33452] = 3, - ACTIONS(3), 1, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [142352] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5120), 1, + anon_sym_EQ, + STATE(3993), 1, sym_comment, - ACTIONS(4245), 13, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4247), 32, + ACTIONS(4473), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -155205,100 +374765,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [33505] = 3, + [142405] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7410), 1, + anon_sym_else, + STATE(3994), 1, sym_comment, - ACTIONS(3291), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3293), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + STATE(4125), 1, + sym_else_clause, + ACTIONS(3426), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [33558] = 11, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [142458] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3995), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(3978), 1, - anon_sym_STAR, - ACTIONS(3980), 1, + ACTIONS(2368), 37, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_catch, + anon_sym_finally, anon_sym_async, - ACTIONS(3982), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3986), 2, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(2971), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(3393), 24, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [142507] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3996), 1, + sym_comment, + ACTIONS(2356), 37, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, + anon_sym_catch, + anon_sym_finally, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -155310,40 +374895,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [33627] = 3, - ACTIONS(3), 1, + anon_sym_enum, + [142556] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5075), 1, + anon_sym_EQ, + STATE(3997), 1, sym_comment, - ACTIONS(4241), 13, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4243), 32, + ACTIONS(4473), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -155363,37 +374949,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [33680] = 3, + [142609] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3998), 1, + sym_comment, + ACTIONS(2368), 37, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_finally, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [142658] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5073), 1, + anon_sym_EQ, + STATE(3999), 1, sym_comment, - ACTIONS(4249), 13, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4251), 32, + ACTIONS(4473), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -155413,97 +375041,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [33733] = 13, - ACTIONS(3), 1, + [142711] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5168), 1, + anon_sym_EQ, + STATE(4000), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4257), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4253), 12, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4255), 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, - [33806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2924), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2926), 32, + ACTIONS(4473), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -155523,37 +375088,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [33859] = 3, + [142764] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7412), 1, + sym__automatic_semicolon, + STATE(4001), 1, + sym_comment, + ACTIONS(2368), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_finally, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [142815] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5164), 1, + anon_sym_EQ, + STATE(4002), 1, sym_comment, - ACTIONS(4245), 13, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4247), 32, + ACTIONS(4473), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -155573,87 +375181,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [33912] = 3, + [142868] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7414), 1, + sym__automatic_semicolon, + STATE(4003), 1, sym_comment, - ACTIONS(4260), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4262), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2368), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [33965] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [142919] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4004), 1, + sym_comment, + ACTIONS(3458), 37, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_finally, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [142968] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5152), 1, + anon_sym_EQ, + STATE(4005), 1, sym_comment, - ACTIONS(4249), 13, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4251), 32, + ACTIONS(4473), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -155673,137 +375319,444 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [34018] = 3, + [143021] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3846), 1, + sym__automatic_semicolon, + STATE(4006), 1, sym_comment, - ACTIONS(4264), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4266), 32, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(2440), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143072] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4007), 1, + sym_comment, + ACTIONS(2384), 37, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [34071] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143121] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7416), 1, + sym__automatic_semicolon, + STATE(4008), 1, sym_comment, - ACTIONS(2113), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2115), 32, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(2285), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_finally, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143172] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4009), 1, + sym_comment, + ACTIONS(2396), 37, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [34124] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143221] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4010), 1, + sym_comment, + ACTIONS(3454), 37, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_finally, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143270] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3848), 1, + sym__automatic_semicolon, + STATE(4011), 1, + sym_comment, + ACTIONS(2340), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143321] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4012), 1, + sym_comment, + ACTIONS(3446), 37, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_finally, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143370] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2358), 1, + sym__automatic_semicolon, + STATE(4013), 1, + sym_comment, + ACTIONS(2356), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143421] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2370), 1, + sym__automatic_semicolon, + STATE(4014), 1, + sym_comment, + ACTIONS(2368), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143472] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5148), 1, + anon_sym_EQ, + STATE(4015), 1, sym_comment, - ACTIONS(4249), 13, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4251), 32, + ACTIONS(4473), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -155823,90 +375776,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [34177] = 3, + [143525] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7418), 1, + sym__automatic_semicolon, + STATE(4016), 1, sym_comment, - ACTIONS(4268), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4270), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2285), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [34230] = 5, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143576] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3780), 1, + sym__automatic_semicolon, + STATE(4017), 1, + sym_comment, + ACTIONS(2422), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143627] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4018), 1, sym_comment, - ACTIONS(4272), 1, + ACTIONS(2380), 37, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_LBRACE, - STATE(1663), 1, - sym_statement_block, - ACTIONS(1489), 13, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143676] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7420), 1, + anon_sym_else, + STATE(4019), 1, + sym_comment, + STATE(4307), 1, + sym_else_clause, + ACTIONS(3426), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143729] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5077), 1, + anon_sym_EQ, + STATE(4020), 1, + sym_comment, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1493), 30, + ACTIONS(4473), 23, 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, @@ -155926,140 +376007,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [34287] = 6, + [143782] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7422), 1, + sym__automatic_semicolon, + STATE(4021), 1, sym_comment, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - anon_sym_DOT, - STATE(1663), 1, - sym_statement_block, - ACTIONS(1489), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1493), 29, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2368), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, 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, - [34346] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143833] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4022), 1, sym_comment, - ACTIONS(4120), 1, - anon_sym_AMP, - ACTIONS(4276), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4278), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2356), 37, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [34401] = 3, + anon_sym_finally, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143882] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3944), 1, + sym__automatic_semicolon, + STATE(4023), 1, + sym_comment, + ACTIONS(2388), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143933] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3778), 1, + sym__automatic_semicolon, + STATE(4024), 1, + sym_comment, + ACTIONS(2448), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [143984] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5150), 1, + anon_sym_EQ, + STATE(4025), 1, sym_comment, - ACTIONS(4280), 13, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4282), 32, + ACTIONS(4473), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -156079,95 +376237,563 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [34454] = 3, + [144037] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4026), 1, sym_comment, - ACTIONS(4284), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4286), 32, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(2376), 37, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [34507] = 10, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [144086] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3842), 1, + sym__automatic_semicolon, + STATE(4027), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3916), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3936), 2, - anon_sym_COMMA, + ACTIONS(2430), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - STATE(3529), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [144137] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3980), 1, sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 27, + STATE(4028), 1, + sym_comment, + ACTIONS(2340), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [144187] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4029), 1, + sym_comment, + ACTIONS(3476), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [144235] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4030), 1, + sym_comment, + ACTIONS(3618), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [144283] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4031), 1, + sym_comment, + ACTIONS(3526), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [144331] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4032), 1, + sym_comment, + ACTIONS(3468), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [144379] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3976), 1, + sym__automatic_semicolon, + STATE(4033), 1, + sym_comment, + ACTIONS(2430), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [144429] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3970), 1, + sym__automatic_semicolon, + STATE(4034), 1, + sym_comment, + ACTIONS(2402), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [144479] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3968), 1, + sym__automatic_semicolon, + STATE(4035), 1, + sym_comment, + ACTIONS(2422), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [144529] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4036), 1, + sym_comment, + ACTIONS(3654), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [144577] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4037), 1, + sym_comment, + ACTIONS(3656), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [144625] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4038), 1, + sym_comment, + ACTIONS(3656), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -156183,200 +376809,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [34574] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4290), 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, - [34627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4290), 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, - [34680] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4120), 1, - anon_sym_AMP, - ACTIONS(4122), 1, - anon_sym_PIPE, - ACTIONS(4124), 1, - anon_sym_extends, - ACTIONS(4284), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4286), 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, - [34739] = 9, + anon_sym_enum, + [144673] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4039), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3762), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1788), 27, + ACTIONS(3656), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -156392,97 +376853,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [34804] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4294), 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, - [34857] = 9, + anon_sym_enum, + [144721] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4040), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3895), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1788), 27, + ACTIONS(3656), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -156498,102 +376897,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [34922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4290), 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, - [34975] = 10, + anon_sym_enum, + [144769] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4041), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4050), 1, - anon_sym_STAR, - ACTIONS(4296), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4298), 2, - anon_sym_get, - anon_sym_set, - STATE(3400), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 25, + ACTIONS(3656), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -156605,53 +376941,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [35042] = 11, + anon_sym_enum, + [144817] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4042), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4050), 1, - anon_sym_STAR, - ACTIONS(4052), 1, - anon_sym_async, - ACTIONS(4054), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4056), 2, - anon_sym_get, - anon_sym_set, - STATE(2914), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(3393), 24, + ACTIONS(3656), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -156663,47 +376985,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [35111] = 9, + anon_sym_enum, + [144865] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3895), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1806), 27, + sym_comment, + ACTIONS(3656), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -156719,621 +377029,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [35176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4300), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4302), 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, - [35229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4304), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4306), 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, - [35282] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(3972), 1, - anon_sym_QMARK_DOT, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(1701), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1705), 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, - [35343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4008), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4010), 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, - [35396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4308), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4310), 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, - [35449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4312), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4314), 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, - [35502] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(4328), 1, - anon_sym_extends, - ACTIONS(4322), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4325), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4316), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 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, - [35563] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4120), 1, - anon_sym_AMP, - ACTIONS(4122), 1, - anon_sym_PIPE, - ACTIONS(4124), 1, - anon_sym_extends, - ACTIONS(4330), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4332), 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, - [35622] = 4, + anon_sym_enum, + [144913] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4044), 1, sym_comment, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4334), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4336), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3656), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, 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, - [35677] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [144961] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4045), 1, sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3656), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [35732] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [145009] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4046), 1, sym_comment, - ACTIONS(4012), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4014), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3656), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [35785] = 16, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [145057] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4047), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_async, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(4030), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 24, + ACTIONS(3656), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -157345,58 +377205,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [35864] = 16, + anon_sym_enum, + [145105] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4048), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_async, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(3976), 1, + ACTIONS(3656), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 24, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [145153] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4049), 1, + sym_comment, + ACTIONS(3656), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -157408,97 +377293,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [35943] = 3, + anon_sym_enum, + [145201] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4050), 1, sym_comment, - ACTIONS(4340), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4342), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3656), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [35996] = 9, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [145249] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4051), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3762), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1806), 27, + ACTIONS(3656), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -157514,160 +377381,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [36061] = 3, + anon_sym_enum, + [145297] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4052), 1, sym_comment, - ACTIONS(4344), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4346), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3656), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [36114] = 5, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [145345] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4053), 1, sym_comment, - ACTIONS(4120), 1, - anon_sym_AMP, - ACTIONS(4122), 1, - anon_sym_PIPE, - ACTIONS(4348), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4350), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3656), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [36171] = 16, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [145393] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4054), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2043), 1, + ACTIONS(3618), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - ACTIONS(2091), 1, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, anon_sym_async, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 24, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [145441] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4055), 1, + sym_comment, + ACTIONS(2368), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -157679,53 +377557,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [36250] = 11, + anon_sym_enum, + [145489] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4056), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4016), 1, - anon_sym_STAR, - ACTIONS(4018), 1, + ACTIONS(3590), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, anon_sym_async, - ACTIONS(4020), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4024), 2, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(2981), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(3393), 24, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [145537] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4057), 1, + sym_comment, + ACTIONS(2414), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -157737,52 +377645,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [36319] = 10, + anon_sym_enum, + [145585] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4058), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4016), 1, - anon_sym_STAR, - ACTIONS(4352), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4354), 2, - anon_sym_get, - anon_sym_set, - STATE(3541), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 25, + ACTIONS(3588), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -157794,57 +377689,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [36386] = 15, + anon_sym_enum, + [145633] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4059), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(4030), 1, + ACTIONS(3580), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 25, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [145681] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4060), 1, + sym_comment, + ACTIONS(3580), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -157856,57 +377777,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [36463] = 15, + anon_sym_enum, + [145729] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4061), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2043), 1, + ACTIONS(2356), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 25, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [145777] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4062), 1, + sym_comment, + ACTIONS(3580), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -157918,257 +377865,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [36540] = 4, + anon_sym_enum, + [145825] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4063), 1, sym_comment, - ACTIONS(4360), 1, - anon_sym_DOT, - ACTIONS(4356), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4358), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3574), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, 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, - [36595] = 7, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [145873] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4064), 1, sym_comment, - ACTIONS(1501), 1, - anon_sym_EQ, - ACTIONS(2143), 1, - anon_sym_extends, - ACTIONS(4363), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4366), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1499), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3656), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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, - [36656] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [145921] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3950), 1, + sym__automatic_semicolon, + STATE(4065), 1, sym_comment, - ACTIONS(4369), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4371), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2440), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [36709] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [145971] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4066), 1, sym_comment, - ACTIONS(2141), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2143), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3656), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [36762] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4373), 1, - anon_sym_STAR, - ACTIONS(4375), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4377), 2, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3413), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 25, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [146019] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4067), 1, + sym_comment, + ACTIONS(3656), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -158180,52 +378086,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [36829] = 10, + anon_sym_enum, + [146067] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4068), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4379), 1, - anon_sym_STAR, - ACTIONS(4381), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4383), 2, - anon_sym_get, - anon_sym_set, - STATE(3416), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 25, + ACTIONS(3474), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -158237,103 +378130,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [36896] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(4180), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4385), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4387), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [36961] = 9, + anon_sym_enum, + [146115] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4069), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3794), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1806), 27, + ACTIONS(3464), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -158349,106 +378174,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [37026] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4393), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4389), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4391), 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, - [37097] = 9, + anon_sym_enum, + [146163] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4070), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3794), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1788), 27, + ACTIONS(3658), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -158464,395 +378218,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [37162] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4400), 1, - anon_sym_DOT, - ACTIONS(4396), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4398), 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, - [37217] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4402), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [37328] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4404), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [37439] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4406), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4328), 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, - [37492] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4408), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [37603] = 15, + anon_sym_enum, + [146211] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4071), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2039), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 25, + ACTIONS(3660), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -158864,588 +378262,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [37680] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4410), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [37791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4412), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4414), 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, - [37844] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4416), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [37955] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4422), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [38030] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4120), 1, - anon_sym_AMP, - ACTIONS(4425), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4427), 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, - [38085] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [38170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4140), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4138), 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, - [38223] = 3, + anon_sym_enum, + [146259] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4072), 1, sym_comment, - ACTIONS(4429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4431), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3660), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [38276] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [146307] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4073), 1, sym_comment, - ACTIONS(4433), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4435), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3572), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [38329] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4437), 1, - anon_sym_STAR, - ACTIONS(4439), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4441), 2, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3475), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 25, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [146355] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4074), 1, + sym_comment, + ACTIONS(3662), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -159457,126 +378394,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [38396] = 26, + anon_sym_enum, + [146403] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4075), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4418), 1, - anon_sym_BANG, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3664), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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, - [38495] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4379), 1, - anon_sym_STAR, - ACTIONS(4443), 1, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, anon_sym_async, - ACTIONS(4445), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4447), 2, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(2979), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(3393), 24, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [146451] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4076), 1, + sym_comment, + ACTIONS(3478), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -159588,155 +378482,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [38564] = 3, + anon_sym_enum, + [146499] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4077), 1, sym_comment, - ACTIONS(4449), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4451), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3564), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [38617] = 6, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [146547] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4078), 1, sym_comment, - ACTIONS(4120), 1, - anon_sym_AMP, - ACTIONS(4122), 1, - anon_sym_PIPE, - ACTIONS(4124), 1, - anon_sym_extends, - ACTIONS(4453), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4455), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3570), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [38676] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4457), 1, - anon_sym_STAR, - ACTIONS(4459), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4461), 2, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3492), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 25, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [146595] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4079), 1, + sym_comment, + ACTIONS(3488), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -159748,1295 +378614,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [38743] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4418), 1, - anon_sym_BANG, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [38844] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4422), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [38925] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4418), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4420), 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, - [39018] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4418), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [39113] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4418), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [39210] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4422), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [39289] = 3, + anon_sym_enum, + [146643] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4080), 1, sym_comment, - ACTIONS(4463), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4465), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3478), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [39342] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4422), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [39423] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4418), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [39512] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4418), 1, - anon_sym_BANG, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [39615] = 6, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [146691] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4081), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_extends, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4334), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4467), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4469), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3478), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, 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, - [39674] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4471), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [39785] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4473), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [39896] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [146739] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4082), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4475), 5, - anon_sym_COMMA, + ACTIONS(3478), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [40007] = 32, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [146787] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4083), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4477), 5, - anon_sym_COMMA, + ACTIONS(3568), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [40118] = 32, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [146835] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4084), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4479), 5, - anon_sym_COMMA, + ACTIONS(2456), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [40229] = 32, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [146883] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4085), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 5, - anon_sym_COMMA, + ACTIONS(3480), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [40340] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [146931] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4086), 1, sym_comment, - ACTIONS(4483), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4485), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3560), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [40393] = 9, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [146979] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4087), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1788), 27, + ACTIONS(3482), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -161052,52 +378966,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [40458] = 10, + anon_sym_enum, + [147027] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4088), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4487), 1, - anon_sym_STAR, - ACTIONS(4489), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4491), 2, + ACTIONS(3558), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3508), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 25, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [147075] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4089), 1, + sym_comment, + ACTIONS(3478), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -161109,98 +379054,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [40525] = 4, + anon_sym_enum, + [147123] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4090), 1, sym_comment, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4493), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4495), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3498), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, 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, - [40580] = 9, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [147171] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4091), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1806), 27, + ACTIONS(3478), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -161216,52 +379142,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [40645] = 10, + anon_sym_enum, + [147219] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4092), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4497), 1, - anon_sym_STAR, - ACTIONS(4499), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4501), 2, + ACTIONS(3484), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3426), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 25, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [147267] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4093), 1, + sym_comment, + ACTIONS(3556), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -161273,255 +379230,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [40712] = 4, + anon_sym_enum, + [147315] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4094), 1, sym_comment, - ACTIONS(4503), 1, - sym__automatic_semicolon, - ACTIONS(1537), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1539), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3486), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [40767] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [147363] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4095), 1, sym_comment, - ACTIONS(4046), 1, - sym__automatic_semicolon, - ACTIONS(1497), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1503), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3554), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [40822] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [147411] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7424), 1, + sym__automatic_semicolon, + STATE(4096), 1, sym_comment, - ACTIONS(2109), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2111), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2368), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [40875] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [147461] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4097), 1, sym_comment, - ACTIONS(4505), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4507), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3624), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [40928] = 11, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [147509] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4098), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4487), 1, - anon_sym_STAR, - ACTIONS(4509), 1, - anon_sym_async, - ACTIONS(4511), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4513), 2, - anon_sym_get, - anon_sym_set, - STATE(2958), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(3393), 24, + ACTIONS(3550), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -161533,108 +379451,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [40997] = 3, + anon_sym_enum, + [147557] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4099), 1, sym_comment, - ACTIONS(4100), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4102), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3458), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [41050] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2039), 1, - anon_sym_RBRACE, - ACTIONS(2091), 1, + anon_sym_finally, anon_sym_async, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 24, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [147605] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4100), 1, + sym_comment, + ACTIONS(3606), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -161646,53 +379539,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [41129] = 11, + anon_sym_enum, + [147653] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4101), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4515), 1, - anon_sym_STAR, - ACTIONS(4517), 1, - anon_sym_async, - ACTIONS(4519), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4521), 2, - anon_sym_get, - anon_sym_set, - STATE(2961), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(3393), 24, + ACTIONS(3622), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -161704,152 +379583,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [41198] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(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, - [41251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3261), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3263), 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, - [41304] = 10, + anon_sym_enum, + [147701] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4102), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4515), 1, - anon_sym_STAR, - ACTIONS(4523), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4525), 2, - anon_sym_get, - anon_sym_set, - STATE(3532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 25, + ACTIONS(3606), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -161861,52 +379627,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [41371] = 10, + anon_sym_enum, + [147749] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4103), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3978), 1, - anon_sym_STAR, - ACTIONS(4527), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4529), 2, - anon_sym_get, - anon_sym_set, - STATE(3453), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 25, + ACTIONS(3530), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -161918,103 +379671,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [41438] = 3, + anon_sym_enum, + [147797] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4104), 1, sym_comment, - ACTIONS(3323), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3325), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3548), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [41491] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4531), 1, - anon_sym_STAR, - ACTIONS(4533), 1, anon_sym_async, - ACTIONS(4535), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4537), 2, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(2917), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(3393), 24, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [147845] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4105), 1, + sym_comment, + ACTIONS(3604), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -162026,52 +379759,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [41560] = 10, + anon_sym_enum, + [147893] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4106), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4531), 1, - anon_sym_STAR, - ACTIONS(4539), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4541), 2, - anon_sym_get, - anon_sym_set, - STATE(3499), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 25, + ACTIONS(3446), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, + anon_sym_finally, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -162083,52 +379803,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [41627] = 10, + anon_sym_enum, + [147941] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4107), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3922), 1, - anon_sym_STAR, - ACTIONS(4543), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4545), 2, - anon_sym_get, - anon_sym_set, - STATE(3539), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 25, + ACTIONS(3546), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -162140,53 +379847,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [41694] = 11, + anon_sym_enum, + [147989] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4108), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4497), 1, - anon_sym_STAR, - ACTIONS(4547), 1, - anon_sym_async, - ACTIONS(4549), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4551), 2, - anon_sym_get, - anon_sym_set, - STATE(2982), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(3393), 24, + ACTIONS(3544), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -162198,45 +379891,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [41763] = 8, + anon_sym_enum, + [148037] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4109), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4381), 2, - sym_number, - sym_private_property_identifier, - STATE(3416), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 27, + ACTIONS(3594), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -162252,1381 +379935,695 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [41825] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4571), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4601), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4410), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [41935] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4603), 1, - anon_sym_LT, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [42015] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(4316), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 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, - [42069] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1501), 1, - anon_sym_EQ, - ACTIONS(1499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 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, - [42123] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4603), 1, - anon_sym_LT, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [42201] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4418), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [42297] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(4632), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4636), 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, - [42351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1537), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1539), 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, - [42403] = 24, + anon_sym_enum, + [148085] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4110), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4418), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 11, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3542), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [42497] = 32, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148133] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4111), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4402), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3534), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - [42607] = 33, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148181] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4112), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4648), 2, - anon_sym_COMMA, + ACTIONS(3582), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - ACTIONS(4650), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [42719] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148229] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4113), 1, sym_comment, - ACTIONS(1707), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1709), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3532), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [42771] = 23, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148277] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4114), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 11, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3454), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [42863] = 32, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_finally, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148325] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4115), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4471), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3666), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - [42973] = 17, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148373] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4116), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4603), 1, - anon_sym_LT, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3670), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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, - [43053] = 6, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148421] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4117), 1, sym_comment, - ACTIONS(4431), 1, - anon_sym_extends, - ACTIONS(4656), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4659), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4652), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4654), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3528), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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, - [43111] = 5, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148469] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4118), 1, sym_comment, - ACTIONS(4634), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4662), 5, - anon_sym_COMMA, + ACTIONS(3620), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4632), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4636), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, 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, - [43167] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148517] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4119), 1, sym_comment, - ACTIONS(1661), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1663), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3522), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [43219] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148565] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4120), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4404), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3520), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - [43329] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148613] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4121), 1, sym_comment, - ACTIONS(1661), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1663), 31, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3512), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [43381] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148661] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4122), 1, sym_comment, - ACTIONS(4664), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4666), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3672), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [43433] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148709] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4123), 1, + sym_comment, + ACTIONS(3466), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148757] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4124), 1, sym_comment, - ACTIONS(4668), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4404), 31, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(2376), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [43485] = 8, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148805] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4125), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4670), 2, - sym_number, - sym_private_property_identifier, - STATE(3149), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(3393), 27, + ACTIONS(3674), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -163642,45 +380639,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [43547] = 8, + anon_sym_enum, + [148853] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4126), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4672), 2, - sym_number, - sym_private_property_identifier, - STATE(3390), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 27, + ACTIONS(2380), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -163696,50 +380683,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [43609] = 13, + anon_sym_enum, + [148901] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4127), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2043), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 27, + ACTIONS(3558), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -163755,668 +380727,522 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [43681] = 3, + anon_sym_enum, + [148949] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1707), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1709), 31, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3926), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + STATE(4128), 1, + sym_comment, + ACTIONS(2285), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [43733] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [148999] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2358), 1, + sym__automatic_semicolon, + STATE(4129), 1, sym_comment, - ACTIONS(4674), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4676), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2356), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [43785] = 27, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149049] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4130), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4642), 1, - anon_sym_PIPE, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3552), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [43885] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149097] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4131), 1, sym_comment, - ACTIONS(1597), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1599), 31, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3540), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [43937] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149145] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4132), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4475), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(2456), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - [44047] = 26, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149193] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4642), 1, - anon_sym_PIPE, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 10, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2370), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + STATE(4133), 1, + sym_comment, + ACTIONS(2368), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [44145] = 6, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149243] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4134), 1, sym_comment, - ACTIONS(4074), 1, - anon_sym_extends, - ACTIONS(4678), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4681), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3626), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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, - [44203] = 32, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149291] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4135), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4477), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3632), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - [44313] = 32, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149339] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4136), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4479), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3634), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - [44423] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149387] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4137), 1, sym_comment, - ACTIONS(1537), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1539), 31, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3636), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [44475] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149435] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4138), 1, sym_comment, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(3538), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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(1788), 27, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149483] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4139), 1, + sym_comment, + ACTIONS(3536), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -164432,246 +381258,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [44529] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4473), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [44639] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [44741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1533), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1535), 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, - [44793] = 8, + anon_sym_enum, + [149531] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4140), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4684), 2, - sym_number, - sym_private_property_identifier, - STATE(3425), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 27, + ACTIONS(3552), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -164687,45 +381302,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [44855] = 8, + anon_sym_enum, + [149579] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4141), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4686), 2, - sym_number, - sym_private_property_identifier, - STATE(3209), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(3393), 27, + ACTIONS(3638), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -164741,1722 +381346,651 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [44917] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [45001] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4603), 1, - anon_sym_LT, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [45075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4688), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4690), 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, - [45127] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4692), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4694), 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] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4696), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4698), 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, - [45231] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4700), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4702), 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, - [45283] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4174), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [45393] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [45503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1529), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1531), 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, - [45555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1559), 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, - [45607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4704), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4706), 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, - [45659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4708), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4710), 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, - [45711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4712), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4714), 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, - [45763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4716), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4718), 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, - [45815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4720), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4722), 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, - [45867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4724), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4726), 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, - [45919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4728), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4416), 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, - [45971] = 16, + anon_sym_enum, + [149627] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4142), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4730), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4232), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(3500), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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, - [46049] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149675] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4143), 1, sym_comment, - ACTIONS(4733), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4735), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3640), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [46101] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149723] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4144), 1, sym_comment, - ACTIONS(4737), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4739), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3502), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [46153] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149771] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4145), 1, sym_comment, - ACTIONS(4741), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4743), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3504), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [46205] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149819] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4146), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4416), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3584), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - [46315] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149867] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4147), 1, sym_comment, - ACTIONS(4652), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4654), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3642), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [46367] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149915] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4148), 1, sym_comment, - ACTIONS(4745), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4471), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2410), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [46419] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [149963] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4149), 1, sym_comment, - ACTIONS(4747), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4749), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3508), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [46471] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150011] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4150), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4410), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3552), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - [46581] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150059] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4151), 1, sym_comment, - ACTIONS(4751), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4753), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3678), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [46633] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150107] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4152), 1, sym_comment, - ACTIONS(4755), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4757), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3680), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [46685] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150155] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4153), 1, sym_comment, - ACTIONS(4759), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4761), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3682), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [46737] = 5, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150203] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4154), 1, sym_comment, - ACTIONS(4318), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4763), 5, - anon_sym_COMMA, + ACTIONS(3684), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4316), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, 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, - [46793] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150251] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4155), 1, sym_comment, - ACTIONS(4765), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4767), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3506), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [46845] = 8, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150299] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4156), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4527), 2, - sym_number, - sym_private_property_identifier, - STATE(3453), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 27, + ACTIONS(3686), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -166472,123 +382006,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [46907] = 32, + anon_sym_enum, + [150347] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4157), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4571), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4601), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4481), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3462), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_SEMI, - [47017] = 8, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150395] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4158), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4352), 2, - sym_number, - sym_private_property_identifier, - STATE(3541), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 27, + ACTIONS(3462), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -166604,185 +382094,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [47079] = 35, + anon_sym_enum, + [150443] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4159), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3334), 1, - anon_sym_COLON, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(4769), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(4832), 1, - sym_type_annotation, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [47195] = 13, + ACTIONS(3462), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150491] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4160), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4771), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4253), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4255), 20, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3462), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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, - [47267] = 8, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150539] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4161), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4499), 2, - sym_number, - sym_private_property_identifier, - STATE(3426), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 27, + ACTIONS(3462), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -166798,45 +382226,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [47329] = 8, + anon_sym_enum, + [150587] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4162), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4375), 2, - sym_number, - sym_private_property_identifier, - STATE(3413), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 9, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3462), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2089), 27, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150635] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4163), 1, + sym_comment, + ACTIONS(3496), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -166852,388 +382314,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [47391] = 21, + anon_sym_enum, + [150683] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4164), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4418), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3494), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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, - [47479] = 34, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150731] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3982), 1, + sym__automatic_semicolon, + STATE(4165), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4778), 1, - anon_sym_COMMA, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4812), 1, - sym__ternary_qmark, - STATE(3239), 1, - sym_type_arguments, - STATE(3913), 1, - aux_sym_extends_clause_repeat1, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4776), 2, - anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [47593] = 3, + ACTIONS(2388), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150781] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4166), 1, sym_comment, - ACTIONS(1721), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1723), 31, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3492), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [47645] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150829] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4167), 1, sym_comment, - ACTIONS(1721), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1723), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3490), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [47697] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150877] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4168), 1, sym_comment, - ACTIONS(4814), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4816), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3462), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [47749] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150925] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4169), 1, sym_comment, - ACTIONS(1701), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1705), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3586), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [47801] = 8, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [150973] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4170), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4296), 2, - sym_number, - sym_private_property_identifier, - STATE(3400), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 27, + ACTIONS(2356), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_finally, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [151021] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4171), 1, + sym_comment, + ACTIONS(3462), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -167249,308 +382667,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [47863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1597), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1599), 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, - [47915] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [47967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1639), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1643), 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, - [48019] = 16, + anon_sym_enum, + [151069] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4172), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_async, - ACTIONS(2093), 1, - anon_sym_readonly, - ACTIONS(2097), 1, - anon_sym_override, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - STATE(2488), 1, - sym_override_modifier, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4818), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 22, + ACTIONS(3462), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [48097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1589), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1593), 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, - [48149] = 13, + anon_sym_enum, + [151117] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4173), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3998), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 27, + ACTIONS(3462), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -167566,45 +382755,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [48221] = 8, + anon_sym_enum, + [151165] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4174), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4543), 2, - sym_number, - sym_private_property_identifier, - STATE(3539), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 27, + ACTIONS(3462), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -167620,811 +382799,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, - anon_sym_required, - anon_sym_component, - [48283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1529), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1531), 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, - [48335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3809), 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, - [48387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4821), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4823), 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, - [48439] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4825), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4475), 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, - [48491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4829), 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, - [48543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4831), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4477), 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, - [48595] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4833), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4479), 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, - [48647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4835), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4837), 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, - [48699] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1573), 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, - [48751] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 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, - [48803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4845), 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, - [48855] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3334), 1, - anon_sym_COLON, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(4847), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(4766), 1, - sym_type_annotation, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [48971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1731), 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, - [49023] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4849), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4851), 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, - [49075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4853), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4855), 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, - [49127] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4523), 2, - sym_number, - sym_private_property_identifier, - STATE(3532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 27, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [151213] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7428), 1, + anon_sym_AT, + STATE(4447), 1, + sym_ui_annotation, + STATE(4175), 2, + sym_comment, + aux_sym_ui_annotated_object_repeat1, + ACTIONS(7426), 33, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -168441,45 +382845,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [49189] = 8, + anon_sym_enum, + [151265] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4176), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4090), 2, - sym_number, - sym_private_property_identifier, - STATE(3520), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 27, + ACTIONS(3462), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -168495,206 +382889,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [49251] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4571), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4601), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4479), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [49361] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4571), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4601), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4477), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [49471] = 13, + anon_sym_enum, + [151313] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4177), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4030), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 27, + ACTIONS(3472), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -168710,99 +382933,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [49543] = 3, + anon_sym_enum, + [151361] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4178), 1, sym_comment, - ACTIONS(1691), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1695), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3462), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [49595] = 13, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [151409] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4179), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2041), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 27, + ACTIONS(3462), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -168818,326 +383021,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [49667] = 32, + anon_sym_enum, + [151457] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4571), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4601), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4475), 4, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3960), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [49777] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1501), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4857), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 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, - [49833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4859), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4861), 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, - [49885] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1713), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1717), 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, - [49937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1521), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1525), 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, - [49989] = 13, - ACTIONS(3), 1, + STATE(4180), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2039), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 27, + ACTIONS(2448), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -169153,192 +383066,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [50061] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1579), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1583), 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, - [50113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1653), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1657), 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, - [50165] = 3, + anon_sym_enum, + [151507] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4181), 1, sym_comment, - ACTIONS(4863), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3462), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [50217] = 8, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [151555] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4489), 2, - sym_number, - sym_private_property_identifier, - STATE(3508), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 9, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3974), 1, 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(2089), 27, + STATE(4182), 1, + sym_comment, + ACTIONS(2470), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -169354,50 +383155,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [50279] = 13, + anon_sym_enum, + [151605] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4183), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3976), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 27, + ACTIONS(3592), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -169413,45 +383199,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [50351] = 8, + anon_sym_enum, + [151653] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4184), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4539), 2, - sym_number, - sym_private_property_identifier, - STATE(3499), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 27, + ACTIONS(3600), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -169467,221 +383243,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [50413] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4408), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [50523] = 3, + anon_sym_enum, + [151701] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4185), 1, sym_comment, - ACTIONS(1545), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1549), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3566), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [50575] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [151749] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4186), 1, sym_comment, - ACTIONS(1737), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1741), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3668), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_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, - [50627] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4459), 2, - sym_number, - sym_private_property_identifier, - STATE(3492), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 27, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [151797] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4187), 1, + sym_comment, + ACTIONS(3462), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -169697,126 +383375,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [50689] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3334), 1, - anon_sym_COLON, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(4867), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(4868), 1, - sym_type_annotation, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [50805] = 8, + anon_sym_enum, + [151845] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4188), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4439), 2, - sym_number, - sym_private_property_identifier, - STATE(3475), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 27, + ACTIONS(3518), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -169832,238 +383419,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [50867] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4869), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [50977] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4871), 1, - anon_sym_LT, - ACTIONS(4873), 1, - anon_sym_QMARK_DOT, - STATE(2019), 1, - sym_type_arguments, - STATE(2220), 1, - sym_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(3962), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3964), 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, - [51045] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4875), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4389), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4391), 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, - [51115] = 8, + anon_sym_enum, + [151893] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4189), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4154), 2, - sym_number, - sym_private_property_identifier, - STATE(3502), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 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(2089), 27, + ACTIONS(3630), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -170079,185 +383463,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [51177] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4614), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4385), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4387), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [51241] = 34, + anon_sym_enum, + [151941] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - ACTIONS(4648), 1, - anon_sym_RBRACE, - ACTIONS(4878), 1, - anon_sym_COMMA, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4881), 2, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7431), 1, sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [51355] = 13, - ACTIONS(3), 1, + STATE(4190), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2015), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 27, + ACTIONS(2285), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -170273,2433 +383508,1317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [51427] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4389), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4391), 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, - [51497] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4565), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4385), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4387), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [51561] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4561), 1, - anon_sym_GT, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4571), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4601), 1, - sym__ternary_qmark, - ACTIONS(4888), 1, - anon_sym_in, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4886), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [51673] = 34, + anon_sym_enum, + [151991] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4191), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - ACTIONS(4648), 1, + ACTIONS(3628), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - ACTIONS(4878), 1, - anon_sym_COMMA, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4402), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [51787] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4571), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4601), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4402), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [51897] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4571), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4601), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4404), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_SEMI, - [52007] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152039] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4571), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4601), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4174), 4, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2330), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [52117] = 34, - ACTIONS(3), 1, + STATE(4192), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - ACTIONS(4891), 1, - anon_sym_COMMA, - ACTIONS(4894), 1, + ACTIONS(2328), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4410), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [52231] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4896), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4232), 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, - [52309] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3334), 1, - anon_sym_COLON, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(4899), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(4671), 1, - sym_type_annotation, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [52425] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4901), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4253), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4255), 20, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [52497] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152089] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(4904), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2420), 1, sym__automatic_semicolon, - ACTIONS(1537), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1539), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + STATE(4193), 1, + sym_comment, + ACTIONS(2418), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_else, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [52551] = 7, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152139] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4194), 1, sym_comment, - ACTIONS(4871), 1, - anon_sym_LT, - ACTIONS(4906), 1, - anon_sym_DOT, - ACTIONS(4908), 1, - anon_sym_is, - STATE(2084), 1, - sym_type_arguments, - ACTIONS(3954), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3353), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3676), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, 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, - [52611] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152187] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4195), 1, sym_comment, - ACTIONS(4910), 1, - sym__automatic_semicolon, - ACTIONS(1497), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1503), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3510), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [52665] = 19, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152235] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7433), 1, + sym__automatic_semicolon, + STATE(4196), 1, sym_comment, - ACTIONS(133), 1, - anon_sym_STAR, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(1786), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4916), 1, + ACTIONS(2368), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, anon_sym_async, - ACTIONS(4920), 1, + anon_sym_function, + sym_identifier, + anon_sym_AT, anon_sym_static, - ACTIONS(4922), 1, anon_sym_readonly, - ACTIONS(4928), 1, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - STATE(2452), 1, - sym_accessibility_modifier, - STATE(2494), 1, - sym_override_modifier, - ACTIONS(4914), 2, - anon_sym_COMMA, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152285] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4197), 1, + sym_comment, + ACTIONS(2368), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - ACTIONS(4918), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4924), 2, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_finally, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(4926), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3267), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4369), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4912), 18, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152333] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4198), 1, + sym_comment, + ACTIONS(3646), 36, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [52749] = 32, + anon_sym_enum, + [152381] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4199), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4571), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4601), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4473), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3646), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_SEMI, - [52859] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152429] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4200), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4571), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4601), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4471), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3644), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_SEMI, - [52969] = 28, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152477] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4201), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4571), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 8, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2418), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [53071] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152525] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4202), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4571), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4601), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4408), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(2328), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_SEMI, - [53181] = 21, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152573] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4418), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 13, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3948), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + STATE(4203), 1, + sym_comment, + ACTIONS(2332), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [53269] = 17, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152623] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4204), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4930), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(3462), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, 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, - [53349] = 16, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152671] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4930), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 18, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3978), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + STATE(4205), 1, + sym_comment, + ACTIONS(2478), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [53427] = 25, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152721] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3984), 1, + sym__automatic_semicolon, + STATE(4206), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4418), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 10, + ACTIONS(2348), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152771] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3986), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + STATE(4207), 1, + sym_comment, + ACTIONS(2360), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [53523] = 24, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152821] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4208), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4418), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 11, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3596), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [53617] = 23, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152869] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4209), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 11, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3524), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [53709] = 17, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152917] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4210), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4930), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3624), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, 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, - [53789] = 27, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [152965] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4211), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3516), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [53889] = 26, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153013] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4212), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 10, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3648), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [53987] = 34, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153061] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4213), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - ACTIONS(4648), 1, + ACTIONS(3514), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - ACTIONS(4933), 1, - anon_sym_COMMA, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4410), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54101] = 6, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153109] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4214), 1, sym_comment, - ACTIONS(4010), 1, - anon_sym_extends, - ACTIONS(4936), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4939), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3650), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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, - [54159] = 19, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153157] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4215), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3652), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, 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, - [54243] = 14, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153205] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4216), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4930), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3470), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, 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, - [54317] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153253] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4217), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4565), 1, - anon_sym_LT, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4569), 1, - anon_sym_AMP_AMP, - ACTIONS(4571), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4573), 1, - anon_sym_GT_GT, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_CARET, - ACTIONS(4581), 1, - anon_sym_PIPE, - ACTIONS(4585), 1, - anon_sym_PERCENT, - ACTIONS(4587), 1, - anon_sym_STAR_STAR, - ACTIONS(4595), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4601), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4553), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4561), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4575), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4583), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4591), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4593), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4589), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4416), 4, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3462), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_SEMI, - [54427] = 6, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153301] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4218), 1, sym_comment, - ACTIONS(3327), 1, - anon_sym_EQ, - ACTIONS(3391), 1, - anon_sym_QMARK, - ACTIONS(3423), 5, - anon_sym_COMMA, + ACTIONS(3462), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [54484] = 33, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153349] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4219), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4402), 1, - anon_sym_COMMA, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4942), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54595] = 9, + ACTIONS(3462), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_else, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153397] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4220), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4944), 1, - anon_sym_abstract, - ACTIONS(4686), 2, - sym_number, - sym_private_property_identifier, - STATE(3209), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3393), 27, + ACTIONS(3484), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -172715,121 +384834,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [54658] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4946), 1, - anon_sym_RBRACK, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(4037), 1, - aux_sym_array_repeat1, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [54771] = 6, + anon_sym_enum, + [153444] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4221), 1, sym_comment, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3936), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1788), 27, + ACTIONS(3580), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -172845,42 +384877,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [54828] = 6, + anon_sym_enum, + [153491] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4222), 1, sym_comment, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3936), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(1806), 27, + ACTIONS(3508), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -172896,101 +384920,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [54885] = 11, + anon_sym_enum, + [153538] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4223), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4948), 1, - anon_sym_readonly, - STATE(2555), 1, - sym_override_modifier, - ACTIONS(4670), 2, - sym_number, - sym_private_property_identifier, - STATE(3149), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3393), 25, + ACTIONS(3540), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [54952] = 9, + anon_sym_enum, + [153585] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4224), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4058), 1, - anon_sym_abstract, - ACTIONS(4670), 2, - sym_number, - sym_private_property_identifier, - STATE(3149), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3393), 27, + ACTIONS(7435), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -173006,2040 +385006,980 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [55015] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4812), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4404), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55124] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4812), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4402), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55233] = 7, + anon_sym_enum, + [153632] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4225), 1, sym_comment, - ACTIONS(3327), 1, - anon_sym_EQ, - ACTIONS(4678), 1, - anon_sym_LBRACK, - ACTIONS(4681), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4074), 6, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(7437), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [55292] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(4782), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4385), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4387), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - anon_sym_implements, - [55355] = 32, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153679] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4226), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4886), 3, - anon_sym_COMMA, + ACTIONS(3504), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, - [55464] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4812), 1, - sym__ternary_qmark, - STATE(3345), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4950), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [55573] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4952), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(4150), 1, - aux_sym_array_repeat1, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55686] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - ACTIONS(4954), 1, - anon_sym_COMMA, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4239), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55797] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4956), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4389), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4391), 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, - [55866] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4812), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4408), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [55975] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4812), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4174), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56084] = 32, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153726] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4227), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4812), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4410), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56193] = 16, + ACTIONS(2456), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153773] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4228), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4959), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4232), 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, - [56270] = 6, + ACTIONS(3502), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153820] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4229), 1, sym_comment, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3391), 1, - anon_sym_QMARK, - ACTIONS(3384), 5, - anon_sym_COMMA, + ACTIONS(3626), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [56327] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4962), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4253), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4255), 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, - [56398] = 32, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153867] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4230), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4812), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4416), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56507] = 6, + ACTIONS(3632), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153914] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4231), 1, sym_comment, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4965), 1, - anon_sym_DOT, - STATE(1983), 1, - sym_arguments, - ACTIONS(4040), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4042), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3634), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [56564] = 6, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [153961] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4232), 1, sym_comment, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4967), 1, - anon_sym_DOT, - STATE(1986), 1, - sym_arguments, - ACTIONS(4034), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4036), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3636), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [56621] = 6, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154008] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4233), 1, sym_comment, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4969), 1, - anon_sym_DOT, - STATE(1989), 1, - sym_arguments, - ACTIONS(3373), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3365), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3638), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [56678] = 14, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154055] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4234), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4971), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [56751] = 19, + ACTIONS(3500), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154102] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4235), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [56834] = 34, + ACTIONS(3640), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154149] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4236), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4974), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4019), 1, - aux_sym_array_repeat1, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56947] = 7, + ACTIONS(3670), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154196] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4237), 1, sym_comment, - ACTIONS(1501), 1, - anon_sym_EQ, - ACTIONS(2143), 1, - anon_sym_extends, - ACTIONS(4363), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4366), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1499), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [57006] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154243] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4238), 1, sym_comment, - ACTIONS(4908), 1, - anon_sym_is, - ACTIONS(4008), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4010), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [57059] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154290] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4239), 1, sym_comment, - ACTIONS(4976), 1, - anon_sym_is, - ACTIONS(4012), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4014), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7437), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [57112] = 33, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154337] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4240), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - ACTIONS(4954), 1, - anon_sym_COMMA, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4978), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [57223] = 7, + ACTIONS(3488), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154384] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4241), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(4328), 1, - anon_sym_extends, - ACTIONS(4322), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4325), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4316), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(7437), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [57282] = 34, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154431] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4242), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4980), 1, - anon_sym_RBRACK, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(4246), 1, - aux_sym_array_repeat1, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [57395] = 5, + ACTIONS(3538), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154478] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4243), 1, sym_comment, - ACTIONS(4634), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4982), 5, - anon_sym_COMMA, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4632), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4636), 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, - [57450] = 26, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154525] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4244), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [57547] = 15, + ACTIONS(7439), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154572] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4245), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, + ACTIONS(3536), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, anon_sym_async, - ACTIONS(2093), 1, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, anon_sym_readonly, - ACTIONS(2097), 1, - anon_sym_override, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - STATE(2488), 1, - sym_override_modifier, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, anon_sym_get, anon_sym_set, - ACTIONS(4985), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 22, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154619] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4246), 1, + sym_comment, + ACTIONS(2368), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [57622] = 4, + anon_sym_enum, + [154666] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4247), 1, sym_comment, - ACTIONS(1535), 1, - anon_sym_DOT, - ACTIONS(4358), 13, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4356), 29, + ACTIONS(7437), 35, anon_sym_export, + anon_sym_default, anon_sym_type, - anon_sym_EQ, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -175055,828 +385995,425 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_extends, - [57675] = 27, + anon_sym_enum, + [154713] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4248), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [57774] = 6, + ACTIONS(7437), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154760] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4249), 1, sym_comment, - ACTIONS(4871), 1, - anon_sym_LT, - ACTIONS(4906), 1, - anon_sym_DOT, - STATE(2084), 1, - sym_type_arguments, - ACTIONS(3954), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3353), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3628), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [57831] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154807] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4250), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4987), 3, - anon_sym_COMMA, + ACTIONS(7441), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RBRACK, - [57940] = 5, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154854] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4251), 1, sym_comment, - ACTIONS(1501), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4989), 5, - anon_sym_COMMA, + ACTIONS(3630), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 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, - [57995] = 17, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154901] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4252), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4971), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [58074] = 23, + ACTIONS(3498), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154948] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4253), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [58165] = 11, + ACTIONS(2456), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [154995] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4254), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3417), 1, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155042] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4255), 1, + sym_comment, + ACTIONS(7443), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, anon_sym_readonly, - STATE(2562), 1, - sym_override_modifier, - ACTIONS(4686), 2, - sym_number, - sym_private_property_identifier, - STATE(3209), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3393), 25, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155089] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4256), 1, + sym_comment, + ACTIONS(3462), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [58232] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4994), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [58341] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4418), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [58434] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4418), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [58529] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4971), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [58606] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4971), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [58685] = 12, + anon_sym_enum, + [155136] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4257), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4818), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 25, + ACTIONS(7437), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -175888,427 +386425,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [58754] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4418), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [58841] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - ACTIONS(4954), 1, - anon_sym_COMMA, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4996), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58952] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - ACTIONS(4954), 1, - anon_sym_COMMA, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4998), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59063] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(4236), 1, - aux_sym_array_repeat1, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59176] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [59277] = 13, + anon_sym_enum, + [155183] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4258), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_async, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4818), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 24, + ACTIONS(7437), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -176320,2978 +386468,1711 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [59348] = 5, + anon_sym_enum, + [155230] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4259), 1, sym_comment, - ACTIONS(4871), 1, - anon_sym_LT, - STATE(2096), 1, - sym_type_arguments, - ACTIONS(4012), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4014), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3642), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [59403] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4812), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4471), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59512] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4812), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4473), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59621] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4812), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4475), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59730] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4812), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4477), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59839] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4812), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4479), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59948] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - ACTIONS(4954), 1, - anon_sym_COMMA, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5002), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1509), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155277] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4260), 1, + sym_comment, + ACTIONS(7437), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - 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, - [60110] = 33, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155324] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4261), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4402), 1, - anon_sym_COMMA, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4881), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60221] = 8, + ACTIONS(3510), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155371] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4262), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(4322), 1, - anon_sym_LBRACK, - ACTIONS(4325), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5004), 2, - anon_sym_COMMA, + ACTIONS(7445), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - ACTIONS(4328), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4316), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 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, - [60282] = 7, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155418] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4263), 1, sym_comment, - ACTIONS(3363), 1, - anon_sym_EQ, - ACTIONS(4074), 1, - anon_sym_extends, - ACTIONS(4678), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4681), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 26, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(7447), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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, - [60341] = 5, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155465] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4264), 1, sym_comment, - ACTIONS(4318), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5008), 5, - anon_sym_COMMA, + ACTIONS(7449), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4316), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 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, - [60396] = 34, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155512] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4265), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(5011), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(4160), 1, - aux_sym_array_repeat1, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60509] = 33, + ACTIONS(3478), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155559] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4266), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - ACTIONS(4954), 1, - anon_sym_COMMA, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5013), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60620] = 34, + ACTIONS(7437), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155606] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4267), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(5015), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(4129), 1, - aux_sym_array_repeat1, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [60733] = 32, + ACTIONS(3478), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155653] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4268), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4886), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [60842] = 8, + ACTIONS(7451), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155700] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4269), 1, sym_comment, - ACTIONS(1501), 1, - anon_sym_EQ, - ACTIONS(4363), 1, - anon_sym_LBRACK, - ACTIONS(4366), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5017), 2, - anon_sym_COMMA, + ACTIONS(7453), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - ACTIONS(2143), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1499), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 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, - [60903] = 6, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155747] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4270), 1, sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3448), 1, - anon_sym_QMARK, - ACTIONS(3446), 5, - anon_sym_COMMA, + ACTIONS(7437), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [60960] = 34, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155794] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4271), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(5021), 1, - anon_sym_RBRACK, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(4037), 1, - aux_sym_array_repeat1, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61073] = 32, + ACTIONS(7455), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155841] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4272), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4782), 1, - anon_sym_LT, - ACTIONS(4784), 1, - anon_sym_AMP_AMP, - ACTIONS(4786), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 1, - anon_sym_GT_GT, - ACTIONS(4792), 1, - anon_sym_AMP, - ACTIONS(4794), 1, - anon_sym_CARET, - ACTIONS(4796), 1, - anon_sym_PIPE, - ACTIONS(4800), 1, - anon_sym_PERCENT, - ACTIONS(4802), 1, - anon_sym_STAR_STAR, - ACTIONS(4810), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4812), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4774), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4780), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4790), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4798), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4806), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4808), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4481), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4804), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61182] = 34, + ACTIONS(7457), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155888] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4273), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(5023), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(4203), 1, - aux_sym_array_repeat1, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61295] = 34, + ACTIONS(7459), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155935] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4274), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(5025), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(4162), 1, - aux_sym_array_repeat1, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61408] = 33, + ACTIONS(3482), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [155982] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4275), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(4606), 1, - anon_sym_STAR_STAR, - ACTIONS(4610), 1, - anon_sym_PERCENT, - ACTIONS(4614), 1, - anon_sym_LT, - ACTIONS(4616), 1, - anon_sym_GT_GT, - ACTIONS(4620), 1, - anon_sym_AMP, - ACTIONS(4622), 1, - anon_sym_CARET, - ACTIONS(4638), 1, - anon_sym_AMP_AMP, - ACTIONS(4640), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4642), 1, - anon_sym_PIPE, - ACTIONS(4644), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4646), 1, - sym__ternary_qmark, - ACTIONS(4954), 1, - anon_sym_COMMA, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4608), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4612), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4618), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4624), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4628), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4630), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5027), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4626), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61519] = 33, + ACTIONS(3678), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156029] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4276), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5029), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61629] = 4, + ACTIONS(3680), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156076] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4277), 1, sym_comment, - ACTIONS(4360), 1, - anon_sym_DOT, - ACTIONS(4356), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4358), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3466), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [61681] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156123] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4278), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4408), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61789] = 33, + ACTIONS(3682), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156170] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4279), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5067), 1, - anon_sym_COLON, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [61899] = 5, + ACTIONS(7461), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156217] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4280), 1, sym_comment, - ACTIONS(1501), 1, - anon_sym_EQ, - ACTIONS(4910), 1, - sym__automatic_semicolon, - ACTIONS(1497), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1503), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7463), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [61953] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156264] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4281), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4410), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62061] = 32, + ACTIONS(3684), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156311] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4282), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4416), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62169] = 14, + ACTIONS(3480), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156358] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4283), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [62241] = 33, + ACTIONS(7465), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156405] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4284), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - ACTIONS(5072), 1, - anon_sym_SEMI, - ACTIONS(5074), 1, - sym__automatic_semicolon, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62351] = 3, + ACTIONS(3686), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156452] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4285), 1, sym_comment, - ACTIONS(4312), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4314), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [62401] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156499] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4286), 1, sym_comment, - ACTIONS(4308), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4310), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2410), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [62451] = 19, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156546] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4287), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [62533] = 33, + ACTIONS(3478), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156593] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4288), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5076), 1, - anon_sym_RBRACK, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [62643] = 13, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156640] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4289), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(5078), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4253), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4255), 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, - [62713] = 26, + ACTIONS(7467), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156687] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4290), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [62809] = 27, + ACTIONS(3478), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156734] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4291), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 7, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [62907] = 3, + ACTIONS(7469), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156781] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4292), 1, sym_comment, - ACTIONS(4300), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4302), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7471), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [62957] = 17, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156828] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4293), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [63035] = 23, + ACTIONS(7473), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156875] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4294), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [63125] = 6, + ACTIONS(7475), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156922] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4295), 1, sym_comment, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(5083), 1, - anon_sym_PIPE, - ACTIONS(5085), 1, - anon_sym_extends, - ACTIONS(4284), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4286), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3478), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [63181] = 16, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [156969] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4296), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5087), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4232), 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, - [63257] = 9, + ACTIONS(3478), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [157016] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4297), 1, + sym_comment, + ACTIONS(7477), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [157063] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4298), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3998), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1806), 27, + ACTIONS(7479), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -179307,449 +388188,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [63319] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4174), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63427] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4418), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [63519] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4418), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [63613] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [63689] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(5090), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4389), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4391), 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, - [63757] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5093), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [63865] = 9, + anon_sym_enum, + [157110] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4299), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3976), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1806), 27, + ACTIONS(7481), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -179765,618 +388231,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [63927] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5069), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [64005] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4418), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [64091] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 6, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [64191] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4010), 1, - anon_sym_extends, - ACTIONS(4936), 1, - anon_sym_LBRACK, - ACTIONS(5099), 1, - anon_sym_RPAREN, - ACTIONS(4939), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5095), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5097), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [64253] = 32, + anon_sym_enum, + [157157] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4300), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4471), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64361] = 32, + ACTIONS(3664), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [157204] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4301), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4473), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64469] = 3, + ACTIONS(7483), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [157251] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4302), 1, sym_comment, - ACTIONS(4280), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4282), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7485), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [64519] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [157298] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4303), 1, sym_comment, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(4276), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4278), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3662), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [64571] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [157345] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4304), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4650), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64679] = 9, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [157392] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4305), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(2039), 1, + ACTIONS(3672), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1806), 27, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [157439] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4306), 1, + sym_comment, + ACTIONS(3462), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -180392,44 +388532,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [64741] = 9, + anon_sym_enum, + [157486] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4307), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(2039), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1788), 27, + ACTIONS(3674), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -180445,167 +388575,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [64803] = 3, + anon_sym_enum, + [157533] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4308), 1, sym_comment, - ACTIONS(4268), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4270), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [64853] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5102), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [64961] = 9, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [157580] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4309), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(4030), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1788), 27, + ACTIONS(7487), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -180621,44 +388661,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [65023] = 9, + anon_sym_enum, + [157627] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4310), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(4030), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1806), 27, + ACTIONS(3462), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -180674,44 +388704,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [65085] = 9, + anon_sym_enum, + [157674] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4311), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(2041), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1806), 27, + ACTIONS(7489), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -180727,974 +388747,639 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [65147] = 3, + anon_sym_enum, + [157721] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4312), 1, sym_comment, - ACTIONS(2924), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2926), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2356), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [65197] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4939), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4936), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4010), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [65253] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5104), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65361] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [157768] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4313), 1, sym_comment, - ACTIONS(4344), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4346), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3472), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [65411] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [157815] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7493), 1, + anon_sym_import, + ACTIONS(7496), 1, + anon_sym_pragma, + STATE(4314), 2, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4475), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65519] = 6, + aux_sym_program_repeat1, + STATE(4475), 2, + sym_ui_pragma, + sym_ui_import, + ACTIONS(7491), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [157868] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4315), 1, sym_comment, - ACTIONS(4659), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4656), 3, - anon_sym_COMMA, + ACTIONS(3490), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4431), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4652), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4654), 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, - [65575] = 6, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [157915] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4316), 1, sym_comment, - ACTIONS(4681), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4678), 3, - anon_sym_COMMA, + ACTIONS(3492), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4074), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [65631] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(4322), 1, - anon_sym_LBRACK, - ACTIONS(4328), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4325), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4316), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [65689] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [157962] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4317), 1, sym_comment, - ACTIONS(2113), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2115), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3494), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [65739] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158009] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4318), 1, sym_comment, - ACTIONS(4264), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4266), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3496), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [65789] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158056] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4319), 1, sym_comment, - ACTIONS(4260), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4262), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3506), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [65839] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158103] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4320), 1, sym_comment, - ACTIONS(4072), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4074), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3584), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [65889] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158150] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4321), 1, sym_comment, - ACTIONS(4008), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4010), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [65939] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158197] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4322), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5106), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66047] = 3, + ACTIONS(3530), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158244] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4323), 1, sym_comment, - ACTIONS(4245), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4247), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3512), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [66097] = 33, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158291] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4324), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - ACTIONS(5108), 1, - anon_sym_SEMI, - ACTIONS(5110), 1, - sym__automatic_semicolon, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66207] = 3, + ACTIONS(3520), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158338] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4325), 1, sym_comment, - ACTIONS(4241), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4243), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3522), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [66257] = 10, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158385] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4326), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4818), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 27, + ACTIONS(3462), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -181710,142 +389395,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [66321] = 3, + anon_sym_enum, + [158432] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4327), 1, sym_comment, - ACTIONS(4245), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4247), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3528), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [66371] = 7, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158479] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4328), 1, sym_comment, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4873), 1, - anon_sym_QMARK_DOT, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(1701), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1705), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3532), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [66429] = 9, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158526] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4329), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3998), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1788), 27, + ACTIONS(3582), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -181861,279 +389524,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [66491] = 4, + anon_sym_enum, + [158573] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4330), 1, sym_comment, - ACTIONS(5112), 1, - anon_sym_LBRACK, - ACTIONS(4334), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4336), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3534), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [66543] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158620] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4331), 1, sym_comment, - ACTIONS(4012), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4014), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3542), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [66593] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158667] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4332), 1, sym_comment, - ACTIONS(4241), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4243), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3544), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [66643] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158714] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4333), 1, sym_comment, - ACTIONS(4226), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4228), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7499), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [66693] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158761] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4334), 1, sym_comment, - ACTIONS(4222), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4224), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3546), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [66743] = 8, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158808] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4335), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(5114), 2, - sym_number, - sym_private_property_identifier, - STATE(3231), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3393), 27, + ACTIONS(3524), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -182149,417 +389782,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [66803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4226), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4228), 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, - [66853] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1501), 1, - anon_sym_EQ, - ACTIONS(4363), 1, - anon_sym_LBRACK, - ACTIONS(2143), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4366), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1499), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [66911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4222), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4224), 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, - [66961] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4404), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67069] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4477), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67177] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4402), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67285] = 9, + anon_sym_enum, + [158855] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4336), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(2015), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1788), 27, + ACTIONS(3604), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -182575,120 +389825,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [67347] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4479), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67455] = 9, + anon_sym_enum, + [158902] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4337), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(2015), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1806), 27, + ACTIONS(3606), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -182704,570 +389868,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [67517] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5116), 1, - anon_sym_RBRACK, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67627] = 3, + anon_sym_enum, + [158949] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4338), 1, sym_comment, - ACTIONS(4369), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4371), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3606), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [67677] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(5035), 1, - anon_sym_LT, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(4385), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4387), 23, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [67739] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5118), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67849] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [158996] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4339), 1, sym_comment, - ACTIONS(4433), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4435), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7501), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [67899] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5120), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68009] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159043] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4340), 1, sym_comment, - ACTIONS(2920), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2922), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3550), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [68059] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159090] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4341), 1, sym_comment, - ACTIONS(4463), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4465), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7503), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [68109] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159137] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4342), 1, sym_comment, - ACTIONS(2109), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2111), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3660), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [68159] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, anon_sym_async, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(4985), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 24, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159184] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4343), 1, + sym_comment, + ACTIONS(3554), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -183279,538 +390126,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [68227] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5122), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(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, - [68387] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - ACTIONS(5124), 1, - anon_sym_SEMI, - ACTIONS(5126), 1, - sym__automatic_semicolon, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [68497] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4431), 1, - anon_sym_extends, - ACTIONS(4656), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4659), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4652), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4654), 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, - [68553] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4138), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4140), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [68607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4162), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(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, - [68657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4294), 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, - [68707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4166), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(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, - [68757] = 3, + anon_sym_enum, + [159231] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4344), 1, sym_comment, - ACTIONS(4162), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4164), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3556), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [68807] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(4985), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 25, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159278] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4345), 1, + sym_comment, + ACTIONS(7505), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -183822,379 +390212,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [68873] = 5, + anon_sym_enum, + [159325] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4346), 1, sym_comment, - ACTIONS(3375), 1, - anon_sym_LPAREN, - STATE(2836), 1, - sym_arguments, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3558), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [68927] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159372] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4347), 1, sym_comment, - ACTIONS(4068), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4070), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3558), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [68977] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159419] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4348), 1, sym_comment, - ACTIONS(4150), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4152), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3560), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [69027] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159466] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4349), 1, sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3568), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [69079] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159513] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4350), 1, sym_comment, - ACTIONS(4146), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4148), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3570), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [69129] = 6, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159560] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4351), 1, sym_comment, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(5083), 1, - anon_sym_PIPE, - ACTIONS(5085), 1, - anon_sym_extends, - ACTIONS(4130), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4132), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7507), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [69185] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159607] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4352), 1, sym_comment, - ACTIONS(4130), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4132), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3572), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [69235] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3976), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1788), 27, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159654] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4353), 1, + sym_comment, + ACTIONS(3574), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -184210,2916 +390556,2227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [69297] = 6, + anon_sym_enum, + [159701] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4354), 1, sym_comment, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(5083), 1, - anon_sym_PIPE, - ACTIONS(5085), 1, - anon_sym_extends, - ACTIONS(4126), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4128), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [69353] = 6, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159748] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4355), 1, sym_comment, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(5083), 1, - anon_sym_PIPE, - ACTIONS(5085), 1, - anon_sym_extends, - ACTIONS(4116), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4118), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7509), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [69409] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159795] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4356), 1, sym_comment, - ACTIONS(3363), 1, - anon_sym_EQ, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3660), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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, - [69461] = 32, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159842] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4357), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4894), 2, - anon_sym_COMMA, + ACTIONS(2418), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69569] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159889] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4358), 1, sym_comment, - ACTIONS(4284), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4286), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3518), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [69619] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(4322), 1, - anon_sym_LBRACK, - ACTIONS(4328), 1, - anon_sym_extends, - ACTIONS(4406), 1, - anon_sym_QMARK, - ACTIONS(4763), 1, - anon_sym_COLON, - ACTIONS(4325), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5004), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4316), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 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, - [69683] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1501), 1, - anon_sym_EQ, - ACTIONS(2141), 1, - anon_sym_QMARK, - ACTIONS(2143), 1, - anon_sym_extends, - ACTIONS(4363), 1, - anon_sym_LBRACK, - ACTIONS(4857), 1, - anon_sym_COLON, - ACTIONS(4366), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5017), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1499), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 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, - [69747] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4555), 1, - anon_sym_as, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_LBRACK, - ACTIONS(4567), 1, - anon_sym_DOT, - ACTIONS(4599), 1, - anon_sym_satisfies, - ACTIONS(5035), 1, - anon_sym_LT, - ACTIONS(5037), 1, - anon_sym_AMP_AMP, - ACTIONS(5039), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5041), 1, - anon_sym_GT_GT, - ACTIONS(5045), 1, - anon_sym_AMP, - ACTIONS(5047), 1, - anon_sym_CARET, - ACTIONS(5049), 1, - anon_sym_PIPE, - ACTIONS(5053), 1, - anon_sym_PERCENT, - ACTIONS(5055), 1, - anon_sym_STAR_STAR, - ACTIONS(5063), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5065), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4481), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(4597), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5031), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5033), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5043), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5051), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5059), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5061), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5057), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69855] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159936] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4359), 1, sym_comment, - ACTIONS(2141), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2143), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3658), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [69905] = 5, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [159983] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4360), 1, sym_comment, - ACTIONS(4559), 1, - anon_sym_LPAREN, - STATE(2301), 1, - sym_arguments, - ACTIONS(4218), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4220), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3580), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [69959] = 33, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160030] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4361), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5128), 1, + ACTIONS(3564), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70069] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5130), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70179] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5132), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70289] = 7, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160077] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4362), 1, sym_comment, - ACTIONS(3432), 1, - anon_sym_EQ, - ACTIONS(4074), 1, - anon_sym_extends, - ACTIONS(4678), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4681), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(3464), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [70347] = 9, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160124] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4363), 1, sym_comment, - ACTIONS(3381), 1, - anon_sym_EQ, - ACTIONS(3391), 1, - anon_sym_QMARK, - ACTIONS(4678), 1, - anon_sym_LBRACK, - ACTIONS(3384), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4074), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4681), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [70409] = 3, + ACTIONS(3580), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160171] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4364), 1, sym_comment, - ACTIONS(2117), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2119), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3588), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [70459] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160218] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4365), 1, sym_comment, - ACTIONS(5134), 1, - anon_sym_DOT, - ACTIONS(4396), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4398), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3474), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [70511] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160265] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4366), 1, sym_comment, - ACTIONS(4112), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4114), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7511), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [70561] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160312] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4367), 1, sym_comment, - ACTIONS(4108), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4110), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [70611] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160359] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4368), 1, sym_comment, - ACTIONS(4108), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4110), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2328), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [70661] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160406] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4369), 1, sym_comment, - ACTIONS(4108), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4110), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3590), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [70711] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160453] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4370), 1, sym_comment, - ACTIONS(4104), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4106), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7513), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [70761] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160500] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4371), 1, sym_comment, - ACTIONS(4104), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4106), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7515), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [70811] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160547] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4372), 1, sym_comment, - ACTIONS(4104), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4106), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [70861] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160594] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4373), 1, sym_comment, - ACTIONS(4100), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4102), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3676), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [70911] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160641] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4374), 1, sym_comment, - ACTIONS(4100), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4102), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [70961] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160688] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4375), 1, sym_comment, - ACTIONS(4100), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4102), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3476), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71011] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160735] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4376), 1, sym_comment, - ACTIONS(4084), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4086), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7517), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71061] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160782] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4377), 1, + sym_comment, + ACTIONS(7519), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160829] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4378), 1, sym_comment, - ACTIONS(4080), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4082), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7521), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71111] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160876] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4379), 1, sym_comment, - ACTIONS(4076), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4078), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71161] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160923] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4380), 1, sym_comment, - ACTIONS(2121), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2123), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7523), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71211] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [160970] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4381), 1, sym_comment, - ACTIONS(4304), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4306), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71261] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161017] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4382), 1, sym_comment, - ACTIONS(4158), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4160), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3618), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71311] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161064] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4383), 1, sym_comment, - ACTIONS(5140), 1, - sym_regex_flags, - ACTIONS(5136), 16, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(5138), 25, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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, - [71363] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161111] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4384), 1, sym_comment, - ACTIONS(3323), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3325), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7525), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71413] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161158] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4385), 1, sym_comment, - ACTIONS(4158), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4160), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7527), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71463] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161205] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4386), 1, sym_comment, - ACTIONS(2794), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2796), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7529), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71513] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161252] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4387), 1, sym_comment, - ACTIONS(4158), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4160), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3618), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71563] = 6, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161299] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4388), 1, sym_comment, - ACTIONS(4074), 1, - anon_sym_extends, - ACTIONS(4678), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4681), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3594), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [71619] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161346] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4389), 1, sym_comment, - ACTIONS(4249), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4251), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3620), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71669] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161393] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4390), 1, sym_comment, - ACTIONS(4249), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4251), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3622), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71719] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161440] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4391), 1, sym_comment, - ACTIONS(4249), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4251), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3624), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71769] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161487] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4392), 1, sym_comment, - ACTIONS(4288), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4290), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3624), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71819] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161534] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4393), 1, sym_comment, - ACTIONS(4288), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4290), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3596), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [71869] = 33, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161581] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4394), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5142), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71979] = 6, + ACTIONS(3644), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161628] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4395), 1, sym_comment, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(5083), 1, - anon_sym_PIPE, - ACTIONS(5085), 1, - anon_sym_extends, - ACTIONS(4134), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4136), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3646), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [72035] = 33, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161675] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4396), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5144), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72145] = 3, + ACTIONS(3646), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161722] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4397), 1, sym_comment, - ACTIONS(3291), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3293), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7531), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [72195] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161769] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4398), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(4316), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7533), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [72247] = 33, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161816] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4399), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5146), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72357] = 3, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161863] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4400), 1, sym_comment, - ACTIONS(4288), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4290), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [72407] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161910] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4401), 1, sym_comment, - ACTIONS(4406), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4328), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [72457] = 9, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [161957] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4402), 1, sym_comment, - ACTIONS(4010), 1, - anon_sym_extends, - ACTIONS(4936), 1, - anon_sym_LBRACK, - ACTIONS(5151), 1, - anon_sym_RPAREN, - ACTIONS(4939), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5095), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5148), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [72519] = 3, + ACTIONS(3516), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162004] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4403), 1, sym_comment, - ACTIONS(4340), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4342), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3648), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [72569] = 5, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162051] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4404), 1, sym_comment, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(5083), 1, - anon_sym_PIPE, - ACTIONS(4348), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4350), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3514), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [72623] = 8, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162098] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4405), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(5155), 2, - sym_number, - sym_private_property_identifier, - STATE(3225), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(3393), 27, + ACTIONS(3656), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -187135,840 +392792,507 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [72683] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1501), 1, - anon_sym_EQ, - ACTIONS(2734), 1, - sym__automatic_semicolon, - ACTIONS(1503), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 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, - [72739] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5157), 1, - anon_sym_RBRACK, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [72849] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3327), 1, - anon_sym_EQ, - ACTIONS(3391), 1, - anon_sym_QMARK, - ACTIONS(4678), 1, - anon_sym_LBRACK, - ACTIONS(3423), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4074), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4681), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [72911] = 4, + anon_sym_enum, + [162145] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4406), 1, sym_comment, - ACTIONS(1501), 1, - anon_sym_EQ, - ACTIONS(1499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [72963] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162192] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4407), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4648), 2, - anon_sym_COMMA, + ACTIONS(3668), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73071] = 6, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162239] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4408), 1, sym_comment, - ACTIONS(4010), 1, - anon_sym_extends, - ACTIONS(4936), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4939), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3566), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [73127] = 7, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162286] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4409), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_EQ, - ACTIONS(4074), 1, - anon_sym_extends, - ACTIONS(4678), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4681), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, 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, - [73185] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5159), 1, - anon_sym_RPAREN, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73295] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162333] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4410), 1, sym_comment, - ACTIONS(4412), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4414), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3600), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [73345] = 33, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162380] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4411), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4180), 1, - anon_sym_LT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4184), 1, - anon_sym_AMP_AMP, - ACTIONS(4186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 1, - anon_sym_GT_GT, - ACTIONS(4192), 1, - anon_sym_AMP, - ACTIONS(4194), 1, - anon_sym_CARET, - ACTIONS(4196), 1, - anon_sym_PIPE, - ACTIONS(4200), 1, - anon_sym_PERCENT, - ACTIONS(4202), 1, - anon_sym_STAR_STAR, - ACTIONS(4210), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4216), 1, - sym__ternary_qmark, - ACTIONS(4237), 1, - anon_sym_COMMA, - ACTIONS(5161), 1, - anon_sym_RBRACK, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4170), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4178), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4190), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4206), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4208), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4204), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [73455] = 3, + ACTIONS(3592), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162427] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4412), 1, sym_comment, - ACTIONS(3261), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3263), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3586), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [73505] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162474] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4413), 1, sym_comment, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(4425), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4427), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3650), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [73557] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162521] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4414), 1, sym_comment, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(4632), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4636), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3552), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [73609] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162568] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4415), 1, sym_comment, - ACTIONS(4140), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4138), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3552), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [73659] = 9, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162615] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4416), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(2041), 1, + ACTIONS(3552), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1788), 27, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162662] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4417), 1, + sym_comment, + ACTIONS(3468), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -187984,44 +393308,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [73721] = 9, + anon_sym_enum, + [162709] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4418), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(2043), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1806), 27, + ACTIONS(3654), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -188037,44 +393351,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [73783] = 9, + anon_sym_enum, + [162756] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4419), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(2043), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1788), 27, + ACTIONS(7535), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -188090,1554 +393394,937 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [73845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4429), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4431), 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, - [73895] = 3, + anon_sym_enum, + [162803] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4420), 1, sym_comment, - ACTIONS(4449), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4451), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [73945] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4140), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4138), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [73999] = 6, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162850] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4421), 1, sym_comment, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(5083), 1, - anon_sym_PIPE, - ACTIONS(5085), 1, - anon_sym_extends, - ACTIONS(4330), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4332), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3652), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [74055] = 6, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162897] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4422), 1, sym_comment, - ACTIONS(5081), 1, - anon_sym_AMP, - ACTIONS(5083), 1, - anon_sym_PIPE, - ACTIONS(5085), 1, - anon_sym_extends, - ACTIONS(4453), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4455), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7537), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [74111] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 1, - anon_sym_LBRACK, - ACTIONS(4328), 1, - anon_sym_extends, - ACTIONS(5004), 1, - anon_sym_RPAREN, - ACTIONS(4318), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4325), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5008), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4316), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 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, - [74173] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2143), 1, - anon_sym_extends, - ACTIONS(4363), 1, - anon_sym_LBRACK, - ACTIONS(5017), 1, - anon_sym_RPAREN, - ACTIONS(1501), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4366), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4989), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1499), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 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, - [74235] = 6, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162944] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4423), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_extends, - ACTIONS(5112), 1, - anon_sym_LBRACK, - ACTIONS(4334), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4467), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4469), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [74291] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [162991] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4424), 1, sym_comment, - ACTIONS(4483), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4485), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2414), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [74341] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4010), 1, - anon_sym_extends, - ACTIONS(4936), 1, - anon_sym_LBRACK, - ACTIONS(5167), 1, - anon_sym_RPAREN, - ACTIONS(4939), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5163), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5165), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [74403] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4322), 1, - anon_sym_LBRACK, - ACTIONS(4328), 1, - anon_sym_extends, - ACTIONS(5170), 1, - anon_sym_RPAREN, - ACTIONS(4318), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4325), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4763), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4316), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 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, - [74465] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163038] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4425), 1, sym_comment, - ACTIONS(5112), 1, - anon_sym_LBRACK, - ACTIONS(4493), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4495), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3548), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [74517] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2143), 1, - anon_sym_extends, - ACTIONS(4363), 1, - anon_sym_LBRACK, - ACTIONS(5173), 1, - anon_sym_RPAREN, - ACTIONS(1501), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4366), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4857), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1499), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 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, - [74579] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163085] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4426), 1, sym_comment, - ACTIONS(4505), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4507), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3486), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [74629] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163132] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4427), 1, sym_comment, - ACTIONS(1555), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1559), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [74678] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5176), 1, - anon_sym_LT, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [74755] = 9, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163179] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4428), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(5181), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4385), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4387), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(7539), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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_satisfies, - [74816] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163226] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4429), 1, sym_comment, - ACTIONS(1691), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1695), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7541), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [74865] = 5, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163273] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4430), 1, sym_comment, - ACTIONS(1743), 1, - sym__automatic_semicolon, - ACTIONS(1739), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1737), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1741), 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, - [74918] = 5, + ACTIONS(3526), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163320] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4431), 1, sym_comment, - ACTIONS(2758), 1, - sym__automatic_semicolon, - ACTIONS(1547), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1545), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1549), 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, - [74971] = 5, + ACTIONS(3470), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163367] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4432), 1, sym_comment, - ACTIONS(5183), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5185), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [75024] = 32, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163414] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4433), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4402), 1, + ACTIONS(3666), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5193), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, - anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5217), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75131] = 6, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163461] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4434), 1, sym_comment, - ACTIONS(4656), 1, - anon_sym_LBRACK, - ACTIONS(4431), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4659), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4652), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4654), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, 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, - [75186] = 7, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163508] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4435), 1, sym_comment, - ACTIONS(4072), 1, - anon_sym_QMARK, - ACTIONS(4074), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4681), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4678), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [75243] = 3, + ACTIONS(3462), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163555] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4436), 1, sym_comment, - ACTIONS(3805), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3809), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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] = 4, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163602] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4437), 1, sym_comment, - ACTIONS(1739), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1737), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1741), 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, - [75343] = 32, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163649] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4438), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4404), 1, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5193), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, - anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5217), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75450] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163696] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4439), 1, sym_comment, - ACTIONS(4859), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4861), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75499] = 32, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163743] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4440), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5225), 1, - anon_sym_COLON, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, - anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, - anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [75606] = 9, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163790] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4441), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4985), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2089), 27, + ACTIONS(3656), 35, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -189653,65127 +394340,77861 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, + anon_sym_object, anon_sym_property, anon_sym_signal, anon_sym_on, anon_sym_required, anon_sym_component, - [75667] = 5, + anon_sym_enum, + [163837] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4442), 1, sym_comment, - ACTIONS(5259), 1, - sym__automatic_semicolon, - ACTIONS(1547), 4, - anon_sym_COMMA, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1545), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1549), 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, - [75720] = 3, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163884] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4443), 1, sym_comment, - ACTIONS(4728), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4416), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3656), 35, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75769] = 3, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [163931] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7), 1, + sym_identifier, + ACTIONS(15), 1, + anon_sym_AT, + STATE(4444), 1, sym_comment, - ACTIONS(1701), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1705), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + STATE(4468), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4483), 1, + sym_ui_annotation, + STATE(7330), 1, + sym_ui_nested_identifier, + STATE(8532), 1, + sym_ui_object_definition, + ACTIONS(11), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75818] = 3, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [163989] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4445), 1, sym_comment, - ACTIONS(4747), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4749), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(7543), 34, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75867] = 19, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [164035] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 13, - sym__ternary_qmark, - anon_sym_as, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3265), 1, + anon_sym_LBRACE, + ACTIONS(7545), 1, + sym_identifier, + ACTIONS(7549), 1, + anon_sym_default, + ACTIONS(7551), 1, 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, - [75948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7553), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75997] = 5, - ACTIONS(3), 1, + ACTIONS(7558), 1, + anon_sym_on, + STATE(4299), 1, + sym_ui_object_initializer, + STATE(4446), 1, sym_comment, - ACTIONS(1659), 1, - sym__automatic_semicolon, - ACTIONS(1655), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1653), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1657), 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, - [76050] = 3, + ACTIONS(7555), 3, + anon_sym_readonly, + anon_sym_property, + anon_sym_required, + ACTIONS(7547), 24, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_signal, + anon_sym_component, + [164097] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4447), 1, sym_comment, - ACTIONS(4664), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4666), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(7560), 34, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_var, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [76099] = 5, - ACTIONS(3), 1, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [164143] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2957), 1, + anon_sym_namespace, + ACTIONS(2963), 1, + anon_sym_import, + ACTIONS(2965), 1, + anon_sym_var, + ACTIONS(2967), 1, + anon_sym_let, + ACTIONS(2969), 1, + anon_sym_const, + ACTIONS(2977), 1, + anon_sym_class, + ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, + anon_sym_function, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(2991), 1, + anon_sym_declare, + ACTIONS(2993), 1, + anon_sym_module, + ACTIONS(2995), 1, + anon_sym_abstract, + ACTIONS(2997), 1, + anon_sym_interface, + ACTIONS(2999), 1, + anon_sym_enum, + ACTIONS(3007), 1, + anon_sym_type, + ACTIONS(7562), 1, + anon_sym_default, + STATE(1700), 1, + sym_declaration, + STATE(1811), 1, + sym_internal_module, + STATE(4448), 1, sym_comment, - ACTIONS(1585), 1, - sym__automatic_semicolon, - ACTIONS(1581), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1579), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1583), 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, - [76152] = 32, - ACTIONS(3), 1, + STATE(6124), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(1713), 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, + [164228] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3027), 1, + anon_sym_namespace, + ACTIONS(3029), 1, + anon_sym_import, + ACTIONS(3031), 1, + anon_sym_var, + ACTIONS(3033), 1, + anon_sym_let, + ACTIONS(3035), 1, + anon_sym_const, + ACTIONS(3039), 1, + anon_sym_class, + ACTIONS(3041), 1, + anon_sym_async, + ACTIONS(3043), 1, + anon_sym_function, + ACTIONS(3045), 1, + anon_sym_declare, + ACTIONS(3049), 1, + anon_sym_abstract, + ACTIONS(3051), 1, + anon_sym_interface, + ACTIONS(3053), 1, + anon_sym_enum, + ACTIONS(3307), 1, + anon_sym_type, + ACTIONS(3309), 1, + anon_sym_module, + ACTIONS(3311), 1, + anon_sym_global, + STATE(4449), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4481), 1, - anon_sym_RBRACK, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, - anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - ACTIONS(5291), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5293), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76259] = 3, - ACTIONS(3), 1, + STATE(5910), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7415), 1, + sym_internal_module, + STATE(7423), 1, + sym_declaration, + STATE(7395), 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, + [164313] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3233), 1, + anon_sym_namespace, + ACTIONS(3235), 1, + anon_sym_import, + ACTIONS(3237), 1, + anon_sym_var, + ACTIONS(3239), 1, + anon_sym_let, + ACTIONS(3241), 1, + anon_sym_const, + ACTIONS(3245), 1, + anon_sym_class, + ACTIONS(3247), 1, + anon_sym_async, + ACTIONS(3249), 1, + anon_sym_function, + ACTIONS(3251), 1, + anon_sym_declare, + ACTIONS(3255), 1, + anon_sym_abstract, + ACTIONS(3257), 1, + anon_sym_interface, + ACTIONS(3259), 1, + anon_sym_enum, + ACTIONS(3329), 1, + anon_sym_type, + ACTIONS(3331), 1, + anon_sym_module, + ACTIONS(3333), 1, + anon_sym_global, + STATE(1094), 1, + sym_declaration, + STATE(1095), 1, + sym_internal_module, + STATE(4450), 1, sym_comment, - ACTIONS(4733), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4735), 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, - [76308] = 3, - ACTIONS(3), 1, + STATE(5758), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(1105), 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, + [164398] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3103), 1, + anon_sym_namespace, + ACTIONS(3105), 1, + anon_sym_import, + ACTIONS(3107), 1, + anon_sym_var, + ACTIONS(3109), 1, + anon_sym_let, + ACTIONS(3111), 1, + anon_sym_const, + ACTIONS(3115), 1, + anon_sym_class, + ACTIONS(3117), 1, + anon_sym_async, + ACTIONS(3119), 1, + anon_sym_function, + ACTIONS(3121), 1, + anon_sym_declare, + ACTIONS(3125), 1, + anon_sym_abstract, + ACTIONS(3127), 1, + anon_sym_interface, + ACTIONS(3129), 1, + anon_sym_enum, + ACTIONS(3301), 1, + anon_sym_type, + ACTIONS(3303), 1, + anon_sym_module, + ACTIONS(3305), 1, + anon_sym_global, + STATE(4227), 1, + sym_internal_module, + STATE(4242), 1, + sym_declaration, + STATE(4451), 1, sym_comment, - ACTIONS(4737), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4739), 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, - [76357] = 5, - ACTIONS(3), 1, + STATE(5857), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(4253), 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, + [164483] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2957), 1, + anon_sym_namespace, + ACTIONS(2963), 1, + anon_sym_import, + ACTIONS(2965), 1, + anon_sym_var, + ACTIONS(2967), 1, + anon_sym_let, + ACTIONS(2969), 1, + anon_sym_const, + ACTIONS(2977), 1, + anon_sym_class, + ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, + anon_sym_function, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(2991), 1, + anon_sym_declare, + ACTIONS(2995), 1, + anon_sym_abstract, + ACTIONS(2997), 1, + anon_sym_interface, + ACTIONS(2999), 1, + anon_sym_enum, + ACTIONS(3007), 1, + anon_sym_type, + ACTIONS(3009), 1, + anon_sym_module, + ACTIONS(3011), 1, + anon_sym_global, + STATE(1810), 1, + sym_declaration, + STATE(1811), 1, + sym_internal_module, + STATE(4452), 1, + sym_comment, + STATE(6124), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(1713), 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, + [164568] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3153), 1, + anon_sym_namespace, + ACTIONS(3155), 1, + anon_sym_import, + ACTIONS(3157), 1, + anon_sym_var, + ACTIONS(3159), 1, + anon_sym_let, + ACTIONS(3161), 1, + anon_sym_const, + ACTIONS(3165), 1, + anon_sym_class, + ACTIONS(3167), 1, + anon_sym_async, + ACTIONS(3169), 1, + anon_sym_function, + ACTIONS(3171), 1, + anon_sym_declare, + ACTIONS(3175), 1, + anon_sym_abstract, + ACTIONS(3177), 1, + anon_sym_interface, + ACTIONS(3179), 1, + anon_sym_enum, + ACTIONS(3295), 1, + anon_sym_type, + ACTIONS(3297), 1, + anon_sym_module, + ACTIONS(3299), 1, + anon_sym_global, + STATE(1493), 1, + sym_internal_module, + STATE(1539), 1, + sym_declaration, + STATE(4453), 1, + sym_comment, + STATE(5782), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(1503), 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, + [164653] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3363), 1, + anon_sym_type, + ACTIONS(3365), 1, + anon_sym_namespace, + ACTIONS(3367), 1, + anon_sym_import, + ACTIONS(3369), 1, + anon_sym_var, + ACTIONS(3371), 1, + anon_sym_let, + ACTIONS(3373), 1, + anon_sym_const, + ACTIONS(3375), 1, + anon_sym_class, + ACTIONS(3377), 1, + anon_sym_async, + ACTIONS(3379), 1, + anon_sym_function, + ACTIONS(3381), 1, + anon_sym_declare, + ACTIONS(3383), 1, + anon_sym_module, + ACTIONS(3385), 1, + anon_sym_abstract, + ACTIONS(3387), 1, + anon_sym_global, + ACTIONS(3389), 1, + anon_sym_interface, + ACTIONS(3391), 1, + anon_sym_enum, + STATE(4454), 1, + sym_comment, + STATE(5811), 1, + aux_sym_export_statement_repeat1, + STATE(6052), 1, + sym_internal_module, + STATE(6196), 1, + sym_declaration, + STATE(6520), 1, + sym_decorator, + STATE(6178), 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, + [164738] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3153), 1, + anon_sym_namespace, + ACTIONS(3155), 1, + anon_sym_import, + ACTIONS(3157), 1, + anon_sym_var, + ACTIONS(3159), 1, + anon_sym_let, + ACTIONS(3161), 1, + anon_sym_const, + ACTIONS(3165), 1, + anon_sym_class, + ACTIONS(3167), 1, + anon_sym_async, + ACTIONS(3169), 1, + anon_sym_function, + ACTIONS(3171), 1, + anon_sym_declare, + ACTIONS(3173), 1, + anon_sym_module, + ACTIONS(3175), 1, + anon_sym_abstract, + ACTIONS(3177), 1, + anon_sym_interface, + ACTIONS(3179), 1, + anon_sym_enum, + ACTIONS(3295), 1, + anon_sym_type, + ACTIONS(7564), 1, + anon_sym_default, + STATE(1474), 1, + sym_declaration, + STATE(1493), 1, + sym_internal_module, + STATE(4455), 1, sym_comment, - ACTIONS(2736), 1, - sym__automatic_semicolon, - ACTIONS(1523), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1521), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1525), 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, - [76410] = 3, - ACTIONS(3), 1, + STATE(5782), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(1503), 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, + [164823] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3233), 1, + anon_sym_namespace, + ACTIONS(3235), 1, + anon_sym_import, + ACTIONS(3237), 1, + anon_sym_var, + ACTIONS(3239), 1, + anon_sym_let, + ACTIONS(3241), 1, + anon_sym_const, + ACTIONS(3245), 1, + anon_sym_class, + ACTIONS(3247), 1, + anon_sym_async, + ACTIONS(3249), 1, + anon_sym_function, + ACTIONS(3251), 1, + anon_sym_declare, + ACTIONS(3253), 1, + anon_sym_module, + ACTIONS(3255), 1, + anon_sym_abstract, + ACTIONS(3257), 1, + anon_sym_interface, + ACTIONS(3259), 1, + anon_sym_enum, + ACTIONS(3329), 1, + anon_sym_type, + ACTIONS(7566), 1, + anon_sym_default, + STATE(1075), 1, + sym_declaration, + STATE(1095), 1, + sym_internal_module, + STATE(4456), 1, sym_comment, - ACTIONS(4741), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4743), 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, - [76459] = 3, + STATE(5758), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(1105), 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, + [164908] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7568), 1, + sym_identifier, + STATE(4457), 1, sym_comment, - ACTIONS(4745), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4471), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + STATE(5610), 1, + sym_ui_nested_identifier, + STATE(5865), 1, + sym_string, + ACTIONS(7570), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [76508] = 5, - ACTIONS(3), 1, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [164963] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3103), 1, + anon_sym_namespace, + ACTIONS(3105), 1, + anon_sym_import, + ACTIONS(3107), 1, + anon_sym_var, + ACTIONS(3109), 1, + anon_sym_let, + ACTIONS(3111), 1, + anon_sym_const, + ACTIONS(3115), 1, + anon_sym_class, + ACTIONS(3117), 1, + anon_sym_async, + ACTIONS(3119), 1, + anon_sym_function, + ACTIONS(3121), 1, + anon_sym_declare, + ACTIONS(3123), 1, + anon_sym_module, + ACTIONS(3125), 1, + anon_sym_abstract, + ACTIONS(3127), 1, + anon_sym_interface, + ACTIONS(3129), 1, + anon_sym_enum, + ACTIONS(3301), 1, + anon_sym_type, + ACTIONS(7572), 1, + anon_sym_default, + STATE(4227), 1, + sym_internal_module, + STATE(4234), 1, + sym_declaration, + STATE(4458), 1, sym_comment, - ACTIONS(2760), 1, - sym__automatic_semicolon, - ACTIONS(1715), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1713), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1717), 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, - [76561] = 5, - ACTIONS(3), 1, + STATE(5857), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(4253), 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, + [165048] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3195), 1, + anon_sym_namespace, + ACTIONS(3197), 1, + anon_sym_import, + ACTIONS(3199), 1, + anon_sym_var, + ACTIONS(3201), 1, + anon_sym_let, + ACTIONS(3203), 1, + anon_sym_const, + ACTIONS(3207), 1, + anon_sym_class, + ACTIONS(3209), 1, + anon_sym_async, + ACTIONS(3211), 1, + anon_sym_function, + ACTIONS(3213), 1, + anon_sym_declare, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3219), 1, + anon_sym_interface, + ACTIONS(3221), 1, + anon_sym_enum, + ACTIONS(3319), 1, + anon_sym_type, + ACTIONS(3321), 1, + anon_sym_module, + ACTIONS(3323), 1, + anon_sym_global, + STATE(1299), 1, + sym_declaration, + STATE(1306), 1, + sym_internal_module, + STATE(4459), 1, sym_comment, - ACTIONS(1697), 1, - sym__automatic_semicolon, - ACTIONS(1693), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1691), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1695), 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, - [76614] = 32, - ACTIONS(3), 1, + STATE(5766), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(1314), 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, + [165133] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3195), 1, + anon_sym_namespace, + ACTIONS(3197), 1, + anon_sym_import, + ACTIONS(3199), 1, + anon_sym_var, + ACTIONS(3201), 1, + anon_sym_let, + ACTIONS(3203), 1, + anon_sym_const, + ACTIONS(3207), 1, + anon_sym_class, + ACTIONS(3209), 1, + anon_sym_async, + ACTIONS(3211), 1, + anon_sym_function, + ACTIONS(3213), 1, + anon_sym_declare, + ACTIONS(3215), 1, + anon_sym_module, + ACTIONS(3217), 1, + anon_sym_abstract, + ACTIONS(3219), 1, + anon_sym_interface, + ACTIONS(3221), 1, + anon_sym_enum, + ACTIONS(3319), 1, + anon_sym_type, + ACTIONS(7574), 1, + anon_sym_default, + STATE(1271), 1, + sym_declaration, + STATE(1306), 1, + sym_internal_module, + STATE(4460), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4479), 1, - anon_sym_RBRACK, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, - anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - ACTIONS(5291), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5293), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76721] = 5, - ACTIONS(3), 1, + STATE(5766), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(1314), 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, + [165218] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3065), 1, + anon_sym_namespace, + ACTIONS(3067), 1, + anon_sym_import, + ACTIONS(3069), 1, + anon_sym_var, + ACTIONS(3071), 1, + anon_sym_let, + ACTIONS(3073), 1, + anon_sym_const, + ACTIONS(3077), 1, + anon_sym_class, + ACTIONS(3079), 1, + anon_sym_async, + ACTIONS(3081), 1, + anon_sym_function, + ACTIONS(3083), 1, + anon_sym_declare, + ACTIONS(3085), 1, + anon_sym_module, + ACTIONS(3087), 1, + anon_sym_abstract, + ACTIONS(3089), 1, + anon_sym_interface, + ACTIONS(3091), 1, + anon_sym_enum, + ACTIONS(3313), 1, + anon_sym_type, + ACTIONS(7576), 1, + anon_sym_default, + STATE(4132), 1, + sym_internal_module, + STATE(4142), 1, + sym_declaration, + STATE(4461), 1, sym_comment, - ACTIONS(5183), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5185), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [76774] = 8, - ACTIONS(3), 1, + STATE(5836), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(4084), 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, + [165303] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3065), 1, + anon_sym_namespace, + ACTIONS(3067), 1, + anon_sym_import, + ACTIONS(3069), 1, + anon_sym_var, + ACTIONS(3071), 1, + anon_sym_let, + ACTIONS(3073), 1, + anon_sym_const, + ACTIONS(3077), 1, + anon_sym_class, + ACTIONS(3079), 1, + anon_sym_async, + ACTIONS(3081), 1, + anon_sym_function, + ACTIONS(3083), 1, + anon_sym_declare, + ACTIONS(3087), 1, + anon_sym_abstract, + ACTIONS(3089), 1, + anon_sym_interface, + ACTIONS(3091), 1, + anon_sym_enum, + ACTIONS(3313), 1, + anon_sym_type, + ACTIONS(3315), 1, + anon_sym_module, + ACTIONS(3317), 1, + anon_sym_global, + STATE(4132), 1, + sym_internal_module, + STATE(4138), 1, + sym_declaration, + STATE(4462), 1, sym_comment, - ACTIONS(1501), 1, - anon_sym_EQ, - ACTIONS(4363), 1, - anon_sym_LBRACK, - ACTIONS(4857), 1, - anon_sym_COLON, - ACTIONS(4366), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2143), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(1499), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 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, - [76833] = 7, + STATE(5836), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(4084), 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, + [165388] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3363), 1, + anon_sym_type, + ACTIONS(3365), 1, + anon_sym_namespace, + ACTIONS(3367), 1, + anon_sym_import, + ACTIONS(3369), 1, + anon_sym_var, + ACTIONS(3371), 1, + anon_sym_let, + ACTIONS(3373), 1, + anon_sym_const, + ACTIONS(3375), 1, + anon_sym_class, + ACTIONS(3377), 1, + anon_sym_async, + ACTIONS(3379), 1, + anon_sym_function, + ACTIONS(3381), 1, + anon_sym_declare, + ACTIONS(3385), 1, + anon_sym_abstract, + ACTIONS(3389), 1, + anon_sym_interface, + ACTIONS(3391), 1, + anon_sym_enum, + ACTIONS(5239), 1, + anon_sym_module, + ACTIONS(7578), 1, + anon_sym_default, + STATE(4463), 1, + sym_comment, + STATE(5811), 1, + aux_sym_export_statement_repeat1, + STATE(6052), 1, + sym_internal_module, + STATE(6070), 1, + sym_declaration, + STATE(6520), 1, + sym_decorator, + STATE(6178), 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, + [165473] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3027), 1, + anon_sym_namespace, + ACTIONS(3029), 1, + anon_sym_import, + ACTIONS(3031), 1, + anon_sym_var, + ACTIONS(3033), 1, + anon_sym_let, + ACTIONS(3035), 1, + anon_sym_const, + ACTIONS(3039), 1, + anon_sym_class, + ACTIONS(3041), 1, + anon_sym_async, + ACTIONS(3043), 1, + anon_sym_function, + ACTIONS(3045), 1, + anon_sym_declare, + ACTIONS(3047), 1, + anon_sym_module, + ACTIONS(3049), 1, + anon_sym_abstract, + ACTIONS(3051), 1, + anon_sym_interface, + ACTIONS(3053), 1, + anon_sym_enum, + ACTIONS(3307), 1, + anon_sym_type, + ACTIONS(7580), 1, + anon_sym_default, + STATE(4464), 1, + sym_comment, + STATE(5910), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(7415), 1, + sym_internal_module, + STATE(7502), 1, + sym_declaration, + STATE(7395), 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, + [165558] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4465), 1, sym_comment, - ACTIONS(3467), 1, - anon_sym_EQ, - ACTIONS(4074), 1, - anon_sym_extends, - ACTIONS(4678), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4681), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [76890] = 5, + ACTIONS(7582), 32, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_import, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_pragma, + [165602] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4466), 1, sym_comment, - ACTIONS(4140), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4138), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [76943] = 7, + ACTIONS(7584), 32, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_import, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_pragma, + [165646] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4467), 1, sym_comment, - ACTIONS(4429), 1, - anon_sym_QMARK, - ACTIONS(4431), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4659), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4656), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4652), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4654), 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, - [77000] = 8, + ACTIONS(7586), 32, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_import, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_pragma, + [165690] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7588), 1, + anon_sym_AT, + STATE(4483), 1, + sym_ui_annotation, + STATE(4468), 2, sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3446), 1, - anon_sym_COLON, - ACTIONS(4678), 1, - anon_sym_LBRACK, - ACTIONS(4681), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4074), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [77059] = 4, + aux_sym_ui_annotated_object_repeat1, + ACTIONS(7426), 29, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [165738] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4469), 1, sym_comment, - ACTIONS(1655), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1653), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1657), 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, - [77110] = 4, + ACTIONS(7584), 32, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_import, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_pragma, + [165782] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4470), 1, sym_comment, - ACTIONS(1581), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1579), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1583), 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, - [77161] = 5, + ACTIONS(7591), 32, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_import, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_pragma, + [165826] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(5295), 1, - sym__automatic_semicolon, - ACTIONS(1523), 4, - anon_sym_COMMA, - anon_sym_RBRACE, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7593), 1, + sym_identifier, + ACTIONS(7597), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1521), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1525), 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, - [77214] = 5, + ACTIONS(7599), 1, + sym__automatic_semicolon, + STATE(4471), 1, + sym_comment, + STATE(6716), 1, + sym_ui_nested_identifier, + ACTIONS(7595), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [165878] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4472), 1, sym_comment, - ACTIONS(5297), 1, - sym__automatic_semicolon, - ACTIONS(1715), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1713), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1717), 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, - [77267] = 4, + ACTIONS(7601), 32, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_import, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_pragma, + [165922] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4473), 1, sym_comment, - ACTIONS(1693), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1691), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1695), 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, - [77318] = 6, + ACTIONS(7603), 32, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_import, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_pragma, + [165966] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4474), 1, sym_comment, - ACTIONS(4074), 1, - anon_sym_extends, - ACTIONS(4681), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4678), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [77373] = 32, + ACTIONS(7605), 32, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_import, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_pragma, + [166010] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4475), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4477), 1, - anon_sym_RBRACK, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, - anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - ACTIONS(5291), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5293), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77480] = 5, + ACTIONS(7607), 32, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_import, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_pragma, + [166054] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4476), 1, sym_comment, - ACTIONS(5183), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5185), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [77533] = 3, + ACTIONS(7609), 32, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_import, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_pragma, + [166098] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4477), 1, sym_comment, - ACTIONS(4751), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4753), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(7611), 32, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_import, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [77582] = 26, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_pragma, + [166142] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4478), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, - anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, - anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [77677] = 27, + ACTIONS(7613), 32, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_import, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_pragma, + [166186] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4479), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, - anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, - anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [77774] = 8, + ACTIONS(7615), 32, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_import, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_pragma, + [166230] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7617), 1, + sym_identifier, + STATE(4263), 1, + sym_ui_object_definition, + STATE(4480), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(4322), 1, - anon_sym_LBRACK, - ACTIONS(4763), 1, - anon_sym_COLON, - ACTIONS(4325), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4328), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4316), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 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, - [77833] = 32, + STATE(7153), 1, + sym_ui_nested_identifier, + ACTIONS(7619), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166279] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7), 1, + sym_identifier, + STATE(4481), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, - anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, - anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - ACTIONS(5299), 1, - anon_sym_COLON, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77940] = 3, + STATE(7330), 1, + sym_ui_nested_identifier, + STATE(8000), 1, + sym_ui_object_definition, + ACTIONS(11), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166328] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7621), 1, + sym_identifier, + STATE(4482), 1, sym_comment, - ACTIONS(4765), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4767), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + STATE(8498), 1, + sym_mapped_type_clause, + ACTIONS(7623), 29, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [77989] = 3, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166375] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4483), 1, sym_comment, - ACTIONS(1713), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1717), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(7560), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78038] = 19, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166417] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2384), 1, anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5283), 1, - anon_sym_PERCENT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [78119] = 14, - ACTIONS(3), 1, + STATE(4484), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5301), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_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, - [78190] = 32, + ACTIONS(5799), 29, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166461] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4485), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4408), 1, + ACTIONS(7443), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5193), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, - anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5217), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78297] = 3, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166503] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4486), 1, sym_comment, - ACTIONS(1521), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1525), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(7543), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78346] = 32, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166545] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4487), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4475), 1, - anon_sym_RBRACK, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, - anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - ACTIONS(5291), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5293), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78453] = 32, + ACTIONS(7445), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166587] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7625), 1, + sym_identifier, + ACTIONS(7629), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4416), 1, - anon_sym_COLON, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, - anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, - anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78560] = 3, - ACTIONS(3), 1, + STATE(4488), 1, sym_comment, - ACTIONS(1579), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1583), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(7627), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78609] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 1, - anon_sym_EQ, - ACTIONS(4678), 1, - anon_sym_LBRACK, - ACTIONS(4074), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4681), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [78666] = 32, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166633] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2396), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4410), 1, - anon_sym_COLON, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, - anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, - anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78773] = 32, - ACTIONS(3), 1, + STATE(4489), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_RBRACK, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, - anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - ACTIONS(5291), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5293), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78880] = 32, + ACTIONS(5799), 29, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166677] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7593), 1, + sym_identifier, + STATE(4490), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4408), 1, - anon_sym_COLON, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, - anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, - anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78987] = 3, + STATE(6716), 1, + sym_ui_nested_identifier, + ACTIONS(7595), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166723] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7631), 1, + sym_identifier, + STATE(4491), 1, sym_comment, - ACTIONS(1653), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1657), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + STATE(6752), 1, + sym_ui_nested_identifier, + ACTIONS(7633), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79036] = 3, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166769] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7629), 1, + anon_sym_DOT, + ACTIONS(7635), 1, + sym_identifier, + STATE(4492), 1, sym_comment, - ACTIONS(4863), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(7637), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79085] = 32, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166815] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7639), 1, + sym_identifier, + STATE(4493), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4471), 1, - anon_sym_RBRACK, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, - anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - ACTIONS(5291), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5293), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [79192] = 6, + ACTIONS(7641), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166858] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4494), 1, sym_comment, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(4662), 1, + ACTIONS(7643), 29, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - ACTIONS(5304), 1, - anon_sym_in, - ACTIONS(4632), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4636), 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, - [79247] = 32, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166899] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7645), 1, + sym_identifier, + STATE(4495), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, - anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, - anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - ACTIONS(5307), 1, - anon_sym_COLON, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [79354] = 6, + ACTIONS(7647), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166942] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4496), 1, sym_comment, - ACTIONS(1501), 1, - anon_sym_EQ, - ACTIONS(4857), 1, + ACTIONS(7649), 29, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - ACTIONS(5309), 1, - anon_sym_in, - ACTIONS(1499), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [166983] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4497), 1, + sym_comment, + ACTIONS(4319), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5603), 19, + anon_sym_export, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79409] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4431), 1, - anon_sym_extends, - ACTIONS(4659), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4656), 3, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4652), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4654), 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, - [79464] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, + anon_sym_class, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4410), 1, - anon_sym_of, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5193), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5217), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [79571] = 32, - ACTIONS(3), 1, + anon_sym_AT, + anon_sym_abstract, + anon_sym_extends, + [167018] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4498), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, + ACTIONS(4323), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5605), 19, + anon_sym_export, anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4404), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, - anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, - anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [79678] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, + anon_sym_class, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4416), 1, - anon_sym_of, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5193), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5217), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [79785] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + anon_sym_AT, + anon_sym_abstract, + anon_sym_extends, + [167053] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, + ACTIONS(4515), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, + ACTIONS(4517), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4402), 1, - anon_sym_COLON, - ACTIONS(5227), 1, + ACTIONS(7651), 1, anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, - anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, - anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [79892] = 5, - ACTIONS(3), 1, + STATE(4499), 1, sym_comment, - ACTIONS(5312), 2, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + ACTIONS(4505), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5314), 3, + ACTIONS(4495), 13, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_extends, + [167100] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(7651), 1, + anon_sym_LT, + ACTIONS(7653), 1, anon_sym_DOT, + ACTIONS(7655), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79945] = 5, - ACTIONS(3), 1, + STATE(4500), 1, sym_comment, - ACTIONS(5312), 2, + STATE(4555), 1, + sym_arguments, + STATE(4598), 1, + sym_type_arguments, + ACTIONS(5524), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5314), 3, + ACTIONS(5526), 13, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_extends, + [167147] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(7651), 1, + anon_sym_LT, + ACTIONS(7657), 1, anon_sym_DOT, + ACTIONS(7659), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79998] = 28, - ACTIONS(3), 1, + STATE(4501), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, - anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, + STATE(4558), 1, sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 5, - sym__ternary_qmark, + STATE(4586), 1, + sym_type_arguments, + ACTIONS(5518), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5520), 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_QMARK_QMARK, - anon_sym_satisfies, - [80097] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(5227), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4385), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4387), 22, - sym__ternary_qmark, + anon_sym_extends, + [167194] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4502), 1, + sym_comment, + ACTIONS(4315), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5561), 19, + anon_sym_export, 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_class, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [80158] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1729), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1727), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1731), 23, - sym__ternary_qmark, + anon_sym_AT, + anon_sym_abstract, + anon_sym_extends, + [167229] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2376), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4503), 1, + sym_comment, + ACTIONS(2378), 19, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_while, + 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, - [80209] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4936), 1, - anon_sym_LBRACK, - ACTIONS(4010), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4939), 3, + anon_sym_RBRACK, anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 25, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [167263] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2380), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4504), 1, + sym_comment, + ACTIONS(2382), 19, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_else, anon_sym_LPAREN, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_while, 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, - [80264] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - ACTIONS(5316), 1, - anon_sym_COLON, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80371] = 5, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [167297] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4505), 1, sym_comment, - ACTIONS(5318), 1, - sym__automatic_semicolon, - ACTIONS(1571), 4, + ACTIONS(5959), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5961), 17, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1569), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1573), 23, - sym__ternary_qmark, - anon_sym_as, 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80424] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1591), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1589), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1593), 23, - sym__ternary_qmark, + anon_sym_LT, + anon_sym_extends, + [167330] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4506), 1, + sym_comment, + ACTIONS(5808), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5810), 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80475] = 4, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [167363] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4507), 1, sym_comment, - ACTIONS(1641), 5, - sym__automatic_semicolon, + ACTIONS(5942), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5944), 17, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1639), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1643), 23, - sym__ternary_qmark, + anon_sym_LT, + anon_sym_extends, + [167396] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4508), 1, + sym_comment, + ACTIONS(5816), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5818), 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80526] = 5, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [167429] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4509), 1, sym_comment, - ACTIONS(5312), 2, + ACTIONS(6043), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5314), 3, + ACTIONS(6045), 17, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, + anon_sym_LT, + anon_sym_extends, + [167462] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4510), 1, + sym_comment, + ACTIONS(5812), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5814), 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80579] = 4, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [167495] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4511), 1, sym_comment, - ACTIONS(3440), 1, + ACTIONS(6025), 2, anon_sym_EQ, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + anon_sym_QMARK, + ACTIONS(6027), 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_SLASH, - anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 27, + anon_sym_LT, + anon_sym_extends, + [167528] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2376), 1, + anon_sym_PIPE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4512), 1, + sym_comment, + ACTIONS(2378), 18, sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_EQ, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_with, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_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, - [80630] = 14, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + aux_sym_ui_version_specifier_token1, + [167561] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4513), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(6043), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6045), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5320), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [80701] = 19, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [167594] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4514), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(6051), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6053), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [80782] = 26, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [167627] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4515), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5812), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5814), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [80877] = 27, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [167660] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4516), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(6051), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6053), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [80974] = 17, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [167693] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4517), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5948), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5950), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5320), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [81051] = 23, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [167726] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4518), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(6051), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6053), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 3, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [81140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1737), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1741), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_extends, + [167759] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4519), 1, + sym_comment, + ACTIONS(5816), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5818), 17, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [81189] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(4763), 1, - anon_sym_of, - ACTIONS(5323), 1, - anon_sym_in, - ACTIONS(4316), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 26, + anon_sym_LT, + anon_sym_extends, + [167792] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2380), 1, + anon_sym_PIPE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4520), 1, + sym_comment, + ACTIONS(2382), 18, sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_EQ, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_with, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_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, - [81244] = 5, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + aux_sym_ui_version_specifier_token1, + [167825] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4521), 1, sym_comment, - ACTIONS(5326), 2, + ACTIONS(6043), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5328), 3, + ACTIONS(6045), 17, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, + anon_sym_LT, + anon_sym_extends, + [167858] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4522), 1, + sym_comment, + ACTIONS(6025), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6027), 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [81297] = 21, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [167891] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4523), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5938), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5940), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5283), 1, - anon_sym_PERCENT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4418), 5, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [81382] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1545), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1549), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_extends, + [167924] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4524), 1, + sym_comment, + ACTIONS(6025), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6027), 17, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [81431] = 24, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [167957] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4525), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(6021), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6023), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, anon_sym_AMP, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4418), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [81522] = 25, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [167990] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4526), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5822), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5824), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4418), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [81615] = 16, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [168023] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4527), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5607), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5609), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5320), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [81690] = 17, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [168056] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4528), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5822), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5824), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5320), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [81767] = 21, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [168089] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4529), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5607), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5609), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4418), 5, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [81852] = 28, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [168122] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4530), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5856), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5858), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5193), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [81951] = 32, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [168155] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4531), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5863), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5865), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4471), 1, - anon_sym_of, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5193), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5217), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82058] = 32, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [168188] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4532), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5856), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5858), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4174), 1, - anon_sym_COLON, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82165] = 16, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [168221] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4533), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5863), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5865), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5176), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5283), 1, - anon_sym_PERCENT, - STATE(3995), 1, + anon_sym_extends, + [168254] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5496), 1, + anon_sym_EQ, + ACTIONS(7651), 1, + anon_sym_LT, + ACTIONS(7661), 1, + anon_sym_DOT, + ACTIONS(7663), 1, + anon_sym_is, + STATE(4534), 1, + sym_comment, + STATE(4639), 1, sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 10, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4546), 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_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 15, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [168295] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4535), 1, + sym_comment, + ACTIONS(5795), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5797), 17, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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, - [82240] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1733), 1, - sym__automatic_semicolon, - ACTIONS(1729), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1727), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1731), 25, - sym__ternary_qmark, + anon_sym_LT, + anon_sym_extends, + [168328] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4536), 1, + sym_comment, + ACTIONS(5948), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5950), 17, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4668), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4404), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_LT, + anon_sym_extends, + [168361] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4537), 1, + sym_comment, + ACTIONS(5948), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5950), 17, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82342] = 32, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [168394] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4538), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5942), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5944), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - ACTIONS(5330), 1, - anon_sym_COLON, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82449] = 32, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [168427] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4539), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5959), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5961), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - ACTIONS(5332), 1, - anon_sym_COLON, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82556] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4724), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, + anon_sym_extends, + [168460] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4540), 1, + sym_comment, + ACTIONS(5959), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5961), 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_SLASH, - anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4726), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_LT, + anon_sym_extends, + [168493] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4541), 1, + sym_comment, + ACTIONS(5942), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5944), 17, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [82605] = 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [168526] = 16, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7665), 1, + sym_identifier, + ACTIONS(7667), 1, + anon_sym_STAR, + ACTIONS(7669), 1, + anon_sym_type, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7673), 1, + anon_sym_typeof, + STATE(4542), 1, sym_comment, - ACTIONS(5334), 1, + STATE(6335), 1, + sym_import_require_clause, + STATE(6336), 1, + sym_string, + STATE(7944), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7675), 5, anon_sym_LPAREN, - ACTIONS(5337), 1, - anon_sym_COLON, - ACTIONS(5339), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT, - ACTIONS(5342), 1, - anon_sym_QMARK, - ACTIONS(4674), 12, + anon_sym_BQUOTE, + [168580] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4676), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7677), 1, + sym_identifier, + ACTIONS(7679), 1, + anon_sym_type, + ACTIONS(7681), 1, + anon_sym_typeof, + STATE(4543), 1, + sym_comment, + STATE(6374), 1, + sym_import_require_clause, + STATE(6379), 1, + sym_string, + STATE(8128), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7675), 5, + 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_LT, anon_sym_BQUOTE, - anon_sym_satisfies, - [82662] = 5, + [168634] = 16, ACTIONS(3), 1, - sym_comment, - ACTIONS(2770), 1, - sym__automatic_semicolon, - ACTIONS(1571), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1569), 13, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1573), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7683), 1, + sym_identifier, + ACTIONS(7685), 1, + anon_sym_type, + ACTIONS(7687), 1, + anon_sym_typeof, + STATE(4544), 1, + sym_comment, + STATE(6451), 1, + sym_import_require_clause, + STATE(6452), 1, + sym_string, + STATE(8029), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7675), 5, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_LT, anon_sym_BQUOTE, - anon_sym_satisfies, - [82715] = 25, + [168688] = 16, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7689), 1, + sym_identifier, + ACTIONS(7691), 1, + anon_sym_type, + ACTIONS(7693), 1, + anon_sym_typeof, + STATE(4545), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(6396), 1, + sym_import_require_clause, + STATE(6454), 1, + sym_string, + STATE(7896), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7675), 5, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, anon_sym_LT, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5283), 1, - anon_sym_PERCENT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4418), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [82808] = 24, + anon_sym_BQUOTE, + [168742] = 16, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7695), 1, + sym_identifier, + ACTIONS(7697), 1, + anon_sym_type, + ACTIONS(7699), 1, + anon_sym_typeof, + STATE(4546), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(6343), 1, + sym_string, + STATE(6346), 1, + sym_import_require_clause, + STATE(7859), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7675), 5, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, anon_sym_LT, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5283), 1, - anon_sym_PERCENT, - STATE(3995), 1, + anon_sym_BQUOTE, + [168796] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5496), 1, + anon_sym_EQ, + ACTIONS(7651), 1, + anon_sym_LT, + ACTIONS(7661), 1, + anon_sym_DOT, + STATE(4547), 1, + sym_comment, + STATE(4639), 1, sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4418), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 8, - sym__ternary_qmark, + ACTIONS(4546), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [82899] = 17, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [168834] = 16, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7701), 1, + sym_identifier, + ACTIONS(7703), 1, + anon_sym_type, + ACTIONS(7705), 1, + anon_sym_typeof, + STATE(4548), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(6328), 1, + sym_string, + STATE(6329), 1, + sym_import_require_clause, + STATE(8092), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7675), 5, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5301), 1, anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, + anon_sym_BQUOTE, + [168888] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 8, - anon_sym_BANG, - anon_sym_in, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7707), 1, + sym_identifier, + ACTIONS(7709), 1, + anon_sym_type, + ACTIONS(7711), 1, + anon_sym_typeof, + STATE(4549), 1, + sym_comment, + STATE(6548), 1, + sym_import_require_clause, + STATE(6549), 1, + sym_string, + STATE(8135), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7675), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [168942] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4397), 1, + anon_sym_EQ, + STATE(4550), 1, + sym_comment, + ACTIONS(5765), 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, + [168973] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3510), 1, + anon_sym_EQ, + STATE(4551), 1, + sym_comment, + ACTIONS(5854), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_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, - [82976] = 23, - ACTIONS(3), 1, + anon_sym_QMARK, + anon_sym_extends, + [169004] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4399), 1, + anon_sym_EQ, + STATE(4552), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5767), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5283), 1, - anon_sym_PERCENT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 3, - anon_sym_BANG, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [83065] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, anon_sym_BQUOTE, - ACTIONS(3966), 1, + anon_sym_QMARK, + anon_sym_extends, + [169035] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4389), 1, + anon_sym_EQ, + STATE(4553), 1, + sym_comment, + ACTIONS(5897), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(5176), 1, - anon_sym_LT, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5283), 1, - anon_sym_PERCENT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 8, - anon_sym_BANG, - anon_sym_in, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 15, - sym__ternary_qmark, + anon_sym_BQUOTE, + anon_sym_QMARK, + anon_sym_extends, + [169066] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3518), 1, + anon_sym_EQ, + STATE(4554), 1, + sym_comment, + ACTIONS(5793), 16, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_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, - [83142] = 27, - ACTIONS(3), 1, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [169097] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4555), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, + ACTIONS(5663), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5665), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, + anon_sym_extends, + [169128] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4351), 1, + anon_sym_EQ, + STATE(4556), 1, + sym_comment, + ACTIONS(5899), 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, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 6, - sym__ternary_qmark, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, + anon_sym_extends, + [169159] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3530), 1, + anon_sym_EQ, + STATE(4557), 1, + sym_comment, + ACTIONS(6014), 16, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [83239] = 26, - ACTIONS(3), 1, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [169190] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4558), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, + ACTIONS(5675), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5677), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 7, - sym__ternary_qmark, + anon_sym_extends, + [169221] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4325), 1, + anon_sym_EQ, + STATE(4559), 1, + sym_comment, + ACTIONS(5763), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [83334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4720), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4722), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_BQUOTE, + anon_sym_QMARK, + anon_sym_extends, + [169252] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4343), 1, + anon_sym_EQ, + STATE(4560), 1, + sym_comment, + ACTIONS(5998), 16, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, + anon_sym_extends, + [169283] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4561), 1, + sym_comment, + ACTIONS(5830), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5832), 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83383] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [169314] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3526), 1, + anon_sym_EQ, + STATE(4562), 1, sym_comment, - ACTIONS(4652), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(5932), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4654), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [169345] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3498), 1, + anon_sym_EQ, + STATE(4563), 1, + sym_comment, + ACTIONS(5689), 16, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_while, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [169376] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7713), 1, anon_sym_DOT, + ACTIONS(7715), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83432] = 5, - ACTIONS(3), 1, + STATE(4564), 1, sym_comment, - ACTIONS(5344), 2, + ACTIONS(5978), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5346), 3, + ACTIONS(5980), 13, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, + anon_sym_extends, + [169411] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4407), 1, + anon_sym_EQ, + STATE(4565), 1, + sym_comment, + ACTIONS(5889), 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_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_BQUOTE, - anon_sym_satisfies, - [83485] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3327), 1, - anon_sym_EQ, - ACTIONS(4072), 1, anon_sym_QMARK, - ACTIONS(4678), 1, + anon_sym_extends, + [169442] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4341), 1, + anon_sym_EQ, + STATE(4566), 1, + sym_comment, + ACTIONS(6004), 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, - ACTIONS(4681), 2, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4074), 3, + anon_sym_BQUOTE, + anon_sym_QMARK, + anon_sym_extends, + [169473] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4339), 1, + anon_sym_EQ, + STATE(4567), 1, + sym_comment, + ACTIONS(6029), 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_extends, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 22, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, + anon_sym_extends, + [169504] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4497), 1, anon_sym_LPAREN, + ACTIONS(4499), 1, anon_sym_DOT, + ACTIONS(4503), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83544] = 5, - ACTIONS(3), 1, + ACTIONS(4505), 1, + anon_sym_PIPE, + ACTIONS(7717), 1, + anon_sym_LT, + STATE(4568), 1, sym_comment, - ACTIONS(1595), 1, + STATE(4772), 1, + sym_arguments, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4495), 10, sym__automatic_semicolon, - ACTIONS(1591), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1589), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + 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, + [169547] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4397), 1, + anon_sym_EQ, + STATE(4569), 1, + sym_comment, + ACTIONS(5765), 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1593), 25, - sym__ternary_qmark, + anon_sym_BQUOTE, + anon_sym_QMARK, + anon_sym_extends, + [169578] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4325), 1, + anon_sym_EQ, + STATE(4570), 1, + sym_comment, + ACTIONS(5763), 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, + [169609] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4497), 1, anon_sym_LPAREN, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(7717), 1, + anon_sym_LT, + ACTIONS(7719), 1, + anon_sym_DOT, + ACTIONS(7721), 1, + anon_sym_QMARK_DOT, + STATE(4571), 1, + sym_comment, + STATE(4766), 1, + sym_arguments, + STATE(4913), 1, + sym_type_arguments, + ACTIONS(5526), 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, + [169652] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4497), 1, + anon_sym_LPAREN, + ACTIONS(5518), 1, + anon_sym_PIPE, + ACTIONS(7717), 1, + anon_sym_LT, + ACTIONS(7723), 1, anon_sym_DOT, + ACTIONS(7725), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83597] = 4, - ACTIONS(3), 1, + STATE(4572), 1, sym_comment, - ACTIONS(1557), 5, + STATE(4742), 1, + sym_arguments, + STATE(4912), 1, + sym_type_arguments, + ACTIONS(5520), 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, - ACTIONS(1555), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + [169695] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2398), 1, + anon_sym_DOT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5799), 1, + anon_sym_EQ, + STATE(4573), 1, + sym_comment, + ACTIONS(5801), 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, + [169728] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5799), 1, + anon_sym_EQ, + STATE(4574), 1, + sym_comment, + ACTIONS(5801), 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1559), 23, - sym__ternary_qmark, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [169761] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5549), 1, + anon_sym_EQ, + ACTIONS(7651), 1, + anon_sym_LT, + STATE(4575), 1, + sym_comment, + STATE(4646), 1, + sym_type_arguments, + ACTIONS(5551), 14, anon_sym_as, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83648] = 5, - ACTIONS(3), 1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [169796] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5563), 1, + anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_is, + STATE(4576), 1, sym_comment, - ACTIONS(1645), 1, - sym__automatic_semicolon, - ACTIONS(1641), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1639), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(5565), 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1643), 25, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [169828] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5549), 1, + anon_sym_EQ, + ACTIONS(7727), 1, + anon_sym_is, + STATE(4577), 1, + sym_comment, + ACTIONS(5551), 14, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83701] = 32, - ACTIONS(3), 1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [169860] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5557), 1, + anon_sym_EQ, + ACTIONS(7663), 1, + anon_sym_is, + STATE(4578), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, + ACTIONS(5559), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [169892] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2215), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4579), 1, + sym_comment, + ACTIONS(2267), 15, anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_of, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5193), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, + 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, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5217), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_is, + [169922] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5593), 1, + anon_sym_EQ, + STATE(4580), 1, + sym_comment, + ACTIONS(5595), 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, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83808] = 23, - ACTIONS(3), 1, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_is, + [169952] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5959), 1, + anon_sym_PIPE, + STATE(4581), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5961), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5227), 1, + anon_sym_AMP, anon_sym_LT, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [169981] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5867), 1, + anon_sym_EQ, + ACTIONS(7729), 1, + anon_sym_LBRACK, + STATE(4582), 1, + sym_comment, + ACTIONS(5869), 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, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 3, - anon_sym_BANG, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 8, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [170012] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5755), 1, + anon_sym_EQ, + STATE(4583), 1, + sym_comment, + ACTIONS(5757), 14, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [83897] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4678), 1, anon_sym_LBRACK, - ACTIONS(4074), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4681), 3, + anon_sym_RBRACK, anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 25, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [170041] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5755), 1, + anon_sym_EQ, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + STATE(4584), 1, + sym_comment, + ACTIONS(5757), 11, anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [83952] = 24, - ACTIONS(3), 1, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [170076] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5856), 1, + anon_sym_PIPE, + STATE(4585), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5858), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, anon_sym_AMP, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4418), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 8, - sym__ternary_qmark, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [170105] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5679), 1, + anon_sym_EQ, + STATE(4586), 1, + sym_comment, + ACTIONS(5681), 14, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [84043] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4418), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 7, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [170134] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7743), 1, + sym_number, + ACTIONS(7745), 1, + anon_sym_unique, + STATE(4587), 1, + sym_comment, + STATE(8628), 1, + sym_string, + STATE(8629), 1, + sym_predefined_type, + ACTIONS(7741), 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, + [170173] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7747), 1, + sym_number, + STATE(4588), 1, + sym_comment, + STATE(8376), 1, + sym_string, + STATE(8378), 1, + sym_predefined_type, + ACTIONS(7741), 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, + [170212] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6010), 1, + anon_sym_EQ, + STATE(4589), 1, + sym_comment, + ACTIONS(6012), 14, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [84136] = 6, - ACTIONS(3), 1, + 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, + [170241] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7749), 1, + sym_number, + STATE(4590), 1, + sym_comment, + STATE(8341), 1, + sym_predefined_type, + STATE(8342), 1, + sym_string, + ACTIONS(7741), 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, + [170280] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7751), 1, + sym_number, + STATE(4591), 1, sym_comment, - ACTIONS(3440), 1, + STATE(8345), 1, + sym_predefined_type, + STATE(8346), 1, + sym_string, + ACTIONS(7741), 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, + [170319] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5826), 1, anon_sym_EQ, - ACTIONS(3501), 1, - anon_sym_in, - ACTIONS(3504), 1, - anon_sym_of, - ACTIONS(3303), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, + STATE(4592), 1, + sym_comment, + ACTIONS(5828), 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [170348] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7753), 1, + sym_number, + STATE(4593), 1, + sym_comment, + STATE(8348), 1, + sym_predefined_type, + STATE(8349), 1, + sym_string, + ACTIONS(7741), 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, + [170387] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7755), 1, + sym_number, + STATE(4594), 1, + sym_comment, + STATE(8354), 2, + sym_string, + sym_predefined_type, + ACTIONS(7741), 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, + [170424] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4595), 1, + sym_comment, + ACTIONS(7757), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [170451] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7759), 1, + sym_number, + STATE(4596), 1, + sym_comment, + STATE(8312), 1, + sym_string, + STATE(8363), 1, + sym_predefined_type, + ACTIONS(7741), 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, + [170490] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5988), 1, + anon_sym_EQ, + STATE(4597), 1, + sym_comment, + ACTIONS(5990), 14, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [84191] = 16, - ACTIONS(3), 1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [170519] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5667), 1, + anon_sym_EQ, + STATE(4598), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, + ACTIONS(5669), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5301), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 10, - anon_sym_BANG, - anon_sym_in, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 15, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [170548] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4599), 1, + sym_comment, + ACTIONS(7761), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [170575] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5791), 1, + anon_sym_EQ, + STATE(4600), 1, + sym_comment, + ACTIONS(5707), 14, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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, - [84266] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(5176), 1, - anon_sym_LT, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 16, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [170604] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7763), 1, + sym_number, + STATE(4601), 1, + sym_comment, + STATE(8615), 1, + sym_predefined_type, + STATE(8639), 1, + sym_string, + ACTIONS(7741), 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, + [170643] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7765), 1, + sym_number, + STATE(4602), 1, + sym_comment, + STATE(8494), 1, + sym_string, + STATE(8495), 1, + sym_predefined_type, + ACTIONS(7741), 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, + [170682] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5709), 1, + anon_sym_EQ, + STATE(4603), 1, + sym_comment, + ACTIONS(5711), 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_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, - [84337] = 17, - ACTIONS(3), 1, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [170711] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7767), 1, + sym_number, + STATE(4604), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, + STATE(8723), 1, + sym_string, + STATE(8730), 1, + sym_predefined_type, + ACTIONS(7741), 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, + [170750] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5723), 1, + anon_sym_EQ, + STATE(4605), 1, + sym_comment, + ACTIONS(5725), 14, anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5301), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 11, - anon_sym_STAR, - anon_sym_in, + 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 14, - sym__ternary_qmark, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [84414] = 21, - ACTIONS(3), 1, + anon_sym_QMARK, + anon_sym_extends, + [170779] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5549), 1, + anon_sym_EQ, + STATE(4606), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, + ACTIONS(5551), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4418), 5, - anon_sym_BANG, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 10, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [170808] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5769), 1, + anon_sym_EQ, + STATE(4607), 1, + sym_comment, + ACTIONS(5771), 14, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [84499] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 5, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [170837] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5777), 1, + anon_sym_EQ, + ACTIONS(7731), 1, + anon_sym_AMP, + STATE(4608), 1, + sym_comment, + ACTIONS(5779), 13, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [84598] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [170868] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5913), 1, + anon_sym_EQ, + ACTIONS(7731), 1, anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, + ACTIONS(7733), 1, anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - ACTIONS(5348), 1, + ACTIONS(7735), 1, + anon_sym_extends, + STATE(4609), 1, + sym_comment, + ACTIONS(5915), 11, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84705] = 12, - ACTIONS(3), 1, + anon_sym_EQ_GT, + anon_sym_QMARK, + [170903] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5781), 1, + anon_sym_EQ, + STATE(4610), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, + ACTIONS(5783), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(5350), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4389), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4391), 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, - [84772] = 32, - ACTIONS(3), 1, + anon_sym_QMARK, + anon_sym_extends, + [170932] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5787), 1, + anon_sym_EQ, + STATE(4611), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, + ACTIONS(5789), 14, anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4416), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - ACTIONS(5291), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5293), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84879] = 32, - ACTIONS(3), 1, + anon_sym_QMARK, + anon_sym_extends, + [170961] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7769), 1, + sym_number, + STATE(4612), 1, + sym_comment, + STATE(8718), 2, + sym_string, + sym_predefined_type, + ACTIONS(7741), 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, + [170998] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5863), 1, + anon_sym_PIPE, + STATE(4613), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5865), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4174), 1, - anon_sym_RBRACK, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, - anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - ACTIONS(5291), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5293), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4759), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171027] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5863), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4761), 28, + STATE(4614), 1, + sym_comment, + ACTIONS(5865), 14, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85035] = 16, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171056] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5856), 1, + anon_sym_PIPE, + STATE(4615), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5858), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5353), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171085] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5607), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4232), 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, - [85110] = 13, - ACTIONS(3), 1, + STATE(4616), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5609), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5356), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4253), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171114] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5822), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4255), 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, - [85179] = 32, - ACTIONS(3), 1, + STATE(4617), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5824), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4410), 1, - anon_sym_RBRACK, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171143] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5607), 1, anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - ACTIONS(5291), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5293), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85286] = 5, - ACTIONS(3), 1, + STATE(4618), 1, sym_comment, - ACTIONS(5163), 2, + ACTIONS(5609), 14, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5165), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [85339] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171172] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7771), 1, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, + ACTIONS(7773), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, + ACTIONS(7775), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5227), 1, + ACTIONS(7777), 1, anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, + STATE(4619), 1, + sym_comment, + STATE(4897), 1, + sym_arguments, + STATE(5068), 1, + sym_type_arguments, + ACTIONS(5520), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - ACTIONS(5359), 1, + anon_sym_extends, + [171211] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5759), 1, + anon_sym_EQ, + ACTIONS(7731), 1, + anon_sym_AMP, + STATE(4620), 1, + sym_comment, + ACTIONS(5761), 13, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85446] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [171242] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7771), 1, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, + ACTIONS(7777), 1, + anon_sym_LT, + ACTIONS(7779), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, + ACTIONS(7781), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4471), 1, - anon_sym_COLON, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, + STATE(4621), 1, + sym_comment, + STATE(4894), 1, + sym_arguments, + STATE(5070), 1, + sym_type_arguments, + ACTIONS(5526), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85553] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + anon_sym_extends, + [171281] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7771), 1, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, + ACTIONS(7777), 1, + anon_sym_LT, + ACTIONS(7783), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, + ACTIONS(7785), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4408), 1, - anon_sym_RBRACK, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, + STATE(4622), 1, + sym_comment, + STATE(4881), 1, + sym_arguments, + STATE(4961), 1, + sym_type_arguments, + ACTIONS(4495), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - ACTIONS(5291), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5293), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85660] = 32, - ACTIONS(3), 1, + anon_sym_extends, + [171320] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5938), 1, + anon_sym_PIPE, + STATE(4623), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5940), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4475), 1, - anon_sym_of, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5193), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171349] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5942), 1, anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5217), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85767] = 32, - ACTIONS(3), 1, + STATE(4624), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5944), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4404), 1, - anon_sym_RBRACK, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171378] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5942), 1, anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - ACTIONS(5291), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5293), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85874] = 32, - ACTIONS(3), 1, + STATE(4625), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5944), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4402), 1, - anon_sym_RBRACK, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171407] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5942), 1, anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - ACTIONS(5291), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5293), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [85981] = 32, - ACTIONS(3), 1, + STATE(4626), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5944), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4473), 1, - anon_sym_COLON, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171436] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5822), 1, anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86088] = 9, - ACTIONS(3), 1, + STATE(4627), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5824), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5265), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4385), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4387), 22, - sym__ternary_qmark, - anon_sym_as, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [86149] = 5, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171465] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5948), 1, + anon_sym_PIPE, + STATE(4628), 1, sym_comment, - ACTIONS(5361), 2, + ACTIONS(5950), 14, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5363), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86202] = 32, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171494] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5816), 1, + anon_sym_PIPE, + STATE(4629), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5818), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, - anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171523] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5812), 1, anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - ACTIONS(5291), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5293), 1, - sym__ternary_qmark, - ACTIONS(5365), 1, - anon_sym_RBRACK, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86309] = 5, - ACTIONS(3), 1, + STATE(4630), 1, sym_comment, - ACTIONS(1561), 1, + ACTIONS(5814), 14, sym__automatic_semicolon, - ACTIONS(1557), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1555), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1559), 25, - sym__ternary_qmark, - anon_sym_as, + 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86362] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4318), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171552] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5751), 1, anon_sym_EQ, - ACTIONS(4322), 1, - anon_sym_LBRACK, - ACTIONS(4328), 2, + STATE(4631), 1, + sym_comment, + ACTIONS(5753), 14, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4325), 3, + 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, - ACTIONS(4316), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 24, + anon_sym_QMARK, + anon_sym_extends, + [171581] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5816), 1, + anon_sym_PIPE, + STATE(4632), 1, + sym_comment, + ACTIONS(5818), 14, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86419] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5367), 2, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171610] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5563), 1, anon_sym_EQ, + STATE(4633), 1, + sym_comment, + ACTIONS(5565), 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, - ACTIONS(5369), 3, + anon_sym_extends, + [171639] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5871), 1, + anon_sym_EQ, + STATE(4634), 1, + sym_comment, + ACTIONS(5873), 14, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [171668] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5743), 1, + anon_sym_EQ, + STATE(4635), 1, + sym_comment, + ACTIONS(5745), 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, + [171697] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5812), 1, + anon_sym_PIPE, + STATE(4636), 1, + sym_comment, + ACTIONS(5814), 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86472] = 12, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171726] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5808), 1, + anon_sym_PIPE, + STATE(4637), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5810), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5371), 1, + anon_sym_AMP, anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4389), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171755] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5875), 1, + anon_sym_EQ, + STATE(4638), 1, + sym_comment, + ACTIONS(5877), 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4391), 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, - [86539] = 3, - ACTIONS(3), 1, + anon_sym_QMARK, + anon_sym_extends, + [171784] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5739), 1, + anon_sym_EQ, + STATE(4639), 1, sym_comment, - ACTIONS(4716), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(5741), 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4718), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [171813] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5727), 1, + anon_sym_EQ, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + STATE(4640), 1, + sym_comment, + ACTIONS(5729), 11, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86588] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1501), 1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [171848] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5713), 1, anon_sym_EQ, - ACTIONS(4363), 1, + ACTIONS(7729), 1, anon_sym_LBRACK, - ACTIONS(2143), 2, + STATE(4641), 1, + sym_comment, + ACTIONS(5721), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(5715), 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, + [171881] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5891), 1, + anon_sym_EQ, + ACTIONS(7787), 1, anon_sym_extends, - ACTIONS(4366), 3, + STATE(4642), 1, + sym_comment, + ACTIONS(5893), 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, - ACTIONS(1499), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 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, - [86645] = 3, - ACTIONS(3), 1, + anon_sym_QMARK, + [171912] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5747), 1, + anon_sym_EQ, + STATE(4643), 1, sym_comment, - ACTIONS(4692), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(5749), 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4694), 28, + anon_sym_QMARK, + anon_sym_extends, + [171941] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5948), 1, + anon_sym_PIPE, + STATE(4644), 1, + sym_comment, + ACTIONS(5950), 14, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86694] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4755), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171970] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5795), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4757), 28, + STATE(4645), 1, + sym_comment, + ACTIONS(5797), 14, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86743] = 4, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171999] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6037), 1, + anon_sym_EQ, + STATE(4646), 1, sym_comment, - ACTIONS(5374), 1, - sym_regex_flags, - ACTIONS(5136), 17, - anon_sym_STAR, + ACTIONS(6039), 14, anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_of, - anon_sym_LT, + 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(5138), 23, + anon_sym_QMARK, + anon_sym_extends, + [172028] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5948), 1, + anon_sym_PIPE, + STATE(4647), 1, + sym_comment, + ACTIONS(5950), 14, sym__automatic_semicolon, - sym__ternary_qmark, + 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - 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, - [86794] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4674), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_AMP, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [172057] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4648), 1, + sym_comment, + ACTIONS(7789), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [172084] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5883), 1, + anon_sym_EQ, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4676), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(7735), 1, + anon_sym_extends, + STATE(4649), 1, + sym_comment, + ACTIONS(5885), 11, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [172119] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4650), 1, + sym_comment, + ACTIONS(7791), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [172146] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5959), 1, + anon_sym_PIPE, + STATE(4651), 1, + sym_comment, + ACTIONS(5961), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1639), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [172175] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5959), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1643), 28, + STATE(4652), 1, + sym_comment, + ACTIONS(5961), 14, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1589), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_AMP, anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [172204] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5719), 1, + anon_sym_EQ, + STATE(4653), 1, + sym_comment, + ACTIONS(5721), 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1593), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [172233] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4654), 1, + sym_comment, + ACTIONS(7793), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [172260] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7795), 1, + sym_number, + STATE(4655), 1, + sym_comment, + STATE(8616), 2, + sym_string, + sym_predefined_type, + ACTIONS(7741), 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, + [172297] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6000), 1, + anon_sym_EQ, + STATE(4656), 1, + sym_comment, + ACTIONS(6002), 14, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86941] = 3, - ACTIONS(3), 1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [172326] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5719), 1, + anon_sym_EQ, + ACTIONS(7729), 1, + anon_sym_LBRACK, + STATE(4657), 1, sym_comment, - ACTIONS(4821), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(5721), 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4823), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [172357] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5840), 1, + anon_sym_EQ, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + STATE(4658), 1, + sym_comment, + ACTIONS(5842), 11, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [172392] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6051), 1, + anon_sym_PIPE, + STATE(4659), 1, + sym_comment, + ACTIONS(6053), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86990] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4712), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [172421] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6051), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4714), 28, + STATE(4660), 1, + sym_comment, + ACTIONS(6053), 14, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4825), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [172450] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6051), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4475), 28, + STATE(4661), 1, + sym_comment, + ACTIONS(6053), 14, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4700), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_AMP, anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [172479] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5909), 1, + anon_sym_EQ, + STATE(4662), 1, + sym_comment, + ACTIONS(5911), 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4702), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [172508] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5913), 1, + anon_sym_EQ, + STATE(4663), 1, + sym_comment, + ACTIONS(5915), 14, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4814), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4816), 28, + anon_sym_QMARK, + anon_sym_extends, + [172537] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6043), 1, + anon_sym_PIPE, + STATE(4664), 1, + sym_comment, + ACTIONS(6045), 14, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87186] = 32, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [172566] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6043), 1, + anon_sym_PIPE, + STATE(4665), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(6045), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4477), 1, - anon_sym_COLON, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, - anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [172595] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5974), 1, + anon_sym_EQ, + STATE(4666), 1, + sym_comment, + ACTIONS(5976), 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4829), 28, + anon_sym_QMARK, + anon_sym_extends, + [172624] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6043), 1, + anon_sym_PIPE, + STATE(4667), 1, + sym_comment, + ACTIONS(6045), 14, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4831), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [172653] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6025), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4477), 28, + STATE(4668), 1, + sym_comment, + ACTIONS(6027), 14, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87391] = 13, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [172682] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6025), 1, + anon_sym_PIPE, + STATE(4669), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(6027), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5376), 1, + anon_sym_AMP, anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4253), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [172711] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5994), 1, + anon_sym_EQ, + STATE(4670), 1, + sym_comment, + ACTIONS(5996), 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4255), 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, - [87460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4833), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_extends, + [172740] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5917), 1, + anon_sym_EQ, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4479), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(7735), 1, + anon_sym_extends, + STATE(4671), 1, + sym_comment, + ACTIONS(5919), 11, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87509] = 32, - ACTIONS(3), 1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [172775] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7797), 1, + sym_number, + STATE(4672), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(8621), 1, + sym_predefined_type, + STATE(8646), 1, + sym_string, + ACTIONS(7741), 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, + [172814] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6025), 1, + anon_sym_PIPE, + STATE(4673), 1, + sym_comment, + ACTIONS(6027), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4481), 1, - anon_sym_of, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5193), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5217), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4835), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [172843] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6021), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4837), 28, + STATE(4674), 1, + sym_comment, + ACTIONS(6023), 14, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87665] = 13, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [172872] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4675), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, + ACTIONS(7799), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [172899] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6055), 1, + anon_sym_EQ, + STATE(4676), 1, + sym_comment, + ACTIONS(6057), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(5379), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4253), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4255), 17, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [172928] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7801), 1, + sym_number, + STATE(4677), 1, + sym_comment, + STATE(8315), 1, + sym_string, + STATE(8316), 1, + sym_predefined_type, + ACTIONS(7741), 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, + [172967] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7803), 1, + sym_number, + STATE(4678), 1, + sym_comment, + STATE(8307), 1, + sym_string, + STATE(8309), 1, + sym_predefined_type, + ACTIONS(7741), 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, + [173006] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7805), 1, + sym_number, + STATE(4679), 1, + sym_comment, + STATE(8303), 1, + sym_string, + STATE(8304), 1, + sym_predefined_type, + ACTIONS(7741), 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, + [173045] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7807), 1, + sym_number, + STATE(4680), 1, + sym_comment, + STATE(8299), 2, + sym_string, + sym_predefined_type, + ACTIONS(7741), 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, + [173082] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5928), 1, + anon_sym_EQ, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + STATE(4681), 1, + sym_comment, + ACTIONS(5930), 11, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_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, - [87734] = 4, - ACTIONS(3), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + [173117] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5557), 1, + anon_sym_EQ, + STATE(4682), 1, sym_comment, - ACTIONS(5374), 1, - sym_regex_flags, - ACTIONS(5136), 16, - anon_sym_STAR, + ACTIONS(5559), 14, anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + 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_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(5138), 24, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_QMARK, + anon_sym_extends, + [173146] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7809), 1, + sym_number, + STATE(4683), 1, + sym_comment, + STATE(8491), 1, + sym_string, + STATE(8492), 1, + sym_predefined_type, + ACTIONS(7741), 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, + [173185] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6047), 1, + anon_sym_EQ, + STATE(4684), 1, + sym_comment, + ACTIONS(6049), 14, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - 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, - [87785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1569), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1573), 28, + anon_sym_QMARK, + anon_sym_extends, + [173214] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4685), 1, + sym_comment, + ACTIONS(7811), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [173241] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4686), 1, + sym_comment, + ACTIONS(7813), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [173268] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5496), 1, + anon_sym_PIPE, + ACTIONS(7717), 1, + anon_sym_LT, + ACTIONS(7815), 1, + anon_sym_DOT, + ACTIONS(7817), 1, + anon_sym_is, + STATE(4687), 1, + sym_comment, + STATE(4899), 1, + sym_type_arguments, + ACTIONS(4546), 10, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87834] = 5, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [173305] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7819), 1, + sym_number, + STATE(4688), 1, + sym_comment, + STATE(8482), 2, + sym_string, + sym_predefined_type, + ACTIONS(7741), 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, + [173342] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4689), 1, sym_comment, - ACTIONS(5095), 2, + ACTIONS(7821), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [173369] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6006), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5148), 3, + STATE(4690), 1, + sym_comment, + ACTIONS(6008), 14, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + anon_sym_extends, + [173398] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + ACTIONS(7745), 1, + anon_sym_unique, + ACTIONS(7823), 1, + sym_number, + STATE(4691), 1, + sym_comment, + STATE(8433), 1, + sym_predefined_type, + STATE(8486), 1, + sym_string, + ACTIONS(7741), 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, + [173437] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7829), 1, + anon_sym_BANG, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87887] = 32, - ACTIONS(3), 1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7837), 1, + anon_sym_QMARK, + STATE(4692), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(5707), 1, + sym_formal_parameters, + STATE(5936), 1, + sym_type_annotation, + STATE(6778), 1, + sym__initializer, + STATE(7748), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(7827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173485] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5260), 1, + anon_sym_RBRACE, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(7841), 1, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, + STATE(4693), 1, + sym_comment, + STATE(5213), 1, + sym_formal_parameters, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + STATE(8035), 1, + sym_type_parameters, + ACTIONS(5190), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [173529] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7845), 1, anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5179), 1, - anon_sym_STAR_STAR, - ACTIONS(5265), 1, + ACTIONS(7847), 1, + anon_sym_QMARK, + STATE(4694), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(5770), 1, + sym_type_annotation, + STATE(7219), 1, + sym__initializer, + STATE(7413), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(7843), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173577] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5244), 1, + anon_sym_RBRACE, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(5267), 1, - anon_sym_AMP_AMP, - ACTIONS(5269), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5271), 1, - anon_sym_GT_GT, - ACTIONS(5275), 1, - anon_sym_AMP, - ACTIONS(5277), 1, - anon_sym_CARET, - ACTIONS(5279), 1, - anon_sym_PIPE, - ACTIONS(5283), 1, - anon_sym_PERCENT, - ACTIONS(5291), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5293), 1, - sym__ternary_qmark, - ACTIONS(5382), 1, - anon_sym_RBRACK, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5273), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5281), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5287), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5289), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5285), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87994] = 3, - ACTIONS(3), 1, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4695), 1, sym_comment, - ACTIONS(4708), 13, + STATE(5213), 1, + sym_formal_parameters, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + STATE(8035), 1, + sym_type_parameters, + ACTIONS(5190), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [173621] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, + sym_identifier, + ACTIONS(7851), 1, + anon_sym_type, + STATE(4696), 1, + sym_comment, + STATE(6420), 1, + sym_import_require_clause, + STATE(6421), 1, + sym_string, + STATE(8002), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + ACTIONS(7853), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + [173669] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7857), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(7859), 1, + anon_sym_LPAREN, + ACTIONS(7861), 1, + anon_sym_QMARK, + STATE(4697), 1, + sym_comment, + STATE(5028), 1, + sym_formal_parameters, + STATE(5656), 1, + sym__call_signature, + STATE(6080), 1, + sym_type_annotation, + STATE(6643), 1, + sym__initializer, + STATE(8101), 1, + sym_type_parameters, + ACTIONS(7855), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173717] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(120), 1, + anon_sym_unique, + STATE(4698), 1, + sym_comment, + STATE(4871), 1, + sym_type_predicate, + STATE(8445), 1, + sym_predefined_type, + ACTIONS(7863), 2, + sym_identifier, + sym_this, + ACTIONS(122), 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, + [173751] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5496), 1, + anon_sym_PIPE, + ACTIONS(7717), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(7815), 1, + anon_sym_DOT, + STATE(4699), 1, + sym_comment, + STATE(4899), 1, + sym_type_arguments, + ACTIONS(4546), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4710), 28, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [173785] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7867), 1, + anon_sym_BANG, + ACTIONS(7869), 1, + anon_sym_QMARK, + STATE(4700), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(6163), 1, + sym_type_annotation, + STATE(6930), 1, + sym__initializer, + STATE(8012), 1, + sym_type_parameters, + STATE(8077), 1, + sym__call_signature, + ACTIONS(7865), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, + anon_sym_SEMI, + [173833] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5269), 1, anon_sym_RBRACE, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(7841), 1, anon_sym_LPAREN, - anon_sym_of, + STATE(4701), 1, + sym_comment, + STATE(5213), 1, + sym_formal_parameters, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + STATE(8035), 1, + sym_type_parameters, + ACTIONS(5190), 5, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88043] = 32, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [173877] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + ACTIONS(7873), 1, + anon_sym_BANG, + ACTIONS(7875), 1, + anon_sym_QMARK, + STATE(4702), 1, + sym_comment, + STATE(5028), 1, + sym_formal_parameters, + STATE(5700), 1, + sym__call_signature, + STATE(6118), 1, + sym_type_annotation, + STATE(6961), 1, + sym__initializer, + STATE(8101), 1, + sym_type_parameters, + ACTIONS(7871), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173925] = 15, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, + sym_identifier, + ACTIONS(7851), 1, + anon_sym_type, + STATE(4703), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(6398), 1, + sym_string, + STATE(6399), 1, + sym_import_require_clause, + STATE(8113), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + ACTIONS(7853), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + [173973] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4479), 1, + ACTIONS(7833), 1, anon_sym_COLON, - ACTIONS(5227), 1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, - anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, - anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88150] = 32, - ACTIONS(3), 1, + ACTIONS(7877), 1, + anon_sym_BANG, + ACTIONS(7879), 1, + anon_sym_QMARK, + STATE(4704), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(5707), 1, + sym_formal_parameters, + STATE(6271), 1, + sym_type_annotation, + STATE(7203), 1, + sym__initializer, + STATE(8012), 1, + sym_type_parameters, + STATE(8161), 1, + sym__call_signature, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174021] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4477), 1, - anon_sym_of, - ACTIONS(5181), 1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5193), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, - anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5217), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88257] = 5, + ACTIONS(7881), 1, + anon_sym_BANG, + ACTIONS(7883), 1, + anon_sym_QMARK, + STATE(4705), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(6262), 1, + sym_type_annotation, + STATE(7177), 1, + sym__initializer, + STATE(8012), 1, + sym_type_parameters, + STATE(8152), 1, + sym__call_signature, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174069] = 15, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, + sym_identifier, + ACTIONS(7851), 1, + anon_sym_type, + STATE(4706), 1, sym_comment, - ACTIONS(5095), 2, + STATE(6531), 1, + sym_string, + STATE(6535), 1, + sym_import_require_clause, + STATE(7801), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + ACTIONS(7853), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + [174117] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + ACTIONS(7887), 1, + anon_sym_BANG, + ACTIONS(7889), 1, anon_sym_QMARK, - ACTIONS(5097), 3, + STATE(4707), 1, + sym_comment, + STATE(5028), 1, + sym_formal_parameters, + STATE(5646), 1, + sym__call_signature, + STATE(5893), 1, + sym_type_annotation, + STATE(6863), 1, + sym__initializer, + STATE(8101), 1, + sym_type_parameters, + ACTIONS(7885), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3303), 13, + anon_sym_SEMI, + [174165] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, + sym_identifier, + ACTIONS(7851), 1, + anon_sym_type, + STATE(4708), 1, + sym_comment, + STATE(6367), 1, + sym_string, + STATE(6368), 1, + sym_import_require_clause, + STATE(7847), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + ACTIONS(7853), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + [174213] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5601), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [88310] = 3, - ACTIONS(3), 1, + STATE(4709), 1, sym_comment, - ACTIONS(4704), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + STATE(3139), 2, + sym_template_string, + sym_arguments, + ACTIONS(5828), 10, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4706), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + anon_sym_extends, + [174245] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5233), 1, anon_sym_COMMA, + ACTIONS(5241), 1, anon_sym_RBRACE, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(7841), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88359] = 32, - ACTIONS(3), 1, + STATE(4710), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(5213), 1, + sym_formal_parameters, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + STATE(8035), 1, + sym_type_parameters, + ACTIONS(5190), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [174289] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, + ACTIONS(7893), 1, anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4475), 1, + ACTIONS(7895), 1, + anon_sym_QMARK, + STATE(4711), 1, + sym_comment, + STATE(5028), 1, + sym_formal_parameters, + STATE(5568), 1, + sym__call_signature, + STATE(5784), 1, + sym_type_annotation, + STATE(7242), 1, + sym__initializer, + STATE(8101), 1, + sym_type_parameters, + ACTIONS(7891), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174337] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, anon_sym_COLON, - ACTIONS(5227), 1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, - anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, - anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88466] = 12, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(7887), 1, + anon_sym_BANG, + ACTIONS(7897), 1, + anon_sym_QMARK, + STATE(4712), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(5893), 1, + sym_type_annotation, + STATE(6896), 1, + sym__call_signature, + STATE(7067), 1, + sym__initializer, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(7885), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174385] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(120), 1, + anon_sym_unique, + STATE(3384), 1, + sym_type_predicate, + STATE(4713), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(8253), 1, + sym_predefined_type, + ACTIONS(7899), 2, + sym_identifier, + sym_this, + ACTIONS(122), 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, + [174419] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(5384), 1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4389), 12, - anon_sym_STAR, + ACTIONS(7901), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4391), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [88533] = 7, - ACTIONS(3), 1, + ACTIONS(7903), 1, + anon_sym_QMARK, + STATE(4714), 1, sym_comment, - ACTIONS(5387), 1, + STATE(5707), 1, + sym_formal_parameters, + STATE(5808), 1, + sym_type_annotation, + STATE(7135), 1, + sym__initializer, + STATE(7499), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(7843), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174467] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(5390), 1, + ACTIONS(7833), 1, anon_sym_COLON, - ACTIONS(5392), 1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(5395), 1, - anon_sym_QMARK, - ACTIONS(3303), 12, - anon_sym_STAR, + ACTIONS(7905), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 25, + ACTIONS(7907), 1, + anon_sym_QMARK, + STATE(4715), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(5985), 1, + sym_type_annotation, + STATE(6687), 1, + sym__initializer, + STATE(7825), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(7827), 3, 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, - [88590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + [174515] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1731), 28, + ACTIONS(7909), 1, + anon_sym_BANG, + ACTIONS(7911), 1, + anon_sym_QMARK, + STATE(4716), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(5799), 1, + sym_type_annotation, + STATE(7156), 1, + sym__initializer, + STATE(7509), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(7843), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88639] = 3, - ACTIONS(3), 1, + [174563] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7913), 1, + anon_sym_BANG, + ACTIONS(7915), 1, + anon_sym_QMARK, + STATE(4717), 1, sym_comment, - ACTIONS(4696), 13, - anon_sym_STAR, + STATE(5707), 1, + sym_formal_parameters, + STATE(5944), 1, + sym_type_annotation, + STATE(6764), 1, + sym__initializer, + STATE(7766), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(7827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174611] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7917), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(7919), 1, + anon_sym_QMARK, + STATE(4718), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(5826), 1, + sym_type_annotation, + STATE(7084), 1, + sym__initializer, + STATE(7722), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(7827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174659] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4698), 28, + ACTIONS(7921), 1, + anon_sym_BANG, + ACTIONS(7923), 1, + anon_sym_QMARK, + STATE(4719), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(5768), 1, + sym_type_annotation, + STATE(7259), 1, + sym__initializer, + STATE(7407), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(7843), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, + anon_sym_SEMI, + [174707] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5236), 1, anon_sym_RBRACE, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(7841), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88688] = 9, - ACTIONS(3), 1, + STATE(4720), 1, sym_comment, - ACTIONS(3363), 1, + STATE(5213), 1, + sym_formal_parameters, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + STATE(8035), 1, + sym_type_parameters, + ACTIONS(5190), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [174751] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(3446), 1, + ACTIONS(7833), 1, anon_sym_COLON, - ACTIONS(4074), 1, - anon_sym_extends, - ACTIONS(4678), 1, - anon_sym_LBRACK, - ACTIONS(4681), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5397), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(7841), 1, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88749] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1703), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1701), 13, - anon_sym_STAR, + ACTIONS(7927), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1705), 26, + ACTIONS(7929), 1, + anon_sym_QMARK, + STATE(4721), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(6153), 1, + sym_type_annotation, + STATE(6770), 1, + sym__initializer, + STATE(6775), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(7925), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88800] = 32, + [174799] = 15, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, + sym_identifier, + ACTIONS(7851), 1, + anon_sym_type, + STATE(4722), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, - anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, - anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - ACTIONS(5401), 1, - anon_sym_COLON, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, + STATE(6527), 1, + sym_import_require_clause, + STATE(6528), 1, + sym_string, + STATE(8107), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + ACTIONS(7853), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + [174847] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88907] = 32, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, + sym_identifier, + ACTIONS(7851), 1, + anon_sym_type, + STATE(4723), 1, + sym_comment, + STATE(6313), 1, + sym_import_require_clause, + STATE(6314), 1, + sym_string, + STATE(7939), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + ACTIONS(7853), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + [174895] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(120), 1, + anon_sym_unique, + STATE(4724), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(5048), 1, + sym_type_predicate, + STATE(8579), 1, + sym_predefined_type, + ACTIONS(7931), 2, + sym_identifier, + sym_this, + ACTIONS(122), 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, + [174929] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5251), 1, + anon_sym_RBRACE, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(7841), 1, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4174), 1, - anon_sym_of, - ACTIONS(4176), 1, + STATE(4725), 1, + sym_comment, + STATE(5213), 1, + sym_formal_parameters, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + STATE(8035), 1, + sym_type_parameters, + ACTIONS(5190), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [174973] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7935), 1, anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5181), 1, + ACTIONS(7937), 1, + anon_sym_QMARK, + STATE(4726), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(5913), 1, + sym_type_annotation, + STATE(6827), 1, + sym__initializer, + STATE(7819), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(7933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175021] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5193), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, - anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, - anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5217), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89014] = 3, + ACTIONS(7939), 1, + anon_sym_BANG, + ACTIONS(7941), 1, + anon_sym_QMARK, + STATE(4727), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(6114), 1, + sym_type_annotation, + STATE(6670), 1, + sym__initializer, + STATE(8012), 1, + sym_type_parameters, + STATE(8016), 1, + sym__call_signature, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175069] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(120), 1, + anon_sym_unique, + STATE(2820), 1, + sym_type_predicate, + STATE(4728), 1, sym_comment, - ACTIONS(4849), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + STATE(8441), 1, + sym_predefined_type, + ACTIONS(7943), 2, + sym_identifier, + sym_this, + ACTIONS(122), 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, + [175103] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4851), 28, + ACTIONS(7945), 1, + anon_sym_BANG, + ACTIONS(7947), 1, + anon_sym_QMARK, + STATE(4729), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(5849), 1, + sym_type_annotation, + STATE(7016), 1, + sym__initializer, + STATE(7563), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(7827), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SEMI, + [175151] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7951), 1, + anon_sym_BANG, + ACTIONS(7953), 1, + anon_sym_QMARK, + STATE(4730), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(6157), 1, + sym_type_annotation, + STATE(6690), 1, + sym__initializer, + STATE(7565), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(7949), 3, + sym__automatic_semicolon, + 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, - [89063] = 3, + [175199] = 15, ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 13, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, + sym_identifier, + ACTIONS(7851), 1, + anon_sym_type, + STATE(4731), 1, + sym_comment, + STATE(6519), 1, + sym_string, + STATE(6521), 1, + sym_import_require_clause, + STATE(7932), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + ACTIONS(7853), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + [175247] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4841), 28, + ACTIONS(7955), 1, + anon_sym_BANG, + ACTIONS(7957), 1, + anon_sym_QMARK, + STATE(4732), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(5979), 1, + sym_type_annotation, + STATE(6699), 1, + sym__initializer, + STATE(7820), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(7827), 3, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SEMI, + [175295] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(7927), 1, + anon_sym_BANG, + ACTIONS(7959), 1, + anon_sym_QMARK, + STATE(4733), 1, + sym_comment, + STATE(5028), 1, + sym_formal_parameters, + STATE(5692), 1, + sym__call_signature, + STATE(6153), 1, + sym_type_annotation, + STATE(6901), 1, + sym__initializer, + STATE(8101), 1, + sym_type_parameters, + ACTIONS(7925), 3, + sym__automatic_semicolon, + 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, - [89112] = 3, + [175343] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(120), 1, + anon_sym_unique, + STATE(4633), 1, + sym_type_predicate, + STATE(4734), 1, sym_comment, - ACTIONS(4688), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4690), 28, + STATE(8273), 1, + sym_predefined_type, + ACTIONS(7961), 2, + sym_identifier, + sym_this, + ACTIONS(122), 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, + [175377] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4735), 1, + sym_comment, + ACTIONS(5609), 13, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [89161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4853), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4855), 28, + anon_sym_LT, + anon_sym_extends, + [175402] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(7965), 1, + anon_sym_QMARK, + STATE(4736), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(5212), 1, + sym__call_signature, + STATE(5750), 1, + sym_type_annotation, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(7963), 5, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [89210] = 33, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [175443] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4737), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5824), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4886), 1, - anon_sym_of, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5189), 1, - anon_sym_GT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5193), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5217), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5219), 1, - sym__ternary_qmark, - ACTIONS(5403), 1, - anon_sym_in, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89319] = 32, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [175468] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4738), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5858), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4481), 1, - anon_sym_COLON, - ACTIONS(5227), 1, - anon_sym_LT, - ACTIONS(5229), 1, - anon_sym_AMP_AMP, - ACTIONS(5231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5233), 1, - anon_sym_GT_GT, - ACTIONS(5237), 1, anon_sym_AMP, - ACTIONS(5239), 1, - anon_sym_CARET, - ACTIONS(5241), 1, anon_sym_PIPE, - ACTIONS(5245), 1, - anon_sym_PERCENT, - ACTIONS(5247), 1, - anon_sym_STAR_STAR, - ACTIONS(5255), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5257), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5221), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5223), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5235), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5251), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5253), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5249), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89426] = 4, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [175493] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4739), 1, sym_comment, - ACTIONS(1703), 5, + ACTIONS(5865), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1701), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1705), 23, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [89477] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4479), 1, - anon_sym_of, - ACTIONS(5181), 1, - anon_sym_LT, - ACTIONS(5191), 1, - anon_sym_AMP_AMP, - ACTIONS(5193), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5195), 1, - anon_sym_GT_GT, - ACTIONS(5199), 1, anon_sym_AMP, - ACTIONS(5201), 1, - anon_sym_CARET, - ACTIONS(5203), 1, anon_sym_PIPE, - ACTIONS(5207), 1, - anon_sym_PERCENT, - ACTIONS(5209), 1, - anon_sym_STAR_STAR, - ACTIONS(5217), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5219), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5187), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5189), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5197), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5213), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5215), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5211), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89584] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 1, - anon_sym_EQ, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 27, + anon_sym_extends, + [175518] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4740), 1, + sym_comment, + ACTIONS(5858), 13, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [89635] = 16, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [175543] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4741), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5865), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5406), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4232), 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, - [89710] = 16, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [175568] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5675), 1, + anon_sym_PIPE, + STATE(4742), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, + ACTIONS(5677), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5409), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [175595] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4407), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4232), 15, - sym__ternary_qmark, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [89785] = 3, - ACTIONS(3), 1, + STATE(4743), 1, sym_comment, - ACTIONS(4843), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4845), 28, + ACTIONS(5889), 12, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP, anon_sym_BQUOTE, - anon_sym_satisfies, - [89834] = 21, - ACTIONS(3), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [175622] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4389), 1, + anon_sym_PIPE, + STATE(4744), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5897), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4418), 5, - anon_sym_BANG, anon_sym_AMP, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [175649] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4351), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [89918] = 31, - ACTIONS(3), 1, + STATE(4745), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5899), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, - anon_sym_PIPE, - ACTIONS(5444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5446), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90022] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4008), 1, - anon_sym_QMARK, - ACTIONS(4010), 1, + anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(4939), 2, - anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [175676] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4323), 1, anon_sym_PIPE, - ACTIONS(4936), 3, + STATE(4746), 1, + sym_comment, + ACTIONS(5605), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [90078] = 5, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [175703] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4399), 1, + anon_sym_PIPE, + STATE(4747), 1, sym_comment, - ACTIONS(3363), 1, + ACTIONS(5767), 12, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(3545), 3, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP, anon_sym_BQUOTE, - anon_sym_satisfies, - [90130] = 31, - ACTIONS(3), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [175730] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4397), 1, + anon_sym_PIPE, + STATE(4748), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5765), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [175757] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4397), 1, anon_sym_PIPE, - ACTIONS(5444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5446), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90234] = 31, - ACTIONS(3), 1, + STATE(4749), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5765), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [175784] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4325), 1, anon_sym_PIPE, - ACTIONS(5444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5446), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90338] = 16, - ACTIONS(3), 1, + STATE(4750), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5763), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5448), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4230), 11, - anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4232), 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, - [90412] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4656), 1, - anon_sym_LBRACK, - ACTIONS(4431), 2, - anon_sym_COMMA, + anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(4659), 3, - anon_sym_GT, - anon_sym_AMP, + anon_sym_PIPE_RBRACE, + [175811] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4319), 1, anon_sym_PIPE, - ACTIONS(4652), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4654), 24, + STATE(4751), 1, + sym_comment, + ACTIONS(5603), 12, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90466] = 7, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [175838] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4325), 1, + anon_sym_PIPE, + STATE(4752), 1, sym_comment, - ACTIONS(3473), 1, + ACTIONS(5763), 12, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4678), 1, - anon_sym_LBRACK, - ACTIONS(4074), 2, + 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, - ACTIONS(4681), 3, - anon_sym_GT, + anon_sym_PIPE_RBRACE, + [175865] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4753), 1, + sym_comment, + ACTIONS(5824), 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, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_extends, + [175890] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4754), 1, + sym_comment, + ACTIONS(5818), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90522] = 13, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [175915] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4755), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5814), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5451), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4253), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4255), 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, - [90590] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2097), 1, - anon_sym_override, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5454), 1, - anon_sym_STAR, - ACTIONS(5456), 1, - anon_sym_async, - ACTIONS(5460), 1, - anon_sym_readonly, - STATE(2493), 1, - sym_override_modifier, - ACTIONS(5458), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5462), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3765), 3, - anon_sym_LPAREN, anon_sym_LT, + anon_sym_extends, + [175940] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(7969), 1, anon_sym_QMARK, - STATE(3411), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [90660] = 31, - ACTIONS(3), 1, + STATE(4756), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(4941), 1, + sym_formal_parameters, + STATE(6138), 1, + sym_type_annotation, + STATE(6140), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(7967), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175981] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4757), 1, + sym_comment, + ACTIONS(5818), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, anon_sym_PIPE, - ACTIONS(5444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5446), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90764] = 6, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [176006] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4758), 1, sym_comment, - ACTIONS(4936), 1, - anon_sym_LBRACK, - ACTIONS(4010), 2, + ACTIONS(5814), 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, - ACTIONS(4939), 3, - anon_sym_GT, + [176031] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4759), 1, + sym_comment, + ACTIONS(5810), 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, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 24, + anon_sym_extends, + [176056] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4760), 1, + sym_comment, + ACTIONS(5797), 13, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90818] = 6, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [176081] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2398), 1, + anon_sym_DOT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5799), 1, + anon_sym_PIPE, + STATE(4761), 1, sym_comment, - ACTIONS(4634), 1, + ACTIONS(5801), 11, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4662), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(4982), 1, - anon_sym_RBRACK, - ACTIONS(4632), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [176110] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5826), 1, + anon_sym_PIPE, + STATE(4762), 1, + sym_comment, + STATE(3139), 2, + sym_template_string, + sym_arguments, + ACTIONS(5828), 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, + [176143] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4343), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4636), 24, - sym__ternary_qmark, - anon_sym_as, + STATE(4763), 1, + sym_comment, + ACTIONS(5998), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP, anon_sym_BQUOTE, - anon_sym_satisfies, - [90872] = 6, - ACTIONS(3), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [176170] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4341), 1, + anon_sym_PIPE, + STATE(4764), 1, sym_comment, - ACTIONS(3902), 1, + ACTIONS(6004), 12, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4818), 2, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3765), 4, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [176197] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(7971), 1, anon_sym_QMARK, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1806), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [90926] = 6, - ACTIONS(3), 1, + STATE(4765), 1, sym_comment, - ACTIONS(4678), 1, - anon_sym_LBRACK, - ACTIONS(4074), 2, + STATE(4941), 1, + sym_formal_parameters, + STATE(5750), 1, + sym_type_annotation, + STATE(5756), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(7963), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4681), 3, - anon_sym_GT, - anon_sym_AMP, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176238] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5663), 1, anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 24, + STATE(4766), 1, + sym_comment, + ACTIONS(5665), 12, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90980] = 6, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [176265] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5978), 1, + anon_sym_PIPE, + ACTIONS(7973), 1, + anon_sym_DOT, + ACTIONS(7975), 1, + anon_sym_QMARK_DOT, + STATE(4767), 1, sym_comment, - ACTIONS(1501), 1, + ACTIONS(5980), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4857), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(4989), 1, - anon_sym_RBRACK, - ACTIONS(1499), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 24, - sym__ternary_qmark, - anon_sym_as, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [176296] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4768), 1, + sym_comment, + ACTIONS(5609), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [91034] = 31, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [176321] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5549), 1, + anon_sym_PIPE, + ACTIONS(7717), 1, + anon_sym_LT, + STATE(4769), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(4557), 1, - anon_sym_BANG, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, + STATE(4867), 1, + sym_type_arguments, + ACTIONS(5551), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4567), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [176352] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2386), 1, anon_sym_DOT, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5799), 1, + anon_sym_PIPE, + STATE(4770), 1, + sym_comment, + ACTIONS(5801), 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, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [176381] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4339), 1, anon_sym_PIPE, - ACTIONS(5444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5446), 1, - sym__ternary_qmark, - STATE(3955), 1, - sym_type_arguments, - STATE(4085), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2295), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91138] = 5, - ACTIONS(3), 1, + STATE(4771), 1, sym_comment, - ACTIONS(4140), 3, + ACTIONS(6029), 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, + [176408] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5830), 1, anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4138), 4, + STATE(4772), 1, + sym_comment, + ACTIONS(5832), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_extends, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 22, - sym__ternary_qmark, - anon_sym_as, + anon_sym_PIPE_RBRACE, + [176435] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4773), 1, + sym_comment, + ACTIONS(6023), 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [91190] = 31, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [176460] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4774), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(6027), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, anon_sym_PIPE, - ACTIONS(5444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5446), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91294] = 31, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [176485] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(7979), 1, + anon_sym_QMARK, + STATE(4775), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(4941), 1, + sym_formal_parameters, + STATE(6092), 1, + sym_type_annotation, + STATE(6093), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(7977), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176526] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4776), 1, + sym_comment, + ACTIONS(5940), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, anon_sym_PIPE, - ACTIONS(5444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5446), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91398] = 31, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [176551] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4777), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5944), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, anon_sym_PIPE, - ACTIONS(5444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5446), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91502] = 6, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [176576] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4778), 1, sym_comment, - ACTIONS(5464), 1, + ACTIONS(5944), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5466), 1, - anon_sym_DOT, - STATE(2475), 1, - sym_arguments, - ACTIONS(3251), 9, - anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3249), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [91556] = 31, - ACTIONS(3), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [176601] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4779), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5944), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, anon_sym_PIPE, - ACTIONS(5444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5446), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91660] = 31, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [176626] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4780), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5950), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, anon_sym_PIPE, - ACTIONS(5444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5446), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91764] = 6, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [176651] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4781), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(4763), 1, + ACTIONS(5950), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5008), 1, - anon_sym_RBRACK, - ACTIONS(4316), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 24, - sym__ternary_qmark, - anon_sym_as, + anon_sym_LT, + anon_sym_extends, + [176676] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4782), 1, + sym_comment, + ACTIONS(5950), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [91818] = 31, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [176701] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4783), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5961), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, anon_sym_PIPE, - ACTIONS(5444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5446), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91922] = 14, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [176726] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4784), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5961), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5468), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [91992] = 19, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [176751] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4785), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(5961), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [92072] = 26, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [176776] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4786), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(6027), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5434), 1, anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, anon_sym_PIPE, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [92166] = 27, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [176801] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4787), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(6027), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5434), 1, anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, anon_sym_PIPE, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [92262] = 17, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [176826] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4788), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(6045), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5468), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [92338] = 23, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [176851] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4789), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(6045), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 3, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [92426] = 24, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [176876] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(7981), 1, + anon_sym_QMARK, + STATE(4790), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(4941), 1, + sym_formal_parameters, + STATE(5238), 1, + sym__call_signature, + STATE(6092), 1, + sym_type_annotation, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(7977), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176917] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, anon_sym_LPAREN, - ACTIONS(3968), 1, + ACTIONS(7983), 1, + anon_sym_QMARK, + STATE(4791), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(5495), 1, + sym__call_signature, + STATE(6138), 1, + sym_type_annotation, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(7967), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176958] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(7987), 1, + anon_sym_COLON, + ACTIONS(7989), 1, + anon_sym_QMARK, + STATE(4792), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(5396), 1, + sym__call_signature, + STATE(6135), 1, + sym_type_annotation, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(7985), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176999] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4793), 1, + sym_comment, + ACTIONS(6045), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5434), 1, anon_sym_AMP, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4418), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 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, - [92516] = 25, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [177024] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4794), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(6053), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5416), 1, - anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5434), 1, anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4418), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [92608] = 16, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [177049] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4795), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + ACTIONS(6053), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5468), 1, - anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 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(4420), 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, - [92682] = 17, - ACTIONS(3), 1, + anon_sym_LT, + anon_sym_extends, + [177074] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(7993), 1, + anon_sym_QMARK, + STATE(4796), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(4941), 1, + sym_formal_parameters, + STATE(6029), 1, + sym__call_signature, + STATE(6030), 1, + sym_type_annotation, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(7991), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177115] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4797), 1, + sym_comment, + ACTIONS(6053), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3968), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5468), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - STATE(3995), 1, + anon_sym_extends, + [177140] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(7995), 1, + anon_sym_QMARK, + STATE(4798), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(6133), 1, + sym__call_signature, + STATE(6135), 1, + sym_type_annotation, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(7985), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177181] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7777), 1, + anon_sym_LT, + ACTIONS(7997), 1, + anon_sym_DOT, + ACTIONS(7999), 1, + anon_sym_is, + STATE(4799), 1, + sym_comment, + STATE(5005), 1, sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4418), 11, - anon_sym_STAR, - anon_sym_in, + ACTIONS(4546), 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, + [177214] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(8001), 1, + anon_sym_QMARK, + STATE(4800), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(5441), 1, + sym__call_signature, + STATE(6030), 1, + sym_type_annotation, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(7991), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177255] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7651), 1, + anon_sym_LT, + ACTIONS(7661), 1, + anon_sym_DOT, + ACTIONS(8003), 1, + anon_sym_EQ, + ACTIONS(8008), 1, + anon_sym_COLON, + ACTIONS(8010), 1, + anon_sym_extends, + STATE(4639), 1, + sym_type_arguments, + STATE(4801), 1, + sym_comment, + STATE(6381), 1, + sym_constraint, + STATE(7520), 1, + sym_default_type, + ACTIONS(8005), 2, + anon_sym_COMMA, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(4546), 3, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4420), 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, - [92758] = 28, - ACTIONS(3), 1, + [177298] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4315), 1, + anon_sym_PIPE, + STATE(4802), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, + ACTIONS(5561), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3970), 1, anon_sym_DOT, - ACTIONS(4182), 1, anon_sym_QMARK_DOT, - ACTIONS(4418), 1, - anon_sym_BANG, - ACTIONS(5416), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [177325] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, + sym_identifier, + ACTIONS(7851), 1, + anon_sym_type, + STATE(4803), 1, + sym_comment, + STATE(6313), 1, + sym_import_require_clause, + STATE(6314), 1, + sym_string, + STATE(7939), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + [177369] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, + STATE(4804), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(6156), 1, + sym_type_annotation, + STATE(6910), 1, + sym__initializer, + STATE(8012), 1, + sym_type_parameters, + STATE(8061), 1, + sym__call_signature, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177411] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4805), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(6072), 1, + sym_type_annotation, + STATE(6074), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(8015), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177449] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5549), 1, + anon_sym_PIPE, + ACTIONS(8017), 1, + anon_sym_is, + STATE(4806), 1, + sym_comment, + ACTIONS(5551), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [177477] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5557), 1, anon_sym_PIPE, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4420), 4, - sym__ternary_qmark, - anon_sym_as, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [92856] = 7, + ACTIONS(7817), 1, + anon_sym_is, + STATE(4807), 1, + sym_comment, + ACTIONS(5559), 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, + [177505] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4808), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(5892), 1, + sym_type_annotation, + STATE(6877), 1, + sym__initializer, + STATE(6927), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(8019), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177547] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4809), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(5335), 1, + sym__call_signature, + STATE(5754), 1, + sym_type_annotation, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(8021), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177585] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2215), 1, + anon_sym_PIPE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4810), 1, + sym_comment, + ACTIONS(2267), 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, + [177611] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4811), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(5236), 1, + sym__call_signature, + STATE(6072), 1, + sym_type_annotation, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(8015), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177649] = 14, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, + sym_identifier, + ACTIONS(7851), 1, + anon_sym_type, + STATE(4812), 1, + sym_comment, + STATE(6398), 1, + sym_string, + STATE(6399), 1, + sym_import_require_clause, + STATE(8113), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + [177693] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(4813), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(5864), 1, + sym_type_annotation, + STATE(6955), 1, + sym__initializer, + STATE(7710), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177735] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5593), 1, + anon_sym_PIPE, + STATE(4814), 1, sym_comment, - ACTIONS(4318), 1, + ACTIONS(5595), 11, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4328), 1, - anon_sym_extends, - ACTIONS(4322), 2, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4325), 2, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4316), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_extends, + anon_sym_is, + anon_sym_PIPE_RBRACE, + [177761] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4815), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(5769), 1, + sym_type_annotation, + STATE(7129), 1, + sym__initializer, + STATE(7131), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(8025), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [177803] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92912] = 7, - ACTIONS(3), 1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(4816), 1, sym_comment, - ACTIONS(3363), 1, + STATE(5707), 1, + sym_formal_parameters, + STATE(5777), 1, + sym_type_annotation, + STATE(7229), 1, + sym__initializer, + STATE(7794), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(8027), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177845] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(4074), 1, - anon_sym_extends, - ACTIONS(4678), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4681), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, - anon_sym_as, + STATE(4817), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(6098), 1, + sym_type_annotation, + STATE(6583), 1, + sym__initializer, + STATE(7993), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(8013), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [177887] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92968] = 7, - ACTIONS(3), 1, + STATE(4818), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(5439), 1, + sym__call_signature, + STATE(6027), 1, + sym_type_annotation, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(8029), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177925] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5236), 1, + anon_sym_RBRACE, + ACTIONS(7839), 1, + anon_sym_EQ, + STATE(4819), 1, sym_comment, - ACTIONS(1501), 1, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5190), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [177959] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(2143), 1, - anon_sym_extends, - ACTIONS(4363), 2, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(4820), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(5870), 1, + sym_type_annotation, + STATE(6841), 1, + sym__initializer, + STATE(7660), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(8031), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178001] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5241), 1, anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4366), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1499), 11, + ACTIONS(7839), 1, + anon_sym_EQ, + STATE(4821), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5190), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [178035] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(4822), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(6139), 1, + sym_type_annotation, + STATE(6720), 1, + sym__initializer, + STATE(8012), 1, + sym_type_parameters, + STATE(8031), 1, + sym__call_signature, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178077] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, + sym_identifier, + ACTIONS(7851), 1, + anon_sym_type, + STATE(4823), 1, + sym_comment, + STATE(6527), 1, + sym_import_require_clause, + STATE(6528), 1, + sym_string, + STATE(8107), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + [178121] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(4824), 1, + sym_comment, + STATE(5028), 1, + sym_formal_parameters, + STATE(5641), 1, + sym__call_signature, + STATE(5892), 1, + sym_type_annotation, + STATE(6869), 1, + sym__initializer, + STATE(8101), 1, + sym_type_parameters, + ACTIONS(8019), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [178163] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93024] = 31, + STATE(4825), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(5754), 1, + sym_type_annotation, + STATE(5755), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(8021), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178201] = 14, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, + sym_identifier, + ACTIONS(7851), 1, + anon_sym_type, + STATE(4826), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(6420), 1, + sym_import_require_clause, + STATE(6421), 1, + sym_string, + STATE(8002), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + [178245] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5416), 1, + STATE(4827), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(6141), 1, + sym_type_annotation, + STATE(6142), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(8033), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178283] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, - anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, - anon_sym_PIPE, - ACTIONS(5444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5446), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93128] = 7, - ACTIONS(3), 1, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4828), 1, sym_comment, - ACTIONS(3497), 1, + STATE(4941), 1, + sym_formal_parameters, + STATE(5855), 1, + sym_type_annotation, + STATE(5856), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(8035), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178321] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(4678), 1, - anon_sym_LBRACK, - ACTIONS(4074), 2, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(4829), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(6063), 1, + sym_type_annotation, + STATE(6584), 1, + sym__initializer, + STATE(7991), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(8023), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4681), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_SEMI, + [178363] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(7841), 1, 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, - [93184] = 6, - ACTIONS(3), 1, + STATE(4830), 1, sym_comment, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(4818), 2, + STATE(4941), 1, + sym_formal_parameters, + STATE(5412), 1, + sym__call_signature, + STATE(6141), 1, + sym_type_annotation, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(8033), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3765), 4, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178401] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, anon_sym_LPAREN, + ACTIONS(7833), 1, anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1790), 6, - anon_sym_STAR, - anon_sym_LBRACK, + STATE(4831), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(5906), 1, + sym_type_annotation, + STATE(6838), 1, + sym__initializer, + STATE(7810), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178443] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, anon_sym_DQUOTE, + ACTIONS(2498), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1788), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, + ACTIONS(7667), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [93238] = 31, - ACTIONS(3), 1, + ACTIONS(7851), 1, + anon_sym_type, + STATE(4832), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5416), 1, + STATE(6531), 1, + sym_string, + STATE(6535), 1, + sym_import_require_clause, + STATE(7801), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + [178487] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, - anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, - anon_sym_PIPE, - ACTIONS(5444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5446), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93342] = 31, - ACTIONS(3), 1, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(4833), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(5028), 1, + sym_formal_parameters, + STATE(5589), 1, + sym__call_signature, + STATE(6071), 1, + sym_type_annotation, + STATE(6594), 1, + sym__initializer, + STATE(8101), 1, + sym_type_parameters, + ACTIONS(8037), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178529] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5244), 1, + anon_sym_RBRACE, + ACTIONS(7839), 1, + anon_sym_EQ, + STATE(4834), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5190), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4172), 1, - anon_sym_as, - ACTIONS(4176), 1, - anon_sym_BANG, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(4214), 1, - anon_sym_satisfies, - ACTIONS(5416), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5418), 1, - anon_sym_GT_GT, - ACTIONS(5424), 1, - anon_sym_PERCENT, - ACTIONS(5426), 1, - anon_sym_STAR_STAR, - ACTIONS(5430), 1, - anon_sym_AMP_AMP, - ACTIONS(5432), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5434), 1, - anon_sym_AMP, - ACTIONS(5436), 1, - anon_sym_CARET, - ACTIONS(5438), 1, - anon_sym_PIPE, - ACTIONS(5444), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5446), 1, - sym__ternary_qmark, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - ACTIONS(4212), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5412), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5414), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5420), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5422), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5440), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5442), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(5428), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93446] = 4, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [178563] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 1, - sym_regex_flags, - ACTIONS(5136), 17, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(5138), 22, - sym__ternary_qmark, + ACTIONS(7671), 1, anon_sym_LBRACE, + ACTIONS(7849), 1, + sym_identifier, + ACTIONS(7851), 1, + anon_sym_type, + STATE(4835), 1, + sym_comment, + STATE(6367), 1, + sym_string, + STATE(6368), 1, + sym_import_require_clause, + STATE(7847), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + [178607] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5233), 1, anon_sym_COMMA, + ACTIONS(5269), 1, + anon_sym_RBRACE, + ACTIONS(7839), 1, + anon_sym_EQ, + STATE(4836), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5190), 7, + sym__automatic_semicolon, anon_sym_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, - [93496] = 12, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [178641] = 14, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(7667), 1, + anon_sym_STAR, + ACTIONS(7671), 1, + anon_sym_LBRACE, + ACTIONS(7849), 1, + sym_identifier, + ACTIONS(7851), 1, + anon_sym_type, + STATE(4837), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_LBRACK, - ACTIONS(3970), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_QMARK_DOT, - ACTIONS(5471), 1, + STATE(6519), 1, + sym_string, + STATE(6521), 1, + sym_import_require_clause, + STATE(7932), 1, + sym_import_clause, + STATE(8149), 1, + sym__import_identifier, + STATE(8226), 2, + sym_namespace_import, + sym_named_imports, + [178685] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(7651), 1, anon_sym_LT, - STATE(3995), 1, + ACTIONS(7661), 1, + anon_sym_DOT, + ACTIONS(8039), 1, + anon_sym_QMARK, + STATE(4639), 1, sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4389), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4391), 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, - [93562] = 7, - ACTIONS(3), 1, + STATE(4838), 1, sym_comment, - ACTIONS(3489), 1, - anon_sym_EQ, - ACTIONS(4678), 1, - anon_sym_LBRACK, - ACTIONS(4074), 2, + STATE(8056), 1, + sym_type_annotation, + ACTIONS(4546), 6, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4681), 3, - anon_sym_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_extends, + [178721] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(7841), 1, 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, - [93618] = 9, - ACTIONS(3), 1, + STATE(4839), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, + STATE(4941), 1, + sym_formal_parameters, + STATE(5497), 1, + sym__call_signature, + STATE(5855), 1, + sym_type_annotation, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(8035), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178759] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4840), 1, + sym_comment, + STATE(4941), 1, + sym_formal_parameters, + STATE(6026), 1, + sym__call_signature, + STATE(6027), 1, + sym_type_annotation, + STATE(7440), 1, + sym_type_parameters, + ACTIONS(8029), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178797] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(5416), 1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - STATE(3995), 1, - sym_type_arguments, - STATE(4031), 1, - sym_optional_chain, - STATE(1691), 2, - sym_template_string, - sym_arguments, - ACTIONS(4385), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4387), 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, - [93678] = 4, - ACTIONS(3), 1, + STATE(4841), 1, sym_comment, - ACTIONS(3467), 1, + STATE(5707), 1, + sym_formal_parameters, + STATE(5964), 1, + sym_type_annotation, + STATE(6724), 1, + sym__initializer, + STATE(7798), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(8031), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178839] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 26, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + STATE(4842), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(5916), 1, + sym_type_annotation, + STATE(6822), 1, + sym__initializer, + STATE(7829), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178881] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5233), 1, anon_sym_COMMA, + ACTIONS(5260), 1, + anon_sym_RBRACE, + ACTIONS(7839), 1, + anon_sym_EQ, + STATE(4843), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5190), 7, + sym__automatic_semicolon, anon_sym_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, - [93728] = 6, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [178915] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(4844), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(6265), 1, + sym_type_annotation, + STATE(7189), 1, + sym__initializer, + STATE(8012), 1, + sym_type_parameters, + STATE(8156), 1, + sym__call_signature, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178957] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5233), 1, + anon_sym_COMMA, + ACTIONS(5251), 1, + anon_sym_RBRACE, + ACTIONS(7839), 1, + anon_sym_EQ, + STATE(4845), 1, + sym_comment, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5190), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [178991] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5563), 1, + anon_sym_PIPE, + ACTIONS(7817), 1, + anon_sym_is, + STATE(4846), 1, sym_comment, - ACTIONS(4634), 1, + ACTIONS(5565), 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, + [179019] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(4662), 1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, anon_sym_COLON, - ACTIONS(4982), 2, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(4847), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(5807), 1, + sym_type_annotation, + STATE(7134), 1, + sym__initializer, + STATE(7533), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(8042), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4632), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_SEMI, + [179061] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7777), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(7997), 1, + anon_sym_DOT, + STATE(4848), 1, + sym_comment, + STATE(5005), 1, + sym_type_arguments, + ACTIONS(4546), 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_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4636), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_extends, + [179091] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93782] = 6, - ACTIONS(3), 1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(4849), 1, sym_comment, - ACTIONS(3384), 1, + STATE(5707), 1, + sym_formal_parameters, + STATE(6010), 1, + sym_type_annotation, + STATE(6651), 1, + sym__initializer, + STATE(7850), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(8031), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3423), 1, - anon_sym_RBRACK, - ACTIONS(3538), 1, - anon_sym_EQ, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_SEMI, + [179133] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(7841), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93835] = 3, - ACTIONS(3), 1, + STATE(4850), 1, sym_comment, - ACTIONS(3273), 10, - anon_sym_STAR, + STATE(5213), 1, + sym_formal_parameters, + STATE(8035), 1, + sym_type_parameters, + ACTIONS(5426), 2, + anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(5190), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [179169] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3271), 29, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_DOT, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [93882] = 3, - ACTIONS(3), 1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(4851), 1, sym_comment, - ACTIONS(5476), 11, + STATE(5707), 1, + sym_formal_parameters, + STATE(6252), 1, + sym_type_annotation, + STATE(7111), 1, + sym__initializer, + STATE(8012), 1, + sym_type_parameters, + STATE(8141), 1, + sym__call_signature, + ACTIONS(8013), 3, sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5474), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [93929] = 11, - ACTIONS(3), 1, + [179211] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(4852), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5454), 1, - anon_sym_STAR, - ACTIONS(5456), 1, - anon_sym_async, - ACTIONS(5458), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5462), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3765), 3, + STATE(5028), 1, + sym_formal_parameters, + STATE(5650), 1, + sym__call_signature, + STATE(6102), 1, + sym_type_annotation, + STATE(6589), 1, + sym__initializer, + STATE(8101), 1, + sym_type_parameters, + ACTIONS(8044), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179253] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(4853), 1, + sym_comment, + STATE(5028), 1, + sym_formal_parameters, + STATE(5618), 1, + sym__call_signature, + STATE(6126), 1, + sym_type_annotation, + STATE(6748), 1, + sym__initializer, + STATE(8101), 1, + sym_type_parameters, + ACTIONS(8046), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179295] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, anon_sym_LPAREN, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_QMARK, - STATE(3411), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 24, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [93992] = 4, - ACTIONS(3), 1, + STATE(4854), 1, sym_comment, - ACTIONS(1731), 3, + STATE(5707), 1, + sym_formal_parameters, + STATE(5843), 1, + sym_type_annotation, + STATE(7053), 1, + sym__initializer, + STATE(7553), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + ACTIONS(8031), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, + [179337] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, anon_sym_COLON, - ACTIONS(5478), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5481), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(7859), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [94041] = 4, - ACTIONS(3), 1, + STATE(4855), 1, sym_comment, - ACTIONS(4851), 3, + STATE(5028), 1, + sym_formal_parameters, + STATE(5716), 1, + sym__call_signature, + STATE(5769), 1, + sym_type_annotation, + STATE(7262), 1, + sym__initializer, + STATE(8101), 1, + sym_type_parameters, + ACTIONS(8025), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, + [179379] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7833), 1, anon_sym_COLON, - ACTIONS(5484), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + STATE(4856), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(6151), 1, + sym_type_annotation, + STATE(6895), 1, + sym__initializer, + STATE(8012), 1, + sym_type_parameters, + STATE(8051), 1, + sym__call_signature, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179421] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3518), 1, + anon_sym_PIPE, + STATE(4857), 1, + sym_comment, + ACTIONS(5793), 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, + [179446] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6010), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5487), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + STATE(4858), 1, + sym_comment, + ACTIONS(6012), 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, + [179471] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6047), 1, + anon_sym_PIPE, + STATE(4859), 1, + sym_comment, + ACTIONS(6049), 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, + [179496] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8048), 1, anon_sym_DOT, + ACTIONS(8050), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [94090] = 6, - ACTIONS(3), 1, + STATE(4860), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(5980), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4681), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4074), 3, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + [179523] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4861), 1, + sym_comment, + ACTIONS(5603), 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [94143] = 9, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [179546] = 14, ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(1886), 1, - anon_sym_EQ_GT, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5458), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3411), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, + ACTIONS(8052), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [94202] = 3, - ACTIONS(3), 1, + ACTIONS(8054), 1, + anon_sym_type, + ACTIONS(8056), 1, + anon_sym_COMMA, + ACTIONS(8058), 1, + anon_sym_RBRACE, + ACTIONS(8060), 1, + anon_sym_typeof, + STATE(4862), 1, + sym_comment, + STATE(6503), 1, + sym_string, + STATE(6688), 1, + sym_import_specifier, + STATE(7823), 1, + sym__import_identifier, + STATE(8469), 1, + sym__module_export_name, + [179589] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5974), 1, + anon_sym_PIPE, + STATE(4863), 1, sym_comment, - ACTIONS(5492), 11, + ACTIONS(5976), 10, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5490), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [94249] = 4, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [179614] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6006), 1, + anon_sym_PIPE, + STATE(4864), 1, sym_comment, - ACTIONS(1583), 3, + ACTIONS(6008), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5494), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [179639] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, anon_sym_AMP, + ACTIONS(8064), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5497), 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, - [94298] = 3, - ACTIONS(3), 1, + ACTIONS(8066), 1, + anon_sym_extends, + STATE(4865), 1, sym_comment, - ACTIONS(5502), 11, + ACTIONS(5842), 8, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5500), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [94345] = 4, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [179668] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5747), 1, + anon_sym_PIPE, + STATE(4866), 1, sym_comment, - ACTIONS(1657), 3, + ACTIONS(5749), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5504), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [179693] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6037), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5507), 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, - [94394] = 4, - ACTIONS(3), 1, + STATE(4867), 1, sym_comment, - ACTIONS(4865), 3, + ACTIONS(6039), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5510), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [179718] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5909), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5513), 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, - [94443] = 3, - ACTIONS(3), 1, + STATE(4868), 1, sym_comment, - ACTIONS(5518), 11, + ACTIONS(5911), 10, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5516), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [94490] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [179743] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5913), 1, + anon_sym_PIPE, + STATE(4869), 1, sym_comment, - ACTIONS(5522), 11, + ACTIONS(5915), 10, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5520), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [94537] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3459), 1, - anon_sym_EQ, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [179768] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5867), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 25, + ACTIONS(8068), 1, + anon_sym_LBRACK, + STATE(4870), 1, + sym_comment, + ACTIONS(5869), 9, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [94586] = 5, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [179795] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5563), 1, + anon_sym_PIPE, + STATE(4871), 1, sym_comment, - ACTIONS(4985), 2, + ACTIONS(5565), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1790), 6, - anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1788), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [94637] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [179820] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7777), 1, + anon_sym_LT, + STATE(4872), 1, sym_comment, - ACTIONS(5526), 11, + STATE(4982), 1, + sym_type_arguments, + ACTIONS(5551), 9, sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5524), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [94684] = 5, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [179847] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5891), 1, + anon_sym_PIPE, + ACTIONS(8070), 1, + anon_sym_extends, + STATE(4873), 1, + sym_comment, + ACTIONS(5893), 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, + [179874] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4874), 1, sym_comment, - ACTIONS(4985), 2, + ACTIONS(6969), 11, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3765), 4, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1808), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1806), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [94735] = 11, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [179897] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4875), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5561), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5528), 1, - anon_sym_STAR, - ACTIONS(5530), 1, - anon_sym_async, - ACTIONS(5532), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5534), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3765), 3, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [179920] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4876), 1, + sym_comment, + ACTIONS(7116), 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, - STATE(3409), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 24, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [94798] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [179943] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6055), 1, + anon_sym_PIPE, + STATE(4877), 1, sym_comment, - ACTIONS(5538), 11, + ACTIONS(6057), 10, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5536), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [94845] = 10, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [179968] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5781), 1, + anon_sym_PIPE, + STATE(4878), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5783), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5528), 1, - anon_sym_STAR, - ACTIONS(5532), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5534), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3765), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3409), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [94906] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [179993] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5777), 1, + anon_sym_PIPE, + ACTIONS(8062), 1, + anon_sym_AMP, + STATE(4879), 1, sym_comment, - ACTIONS(5542), 11, + ACTIONS(5779), 9, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5540), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [94953] = 3, - ACTIONS(3), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180020] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5769), 1, + anon_sym_PIPE, + STATE(4880), 1, sym_comment, - ACTIONS(5546), 11, + ACTIONS(5771), 10, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5544), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [95000] = 10, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180045] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4881), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5832), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5548), 1, - anon_sym_STAR, - ACTIONS(5550), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5552), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3765), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3402), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [95061] = 3, - ACTIONS(3), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [180068] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5875), 1, + anon_sym_PIPE, + STATE(4882), 1, sym_comment, - ACTIONS(5556), 11, + ACTIONS(5877), 10, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5554), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [95108] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180093] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4883), 1, sym_comment, - ACTIONS(5556), 11, + ACTIONS(5801), 10, sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5554), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [95155] = 10, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [180118] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2398), 1, + anon_sym_DOT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4884), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5801), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5558), 1, - anon_sym_STAR, - ACTIONS(5560), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5562), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3765), 3, - anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - anon_sym_QMARK, - STATE(3467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [95216] = 3, - ACTIONS(3), 1, + anon_sym_extends, + [180143] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3530), 1, + anon_sym_PIPE, + STATE(4885), 1, sym_comment, - ACTIONS(5566), 11, + ACTIONS(6014), 10, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5564), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [95263] = 4, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180168] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8064), 1, + anon_sym_PIPE, + ACTIONS(8066), 1, + anon_sym_extends, + STATE(4886), 1, sym_comment, - ACTIONS(4855), 3, + ACTIONS(5757), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5568), 13, - anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [180197] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5719), 1, + anon_sym_PIPE, + ACTIONS(8068), 1, + anon_sym_LBRACK, + STATE(4887), 1, + sym_comment, + ACTIONS(5721), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(5715), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180226] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4888), 1, + sym_comment, + ACTIONS(5190), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_BANG, - anon_sym_in, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [180249] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, anon_sym_AMP, + ACTIONS(8064), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5571), 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, - [95312] = 3, - ACTIONS(3), 1, + ACTIONS(8066), 1, + anon_sym_extends, + STATE(4889), 1, sym_comment, - ACTIONS(5576), 11, + ACTIONS(5915), 8, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5574), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [95359] = 5, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [180278] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8064), 1, + anon_sym_PIPE, + ACTIONS(8066), 1, + anon_sym_extends, + STATE(4890), 1, sym_comment, - ACTIONS(3367), 1, - anon_sym_LPAREN, - STATE(2970), 1, - sym_arguments, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(5729), 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, + [180307] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, anon_sym_AMP, + ACTIONS(8064), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 24, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(8066), 1, + anon_sym_extends, + STATE(4891), 1, + sym_comment, + ACTIONS(5885), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95410] = 4, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [180336] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5549), 1, + anon_sym_PIPE, + STATE(4892), 1, sym_comment, - ACTIONS(5578), 1, - sym_identifier, - ACTIONS(3805), 16, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(5551), 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, + [180361] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3526), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(3809), 22, + STATE(4893), 1, + sym_comment, + ACTIONS(5932), 10, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, + 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - 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, - [95459] = 4, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180386] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4894), 1, sym_comment, - ACTIONS(4753), 3, + ACTIONS(5665), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5580), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5583), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_extends, + [180409] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4895), 1, + sym_comment, + ACTIONS(5605), 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95508] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [180432] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8064), 1, + anon_sym_PIPE, + ACTIONS(8066), 1, + anon_sym_extends, + STATE(4896), 1, sym_comment, - ACTIONS(5588), 11, + ACTIONS(5930), 8, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5586), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [95555] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [180461] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4897), 1, sym_comment, - ACTIONS(5588), 11, + ACTIONS(5677), 11, sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5586), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [95602] = 6, - ACTIONS(3), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [180484] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5755), 1, + anon_sym_PIPE, + STATE(4898), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5757), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4939), 2, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180509] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5739), 1, anon_sym_PIPE, - ACTIONS(4010), 3, + STATE(4899), 1, + sym_comment, + ACTIONS(5741), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [95655] = 6, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [180534] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8064), 1, + anon_sym_PIPE, + ACTIONS(8066), 1, + anon_sym_extends, + STATE(4900), 1, + sym_comment, + ACTIONS(5919), 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, + [180563] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5743), 1, + anon_sym_PIPE, + STATE(4901), 1, sym_comment, - ACTIONS(4010), 1, - anon_sym_extends, - ACTIONS(4936), 2, + ACTIONS(5745), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4939), 2, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180588] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5723), 1, anon_sym_PIPE, - ACTIONS(3303), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [95708] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5454), 1, - anon_sym_STAR, - ACTIONS(5458), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5462), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3765), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3411), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [95769] = 3, - ACTIONS(3), 1, + STATE(4902), 1, sym_comment, - ACTIONS(5592), 11, + ACTIONS(5725), 10, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5590), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [95816] = 4, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180613] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5709), 1, + anon_sym_PIPE, + STATE(4903), 1, sym_comment, - ACTIONS(5598), 2, + ACTIONS(5711), 10, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5596), 9, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5594), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [95865] = 4, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180638] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5751), 1, + anon_sym_PIPE, + STATE(4904), 1, sym_comment, - ACTIONS(1741), 3, + ACTIONS(5753), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5600), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180663] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5719), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5603), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(8068), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [95914] = 7, - ACTIONS(3), 1, + STATE(4905), 1, sym_comment, - ACTIONS(5606), 1, - anon_sym_catch, - ACTIONS(5608), 1, - anon_sym_finally, - STATE(2462), 1, - sym_catch_clause, - STATE(2537), 1, - sym_finally_clause, - ACTIONS(2289), 2, + ACTIONS(5721), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2287), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [95969] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5610), 1, - sym_identifier, - ACTIONS(3805), 16, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180690] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5994), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(3809), 22, + STATE(4906), 1, + sym_comment, + ACTIONS(5996), 10, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, + 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - 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, - [96018] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180715] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5759), 1, + anon_sym_PIPE, + ACTIONS(8062), 1, + anon_sym_AMP, + STATE(4907), 1, sym_comment, - ACTIONS(5526), 11, + ACTIONS(5761), 9, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5524), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [96065] = 3, - ACTIONS(3), 1, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180742] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6000), 1, + anon_sym_PIPE, + STATE(4908), 1, sym_comment, - ACTIONS(5542), 11, + ACTIONS(6002), 10, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5540), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [96112] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180767] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5787), 1, + anon_sym_PIPE, + STATE(4909), 1, sym_comment, - ACTIONS(5546), 11, + ACTIONS(5789), 10, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5544), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [96159] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5612), 1, - sym_identifier, - ACTIONS(3805), 16, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180792] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5791), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(3809), 22, + STATE(4910), 1, + sym_comment, + ACTIONS(5707), 10, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_LPAREN, + 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - 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, - [96208] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180817] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3498), 1, + anon_sym_PIPE, + STATE(4911), 1, sym_comment, - ACTIONS(5592), 11, + ACTIONS(5689), 10, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5590), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [96255] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180842] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5679), 1, + anon_sym_PIPE, + STATE(4912), 1, sym_comment, - ACTIONS(5492), 11, + ACTIONS(5681), 10, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5490), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [96302] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180867] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5667), 1, + anon_sym_PIPE, + STATE(4913), 1, sym_comment, - ACTIONS(5476), 11, + ACTIONS(5669), 10, sym__automatic_semicolon, - anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5474), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [96349] = 7, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180892] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5826), 1, + anon_sym_PIPE, + STATE(4914), 1, sym_comment, - ACTIONS(3355), 1, + ACTIONS(5828), 10, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(4678), 1, - anon_sym_LBRACK, - ACTIONS(4074), 2, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, - ACTIONS(4681), 3, - anon_sym_GT, + anon_sym_PIPE_RBRACE, + [180917] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5871), 1, + anon_sym_PIPE, + STATE(4915), 1, + sym_comment, + ACTIONS(5873), 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, + [180942] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3510), 1, anon_sym_PIPE, - ACTIONS(3303), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [96404] = 11, - ACTIONS(3), 1, + STATE(4916), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5854), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5548), 1, - anon_sym_STAR, - ACTIONS(5614), 1, - anon_sym_async, - ACTIONS(5550), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5552), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3765), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3402), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 24, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [96467] = 6, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180967] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5719), 1, + anon_sym_PIPE, + STATE(4917), 1, sym_comment, - ACTIONS(4656), 1, + ACTIONS(5721), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4659), 2, anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [180992] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5557), 1, anon_sym_PIPE, - ACTIONS(4431), 3, + STATE(4918), 1, + sym_comment, + ACTIONS(5559), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, - ACTIONS(4652), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_PIPE_RBRACE, + [181017] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4654), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(7841), 1, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [96520] = 8, - ACTIONS(3), 1, + STATE(4919), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4539), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, - anon_sym_LT, + STATE(5213), 1, + sym_formal_parameters, + STATE(8035), 1, + sym_type_parameters, + ACTIONS(5190), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK, - STATE(3499), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, + anon_sym_PIPE_RBRACE, + [181048] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5988), 1, + anon_sym_PIPE, + STATE(4920), 1, + sym_comment, + ACTIONS(5990), 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, + [181073] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3265), 1, + anon_sym_LBRACE, + ACTIONS(7551), 1, + anon_sym_COLON, + ACTIONS(7553), 1, + anon_sym_DOT, + ACTIONS(8072), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, + ACTIONS(8074), 1, anon_sym_on, - anon_sym_required, - anon_sym_component, - [96576] = 8, - ACTIONS(3), 1, + ACTIONS(8076), 1, + anon_sym_list, + STATE(4299), 1, + sym_ui_object_initializer, + STATE(4921), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5458), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, + STATE(8201), 1, + sym_nested_identifier, + STATE(4495), 2, + sym_nested_type_identifier, + sym_ui_list_property_type, + [181111] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4497), 1, anon_sym_LPAREN, + ACTIONS(8080), 1, + anon_sym_DOT, + STATE(4922), 1, + sym_comment, + STATE(5201), 1, + sym_arguments, + ACTIONS(8078), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181139] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, anon_sym_LT, - anon_sym_QMARK, - STATE(3411), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, + ACTIONS(8082), 1, + sym_identifier, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + STATE(3740), 1, + sym_class_body, + STATE(4923), 1, + sym_comment, + STATE(5443), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7655), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [181179] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8092), 1, + anon_sym_BANG, + STATE(4924), 1, + sym_comment, + STATE(5978), 1, + sym_type_annotation, + STATE(6691), 1, + sym__initializer, + ACTIONS(8094), 2, + anon_sym_in, anon_sym_of, - anon_sym_async, + ACTIONS(8090), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181213] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8096), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [96632] = 4, + ACTIONS(8098), 1, + anon_sym_LBRACE, + STATE(3874), 1, + sym_class_body, + STATE(4925), 1, + sym_comment, + STATE(5318), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7967), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [181253] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8100), 1, + sym_identifier, + STATE(3612), 1, + sym_class_body, + STATE(4926), 1, + sym_comment, + STATE(5432), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7689), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [181293] = 13, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8102), 1, + sym_identifier, + STATE(3740), 1, + sym_class_body, + STATE(4927), 1, + sym_comment, + STATE(5443), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7655), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [181333] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8104), 1, + anon_sym_is, + STATE(4928), 1, sym_comment, - ACTIONS(3497), 1, - anon_sym_EQ, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(5551), 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_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [96680] = 8, - ACTIONS(3), 1, + anon_sym_extends, + [181357] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7999), 1, + anon_sym_is, + STATE(4929), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5565), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4499), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [181381] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, anon_sym_LT, - anon_sym_QMARK, - STATE(3426), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8106), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [96736] = 8, + STATE(3740), 1, + sym_class_body, + STATE(4930), 1, + sym_comment, + STATE(5443), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7655), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [181421] = 13, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8098), 1, + anon_sym_LBRACE, + ACTIONS(8108), 1, + sym_identifier, + STATE(2989), 1, + sym_class_body, + STATE(4931), 1, sym_comment, - ACTIONS(1412), 1, + STATE(5268), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7418), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [181461] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4459), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, + ACTIONS(8052), 1, + sym_identifier, + ACTIONS(8054), 1, + anon_sym_type, + ACTIONS(8060), 1, + anon_sym_typeof, + ACTIONS(8110), 1, + anon_sym_RBRACE, + STATE(4932), 1, + sym_comment, + STATE(6503), 1, + sym_string, + STATE(7823), 1, + sym__import_identifier, + STATE(7938), 1, + sym_import_specifier, + STATE(8469), 1, + sym__module_export_name, + [181501] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7839), 1, + anon_sym_EQ, + STATE(4933), 1, + sym_comment, + ACTIONS(5426), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5190), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(3492), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, + anon_sym_PIPE_RBRACE, + [181527] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8092), 1, + anon_sym_BANG, + ACTIONS(8112), 1, + anon_sym_EQ, + STATE(4934), 1, + sym_comment, + STATE(5978), 1, + sym_type_annotation, + STATE(5986), 1, + sym__initializer, + ACTIONS(8094), 2, + anon_sym_in, anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [96792] = 4, + ACTIONS(8090), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181561] = 13, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8114), 1, + sym_identifier, + STATE(3612), 1, + sym_class_body, + STATE(4935), 1, sym_comment, - ACTIONS(3473), 1, - anon_sym_EQ, - ACTIONS(3303), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + STATE(5432), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7689), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [181601] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8116), 1, + sym_identifier, + STATE(3612), 1, + sym_class_body, + STATE(4936), 1, + sym_comment, + STATE(5432), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7689), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [181641] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, anon_sym_AMP, + ACTIONS(8064), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 24, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(8066), 1, + anon_sym_extends, + STATE(4937), 1, + sym_comment, + ACTIONS(8118), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181669] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6074), 1, 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, + ACTIONS(6114), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [96840] = 6, - ACTIONS(3), 1, + STATE(4938), 1, sym_comment, - ACTIONS(3355), 1, - anon_sym_EQ, - ACTIONS(3501), 1, - anon_sym_in, - ACTIONS(3504), 1, - anon_sym_of, - ACTIONS(3303), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, + STATE(3619), 2, + sym_template_string, + sym_arguments, + ACTIONS(5828), 6, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 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, - [96892] = 11, + anon_sym_extends, + [181697] = 12, ACTIONS(3), 1, - sym_comment, + aux_sym_comment_token1, ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(8052), 1, sym_identifier, - ACTIONS(11), 1, - anon_sym_import, - ACTIONS(13), 1, - anon_sym_AT, - ACTIONS(15), 1, - anon_sym_pragma, - STATE(2770), 1, - sym_ui_annotation, - STATE(2771), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4277), 1, - sym_ui_nested_identifier, - STATE(4988), 2, - sym_ui_object_definition, - sym_ui_annotated_object, - STATE(2438), 3, - sym_ui_pragma, - sym_ui_import, - aux_sym_program_repeat1, - ACTIONS(9), 26, - anon_sym_export, + ACTIONS(8120), 1, anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [96954] = 11, - ACTIONS(3), 1, + ACTIONS(8122), 1, + anon_sym_as, + STATE(4939), 1, sym_comment, + STATE(6503), 1, + sym_string, + STATE(8171), 1, + sym__import_identifier, + STATE(8206), 1, + sym__module_export_name, + ACTIONS(7853), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [181735] = 5, ACTIONS(5), 1, - sym_identifier, - ACTIONS(11), 1, - anon_sym_import, - ACTIONS(13), 1, - anon_sym_AT, - ACTIONS(15), 1, - anon_sym_pragma, - STATE(2770), 1, - sym_ui_annotation, - STATE(2771), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4277), 1, - sym_ui_nested_identifier, - STATE(4988), 2, - sym_ui_object_definition, - sym_ui_annotated_object, - STATE(2735), 3, - sym_ui_pragma, - sym_ui_import, - aux_sym_program_repeat1, - ACTIONS(9), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [97016] = 8, - ACTIONS(3), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7999), 1, + anon_sym_is, + STATE(4940), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5559), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4523), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [181759] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8126), 1, + anon_sym_COLON, + STATE(4941), 1, + sym_comment, + STATE(5624), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(8124), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181785] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4942), 1, + sym_comment, + ACTIONS(2267), 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, + [181807] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, anon_sym_LT, - anon_sym_QMARK, - STATE(3532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8128), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [97072] = 8, - ACTIONS(3), 1, + STATE(3740), 1, + sym_class_body, + STATE(4943), 1, sym_comment, - ACTIONS(1412), 1, + STATE(5443), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7655), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [181847] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5616), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3422), 3, + ACTIONS(8130), 1, + sym_identifier, + ACTIONS(8134), 1, + anon_sym_COMMA, + ACTIONS(8136), 1, + anon_sym_RBRACE, + STATE(4944), 1, + sym_comment, + STATE(6503), 1, sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, + STATE(6790), 1, + sym__module_export_name, + STATE(6794), 1, + sym_export_specifier, + ACTIONS(8132), 2, anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, + anon_sym_typeof, + [181885] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8126), 1, + anon_sym_COLON, + STATE(4945), 1, + sym_comment, + STATE(5533), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(8138), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181911] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8140), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [97128] = 8, + STATE(3612), 1, + sym_class_body, + STATE(4946), 1, + sym_comment, + STATE(5432), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7689), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [181951] = 13, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8142), 1, + sym_identifier, + STATE(3612), 1, + sym_class_body, + STATE(4947), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5618), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, + STATE(5432), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7689), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [181991] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, anon_sym_LT, - anon_sym_QMARK, - STATE(3412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8144), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [97184] = 8, + STATE(3612), 1, + sym_class_body, + STATE(4948), 1, + sym_comment, + STATE(5432), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7689), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [182031] = 13, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8146), 1, + sym_identifier, + STATE(3740), 1, + sym_class_body, + STATE(4949), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5550), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, + STATE(5443), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7655), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [182071] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, anon_sym_LT, - anon_sym_QMARK, - STATE(3402), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8148), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [97240] = 8, + STATE(3612), 1, + sym_class_body, + STATE(4950), 1, + sym_comment, + STATE(5432), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7689), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [182111] = 13, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8150), 1, + sym_identifier, + STATE(3740), 1, + sym_class_body, + STATE(4951), 1, sym_comment, - ACTIONS(1412), 1, + STATE(5443), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7655), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [182151] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5560), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(3467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, + ACTIONS(8052), 1, + sym_identifier, + ACTIONS(8054), 1, anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, + ACTIONS(8060), 1, + anon_sym_typeof, + ACTIONS(8152), 1, + anon_sym_RBRACE, + STATE(4952), 1, + sym_comment, + STATE(6503), 1, + sym_string, + STATE(7823), 1, + sym__import_identifier, + STATE(7938), 1, + sym_import_specifier, + STATE(8469), 1, + sym__module_export_name, + [182191] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8154), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [97296] = 8, + STATE(3612), 1, + sym_class_body, + STATE(4953), 1, + sym_comment, + STATE(5432), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7689), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [182231] = 13, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8156), 1, + sym_identifier, + STATE(3612), 1, + sym_class_body, + STATE(4954), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4375), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, + STATE(5432), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7689), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [182271] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, anon_sym_LT, - anon_sym_QMARK, - STATE(3413), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8158), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [97352] = 8, + STATE(3740), 1, + sym_class_body, + STATE(4955), 1, + sym_comment, + STATE(5443), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7655), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [182311] = 13, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8160), 1, + sym_identifier, + STATE(3740), 1, + sym_class_body, + STATE(4956), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4352), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, + STATE(5443), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7655), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [182351] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, anon_sym_LT, - anon_sym_QMARK, - STATE(3541), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8098), 1, + anon_sym_LBRACE, + ACTIONS(8162), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [97408] = 8, + STATE(3121), 1, + sym_class_body, + STATE(4957), 1, + sym_comment, + STATE(5426), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7737), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [182391] = 13, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8084), 1, + anon_sym_LBRACE, + ACTIONS(8086), 1, + anon_sym_extends, + ACTIONS(8088), 1, + anon_sym_implements, + ACTIONS(8164), 1, + sym_identifier, + STATE(3740), 1, + sym_class_body, + STATE(4958), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + STATE(5443), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7655), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [182431] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4959), 1, + sym_comment, + ACTIONS(5595), 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, + [182453] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4960), 1, + sym_comment, + ACTIONS(5899), 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, + [182474] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4961), 1, + sym_comment, + ACTIONS(5828), 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, + [182495] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8166), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_PIPE, + ACTIONS(8170), 1, + anon_sym_extends, + STATE(4962), 1, + sym_comment, + ACTIONS(5729), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [182522] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8172), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + STATE(4963), 1, + sym_comment, + STATE(5489), 1, + sym_type_parameters, + STATE(6223), 1, + sym_class_body, + STATE(6981), 1, + sym_extends_clause, + STATE(7370), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [182559] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4964), 1, + sym_comment, + ACTIONS(5915), 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, + [182580] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8178), 1, + anon_sym_LBRACE, + STATE(1296), 1, + sym_class_body, + STATE(4965), 1, + sym_comment, + STATE(5312), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7508), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [182617] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8180), 1, anon_sym_LBRACK, - ACTIONS(4489), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, + STATE(4966), 1, + sym_comment, + ACTIONS(5721), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(5715), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [182642] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(8182), 1, + anon_sym_COMMA, + ACTIONS(8184), 1, + anon_sym_RBRACE, + STATE(4967), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5190), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(3508), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [97464] = 8, - ACTIONS(3), 1, + [182673] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(8182), 1, + anon_sym_COMMA, + ACTIONS(8186), 1, + anon_sym_RBRACE, + STATE(4968), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4296), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5190), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(3400), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [97520] = 8, - ACTIONS(3), 1, + [182704] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8188), 1, + anon_sym_extends, + STATE(4969), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5893), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4439), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, + anon_sym_AMP, + anon_sym_PIPE, + [182727] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7651), 1, anon_sym_LT, - anon_sym_QMARK, - STATE(3475), 3, + ACTIONS(8190), 1, + anon_sym_DOT, + STATE(3004), 1, + sym_template_string, + STATE(3770), 1, + sym_arguments, + STATE(4970), 1, + sym_comment, + STATE(6362), 1, + sym_type_arguments, + STATE(7490), 1, + sym_optional_chain, + [182764] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(8130), 1, + sym_identifier, + ACTIONS(8192), 1, + anon_sym_RBRACE, + STATE(4971), 1, + sym_comment, + STATE(6503), 1, sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, + STATE(6790), 1, + sym__module_export_name, + STATE(7943), 1, + sym_export_specifier, + ACTIONS(8132), 2, anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [97576] = 4, - ACTIONS(3), 1, + anon_sym_typeof, + [182799] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8180), 1, + anon_sym_LBRACK, + STATE(4972), 1, sym_comment, - ACTIONS(5140), 1, - sym_regex_flags, - ACTIONS(5136), 17, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(5869), 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_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(5138), 20, - sym__ternary_qmark, + anon_sym_extends, + [182822] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8194), 1, + anon_sym_BANG, + ACTIONS(8196), 1, + anon_sym_QMARK, + STATE(4973), 1, + sym_comment, + STATE(5878), 1, + sym_type_annotation, + STATE(6915), 1, + sym__initializer, + ACTIONS(7933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182855] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(5488), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5601), 1, anon_sym_BQUOTE, - [97624] = 11, - ACTIONS(3), 1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7651), 1, + anon_sym_LT, + STATE(3004), 1, + sym_template_string, + STATE(3892), 1, + sym_arguments, + STATE(4709), 1, + sym_type_arguments, + STATE(4974), 1, sym_comment, + STATE(7490), 1, + sym_optional_chain, + [182892] = 10, ACTIONS(5), 1, - sym_identifier, - ACTIONS(11), 1, - anon_sym_import, - ACTIONS(13), 1, - anon_sym_AT, - ACTIONS(15), 1, - anon_sym_pragma, - STATE(2770), 1, - sym_ui_annotation, - STATE(2771), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4277), 1, - sym_ui_nested_identifier, - STATE(4951), 2, - sym_ui_object_definition, - sym_ui_annotated_object, - STATE(2735), 3, - sym_ui_pragma, - sym_ui_import, - aux_sym_program_repeat1, - ACTIONS(9), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [97686] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4634), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(4662), 1, - anon_sym_of, - ACTIONS(5304), 1, - anon_sym_in, - ACTIONS(4632), 12, - anon_sym_STAR, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8198), 1, anon_sym_BANG, + ACTIONS(8200), 1, + anon_sym_QMARK, + STATE(4975), 1, + sym_comment, + STATE(5781), 1, + sym_type_annotation, + STATE(7217), 1, + sym__initializer, + ACTIONS(7843), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182925] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8202), 1, + anon_sym_LBRACE, + STATE(1907), 1, + sym_class_body, + STATE(4976), 1, + sym_comment, + STATE(5408), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(8126), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [182962] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8204), 1, + anon_sym_BANG, + ACTIONS(8206), 1, + anon_sym_QMARK, + STATE(4977), 1, + sym_comment, + STATE(6299), 1, + sym_type_annotation, + STATE(7281), 1, + sym__initializer, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182995] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4978), 1, + sym_comment, + ACTIONS(5996), 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_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4636), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_extends, + [183016] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8166), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_PIPE, + ACTIONS(8170), 1, + anon_sym_extends, + STATE(4979), 1, + sym_comment, + ACTIONS(5930), 6, + 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [97738] = 6, - ACTIONS(3), 1, + [183043] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8166), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_PIPE, + ACTIONS(8170), 1, + anon_sym_extends, + STATE(4980), 1, + sym_comment, + ACTIONS(5919), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [183070] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4981), 1, sym_comment, - ACTIONS(1501), 1, + ACTIONS(8208), 9, anon_sym_EQ, - ACTIONS(4857), 1, - anon_sym_of, - ACTIONS(5309), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_in, - ACTIONS(1499), 12, - anon_sym_STAR, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [183091] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4982), 1, + sym_comment, + ACTIONS(6039), 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, + [183112] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8210), 1, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(8212), 1, + anon_sym_QMARK, + STATE(4983), 1, + sym_comment, + STATE(6022), 1, + sym_type_annotation, + STATE(6628), 1, + sym__initializer, + ACTIONS(7933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183145] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4984), 1, + sym_comment, + ACTIONS(5767), 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_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1505), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_extends, + [183166] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8166), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_PIPE, + ACTIONS(8170), 1, + anon_sym_extends, + STATE(4985), 1, + sym_comment, + ACTIONS(5915), 6, + 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [97790] = 6, - ACTIONS(3), 1, + [183193] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4986), 1, + sym_comment, + ACTIONS(5765), 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, + [183214] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4987), 1, + sym_comment, + ACTIONS(5911), 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, + [183235] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8166), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_PIPE, + ACTIONS(8170), 1, + anon_sym_extends, + STATE(4988), 1, + sym_comment, + ACTIONS(5885), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [183262] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4989), 1, sym_comment, - ACTIONS(4318), 1, + ACTIONS(8214), 9, anon_sym_EQ, - ACTIONS(4763), 1, - anon_sym_of, - ACTIONS(5323), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_in, - ACTIONS(4316), 12, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [183283] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8216), 1, + anon_sym_LBRACE, + STATE(490), 1, + sym_class_body, + STATE(4990), 1, + sym_comment, + STATE(5376), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7834), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [183320] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4991), 1, + sym_comment, + ACTIONS(8218), 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, + [183341] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4992), 1, + sym_comment, + ACTIONS(5877), 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_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4320), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_extends, + [183362] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4993), 1, + sym_comment, + ACTIONS(5873), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [97842] = 4, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [183383] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4994), 1, sym_comment, - ACTIONS(3489), 1, + ACTIONS(6014), 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, + [183404] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(3303), 13, - anon_sym_STAR, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8222), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(8224), 1, + anon_sym_QMARK, + STATE(4995), 1, + sym_comment, + STATE(5795), 1, + sym_type_annotation, + STATE(7167), 1, + sym__initializer, + ACTIONS(8220), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183437] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4996), 1, + sym_comment, + ACTIONS(5932), 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_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3307), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, + anon_sym_extends, + [183458] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8226), 1, + anon_sym_BANG, + ACTIONS(8228), 1, + anon_sym_QMARK, + STATE(4997), 1, + sym_comment, + STATE(5779), 1, + sym_type_annotation, + STATE(7224), 1, + sym__initializer, + ACTIONS(7843), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183491] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4998), 1, + sym_comment, + ACTIONS(5793), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [97890] = 8, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [183512] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4999), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5765), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5532), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [183533] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5000), 1, + sym_comment, + ACTIONS(5854), 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, + [183554] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5001), 1, + sym_comment, + ACTIONS(5763), 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, + [183575] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5002), 1, + sym_comment, + ACTIONS(5889), 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, + [183596] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5003), 1, + sym_comment, + ACTIONS(5897), 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, + [183617] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5004), 1, + sym_comment, + ACTIONS(5763), 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, + [183638] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5005), 1, + sym_comment, + ACTIONS(5741), 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, + [183659] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5006), 1, + sym_comment, + ACTIONS(2382), 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, + [183680] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5007), 1, + sym_comment, + ACTIONS(2378), 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, + [183701] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5008), 1, + sym_comment, + ACTIONS(5689), 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, + [183722] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8230), 1, + anon_sym_BANG, + ACTIONS(8232), 1, + anon_sym_QMARK, + STATE(5009), 1, + sym_comment, + STATE(5885), 1, + sym_type_annotation, + STATE(6892), 1, + sym__initializer, + ACTIONS(7827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183755] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8234), 1, + anon_sym_LBRACE, + STATE(424), 1, + sym_class_body, + STATE(5010), 1, + sym_comment, + STATE(5368), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7476), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [183792] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8236), 1, + anon_sym_BANG, + ACTIONS(8238), 1, anon_sym_QMARK, - STATE(3409), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [97946] = 8, - ACTIONS(3), 1, + STATE(5011), 1, + sym_comment, + STATE(5880), 1, + sym_type_annotation, + STATE(6928), 1, + sym__initializer, + ACTIONS(7827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183825] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3051), 1, + sym_class_body, + STATE(5012), 1, + sym_comment, + STATE(5365), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7848), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [183862] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8242), 1, + anon_sym_BANG, + ACTIONS(8244), 1, + anon_sym_QMARK, + STATE(5013), 1, + sym_comment, + STATE(5884), 1, + sym_type_annotation, + STATE(6890), 1, + sym__initializer, + ACTIONS(7933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183895] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8246), 1, + anon_sym_BANG, + ACTIONS(8248), 1, + anon_sym_QMARK, + STATE(5014), 1, + sym_comment, + STATE(5934), 1, + sym_type_annotation, + STATE(6772), 1, + sym__initializer, + ACTIONS(7933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183928] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3666), 1, + sym_class_body, + STATE(5015), 1, + sym_comment, + STATE(5418), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7791), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [183965] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8252), 1, + anon_sym_LBRACE, + STATE(3987), 1, + sym_class_body, + STATE(5016), 1, + sym_comment, + STATE(5265), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7816), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [184002] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8254), 1, + anon_sym_LBRACE, + STATE(1492), 1, + sym_class_body, + STATE(5017), 1, + sym_comment, + STATE(5484), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(8160), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [184039] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8172), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + STATE(5018), 1, + sym_comment, + STATE(5363), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7118), 1, + sym_class_body, + STATE(7878), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [184076] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8256), 1, + anon_sym_LBRACE, + STATE(5019), 1, + sym_comment, + STATE(5347), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7664), 1, + sym_class_body, + STATE(7911), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [184113] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8258), 1, + anon_sym_BANG, + ACTIONS(8260), 1, + anon_sym_QMARK, + STATE(5020), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5620), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, + STATE(5899), 1, + sym_type_annotation, + STATE(6861), 1, + sym__initializer, + ACTIONS(7827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184146] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2961), 1, + anon_sym_RBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(8182), 1, + anon_sym_COMMA, + STATE(5021), 1, + sym_comment, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5190), 4, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - STATE(3436), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [98002] = 8, - ACTIONS(3), 1, + [184177] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8262), 1, + anon_sym_BANG, + ACTIONS(8264), 1, + anon_sym_QMARK, + STATE(5022), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4527), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, + STATE(5875), 1, + sym_type_annotation, + STATE(6940), 1, + sym__initializer, + ACTIONS(7827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184210] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_QMARK, - STATE(3453), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [98058] = 15, - ACTIONS(3), 1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3643), 1, + sym_class_body, + STATE(5023), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3904), 1, + STATE(5337), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7930), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [184247] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5024), 1, + sym_comment, + ACTIONS(6002), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3922), 1, - anon_sym_STAR, - ACTIONS(3926), 1, - anon_sym_async, - ACTIONS(5622), 1, - anon_sym_static, - ACTIONS(5624), 1, - anon_sym_readonly, - ACTIONS(5626), 1, - anon_sym_abstract, - STATE(2503), 1, - sym_override_modifier, - ACTIONS(3928), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3932), 2, - anon_sym_get, - anon_sym_set, - STATE(2951), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [98128] = 8, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [184268] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5025), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(6012), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4090), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, - anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [184289] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8266), 1, + anon_sym_BANG, + ACTIONS(8268), 1, anon_sym_QMARK, - STATE(3520), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [98184] = 8, - ACTIONS(3), 1, + STATE(5026), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5628), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, - anon_sym_LT, + STATE(5904), 1, + sym_type_annotation, + STATE(6849), 1, + sym__initializer, + ACTIONS(7827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184322] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8270), 1, + anon_sym_BANG, + ACTIONS(8272), 1, anon_sym_QMARK, - STATE(3496), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [98240] = 8, - ACTIONS(3), 1, + STATE(5027), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4381), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3765), 3, - anon_sym_LPAREN, - anon_sym_LT, + STATE(5917), 1, + sym_type_annotation, + STATE(6828), 1, + sym__initializer, + ACTIONS(7827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184355] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8274), 1, + anon_sym_COLON, + STATE(5028), 1, + sym_comment, + STATE(5915), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(8124), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [184380] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8276), 1, + anon_sym_BANG, + ACTIONS(8278), 1, anon_sym_QMARK, - STATE(3416), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [98296] = 9, - ACTIONS(3), 1, + STATE(5029), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5630), 1, - anon_sym_RBRACE, - STATE(4301), 1, - sym_enum_assignment, - ACTIONS(5632), 2, - sym_number, - sym_private_property_identifier, - STATE(3911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [98353] = 3, - ACTIONS(3), 1, + STATE(5889), 1, + sym_type_annotation, + STATE(6870), 1, + sym__initializer, + ACTIONS(7933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184413] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8280), 1, + anon_sym_BANG, + ACTIONS(8282), 1, + anon_sym_QMARK, + STATE(5030), 1, sym_comment, - ACTIONS(3263), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3261), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [98398] = 14, - ACTIONS(3), 1, + STATE(5894), 1, + sym_type_annotation, + STATE(6864), 1, + sym__initializer, + ACTIONS(7933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184446] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(7651), 1, + anon_sym_LT, + STATE(3434), 1, + sym_arguments, + STATE(3550), 1, + sym_template_string, + STATE(4938), 1, + sym_type_arguments, + STATE(5031), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_async, - ACTIONS(2093), 1, - anon_sym_readonly, - ACTIONS(2097), 1, - anon_sym_override, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(5634), 1, - anon_sym_static, - STATE(2488), 1, - sym_override_modifier, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [98465] = 14, - ACTIONS(3), 1, + STATE(7453), 1, + sym_optional_chain, + [184483] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8284), 1, + anon_sym_LBRACE, + STATE(1220), 1, + sym_class_body, + STATE(5032), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(3988), 1, - anon_sym_STAR, - ACTIONS(3990), 1, - anon_sym_async, - ACTIONS(3994), 1, - anon_sym_readonly, - ACTIONS(5636), 1, - anon_sym_static, - STATE(2491), 1, - sym_override_modifier, - ACTIONS(3992), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3996), 2, - anon_sym_get, - anon_sym_set, - STATE(2959), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [98532] = 14, - ACTIONS(3), 1, + STATE(5314), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7494), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [184520] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7651), 1, + anon_sym_LT, + ACTIONS(8286), 1, + anon_sym_DOT, + STATE(3004), 1, + sym_template_string, + STATE(3234), 1, + sym_arguments, + STATE(5033), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(3906), 1, - anon_sym_async, - ACTIONS(3910), 1, - anon_sym_readonly, - ACTIONS(5638), 1, - anon_sym_static, - STATE(2480), 1, - sym_override_modifier, - ACTIONS(3908), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_get, - anon_sym_set, - STATE(2980), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [98599] = 3, - ACTIONS(3), 1, + STATE(6362), 1, + sym_type_arguments, + STATE(7490), 1, + sym_optional_chain, + [184557] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8288), 1, + anon_sym_BANG, + ACTIONS(8290), 1, + anon_sym_QMARK, + STATE(5034), 1, sym_comment, - ACTIONS(3293), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3291), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [98644] = 9, - ACTIONS(3), 1, + STATE(6293), 1, + sym_type_annotation, + STATE(7280), 1, + sym__initializer, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184590] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8292), 1, + anon_sym_BANG, + ACTIONS(8294), 1, + anon_sym_QMARK, + STATE(5035), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5640), 1, - anon_sym_RBRACE, - STATE(4301), 1, - sym_enum_assignment, - ACTIONS(5632), 2, - sym_number, - sym_private_property_identifier, - STATE(3911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [98701] = 12, - ACTIONS(3), 1, + STATE(5901), 1, + sym_type_annotation, + STATE(6854), 1, + sym__initializer, + ACTIONS(7933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184623] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8112), 1, + anon_sym_EQ, + STATE(5036), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3417), 1, - anon_sym_override, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(5642), 1, - anon_sym_static, - ACTIONS(5644), 1, - anon_sym_readonly, - ACTIONS(5646), 1, - anon_sym_abstract, - STATE(2555), 1, - sym_override_modifier, - ACTIONS(4670), 2, - sym_number, - sym_private_property_identifier, - STATE(3149), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 24, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, + STATE(5978), 1, + sym_type_annotation, + STATE(5984), 1, + sym__initializer, + ACTIONS(8094), 2, + anon_sym_in, anon_sym_of, - anon_sym_async, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [98764] = 3, - ACTIONS(3), 1, + ACTIONS(8090), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184654] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5037), 1, sym_comment, - ACTIONS(5650), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5648), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, + STATE(5978), 1, + sym_type_annotation, + STATE(6704), 1, + sym__initializer, + ACTIONS(8094), 2, + anon_sym_in, anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [98809] = 9, - ACTIONS(3), 1, + ACTIONS(8090), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184685] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3513), 1, + sym_class_body, + STATE(5038), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5652), 1, - anon_sym_RBRACE, - STATE(4301), 1, - sym_enum_assignment, - ACTIONS(5632), 2, - sym_number, - sym_private_property_identifier, - STATE(3911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [98866] = 9, - ACTIONS(3), 1, + STATE(5345), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(8073), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [184722] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8296), 1, + anon_sym_LBRACE, + STATE(1730), 1, + sym_class_body, + STATE(5039), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5654), 1, - anon_sym_RBRACE, - STATE(4301), 1, - sym_enum_assignment, - ACTIONS(5632), 2, - sym_number, - sym_private_property_identifier, - STATE(3911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [98923] = 3, - ACTIONS(3), 1, + STATE(5395), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(8123), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [184759] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8172), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + STATE(5040), 1, sym_comment, - ACTIONS(3251), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3249), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [98968] = 5, - ACTIONS(3), 1, + STATE(5323), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(6984), 1, + sym_class_body, + STATE(7960), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [184796] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8298), 1, + anon_sym_LBRACE, + STATE(1883), 1, + sym_class_body, + STATE(5041), 1, sym_comment, - ACTIONS(5608), 1, - anon_sym_finally, - STATE(2535), 1, - sym_finally_clause, - ACTIONS(2312), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2310), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [99017] = 6, - ACTIONS(3), 1, + STATE(5235), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7877), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [184833] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(7717), 1, + anon_sym_LT, + STATE(3004), 1, + sym_template_string, + STATE(3455), 1, + sym_arguments, + STATE(4762), 1, + sym_type_arguments, + STATE(5042), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - ACTIONS(5656), 1, + STATE(7490), 1, + sym_optional_chain, + [184870] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(7651), 1, + anon_sym_LT, + ACTIONS(8300), 1, anon_sym_DOT, - STATE(2623), 1, - sym_statement_block, - ACTIONS(1493), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1489), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [99068] = 3, - ACTIONS(3), 1, + STATE(3504), 1, + sym_arguments, + STATE(3550), 1, + sym_template_string, + STATE(5043), 1, sym_comment, - ACTIONS(3845), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5658), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [99113] = 9, - ACTIONS(3), 1, + STATE(6407), 1, + sym_type_arguments, + STATE(7453), 1, + sym_optional_chain, + [184907] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3553), 1, + sym_class_body, + STATE(5044), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5660), 1, - anon_sym_RBRACE, - STATE(4301), 1, - sym_enum_assignment, - ACTIONS(5632), 2, - sym_number, - sym_private_property_identifier, - STATE(3911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [99170] = 9, - ACTIONS(3), 1, + STATE(5462), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7352), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [184944] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8302), 1, + anon_sym_LBRACE, + STATE(4165), 1, + sym_class_body, + STATE(5045), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5662), 1, - anon_sym_RBRACE, - STATE(4105), 1, - sym_enum_assignment, - ACTIONS(5664), 2, - sym_number, - sym_private_property_identifier, - STATE(3655), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [99227] = 3, - ACTIONS(3), 1, + STATE(5332), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(8098), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [184981] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8234), 1, + anon_sym_LBRACE, + STATE(405), 1, + sym_class_body, + STATE(5046), 1, sym_comment, - ACTIONS(3325), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3323), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [99272] = 9, - ACTIONS(3), 1, + STATE(5309), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7514), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [185018] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5047), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + STATE(6080), 1, + sym_type_annotation, + STATE(6626), 1, + sym__initializer, + ACTIONS(7857), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7855), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185049] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5048), 1, + sym_comment, + ACTIONS(5565), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5666), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [185070] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8172), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + STATE(5049), 1, + sym_comment, + STATE(5452), 1, + sym_type_parameters, + STATE(6279), 1, + sym_class_body, + STATE(6981), 1, + sym_extends_clause, + STATE(7354), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [185107] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8304), 1, + anon_sym_LBRACE, + STATE(4412), 1, + sym_class_body, + STATE(5050), 1, + sym_comment, + STATE(5293), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(8084), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [185144] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8306), 1, + anon_sym_LBRACE, + STATE(1386), 1, + sym_class_body, + STATE(5051), 1, + sym_comment, + STATE(5480), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7699), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [185181] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(8182), 1, + anon_sym_COMMA, + ACTIONS(8308), 1, anon_sym_RBRACE, - STATE(4301), 1, - sym_enum_assignment, - ACTIONS(5632), 2, - sym_number, - sym_private_property_identifier, - STATE(3911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [99329] = 3, - ACTIONS(3), 1, + STATE(5052), 1, + sym_comment, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5190), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [185212] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8216), 1, + anon_sym_LBRACE, + STATE(496), 1, + sym_class_body, + STATE(5053), 1, + sym_comment, + STATE(5357), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(8115), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [185249] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5054), 1, sym_comment, - ACTIONS(1535), 4, + ACTIONS(4742), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_AT, - ACTIONS(1533), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [99374] = 9, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [185270] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5055), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5783), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5668), 1, - anon_sym_RBRACE, - STATE(4115), 1, - sym_enum_assignment, - ACTIONS(5670), 2, - sym_number, - sym_private_property_identifier, - STATE(3800), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [99431] = 9, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [185291] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8166), 1, + anon_sym_AMP, + STATE(5056), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5779), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5672), 1, - anon_sym_RBRACE, - STATE(4301), 1, - sym_enum_assignment, - ACTIONS(5632), 2, - sym_number, - sym_private_property_identifier, - STATE(3911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [99488] = 9, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_extends, + [185314] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5057), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5771), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5674), 1, - anon_sym_RBRACE, - STATE(4301), 1, - sym_enum_assignment, - ACTIONS(5632), 2, - sym_number, - sym_private_property_identifier, - STATE(3911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [99545] = 9, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [185335] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8166), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_PIPE, + ACTIONS(8170), 1, + anon_sym_extends, + STATE(5058), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5757), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5676), 1, - anon_sym_RBRACE, - STATE(4301), 1, - sym_enum_assignment, - ACTIONS(5632), 2, - sym_number, - sym_private_property_identifier, - STATE(3911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [99602] = 9, - ACTIONS(3), 1, + [185362] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5059), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5757), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5678), 1, - anon_sym_RBRACE, - STATE(4301), 1, - sym_enum_assignment, - ACTIONS(5632), 2, - sym_number, - sym_private_property_identifier, - STATE(3911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [99659] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [185383] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5060), 1, sym_comment, - ACTIONS(3321), 9, - anon_sym_STAR, + ACTIONS(4740), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(3319), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [99704] = 9, - ACTIONS(3), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [185404] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5061), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5749), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5680), 1, - anon_sym_RBRACE, - STATE(4301), 1, - sym_enum_assignment, - ACTIONS(5632), 2, - sym_number, - sym_private_property_identifier, - STATE(3911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [99761] = 9, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [185425] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8252), 1, + anon_sym_LBRACE, + STATE(4023), 1, + sym_class_body, + STATE(5062), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5682), 1, - anon_sym_RBRACE, - STATE(4161), 1, - sym_enum_assignment, - ACTIONS(5684), 2, - sym_number, - sym_private_property_identifier, - STATE(3617), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [99818] = 9, - ACTIONS(3), 1, + STATE(5467), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7851), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [185462] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3659), 1, + sym_class_body, + STATE(5063), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + STATE(5424), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7787), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [185499] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8310), 1, + anon_sym_BANG, + ACTIONS(8312), 1, + anon_sym_QMARK, + STATE(5064), 1, + sym_comment, + STATE(5987), 1, + sym_type_annotation, + STATE(6673), 1, + sym__initializer, + ACTIONS(7933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185532] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5065), 1, + sym_comment, + ACTIONS(5725), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5686), 1, - anon_sym_RBRACE, - STATE(4301), 1, - sym_enum_assignment, - ACTIONS(5632), 2, - sym_number, - sym_private_property_identifier, - STATE(3911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [99875] = 5, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [185553] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5066), 1, sym_comment, - ACTIONS(3924), 1, + ACTIONS(5711), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(2623), 1, - sym_statement_block, - ACTIONS(1493), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1489), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [99923] = 11, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [185574] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5067), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, + STATE(5784), 1, + sym_type_annotation, + STATE(7183), 1, + sym__initializer, + ACTIONS(7893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7891), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185605] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5068), 1, + sym_comment, + ACTIONS(5681), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3978), 1, - anon_sym_STAR, - ACTIONS(3980), 1, - anon_sym_async, - ACTIONS(3984), 1, - anon_sym_readonly, - ACTIONS(3982), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3986), 2, - anon_sym_get, - anon_sym_set, - STATE(2971), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [99983] = 4, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [185626] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8202), 1, + anon_sym_LBRACE, + STATE(1905), 1, + sym_class_body, + STATE(5069), 1, + sym_comment, + STATE(5284), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(8080), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [185663] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5070), 1, sym_comment, - ACTIONS(2736), 1, + ACTIONS(5669), 9, sym__automatic_semicolon, - ACTIONS(1523), 2, + 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, + [185684] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5071), 1, + sym_comment, + ACTIONS(8314), 9, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1519), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, + anon_sym_RPAREN, + anon_sym_in, anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [100029] = 11, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [185705] = 12, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4088), 1, - anon_sym_STAR, - ACTIONS(4094), 1, - anon_sym_async, - ACTIONS(5688), 1, - anon_sym_readonly, - ACTIONS(4096), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4098), 2, - anon_sym_get, - anon_sym_set, - STATE(2909), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, + ACTIONS(8052), 1, 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [100089] = 4, - ACTIONS(3), 1, + ACTIONS(8054), 1, + anon_sym_type, + ACTIONS(8060), 1, + anon_sym_typeof, + STATE(5072), 1, + sym_comment, + STATE(6503), 1, + sym_string, + STATE(7823), 1, + sym__import_identifier, + STATE(7938), 1, + sym_import_specifier, + STATE(8469), 1, + sym__module_export_name, + [185742] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8316), 1, + anon_sym_BANG, + ACTIONS(8318), 1, + anon_sym_QMARK, + STATE(5073), 1, sym_comment, - ACTIONS(3765), 3, + STATE(5947), 1, + sym_type_annotation, + STATE(6760), 1, + sym__initializer, + ACTIONS(7827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185775] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, anon_sym_LPAREN, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(7651), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1790), 6, - anon_sym_STAR, + STATE(5074), 1, + sym_comment, + STATE(6407), 1, + sym_type_arguments, + STATE(7453), 1, + sym_optional_chain, + STATE(3550), 2, + sym_template_string, + sym_arguments, + [185810] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8306), 1, + anon_sym_LBRACE, + STATE(1338), 1, + sym_class_body, + STATE(5075), 1, + sym_comment, + STATE(5491), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7359), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [185847] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8256), 1, + anon_sym_LBRACE, + STATE(5076), 1, + sym_comment, + STATE(5310), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7724), 1, + sym_class_body, + STATE(7985), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [185884] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5077), 1, + sym_comment, + ACTIONS(5976), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(1788), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [100135] = 4, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [185905] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5078), 1, sym_comment, - ACTIONS(2760), 1, + ACTIONS(8320), 9, sym__automatic_semicolon, - ACTIONS(1715), 2, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1711), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [100181] = 4, - ACTIONS(3), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [185926] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5079), 1, sym_comment, - ACTIONS(2758), 1, + ACTIONS(8322), 9, sym__automatic_semicolon, - ACTIONS(1547), 2, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1543), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [100227] = 3, - ACTIONS(3), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [185947] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8324), 1, + anon_sym_LBRACE, + STATE(1104), 1, + sym_class_body, + STATE(5080), 1, sym_comment, - ACTIONS(5690), 5, - ts_builtin_sym_end, + STATE(5388), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7638), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [185984] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8326), 1, + anon_sym_LBRACE, + STATE(4095), 1, + sym_class_body, + STATE(5081), 1, + sym_comment, + STATE(5301), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7807), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [186021] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8328), 1, + anon_sym_BANG, + ACTIONS(8330), 1, + anon_sym_QMARK, + STATE(5082), 1, + sym_comment, + STATE(5949), 1, + sym_type_annotation, + STATE(6757), 1, + sym__initializer, + ACTIONS(7827), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_AT, - ACTIONS(5692), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [100271] = 10, - ACTIONS(3), 1, + anon_sym_SEMI, + [186054] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3100), 1, + sym_class_body, + STATE(5083), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(5694), 1, - anon_sym_STAR, - ACTIONS(5698), 1, - anon_sym_readonly, - ACTIONS(5696), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5700), 2, - anon_sym_get, - anon_sym_set, - STATE(2940), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 24, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [100329] = 11, - ACTIONS(3), 1, + STATE(5461), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7654), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [186091] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8254), 1, + anon_sym_LBRACE, + STATE(1475), 1, + sym_class_body, + STATE(5084), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5454), 1, - anon_sym_STAR, - ACTIONS(5456), 1, - anon_sym_async, - ACTIONS(5460), 1, - anon_sym_readonly, - ACTIONS(5458), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5462), 2, - anon_sym_get, - anon_sym_set, - STATE(3411), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [100389] = 11, - ACTIONS(3), 1, + STATE(5273), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7957), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [186128] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5085), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3900), 1, - anon_sym_STAR, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(3906), 1, - anon_sym_async, - ACTIONS(3910), 1, - anon_sym_readonly, - ACTIONS(3908), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3912), 2, - anon_sym_get, - anon_sym_set, - STATE(2980), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [100449] = 11, - ACTIONS(3), 1, + STATE(5893), 1, + sym_type_annotation, + STATE(6872), 1, + sym__initializer, + ACTIONS(7887), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7885), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186159] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5086), 1, + sym_comment, + ACTIONS(8332), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [186180] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5087), 1, sym_comment, - ACTIONS(1621), 1, + ACTIONS(8334), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [186201] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(3922), 1, - anon_sym_STAR, - ACTIONS(3926), 1, - anon_sym_async, - ACTIONS(3930), 1, - anon_sym_readonly, - ACTIONS(3928), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3932), 2, - anon_sym_get, - anon_sym_set, - STATE(2951), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, + ACTIONS(8130), 1, 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [100509] = 11, - ACTIONS(3), 1, + ACTIONS(8336), 1, + anon_sym_RBRACE, + STATE(5088), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4016), 1, - anon_sym_STAR, - ACTIONS(4018), 1, - anon_sym_async, - ACTIONS(4022), 1, - anon_sym_readonly, - ACTIONS(4020), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4024), 2, - anon_sym_get, - anon_sym_set, - STATE(2981), 3, + STATE(6503), 1, sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 23, - anon_sym_export, + STATE(6790), 1, + sym__module_export_name, + STATE(7943), 1, + sym_export_specifier, + ACTIONS(8132), 2, anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [100569] = 3, - ACTIONS(3), 1, + anon_sym_typeof, + [186236] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + ACTIONS(8338), 1, + anon_sym_EQ, + STATE(5089), 1, sym_comment, - ACTIONS(5702), 5, - ts_builtin_sym_end, + ACTIONS(8118), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_AT, - ACTIONS(5704), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [100613] = 11, - ACTIONS(3), 1, + anon_sym_EQ_GT, + [186265] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3880), 1, + sym_class_body, + STATE(5090), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + STATE(5319), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(8097), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [186302] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5091), 1, + sym_comment, + ACTIONS(6008), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5528), 1, - anon_sym_STAR, - ACTIONS(5530), 1, - anon_sym_async, - ACTIONS(5706), 1, - anon_sym_readonly, - ACTIONS(5532), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5534), 2, - anon_sym_get, - anon_sym_set, - STATE(3409), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [100673] = 11, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [186323] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5092), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_async, - ACTIONS(2093), 1, - anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(5998), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3974), 1, - anon_sym_STAR, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2095), 2, - anon_sym_get, - anon_sym_set, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [100733] = 11, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [186344] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5093), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, + ACTIONS(6004), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4515), 1, - anon_sym_STAR, - ACTIONS(4517), 1, - anon_sym_async, - ACTIONS(5708), 1, - anon_sym_readonly, - ACTIONS(4519), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4521), 2, - anon_sym_get, - anon_sym_set, - STATE(2961), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [100793] = 10, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [186365] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5094), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, + ACTIONS(6029), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4948), 1, - anon_sym_readonly, - ACTIONS(5710), 1, - anon_sym_STAR, - ACTIONS(5712), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5714), 2, - anon_sym_get, - anon_sym_set, - STATE(2938), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 24, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [100851] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [186386] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(8340), 1, + anon_sym_EQ, + ACTIONS(8342), 1, + anon_sym_DOT, + STATE(5095), 1, sym_comment, - ACTIONS(2342), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2340), 34, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_finally, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [100895] = 3, - ACTIONS(3), 1, + STATE(5178), 1, + sym_arguments, + ACTIONS(8078), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [186415] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5096), 1, sym_comment, - ACTIONS(2330), 2, + ACTIONS(8344), 9, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2328), 34, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, + anon_sym_RPAREN, + anon_sym_in, anon_sym_of, - anon_sym_while, - anon_sym_finally, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [100939] = 8, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [186436] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8346), 1, + anon_sym_BANG, + ACTIONS(8348), 1, + anon_sym_QMARK, + STATE(5097), 1, + sym_comment, + STATE(5860), 1, + sym_type_annotation, + STATE(7005), 1, + sym__initializer, + ACTIONS(7827), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186469] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8284), 1, + anon_sym_LBRACE, + STATE(1171), 1, + sym_class_body, + STATE(5098), 1, + sym_comment, + STATE(5291), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7521), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [186506] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5099), 1, + sym_comment, + ACTIONS(5745), 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, + [186527] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5100), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5559), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - STATE(4301), 1, - sym_enum_assignment, - ACTIONS(5632), 2, - sym_number, - sym_private_property_identifier, - STATE(3911), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [100993] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [186548] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8350), 1, + anon_sym_EQ, + STATE(5101), 1, sym_comment, - ACTIONS(5716), 5, - ts_builtin_sym_end, + ACTIONS(8334), 8, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_AT, - ACTIONS(5718), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [186571] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8352), 1, + anon_sym_EQ, + STATE(5102), 1, + sym_comment, + ACTIONS(8332), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [186594] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8354), 1, + anon_sym_BANG, + ACTIONS(8356), 1, + anon_sym_QMARK, + STATE(5103), 1, + sym_comment, + STATE(6197), 1, + sym_type_annotation, + STATE(6994), 1, + sym__initializer, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186627] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8358), 1, + anon_sym_LBRACE, + STATE(1027), 1, + sym_class_body, + STATE(5104), 1, + sym_comment, + STATE(5341), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7628), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [186664] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5105), 1, + sym_comment, + ACTIONS(8360), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [186685] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4724), 1, + anon_sym_LBRACE, + ACTIONS(8364), 1, + anon_sym_COLON, + ACTIONS(8366), 1, + anon_sym_DOT, + ACTIONS(8368), 1, anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [101037] = 3, - ACTIONS(3), 1, + STATE(4299), 1, + sym_ui_object_initializer, + STATE(5106), 1, sym_comment, - ACTIONS(2346), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2344), 34, - anon_sym_export, + ACTIONS(8362), 4, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_finally, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, anon_sym_property, - anon_sym_signal, - anon_sym_on, anon_sym_required, - anon_sym_component, - anon_sym_enum, - [101081] = 11, - ACTIONS(3), 1, + [186716] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5107), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, + ACTIONS(5753), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3988), 1, - anon_sym_STAR, - ACTIONS(3990), 1, - anon_sym_async, - ACTIONS(3994), 1, - anon_sym_readonly, - ACTIONS(3992), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3996), 2, - anon_sym_get, - anon_sym_set, - STATE(2959), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [101141] = 11, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [186737] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8296), 1, + anon_sym_LBRACE, + STATE(1799), 1, + sym_class_body, + STATE(5108), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, + STATE(5320), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7872), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [186774] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7651), 1, + anon_sym_LT, + STATE(5109), 1, + sym_comment, + STATE(6362), 1, + sym_type_arguments, + STATE(7490), 1, + sym_optional_chain, + STATE(3004), 2, + sym_template_string, + sym_arguments, + [186809] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(7651), 1, + anon_sym_LT, + ACTIONS(8370), 1, + anon_sym_DOT, + STATE(3550), 1, + sym_template_string, + STATE(3887), 1, + sym_arguments, + STATE(5110), 1, + sym_comment, + STATE(6407), 1, + sym_type_arguments, + STATE(7453), 1, + sym_optional_chain, + [186846] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5111), 1, + sym_comment, + ACTIONS(5721), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4050), 1, - anon_sym_STAR, - ACTIONS(4052), 1, - anon_sym_async, - ACTIONS(4060), 1, - anon_sym_readonly, - ACTIONS(4054), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4056), 2, - anon_sym_get, - anon_sym_set, - STATE(2914), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [101201] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [186867] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5112), 1, sym_comment, - ACTIONS(5720), 5, - ts_builtin_sym_end, + ACTIONS(5789), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_AT, - ACTIONS(5722), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [101245] = 11, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [186888] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8166), 1, + anon_sym_AMP, + STATE(5113), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, + ACTIONS(5761), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4497), 1, - anon_sym_STAR, - ACTIONS(4547), 1, - anon_sym_async, - ACTIONS(5724), 1, - anon_sym_readonly, - ACTIONS(4549), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4551), 2, - anon_sym_get, - anon_sym_set, - STATE(2982), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [101305] = 4, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_extends, + [186911] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8180), 1, + anon_sym_LBRACK, + STATE(5114), 1, sym_comment, - ACTIONS(2770), 1, + ACTIONS(5721), 8, sym__automatic_semicolon, - ACTIONS(1571), 2, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [186934] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8178), 1, + anon_sym_LBRACE, + STATE(1402), 1, + sym_class_body, + STATE(5115), 1, + sym_comment, + STATE(5278), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7532), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [186971] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3005), 1, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1567), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [101351] = 7, - ACTIONS(3), 1, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(8182), 1, + anon_sym_COMMA, + STATE(5116), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4499), 2, - sym_number, - sym_private_property_identifier, - STATE(3426), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [101402] = 3, - ACTIONS(3), 1, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5190), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [187002] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8372), 1, + anon_sym_EQ, + STATE(5117), 1, sym_comment, - ACTIONS(2536), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2534), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [101445] = 3, - ACTIONS(3), 1, + ACTIONS(8322), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [187025] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8374), 1, + anon_sym_EQ, + STATE(5118), 1, sym_comment, - ACTIONS(2500), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2498), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [101488] = 7, - ACTIONS(3), 1, + ACTIONS(8320), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [187048] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8298), 1, + anon_sym_LBRACE, + STATE(1858), 1, + sym_class_body, + STATE(5119), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5532), 2, - sym_number, - sym_private_property_identifier, - STATE(3409), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [101539] = 3, - ACTIONS(3), 1, + STATE(5382), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7837), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [187085] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5120), 1, sym_comment, - ACTIONS(2616), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2614), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [101582] = 7, - ACTIONS(3), 1, + STATE(6066), 1, + sym_type_annotation, + STATE(6592), 1, + sym__initializer, + ACTIONS(8378), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(8376), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187116] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8380), 1, + anon_sym_BANG, + ACTIONS(8382), 1, + anon_sym_QMARK, + STATE(5121), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4296), 2, - sym_number, - sym_private_property_identifier, - STATE(3400), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [101633] = 7, - ACTIONS(3), 1, + STATE(6221), 1, + sym_type_annotation, + STATE(7032), 1, + sym__initializer, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187149] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8384), 1, + anon_sym_LBRACE, + STATE(1536), 1, + sym_class_body, + STATE(5122), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, + STATE(5297), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7530), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [187186] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8358), 1, + anon_sym_LBRACE, + STATE(1024), 1, + sym_class_body, + STATE(5123), 1, + sym_comment, + STATE(5298), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7605), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [187223] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7651), 1, + anon_sym_LT, + STATE(2840), 1, + sym_arguments, + STATE(3004), 1, + sym_template_string, + STATE(4709), 1, + sym_type_arguments, + STATE(5124), 1, + sym_comment, + STATE(7490), 1, + sym_optional_chain, + [187260] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5125), 1, + sym_comment, + ACTIONS(6057), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4670), 2, - sym_number, - sym_private_property_identifier, - STATE(3149), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [101684] = 7, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [187281] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8386), 1, + anon_sym_EQ, + STATE(5126), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(4740), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [187304] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8388), 1, + anon_sym_EQ, + STATE(5127), 1, + sym_comment, + ACTIONS(4742), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [187327] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8390), 1, + anon_sym_BANG, + ACTIONS(8392), 1, + anon_sym_QMARK, + STATE(5128), 1, + sym_comment, + STATE(6236), 1, + sym_type_annotation, + STATE(7069), 1, + sym__initializer, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187360] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8172), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + STATE(5129), 1, + sym_comment, + STATE(5296), 1, + sym_type_parameters, + STATE(6125), 1, + sym_class_body, + STATE(6981), 1, + sym_extends_clause, + STATE(7546), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [187397] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8394), 1, + anon_sym_BANG, + ACTIONS(8396), 1, + anon_sym_QMARK, + STATE(5130), 1, + sym_comment, + STATE(6189), 1, + sym_type_annotation, + STATE(6988), 1, + sym__initializer, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187430] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8398), 1, + anon_sym_BANG, + ACTIONS(8400), 1, + anon_sym_QMARK, + STATE(5131), 1, + sym_comment, + STATE(6137), 1, + sym_type_annotation, + STATE(7002), 1, + sym__initializer, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187463] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5132), 1, + sym_comment, + ACTIONS(5551), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4381), 2, - sym_number, - sym_private_property_identifier, - STATE(3416), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [101735] = 7, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [187484] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6080), 1, + anon_sym_DOT, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + ACTIONS(7651), 1, + anon_sym_LT, + STATE(3550), 1, + sym_template_string, + STATE(3758), 1, + sym_arguments, + STATE(4938), 1, + sym_type_arguments, + STATE(5133), 1, + sym_comment, + STATE(7453), 1, + sym_optional_chain, + [187521] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8402), 1, + anon_sym_BANG, + ACTIONS(8404), 1, + anon_sym_QMARK, + STATE(5134), 1, + sym_comment, + STATE(5830), 1, + sym_type_annotation, + STATE(7060), 1, + sym__initializer, + ACTIONS(8220), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187554] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8406), 1, + anon_sym_BANG, + ACTIONS(8408), 1, + anon_sym_QMARK, + STATE(5135), 1, + sym_comment, + STATE(5970), 1, + sym_type_annotation, + STATE(6701), 1, + sym__initializer, + ACTIONS(7933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187587] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8410), 1, + anon_sym_BANG, + ACTIONS(8412), 1, + anon_sym_QMARK, + STATE(5136), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4375), 2, - sym_number, - sym_private_property_identifier, - STATE(3413), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [101786] = 7, - ACTIONS(3), 1, + STATE(6239), 1, + sym_type_annotation, + STATE(7087), 1, + sym__initializer, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187620] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8414), 1, + anon_sym_BANG, + ACTIONS(8416), 1, + anon_sym_QMARK, + STATE(5137), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4539), 2, - sym_number, - sym_private_property_identifier, - STATE(3499), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [101837] = 8, - ACTIONS(3), 1, + STATE(6242), 1, + sym_type_annotation, + STATE(7015), 1, + sym__initializer, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187653] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5138), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, + STATE(6153), 1, + sym_type_annotation, + STATE(6711), 1, + sym__initializer, + ACTIONS(7927), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7925), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187684] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5139), 1, + sym_comment, + ACTIONS(6049), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4948), 1, - anon_sym_readonly, - ACTIONS(4670), 2, - sym_number, - sym_private_property_identifier, - STATE(3149), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [101890] = 3, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [187705] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8418), 1, + anon_sym_BANG, + ACTIONS(8420), 1, + anon_sym_QMARK, + STATE(5140), 1, sym_comment, - ACTIONS(2688), 2, + STATE(6250), 1, + sym_type_annotation, + STATE(7102), 1, + sym__initializer, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187738] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3003), 1, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2686), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [101933] = 7, - ACTIONS(3), 1, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(8182), 1, + anon_sym_COMMA, + STATE(5141), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4672), 2, - sym_number, - sym_private_property_identifier, - STATE(3390), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [101984] = 7, - ACTIONS(3), 1, + STATE(7100), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5190), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [187769] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5142), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(5707), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4352), 2, - sym_number, - sym_private_property_identifier, - STATE(3541), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [102035] = 7, - ACTIONS(3), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [187790] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8422), 1, + anon_sym_LBRACE, + STATE(469), 1, + sym_class_body, + STATE(5143), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + STATE(5218), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7572), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [187827] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8166), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_PIPE, + ACTIONS(8170), 1, + anon_sym_extends, + STATE(5144), 1, + sym_comment, + ACTIONS(5842), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5628), 2, - sym_number, - sym_private_property_identifier, - STATE(3496), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [102086] = 5, - ACTIONS(3), 1, + [187854] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8424), 1, + anon_sym_BANG, + ACTIONS(8426), 1, + anon_sym_QMARK, + STATE(5145), 1, sym_comment, - ACTIONS(5726), 1, - anon_sym_else, - STATE(2509), 1, - sym_else_clause, - ACTIONS(2322), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2320), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [102133] = 7, - ACTIONS(3), 1, + STATE(6268), 1, + sym_type_annotation, + STATE(7179), 1, + sym__initializer, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187887] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8428), 1, + anon_sym_LBRACE, + STATE(377), 1, + sym_class_body, + STATE(5146), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4489), 2, - sym_number, - sym_private_property_identifier, - STATE(3508), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [102184] = 3, - ACTIONS(3), 1, + STATE(5488), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7621), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [187924] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8430), 1, + anon_sym_BANG, + ACTIONS(8432), 1, + anon_sym_QMARK, + STATE(5147), 1, sym_comment, - ACTIONS(1531), 3, + STATE(6260), 1, + sym_type_annotation, + STATE(7126), 1, + sym__initializer, + ACTIONS(7865), 3, sym__automatic_semicolon, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1529), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [102227] = 7, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [187957] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8434), 1, + anon_sym_BANG, + ACTIONS(8436), 1, + anon_sym_QMARK, + STATE(5148), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5618), 2, - sym_number, - sym_private_property_identifier, - STATE(3412), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [102278] = 7, - ACTIONS(3), 1, + STATE(5967), 1, + sym_type_annotation, + STATE(6707), 1, + sym__initializer, + ACTIONS(7933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187990] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8324), 1, + anon_sym_LBRACE, + STATE(1122), 1, + sym_class_body, + STATE(5149), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4684), 2, - sym_number, - sym_private_property_identifier, - STATE(3425), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [102329] = 7, - ACTIONS(3), 1, + STATE(5311), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7615), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [188027] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8384), 1, + anon_sym_LBRACE, + STATE(1569), 1, + sym_class_body, + STATE(5150), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4439), 2, - sym_number, - sym_private_property_identifier, - STATE(3475), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [102380] = 3, - ACTIONS(3), 1, + STATE(5287), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7576), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [188064] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8172), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + STATE(5151), 1, sym_comment, - ACTIONS(2516), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2514), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [102423] = 3, - ACTIONS(3), 1, + STATE(5282), 1, + sym_type_parameters, + STATE(6084), 1, + sym_class_body, + STATE(6981), 1, + sym_extends_clause, + STATE(7590), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [188101] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8304), 1, + anon_sym_LBRACE, + STATE(4343), 1, + sym_class_body, + STATE(5152), 1, sym_comment, - ACTIONS(2700), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2698), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [102466] = 4, - ACTIONS(3), 1, + STATE(5258), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7973), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [188138] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(7651), 1, + anon_sym_LT, + ACTIONS(8438), 1, + anon_sym_DOT, + STATE(3004), 1, + sym_template_string, + STATE(3694), 1, + sym_arguments, + STATE(5153), 1, + sym_comment, + STATE(6362), 1, + sym_type_arguments, + STATE(7490), 1, + sym_optional_chain, + [188175] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5154), 1, sym_comment, - ACTIONS(2768), 1, + ACTIONS(5990), 9, sym__automatic_semicolon, - ACTIONS(1729), 2, + 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, + [188196] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3001), 1, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1725), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [102511] = 4, - ACTIONS(3), 1, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(8182), 1, + anon_sym_COMMA, + STATE(5155), 1, + sym_comment, + STATE(6742), 1, + aux_sym_object_repeat1, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5190), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [188227] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8302), 1, + anon_sym_LBRACE, + STATE(4205), 1, + sym_class_body, + STATE(5156), 1, + sym_comment, + STATE(5271), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(8058), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [188264] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8440), 1, + anon_sym_BANG, + ACTIONS(8442), 1, + anon_sym_QMARK, + STATE(5157), 1, sym_comment, - ACTIONS(2776), 1, + STATE(6298), 1, + sym_type_annotation, + STATE(7309), 1, + sym__initializer, + ACTIONS(7865), 3, sym__automatic_semicolon, - ACTIONS(1591), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1587), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [102556] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [188297] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8274), 1, + anon_sym_COLON, + STATE(5158), 1, sym_comment, - ACTIONS(2778), 1, + STATE(5938), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(8138), 5, sym__automatic_semicolon, - ACTIONS(1641), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1637), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [102601] = 7, - ACTIONS(3), 1, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [188322] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8326), 1, + anon_sym_LBRACE, + STATE(4169), 1, + sym_class_body, + STATE(5159), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4459), 2, - sym_number, - sym_private_property_identifier, - STATE(3492), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [102652] = 7, - ACTIONS(3), 1, + STATE(5358), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7840), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [188359] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5488), 1, + anon_sym_DOT, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5621), 1, + anon_sym_QMARK_DOT, + ACTIONS(7651), 1, + anon_sym_LT, + STATE(3004), 1, + sym_template_string, + STATE(3404), 1, + sym_arguments, + STATE(4709), 1, + sym_type_arguments, + STATE(5160), 1, + sym_comment, + STATE(7490), 1, + sym_optional_chain, + [188396] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8422), 1, + anon_sym_LBRACE, + STATE(461), 1, + sym_class_body, + STATE(5161), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5458), 2, - sym_number, - sym_private_property_identifier, - STATE(3411), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [102703] = 3, - ACTIONS(3), 1, + STATE(5260), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7627), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [188433] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8444), 1, + anon_sym_BANG, + ACTIONS(8446), 1, + anon_sym_QMARK, + STATE(5162), 1, sym_comment, - ACTIONS(2520), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2518), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [102746] = 4, - ACTIONS(3), 1, + STATE(5731), 1, + sym_type_annotation, + STATE(7308), 1, + sym__initializer, + ACTIONS(7865), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188466] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8428), 1, + anon_sym_LBRACE, + STATE(357), 1, + sym_class_body, + STATE(5163), 1, + sym_comment, + STATE(5248), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7592), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [188503] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8448), 1, + anon_sym_BANG, + ACTIONS(8450), 1, + anon_sym_QMARK, + STATE(5164), 1, sym_comment, - ACTIONS(2780), 1, + STATE(6292), 1, + sym_type_annotation, + STATE(7303), 1, + sym__initializer, + ACTIONS(7865), 3, sym__automatic_semicolon, - ACTIONS(1739), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1735), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [102791] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [188536] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8452), 1, + anon_sym_BANG, + ACTIONS(8454), 1, + anon_sym_QMARK, + STATE(5165), 1, sym_comment, - ACTIONS(2704), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2702), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [102834] = 3, - ACTIONS(3), 1, + STATE(5955), 1, + sym_type_annotation, + STATE(6733), 1, + sym__initializer, + ACTIONS(7933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188569] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3601), 1, + sym_class_body, + STATE(5166), 1, sym_comment, - ACTIONS(2632), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2630), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [102877] = 7, - ACTIONS(3), 1, + STATE(5410), 1, + sym_type_parameters, + STATE(6981), 1, + sym_extends_clause, + STATE(7373), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [188606] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8456), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8458), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8460), 1, + anon_sym_QMARK_COLON, + STATE(5167), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4527), 2, - sym_number, - sym_private_property_identifier, - STATE(3453), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [102928] = 3, - ACTIONS(3), 1, + STATE(6127), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [188634] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8456), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8458), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8460), 1, + anon_sym_QMARK_COLON, + STATE(5168), 1, sym_comment, - ACTIONS(2572), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2570), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [102971] = 4, - ACTIONS(3), 1, + STATE(6116), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [188662] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8464), 1, + anon_sym_BQUOTE, + ACTIONS(8466), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8468), 1, + sym__template_chars, + STATE(5169), 1, sym_comment, - ACTIONS(2740), 1, - sym__automatic_semicolon, - ACTIONS(1655), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1651), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [103016] = 4, - ACTIONS(3), 1, + STATE(5674), 1, + aux_sym_template_string_repeat1, + STATE(5810), 1, + aux_sym_template_literal_type_repeat1, + STATE(6345), 1, + sym_template_substitution, + STATE(7137), 1, + sym_template_type, + [188696] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8456), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8458), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8460), 1, + anon_sym_QMARK_COLON, + STATE(5170), 1, + sym_comment, + STATE(6058), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [188724] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8456), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8458), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8460), 1, + anon_sym_QMARK_COLON, + STATE(5171), 1, + sym_comment, + STATE(6060), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [188752] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8064), 1, + anon_sym_PIPE, + ACTIONS(8066), 1, + anon_sym_extends, + STATE(5172), 1, sym_comment, - ACTIONS(2744), 1, + ACTIONS(8470), 5, sym__automatic_semicolon, - ACTIONS(1581), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1577), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [103061] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5620), 2, - sym_number, - sym_private_property_identifier, - STATE(3436), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [103112] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [188778] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8456), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8458), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8460), 1, + anon_sym_QMARK_COLON, + STATE(5173), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5550), 2, - sym_number, - sym_private_property_identifier, - STATE(3402), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [103163] = 4, - ACTIONS(3), 1, + STATE(5920), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [188806] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8064), 1, + anon_sym_PIPE, + ACTIONS(8066), 1, + anon_sym_extends, + STATE(5174), 1, sym_comment, - ACTIONS(2738), 1, + ACTIONS(8472), 5, sym__automatic_semicolon, - ACTIONS(1693), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1689), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [103208] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [188832] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8064), 1, + anon_sym_PIPE, + ACTIONS(8066), 1, + anon_sym_extends, + STATE(5175), 1, sym_comment, - ACTIONS(1599), 3, + ACTIONS(8474), 5, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1597), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [103251] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [188858] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8476), 1, + anon_sym_EQ, + STATE(5176), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4090), 2, - sym_number, - sym_private_property_identifier, - STATE(3520), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [103302] = 7, - ACTIONS(3), 1, + ACTIONS(7099), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [188880] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8456), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8458), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8460), 1, + anon_sym_QMARK_COLON, + STATE(5177), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(2033), 2, - sym_number, - sym_private_property_identifier, - STATE(3399), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [103353] = 3, - ACTIONS(3), 1, + STATE(6068), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [188908] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8478), 1, + anon_sym_EQ, + STATE(5178), 1, sym_comment, - ACTIONS(2512), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2510), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [103396] = 7, - ACTIONS(3), 1, + ACTIONS(8480), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [188930] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8456), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8458), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8460), 1, + anon_sym_QMARK_COLON, + STATE(5179), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(5560), 2, - sym_number, - sym_private_property_identifier, - STATE(3467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [103447] = 7, - ACTIONS(3), 1, + STATE(5853), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [188958] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8466), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8468), 1, + sym__template_chars, + ACTIONS(8482), 1, + anon_sym_BQUOTE, + STATE(5180), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4543), 2, - sym_number, - sym_private_property_identifier, - STATE(3539), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [103498] = 3, + STATE(5674), 1, + aux_sym_template_string_repeat1, + STATE(5881), 1, + aux_sym_template_literal_type_repeat1, + STATE(6345), 1, + sym_template_substitution, + STATE(7137), 1, + sym_template_type, + [188992] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1647), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4263), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8484), 1, anon_sym_enum, - [103541] = 7, - ACTIONS(3), 1, + STATE(5181), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(3916), 2, - sym_number, - sym_private_property_identifier, - STATE(3529), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [103592] = 3, - ACTIONS(3), 1, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6433), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [189024] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8466), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8468), 1, + sym__template_chars, + ACTIONS(8486), 1, + anon_sym_BQUOTE, + STATE(5182), 1, + sym_comment, + STATE(5674), 1, + aux_sym_template_string_repeat1, + STATE(5810), 1, + aux_sym_template_literal_type_repeat1, + STATE(6345), 1, + sym_template_substitution, + STATE(7137), 1, + sym_template_type, + [189058] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8456), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8458), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8460), 1, + anon_sym_QMARK_COLON, + STATE(5183), 1, + sym_comment, + STATE(5788), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [189086] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8456), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8458), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8460), 1, + anon_sym_QMARK_COLON, + STATE(5184), 1, + sym_comment, + STATE(5854), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [189114] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8166), 1, + anon_sym_AMP, + ACTIONS(8168), 1, + anon_sym_PIPE, + ACTIONS(8170), 1, + anon_sym_extends, + STATE(5185), 1, + sym_comment, + ACTIONS(8118), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [189140] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7771), 1, + anon_sym_LPAREN, + ACTIONS(8488), 1, + anon_sym_DOT, + STATE(5186), 1, sym_comment, - ACTIONS(1673), 3, + STATE(5668), 1, + sym_arguments, + ACTIONS(8078), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1671), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + anon_sym_COMMA, + anon_sym_SEMI, + [189166] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8466), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8468), 1, + sym__template_chars, + ACTIONS(8490), 1, + anon_sym_BQUOTE, + STATE(5187), 1, + sym_comment, + STATE(5674), 1, + aux_sym_template_string_repeat1, + STATE(5810), 1, + aux_sym_template_literal_type_repeat1, + STATE(6345), 1, + sym_template_substitution, + STATE(7137), 1, + sym_template_type, + [189200] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4263), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8492), 1, anon_sym_enum, - [103635] = 8, - ACTIONS(3), 1, + STATE(5188), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_readonly, - ACTIONS(4686), 2, - sym_number, - sym_private_property_identifier, - STATE(3209), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [103688] = 7, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6390), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [189232] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(4686), 2, - sym_number, - sym_private_property_identifier, - STATE(3209), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4263), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [103739] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, anon_sym_LBRACK, - ACTIONS(4154), 2, - sym_number, - sym_private_property_identifier, - STATE(3502), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [103790] = 3, - ACTIONS(3), 1, + ACTIONS(8494), 1, + anon_sym_enum, + STATE(5189), 1, sym_comment, - ACTIONS(2334), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2332), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6401), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [189264] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + ACTIONS(8092), 1, + anon_sym_BANG, + STATE(5190), 1, + sym_comment, + STATE(5978), 1, + sym_type_annotation, + STATE(6691), 1, + sym__initializer, + ACTIONS(8090), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189294] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8466), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8468), 1, + sym__template_chars, + ACTIONS(8496), 1, + anon_sym_BQUOTE, + STATE(5191), 1, + sym_comment, + STATE(5511), 1, + aux_sym_template_string_repeat1, + STATE(5810), 1, + aux_sym_template_literal_type_repeat1, + STATE(6345), 1, + sym_template_substitution, + STATE(7137), 1, + sym_template_type, + [189328] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4263), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8498), 1, anon_sym_enum, - [103833] = 7, - ACTIONS(3), 1, + STATE(5192), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, - anon_sym_LBRACK, - ACTIONS(4523), 2, - sym_number, - sym_private_property_identifier, - STATE(3532), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [103884] = 3, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6547), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [189360] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(2644), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2642), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4263), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8500), 1, anon_sym_enum, - [103927] = 3, - ACTIONS(3), 1, + STATE(5193), 1, sym_comment, - ACTIONS(2640), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2638), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6371), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [189392] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4263), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8502), 1, anon_sym_enum, - [103970] = 8, - ACTIONS(3), 1, + STATE(5194), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(5728), 1, - anon_sym_readonly, - ACTIONS(5155), 2, - sym_number, - sym_private_property_identifier, - STATE(3225), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [104023] = 3, - ACTIONS(3), 1, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6347), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [189424] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8506), 1, + anon_sym_DOT, + STATE(5195), 1, sym_comment, - ACTIONS(2488), 2, + ACTIONS(8504), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2486), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [189446] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4263), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8508), 1, anon_sym_enum, - [104066] = 7, + STATE(5196), 1, + sym_comment, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6330), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [189478] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8466), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8468), 1, + sym__template_chars, + ACTIONS(8510), 1, + anon_sym_BQUOTE, + STATE(5197), 1, + sym_comment, + STATE(5511), 1, + aux_sym_template_string_repeat1, + STATE(5810), 1, + aux_sym_template_literal_type_repeat1, + STATE(6345), 1, + sym_template_substitution, + STATE(7137), 1, + sym_template_type, + [189512] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4263), 1, + sym_identifier, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8512), 1, + anon_sym_enum, + STATE(5198), 1, sym_comment, - ACTIONS(1621), 1, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(6449), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [189544] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, + ACTIONS(2251), 1, anon_sym_SQUOTE, - ACTIONS(3904), 1, - anon_sym_LBRACK, - ACTIONS(5155), 2, - sym_number, - sym_private_property_identifier, - STATE(3225), 3, + ACTIONS(8130), 1, + sym_identifier, + STATE(5199), 1, + sym_comment, + STATE(6503), 1, sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(3393), 27, - anon_sym_export, + STATE(6790), 1, + sym__module_export_name, + STATE(7943), 1, + sym_export_specifier, + ACTIONS(8132), 2, anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [104117] = 3, - ACTIONS(3), 1, + anon_sym_typeof, + [189576] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8514), 1, + anon_sym_LBRACE, + ACTIONS(8516), 1, + anon_sym_DOT, + STATE(5200), 1, sym_comment, - ACTIONS(2624), 2, + STATE(5897), 1, + sym_statement_block, + ACTIONS(2324), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2622), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104160] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [189602] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5201), 1, sym_comment, - ACTIONS(2790), 1, + ACTIONS(8480), 8, sym__automatic_semicolon, - ACTIONS(1557), 2, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1553), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104205] = 7, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [189622] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5202), 1, + sym_comment, + ACTIONS(7099), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [189642] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8466), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8468), 1, + sym__template_chars, + ACTIONS(8518), 1, + anon_sym_BQUOTE, + STATE(5203), 1, + sym_comment, + STATE(5674), 1, + aux_sym_template_string_repeat1, + STATE(5810), 1, + aux_sym_template_literal_type_repeat1, + STATE(6345), 1, + sym_template_substitution, + STATE(7137), 1, + sym_template_type, + [189676] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8466), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8468), 1, + sym__template_chars, + ACTIONS(8520), 1, + anon_sym_BQUOTE, + STATE(5204), 1, + sym_comment, + STATE(5674), 1, + aux_sym_template_string_repeat1, + STATE(5810), 1, + aux_sym_template_literal_type_repeat1, + STATE(6345), 1, + sym_template_substitution, + STATE(7137), 1, + sym_template_type, + [189710] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8514), 1, + anon_sym_LBRACE, + ACTIONS(8522), 1, + anon_sym_DOT, + STATE(5205), 1, + sym_comment, + STATE(5897), 1, + sym_statement_block, + ACTIONS(2324), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [189736] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4519), 1, + anon_sym_LT, + ACTIONS(8524), 1, + sym_identifier, + ACTIONS(8526), 1, + anon_sym_LPAREN, + STATE(3731), 1, + sym_arguments, + STATE(5206), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(3914), 1, + STATE(7573), 1, + sym_type_arguments, + ACTIONS(8528), 2, anon_sym_LBRACK, - ACTIONS(5616), 2, - sym_number, sym_private_property_identifier, - STATE(3422), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2089), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [104256] = 3, - ACTIONS(3), 1, + [189765] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5207), 1, sym_comment, - ACTIONS(2338), 2, + ACTIONS(2386), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2336), 33, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_while, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104299] = 3, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [189784] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8530), 1, + sym_identifier, + ACTIONS(8532), 1, + anon_sym_STAR, + ACTIONS(8534), 1, + anon_sym_LPAREN, + STATE(5208), 1, sym_comment, - ACTIONS(2364), 2, + STATE(5707), 1, + sym_formal_parameters, + STATE(7665), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [189815] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5209), 1, + sym_comment, + STATE(5933), 1, + sym_type_annotation, + STATE(6781), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189842] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5210), 1, + sym_comment, + STATE(5850), 1, + sym_type_annotation, + STATE(7001), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189869] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5211), 1, + sym_comment, + STATE(6192), 1, + sym_type_annotation, + STATE(7293), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189896] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5212), 1, + sym_comment, + STATE(7762), 1, + sym_statement_block, + ACTIONS(8538), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2362), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104341] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [189919] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5213), 1, sym_comment, - ACTIONS(2684), 2, + STATE(6094), 1, + sym_type_annotation, + ACTIONS(8540), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104383] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [189942] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5214), 1, sym_comment, - ACTIONS(2472), 2, + STATE(6283), 1, + sym_type_annotation, + STATE(7276), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189969] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5215), 1, + sym_comment, + STATE(6282), 1, + sym_type_annotation, + STATE(7256), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189996] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5216), 1, + sym_comment, + STATE(5847), 1, + sym_type_annotation, + STATE(7008), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190023] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5217), 1, + sym_comment, + STATE(6031), 1, + sym_type_annotation, + ACTIONS(8542), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104425] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [190046] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8422), 1, + anon_sym_LBRACE, + STATE(485), 1, + sym_class_body, + STATE(5218), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7535), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [190077] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5219), 1, + sym_comment, + STATE(5824), 1, + sym_type_annotation, + STATE(7039), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190104] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5220), 1, + sym_comment, + STATE(6277), 1, + sym_type_annotation, + STATE(7251), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190131] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5221), 1, + sym_comment, + STATE(6275), 1, + sym_type_annotation, + STATE(7234), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190158] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5222), 1, + sym_comment, + ACTIONS(4742), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [190177] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5223), 1, sym_comment, - ACTIONS(2472), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104467] = 3, + STATE(5940), 1, + sym_type_annotation, + STATE(6765), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190204] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8544), 1, + sym_identifier, + ACTIONS(8546), 1, + anon_sym_STAR, + STATE(5224), 1, sym_comment, - ACTIONS(2472), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, + STATE(5707), 1, + sym_formal_parameters, + STATE(7583), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [190235] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5225), 1, + sym_comment, + STATE(5931), 1, + sym_type_annotation, + STATE(6783), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190262] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5226), 1, + sym_comment, + ACTIONS(4740), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [190281] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5227), 1, + sym_comment, + ACTIONS(8320), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [190300] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5228), 1, + sym_comment, + ACTIONS(8314), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104509] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_COLON, + [190319] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5229), 1, + sym_comment, + STATE(5930), 1, + sym_type_annotation, + STATE(6789), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190346] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5230), 1, + sym_comment, + STATE(5839), 1, + sym_type_annotation, + STATE(7042), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190373] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5231), 1, + sym_comment, + STATE(5942), 1, + sym_type_annotation, + STATE(6749), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190400] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8548), 1, + sym__automatic_semicolon, + STATE(5232), 1, sym_comment, - ACTIONS(2472), 2, + ACTIONS(2370), 6, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104551] = 3, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [190421] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5233), 1, + sym_comment, + STATE(5918), 1, + sym_type_annotation, + STATE(6791), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190448] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4329), 1, + anon_sym_DQUOTE, + ACTIONS(4331), 1, + anon_sym_SQUOTE, + ACTIONS(8550), 1, + sym_identifier, + ACTIONS(8552), 1, + anon_sym_DOT, + STATE(994), 1, + sym_nested_identifier, + STATE(1036), 1, + sym_string, + STATE(1093), 1, + sym__module, + STATE(5234), 1, + sym_comment, + [190479] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8298), 1, + anon_sym_LBRACE, + STATE(1881), 1, + sym_class_body, + STATE(5235), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7842), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [190510] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5236), 1, sym_comment, - ACTIONS(2472), 2, + STATE(8019), 1, + sym_statement_block, + ACTIONS(8554), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104593] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [190533] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8556), 1, + anon_sym_LBRACE, + ACTIONS(8558), 1, + anon_sym_LT, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8562), 1, + anon_sym_LBRACE_PIPE, + STATE(1618), 1, + sym_object_type, + STATE(5237), 1, sym_comment, - ACTIONS(2472), 2, + STATE(5838), 1, + sym_type_parameters, + STATE(7045), 1, + sym_extends_type_clause, + [190564] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5238), 1, + sym_comment, + STATE(7727), 1, + sym_statement_block, + ACTIONS(8564), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104635] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [190587] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8566), 1, + anon_sym_EQ, + STATE(5239), 1, sym_comment, - ACTIONS(2472), 2, + ACTIONS(4657), 6, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104677] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [190608] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5240), 1, sym_comment, - ACTIONS(1531), 2, + STATE(8169), 1, + sym_statement_block, + ACTIONS(8564), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1529), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104719] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [190631] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5241), 1, + sym_comment, + STATE(6267), 1, + sym_type_annotation, + STATE(7191), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190658] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5242), 1, sym_comment, - ACTIONS(2436), 2, + ACTIONS(8569), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2434), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104761] = 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [190677] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5243), 1, + sym_comment, + ACTIONS(8322), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [190696] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5244), 1, + sym_comment, + STATE(5833), 1, + sym_type_annotation, + STATE(7068), 1, + sym__initializer, + ACTIONS(8031), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190723] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8003), 1, + anon_sym_EQ, + STATE(5245), 1, + sym_comment, + STATE(6495), 1, + sym_constraint, + STATE(8043), 1, + sym_default_type, + ACTIONS(8008), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(8571), 2, + anon_sym_COMMA, + anon_sym_GT, + [190750] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5246), 1, + sym_comment, + STATE(5978), 1, + sym_type_annotation, + STATE(6704), 1, + sym__initializer, + ACTIONS(8090), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190777] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4361), 1, + anon_sym_DQUOTE, + ACTIONS(4363), 1, + anon_sym_SQUOTE, + ACTIONS(8573), 1, + sym_identifier, + ACTIONS(8575), 1, + anon_sym_DOT, + STATE(1151), 1, + sym_nested_identifier, + STATE(1286), 1, + sym_string, + STATE(1545), 1, + sym__module, + STATE(5247), 1, + sym_comment, + [190808] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8428), 1, + anon_sym_LBRACE, + STATE(349), 1, + sym_class_body, + STATE(5248), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7612), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [190839] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5249), 1, + sym_comment, + STATE(5786), 1, + sym_type_annotation, + STATE(7200), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190866] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5250), 1, sym_comment, - ACTIONS(2472), 2, + ACTIONS(8577), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [190885] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5251), 1, + sym_comment, + ACTIONS(8334), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [190904] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5252), 1, + sym_comment, + ACTIONS(6282), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, anon_sym_of, - anon_sym_async, - anon_sym_function, + anon_sym_SEMI, + anon_sym_COLON, + [190923] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104803] = 3, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5253), 1, + sym_comment, + STATE(6484), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [190952] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, + sym_identifier, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5254), 1, + sym_comment, + STATE(6322), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [190981] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5255), 1, sym_comment, - ACTIONS(2472), 2, + ACTIONS(4657), 7, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [191000] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5256), 1, + sym_comment, + STATE(6005), 1, + sym_type_annotation, + STATE(6662), 1, + sym__initializer, + ACTIONS(8031), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191027] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8558), 1, + anon_sym_LT, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8581), 1, + anon_sym_LBRACE_PIPE, + STATE(5257), 1, + sym_comment, + STATE(5743), 1, + sym_type_parameters, + STATE(6257), 1, + sym_object_type, + STATE(7315), 1, + sym_extends_type_clause, + [191058] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8304), 1, + anon_sym_LBRACE, + STATE(4323), 1, + sym_class_body, + STATE(5258), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(8017), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [191089] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5259), 1, + sym_comment, + STATE(5960), 1, + sym_type_annotation, + STATE(6726), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191116] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8422), 1, + anon_sym_LBRACE, + STATE(464), 1, + sym_class_body, + STATE(5260), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7578), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [191147] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5261), 1, + sym_comment, + STATE(5785), 1, + sym_type_annotation, + STATE(7202), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191174] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5262), 1, + sym_comment, + STATE(6287), 1, + sym_type_annotation, + STATE(6656), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191201] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5263), 1, + sym_comment, + STATE(6295), 1, + sym_type_annotation, + STATE(7236), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191228] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5264), 1, + sym_comment, + STATE(5962), 1, + sym_type_annotation, + STATE(6722), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191255] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8252), 1, + anon_sym_LBRACE, + STATE(4017), 1, + sym_class_body, + STATE(5265), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7789), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [191286] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5266), 1, + sym_comment, + STATE(6253), 1, + sym_type_annotation, + STATE(7120), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191313] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104845] = 3, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5267), 1, + sym_comment, + STATE(6713), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [191342] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3102), 1, + sym_class_body, + STATE(5268), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7656), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [191373] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5269), 1, + sym_comment, + STATE(6126), 1, + sym_type_annotation, + STATE(6769), 1, + sym__initializer, + ACTIONS(8046), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191400] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, + sym_identifier, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5270), 1, sym_comment, - ACTIONS(2440), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2438), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(6347), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [191429] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8302), 1, + anon_sym_LBRACE, + STATE(4035), 1, + sym_class_body, + STATE(5271), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(8020), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [191460] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5272), 1, + sym_comment, + STATE(5809), 1, + sym_type_annotation, + STATE(7128), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191487] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8254), 1, + anon_sym_LBRACE, + STATE(1650), 1, + sym_class_body, + STATE(5273), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7368), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [191518] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5274), 1, + sym_comment, + STATE(5892), 1, + sym_type_annotation, + STATE(6867), 1, + sym__initializer, + ACTIONS(8019), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191545] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(39), 1, + anon_sym_import, + ACTIONS(8583), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104887] = 3, + STATE(4571), 1, + sym__type_query_member_expression, + STATE(4572), 1, + sym__type_query_subscript_expression, + STATE(4767), 1, + sym__type_query_call_expression, + STATE(4920), 1, + sym__type_query_instantiation_expression, + STATE(5275), 1, + sym_comment, + STATE(6460), 1, + sym_import, + [191576] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(8587), 1, + anon_sym_STAR, + STATE(5276), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7665), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [191607] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5277), 1, + sym_comment, + STATE(6065), 1, + sym_type_annotation, + STATE(6966), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191634] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8178), 1, + anon_sym_LBRACE, + STATE(1438), 1, + sym_class_body, + STATE(5278), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7540), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [191665] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5279), 1, + sym_comment, + STATE(5829), 1, + sym_type_annotation, + STATE(7064), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191692] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5280), 1, + sym_comment, + STATE(6258), 1, + sym_type_annotation, + STATE(7116), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191719] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5281), 1, + sym_comment, + STATE(6238), 1, + sym_type_annotation, + STATE(7085), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191746] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + STATE(5282), 1, + sym_comment, + STATE(6123), 1, + sym_class_body, + STATE(6981), 1, + sym_extends_clause, + STATE(7547), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [191777] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5283), 1, + sym_comment, + STATE(6228), 1, + sym_type_annotation, + STATE(7046), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191804] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8202), 1, + anon_sym_LBRACE, + STATE(1899), 1, + sym_class_body, + STATE(5284), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(8048), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [191835] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5285), 1, + sym_comment, + STATE(6245), 1, + sym_type_annotation, + STATE(7073), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191862] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5286), 1, sym_comment, - ACTIONS(2684), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104929] = 3, - ACTIONS(3), 1, + STATE(6186), 1, + sym_type_annotation, + STATE(6986), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191889] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8384), 1, + anon_sym_LBRACE, + STATE(1543), 1, + sym_class_body, + STATE(5287), 1, sym_comment, - ACTIONS(2424), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2422), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [104971] = 3, + STATE(6981), 1, + sym_extends_clause, + STATE(7539), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [191920] = 10, ACTIONS(3), 1, - sym_comment, - ACTIONS(2424), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2422), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8589), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105013] = 3, - ACTIONS(3), 1, + ACTIONS(8591), 1, + anon_sym_STAR, + STATE(5288), 1, sym_comment, - ACTIONS(2420), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2418), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105055] = 3, - ACTIONS(3), 1, + STATE(5707), 1, + sym_formal_parameters, + STATE(7583), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [191951] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5289), 1, sym_comment, - ACTIONS(2416), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2414), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(6184), 1, + sym_type_annotation, + STATE(6973), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191978] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8593), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105097] = 3, + ACTIONS(8595), 1, + anon_sym_STAR, + STATE(5290), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7583), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [192009] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8284), 1, + anon_sym_LBRACE, + STATE(1140), 1, + sym_class_body, + STATE(5291), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7536), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192040] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, + sym_identifier, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5292), 1, sym_comment, - ACTIONS(2352), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2350), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(6433), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [192069] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8304), 1, + anon_sym_LBRACE, + STATE(4352), 1, + sym_class_body, + STATE(5293), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(8049), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192100] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(8597), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105139] = 3, + ACTIONS(8599), 1, + anon_sym_DOT, + STATE(5200), 1, + sym_nested_identifier, + STATE(5294), 1, + sym_comment, + STATE(5500), 1, + sym_string, + STATE(6198), 1, + sym__module, + [192131] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4519), 1, + anon_sym_LT, + ACTIONS(8524), 1, + sym_identifier, + ACTIONS(8601), 1, + anon_sym_LPAREN, + STATE(3128), 1, + sym_arguments, + STATE(5295), 1, sym_comment, - ACTIONS(2352), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2350), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(7736), 1, + sym_type_arguments, + ACTIONS(8528), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [192160] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + STATE(5296), 1, + sym_comment, + STATE(6150), 1, + sym_class_body, + STATE(6981), 1, + sym_extends_clause, + STATE(7512), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192191] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8384), 1, + anon_sym_LBRACE, + STATE(1517), 1, + sym_class_body, + STATE(5297), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7506), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192222] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8358), 1, + anon_sym_LBRACE, + STATE(1032), 1, + sym_class_body, + STATE(5298), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7626), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192253] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5299), 1, + sym_comment, + STATE(5762), 1, + sym_type_annotation, + STATE(7263), 1, + sym__initializer, + ACTIONS(8603), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192280] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5300), 1, + sym_comment, + STATE(6204), 1, + sym_type_annotation, + STATE(7019), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192307] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8326), 1, + anon_sym_LBRACE, + STATE(4121), 1, + sym_class_body, + STATE(5301), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7786), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192338] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5302), 1, + sym_comment, + STATE(6162), 1, + sym_type_annotation, + STATE(6922), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192365] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5303), 1, + sym_comment, + STATE(6199), 1, + sym_type_annotation, + STATE(6969), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192392] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(39), 1, + anon_sym_import, + ACTIONS(8605), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105181] = 3, + STATE(2721), 1, + sym__type_query_subscript_expression, + STATE(2722), 1, + sym__type_query_member_expression, + STATE(2923), 1, + sym__type_query_call_expression, + STATE(2926), 1, + sym__type_query_instantiation_expression, + STATE(5304), 1, + sym_comment, + STATE(6542), 1, + sym_import, + [192423] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5305), 1, + sym_comment, + STATE(5783), 1, + sym_type_annotation, + STATE(7212), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192450] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8607), 1, + sym_identifier, + ACTIONS(8609), 1, + anon_sym_STAR, + STATE(5306), 1, sym_comment, - ACTIONS(2352), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2350), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(5707), 1, + sym_formal_parameters, + STATE(7665), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [192481] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105223] = 3, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5307), 1, + sym_comment, + STATE(6429), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [192510] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8611), 1, + sym_identifier, + ACTIONS(8613), 1, + anon_sym_STAR, + STATE(5308), 1, sym_comment, - ACTIONS(2352), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2350), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(5707), 1, + sym_formal_parameters, + STATE(7583), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [192541] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8234), 1, + anon_sym_LBRACE, + STATE(395), 1, + sym_class_body, + STATE(5309), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7531), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192572] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8256), 1, + anon_sym_LBRACE, + STATE(5310), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7761), 1, + sym_class_body, + STATE(8001), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192603] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8324), 1, + anon_sym_LBRACE, + STATE(1115), 1, + sym_class_body, + STATE(5311), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7632), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192634] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8178), 1, + anon_sym_LBRACE, + STATE(1313), 1, + sym_class_body, + STATE(5312), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7526), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192665] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5313), 1, + sym_comment, + STATE(6152), 1, + sym_type_annotation, + STATE(6899), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192692] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8284), 1, + anon_sym_LBRACE, + STATE(1172), 1, + sym_class_body, + STATE(5314), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7519), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192723] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8558), 1, + anon_sym_LT, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8615), 1, + anon_sym_LBRACE, + ACTIONS(8617), 1, + anon_sym_LBRACE_PIPE, + STATE(4145), 1, + sym_object_type, + STATE(5315), 1, + sym_comment, + STATE(5943), 1, + sym_type_parameters, + STATE(6759), 1, + sym_extends_type_clause, + [192754] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5316), 1, + sym_comment, + STATE(5976), 1, + sym_type_annotation, + STATE(6692), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192781] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(39), 1, + anon_sym_import, + ACTIONS(8619), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105265] = 3, + STATE(4619), 1, + sym__type_query_subscript_expression, + STATE(4621), 1, + sym__type_query_member_expression, + STATE(4860), 1, + sym__type_query_call_expression, + STATE(5154), 1, + sym__type_query_instantiation_expression, + STATE(5317), 1, + sym_comment, + STATE(6438), 1, + sym_import, + [192812] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3889), 1, + sym_class_body, + STATE(5318), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(8087), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192843] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3871), 1, + sym_class_body, + STATE(5319), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7868), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192874] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8296), 1, + anon_sym_LBRACE, + STATE(1680), 1, + sym_class_body, + STATE(5320), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7433), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192905] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5321), 1, + sym_comment, + STATE(5757), 1, + sym_type_annotation, + STATE(7268), 1, + sym__initializer, + ACTIONS(8603), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192932] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, + sym_identifier, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5322), 1, + sym_comment, + STATE(6390), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [192961] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + STATE(5323), 1, + sym_comment, + STATE(6936), 1, + sym_class_body, + STATE(6981), 1, + sym_extends_clause, + STATE(7994), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [192992] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5324), 1, + sym_comment, + STATE(6290), 1, + sym_type_annotation, + STATE(7294), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193019] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5325), 1, + sym_comment, + STATE(5828), 1, + sym_type_annotation, + STATE(7066), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193046] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5326), 1, + sym_comment, + STATE(5872), 1, + sym_type_annotation, + STATE(6818), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193073] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5327), 1, sym_comment, - ACTIONS(2540), 2, + STATE(7956), 1, + sym_statement_block, + ACTIONS(8621), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2538), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105307] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [193096] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5328), 1, sym_comment, - ACTIONS(2360), 2, + STATE(7918), 1, + sym_statement_block, + ACTIONS(8538), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2358), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105349] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [193119] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5329), 1, + sym_comment, + STATE(5769), 1, + sym_type_annotation, + STATE(7264), 1, + sym__initializer, + ACTIONS(8025), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193146] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5330), 1, + sym_comment, + STATE(5780), 1, + sym_type_annotation, + STATE(7216), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193173] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5331), 1, + sym_comment, + STATE(5980), 1, + sym_type_annotation, + STATE(6677), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193200] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8302), 1, + anon_sym_LBRACE, + STATE(4206), 1, + sym_class_body, + STATE(5332), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7350), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [193231] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5333), 1, sym_comment, - ACTIONS(2352), 2, + STATE(5790), 1, + sym_type_annotation, + STATE(7078), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193258] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8623), 1, + anon_sym_COMMA, + ACTIONS(8625), 1, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2350), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105391] = 3, - ACTIONS(3), 1, + STATE(5334), 1, + sym_comment, + STATE(7278), 1, + aux_sym_object_repeat1, + ACTIONS(5190), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [193283] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5335), 1, sym_comment, - ACTIONS(2352), 2, + STATE(7764), 1, + sym_statement_block, + ACTIONS(8621), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2350), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105433] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [193306] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5336), 1, + sym_comment, + STATE(5903), 1, + sym_type_annotation, + STATE(6844), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193333] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3584), 1, + sym_class_body, + STATE(5337), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7983), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [193364] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5338), 1, + sym_comment, + STATE(5821), 1, + sym_type_annotation, + STATE(7082), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193391] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5339), 1, + sym_comment, + STATE(5909), 1, + sym_type_annotation, + STATE(6830), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193418] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5340), 1, + sym_comment, + STATE(5852), 1, + sym_type_annotation, + STATE(6990), 1, + sym__initializer, + ACTIONS(8627), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193445] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8358), 1, + anon_sym_LBRACE, + STATE(1022), 1, + sym_class_body, + STATE(5341), 1, sym_comment, - ACTIONS(2532), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2530), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105475] = 3, - ACTIONS(3), 1, + STATE(6981), 1, + sym_extends_clause, + STATE(7641), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [193476] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5342), 1, sym_comment, - ACTIONS(2472), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105517] = 3, + STATE(5794), 1, + sym_type_annotation, + STATE(7169), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193503] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, + sym_identifier, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5343), 1, + sym_comment, + STATE(6371), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [193532] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5344), 1, sym_comment, - ACTIONS(2472), 2, + ACTIONS(7116), 7, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [193551] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3618), 1, + sym_class_body, + STATE(5345), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7969), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [193582] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8558), 1, + anon_sym_LT, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8629), 1, + anon_sym_LBRACE, + ACTIONS(8631), 1, + anon_sym_LBRACE_PIPE, + STATE(1274), 1, + sym_object_type, + STATE(5346), 1, + sym_comment, + STATE(5793), 1, + sym_type_parameters, + STATE(7172), 1, + sym_extends_type_clause, + [193613] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8256), 1, + anon_sym_LBRACE, + STATE(5347), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7712), 1, + sym_class_body, + STATE(7981), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [193644] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5348), 1, + sym_comment, + ACTIONS(6343), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105559] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_COLON, + [193663] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6714), 1, + sym__automatic_semicolon, + STATE(5349), 1, sym_comment, - ACTIONS(2472), 2, + ACTIONS(2374), 6, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105601] = 3, - ACTIONS(3), 1, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [193684] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5350), 1, + sym_comment, + STATE(5734), 1, + sym_type_annotation, + STATE(7346), 1, + sym__initializer, + ACTIONS(8603), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193711] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8633), 1, + anon_sym_COLON, + ACTIONS(8635), 1, + anon_sym_QMARK, + STATE(5351), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(8012), 1, + sym_type_parameters, + STATE(8074), 1, + sym__call_signature, + [193742] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5352), 1, sym_comment, - ACTIONS(2472), 2, + ACTIONS(2358), 7, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105643] = 3, - ACTIONS(3), 1, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [193761] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5353), 1, sym_comment, - ACTIONS(2472), 2, + ACTIONS(2370), 7, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105685] = 3, - ACTIONS(3), 1, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [193780] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5354), 1, + sym_comment, + STATE(5863), 1, + sym_type_annotation, + STATE(6968), 1, + sym__initializer, + ACTIONS(8031), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193807] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8637), 1, + sym__automatic_semicolon, + STATE(5355), 1, sym_comment, - ACTIONS(2472), 2, + ACTIONS(2370), 6, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105727] = 3, - ACTIONS(3), 1, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [193828] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5356), 1, + sym_comment, + STATE(5736), 1, + sym_type_annotation, + STATE(7344), 1, + sym__initializer, + ACTIONS(8603), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193855] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8216), 1, + anon_sym_LBRACE, + STATE(495), 1, + sym_class_body, + STATE(5357), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7860), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [193886] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8326), 1, + anon_sym_LBRACE, + STATE(4073), 1, + sym_class_body, + STATE(5358), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7811), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [193917] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7839), 1, + anon_sym_EQ, + STATE(5359), 1, sym_comment, - ACTIONS(2472), 2, + ACTIONS(8639), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + ACTIONS(5190), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [193940] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105769] = 3, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5360), 1, + sym_comment, + STATE(6547), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [193969] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8642), 1, + sym_identifier, + ACTIONS(8644), 1, + anon_sym_STAR, + STATE(5361), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7583), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [194000] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5362), 1, sym_comment, - ACTIONS(2472), 2, + STATE(5753), 1, + sym_type_annotation, + ACTIONS(8646), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105811] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [194023] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + STATE(5363), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(6985), 1, + sym_class_body, + STATE(7959), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [194054] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5364), 1, + sym_comment, + STATE(6102), 1, + sym_type_annotation, + STATE(6709), 1, + sym__initializer, + ACTIONS(8044), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194081] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3070), 1, + sym_class_body, + STATE(5365), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7954), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [194112] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8648), 1, + anon_sym_EQ, + STATE(5366), 1, sym_comment, - ACTIONS(1599), 2, + ACTIONS(4657), 6, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1597), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105853] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [194133] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8558), 1, + anon_sym_LT, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8651), 1, + anon_sym_LBRACE, + ACTIONS(8653), 1, + anon_sym_LBRACE_PIPE, + STATE(1077), 1, + sym_object_type, + STATE(5367), 1, + sym_comment, + STATE(5827), 1, + sym_type_parameters, + STATE(7074), 1, + sym_extends_type_clause, + [194164] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8234), 1, + anon_sym_LBRACE, + STATE(416), 1, + sym_class_body, + STATE(5368), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7505), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [194195] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5369), 1, sym_comment, - ACTIONS(2472), 2, + STATE(5759), 1, + sym_type_annotation, + ACTIONS(8655), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105895] = 3, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [194218] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5370), 1, + sym_comment, + STATE(5902), 1, + sym_type_annotation, + STATE(6848), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194245] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, + sym_identifier, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5371), 1, sym_comment, - ACTIONS(2552), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2550), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, + STATE(6569), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [194274] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5372), 1, + sym_comment, + ACTIONS(6162), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105937] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_COLON, + [194293] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5373), 1, + sym_comment, + ACTIONS(8332), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [194312] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8657), 1, + sym__automatic_semicolon, + STATE(5374), 1, sym_comment, - ACTIONS(2560), 2, + ACTIONS(2374), 6, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2558), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [105979] = 3, - ACTIONS(3), 1, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [194333] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8659), 1, + anon_sym_EQ, + ACTIONS(8661), 1, + anon_sym_DOT, + STATE(5375), 1, sym_comment, - ACTIONS(2560), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2558), 32, - anon_sym_export, - anon_sym_default, + ACTIONS(8504), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [194356] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8216), 1, + anon_sym_LBRACE, + STATE(502), 1, + sym_class_body, + STATE(5376), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(8138), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [194387] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5377), 1, + sym_comment, + STATE(6048), 1, + sym_type_annotation, + STATE(6744), 1, + sym__initializer, + ACTIONS(8031), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194414] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5378), 1, + sym_comment, + STATE(5994), 1, + sym_type_annotation, + STATE(6661), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194441] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(8052), 1, + sym_identifier, + ACTIONS(8120), 1, anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(5379), 1, + sym_comment, + STATE(6503), 1, + sym_string, + STATE(8171), 1, + sym__import_identifier, + STATE(8206), 1, + sym__module_export_name, + [194472] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5380), 1, + sym_comment, + STATE(5900), 1, + sym_type_annotation, + STATE(6856), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194499] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5381), 1, + sym_comment, + STATE(6177), 1, + sym_type_annotation, + STATE(6932), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194526] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8298), 1, + anon_sym_LBRACE, + STATE(1843), 1, + sym_class_body, + STATE(5382), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7808), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [194557] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5383), 1, + sym_comment, + STATE(6168), 1, + sym_type_annotation, + STATE(6903), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194584] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8663), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106021] = 3, + STATE(5037), 1, + sym__destructuring_pattern, + STATE(5384), 1, + sym_comment, + STATE(6334), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [194613] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8665), 1, + sym_identifier, + ACTIONS(8667), 1, + anon_sym_STAR, + STATE(5385), 1, sym_comment, - ACTIONS(2560), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2558), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(5707), 1, + sym_formal_parameters, + STATE(7665), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [194644] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8669), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106063] = 3, + STATE(5036), 1, + sym__destructuring_pattern, + STATE(5386), 1, + sym_comment, + STATE(6355), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [194673] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5387), 1, + sym_comment, + STATE(5817), 1, + sym_type_annotation, + STATE(7098), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194700] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8324), 1, + anon_sym_LBRACE, + STATE(1081), 1, + sym_class_body, + STATE(5388), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7645), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [194731] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5389), 1, + sym_comment, + STATE(6000), 1, + sym_type_annotation, + STATE(6655), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194758] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5390), 1, + sym_comment, + STATE(6071), 1, + sym_type_annotation, + STATE(7255), 1, + sym__initializer, + ACTIONS(8037), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194785] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5391), 1, + sym_comment, + STATE(6119), 1, + sym_type_annotation, + STATE(6712), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194812] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5392), 1, + sym_comment, + STATE(5898), 1, + sym_type_annotation, + STATE(6859), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194839] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, + sym_identifier, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5393), 1, + sym_comment, + STATE(6401), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [194868] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8671), 1, + anon_sym_LBRACE, + ACTIONS(8673), 1, + anon_sym_COMMA, + ACTIONS(8675), 1, + anon_sym_DOT, + ACTIONS(8677), 1, + anon_sym_LT, + ACTIONS(8679), 1, + anon_sym_LBRACE_PIPE, + STATE(5394), 1, + sym_comment, + STATE(6537), 1, + aux_sym_extends_type_clause_repeat1, + STATE(7021), 1, + sym_type_arguments, + [194899] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8296), 1, + anon_sym_LBRACE, + STATE(1778), 1, + sym_class_body, + STATE(5395), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7887), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [194930] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5396), 1, sym_comment, - ACTIONS(2580), 2, + STATE(7929), 1, + sym_statement_block, + ACTIONS(8681), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2578), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106105] = 3, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [194953] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5397), 1, + sym_comment, + STATE(5787), 1, + sym_type_annotation, + STATE(7184), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194980] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(8683), 1, + sym_identifier, + ACTIONS(8685), 1, + anon_sym_DOT, + STATE(5398), 1, sym_comment, - ACTIONS(2584), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2582), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(6024), 1, + sym_nested_identifier, + STATE(6566), 1, + sym_string, + STATE(7424), 1, + sym__module, + [195011] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8687), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106147] = 3, + ACTIONS(8689), 1, + anon_sym_STAR, + STATE(5399), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7583), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [195042] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8691), 1, + sym_identifier, + ACTIONS(8693), 1, + anon_sym_STAR, + STATE(5400), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7659), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [195073] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8695), 1, + anon_sym_EQ, + STATE(5401), 1, sym_comment, - ACTIONS(1703), 2, + ACTIONS(4670), 6, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1699), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106189] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [195094] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5402), 1, + sym_comment, + STATE(5816), 1, + sym_type_annotation, + STATE(7108), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195121] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5403), 1, sym_comment, - ACTIONS(2588), 2, + ACTIONS(8697), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2586), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [195140] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5404), 1, + sym_comment, + ACTIONS(8360), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106231] = 3, + anon_sym_SEMI, + anon_sym_COLON, + [195159] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(39), 1, + anon_sym_import, + ACTIONS(8699), 1, + sym_identifier, + STATE(4500), 1, + sym__type_query_member_expression, + STATE(4501), 1, + sym__type_query_subscript_expression, + STATE(4564), 1, + sym__type_query_call_expression, + STATE(4597), 1, + sym__type_query_instantiation_expression, + STATE(5405), 1, sym_comment, - ACTIONS(2592), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2590), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(6303), 1, + sym_import, + [195190] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8701), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106273] = 3, + STATE(5406), 1, + sym_comment, + ACTIONS(5549), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [195211] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5407), 1, + sym_comment, + STATE(5815), 1, + sym_type_annotation, + STATE(7110), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195238] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8202), 1, + anon_sym_LBRACE, + STATE(1908), 1, + sym_class_body, + STATE(5408), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(8086), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [195269] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + sym_identifier, + ACTIONS(8705), 1, + anon_sym_STAR, + STATE(5409), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7665), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [195300] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3560), 1, + sym_class_body, + STATE(5410), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7360), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [195331] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8558), 1, + anon_sym_LT, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8707), 1, + anon_sym_LBRACE, + ACTIONS(8709), 1, + anon_sym_LBRACE_PIPE, + STATE(1784), 1, + sym_object_type, + STATE(5411), 1, + sym_comment, + STATE(6025), 1, + sym_type_parameters, + STATE(6630), 1, + sym_extends_type_clause, + [195362] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5412), 1, sym_comment, - ACTIONS(2604), 2, + STATE(7715), 1, + sym_statement_block, + ACTIONS(8711), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2602), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106315] = 3, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [195385] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8635), 1, + anon_sym_QMARK, + ACTIONS(8713), 1, + anon_sym_COLON, + STATE(5413), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(8012), 1, + sym_type_parameters, + STATE(8074), 1, + sym__call_signature, + [195416] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8715), 1, + sym_identifier, + ACTIONS(8717), 1, + anon_sym_STAR, + STATE(5414), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7583), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [195447] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5415), 1, sym_comment, - ACTIONS(1723), 2, + ACTIONS(8719), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1721), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [195466] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5416), 1, + sym_comment, + STATE(5887), 1, + sym_type_annotation, + STATE(6880), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195493] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5417), 1, + sym_comment, + STATE(6011), 1, + sym_type_annotation, + STATE(6644), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195520] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3638), 1, + sym_class_body, + STATE(5418), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7905), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [195551] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(124), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8558), 1, + anon_sym_LT, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8721), 1, + anon_sym_LBRACE_PIPE, + STATE(5419), 1, + sym_comment, + STATE(5953), 1, + sym_type_parameters, + STATE(6741), 1, + sym_extends_type_clause, + STATE(7497), 1, + sym_object_type, + [195582] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5420), 1, + sym_comment, + STATE(6013), 1, + sym_type_annotation, + STATE(6641), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195609] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8003), 1, + anon_sym_EQ, + STATE(5421), 1, + sym_comment, + STATE(6381), 1, + sym_constraint, + STATE(7520), 1, + sym_default_type, + ACTIONS(8008), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(8723), 2, + anon_sym_COMMA, + anon_sym_GT, + [195636] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8725), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106357] = 3, + ACTIONS(8727), 1, + anon_sym_STAR, + STATE(5422), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7665), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [195667] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5423), 1, + sym_comment, + STATE(5925), 1, + sym_type_annotation, + STATE(6812), 1, + sym__initializer, + ACTIONS(8031), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195694] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3642), 1, + sym_class_body, + STATE(5424), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(8027), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [195725] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5425), 1, + sym_comment, + STATE(6089), 1, + sym_type_annotation, + STATE(6657), 1, + sym__initializer, + ACTIONS(8013), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195752] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3021), 1, + sym_class_body, + STATE(5426), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7854), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [195783] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5427), 1, + sym_comment, + STATE(5886), 1, + sym_type_annotation, + STATE(6882), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195810] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4253), 1, + anon_sym_DQUOTE, + ACTIONS(4255), 1, + anon_sym_SQUOTE, + ACTIONS(8729), 1, + sym_identifier, + ACTIONS(8731), 1, + anon_sym_DOT, + STATE(1433), 1, + sym_nested_identifier, + STATE(1554), 1, + sym_string, + STATE(1809), 1, + sym__module, + STATE(5428), 1, sym_comment, - ACTIONS(2484), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2482), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + [195841] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5429), 1, + sym_comment, + STATE(5922), 1, + sym_type_annotation, + STATE(6820), 1, + sym__initializer, + ACTIONS(8031), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195868] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5430), 1, + sym_comment, + STATE(5882), 1, + sym_type_annotation, + STATE(6904), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195895] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4367), 1, + anon_sym_DQUOTE, + ACTIONS(4369), 1, + anon_sym_SQUOTE, + ACTIONS(8733), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106399] = 3, + ACTIONS(8735), 1, + anon_sym_DOT, + STATE(3891), 1, + sym_nested_identifier, + STATE(3948), 1, + sym_string, + STATE(4139), 1, + sym__module, + STATE(5431), 1, + sym_comment, + [195926] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3752), 1, + sym_class_body, + STATE(5432), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7674), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [195957] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5433), 1, + sym_comment, + STATE(5778), 1, + sym_type_annotation, + STATE(7257), 1, + sym__initializer, + ACTIONS(8027), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195984] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4385), 1, + anon_sym_DQUOTE, + ACTIONS(4387), 1, + anon_sym_SQUOTE, + ACTIONS(8737), 1, + sym_identifier, + ACTIONS(8739), 1, + anon_sym_DOT, + STATE(1042), 1, + sym_nested_identifier, + STATE(1144), 1, + sym_string, + STATE(1297), 1, + sym__module, + STATE(5434), 1, + sym_comment, + [196015] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5435), 1, + sym_comment, + STATE(5879), 1, + sym_type_annotation, + STATE(6906), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196042] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5436), 1, sym_comment, - ACTIONS(2476), 2, + STATE(7392), 1, + sym_statement_block, + ACTIONS(8741), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2474), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106441] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [196065] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5437), 1, sym_comment, - ACTIONS(2468), 2, + STATE(7402), 1, + sym_statement_block, + ACTIONS(8743), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2466), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106483] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [196088] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5438), 1, sym_comment, - ACTIONS(2464), 2, + ACTIONS(2330), 7, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2462), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106525] = 3, - ACTIONS(3), 1, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [196107] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5439), 1, sym_comment, - ACTIONS(2460), 2, + STATE(7774), 1, + sym_statement_block, + ACTIONS(8741), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2458), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106567] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [196130] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5440), 1, + sym_comment, + STATE(5789), 1, + sym_type_annotation, + STATE(7338), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196157] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5441), 1, sym_comment, - ACTIONS(1663), 2, + STATE(7775), 1, + sym_statement_block, + ACTIONS(8743), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1661), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106609] = 3, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [196180] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, + sym_identifier, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5442), 1, + sym_comment, + STATE(6384), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [196209] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3519), 1, + sym_class_body, + STATE(5443), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(8075), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [196240] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5444), 1, + sym_comment, + STATE(5791), 1, + sym_type_annotation, + STATE(7173), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196267] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5445), 1, sym_comment, - ACTIONS(2143), 2, + ACTIONS(2420), 7, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2141), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106651] = 3, - ACTIONS(3), 1, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [196286] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5446), 1, + sym_comment, + STATE(5802), 1, + sym_type_annotation, + STATE(7146), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196313] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5447), 1, sym_comment, - ACTIONS(2456), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2454), 32, + STATE(5888), 1, + sym_type_annotation, + STATE(6883), 1, + sym__initializer, + ACTIONS(8031), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196340] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5448), 1, + sym_comment, + STATE(5896), 1, + sym_type_annotation, + STATE(6868), 1, + sym__initializer, + ACTIONS(8031), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196367] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(8747), 1, + anon_sym_DOT, + STATE(5449), 1, + sym_comment, + STATE(6411), 1, + sym_arguments, + ACTIONS(8745), 4, anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [196392] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5450), 1, + sym_comment, + STATE(5796), 1, + sym_type_annotation, + STATE(7160), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196419] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5451), 1, + sym_comment, + ACTIONS(8208), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106693] = 3, + anon_sym_SEMI, + anon_sym_COLON, + [196438] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + STATE(5452), 1, + sym_comment, + STATE(6234), 1, + sym_class_body, + STATE(6981), 1, + sym_extends_clause, + STATE(7364), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [196469] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8749), 1, + sym_identifier, + ACTIONS(8751), 1, + anon_sym_STAR, + STATE(5453), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7665), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [196500] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5454), 1, + sym_comment, + STATE(6015), 1, + sym_type_annotation, + STATE(6636), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196527] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5455), 1, + sym_comment, + STATE(6021), 1, + sym_type_annotation, + STATE(6632), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196554] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(8753), 1, + anon_sym_EQ, + ACTIONS(8757), 1, + anon_sym_QMARK, + STATE(5456), 1, + sym_comment, + STATE(6501), 1, + sym_type_annotation, + STATE(8044), 1, + sym__initializer, + ACTIONS(8755), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [196583] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5457), 1, sym_comment, - ACTIONS(2608), 2, + ACTIONS(6969), 7, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2606), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [196602] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5458), 1, + sym_comment, + ACTIONS(8214), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106735] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_COLON, + [196621] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5459), 1, + sym_comment, + STATE(6036), 1, + sym_type_annotation, + STATE(6612), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196648] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5460), 1, sym_comment, - ACTIONS(2620), 2, + STATE(7978), 1, + sym_statement_block, + ACTIONS(8711), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2618), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106777] = 3, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [196671] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3033), 1, + sym_class_body, + STATE(5461), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7831), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [196702] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3522), 1, + sym_class_body, + STATE(5462), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7369), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [196733] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, + sym_identifier, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5463), 1, sym_comment, - ACTIONS(2628), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2626), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(6321), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [196762] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(39), 1, + anon_sym_import, + ACTIONS(8759), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106819] = 3, + STATE(3135), 1, + sym__type_query_subscript_expression, + STATE(3136), 1, + sym__type_query_member_expression, + STATE(3457), 1, + sym__type_query_instantiation_expression, + STATE(3458), 1, + sym__type_query_call_expression, + STATE(5464), 1, + sym_comment, + STATE(6357), 1, + sym_import, + [196793] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8761), 1, + sym_identifier, + ACTIONS(8763), 1, + anon_sym_STAR, + STATE(5465), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7583), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [196824] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5466), 1, sym_comment, - ACTIONS(2636), 2, + ACTIONS(2398), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2634), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106861] = 3, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [196843] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8252), 1, + anon_sym_LBRACE, + STATE(3991), 1, + sym_class_body, + STATE(5467), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7817), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [196874] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8765), 1, + sym_identifier, + ACTIONS(8767), 1, + anon_sym_STAR, + STATE(5468), 1, sym_comment, - ACTIONS(2652), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2650), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, + STATE(5707), 1, + sym_formal_parameters, + STATE(7665), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [196905] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5469), 1, + sym_comment, + STATE(6042), 1, + sym_type_annotation, + STATE(6609), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196932] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5470), 1, + sym_comment, + STATE(5819), 1, + sym_type_annotation, + STATE(7096), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196959] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5471), 1, + sym_comment, + ACTIONS(8218), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106903] = 3, + anon_sym_SEMI, + anon_sym_COLON, + [196978] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8769), 1, + sym_identifier, + ACTIONS(8771), 1, + anon_sym_STAR, + STATE(5472), 1, sym_comment, - ACTIONS(2668), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2666), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, + STATE(5707), 1, + sym_formal_parameters, + STATE(7583), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [197009] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5473), 1, + sym_comment, + ACTIONS(8344), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106945] = 3, + anon_sym_SEMI, + anon_sym_COLON, + [197028] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8773), 1, + sym_identifier, + ACTIONS(8775), 1, + anon_sym_STAR, + STATE(5474), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7665), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [197059] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5475), 1, sym_comment, - ACTIONS(2656), 2, + STATE(7411), 1, + sym_statement_block, + ACTIONS(8777), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2654), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [197082] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [106987] = 3, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5476), 1, + sym_comment, + STATE(6363), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [197111] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8779), 1, + sym_identifier, + ACTIONS(8781), 1, + anon_sym_STAR, + STATE(5477), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7425), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [197142] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5478), 1, sym_comment, - ACTIONS(2668), 2, + STATE(7946), 1, + sym_statement_block, + ACTIONS(8783), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2666), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107029] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [197165] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5479), 1, + sym_comment, + STATE(5877), 1, + sym_type_annotation, + STATE(6926), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197192] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8306), 1, + anon_sym_LBRACE, + STATE(1339), 1, + sym_class_body, + STATE(5480), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7357), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [197223] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5481), 1, sym_comment, - ACTIONS(2664), 2, + STATE(7684), 1, + sym_statement_block, + ACTIONS(8785), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2662), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107071] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [197246] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5482), 1, sym_comment, - ACTIONS(2672), 2, + STATE(7688), 1, + sym_statement_block, + ACTIONS(8787), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2670), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [197269] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5483), 1, + sym_comment, + STATE(5874), 1, + sym_type_annotation, + STATE(6929), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197296] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8254), 1, + anon_sym_LBRACE, + STATE(1478), 1, + sym_class_body, + STATE(5484), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7968), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [197327] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107113] = 3, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5485), 1, + sym_comment, + STATE(6449), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [197356] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5486), 1, + sym_comment, + STATE(5873), 1, + sym_type_annotation, + STATE(6939), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197383] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5487), 1, + sym_comment, + STATE(5868), 1, + sym_type_annotation, + STATE(7041), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197410] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8428), 1, + anon_sym_LBRACE, + STATE(364), 1, + sym_class_body, + STATE(5488), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7637), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [197441] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + STATE(5489), 1, + sym_comment, + STATE(6212), 1, + sym_class_body, + STATE(6981), 1, + sym_extends_clause, + STATE(7378), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [197472] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8558), 1, + anon_sym_LT, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8789), 1, + anon_sym_LBRACE, + ACTIONS(8791), 1, + anon_sym_LBRACE_PIPE, + STATE(4226), 1, + sym_object_type, + STATE(5490), 1, + sym_comment, + STATE(6229), 1, + sym_type_parameters, + STATE(7065), 1, + sym_extends_type_clause, + [197503] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8174), 1, + anon_sym_extends, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(8306), 1, + anon_sym_LBRACE, + STATE(1327), 1, + sym_class_body, + STATE(5491), 1, + sym_comment, + STATE(6981), 1, + sym_extends_clause, + STATE(7374), 1, + sym_class_heritage, + STATE(8556), 1, + sym_implements_clause, + [197534] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, + sym_identifier, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5492), 1, sym_comment, - ACTIONS(2680), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2678), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(6409), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [197563] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4265), 1, + anon_sym_LBRACE, + ACTIONS(4267), 1, + anon_sym_LBRACK, + ACTIONS(8579), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107155] = 3, + STATE(5246), 1, + sym__destructuring_pattern, + STATE(5493), 1, + sym_comment, + STATE(6330), 1, + sym_variable_declarator, + STATE(5228), 2, + sym_object_pattern, + sym_array_pattern, + [197592] = 10, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4355), 1, + anon_sym_DQUOTE, + ACTIONS(4357), 1, + anon_sym_SQUOTE, + ACTIONS(8793), 1, + sym_identifier, + ACTIONS(8795), 1, + anon_sym_DOT, + STATE(3954), 1, + sym_nested_identifier, + STATE(3990), 1, + sym_string, + STATE(4245), 1, + sym__module, + STATE(5494), 1, + sym_comment, + [197623] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5495), 1, sym_comment, - ACTIONS(2684), 2, + STATE(7777), 1, + sym_statement_block, + ACTIONS(8783), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107197] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [197646] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(5496), 1, + sym_comment, + STATE(5866), 1, + sym_type_annotation, + STATE(6953), 1, + sym__initializer, + ACTIONS(8023), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197673] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5497), 1, sym_comment, - ACTIONS(2472), 2, + STATE(7778), 1, + sym_statement_block, + ACTIONS(8797), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107239] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [197696] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5498), 1, sym_comment, - ACTIONS(2684), 2, + STATE(8023), 1, + sym_statement_block, + ACTIONS(8799), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107281] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [197719] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5499), 1, sym_comment, - ACTIONS(2684), 2, + STATE(8025), 1, + sym_statement_block, + ACTIONS(8797), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107323] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [197742] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8514), 1, + anon_sym_LBRACE, + STATE(5500), 1, sym_comment, - ACTIONS(2684), 2, + STATE(5897), 1, + sym_statement_block, + ACTIONS(2324), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [197765] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8803), 1, anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107365] = 3, - ACTIONS(3), 1, + STATE(5501), 1, sym_comment, - ACTIONS(2660), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2658), 32, - anon_sym_export, + STATE(5631), 1, + aux_sym_ui_property_repeat1, + STATE(6576), 1, + sym_ui_property_modifier, + ACTIONS(8801), 3, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107407] = 3, + [197789] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4329), 1, + anon_sym_DQUOTE, + ACTIONS(4331), 1, + anon_sym_SQUOTE, + ACTIONS(8550), 1, + sym_identifier, + STATE(994), 1, + sym_nested_identifier, + STATE(1036), 1, + sym_string, + STATE(1093), 1, + sym__module, + STATE(5502), 1, + sym_comment, + [197817] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5503), 1, sym_comment, - ACTIONS(2612), 2, + ACTIONS(5190), 6, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [197835] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(2610), 32, + ACTIONS(8805), 1, anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + ACTIONS(8807), 1, + anon_sym_class, + ACTIONS(8809), 1, + anon_sym_abstract, + STATE(5504), 1, + sym_comment, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + [197863] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4355), 1, + anon_sym_DQUOTE, + ACTIONS(4357), 1, + anon_sym_SQUOTE, + ACTIONS(8793), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107449] = 3, + STATE(3954), 1, + sym_nested_identifier, + STATE(3990), 1, + sym_string, + STATE(4424), 1, + sym__module, + STATE(5505), 1, + sym_comment, + [197891] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4253), 1, + anon_sym_DQUOTE, + ACTIONS(4255), 1, + anon_sym_SQUOTE, + ACTIONS(8729), 1, + sym_identifier, + STATE(1433), 1, + sym_nested_identifier, + STATE(1554), 1, + sym_string, + STATE(1809), 1, + sym__module, + STATE(5506), 1, sym_comment, - ACTIONS(2684), 2, - anon_sym_RBRACE, + [197919] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + ACTIONS(8811), 1, + anon_sym_LBRACE, + ACTIONS(8813), 1, + anon_sym_COMMA, + STATE(5507), 1, + sym_comment, + STATE(6715), 1, + aux_sym_implements_clause_repeat1, + [197947] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8815), 1, + anon_sym_QMARK, + STATE(5508), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(8012), 1, + sym_type_parameters, + STATE(8021), 1, + sym__call_signature, + [197975] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(2682), 32, + ACTIONS(8817), 1, anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107491] = 3, - ACTIONS(3), 1, + ACTIONS(8819), 1, + anon_sym_class, + ACTIONS(8821), 1, + anon_sym_abstract, + STATE(5509), 1, + sym_comment, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + [198003] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5510), 1, sym_comment, - ACTIONS(2684), 2, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(8825), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107533] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(8823), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198025] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8827), 1, + anon_sym_BQUOTE, + ACTIONS(8829), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8831), 1, + sym__template_chars, + STATE(5511), 1, sym_comment, - ACTIONS(2684), 2, + STATE(5604), 1, + aux_sym_template_string_repeat1, + STATE(6345), 1, + sym_template_substitution, + [198053] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5512), 1, + sym_comment, + STATE(5575), 1, + aux_sym_object_type_repeat1, + ACTIONS(8835), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107575] = 3, + anon_sym_PIPE_RBRACE, + ACTIONS(8833), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198075] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8837), 1, + sym_identifier, + STATE(5513), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(8012), 1, + sym_type_parameters, + STATE(8030), 1, + sym__call_signature, + [198103] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3179), 1, + sym_statement_block, + STATE(5514), 1, + sym_comment, + ACTIONS(8777), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198125] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(8841), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5515), 1, + sym_comment, + STATE(5858), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + [198153] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + ACTIONS(8843), 1, + anon_sym_COMMA, + ACTIONS(8845), 1, + anon_sym_GT, + STATE(5516), 1, + sym_comment, + STATE(7148), 1, + aux_sym_type_arguments_repeat1, + [198181] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8847), 1, + anon_sym_COMMA, + STATE(5517), 2, sym_comment, - ACTIONS(2684), 2, + aux_sym_sequence_expression_repeat1, + ACTIONS(5615), 4, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107617] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [198201] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3231), 1, + sym_statement_block, + STATE(5518), 1, + sym_comment, + ACTIONS(8621), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198223] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5519), 1, sym_comment, - ACTIONS(2684), 2, + ACTIONS(8569), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [198241] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8850), 1, + anon_sym_default, + ACTIONS(8852), 1, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, + ACTIONS(8854), 1, + anon_sym_case, + STATE(5520), 1, + sym_comment, + STATE(5635), 1, + aux_sym_switch_body_repeat1, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [198267] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(8342), 1, + anon_sym_DOT, + ACTIONS(8856), 1, + anon_sym_COMMA, + ACTIONS(8858), 1, + anon_sym_GT, + STATE(5178), 1, + sym_arguments, + STATE(5521), 1, + sym_comment, + STATE(7175), 1, + aux_sym_type_arguments_repeat1, + [198295] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8850), 1, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107659] = 3, + ACTIONS(8854), 1, + anon_sym_case, + ACTIONS(8860), 1, + anon_sym_RBRACE, + STATE(5520), 1, + aux_sym_switch_body_repeat1, + STATE(5522), 1, + sym_comment, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [198321] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8862), 1, + sym_identifier, + STATE(5523), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7595), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [198349] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5524), 1, sym_comment, - ACTIONS(2684), 2, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(8866), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107701] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(8864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198371] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5525), 1, sym_comment, - ACTIONS(2684), 2, + ACTIONS(8868), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107743] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [198389] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5526), 1, sym_comment, - ACTIONS(2684), 2, + STATE(5592), 1, + aux_sym_object_type_repeat1, + ACTIONS(8872), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107785] = 5, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(8870), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198411] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3197), 1, + sym_statement_block, + STATE(5527), 1, sym_comment, - ACTIONS(5732), 1, - anon_sym_AT, - STATE(2652), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(2770), 1, - sym_ui_annotation, - ACTIONS(5730), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107831] = 3, - ACTIONS(3), 1, + ACTIONS(8711), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198433] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5528), 1, sym_comment, - ACTIONS(2596), 2, + ACTIONS(8874), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2594), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [198451] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8876), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107873] = 3, + STATE(5529), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(8012), 1, + sym_type_parameters, + STATE(8030), 1, + sym__call_signature, + [198479] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5530), 1, + sym_comment, + STATE(5577), 1, + aux_sym_object_type_repeat1, + ACTIONS(8880), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8878), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198501] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8882), 1, + sym_identifier, + STATE(5531), 1, + sym_comment, + ACTIONS(7675), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [198521] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5532), 1, sym_comment, - ACTIONS(2684), 2, + ACTIONS(2358), 6, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [198539] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5533), 1, + sym_comment, + ACTIONS(8884), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [198557] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(8886), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107915] = 3, + ACTIONS(8888), 1, + anon_sym_LBRACK, + STATE(5534), 1, + sym_comment, + STATE(7081), 1, + sym__destructuring_pattern, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + [198583] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5535), 1, + sym_comment, + ACTIONS(7099), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT, + [198601] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8890), 1, + sym_identifier, + STATE(5536), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7595), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [198629] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3195), 1, + sym_statement_block, + STATE(5537), 1, + sym_comment, + ACTIONS(8783), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198651] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4385), 1, + anon_sym_DQUOTE, + ACTIONS(4387), 1, + anon_sym_SQUOTE, + ACTIONS(8737), 1, + sym_identifier, + STATE(1042), 1, + sym_nested_identifier, + STATE(1144), 1, + sym_string, + STATE(1273), 1, + sym__module, + STATE(5538), 1, + sym_comment, + [198679] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3181), 1, + sym_statement_block, + STATE(5539), 1, + sym_comment, + ACTIONS(8785), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198701] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5540), 1, sym_comment, - ACTIONS(2684), 2, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(8894), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, + anon_sym_PIPE_RBRACE, + ACTIONS(8892), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198723] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8896), 1, + anon_sym_QMARK, + STATE(5541), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7409), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [198751] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8850), 1, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + ACTIONS(8854), 1, + anon_sym_case, + ACTIONS(8898), 1, + anon_sym_RBRACE, + STATE(5542), 1, + sym_comment, + STATE(5661), 1, + aux_sym_switch_body_repeat1, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [198777] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(8900), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5543), 1, + sym_comment, + STATE(7149), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + [198805] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4385), 1, + anon_sym_DQUOTE, + ACTIONS(4387), 1, + anon_sym_SQUOTE, + ACTIONS(8737), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107957] = 3, + STATE(1042), 1, + sym_nested_identifier, + STATE(1144), 1, + sym_string, + STATE(1297), 1, + sym__module, + STATE(5544), 1, + sym_comment, + [198833] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(8902), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5545), 1, + sym_comment, + STATE(6581), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + [198861] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(8904), 1, + sym_identifier, + STATE(5546), 1, sym_comment, - ACTIONS(2684), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, + STATE(6552), 1, + sym__destructuring_pattern, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + [198887] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8850), 1, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [107999] = 3, + ACTIONS(8854), 1, + anon_sym_case, + ACTIONS(8906), 1, + anon_sym_RBRACE, + STATE(5547), 1, + sym_comment, + STATE(5570), 1, + aux_sym_switch_body_repeat1, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [198913] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5548), 1, + sym_comment, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(8910), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8908), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198935] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8912), 1, + anon_sym_QMARK, + STATE(5549), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(8010), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [198963] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(8914), 1, + sym_identifier, + STATE(5550), 1, sym_comment, - ACTIONS(2684), 2, - anon_sym_RBRACE, + STATE(7928), 1, + sym__destructuring_pattern, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + [198989] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(2682), 32, + ACTIONS(8916), 1, anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + ACTIONS(8918), 1, + anon_sym_class, + ACTIONS(8920), 1, + anon_sym_abstract, + STATE(5551), 1, + sym_comment, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + [199017] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + ACTIONS(8922), 1, + anon_sym_COMMA, + ACTIONS(8924), 1, + anon_sym_GT, + STATE(5552), 1, + sym_comment, + STATE(7194), 1, + aux_sym_type_arguments_repeat1, + [199045] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4253), 1, + anon_sym_DQUOTE, + ACTIONS(4255), 1, + anon_sym_SQUOTE, + ACTIONS(8729), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108041] = 3, + STATE(1433), 1, + sym_nested_identifier, + STATE(1554), 1, + sym_string, + STATE(1756), 1, + sym__module, + STATE(5553), 1, + sym_comment, + [199073] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(8342), 1, + anon_sym_DOT, + ACTIONS(8926), 1, + anon_sym_COMMA, + ACTIONS(8928), 1, + anon_sym_GT, + STATE(5178), 1, + sym_arguments, + STATE(5554), 1, + sym_comment, + STATE(7198), 1, + aux_sym_type_arguments_repeat1, + [199101] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4367), 1, + anon_sym_DQUOTE, + ACTIONS(4369), 1, + anon_sym_SQUOTE, + ACTIONS(8733), 1, + sym_identifier, + STATE(3891), 1, + sym_nested_identifier, + STATE(3948), 1, + sym_string, + STATE(4139), 1, + sym__module, + STATE(5555), 1, sym_comment, - ACTIONS(2684), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, + [199129] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3182), 1, + sym_statement_block, + STATE(5556), 1, + sym_comment, + ACTIONS(8787), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199151] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8850), 1, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108083] = 3, - ACTIONS(3), 1, + ACTIONS(8854), 1, + anon_sym_case, + ACTIONS(8930), 1, + anon_sym_RBRACE, + STATE(5557), 1, + sym_comment, + STATE(5605), 1, + aux_sym_switch_body_repeat1, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [199177] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5558), 1, sym_comment, - ACTIONS(2684), 2, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(8934), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2682), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108125] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(8932), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199199] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5559), 1, sym_comment, - ACTIONS(2596), 2, + STATE(5627), 1, + aux_sym_object_type_repeat1, + ACTIONS(8938), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2594), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108167] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(8936), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199221] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5510), 1, + aux_sym_object_type_repeat1, + STATE(5560), 1, sym_comment, - ACTIONS(2576), 2, + ACTIONS(8934), 2, anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8932), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199243] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(2574), 32, + ACTIONS(8940), 1, anon_sym_export, + ACTIONS(8942), 1, + anon_sym_class, + ACTIONS(8944), 1, + anon_sym_abstract, + STATE(5561), 1, + sym_comment, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + [199271] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8850), 1, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108209] = 3, + ACTIONS(8854), 1, + anon_sym_case, + ACTIONS(8946), 1, + anon_sym_RBRACE, + STATE(5562), 1, + sym_comment, + STATE(5635), 1, + aux_sym_switch_body_repeat1, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [199297] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + ACTIONS(8948), 1, + anon_sym_QMARK, + STATE(5028), 1, + sym_formal_parameters, + STATE(5563), 1, + sym_comment, + STATE(5614), 1, + sym__call_signature, + STATE(8101), 1, + sym_type_parameters, + [199325] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8950), 1, + sym_identifier, + STATE(5564), 1, sym_comment, - ACTIONS(2452), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2450), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(5707), 1, + sym_formal_parameters, + STATE(8012), 1, + sym_type_parameters, + STATE(8030), 1, + sym__call_signature, + [199353] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8952), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108251] = 3, + STATE(5565), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7595), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [199381] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4367), 1, + anon_sym_DQUOTE, + ACTIONS(4369), 1, + anon_sym_SQUOTE, + ACTIONS(8733), 1, + sym_identifier, + STATE(3891), 1, + sym_nested_identifier, + STATE(3948), 1, + sym_string, + STATE(4057), 1, + sym__module, + STATE(5566), 1, + sym_comment, + [199409] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5567), 1, sym_comment, - ACTIONS(2568), 2, + STATE(5593), 1, + aux_sym_object_type_repeat1, + ACTIONS(8956), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2566), 32, - anon_sym_export, + anon_sym_PIPE_RBRACE, + ACTIONS(8954), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199431] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3174), 1, + sym_statement_block, + STATE(5568), 1, + sym_comment, + ACTIONS(8743), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199453] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(8342), 1, + anon_sym_DOT, + ACTIONS(8958), 1, + anon_sym_COMMA, + ACTIONS(8960), 1, + anon_sym_GT, + STATE(5178), 1, + sym_arguments, + STATE(5569), 1, + sym_comment, + STATE(7284), 1, + aux_sym_type_arguments_repeat1, + [199481] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8850), 1, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108293] = 3, - ACTIONS(3), 1, + ACTIONS(8854), 1, + anon_sym_case, + ACTIONS(8962), 1, + anon_sym_RBRACE, + STATE(5570), 1, + sym_comment, + STATE(5635), 1, + aux_sym_switch_body_repeat1, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [199507] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(8964), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5240), 1, + sym__call_signature, + STATE(5571), 1, + sym_comment, + STATE(7440), 1, + sym_type_parameters, + [199535] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + ACTIONS(8966), 1, + anon_sym_COMMA, + ACTIONS(8968), 1, + anon_sym_GT, + STATE(5572), 1, sym_comment, - ACTIONS(2448), 2, + STATE(7288), 1, + aux_sym_type_arguments_repeat1, + [199563] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(8970), 1, + anon_sym_QMARK, + STATE(5573), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7909), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [199591] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5540), 1, + aux_sym_object_type_repeat1, + STATE(5574), 1, + sym_comment, + ACTIONS(8974), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2446), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108335] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(8972), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199613] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5575), 1, sym_comment, - ACTIONS(2472), 2, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(8978), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2470), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108377] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(8976), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199635] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5576), 1, sym_comment, - ACTIONS(2428), 2, + STATE(5645), 1, + aux_sym_object_type_repeat1, + ACTIONS(8982), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2426), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108419] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(8980), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199657] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5577), 1, sym_comment, - ACTIONS(2444), 2, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(8982), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2442), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + anon_sym_PIPE_RBRACE, + ACTIONS(8980), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199679] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8984), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108461] = 3, + STATE(5578), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7661), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [199707] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(8986), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5579), 1, + sym_comment, + STATE(5773), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + [199735] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8829), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8831), 1, + sym__template_chars, + ACTIONS(8988), 1, + anon_sym_BQUOTE, + STATE(5511), 1, + aux_sym_template_string_repeat1, + STATE(5580), 1, + sym_comment, + STATE(6345), 1, + sym_template_substitution, + [199763] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(8990), 1, + sym_identifier, + STATE(5581), 1, sym_comment, - ACTIONS(2504), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2502), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(7076), 1, + sym__destructuring_pattern, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + [199789] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8992), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108503] = 3, + STATE(5582), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(8012), 1, + sym_type_parameters, + STATE(8030), 1, + sym__call_signature, + [199817] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(8994), 1, + sym_identifier, + STATE(5583), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7595), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [199845] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8673), 1, + anon_sym_COMMA, + ACTIONS(8677), 1, + anon_sym_LT, + ACTIONS(8996), 1, + anon_sym_LBRACE, + ACTIONS(8998), 1, + anon_sym_LBRACE_PIPE, + STATE(5584), 1, + sym_comment, + STATE(6530), 1, + aux_sym_extends_type_clause_repeat1, + STATE(7022), 1, + sym_type_arguments, + [199873] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9000), 1, + anon_sym_as, + ACTIONS(9004), 1, + anon_sym_DOT, + ACTIONS(9006), 1, + aux_sym_ui_version_specifier_token1, + STATE(5585), 1, sym_comment, - ACTIONS(2692), 2, + STATE(6808), 1, + sym_ui_version_specifier, + ACTIONS(9002), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199899] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5586), 1, + sym_comment, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(9010), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2690), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108545] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(9008), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199921] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5587), 1, sym_comment, - ACTIONS(2544), 2, + STATE(5685), 1, + aux_sym_object_type_repeat1, + ACTIONS(9014), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2542), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108587] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(9012), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199943] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5586), 1, + aux_sym_object_type_repeat1, + STATE(5588), 1, sym_comment, - ACTIONS(2123), 2, + ACTIONS(8978), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2121), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108629] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(8976), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199965] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3282), 1, + sym_statement_block, + STATE(5589), 1, + sym_comment, + ACTIONS(8711), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199987] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(8342), 1, + anon_sym_DOT, + ACTIONS(9016), 1, + anon_sym_COMMA, + ACTIONS(9018), 1, + anon_sym_GT, + STATE(5178), 1, + sym_arguments, + STATE(5590), 1, + sym_comment, + STATE(7080), 1, + aux_sym_type_arguments_repeat1, + [200015] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5591), 1, sym_comment, - ACTIONS(2119), 2, + STATE(5595), 1, + aux_sym_object_type_repeat1, + ACTIONS(9022), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2117), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108671] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(9020), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200037] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5592), 1, sym_comment, - ACTIONS(2412), 2, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(9014), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2410), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108713] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(9012), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200059] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5593), 1, sym_comment, - ACTIONS(2408), 2, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(9022), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2406), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108755] = 3, + anon_sym_PIPE_RBRACE, + ACTIONS(9020), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200081] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(9024), 1, + sym_identifier, + STATE(5594), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7595), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [200109] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5595), 1, + sym_comment, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(9028), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9026), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200131] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5596), 1, sym_comment, - ACTIONS(2404), 2, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(9032), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2402), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, + anon_sym_PIPE_RBRACE, + ACTIONS(9030), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200153] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5597), 1, + sym_comment, + ACTIONS(8577), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [200171] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9036), 1, + anon_sym_catch, + ACTIONS(9038), 1, + anon_sym_finally, + STATE(5598), 1, + sym_comment, + STATE(6510), 1, + sym_catch_clause, + STATE(7838), 1, + sym_finally_clause, + ACTIONS(9034), 2, anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108797] = 3, + anon_sym_while, + [200197] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(9040), 1, + anon_sym_QMARK, + STATE(5599), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(8012), 1, + sym_type_parameters, + STATE(8137), 1, + sym__call_signature, + [200225] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(9042), 1, + anon_sym_QMARK, + STATE(5600), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7795), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [200253] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(9044), 1, + sym_identifier, + STATE(5601), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(8012), 1, + sym_type_parameters, + STATE(8030), 1, + sym__call_signature, + [200281] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(9046), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5602), 1, + sym_comment, + STATE(5760), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + [200309] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5548), 1, + aux_sym_object_type_repeat1, + STATE(5603), 1, sym_comment, - ACTIONS(2115), 2, + ACTIONS(8894), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2113), 32, - anon_sym_export, + anon_sym_PIPE_RBRACE, + ACTIONS(8892), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200331] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9048), 1, + sym_escape_sequence, + ACTIONS(9051), 1, + anon_sym_BQUOTE, + ACTIONS(9053), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9056), 1, + sym__template_chars, + STATE(6345), 1, + sym_template_substitution, + STATE(5604), 2, + sym_comment, + aux_sym_template_string_repeat1, + [200357] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8850), 1, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108839] = 3, - ACTIONS(3), 1, + ACTIONS(8854), 1, + anon_sym_case, + ACTIONS(9059), 1, + anon_sym_RBRACE, + STATE(5605), 1, + sym_comment, + STATE(5635), 1, + aux_sym_switch_body_repeat1, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [200383] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + ACTIONS(9061), 1, + anon_sym_COMMA, + ACTIONS(9063), 1, + anon_sym_GT, + STATE(5606), 1, + sym_comment, + STATE(7072), 1, + aux_sym_type_arguments_repeat1, + [200411] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(9065), 1, + anon_sym_QMARK, + STATE(5607), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7752), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [200439] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5608), 1, sym_comment, - ACTIONS(2400), 2, + STATE(5628), 1, + aux_sym_object_type_repeat1, + ACTIONS(9069), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2398), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108881] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(9067), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200461] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5609), 1, sym_comment, - ACTIONS(2396), 2, + ACTIONS(9071), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2394), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108923] = 3, + ACTIONS(5190), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [200481] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9006), 1, + aux_sym_ui_version_specifier_token1, + ACTIONS(9073), 1, + anon_sym_as, + ACTIONS(9077), 1, + anon_sym_DOT, + STATE(5610), 1, + sym_comment, + STATE(7097), 1, + sym_ui_version_specifier, + ACTIONS(9075), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200507] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5611), 1, + sym_comment, + ACTIONS(8719), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [200525] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(9079), 1, + sym_identifier, + STATE(5612), 1, sym_comment, - ACTIONS(2392), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2390), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(5707), 1, + sym_formal_parameters, + STATE(7595), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [200553] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3191), 1, + sym_statement_block, + STATE(5613), 1, + sym_comment, + ACTIONS(8797), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200575] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3190), 1, + sym_statement_block, + STATE(5614), 1, + sym_comment, + ACTIONS(8799), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200597] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9081), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [108965] = 3, + STATE(5615), 1, + sym_comment, + STATE(6665), 1, + sym__destructuring_pattern, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + [200623] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4355), 1, + anon_sym_DQUOTE, + ACTIONS(4357), 1, + anon_sym_SQUOTE, + ACTIONS(8793), 1, + sym_identifier, + STATE(3954), 1, + sym_nested_identifier, + STATE(3990), 1, + sym_string, + STATE(4245), 1, + sym__module, + STATE(5616), 1, sym_comment, - ACTIONS(2388), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2386), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + [200651] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(8597), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109007] = 3, + STATE(5200), 1, + sym_nested_identifier, + STATE(5500), 1, + sym_string, + STATE(5617), 1, + sym_comment, + STATE(6198), 1, + sym__module, + [200679] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3256), 1, + sym_statement_block, + STATE(5618), 1, + sym_comment, + ACTIONS(8554), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200701] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(9083), 1, + sym_identifier, + STATE(5619), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(8012), 1, + sym_type_parameters, + STATE(8030), 1, + sym__call_signature, + [200729] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + ACTIONS(9085), 1, + anon_sym_QMARK, + STATE(5028), 1, + sym_formal_parameters, + STATE(5537), 1, + sym__call_signature, + STATE(5620), 1, sym_comment, - ACTIONS(2384), 2, + STATE(8101), 1, + sym_type_parameters, + [200757] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3215), 1, + sym_statement_block, + STATE(5621), 1, + sym_comment, + ACTIONS(8743), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200779] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5622), 1, + sym_comment, + STATE(5664), 1, + aux_sym_object_type_repeat1, + ACTIONS(9089), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2382), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109049] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(9087), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200801] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5623), 1, sym_comment, - ACTIONS(2380), 2, + STATE(5630), 1, + aux_sym_object_type_repeat1, + ACTIONS(9093), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2378), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109091] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(9091), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200823] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5624), 1, sym_comment, - ACTIONS(2564), 2, + ACTIONS(9095), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2562), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [200841] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9097), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109133] = 3, + STATE(5625), 1, + sym_comment, + STATE(6615), 1, + sym__destructuring_pattern, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + [200867] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4361), 1, + anon_sym_DQUOTE, + ACTIONS(4363), 1, + anon_sym_SQUOTE, + ACTIONS(8573), 1, + sym_identifier, + STATE(1151), 1, + sym_nested_identifier, + STATE(1286), 1, + sym_string, + STATE(1465), 1, + sym__module, + STATE(5626), 1, + sym_comment, + [200895] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5627), 1, sym_comment, - ACTIONS(2356), 2, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(9089), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2354), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109175] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(9087), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200917] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5628), 1, sym_comment, - ACTIONS(2376), 2, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(9093), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2374), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109217] = 3, + anon_sym_PIPE_RBRACE, + ACTIONS(9091), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200939] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(8683), 1, + sym_identifier, + STATE(5629), 1, + sym_comment, + STATE(6024), 1, + sym_nested_identifier, + STATE(6566), 1, + sym_string, + STATE(7424), 1, + sym__module, + [200967] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5630), 1, sym_comment, - ACTIONS(2548), 2, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(9101), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2546), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, + anon_sym_PIPE_RBRACE, + ACTIONS(9099), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200989] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9106), 1, anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109259] = 3, - ACTIONS(3), 1, + STATE(6576), 1, + sym_ui_property_modifier, + STATE(5631), 2, sym_comment, - ACTIONS(2372), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2370), 32, - anon_sym_export, + aux_sym_ui_property_repeat1, + ACTIONS(9103), 3, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109301] = 3, + [201011] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3265), 1, + anon_sym_LBRACE, + ACTIONS(7551), 1, + anon_sym_COLON, + ACTIONS(7553), 1, + anon_sym_DOT, + ACTIONS(8074), 1, + anon_sym_on, + ACTIONS(9108), 1, + sym_identifier, + STATE(4299), 1, + sym_ui_object_initializer, + STATE(5632), 1, + sym_comment, + [201039] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5633), 1, sym_comment, - ACTIONS(2368), 2, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(9112), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2366), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109343] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(9110), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [201061] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + ACTIONS(9114), 1, + anon_sym_QMARK, + STATE(5028), 1, + sym_formal_parameters, + STATE(5539), 1, + sym__call_signature, + STATE(5634), 1, sym_comment, - ACTIONS(2111), 2, + STATE(8101), 1, + sym_type_parameters, + [201089] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9116), 1, + anon_sym_default, + ACTIONS(9119), 1, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2109), 32, - anon_sym_export, + ACTIONS(9121), 1, + anon_sym_case, + STATE(5635), 2, + sym_comment, + aux_sym_switch_body_repeat1, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [201113] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(9124), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5636), 1, + sym_comment, + STATE(6143), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + [201141] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3218), 1, + sym_statement_block, + STATE(5637), 1, + sym_comment, + ACTIONS(8741), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [201163] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8850), 1, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109385] = 3, + ACTIONS(8854), 1, + anon_sym_case, + ACTIONS(9126), 1, + anon_sym_RBRACE, + STATE(5635), 1, + aux_sym_switch_body_repeat1, + STATE(5638), 1, + sym_comment, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [201189] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(8683), 1, + sym_identifier, + STATE(5639), 1, sym_comment, - ACTIONS(2432), 2, - anon_sym_RBRACE, + STATE(6024), 1, + sym_nested_identifier, + STATE(6566), 1, + sym_string, + STATE(7995), 1, + sym__module, + [201217] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(2430), 32, + ACTIONS(9128), 1, anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109427] = 3, - ACTIONS(3), 1, + ACTIONS(9130), 1, + anon_sym_class, + ACTIONS(9132), 1, + anon_sym_abstract, + STATE(5640), 1, + sym_comment, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + [201245] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3257), 1, + sym_statement_block, + STATE(5641), 1, + sym_comment, + ACTIONS(8621), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [201267] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5659), 1, + anon_sym_COMMA, + STATE(5517), 1, + aux_sym_sequence_expression_repeat1, + STATE(5642), 1, sym_comment, - ACTIONS(2556), 2, + ACTIONS(9134), 4, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2554), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109469] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [201289] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5643), 1, sym_comment, - ACTIONS(2528), 2, + ACTIONS(2370), 6, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2526), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109511] = 3, - ACTIONS(3), 1, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [201307] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(9136), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5328), 1, + sym__call_signature, + STATE(5644), 1, + sym_comment, + STATE(7440), 1, + sym_type_parameters, + [201335] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5645), 1, sym_comment, - ACTIONS(2480), 2, + STATE(5649), 1, + aux_sym_object_type_repeat1, + ACTIONS(9140), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2478), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109553] = 3, + anon_sym_PIPE_RBRACE, + ACTIONS(9138), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [201357] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3277), 1, + sym_statement_block, + STATE(5646), 1, + sym_comment, + ACTIONS(8538), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [201379] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3265), 1, + anon_sym_LBRACE, + ACTIONS(7551), 1, + anon_sym_COLON, + ACTIONS(7553), 1, + anon_sym_DOT, + ACTIONS(8074), 1, + anon_sym_on, + ACTIONS(9142), 1, + sym_identifier, + STATE(4299), 1, + sym_ui_object_initializer, + STATE(5647), 1, sym_comment, - ACTIONS(2696), 2, + [201407] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5648), 1, + sym_comment, + ACTIONS(9144), 6, + anon_sym_export, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [201425] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9149), 2, anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(5649), 2, + sym_comment, + aux_sym_object_type_repeat1, + ACTIONS(9146), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [201445] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3210), 1, + sym_statement_block, + STATE(5650), 1, + sym_comment, + ACTIONS(8797), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [201467] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(2694), 32, + ACTIONS(9151), 1, anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + ACTIONS(9153), 1, + anon_sym_class, + ACTIONS(9155), 1, + anon_sym_abstract, + STATE(5651), 1, + sym_comment, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + [201495] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + ACTIONS(9157), 1, + anon_sym_COMMA, + ACTIONS(9159), 1, + anon_sym_GT, + STATE(5652), 1, + sym_comment, + STATE(6727), 1, + aux_sym_type_arguments_repeat1, + [201523] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + ACTIONS(9161), 1, + anon_sym_QMARK, + STATE(5028), 1, + sym_formal_parameters, + STATE(5621), 1, + sym__call_signature, + STATE(5653), 1, + sym_comment, + STATE(8101), 1, + sym_type_parameters, + [201551] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(9163), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5437), 1, + sym__call_signature, + STATE(5654), 1, + sym_comment, + STATE(7440), 1, + sym_type_parameters, + [201579] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4361), 1, + anon_sym_DQUOTE, + ACTIONS(4363), 1, + anon_sym_SQUOTE, + ACTIONS(8573), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109595] = 3, + STATE(1151), 1, + sym_nested_identifier, + STATE(1286), 1, + sym_string, + STATE(1545), 1, + sym__module, + STATE(5655), 1, + sym_comment, + [201607] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3214), 1, + sym_statement_block, + STATE(5656), 1, + sym_comment, + ACTIONS(8783), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [201629] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9165), 1, + sym_identifier, + STATE(5657), 1, sym_comment, - ACTIONS(2676), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2674), 32, - anon_sym_export, + STATE(6933), 1, + sym__destructuring_pattern, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + [201655] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(8342), 1, + anon_sym_DOT, + ACTIONS(9167), 1, + anon_sym_COMMA, + ACTIONS(9169), 1, + anon_sym_GT, + STATE(5178), 1, + sym_arguments, + STATE(5658), 1, + sym_comment, + STATE(6723), 1, + aux_sym_type_arguments_repeat1, + [201683] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(8342), 1, + anon_sym_DOT, + ACTIONS(9171), 1, + anon_sym_COMMA, + ACTIONS(9173), 1, + anon_sym_GT, + STATE(5178), 1, + sym_arguments, + STATE(5659), 1, + sym_comment, + STATE(7009), 1, + aux_sym_type_arguments_repeat1, + [201711] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + ACTIONS(9175), 1, + anon_sym_COMMA, + ACTIONS(9177), 1, + anon_sym_GT, + STATE(5660), 1, + sym_comment, + STATE(7013), 1, + aux_sym_type_arguments_repeat1, + [201739] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8850), 1, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109637] = 3, - ACTIONS(3), 1, + ACTIONS(8854), 1, + anon_sym_case, + ACTIONS(9179), 1, + anon_sym_RBRACE, + STATE(5635), 1, + aux_sym_switch_body_repeat1, + STATE(5661), 1, + sym_comment, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [201765] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9181), 1, + anon_sym_DOT, + STATE(5662), 1, + sym_comment, + ACTIONS(8504), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [201785] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + ACTIONS(9183), 1, + anon_sym_QMARK, + STATE(5028), 1, + sym_formal_parameters, + STATE(5663), 1, + sym_comment, + STATE(5676), 1, + sym__call_signature, + STATE(8101), 1, + sym_type_parameters, + [201813] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5649), 1, + aux_sym_object_type_repeat1, + STATE(5664), 1, sym_comment, - ACTIONS(2648), 2, + ACTIONS(9187), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2646), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109679] = 3, + anon_sym_PIPE_RBRACE, + ACTIONS(9185), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [201835] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(9189), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5665), 1, + sym_comment, + STATE(6023), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + [201863] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(9191), 1, + sym_identifier, + STATE(5666), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7595), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [201891] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5649), 1, + aux_sym_object_type_repeat1, + STATE(5667), 1, sym_comment, - ACTIONS(2548), 2, + ACTIONS(9195), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2546), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + anon_sym_PIPE_RBRACE, + ACTIONS(9193), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [201913] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5668), 1, + sym_comment, + ACTIONS(8480), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT, + [201931] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(9197), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109721] = 3, + STATE(5669), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(8012), 1, + sym_type_parameters, + STATE(8030), 1, + sym__call_signature, + [201959] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9199), 1, + sym_identifier, + STATE(5670), 1, + sym_comment, + STATE(6679), 1, + sym__destructuring_pattern, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + [201985] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(9201), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5478), 1, + sym__call_signature, + STATE(5671), 1, + sym_comment, + STATE(7440), 1, + sym_type_parameters, + [202013] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + ACTIONS(9205), 1, + anon_sym_QMARK, + STATE(5672), 1, + sym_comment, + ACTIONS(9203), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [202039] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + STATE(5673), 1, + sym_comment, + ACTIONS(9207), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [202063] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8829), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8831), 1, + sym__template_chars, + ACTIONS(9209), 1, + anon_sym_BQUOTE, + STATE(5604), 1, + aux_sym_template_string_repeat1, + STATE(5674), 1, + sym_comment, + STATE(6345), 1, + sym_template_substitution, + [202091] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5649), 1, + aux_sym_object_type_repeat1, + STATE(5675), 1, sym_comment, - ACTIONS(2492), 2, + ACTIONS(9213), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2490), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109763] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(9211), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [202113] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3268), 1, + sym_statement_block, + STATE(5676), 1, + sym_comment, + ACTIONS(8564), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [202135] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5633), 1, + aux_sym_object_type_repeat1, + STATE(5677), 1, sym_comment, - ACTIONS(2548), 2, + ACTIONS(9213), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2546), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, + anon_sym_PIPE_RBRACE, + ACTIONS(9211), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [202157] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + ACTIONS(9215), 1, + anon_sym_QMARK, + STATE(5028), 1, + sym_formal_parameters, + STATE(5678), 1, + sym_comment, + STATE(5687), 1, + sym__call_signature, + STATE(8101), 1, + sym_type_parameters, + [202185] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + ACTIONS(9217), 1, + anon_sym_COMMA, + ACTIONS(9219), 1, + anon_sym_GT, + STATE(5679), 1, + sym_comment, + STATE(6876), 1, + aux_sym_type_arguments_repeat1, + [202213] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(8342), 1, + anon_sym_DOT, + ACTIONS(9221), 1, + anon_sym_COMMA, + ACTIONS(9223), 1, + anon_sym_GT, + STATE(5178), 1, + sym_arguments, + STATE(5680), 1, + sym_comment, + STATE(6891), 1, + aux_sym_type_arguments_repeat1, + [202241] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4724), 1, + anon_sym_LBRACE, + ACTIONS(8364), 1, + anon_sym_COLON, + ACTIONS(8366), 1, + anon_sym_DOT, + ACTIONS(8368), 1, anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109805] = 3, + ACTIONS(9225), 1, + anon_sym_function, + STATE(4299), 1, + sym_ui_object_initializer, + STATE(5681), 1, + sym_comment, + [202269] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8462), 1, + sym_escape_sequence, + ACTIONS(8829), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8831), 1, + sym__template_chars, + ACTIONS(9227), 1, + anon_sym_BQUOTE, + STATE(5674), 1, + aux_sym_template_string_repeat1, + STATE(5682), 1, + sym_comment, + STATE(6345), 1, + sym_template_substitution, + [202297] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(9229), 1, + sym_identifier, + STATE(5683), 1, sym_comment, - ACTIONS(1703), 2, + STATE(5707), 1, + sym_formal_parameters, + STATE(7595), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [202325] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5649), 1, + aux_sym_object_type_repeat1, + STATE(5684), 1, + sym_comment, + ACTIONS(9233), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(1699), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109847] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(9231), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [202347] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5649), 1, + aux_sym_object_type_repeat1, + STATE(5685), 1, sym_comment, - ACTIONS(2600), 2, + ACTIONS(9237), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2598), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109889] = 3, + anon_sym_PIPE_RBRACE, + ACTIONS(9235), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [202369] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8675), 1, + anon_sym_DOT, + ACTIONS(8677), 1, + anon_sym_LT, + ACTIONS(9239), 1, + anon_sym_LBRACE, + STATE(5686), 1, + sym_comment, + STATE(7021), 1, + sym_type_arguments, + ACTIONS(9241), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [202395] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3229), 1, + sym_statement_block, + STATE(5687), 1, + sym_comment, + ACTIONS(8538), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [202417] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(9243), 1, + sym_identifier, + STATE(5688), 1, sym_comment, - ACTIONS(2496), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2494), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + STATE(5707), 1, + sym_formal_parameters, + STATE(8012), 1, + sym_type_parameters, + STATE(8030), 1, + sym__call_signature, + [202445] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(8888), 1, + anon_sym_LBRACK, + ACTIONS(9245), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109931] = 3, + STATE(5689), 1, + sym_comment, + STATE(6649), 1, + sym__destructuring_pattern, + STATE(5071), 2, + sym_object_pattern, + sym_array_pattern, + [202471] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(9247), 1, + anon_sym_QMARK, + STATE(5690), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7950), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [202499] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(9249), 1, + sym_identifier, + STATE(5691), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(7799), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [202527] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3163), 1, + sym_statement_block, + STATE(5692), 1, + sym_comment, + ACTIONS(8564), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [202549] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(9251), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5498), 1, + sym__call_signature, + STATE(5693), 1, + sym_comment, + STATE(7440), 1, + sym_type_parameters, + [202577] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5667), 1, + aux_sym_object_type_repeat1, + STATE(5694), 1, sym_comment, - ACTIONS(2496), 2, + ACTIONS(9233), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2494), 32, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + anon_sym_PIPE_RBRACE, + ACTIONS(9231), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [202599] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9253), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [109973] = 3, + STATE(5695), 1, + sym_comment, + ACTIONS(7675), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [202619] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9255), 1, + sym_identifier, + STATE(5696), 1, sym_comment, - ACTIONS(2508), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(2506), 32, - anon_sym_export, + ACTIONS(7675), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [202639] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8850), 1, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110015] = 3, - ACTIONS(3), 1, + ACTIONS(8854), 1, + anon_sym_case, + ACTIONS(9257), 1, + anon_sym_RBRACE, + STATE(5635), 1, + aux_sym_switch_body_repeat1, + STATE(5697), 1, sym_comment, - ACTIONS(2524), 2, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [202665] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8850), 1, + anon_sym_default, + ACTIONS(8854), 1, + anon_sym_case, + ACTIONS(9259), 1, anon_sym_RBRACE, + STATE(5638), 1, + aux_sym_switch_body_repeat1, + STATE(5698), 1, + sym_comment, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [202691] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(2522), 32, + ACTIONS(9261), 1, anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, + ACTIONS(9263), 1, + anon_sym_class, + ACTIONS(9265), 1, + anon_sym_abstract, + STATE(5699), 1, + sym_comment, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + [202719] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3254), 1, + sym_statement_block, + STATE(5700), 1, + sym_comment, + ACTIONS(8681), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [202741] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(9267), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5481), 1, + sym__call_signature, + STATE(5701), 1, + sym_comment, + STATE(7440), 1, + sym_type_parameters, + [202769] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(8597), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110057] = 3, + STATE(5200), 1, + sym_nested_identifier, + STATE(5500), 1, + sym_string, + STATE(5702), 1, + sym_comment, + STATE(5912), 1, + sym__module, + [202797] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9269), 1, + sym_identifier, + STATE(5703), 1, sym_comment, - ACTIONS(5737), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5735), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, + ACTIONS(7675), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [202817] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(9271), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110098] = 3, + STATE(5704), 1, + sym_comment, + STATE(5707), 1, + sym_formal_parameters, + STATE(8012), 1, + sym_type_parameters, + STATE(8030), 1, + sym__call_signature, + [202845] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(9273), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5705), 1, + sym_comment, + STATE(6875), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + [202873] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5706), 1, + sym_comment, + ACTIONS(8697), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [202891] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9275), 1, + anon_sym_COLON, + STATE(5707), 1, + sym_comment, + ACTIONS(8124), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7587), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [202913] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9275), 1, + anon_sym_COLON, + STATE(5708), 1, + sym_comment, + ACTIONS(8138), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7797), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [202935] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9277), 1, + sym_identifier, + STATE(5709), 1, sym_comment, - ACTIONS(5741), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5739), 31, - anon_sym_export, + ACTIONS(7675), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [202955] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8850), 1, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110139] = 3, + ACTIONS(8854), 1, + anon_sym_case, + ACTIONS(9279), 1, + anon_sym_RBRACE, + STATE(5562), 1, + aux_sym_switch_body_repeat1, + STATE(5710), 1, + sym_comment, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [202981] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4329), 1, + anon_sym_DQUOTE, + ACTIONS(4331), 1, + anon_sym_SQUOTE, + ACTIONS(8550), 1, + sym_identifier, + STATE(994), 1, + sym_nested_identifier, + STATE(1036), 1, + sym_string, + STATE(1232), 1, + sym__module, + STATE(5711), 1, sym_comment, - ACTIONS(5745), 2, - anon_sym_RBRACE, + [203009] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(8753), 1, + anon_sym_EQ, + STATE(5712), 1, + sym_comment, + STATE(6579), 1, + sym_type_annotation, + STATE(7953), 1, + sym__initializer, + ACTIONS(9281), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [203035] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9285), 1, anon_sym_AT, - ACTIONS(5743), 31, + STATE(6520), 1, + sym_decorator, + STATE(5713), 2, + sym_comment, + aux_sym_export_statement_repeat1, + ACTIONS(9283), 3, anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110180] = 3, - ACTIONS(3), 1, + anon_sym_class, + anon_sym_abstract, + [203057] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5684), 1, + aux_sym_object_type_repeat1, + STATE(5714), 1, sym_comment, - ACTIONS(5749), 2, + ACTIONS(9290), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5747), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, + anon_sym_PIPE_RBRACE, + ACTIONS(9288), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [203079] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9292), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110221] = 3, + STATE(5715), 1, + sym_comment, + ACTIONS(7675), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [203099] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3176), 1, + sym_statement_block, + STATE(5716), 1, + sym_comment, + ACTIONS(8741), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [203121] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9294), 1, + sym_identifier, + STATE(5717), 1, sym_comment, - ACTIONS(5753), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5751), 31, - anon_sym_export, + ACTIONS(7675), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [203141] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8850), 1, anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110262] = 3, - ACTIONS(3), 1, + ACTIONS(8854), 1, + anon_sym_case, + ACTIONS(9296), 1, + anon_sym_RBRACE, + STATE(5697), 1, + aux_sym_switch_body_repeat1, + STATE(5718), 1, + sym_comment, + STATE(6796), 2, + sym_switch_case, + sym_switch_default, + [203167] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5675), 1, + aux_sym_object_type_repeat1, + STATE(5719), 1, sym_comment, - ACTIONS(5757), 2, + ACTIONS(9300), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5755), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110303] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(9298), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [203189] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(9302), 1, + anon_sym_QMARK, + STATE(5707), 1, + sym_formal_parameters, + STATE(5720), 1, + sym_comment, + STATE(7906), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [203217] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(9304), 1, + anon_sym_QMARK, + STATE(5707), 1, + sym_formal_parameters, + STATE(5721), 1, + sym_comment, + STATE(7977), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [203245] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(9306), 1, + anon_sym_QMARK, + STATE(5707), 1, + sym_formal_parameters, + STATE(5722), 1, + sym_comment, + STATE(7999), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [203273] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5558), 1, + aux_sym_object_type_repeat1, + STATE(5723), 1, sym_comment, - ACTIONS(5761), 2, + ACTIONS(9310), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5759), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110344] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(9308), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [203295] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + ACTIONS(9312), 1, + anon_sym_QMARK, + STATE(4941), 1, + sym_formal_parameters, + STATE(5724), 1, sym_comment, - ACTIONS(5765), 2, + STATE(6100), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + [203323] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5596), 1, + aux_sym_object_type_repeat1, + STATE(5725), 1, + sym_comment, + ACTIONS(8866), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5763), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110385] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(8864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [203345] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5524), 1, + aux_sym_object_type_repeat1, + STATE(5726), 1, sym_comment, - ACTIONS(5769), 2, + ACTIONS(9316), 2, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5767), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, + anon_sym_PIPE_RBRACE, + ACTIONS(9314), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [203367] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9318), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110426] = 3, + STATE(5727), 1, + sym_comment, + ACTIONS(7675), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [203387] = 9, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2257), 1, + anon_sym_LT, + ACTIONS(8534), 1, + anon_sym_LPAREN, + ACTIONS(9320), 1, + sym_identifier, + STATE(5707), 1, + sym_formal_parameters, + STATE(5728), 1, + sym_comment, + STATE(7595), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [203415] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(9322), 1, + anon_sym_QMARK, + STATE(5707), 1, + sym_formal_parameters, + STATE(5729), 1, + sym_comment, + STATE(8007), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [203443] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9324), 1, + anon_sym_LBRACE, + ACTIONS(9326), 1, + anon_sym_SEMI, + ACTIONS(9328), 1, + sym__automatic_semicolon, + ACTIONS(9330), 1, + sym__function_signature_automatic_semicolon, + STATE(499), 1, + sym_statement_block, + STATE(5730), 1, + sym_comment, + [203468] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5731), 1, + sym_comment, + STATE(6730), 1, + sym__initializer, + ACTIONS(9332), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [203489] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9334), 1, + anon_sym_LBRACE, + ACTIONS(9336), 1, + anon_sym_SEMI, + ACTIONS(9338), 1, + sym__automatic_semicolon, + ACTIONS(9340), 1, + sym__function_signature_automatic_semicolon, + STATE(1269), 1, + sym_statement_block, + STATE(5732), 1, + sym_comment, + [203514] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5733), 1, sym_comment, - ACTIONS(5753), 2, + ACTIONS(9342), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5751), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110467] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [203531] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5734), 1, sym_comment, - ACTIONS(5773), 2, + STATE(7300), 1, + sym__initializer, + ACTIONS(9344), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [203552] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8753), 1, + anon_sym_EQ, + ACTIONS(9346), 1, + anon_sym_COMMA, + ACTIONS(9348), 1, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5771), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110508] = 3, - ACTIONS(3), 1, + STATE(5735), 1, + sym_comment, + STATE(7327), 1, + aux_sym_enum_body_repeat1, + STATE(7894), 1, + sym__initializer, + [203577] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5736), 1, + sym_comment, + STATE(7298), 1, + sym__initializer, + ACTIONS(9344), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [203598] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, + anon_sym_LBRACE, + ACTIONS(9350), 1, + anon_sym_SEMI, + ACTIONS(9352), 1, + sym__automatic_semicolon, + ACTIONS(9354), 1, + sym__function_signature_automatic_semicolon, + STATE(3532), 1, + sym_statement_block, + STATE(5737), 1, + sym_comment, + [203623] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5738), 1, + sym_comment, + ACTIONS(9356), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203646] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9334), 1, + anon_sym_LBRACE, + ACTIONS(9360), 1, + anon_sym_SEMI, + ACTIONS(9362), 1, + sym__automatic_semicolon, + ACTIONS(9364), 1, + sym__function_signature_automatic_semicolon, + STATE(1330), 1, + sym_statement_block, + STATE(5739), 1, + sym_comment, + [203671] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5740), 1, + sym_comment, + ACTIONS(9366), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203694] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5741), 1, sym_comment, - ACTIONS(5777), 2, + ACTIONS(8777), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5775), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110549] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [203711] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5742), 1, + sym_comment, + STATE(7940), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [203736] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1589), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8581), 1, + anon_sym_LBRACE_PIPE, + STATE(5743), 1, + sym_comment, + STATE(6274), 1, + sym_object_type, + STATE(7341), 1, + sym_extends_type_clause, + [203761] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, + anon_sym_LBRACE, + ACTIONS(9368), 1, + anon_sym_SEMI, + ACTIONS(9370), 1, + sym__automatic_semicolon, + ACTIONS(9372), 1, + sym__function_signature_automatic_semicolon, + STATE(3557), 1, + sym_statement_block, + STATE(5744), 1, + sym_comment, + [203786] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5745), 1, + sym_comment, + ACTIONS(9374), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203809] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8677), 1, + anon_sym_LT, + ACTIONS(9376), 1, + anon_sym_LBRACE, + STATE(5746), 1, + sym_comment, + STATE(7022), 1, + sym_type_arguments, + ACTIONS(9378), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [203832] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5747), 1, + sym_comment, + ACTIONS(9380), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203855] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5748), 1, + sym_comment, + ACTIONS(9382), 5, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + anon_sym_DOT, + aux_sym_ui_version_specifier_token1, + [203872] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5749), 1, + sym_comment, + ACTIONS(9384), 5, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + anon_sym_DOT, + aux_sym_ui_version_specifier_token1, + [203889] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5750), 1, sym_comment, - ACTIONS(5753), 2, + ACTIONS(9386), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5751), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [203906] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5751), 1, + sym_comment, + ACTIONS(6343), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110590] = 3, - ACTIONS(3), 1, + anon_sym_COLON, + [203923] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5752), 1, sym_comment, - ACTIONS(5753), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5751), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, + ACTIONS(6162), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110631] = 3, - ACTIONS(3), 1, + anon_sym_COLON, + [203940] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5753), 1, sym_comment, - ACTIONS(5781), 2, + ACTIONS(9388), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5779), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110672] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [203957] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5754), 1, sym_comment, - ACTIONS(5785), 2, + ACTIONS(9390), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5783), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110713] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [203974] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5755), 1, sym_comment, - ACTIONS(5789), 2, + ACTIONS(8621), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5787), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110754] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [203991] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5756), 1, sym_comment, - ACTIONS(5793), 2, + ACTIONS(8538), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [204008] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5757), 1, + sym_comment, + STATE(7312), 1, + sym__initializer, + ACTIONS(9344), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204029] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(5791), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110795] = 3, - ACTIONS(3), 1, + ACTIONS(9132), 1, + anon_sym_abstract, + ACTIONS(9392), 1, + anon_sym_class, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(5758), 1, + sym_comment, + STATE(6520), 1, + sym_decorator, + [204054] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5759), 1, sym_comment, - ACTIONS(5753), 2, + ACTIONS(9394), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5751), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110836] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [204071] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5760), 1, + sym_comment, + ACTIONS(8538), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [204088] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4941), 1, + sym_formal_parameters, + STATE(5761), 1, + sym_comment, + STATE(6012), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + [204113] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5762), 1, sym_comment, - ACTIONS(5797), 2, + STATE(7314), 1, + sym__initializer, + ACTIONS(9344), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204134] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5190), 1, + anon_sym_COLON, + ACTIONS(7839), 1, + anon_sym_EQ, + ACTIONS(9396), 1, + anon_sym_COMMA, + ACTIONS(9398), 1, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5795), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110877] = 3, - ACTIONS(3), 1, + STATE(5763), 1, + sym_comment, + STATE(7162), 1, + aux_sym_object_pattern_repeat1, + [204159] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5764), 1, sym_comment, - ACTIONS(5801), 2, + ACTIONS(8621), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [204176] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9275), 1, + anon_sym_COLON, + ACTIONS(9400), 1, + anon_sym_EQ_GT, + STATE(5765), 1, + sym_comment, + STATE(7587), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [204197] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(5799), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, + ACTIONS(8809), 1, + anon_sym_abstract, + ACTIONS(9403), 1, + anon_sym_class, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(5766), 1, + sym_comment, + STATE(6520), 1, + sym_decorator, + [204222] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5527), 1, + sym__call_signature, + STATE(5767), 1, + sym_comment, + STATE(8101), 1, + sym_type_parameters, + [204247] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5768), 1, + sym_comment, + STATE(6648), 1, + sym__initializer, + ACTIONS(9405), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204268] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5769), 1, + sym_comment, + STATE(6590), 1, + sym__initializer, + ACTIONS(9407), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204289] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5770), 1, + sym_comment, + STATE(6719), 1, + sym__initializer, + ACTIONS(9405), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204310] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5771), 1, + sym_comment, + ACTIONS(6282), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110918] = 3, - ACTIONS(3), 1, + anon_sym_COLON, + [204327] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9409), 1, + anon_sym_BQUOTE, + ACTIONS(9411), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9413), 1, + sym__template_chars, + STATE(5772), 1, + sym_comment, + STATE(5810), 1, + aux_sym_template_literal_type_repeat1, + STATE(7137), 1, + sym_template_type, + [204352] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5773), 1, sym_comment, - ACTIONS(5805), 2, + ACTIONS(8785), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5803), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [110959] = 22, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [204369] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4941), 1, + sym_formal_parameters, + STATE(5741), 1, + sym__call_signature, + STATE(5774), 1, + sym_comment, + STATE(7440), 1, + sym_type_parameters, + [204394] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9411), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9413), 1, + sym__template_chars, + ACTIONS(9415), 1, + anon_sym_BQUOTE, + STATE(5775), 1, + sym_comment, + STATE(5881), 1, + aux_sym_template_literal_type_repeat1, + STATE(7137), 1, + sym_template_type, + [204419] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5776), 1, + sym_comment, + ACTIONS(8787), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [204436] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5777), 1, + sym_comment, + STATE(6782), 1, + sym__initializer, + ACTIONS(9417), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204457] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5778), 1, + sym_comment, + STATE(6803), 1, + sym__initializer, + ACTIONS(9417), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204478] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5779), 1, + sym_comment, + STATE(6805), 1, + sym__initializer, + ACTIONS(9405), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204499] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5780), 1, + sym_comment, + STATE(7319), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204520] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5781), 1, sym_comment, - ACTIONS(104), 1, + STATE(6737), 1, + sym__initializer, + ACTIONS(9405), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204541] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(2055), 1, - anon_sym_namespace, - ACTIONS(2059), 1, - anon_sym_import, - ACTIONS(2061), 1, - anon_sym_var, - ACTIONS(2063), 1, - anon_sym_let, - ACTIONS(2065), 1, - anon_sym_const, - ACTIONS(2073), 1, - anon_sym_class, - ACTIONS(2075), 1, - anon_sym_async, - ACTIONS(2077), 1, - anon_sym_function, - ACTIONS(2079), 1, - anon_sym_declare, - ACTIONS(2083), 1, + ACTIONS(9265), 1, anon_sym_abstract, - ACTIONS(2085), 1, - anon_sym_interface, - ACTIONS(2087), 1, - anon_sym_enum, - ACTIONS(2099), 1, - anon_sym_type, - ACTIONS(2101), 1, - anon_sym_module, - ACTIONS(2103), 1, - anon_sym_global, - STATE(786), 1, - sym_declaration, - STATE(802), 1, - sym_internal_module, - STATE(1136), 1, - sym_decorator, - STATE(3571), 1, + ACTIONS(9421), 1, + anon_sym_class, + STATE(5713), 1, aux_sym_export_statement_repeat1, - STATE(785), 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, - [111038] = 3, - ACTIONS(3), 1, + STATE(5782), 1, + sym_comment, + STATE(6520), 1, + sym_decorator, + [204566] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5783), 1, + sym_comment, + STATE(7320), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204587] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5784), 1, + sym_comment, + STATE(6614), 1, + sym__initializer, + ACTIONS(9423), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204608] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5785), 1, + sym_comment, + STATE(7321), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204629] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5786), 1, sym_comment, - ACTIONS(5809), 2, + STATE(7322), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204650] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5787), 1, + sym_comment, + STATE(7323), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204671] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5788), 1, + sym_comment, + ACTIONS(9425), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5807), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111079] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [204688] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5789), 1, + sym_comment, + STATE(7247), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204709] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5790), 1, + sym_comment, + STATE(7287), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204730] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5791), 1, + sym_comment, + STATE(7331), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204751] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9427), 1, + anon_sym_LBRACE, + ACTIONS(9429), 1, + anon_sym_SEMI, + ACTIONS(9431), 1, + sym__automatic_semicolon, + ACTIONS(9433), 1, + sym__function_signature_automatic_semicolon, + STATE(406), 1, + sym_statement_block, + STATE(5792), 1, + sym_comment, + [204776] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8629), 1, + anon_sym_LBRACE, + ACTIONS(8631), 1, + anon_sym_LBRACE_PIPE, + STATE(1302), 1, + sym_object_type, + STATE(5793), 1, + sym_comment, + STATE(7150), 1, + sym_extends_type_clause, + [204801] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5794), 1, + sym_comment, + STATE(7333), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204822] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5795), 1, + sym_comment, + STATE(7324), 1, + sym__initializer, + ACTIONS(9435), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204843] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5796), 1, + sym_comment, + STATE(7347), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204864] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9429), 1, + anon_sym_SEMI, + ACTIONS(9431), 1, + sym__automatic_semicolon, + ACTIONS(9433), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(9437), 1, + anon_sym_LBRACE, + STATE(1154), 1, + sym_statement_block, + STATE(5797), 1, + sym_comment, + [204889] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5798), 1, + sym_comment, + ACTIONS(9439), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204912] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5799), 1, + sym_comment, + STATE(6941), 1, + sym__initializer, + ACTIONS(9405), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204933] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9427), 1, + anon_sym_LBRACE, + ACTIONS(9441), 1, + anon_sym_SEMI, + ACTIONS(9443), 1, + sym__automatic_semicolon, + ACTIONS(9445), 1, + sym__function_signature_automatic_semicolon, + STATE(402), 1, + sym_statement_block, + STATE(5800), 1, + sym_comment, + [204958] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4941), 1, + sym_formal_parameters, + STATE(5801), 1, + sym_comment, + STATE(6635), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + [204983] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5802), 1, + sym_comment, + STATE(7348), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205004] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5803), 1, sym_comment, - ACTIONS(5813), 2, + ACTIONS(9447), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205027] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8753), 1, + anon_sym_EQ, + ACTIONS(9449), 1, + anon_sym_COMMA, + ACTIONS(9451), 1, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5811), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111120] = 22, - ACTIONS(3), 1, + STATE(5804), 1, + sym_comment, + STATE(7136), 1, + aux_sym_enum_body_repeat1, + STATE(7894), 1, + sym__initializer, + [205052] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9437), 1, + anon_sym_LBRACE, + ACTIONS(9441), 1, + anon_sym_SEMI, + ACTIONS(9443), 1, + sym__automatic_semicolon, + ACTIONS(9445), 1, + sym__function_signature_automatic_semicolon, + STATE(1157), 1, + sym_statement_block, + STATE(5805), 1, + sym_comment, + [205077] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5806), 1, + sym_comment, + ACTIONS(9453), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205100] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5807), 1, + sym_comment, + STATE(6943), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205121] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5808), 1, + sym_comment, + STATE(7040), 1, + sym__initializer, + ACTIONS(9405), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205142] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5809), 1, + sym_comment, + STATE(7329), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205163] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9411), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9413), 1, + sym__template_chars, + ACTIONS(9455), 1, + anon_sym_BQUOTE, + STATE(5810), 1, sym_comment, - ACTIONS(104), 1, + STATE(6175), 1, + aux_sym_template_literal_type_repeat1, + STATE(7137), 1, + sym_template_type, + [205188] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(2129), 1, - anon_sym_var, - ACTIONS(2155), 1, - anon_sym_namespace, - ACTIONS(2157), 1, - anon_sym_import, - ACTIONS(2159), 1, - anon_sym_let, - ACTIONS(2161), 1, - anon_sym_const, - ACTIONS(2165), 1, + ACTIONS(9457), 1, anon_sym_class, - ACTIONS(2167), 1, - anon_sym_async, - ACTIONS(2169), 1, - anon_sym_function, - ACTIONS(2171), 1, - anon_sym_declare, - ACTIONS(2173), 1, - anon_sym_module, - ACTIONS(2175), 1, + ACTIONS(9459), 1, anon_sym_abstract, - ACTIONS(2177), 1, - anon_sym_interface, - ACTIONS(2179), 1, - anon_sym_enum, - ACTIONS(2199), 1, - anon_sym_type, - ACTIONS(5815), 1, - anon_sym_default, - STATE(1136), 1, - sym_decorator, - STATE(2626), 1, - sym_declaration, - STATE(2700), 1, - sym_internal_module, - STATE(3691), 1, + STATE(5713), 1, aux_sym_export_statement_repeat1, - STATE(2613), 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, - [111199] = 22, - ACTIONS(3), 1, + STATE(5811), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(2129), 1, - anon_sym_var, - ACTIONS(2155), 1, - anon_sym_namespace, - ACTIONS(2157), 1, - anon_sym_import, - ACTIONS(2159), 1, - anon_sym_let, - ACTIONS(2161), 1, - anon_sym_const, - ACTIONS(2165), 1, - anon_sym_class, - ACTIONS(2167), 1, - anon_sym_async, - ACTIONS(2169), 1, - anon_sym_function, - ACTIONS(2171), 1, - anon_sym_declare, - ACTIONS(2175), 1, - anon_sym_abstract, - ACTIONS(2177), 1, - anon_sym_interface, - ACTIONS(2179), 1, - anon_sym_enum, - ACTIONS(2199), 1, - anon_sym_type, - ACTIONS(2201), 1, - anon_sym_module, - ACTIONS(2203), 1, - anon_sym_global, - STATE(1136), 1, + STATE(6520), 1, sym_decorator, - STATE(2691), 1, - sym_declaration, - STATE(2700), 1, - sym_internal_module, - STATE(3691), 1, - aux_sym_export_statement_repeat1, - STATE(2613), 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, - [111278] = 3, - ACTIONS(3), 1, + [205213] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5812), 1, sym_comment, - ACTIONS(5819), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5817), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111319] = 3, - ACTIONS(3), 1, + ACTIONS(9461), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205236] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5813), 1, sym_comment, - ACTIONS(5753), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5751), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111360] = 6, - ACTIONS(3), 1, + ACTIONS(9463), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205259] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8514), 1, + anon_sym_LBRACE, + ACTIONS(9350), 1, + anon_sym_SEMI, + ACTIONS(9352), 1, + sym__automatic_semicolon, + ACTIONS(9354), 1, + sym__function_signature_automatic_semicolon, + STATE(5814), 1, sym_comment, - ACTIONS(5823), 1, - anon_sym_import, - ACTIONS(5826), 1, - anon_sym_AT, - ACTIONS(5828), 1, - anon_sym_pragma, - STATE(2735), 3, - sym_ui_pragma, - sym_ui_import, - aux_sym_program_repeat1, - ACTIONS(5821), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [111407] = 3, - ACTIONS(3), 1, + STATE(6207), 1, + sym_statement_block, + [205284] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5815), 1, sym_comment, - ACTIONS(5833), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5831), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111448] = 3, - ACTIONS(3), 1, + STATE(7326), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205305] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5816), 1, + sym_comment, + STATE(7311), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205326] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5817), 1, sym_comment, - ACTIONS(5753), 2, + STATE(7310), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205347] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8753), 1, + anon_sym_EQ, + ACTIONS(9465), 1, + anon_sym_COMMA, + ACTIONS(9467), 1, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5751), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111489] = 22, - ACTIONS(3), 1, + STATE(5818), 1, + sym_comment, + STATE(7130), 1, + aux_sym_enum_body_repeat1, + STATE(7894), 1, + sym__initializer, + [205372] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5819), 1, + sym_comment, + STATE(7307), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205393] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9336), 1, + anon_sym_SEMI, + ACTIONS(9338), 1, + sym__automatic_semicolon, + ACTIONS(9340), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(9469), 1, + anon_sym_LBRACE, + STATE(472), 1, + sym_statement_block, + STATE(5820), 1, + sym_comment, + [205418] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5821), 1, + sym_comment, + STATE(7306), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205439] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5822), 1, + sym_comment, + ACTIONS(9471), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205462] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8514), 1, + anon_sym_LBRACE, + ACTIONS(9368), 1, + anon_sym_SEMI, + ACTIONS(9370), 1, + sym__automatic_semicolon, + ACTIONS(9372), 1, + sym__function_signature_automatic_semicolon, + STATE(5823), 1, + sym_comment, + STATE(6205), 1, + sym_statement_block, + [205487] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5824), 1, + sym_comment, + STATE(7260), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205508] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9473), 1, + anon_sym_LBRACE, + ACTIONS(9475), 1, + anon_sym_SEMI, + ACTIONS(9477), 1, + sym__automatic_semicolon, + ACTIONS(9479), 1, + sym__function_signature_automatic_semicolon, + STATE(348), 1, + sym_statement_block, + STATE(5825), 1, + sym_comment, + [205533] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5826), 1, + sym_comment, + STATE(6682), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205554] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8651), 1, + anon_sym_LBRACE, + ACTIONS(8653), 1, + anon_sym_LBRACE_PIPE, + STATE(1134), 1, + sym_object_type, + STATE(5827), 1, + sym_comment, + STATE(7051), 1, + sym_extends_type_clause, + [205579] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5828), 1, + sym_comment, + STATE(7285), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205600] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5829), 1, + sym_comment, + STATE(7283), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205621] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5830), 1, + sym_comment, + STATE(7279), 1, + sym__initializer, + ACTIONS(9435), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205642] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5831), 1, + sym_comment, + ACTIONS(9483), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [205659] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9475), 1, + anon_sym_SEMI, + ACTIONS(9477), 1, + sym__automatic_semicolon, + ACTIONS(9479), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(9485), 1, + anon_sym_LBRACE, + STATE(1030), 1, + sym_statement_block, + STATE(5832), 1, + sym_comment, + [205684] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5833), 1, + sym_comment, + STATE(6684), 1, + sym__initializer, + ACTIONS(9487), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205705] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5834), 1, + sym_comment, + ACTIONS(9489), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205728] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9473), 1, + anon_sym_LBRACE, + ACTIONS(9491), 1, + anon_sym_SEMI, + ACTIONS(9493), 1, + sym__automatic_semicolon, + ACTIONS(9495), 1, + sym__function_signature_automatic_semicolon, + STATE(376), 1, + sym_statement_block, + STATE(5835), 1, sym_comment, - ACTIONS(104), 1, + [205753] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(2055), 1, - anon_sym_namespace, - ACTIONS(2059), 1, - anon_sym_import, - ACTIONS(2061), 1, - anon_sym_var, - ACTIONS(2063), 1, - anon_sym_let, - ACTIONS(2065), 1, - anon_sym_const, - ACTIONS(2073), 1, - anon_sym_class, - ACTIONS(2075), 1, - anon_sym_async, - ACTIONS(2077), 1, - anon_sym_function, - ACTIONS(2079), 1, - anon_sym_declare, - ACTIONS(2081), 1, - anon_sym_module, - ACTIONS(2083), 1, + ACTIONS(9155), 1, anon_sym_abstract, - ACTIONS(2085), 1, - anon_sym_interface, - ACTIONS(2087), 1, - anon_sym_enum, - ACTIONS(2099), 1, - anon_sym_type, - ACTIONS(5835), 1, - anon_sym_default, - STATE(802), 1, - sym_internal_module, - STATE(804), 1, - sym_declaration, - STATE(1136), 1, - sym_decorator, - STATE(3571), 1, + ACTIONS(9497), 1, + anon_sym_class, + STATE(5713), 1, aux_sym_export_statement_repeat1, - STATE(785), 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, - [111568] = 3, - ACTIONS(3), 1, + STATE(5836), 1, sym_comment, - ACTIONS(5753), 2, + STATE(6520), 1, + sym_decorator, + [205778] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8753), 1, + anon_sym_EQ, + ACTIONS(9499), 1, + anon_sym_COMMA, + ACTIONS(9501), 1, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5751), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111609] = 3, - ACTIONS(3), 1, + STATE(5837), 1, sym_comment, - ACTIONS(5753), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5751), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111650] = 3, - ACTIONS(3), 1, + STATE(7035), 1, + aux_sym_enum_body_repeat1, + STATE(7894), 1, + sym__initializer, + [205803] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8556), 1, + anon_sym_LBRACE, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8562), 1, + anon_sym_LBRACE_PIPE, + STATE(1567), 1, + sym_object_type, + STATE(5838), 1, sym_comment, - ACTIONS(5839), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5837), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111691] = 3, - ACTIONS(3), 1, + STATE(7099), 1, + sym_extends_type_clause, + [205828] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5839), 1, sym_comment, - ACTIONS(5753), 2, - anon_sym_RBRACE, + STATE(7261), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205849] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(5751), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111732] = 3, - ACTIONS(3), 1, + ACTIONS(9130), 1, + anon_sym_class, + ACTIONS(9132), 1, + anon_sym_abstract, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(5840), 1, sym_comment, - ACTIONS(5843), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5841), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111773] = 3, - ACTIONS(3), 1, + STATE(6520), 1, + sym_decorator, + [205874] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9360), 1, + anon_sym_SEMI, + ACTIONS(9362), 1, + sym__automatic_semicolon, + ACTIONS(9364), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(9469), 1, + anon_sym_LBRACE, + STATE(467), 1, + sym_statement_block, + STATE(5841), 1, + sym_comment, + [205899] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9485), 1, + anon_sym_LBRACE, + ACTIONS(9491), 1, + anon_sym_SEMI, + ACTIONS(9493), 1, + sym__automatic_semicolon, + ACTIONS(9495), 1, + sym__function_signature_automatic_semicolon, + STATE(1034), 1, + sym_statement_block, + STATE(5842), 1, + sym_comment, + [205924] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5843), 1, + sym_comment, + STATE(6686), 1, + sym__initializer, + ACTIONS(9487), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205945] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5844), 1, + sym_comment, + ACTIONS(9503), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205968] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5845), 1, + sym_comment, + ACTIONS(9505), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205991] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5846), 1, + sym_comment, + STATE(7552), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [206016] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5847), 1, + sym_comment, + STATE(7258), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206037] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9411), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9413), 1, + sym__template_chars, + ACTIONS(9507), 1, + anon_sym_BQUOTE, + STATE(5848), 1, + sym_comment, + STATE(6175), 1, + aux_sym_template_literal_type_repeat1, + STATE(7137), 1, + sym_template_type, + [206062] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5849), 1, + sym_comment, + STATE(6887), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206083] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5850), 1, + sym_comment, + STATE(7246), 1, + sym__initializer, + ACTIONS(9419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206104] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5514), 1, + sym__call_signature, + STATE(5851), 1, + sym_comment, + STATE(8101), 1, + sym_type_parameters, + [206129] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5852), 1, + sym_comment, + STATE(7244), 1, + sym__initializer, + ACTIONS(9509), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206150] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5853), 1, sym_comment, - ACTIONS(5847), 2, + ACTIONS(9511), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5845), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111814] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [206167] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5854), 1, sym_comment, - ACTIONS(5851), 2, + ACTIONS(9513), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5849), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111855] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [206184] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5855), 1, sym_comment, - ACTIONS(5855), 2, + ACTIONS(9515), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5853), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111896] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [206201] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5856), 1, sym_comment, - ACTIONS(5859), 2, + ACTIONS(8797), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [206218] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(5857), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111937] = 3, - ACTIONS(3), 1, + ACTIONS(8821), 1, + anon_sym_abstract, + ACTIONS(9517), 1, + anon_sym_class, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(5857), 1, sym_comment, - ACTIONS(5863), 2, + STATE(6520), 1, + sym_decorator, + [206243] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5858), 1, + sym_comment, + ACTIONS(8799), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5861), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [111978] = 22, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [206260] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4941), 1, + sym_formal_parameters, + STATE(5776), 1, + sym__call_signature, + STATE(5859), 1, + sym_comment, + STATE(7440), 1, + sym_type_parameters, + [206285] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5860), 1, + sym_comment, + STATE(6944), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206306] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5861), 1, sym_comment, - ACTIONS(104), 1, + ACTIONS(8797), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [206323] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(2222), 1, - anon_sym_type, - ACTIONS(2224), 1, - anon_sym_namespace, - ACTIONS(2226), 1, - anon_sym_import, - ACTIONS(2228), 1, - anon_sym_var, - ACTIONS(2230), 1, - anon_sym_let, - ACTIONS(2232), 1, - anon_sym_const, - ACTIONS(2234), 1, + ACTIONS(8807), 1, anon_sym_class, - ACTIONS(2236), 1, - anon_sym_async, - ACTIONS(2238), 1, - anon_sym_function, - ACTIONS(2240), 1, - anon_sym_declare, - ACTIONS(2242), 1, - anon_sym_module, - ACTIONS(2244), 1, + ACTIONS(8809), 1, anon_sym_abstract, - ACTIONS(2246), 1, - anon_sym_global, - ACTIONS(2248), 1, - anon_sym_interface, - ACTIONS(2250), 1, - anon_sym_enum, - STATE(1136), 1, - sym_decorator, - STATE(3633), 1, + STATE(5713), 1, aux_sym_export_statement_repeat1, - STATE(3757), 1, - sym_internal_module, - STATE(3768), 1, - sym_declaration, - STATE(3636), 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, - [112057] = 22, - ACTIONS(3), 1, + STATE(5862), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(2222), 1, - anon_sym_type, - ACTIONS(2224), 1, - anon_sym_namespace, - ACTIONS(2226), 1, - anon_sym_import, - ACTIONS(2228), 1, - anon_sym_var, - ACTIONS(2230), 1, - anon_sym_let, - ACTIONS(2232), 1, - anon_sym_const, - ACTIONS(2234), 1, - anon_sym_class, - ACTIONS(2236), 1, - anon_sym_async, - ACTIONS(2238), 1, - anon_sym_function, - ACTIONS(2240), 1, - anon_sym_declare, - ACTIONS(2244), 1, - anon_sym_abstract, - ACTIONS(2248), 1, - anon_sym_interface, - ACTIONS(2250), 1, - anon_sym_enum, - ACTIONS(3767), 1, - anon_sym_module, - ACTIONS(5865), 1, - anon_sym_default, - STATE(1136), 1, + STATE(6520), 1, sym_decorator, - STATE(3633), 1, - aux_sym_export_statement_repeat1, - STATE(3757), 1, - sym_internal_module, - STATE(3813), 1, - sym_declaration, - STATE(3636), 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, - [112136] = 3, - ACTIONS(3), 1, + [206348] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5863), 1, sym_comment, - ACTIONS(5869), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5867), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112177] = 3, - ACTIONS(3), 1, + STATE(6947), 1, + sym__initializer, + ACTIONS(9487), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206369] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5864), 1, + sym_comment, + STATE(7240), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206390] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9006), 1, + aux_sym_ui_version_specifier_token1, + ACTIONS(9073), 1, + anon_sym_as, + STATE(5865), 1, + sym_comment, + STATE(7097), 1, + sym_ui_version_specifier, + ACTIONS(9075), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206413] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5866), 1, + sym_comment, + STATE(7239), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206434] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9411), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9413), 1, + sym__template_chars, + ACTIONS(9521), 1, + anon_sym_BQUOTE, + STATE(5848), 1, + aux_sym_template_literal_type_repeat1, + STATE(5867), 1, + sym_comment, + STATE(7137), 1, + sym_template_type, + [206459] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5868), 1, + sym_comment, + STATE(7238), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206480] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5869), 1, + sym_comment, + STATE(8012), 1, + sym_type_parameters, + STATE(8034), 1, + sym__call_signature, + [206505] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5870), 1, + sym_comment, + STATE(6983), 1, + sym__initializer, + ACTIONS(9487), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206526] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5871), 1, + sym_comment, + STATE(8012), 1, + sym_type_parameters, + STATE(8033), 1, + sym__call_signature, + [206551] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5872), 1, + sym_comment, + STATE(7119), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206572] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5873), 1, + sym_comment, + STATE(7237), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206593] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5874), 1, + sym_comment, + STATE(7235), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206614] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5875), 1, + sym_comment, + STATE(7028), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206635] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9275), 1, + anon_sym_COLON, + ACTIONS(9523), 1, + anon_sym_EQ_GT, + STATE(5876), 1, + sym_comment, + STATE(7587), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [206656] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5877), 1, + sym_comment, + STATE(7222), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206677] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5878), 1, + sym_comment, + STATE(7221), 1, + sym__initializer, + ACTIONS(9526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206698] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5879), 1, + sym_comment, + STATE(7209), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206719] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5880), 1, + sym_comment, + STATE(7171), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206740] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9411), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9413), 1, + sym__template_chars, + ACTIONS(9528), 1, + anon_sym_BQUOTE, + STATE(5881), 1, + sym_comment, + STATE(6175), 1, + aux_sym_template_literal_type_repeat1, + STATE(7137), 1, + sym_template_type, + [206765] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5882), 1, + sym_comment, + STATE(7205), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206786] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5883), 1, + sym_comment, + ACTIONS(6656), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [206803] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5884), 1, + sym_comment, + STATE(7204), 1, + sym__initializer, + ACTIONS(9526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206824] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5885), 1, + sym_comment, + STATE(7223), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206845] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5886), 1, + sym_comment, + STATE(7199), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206866] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5887), 1, + sym_comment, + STATE(7197), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206887] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5888), 1, + sym_comment, + STATE(7332), 1, + sym__initializer, + ACTIONS(9487), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206908] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5889), 1, + sym_comment, + STATE(7195), 1, + sym__initializer, + ACTIONS(9526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206929] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5890), 1, + sym_comment, + ACTIONS(7129), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [206946] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4941), 1, + sym_formal_parameters, + STATE(5891), 1, + sym_comment, + STATE(7168), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + [206971] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5892), 1, + sym_comment, + STATE(7243), 1, + sym__initializer, + ACTIONS(9530), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206992] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5893), 1, + sym_comment, + STATE(7245), 1, + sym__initializer, + ACTIONS(9532), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207013] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5894), 1, + sym_comment, + STATE(7180), 1, + sym__initializer, + ACTIONS(9526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207034] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5895), 1, + sym_comment, + ACTIONS(9534), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207057] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5896), 1, sym_comment, - ACTIONS(5873), 2, + STATE(7325), 1, + sym__initializer, + ACTIONS(9487), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207078] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5897), 1, + sym_comment, + ACTIONS(2412), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5871), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112218] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [207095] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5898), 1, + sym_comment, + STATE(7166), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207116] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5899), 1, + sym_comment, + STATE(7289), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207137] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5900), 1, + sym_comment, + STATE(7165), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207158] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5901), 1, + sym_comment, + STATE(7164), 1, + sym__initializer, + ACTIONS(9526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207179] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5902), 1, sym_comment, - ACTIONS(5877), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5875), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112259] = 3, - ACTIONS(3), 1, + STATE(7145), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207200] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5903), 1, sym_comment, - ACTIONS(5881), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5879), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112300] = 3, - ACTIONS(3), 1, + STATE(7144), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207221] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5904), 1, sym_comment, - ACTIONS(5885), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5883), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112341] = 3, - ACTIONS(3), 1, + STATE(7254), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207242] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6104), 1, + anon_sym_in, + STATE(5905), 1, sym_comment, - ACTIONS(5889), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5887), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112382] = 22, - ACTIONS(3), 1, + ACTIONS(7116), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [207261] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5906), 1, + sym_comment, + STATE(7143), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207282] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5637), 1, + sym__call_signature, + STATE(5907), 1, + sym_comment, + STATE(8101), 1, + sym_type_parameters, + [207307] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5908), 1, + sym_comment, + ACTIONS(9536), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207330] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5909), 1, sym_comment, - ACTIONS(104), 1, + STATE(7142), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207351] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(2059), 1, - anon_sym_import, - ACTIONS(2063), 1, - anon_sym_let, - ACTIONS(2065), 1, - anon_sym_const, - ACTIONS(2073), 1, - anon_sym_class, - ACTIONS(2083), 1, + ACTIONS(8920), 1, anon_sym_abstract, - ACTIONS(2085), 1, - anon_sym_interface, - ACTIONS(2087), 1, - anon_sym_enum, - ACTIONS(2099), 1, - anon_sym_type, - ACTIONS(2127), 1, - anon_sym_namespace, - ACTIONS(2129), 1, - anon_sym_var, - ACTIONS(2133), 1, - anon_sym_async, - ACTIONS(2135), 1, - anon_sym_function, - ACTIONS(2137), 1, - anon_sym_declare, - ACTIONS(2181), 1, - anon_sym_module, - ACTIONS(2183), 1, - anon_sym_global, - STATE(786), 1, - sym_declaration, - STATE(802), 1, - sym_internal_module, - STATE(1136), 1, - sym_decorator, - STATE(3571), 1, + ACTIONS(9538), 1, + anon_sym_class, + STATE(5713), 1, aux_sym_export_statement_repeat1, - STATE(785), 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, - [112461] = 3, - ACTIONS(3), 1, + STATE(5910), 1, sym_comment, - ACTIONS(5893), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5891), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112502] = 3, - ACTIONS(3), 1, + STATE(6520), 1, + sym_decorator, + [207376] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9540), 1, + anon_sym_LBRACE, + ACTIONS(9542), 1, + anon_sym_SEMI, + ACTIONS(9544), 1, + sym__automatic_semicolon, + ACTIONS(9546), 1, + sym__function_signature_automatic_semicolon, + STATE(3986), 1, + sym_statement_block, + STATE(5911), 1, sym_comment, - ACTIONS(5897), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5895), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112543] = 3, - ACTIONS(3), 1, + [207401] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5912), 1, sym_comment, - ACTIONS(5901), 2, + ACTIONS(2416), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5899), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112584] = 22, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [207418] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5913), 1, + sym_comment, + STATE(7140), 1, + sym__initializer, + ACTIONS(9526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207439] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(9548), 1, + sym_identifier, + STATE(5914), 1, + sym_comment, + STATE(6503), 1, + sym_string, + STATE(8219), 1, + sym__module_export_name, + [207464] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5915), 1, + sym_comment, + ACTIONS(9095), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [207481] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5916), 1, + sym_comment, + STATE(7127), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207502] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5917), 1, + sym_comment, + STATE(7227), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207523] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5918), 1, sym_comment, - ACTIONS(104), 1, + STATE(7117), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207544] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(2059), 1, - anon_sym_import, - ACTIONS(2063), 1, - anon_sym_let, - ACTIONS(2065), 1, - anon_sym_const, - ACTIONS(2073), 1, + ACTIONS(8942), 1, anon_sym_class, - ACTIONS(2083), 1, + ACTIONS(8944), 1, anon_sym_abstract, - ACTIONS(2085), 1, - anon_sym_interface, - ACTIONS(2087), 1, - anon_sym_enum, - ACTIONS(2099), 1, - anon_sym_type, - ACTIONS(2127), 1, - anon_sym_namespace, - ACTIONS(2129), 1, - anon_sym_var, - ACTIONS(2133), 1, - anon_sym_async, - ACTIONS(2135), 1, - anon_sym_function, - ACTIONS(2137), 1, - anon_sym_declare, - ACTIONS(2139), 1, - anon_sym_module, - ACTIONS(5903), 1, - anon_sym_default, - STATE(802), 1, - sym_internal_module, - STATE(804), 1, - sym_declaration, - STATE(1136), 1, - sym_decorator, - STATE(3571), 1, + STATE(5713), 1, aux_sym_export_statement_repeat1, - STATE(785), 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, - [112663] = 3, - ACTIONS(3), 1, + STATE(5919), 1, sym_comment, - ACTIONS(5907), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5905), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112704] = 3, - ACTIONS(3), 1, + STATE(6520), 1, + sym_decorator, + [207569] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5920), 1, sym_comment, - ACTIONS(5911), 2, + ACTIONS(9550), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5909), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112745] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [207586] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5921), 1, sym_comment, - ACTIONS(5915), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5913), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112786] = 3, - ACTIONS(3), 1, + STATE(7517), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [207611] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5922), 1, sym_comment, - ACTIONS(5919), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5917), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112827] = 3, + STATE(7095), 1, + sym__initializer, + ACTIONS(9487), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207632] = 8, ACTIONS(3), 1, - sym_comment, - ACTIONS(5923), 2, - anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5921), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(9548), 1, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112868] = 3, - ACTIONS(3), 1, + STATE(5923), 1, sym_comment, - ACTIONS(5927), 2, + STATE(6503), 1, + sym_string, + STATE(7305), 1, + sym__module_export_name, + [207657] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8753), 1, + anon_sym_EQ, + ACTIONS(9552), 1, + anon_sym_COMMA, + ACTIONS(9554), 1, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5925), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, + STATE(5924), 1, + sym_comment, + STATE(6840), 1, + aux_sym_enum_body_repeat1, + STATE(7894), 1, + sym__initializer, + [207682] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5925), 1, + sym_comment, + STATE(7218), 1, + sym__initializer, + ACTIONS(9487), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207703] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9542), 1, + anon_sym_SEMI, + ACTIONS(9544), 1, + sym__automatic_semicolon, + ACTIONS(9546), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(9556), 1, + anon_sym_LBRACE, + STATE(1855), 1, + sym_statement_block, + STATE(5926), 1, + sym_comment, + [207728] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + ACTIONS(9558), 1, + anon_sym_as, + ACTIONS(9560), 1, + anon_sym_RBRACK, + STATE(5927), 1, + sym_comment, + [207753] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(5928), 1, + sym_comment, + ACTIONS(9562), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207776] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9540), 1, + anon_sym_LBRACE, + ACTIONS(9564), 1, + anon_sym_SEMI, + ACTIONS(9566), 1, + sym__automatic_semicolon, + ACTIONS(9568), 1, + sym__function_signature_automatic_semicolon, + STATE(4011), 1, + sym_statement_block, + STATE(5929), 1, + sym_comment, + [207801] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5930), 1, + sym_comment, + STATE(7115), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207822] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5931), 1, + sym_comment, + STATE(7114), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207843] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4724), 1, + anon_sym_LBRACE, + ACTIONS(8364), 1, + anon_sym_COLON, + ACTIONS(8366), 1, + anon_sym_DOT, + ACTIONS(8368), 1, anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112909] = 3, + STATE(4299), 1, + sym_ui_object_initializer, + STATE(5932), 1, + sym_comment, + [207868] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5933), 1, + sym_comment, + STATE(7113), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207889] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5934), 1, + sym_comment, + STATE(7112), 1, + sym__initializer, + ACTIONS(9526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207910] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5935), 1, + sym_comment, + ACTIONS(8868), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [207927] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5936), 1, + sym_comment, + STATE(7181), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207948] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5937), 1, + sym_comment, + ACTIONS(8874), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [207965] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5938), 1, + sym_comment, + ACTIONS(8884), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [207982] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5939), 1, + sym_comment, + STATE(7662), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [208007] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5940), 1, + sym_comment, + STATE(7105), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208028] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9570), 1, + sym_identifier, + ACTIONS(9572), 1, + anon_sym_RPAREN, + STATE(5941), 1, + sym_comment, + STATE(6629), 1, + sym_ui_signal_parameter, + STATE(8200), 1, + sym_nested_identifier, + STATE(8365), 1, + sym_nested_type_identifier, + [208053] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5942), 1, + sym_comment, + STATE(7104), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208074] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8615), 1, + anon_sym_LBRACE, + ACTIONS(8617), 1, + anon_sym_LBRACE_PIPE, + STATE(4184), 1, + sym_object_type, + STATE(5943), 1, + sym_comment, + STATE(6809), 1, + sym_extends_type_clause, + [208099] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5944), 1, + sym_comment, + STATE(7106), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208120] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5945), 1, + sym_comment, + STATE(6289), 1, + sym__call_signature, + STATE(8101), 1, + sym_type_parameters, + [208145] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9556), 1, + anon_sym_LBRACE, + ACTIONS(9564), 1, + anon_sym_SEMI, + ACTIONS(9566), 1, + sym__automatic_semicolon, + ACTIONS(9568), 1, + sym__function_signature_automatic_semicolon, + STATE(1860), 1, + sym_statement_block, + STATE(5946), 1, + sym_comment, + [208170] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5947), 1, + sym_comment, + STATE(7020), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208191] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5948), 1, + sym_comment, + STATE(7926), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [208216] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5949), 1, + sym_comment, + STATE(6847), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208237] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, + anon_sym_LBRACE, + ACTIONS(9574), 1, + anon_sym_SEMI, + ACTIONS(9576), 1, + sym__automatic_semicolon, + ACTIONS(9578), 1, + sym__function_signature_automatic_semicolon, + STATE(3639), 1, + sym_statement_block, + STATE(5950), 1, + sym_comment, + [208262] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9580), 1, + anon_sym_EQ, + STATE(5951), 1, sym_comment, - ACTIONS(5931), 2, + ACTIONS(4670), 4, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_AT, - ACTIONS(5929), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112950] = 3, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + [208281] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5952), 1, sym_comment, - ACTIONS(5935), 1, - anon_sym_AT, - ACTIONS(5933), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [112990] = 3, - ACTIONS(3), 1, + STATE(7742), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [208306] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(124), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8721), 1, + anon_sym_LBRACE_PIPE, + STATE(5953), 1, sym_comment, - ACTIONS(5939), 1, - anon_sym_AT, - ACTIONS(5937), 31, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_var, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [113030] = 8, - ACTIONS(3), 1, + STATE(6627), 1, + sym_extends_type_clause, + STATE(7668), 1, + sym_object_type, + [208331] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5954), 1, + sym_comment, + STATE(7631), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [208356] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5955), 1, + sym_comment, + STATE(7103), 1, + sym__initializer, + ACTIONS(9526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208377] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5956), 1, sym_comment, + STATE(8012), 1, + sym_type_parameters, + STATE(8163), 1, + sym__call_signature, + [208402] = 8, ACTIONS(5), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_AT, - STATE(2652), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(2770), 1, - sym_ui_annotation, - STATE(4277), 1, - sym_ui_nested_identifier, - STATE(4953), 1, - sym_ui_object_definition, - ACTIONS(9), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [113080] = 10, - ACTIONS(3), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5842), 1, + sym__call_signature, + STATE(5957), 1, sym_comment, - ACTIONS(2213), 1, - anon_sym_LBRACE, - ACTIONS(5941), 1, - sym_identifier, - ACTIONS(5945), 1, - anon_sym_default, - ACTIONS(5947), 1, - anon_sym_COLON, - ACTIONS(5949), 1, - anon_sym_DOT, - ACTIONS(5954), 1, - anon_sym_on, - STATE(2492), 1, - sym_ui_object_initializer, - ACTIONS(5951), 3, - anon_sym_readonly, - anon_sym_property, - anon_sym_required, - ACTIONS(5943), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_signal, - anon_sym_component, - [113134] = 3, - ACTIONS(3), 1, + STATE(8101), 1, + sym_type_parameters, + [208427] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5958), 1, sym_comment, - ACTIONS(5958), 1, - anon_sym_AT, - ACTIONS(5956), 29, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_import, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_pragma, - [113172] = 5, - ACTIONS(3), 1, + STATE(7614), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [208452] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5835), 1, + sym__call_signature, + STATE(5959), 1, sym_comment, - ACTIONS(5960), 1, - sym_identifier, - STATE(4210), 1, - sym_ui_nested_identifier, - ACTIONS(5964), 2, + STATE(8101), 1, + sym_type_parameters, + [208477] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5960), 1, + sym_comment, + STATE(7093), 1, + sym__initializer, + ACTIONS(9519), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(5962), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [113214] = 3, - ACTIONS(3), 1, + [208498] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5832), 1, + sym__call_signature, + STATE(5961), 1, sym_comment, - ACTIONS(5968), 1, - anon_sym_AT, - ACTIONS(5966), 29, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_import, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_pragma, - [113252] = 3, - ACTIONS(3), 1, + STATE(8101), 1, + sym_type_parameters, + [208523] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5962), 1, sym_comment, - ACTIONS(5972), 1, - anon_sym_AT, - ACTIONS(5970), 29, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_import, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_pragma, - [113290] = 3, - ACTIONS(3), 1, + STATE(7092), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208544] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9411), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9413), 1, + sym__template_chars, + ACTIONS(9582), 1, + anon_sym_BQUOTE, + STATE(5963), 1, sym_comment, - ACTIONS(5976), 1, - anon_sym_AT, - ACTIONS(5974), 29, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_import, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_pragma, - [113328] = 3, - ACTIONS(3), 1, + STATE(6175), 1, + aux_sym_template_literal_type_repeat1, + STATE(7137), 1, + sym_template_type, + [208569] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5964), 1, sym_comment, - ACTIONS(5980), 1, - anon_sym_AT, - ACTIONS(5978), 29, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_import, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_pragma, - [113366] = 3, - ACTIONS(3), 1, + STATE(6931), 1, + sym__initializer, + ACTIONS(9487), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208590] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5825), 1, + sym__call_signature, + STATE(5965), 1, sym_comment, - ACTIONS(5984), 1, - anon_sym_AT, - ACTIONS(5982), 29, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_import, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_pragma, - [113404] = 5, - ACTIONS(3), 1, + STATE(8101), 1, + sym_type_parameters, + [208615] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5966), 1, sym_comment, + STATE(7925), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [208640] = 6, ACTIONS(5), 1, - sym_identifier, - STATE(4277), 1, - sym_ui_nested_identifier, - STATE(4501), 1, - sym_ui_object_definition, - ACTIONS(9), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [113445] = 5, - ACTIONS(3), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5967), 1, sym_comment, + STATE(7089), 1, + sym__initializer, + ACTIONS(9526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208661] = 8, ACTIONS(5), 1, - sym_identifier, - STATE(2721), 1, - sym_ui_object_definition, - STATE(4277), 1, - sym_ui_nested_identifier, - ACTIONS(9), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [113486] = 4, - ACTIONS(3), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5968), 1, sym_comment, - ACTIONS(5960), 1, - sym_identifier, - STATE(4210), 1, - sym_ui_nested_identifier, - ACTIONS(5962), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [113524] = 4, - ACTIONS(3), 1, + STATE(7680), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [208686] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5950), 1, + sym__call_signature, + STATE(5969), 1, sym_comment, - ACTIONS(5986), 1, - sym_identifier, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(5988), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [113562] = 4, - ACTIONS(3), 1, + STATE(8101), 1, + sym_type_parameters, + [208711] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5970), 1, sym_comment, - ACTIONS(5992), 1, - sym_identifier, - STATE(4976), 1, - sym_mapped_type_clause, - ACTIONS(5994), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [113600] = 4, - ACTIONS(3), 1, + STATE(7071), 1, + sym__initializer, + ACTIONS(9526), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208732] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5971), 1, + sym_comment, + STATE(7393), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [208757] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5972), 1, sym_comment, - ACTIONS(5990), 1, + STATE(7581), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [208782] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4724), 1, + anon_sym_LBRACE, + ACTIONS(9584), 1, + anon_sym_COLON, + ACTIONS(9586), 1, anon_sym_DOT, - ACTIONS(5996), 1, - sym_identifier, - ACTIONS(5998), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, + ACTIONS(9588), 1, anon_sym_on, - anon_sym_required, - anon_sym_component, - [113638] = 4, - ACTIONS(3), 1, + STATE(4298), 1, + sym_ui_object_initializer, + STATE(5973), 1, sym_comment, - ACTIONS(6000), 1, - sym_identifier, - STATE(4100), 1, - sym_ui_nested_identifier, - ACTIONS(6002), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [113676] = 3, - ACTIONS(3), 1, + [208807] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5974), 1, sym_comment, - ACTIONS(6004), 1, - sym_identifier, - ACTIONS(6006), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [113711] = 3, - ACTIONS(3), 1, + STATE(7800), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [208832] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5975), 1, sym_comment, - ACTIONS(6008), 1, - sym_identifier, - ACTIONS(6010), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [113746] = 2, - ACTIONS(3), 1, + STATE(7802), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [208857] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5976), 1, sym_comment, - ACTIONS(6012), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [113779] = 2, - ACTIONS(3), 1, + STATE(7052), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208878] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5977), 1, sym_comment, - ACTIONS(6014), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [113812] = 3, - ACTIONS(3), 1, + STATE(7559), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [208903] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5978), 1, + sym_comment, + STATE(6714), 1, + sym__initializer, + ACTIONS(9590), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208924] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5979), 1, sym_comment, - ACTIONS(1671), 1, + STATE(6902), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208945] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(1673), 19, - anon_sym_as, - anon_sym_LBRACE, + STATE(5980), 1, + sym_comment, + STATE(7048), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_else, + anon_sym_SEMI, + [208966] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(8918), 1, + anon_sym_class, + ACTIONS(8920), 1, + anon_sym_abstract, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(5981), 1, + sym_comment, + STATE(6520), 1, + sym_decorator, + [208991] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(5028), 1, + sym_formal_parameters, + STATE(5982), 1, + sym_comment, + STATE(6014), 1, + sym__call_signature, + STATE(8101), 1, + sym_type_parameters, + [209016] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [113840] = 3, - ACTIONS(3), 1, + STATE(5707), 1, + sym_formal_parameters, + STATE(5983), 1, + sym_comment, + STATE(7897), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [209041] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9594), 1, + anon_sym_in, + ACTIONS(9596), 1, + anon_sym_of, + STATE(5984), 1, + sym_comment, + ACTIONS(9592), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [209062] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(5985), 1, + sym_comment, + STATE(6889), 1, + sym__initializer, + ACTIONS(9481), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [209083] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9598), 1, + anon_sym_in, + ACTIONS(9600), 1, + anon_sym_of, + STATE(5986), 1, sym_comment, - ACTIONS(1647), 1, + ACTIONS(9592), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [209104] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(1649), 19, - anon_sym_as, - anon_sym_LBRACE, + STATE(5987), 1, + sym_comment, + STATE(7047), 1, + sym__initializer, + ACTIONS(9526), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_else, + anon_sym_SEMI, + [209125] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_while, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [113868] = 7, - ACTIONS(3), 1, + STATE(5707), 1, + sym_formal_parameters, + STATE(5988), 1, sym_comment, - ACTIONS(3375), 1, + STATE(7525), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [209150] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, anon_sym_LPAREN, - ACTIONS(3377), 1, - anon_sym_DOT, - ACTIONS(3379), 1, - anon_sym_QMARK_DOT, - STATE(2836), 1, - sym_arguments, - ACTIONS(3373), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3365), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5989), 1, + sym_comment, + STATE(6028), 1, + sym__call_signature, + STATE(8101), 1, + sym_type_parameters, + [209175] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9275), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(9602), 1, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [113903] = 7, - ACTIONS(3), 1, + STATE(5990), 1, sym_comment, - ACTIONS(3375), 1, + STATE(7587), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [209196] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9275), 1, + anon_sym_COLON, + ACTIONS(9605), 1, + anon_sym_EQ_GT, + STATE(5991), 1, + sym_comment, + STATE(7797), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [209217] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(6016), 1, - anon_sym_DOT, - ACTIONS(6018), 1, - anon_sym_QMARK_DOT, - STATE(2839), 1, - sym_arguments, - ACTIONS(4034), 2, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5992), 1, + sym_comment, + STATE(7907), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [209242] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5993), 1, + sym_comment, + STATE(7933), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [209267] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4036), 13, - anon_sym_as, - anon_sym_LBRACE, + STATE(5994), 1, + sym_comment, + STATE(7036), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [113938] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + [209288] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9411), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9413), 1, + sym__template_chars, + ACTIONS(9608), 1, + anon_sym_BQUOTE, + STATE(5963), 1, + aux_sym_template_literal_type_repeat1, + STATE(5995), 1, + sym_comment, + STATE(7137), 1, + sym_template_type, + [209313] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5805), 1, + sym__call_signature, + STATE(5996), 1, + sym_comment, + STATE(8101), 1, + sym_type_parameters, + [209338] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(5997), 1, + sym_comment, + STATE(7507), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [209363] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5998), 1, sym_comment, - ACTIONS(3375), 1, + STATE(6061), 1, + sym__call_signature, + STATE(8101), 1, + sym_type_parameters, + [209388] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, anon_sym_LPAREN, - ACTIONS(6020), 1, - anon_sym_DOT, - ACTIONS(6022), 1, - anon_sym_QMARK_DOT, - STATE(2834), 1, - sym_arguments, - ACTIONS(4040), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4042), 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, - [113973] = 3, - ACTIONS(3), 1, + STATE(5028), 1, + sym_formal_parameters, + STATE(5800), 1, + sym__call_signature, + STATE(5999), 1, sym_comment, - ACTIONS(4226), 2, + STATE(8101), 1, + sym_type_parameters, + [209413] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4228), 16, - anon_sym_as, - anon_sym_LBRACE, + STATE(6000), 1, + sym_comment, + STATE(7031), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SEMI, + [209434] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [113999] = 3, - ACTIONS(3), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6001), 1, sym_comment, - ACTIONS(4241), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4243), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(7970), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [209459] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, 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, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6002), 1, + sym_comment, + STATE(7975), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [209484] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8066), 1, anon_sym_extends, - [114025] = 3, - ACTIONS(3), 1, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(6003), 1, sym_comment, - ACTIONS(4104), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4106), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(9610), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [209507] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114051] = 3, - ACTIONS(3), 1, + STATE(5028), 1, + sym_formal_parameters, + STATE(6004), 1, sym_comment, - ACTIONS(4162), 2, + STATE(6231), 1, + sym__call_signature, + STATE(8101), 1, + sym_type_parameters, + [209532] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4164), 16, - anon_sym_as, - anon_sym_LBRACE, + STATE(6005), 1, + sym_comment, + STATE(6873), 1, + sym__initializer, + ACTIONS(9487), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SEMI, + [209553] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114077] = 3, - ACTIONS(3), 1, + STATE(5028), 1, + sym_formal_parameters, + STATE(5797), 1, + sym__call_signature, + STATE(6006), 1, sym_comment, - ACTIONS(4166), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4168), 16, - anon_sym_as, + STATE(8101), 1, + sym_type_parameters, + [209578] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9612), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(9614), 1, + anon_sym_SEMI, + ACTIONS(9616), 1, + sym__automatic_semicolon, + ACTIONS(9618), 1, + sym__function_signature_automatic_semicolon, + STATE(1490), 1, + sym_statement_block, + STATE(6007), 1, + sym_comment, + [209603] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114103] = 3, - ACTIONS(3), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6008), 1, sym_comment, - ACTIONS(4288), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4290), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(8012), 1, + sym_type_parameters, + STATE(8125), 1, + sym__call_signature, + [209628] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114129] = 3, - ACTIONS(3), 1, + STATE(5028), 1, + sym_formal_parameters, + STATE(5792), 1, + sym__call_signature, + STATE(6009), 1, sym_comment, - ACTIONS(4222), 2, + STATE(8101), 1, + sym_type_parameters, + [209653] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4224), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114155] = 3, - ACTIONS(3), 1, + STATE(6010), 1, sym_comment, - ACTIONS(4288), 2, + STATE(6866), 1, + sym__initializer, + ACTIONS(9487), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [209674] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4290), 16, - anon_sym_as, - anon_sym_LBRACE, + STATE(6011), 1, + sym_comment, + STATE(7029), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114181] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + [209695] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6012), 1, sym_comment, - ACTIONS(4100), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4102), 16, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(8741), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4222), 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209712] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4224), 16, - anon_sym_as, - anon_sym_LBRACE, + STATE(6013), 1, + sym_comment, + STATE(7027), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114233] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + [209733] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8514), 1, + anon_sym_LBRACE, + ACTIONS(9574), 1, + anon_sym_SEMI, + ACTIONS(9576), 1, + sym__automatic_semicolon, + ACTIONS(9578), 1, + sym__function_signature_automatic_semicolon, + STATE(6014), 1, sym_comment, - ACTIONS(3954), 1, + STATE(6839), 1, + sym_statement_block, + [209758] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(6024), 1, - anon_sym_LT, - ACTIONS(6026), 1, - anon_sym_is, - STATE(2885), 1, - sym_type_arguments, - ACTIONS(3353), 13, - anon_sym_LBRACE, + STATE(6015), 1, + sym_comment, + STATE(7025), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [114267] = 3, + anon_sym_SEMI, + [209779] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(9548), 1, + sym_identifier, + STATE(6016), 1, sym_comment, - ACTIONS(4104), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4106), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, + STATE(6503), 1, + sym_string, + STATE(7367), 1, + sym__module_export_name, + [209804] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8066), 1, anon_sym_extends, - [114293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, + ACTIONS(9358), 1, anon_sym_PIPE, - ACTIONS(1649), 17, + STATE(6017), 1, + sym_comment, + ACTIONS(9620), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, + [209827] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - aux_sym_ui_version_specifier_token1, - [114319] = 3, - ACTIONS(3), 1, + STATE(5707), 1, + sym_formal_parameters, + STATE(6018), 1, sym_comment, - ACTIONS(4100), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4102), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(7998), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [209852] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114345] = 3, - ACTIONS(3), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6019), 1, sym_comment, - ACTIONS(4112), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4114), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(7459), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [209877] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114371] = 3, - ACTIONS(3), 1, + STATE(4941), 1, + sym_formal_parameters, + STATE(6020), 1, sym_comment, - ACTIONS(4288), 2, + STATE(6147), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + [209902] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4290), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114397] = 3, - ACTIONS(3), 1, + STATE(6021), 1, sym_comment, - ACTIONS(4226), 2, + STATE(7024), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [209923] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4228), 16, - anon_sym_as, - anon_sym_LBRACE, + STATE(6022), 1, + sym_comment, + STATE(7012), 1, + sym__initializer, + ACTIONS(9526), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114423] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + [209944] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6023), 1, sym_comment, - ACTIONS(4249), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4251), 16, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(8743), 5, + sym__automatic_semicolon, 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_SEMI, + anon_sym_PIPE_RBRACE, + [209961] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + ACTIONS(9622), 1, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114449] = 3, - ACTIONS(3), 1, + STATE(6024), 1, sym_comment, - ACTIONS(4245), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4247), 16, - anon_sym_as, + STATE(7982), 1, + sym_statement_block, + ACTIONS(2324), 2, + anon_sym_else, + anon_sym_while, + [209984] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8560), 1, + anon_sym_extends, + ACTIONS(8707), 1, anon_sym_LBRACE, + ACTIONS(8709), 1, + anon_sym_LBRACE_PIPE, + STATE(1726), 1, + sym_object_type, + STATE(6025), 1, + sym_comment, + STATE(7038), 1, + sym_extends_type_clause, + [210009] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6026), 1, + sym_comment, + ACTIONS(8741), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114475] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210026] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6027), 1, sym_comment, - ACTIONS(4162), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4164), 16, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9624), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4104), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4106), 16, - anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210043] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, anon_sym_LBRACE, + ACTIONS(9626), 1, + anon_sym_SEMI, + ACTIONS(9628), 1, + sym__automatic_semicolon, + ACTIONS(9630), 1, + sym__function_signature_automatic_semicolon, + STATE(3634), 1, + sym_statement_block, + STATE(6028), 1, + sym_comment, + [210068] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6029), 1, + sym_comment, + ACTIONS(8743), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114527] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210085] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6030), 1, sym_comment, - ACTIONS(1671), 1, - anon_sym_PIPE, - ACTIONS(1673), 17, + ACTIONS(9632), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_AMP, - anon_sym_QMARK, - anon_sym_extends, anon_sym_PIPE_RBRACE, - aux_sym_ui_version_specifier_token1, - [114553] = 3, - ACTIONS(3), 1, + [210102] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6031), 1, sym_comment, - ACTIONS(4245), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4247), 16, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9634), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210119] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114579] = 3, - ACTIONS(3), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6032), 1, sym_comment, - ACTIONS(4108), 2, + STATE(8005), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [210144] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8753), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4110), 16, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9636), 1, anon_sym_COMMA, + ACTIONS(9638), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114605] = 3, - ACTIONS(3), 1, + STATE(6033), 1, sym_comment, - ACTIONS(4249), 2, + STATE(6597), 1, + aux_sym_enum_body_repeat1, + STATE(7894), 1, + sym__initializer, + [210169] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6034), 1, + sym_comment, + ACTIONS(9640), 5, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4251), 16, - anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [114631] = 3, - ACTIONS(3), 1, + anon_sym_implements, + [210186] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6035), 1, sym_comment, - ACTIONS(4249), 2, + STATE(7417), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [210211] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4251), 16, - anon_sym_as, - anon_sym_LBRACE, + STATE(6036), 1, + sym_comment, + STATE(7000), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SEMI, + [210232] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114657] = 3, - ACTIONS(3), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6037), 1, sym_comment, - ACTIONS(4158), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4160), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(8009), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [210257] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114683] = 3, - ACTIONS(3), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6038), 1, sym_comment, - ACTIONS(4108), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4110), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(7363), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [210282] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114709] = 3, - ACTIONS(3), 1, + STATE(4941), 1, + sym_formal_parameters, + STATE(5327), 1, + sym__call_signature, + STATE(6039), 1, + sym_comment, + STATE(7440), 1, + sym_type_parameters, + [210307] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6040), 1, sym_comment, - ACTIONS(4158), 2, + ACTIONS(6991), 5, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4160), 16, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4108), 2, - anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4110), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [210324] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114761] = 3, - ACTIONS(3), 1, + STATE(5028), 1, + sym_formal_parameters, + STATE(5732), 1, + sym__call_signature, + STATE(6041), 1, sym_comment, - ACTIONS(4158), 2, + STATE(8101), 1, + sym_type_parameters, + [210349] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4160), 16, - anon_sym_as, - anon_sym_LBRACE, + STATE(6042), 1, + sym_comment, + STATE(6999), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SEMI, + [210370] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114787] = 3, - ACTIONS(3), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6043), 1, sym_comment, - ACTIONS(4304), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4306), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(7353), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [210395] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114813] = 3, - ACTIONS(3), 1, + STATE(5028), 1, + sym_formal_parameters, + STATE(5737), 1, + sym__call_signature, + STATE(6044), 1, sym_comment, - ACTIONS(4166), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4168), 16, - anon_sym_as, - anon_sym_LBRACE, + STATE(8101), 1, + sym_type_parameters, + [210420] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6045), 1, + sym_comment, + ACTIONS(9642), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210437] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114839] = 3, - ACTIONS(3), 1, + STATE(5028), 1, + sym_formal_parameters, + STATE(5739), 1, + sym__call_signature, + STATE(6046), 1, + sym_comment, + STATE(8101), 1, + sym_type_parameters, + [210462] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9263), 1, + anon_sym_class, + ACTIONS(9265), 1, + anon_sym_abstract, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6047), 1, sym_comment, - ACTIONS(4260), 2, + STATE(6520), 1, + sym_decorator, + [210487] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4262), 16, - anon_sym_as, - anon_sym_LBRACE, + STATE(6048), 1, + sym_comment, + STATE(6964), 1, + sym__initializer, + ACTIONS(9487), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_SEMI, + [210508] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114865] = 3, - ACTIONS(3), 1, + STATE(5028), 1, + sym_formal_parameters, + STATE(5744), 1, + sym__call_signature, + STATE(6049), 1, sym_comment, - ACTIONS(4100), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4102), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(8101), 1, + sym_type_parameters, + [210533] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114891] = 3, - ACTIONS(3), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6050), 1, sym_comment, - ACTIONS(4264), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4266), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(8012), 1, + sym_type_parameters, + STATE(8024), 1, + sym__call_signature, + [210558] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114917] = 3, - ACTIONS(3), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6051), 1, sym_comment, - ACTIONS(4241), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4243), 16, - anon_sym_as, - anon_sym_LBRACE, + STATE(8012), 1, + sym_type_parameters, + STATE(8022), 1, + sym__call_signature, + [210583] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6052), 1, + sym_comment, + ACTIONS(6861), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210600] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114943] = 5, - ACTIONS(3), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6053), 1, sym_comment, - ACTIONS(6028), 1, - anon_sym_DOT, - ACTIONS(6030), 1, - anon_sym_QMARK_DOT, - ACTIONS(4396), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4398), 13, - anon_sym_as, - anon_sym_LBRACE, + STATE(7384), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [210625] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6054), 1, + sym_comment, + ACTIONS(9149), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210642] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9275), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(9644), 1, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114972] = 3, - ACTIONS(3), 1, + STATE(6055), 1, sym_comment, - ACTIONS(4369), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4371), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(7797), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [210663] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9275), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, + ACTIONS(9647), 1, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [114997] = 3, - ACTIONS(3), 1, + STATE(6056), 1, sym_comment, - ACTIONS(3291), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3293), 15, - anon_sym_as, + STATE(7797), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [210684] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(9650), 1, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [115022] = 3, - ACTIONS(3), 1, + STATE(6057), 1, sym_comment, - ACTIONS(4463), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4465), 15, - anon_sym_as, - anon_sym_LBRACE, + STATE(7982), 1, + sym_statement_block, + ACTIONS(2324), 2, + anon_sym_else, + anon_sym_while, + [210707] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6058), 1, + sym_comment, + ACTIONS(9652), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [115047] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210724] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6059), 1, sym_comment, - ACTIONS(3261), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3263), 15, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9654), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [115072] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210741] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6060), 1, sym_comment, - ACTIONS(3323), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(3325), 15, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9656), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [115097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4433), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4435), 15, - anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210758] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8514), 1, anon_sym_LBRACE, + ACTIONS(9626), 1, + anon_sym_SEMI, + ACTIONS(9628), 1, + sym__automatic_semicolon, + ACTIONS(9630), 1, + sym__function_signature_automatic_semicolon, + STATE(6061), 1, + sym_comment, + STATE(6774), 1, + sym_statement_block, + [210783] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6062), 1, + sym_comment, + ACTIONS(9658), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [115122] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3954), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210800] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(6024), 1, - anon_sym_LT, - STATE(2885), 1, - sym_type_arguments, - ACTIONS(3353), 13, - anon_sym_LBRACE, + STATE(6063), 1, + sym_comment, + STATE(6998), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_SEMI, + [210821] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + ACTIONS(8066), 1, anon_sym_extends, - [115153] = 5, - ACTIONS(3), 1, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(6064), 1, sym_comment, - ACTIONS(4012), 1, + ACTIONS(9660), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [210844] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(6024), 1, - anon_sym_LT, - STATE(2874), 1, - sym_type_arguments, - ACTIONS(4014), 13, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115181] = 3, - ACTIONS(3), 1, + STATE(6065), 1, sym_comment, - ACTIONS(1511), 1, + STATE(6995), 1, + sym__initializer, + ACTIONS(9519), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [210865] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(1509), 15, - anon_sym_as, - anon_sym_LBRACE, + STATE(6066), 1, + sym_comment, + STATE(6993), 1, + sym__initializer, + ACTIONS(9662), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - anon_sym_is, - [115205] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [210886] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6067), 1, sym_comment, - ACTIONS(6032), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [115226] = 3, - ACTIONS(3), 1, + STATE(7412), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [210911] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6068), 1, sym_comment, - ACTIONS(4084), 1, - anon_sym_EQ, - ACTIONS(4086), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9664), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115249] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210928] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5613), 1, + sym__call_signature, + STATE(6069), 1, sym_comment, - ACTIONS(6034), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [115270] = 7, - ACTIONS(3), 1, + STATE(8101), 1, + sym_type_parameters, + [210953] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6070), 1, sym_comment, - ACTIONS(3954), 1, - anon_sym_PIPE, - ACTIONS(6036), 1, - anon_sym_LT, - ACTIONS(6038), 1, - anon_sym_DOT, - ACTIONS(6040), 1, - anon_sym_is, - STATE(3085), 1, - sym_type_arguments, - ACTIONS(3353), 10, + ACTIONS(9666), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [115301] = 2, - ACTIONS(3), 1, + [210970] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6071), 1, sym_comment, - ACTIONS(6042), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [115322] = 3, - ACTIONS(3), 1, + STATE(6795), 1, + sym__initializer, + ACTIONS(9668), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [210991] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6072), 1, sym_comment, - ACTIONS(4080), 1, - anon_sym_EQ, - ACTIONS(4082), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9670), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115345] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211008] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6073), 1, sym_comment, - ACTIONS(4076), 1, + ACTIONS(6997), 5, anon_sym_EQ, - ACTIONS(4078), 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, - [115368] = 3, - ACTIONS(3), 1, + [211025] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6074), 1, sym_comment, - ACTIONS(4072), 1, - anon_sym_EQ, - ACTIONS(4074), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(8554), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115391] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211042] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2386), 1, + anon_sym_DOT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5799), 1, + anon_sym_LBRACE, + STATE(6075), 1, sym_comment, - ACTIONS(6044), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [115412] = 3, - ACTIONS(3), 1, + ACTIONS(5801), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [211063] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6076), 1, sym_comment, - ACTIONS(4344), 1, - anon_sym_EQ, - ACTIONS(4346), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9672), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115435] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211080] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6077), 1, sym_comment, - ACTIONS(4292), 1, - anon_sym_EQ, - ACTIONS(4294), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9672), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115458] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6046), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [115479] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211097] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6078), 1, sym_comment, - ACTIONS(4140), 1, - anon_sym_EQ, - ACTIONS(4138), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9674), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115502] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211114] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2398), 1, + anon_sym_DOT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5799), 1, + anon_sym_LBRACE, + STATE(6079), 1, sym_comment, - ACTIONS(4012), 1, + ACTIONS(5801), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [211135] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(4014), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(6080), 1, + sym_comment, + STATE(6595), 1, + sym__initializer, + ACTIONS(9676), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115525] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + [211156] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4941), 1, + sym_formal_parameters, + STATE(5436), 1, + sym__call_signature, + STATE(6081), 1, + sym_comment, + STATE(7440), 1, + sym_type_parameters, + [211181] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6082), 1, sym_comment, - ACTIONS(4406), 1, + ACTIONS(6997), 5, anon_sym_EQ, - ACTIONS(4328), 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, - [115548] = 4, - ACTIONS(3), 1, + [211198] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6083), 1, sym_comment, - ACTIONS(4334), 1, + ACTIONS(6997), 5, anon_sym_EQ, - ACTIONS(6048), 1, - anon_sym_LBRACK, - ACTIONS(4336), 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, - [115573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6050), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [115594] = 3, - ACTIONS(3), 1, + [211215] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6084), 1, sym_comment, - ACTIONS(4008), 1, - anon_sym_EQ, - ACTIONS(4010), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(7014), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115617] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211232] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6085), 1, sym_comment, - ACTIONS(4268), 1, - anon_sym_EQ, - ACTIONS(4270), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9672), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115640] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3367), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211249] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_PIPE, - ACTIONS(6052), 1, - anon_sym_DOT, - ACTIONS(6054), 1, - anon_sym_QMARK_DOT, - STATE(2965), 1, - sym_arguments, - ACTIONS(4036), 10, + STATE(4941), 1, + sym_formal_parameters, + STATE(6086), 1, + sym_comment, + STATE(6588), 1, + sym__call_signature, + STATE(7440), 1, + sym_type_parameters, + [211274] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6087), 1, + sym_comment, + ACTIONS(9672), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [115671] = 7, - ACTIONS(3), 1, + [211291] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6088), 1, sym_comment, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(4040), 1, - anon_sym_PIPE, - ACTIONS(6056), 1, - anon_sym_DOT, - ACTIONS(6058), 1, - anon_sym_QMARK_DOT, - STATE(2957), 1, - sym_arguments, - ACTIONS(4042), 10, + ACTIONS(9672), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [115702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4312), 1, + [211308] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(4314), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(6089), 1, + sym_comment, + STATE(6586), 1, + sym__initializer, + ACTIONS(9678), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [211329] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6090), 1, + sym_comment, + ACTIONS(9672), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115725] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211346] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6091), 1, sym_comment, - ACTIONS(4308), 1, - anon_sym_EQ, - ACTIONS(4310), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(7542), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [211371] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6092), 1, + sym_comment, + ACTIONS(9680), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115748] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211388] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6093), 1, sym_comment, - ACTIONS(4008), 1, - anon_sym_EQ, - ACTIONS(6026), 1, - anon_sym_is, - ACTIONS(4010), 13, - anon_sym_LBRACE, + ACTIONS(8564), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115773] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211405] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6094), 1, sym_comment, - ACTIONS(4130), 1, - anon_sym_EQ, - ACTIONS(4132), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9682), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115796] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211422] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5814), 1, + sym__call_signature, + STATE(6095), 1, + sym_comment, + STATE(8101), 1, + sym_type_parameters, + [211447] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6096), 1, + sym_comment, + STATE(7577), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [211472] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5820), 1, + sym__call_signature, + STATE(6097), 1, sym_comment, - ACTIONS(4280), 1, + STATE(8101), 1, + sym_type_parameters, + [211497] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(4282), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(6098), 1, + sym_comment, + STATE(6585), 1, + sym__initializer, + ACTIONS(9678), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_SEMI, + [211518] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + ACTIONS(8066), 1, anon_sym_extends, - [115819] = 2, - ACTIONS(3), 1, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(6099), 1, sym_comment, - ACTIONS(6060), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [115840] = 7, - ACTIONS(3), 1, + ACTIONS(9684), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [211541] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6100), 1, sym_comment, - ACTIONS(3367), 1, - anon_sym_LPAREN, - ACTIONS(3369), 1, - anon_sym_DOT, - ACTIONS(3371), 1, - anon_sym_QMARK_DOT, - ACTIONS(3373), 1, - anon_sym_PIPE, - STATE(2970), 1, - sym_arguments, - ACTIONS(3365), 10, + ACTIONS(8564), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [115871] = 3, - ACTIONS(3), 1, + [211558] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4941), 1, + sym_formal_parameters, + STATE(5764), 1, + sym__call_signature, + STATE(6101), 1, sym_comment, - ACTIONS(4412), 1, + STATE(7440), 1, + sym_type_parameters, + [211583] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(4414), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(6102), 1, + sym_comment, + STATE(6989), 1, + sym__initializer, + ACTIONS(9686), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115894] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [211604] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5823), 1, + sym__call_signature, + STATE(6103), 1, sym_comment, - ACTIONS(6062), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [115915] = 3, - ACTIONS(3), 1, + STATE(8101), 1, + sym_type_parameters, + [211629] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4941), 1, + sym_formal_parameters, + STATE(5460), 1, + sym__call_signature, + STATE(6104), 1, sym_comment, - ACTIONS(4146), 1, - anon_sym_EQ, - ACTIONS(4148), 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, + STATE(7440), 1, + sym_type_parameters, + [211654] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9459), 1, + anon_sym_abstract, + ACTIONS(9688), 1, + anon_sym_class, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6105), 1, + sym_comment, + STATE(6520), 1, + sym_decorator, + [211679] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, - anon_sym_QMARK, + ACTIONS(7735), 1, anon_sym_extends, - [115938] = 3, - ACTIONS(3), 1, + STATE(6106), 1, sym_comment, - ACTIONS(4505), 1, - anon_sym_EQ, - ACTIONS(4507), 14, - anon_sym_as, + ACTIONS(9690), 2, anon_sym_LBRACE, anon_sym_COMMA, + [211702] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6107), 1, + sym_comment, + ACTIONS(9692), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [115961] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211719] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4941), 1, + sym_formal_parameters, + STATE(5499), 1, + sym__call_signature, + STATE(6108), 1, sym_comment, - ACTIONS(4493), 1, - anon_sym_EQ, - ACTIONS(6048), 1, - anon_sym_LBRACK, - ACTIONS(4495), 13, - anon_sym_as, - anon_sym_LBRACE, + STATE(7440), 1, + sym_type_parameters, + [211744] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6109), 1, + sym_comment, + ACTIONS(9694), 5, + sym__automatic_semicolon, 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, - [115986] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211761] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5841), 1, + sym__call_signature, + STATE(6110), 1, sym_comment, - ACTIONS(4012), 1, - anon_sym_EQ, - ACTIONS(6064), 1, - anon_sym_is, - ACTIONS(4014), 13, - anon_sym_LBRACE, + STATE(8101), 1, + sym_type_parameters, + [211786] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6111), 1, + sym_comment, + ACTIONS(9696), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [116011] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211803] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4941), 1, + sym_formal_parameters, + STATE(5482), 1, + sym__call_signature, + STATE(6112), 1, sym_comment, - ACTIONS(4284), 1, - anon_sym_EQ, - ACTIONS(4286), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(7440), 1, + sym_type_parameters, + [211828] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6113), 1, + sym_comment, + ACTIONS(9696), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [116034] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211845] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6114), 1, + sym_comment, + STATE(6591), 1, + sym__initializer, + ACTIONS(9332), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [211866] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4941), 1, + sym_formal_parameters, + STATE(5475), 1, + sym__call_signature, + STATE(6115), 1, + sym_comment, + STATE(7440), 1, + sym_type_parameters, + [211891] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6116), 1, sym_comment, - ACTIONS(4483), 1, - anon_sym_EQ, - ACTIONS(4485), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9698), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [116057] = 5, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211908] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6117), 1, sym_comment, - ACTIONS(4467), 1, - anon_sym_EQ, - ACTIONS(6048), 1, - anon_sym_LBRACK, - ACTIONS(4336), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4469), 10, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9700), 5, + sym__automatic_semicolon, 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, - [116084] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211925] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6118), 1, sym_comment, - ACTIONS(4068), 1, + STATE(6747), 1, + sym__initializer, + ACTIONS(9702), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [211946] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(4070), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(6119), 1, + sym_comment, + STATE(6601), 1, + sym__initializer, + ACTIONS(9678), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, + [211967] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5190), 1, 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, - [116107] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6066), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [116128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4150), 1, + ACTIONS(7839), 1, anon_sym_EQ, - ACTIONS(4152), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(9396), 1, anon_sym_COMMA, + ACTIONS(9704), 1, 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, - [116151] = 3, - ACTIONS(3), 1, + STATE(6120), 1, sym_comment, - ACTIONS(4340), 1, - anon_sym_EQ, - ACTIONS(4342), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(6975), 1, + aux_sym_object_pattern_repeat1, + [211992] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6121), 1, + sym_comment, + ACTIONS(6984), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [116174] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [212009] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6122), 1, sym_comment, - ACTIONS(4429), 1, - anon_sym_EQ, - ACTIONS(4431), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(8006), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [212034] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6123), 1, + sym_comment, + ACTIONS(6982), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [116197] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [212051] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(8944), 1, + anon_sym_abstract, + ACTIONS(9706), 1, + anon_sym_class, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6124), 1, sym_comment, - ACTIONS(4449), 1, - anon_sym_EQ, - ACTIONS(4451), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(6520), 1, + sym_decorator, + [212076] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6125), 1, + sym_comment, + ACTIONS(6976), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [116220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4300), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [212093] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(4302), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(6126), 1, + sym_comment, + STATE(6878), 1, + sym__initializer, + ACTIONS(9708), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [212114] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6127), 1, + sym_comment, + ACTIONS(9710), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [116243] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [212131] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6128), 1, sym_comment, - ACTIONS(4241), 1, - anon_sym_PIPE, - ACTIONS(4243), 13, + ACTIONS(9712), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [116265] = 3, - ACTIONS(3), 1, + [212148] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6129), 1, sym_comment, - ACTIONS(4222), 1, - anon_sym_PIPE, - ACTIONS(4224), 13, + ACTIONS(9712), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_PIPE_RBRACE, + [212165] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, anon_sym_AMP, + ACTIONS(8066), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116287] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6070), 1, - sym_number, - STATE(4698), 1, - sym_string, - STATE(4699), 1, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [116317] = 7, - ACTIONS(3), 1, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(6130), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6072), 1, - sym_number, - STATE(4708), 1, - sym_string, - STATE(4709), 1, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [116347] = 6, - ACTIONS(3), 1, + ACTIONS(9714), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [212188] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6131), 1, sym_comment, - ACTIONS(4126), 1, - anon_sym_EQ, - ACTIONS(6074), 1, + STATE(7648), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [212213] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, - ACTIONS(6076), 1, + ACTIONS(7733), 1, anon_sym_PIPE, - ACTIONS(6078), 1, + ACTIONS(7735), 1, anon_sym_extends, - ACTIONS(4128), 10, - anon_sym_LBRACE, + STATE(6132), 1, + sym_comment, + ACTIONS(9716), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [116375] = 6, - ACTIONS(3), 1, + [212236] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6133), 1, sym_comment, - ACTIONS(4116), 1, - anon_sym_EQ, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(4118), 10, - anon_sym_LBRACE, + ACTIONS(8681), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [116403] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [212253] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(5556), 1, + sym__call_signature, + STATE(6134), 1, sym_comment, - ACTIONS(4249), 1, - anon_sym_PIPE, - ACTIONS(4251), 13, + STATE(8101), 1, + sym_type_parameters, + [212278] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6135), 1, + sym_comment, + ACTIONS(9718), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [116425] = 6, - ACTIONS(3), 1, + [212295] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6136), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6080), 1, - sym_number, - STATE(4814), 2, - sym_string, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [116453] = 7, - ACTIONS(3), 1, + STATE(7687), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [212320] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6137), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6082), 1, - sym_number, - STATE(4817), 1, - sym_string, - STATE(4818), 1, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [116483] = 6, - ACTIONS(3), 1, + STATE(6935), 1, + sym__initializer, + ACTIONS(9332), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [212341] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6138), 1, sym_comment, - ACTIONS(4453), 1, + ACTIONS(9720), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [212358] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(4455), 10, - anon_sym_LBRACE, + STATE(6139), 1, + sym_comment, + STATE(6602), 1, + sym__initializer, + ACTIONS(9678), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [212379] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6140), 1, + sym_comment, + ACTIONS(8783), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [116511] = 6, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [212396] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6141), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6084), 1, - sym_number, - STATE(4912), 2, - sym_string, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [116539] = 7, - ACTIONS(3), 1, + ACTIONS(9722), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [212413] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6142), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6086), 1, - sym_number, - STATE(4822), 1, - sym_string, - STATE(4823), 1, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [116569] = 6, - ACTIONS(3), 1, + ACTIONS(8711), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [212430] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6143), 1, sym_comment, - ACTIONS(4284), 1, - anon_sym_EQ, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(4286), 10, - anon_sym_LBRACE, + ACTIONS(8783), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [116597] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [212447] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4941), 1, + sym_formal_parameters, + STATE(5861), 1, + sym__call_signature, + STATE(6144), 1, sym_comment, - ACTIONS(4425), 1, + STATE(7440), 1, + sym_type_parameters, + [212472] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6145), 1, + sym_comment, + ACTIONS(7125), 5, anon_sym_EQ, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(4427), 12, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [116621] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6088), 1, - sym_number, - STATE(4691), 1, - sym_string, - STATE(4696), 1, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [116651] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6090), 1, - sym_number, - STATE(4688), 2, - sym_string, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [116679] = 3, - ACTIONS(3), 1, + [212489] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6146), 1, sym_comment, - ACTIONS(4264), 1, - anon_sym_PIPE, - ACTIONS(4266), 13, + ACTIONS(9724), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [116701] = 3, - ACTIONS(3), 1, + [212506] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6147), 1, sym_comment, - ACTIONS(4260), 1, - anon_sym_PIPE, - ACTIONS(4262), 13, + ACTIONS(8711), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [116723] = 3, - ACTIONS(3), 1, + [212523] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6148), 1, sym_comment, - ACTIONS(4245), 1, - anon_sym_PIPE, - ACTIONS(4247), 13, + ACTIONS(6959), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [116745] = 3, - ACTIONS(3), 1, + [212540] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6149), 1, sym_comment, - ACTIONS(4245), 1, - anon_sym_PIPE, - ACTIONS(4247), 13, + ACTIONS(6907), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [116767] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6092), 1, - sym_number, - STATE(4825), 1, - sym_string, - STATE(4826), 1, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [116797] = 3, - ACTIONS(3), 1, + [212557] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6150), 1, sym_comment, - ACTIONS(4241), 1, - anon_sym_PIPE, - ACTIONS(4243), 13, + ACTIONS(6905), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [116819] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6094), 1, + [212574] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(6098), 1, - anon_sym_BANG, - ACTIONS(6100), 1, - anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6104), 1, - anon_sym_QMARK, - STATE(3233), 1, - sym_formal_parameters, - STATE(3497), 1, - sym__call_signature, - STATE(3708), 1, - sym_type_annotation, - STATE(4042), 1, + STATE(6151), 1, + sym_comment, + STATE(6967), 1, sym__initializer, - STATE(4529), 1, - sym_type_parameters, - ACTIONS(6096), 3, + ACTIONS(9678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [116861] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4276), 1, + [212595] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(4278), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [116885] = 13, - ACTIONS(3), 1, + STATE(6152), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6100), 1, - anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6108), 1, - anon_sym_BANG, - ACTIONS(6110), 1, - anon_sym_QMARK, - STATE(3233), 1, - sym_formal_parameters, - STATE(3533), 1, - sym__call_signature, - STATE(3615), 1, - sym_type_annotation, - STATE(4168), 1, + STATE(6582), 1, sym__initializer, - STATE(4529), 1, - sym_type_parameters, - ACTIONS(6106), 3, + ACTIONS(9678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [116927] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4130), 1, + [212616] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(6074), 1, + STATE(6153), 1, + sym_comment, + STATE(6871), 1, + sym__initializer, + ACTIONS(9726), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [212637] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, + ACTIONS(8066), 1, anon_sym_extends, - ACTIONS(4132), 10, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [116955] = 6, - ACTIONS(3), 1, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(6154), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6112), 1, - sym_number, - STATE(4939), 2, - sym_string, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [116983] = 13, - ACTIONS(3), 1, + ACTIONS(9728), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [212660] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9730), 1, + anon_sym_LBRACE, + ACTIONS(9732), 1, + anon_sym_SEMI, + ACTIONS(9734), 1, + sym__automatic_semicolon, + ACTIONS(9736), 1, + sym__function_signature_automatic_semicolon, + STATE(4182), 1, + sym_statement_block, + STATE(6155), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6094), 1, + [212685] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(6100), 1, - anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6116), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_QMARK, - STATE(3233), 1, - sym_formal_parameters, - STATE(3515), 1, - sym__call_signature, - STATE(3561), 1, - sym_type_annotation, - STATE(4255), 1, + STATE(6156), 1, + sym_comment, + STATE(6965), 1, sym__initializer, - STATE(4529), 1, - sym_type_parameters, - ACTIONS(6114), 3, + ACTIONS(9678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [117025] = 3, - ACTIONS(3), 1, + [212706] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6157), 1, sym_comment, - ACTIONS(4226), 1, - anon_sym_PIPE, - ACTIONS(4228), 13, + STATE(7232), 1, + sym__initializer, + ACTIONS(9738), 3, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [212727] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + STATE(6158), 1, + sym_comment, + STATE(8056), 1, + sym_type_annotation, + ACTIONS(4657), 3, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RBRACK, + [212748] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6159), 1, + sym_comment, + ACTIONS(9740), 5, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117047] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6120), 1, - sym_number, - STATE(5012), 1, - sym_predefined_type, - STATE(5017), 1, - sym_string, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [117077] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, anon_sym_LT, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6100), 1, + anon_sym_BQUOTE, + [212765] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6124), 1, - anon_sym_BANG, - ACTIONS(6126), 1, - anon_sym_QMARK, - STATE(3233), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, sym_formal_parameters, - STATE(3427), 1, + STATE(6160), 1, + sym_comment, + STATE(8012), 1, + sym_type_parameters, + STATE(8170), 1, sym__call_signature, - STATE(3784), 1, + [212790] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9275), 1, + anon_sym_COLON, + ACTIONS(9742), 1, + anon_sym_EQ_GT, + STATE(6161), 1, + sym_comment, + STATE(7587), 3, sym_type_annotation, - STATE(4112), 1, + sym_asserts_annotation, + sym_type_predicate_annotation, + [212811] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6162), 1, + sym_comment, + STATE(6960), 1, sym__initializer, - STATE(4529), 1, - sym_type_parameters, - ACTIONS(6122), 3, + ACTIONS(9678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [117119] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6128), 1, - sym_number, - STATE(4933), 1, - sym_predefined_type, - STATE(4934), 1, - sym_string, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [117149] = 3, - ACTIONS(3), 1, + [212832] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6163), 1, sym_comment, - ACTIONS(4222), 1, - anon_sym_PIPE, - ACTIONS(4224), 13, + STATE(6957), 1, + sym__initializer, + ACTIONS(9332), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117171] = 3, - ACTIONS(3), 1, + [212853] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6164), 1, sym_comment, - ACTIONS(4226), 1, - anon_sym_PIPE, - ACTIONS(4228), 13, - sym__automatic_semicolon, + ACTIONS(6794), 5, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [212870] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + STATE(5028), 1, + sym_formal_parameters, + STATE(5518), 1, + sym__call_signature, + STATE(6165), 1, + sym_comment, + STATE(8101), 1, + sym_type_parameters, + [212895] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9275), 1, + anon_sym_COLON, + ACTIONS(9745), 1, + anon_sym_EQ_GT, + STATE(6166), 1, + sym_comment, + STATE(7797), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [212916] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117193] = 3, - ACTIONS(3), 1, + STATE(6167), 1, sym_comment, - ACTIONS(4249), 1, - anon_sym_PIPE, - ACTIONS(4251), 13, - sym__automatic_semicolon, + ACTIONS(9748), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [212939] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - anon_sym_LBRACE, + STATE(6168), 1, + sym_comment, + STATE(6604), 1, + sym__initializer, + ACTIONS(9678), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117215] = 5, - ACTIONS(3), 1, + [212960] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6169), 1, sym_comment, - ACTIONS(4348), 1, + ACTIONS(7092), 5, anon_sym_EQ, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(4350), 11, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_extends, - [117241] = 7, - ACTIONS(3), 1, + [212977] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6170), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6130), 1, - sym_number, - STATE(4936), 1, - sym_predefined_type, - STATE(4937), 1, - sym_string, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [117271] = 7, - ACTIONS(3), 1, + STATE(7701), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [213002] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6171), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6132), 1, - sym_number, - STATE(4930), 1, - sym_predefined_type, - STATE(4931), 1, - sym_string, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [117301] = 3, - ACTIONS(3), 1, + ACTIONS(7092), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [213019] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6172), 1, + sym_comment, + ACTIONS(7092), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [213036] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7729), 1, + anon_sym_LBRACK, + ACTIONS(9750), 1, + anon_sym_RBRACE, + STATE(6173), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(5721), 3, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4168), 13, - sym__automatic_semicolon, + anon_sym_extends, + [213057] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8753), 1, anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(9752), 1, anon_sym_COMMA, + ACTIONS(9754), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + STATE(6174), 1, + sym_comment, + STATE(6888), 1, + aux_sym_enum_body_repeat1, + STATE(7894), 1, + sym__initializer, + [213082] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9756), 1, + anon_sym_BQUOTE, + ACTIONS(9758), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9761), 1, + sym__template_chars, + STATE(7137), 1, + sym_template_type, + STATE(6175), 2, + sym_comment, + aux_sym_template_literal_type_repeat1, + [213105] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117323] = 3, - ACTIONS(3), 1, + STATE(6176), 1, sym_comment, - ACTIONS(4112), 1, - anon_sym_PIPE, - ACTIONS(4114), 13, - sym__automatic_semicolon, + ACTIONS(9764), 2, + anon_sym_COMMA, + anon_sym_GT, + [213128] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - anon_sym_LBRACE, + STATE(6177), 1, + sym_comment, + STATE(6608), 1, + sym__initializer, + ACTIONS(9678), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [213149] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6178), 1, + sym_comment, + ACTIONS(6861), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [117345] = 3, - ACTIONS(3), 1, + [213166] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6179), 1, sym_comment, - ACTIONS(4162), 1, - anon_sym_PIPE, - ACTIONS(4164), 13, + STATE(8012), 1, + sym_type_parameters, + STATE(8142), 1, + sym__call_signature, + [213191] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9732), 1, + anon_sym_SEMI, + ACTIONS(9734), 1, sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(9736), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(9766), 1, anon_sym_LBRACE, + STATE(1903), 1, + sym_statement_block, + STATE(6180), 1, + sym_comment, + [213216] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6181), 1, + sym_comment, + ACTIONS(9768), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [117367] = 6, - ACTIONS(3), 1, + [213233] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, + anon_sym_LPAREN, + ACTIONS(8342), 1, + anon_sym_DOT, + STATE(5178), 1, + sym_arguments, + STATE(6182), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6134), 1, - sym_number, - STATE(4989), 2, - sym_string, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [117395] = 3, - ACTIONS(3), 1, + ACTIONS(9770), 2, + anon_sym_COMMA, + anon_sym_GT, + [213256] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6183), 1, sym_comment, - ACTIONS(4108), 1, - anon_sym_PIPE, - ACTIONS(4110), 13, + ACTIONS(9772), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [117417] = 3, - ACTIONS(3), 1, + [213273] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6184), 1, sym_comment, - ACTIONS(4108), 1, - anon_sym_PIPE, - ACTIONS(4110), 13, + STATE(6950), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [213294] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, anon_sym_AMP, + ACTIONS(8066), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117439] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4108), 1, + ACTIONS(9358), 1, anon_sym_PIPE, - ACTIONS(4110), 13, + STATE(6185), 1, + sym_comment, + ACTIONS(9774), 2, sym__automatic_semicolon, + anon_sym_SEMI, + [213317] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - anon_sym_LBRACE, + STATE(6186), 1, + sym_comment, + STATE(6949), 1, + sym__initializer, + ACTIONS(9678), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117461] = 7, - ACTIONS(3), 1, + [213338] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9730), 1, + anon_sym_LBRACE, + ACTIONS(9776), 1, + anon_sym_SEMI, + ACTIONS(9778), 1, + sym__automatic_semicolon, + ACTIONS(9780), 1, + sym__function_signature_automatic_semicolon, + STATE(4028), 1, + sym_statement_block, + STATE(6187), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6136), 1, - sym_number, - STATE(4927), 1, - sym_string, - STATE(4928), 1, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [117491] = 3, - ACTIONS(3), 1, + [213363] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6188), 1, sym_comment, - ACTIONS(4104), 1, - anon_sym_PIPE, - ACTIONS(4106), 13, + ACTIONS(6899), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [117513] = 3, - ACTIONS(3), 1, + [213380] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6189), 1, sym_comment, - ACTIONS(4104), 1, - anon_sym_PIPE, - ACTIONS(4106), 13, + STATE(6948), 1, + sym__initializer, + ACTIONS(9332), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117535] = 3, - ACTIONS(3), 1, + [213401] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, + sym_formal_parameters, + STATE(6190), 1, sym_comment, - ACTIONS(4104), 1, - anon_sym_PIPE, - ACTIONS(4106), 13, - sym__automatic_semicolon, + STATE(6232), 1, + sym__call_signature, + STATE(8101), 1, + sym_type_parameters, + [213426] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6191), 1, + sym_comment, + ACTIONS(9782), 5, anon_sym_EQ, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117557] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6138), 1, - sym_number, - STATE(4999), 1, - sym_string, - STATE(5004), 1, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [117587] = 3, - ACTIONS(3), 1, + anon_sym_implements, + [213443] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6192), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_PIPE, - ACTIONS(4102), 13, + STATE(6771), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [117609] = 13, - ACTIONS(3), 1, + [213464] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6193), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6094), 1, + ACTIONS(7077), 5, anon_sym_EQ, - ACTIONS(6102), 1, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6116), 1, - anon_sym_BANG, - ACTIONS(6140), 1, anon_sym_QMARK, - STATE(3114), 1, + [213481] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(8819), 1, + anon_sym_class, + ACTIONS(8821), 1, + anon_sym_abstract, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6194), 1, + sym_comment, + STATE(6520), 1, + sym_decorator, + [213506] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(7859), 1, + anon_sym_LPAREN, + STATE(5028), 1, sym_formal_parameters, - STATE(3561), 1, - sym_type_annotation, - STATE(4215), 1, - sym__initializer, - STATE(4216), 1, + STATE(6187), 1, sym__call_signature, - STATE(4526), 1, + STATE(6195), 1, + sym_comment, + STATE(8101), 1, sym_type_parameters, - ACTIONS(6114), 3, + [213531] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6196), 1, + sym_comment, + ACTIONS(9784), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [117651] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [213548] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6197), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_PIPE, - ACTIONS(4102), 13, + STATE(6616), 1, + sym__initializer, + ACTIONS(9332), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [213569] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6198), 1, + sym_comment, + ACTIONS(9786), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [117673] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6094), 1, + [213586] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6144), 1, - anon_sym_BANG, - ACTIONS(6146), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3714), 1, - sym_type_annotation, - STATE(4022), 1, + STATE(6199), 1, + sym_comment, + STATE(6793), 1, sym__initializer, - STATE(4023), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(6142), 3, + ACTIONS(9678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [117715] = 3, - ACTIONS(3), 1, + [213607] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6200), 1, sym_comment, - ACTIONS(4100), 1, - anon_sym_PIPE, - ACTIONS(4102), 13, + ACTIONS(9788), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [117737] = 3, - ACTIONS(3), 1, + [213624] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6201), 1, sym_comment, - ACTIONS(4166), 1, - anon_sym_PIPE, - ACTIONS(4168), 13, + ACTIONS(9790), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [117759] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6148), 1, - sym_number, - STATE(4919), 1, - sym_string, - STATE(4921), 1, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [117789] = 3, - ACTIONS(3), 1, + [213641] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6202), 1, sym_comment, - ACTIONS(4162), 1, - anon_sym_PIPE, - ACTIONS(4164), 13, + ACTIONS(9792), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [117811] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6150), 1, - sym_number, - STATE(5021), 1, - sym_predefined_type, - STATE(5022), 1, - sym_string, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [117841] = 3, - ACTIONS(3), 1, + [213658] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6203), 1, sym_comment, - ACTIONS(4304), 1, - anon_sym_PIPE, - ACTIONS(4306), 13, + ACTIONS(9794), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [117863] = 3, - ACTIONS(3), 1, + [213675] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6204), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_PIPE, - ACTIONS(4160), 13, + STATE(6625), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [213696] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6980), 1, + sym__automatic_semicolon, + STATE(6205), 1, + sym_comment, + ACTIONS(6978), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [117885] = 3, - ACTIONS(3), 1, + [213715] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6206), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_PIPE, - ACTIONS(4160), 13, + ACTIONS(9796), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [117907] = 3, - ACTIONS(3), 1, + [213732] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6917), 1, + sym__automatic_semicolon, + STATE(6207), 1, sym_comment, - ACTIONS(4288), 1, - anon_sym_PIPE, - ACTIONS(4290), 13, + ACTIONS(6915), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [213751] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6913), 1, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + STATE(6208), 1, + sym_comment, + ACTIONS(6911), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [117929] = 3, - ACTIONS(3), 1, + [213770] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6209), 1, sym_comment, - ACTIONS(4288), 1, - anon_sym_PIPE, - ACTIONS(4290), 13, + ACTIONS(9798), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [117951] = 13, - ACTIONS(3), 1, + [213787] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6903), 1, + sym__automatic_semicolon, + STATE(6210), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(6901), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [213806] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6100), 1, + ACTIONS(7859), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6144), 1, - anon_sym_BANG, - ACTIONS(6152), 1, - anon_sym_QMARK, - STATE(3233), 1, + STATE(5028), 1, sym_formal_parameters, - STATE(3392), 1, + STATE(6180), 1, sym__call_signature, - STATE(3714), 1, - sym_type_annotation, - STATE(4026), 1, - sym__initializer, - STATE(4529), 1, + STATE(6211), 1, + sym_comment, + STATE(8101), 1, sym_type_parameters, - ACTIONS(6142), 3, + [213831] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6212), 1, + sym_comment, + ACTIONS(9800), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [117993] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [213848] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6213), 1, sym_comment, - ACTIONS(4288), 1, - anon_sym_PIPE, - ACTIONS(4290), 13, + ACTIONS(9802), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [118015] = 3, - ACTIONS(3), 1, + [213865] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6214), 1, sym_comment, - ACTIONS(4249), 1, - anon_sym_PIPE, - ACTIONS(4251), 13, + ACTIONS(9804), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [118037] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6154), 1, - sym_number, - STATE(4914), 1, - sym_string, - STATE(4916), 1, - sym_predefined_type, - ACTIONS(6068), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [118067] = 3, - ACTIONS(3), 1, + [213882] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6215), 1, sym_comment, - ACTIONS(4158), 1, - anon_sym_PIPE, - ACTIONS(4160), 13, + ACTIONS(9806), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [118089] = 6, - ACTIONS(3), 1, + [213899] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6216), 1, sym_comment, - ACTIONS(3954), 1, - anon_sym_PIPE, - ACTIONS(6036), 1, - anon_sym_LT, - ACTIONS(6038), 1, - anon_sym_DOT, - STATE(3085), 1, - sym_type_arguments, - ACTIONS(3353), 10, + ACTIONS(9808), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [118117] = 3, - ACTIONS(3), 1, + [213916] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6217), 1, sym_comment, - ACTIONS(4369), 1, - anon_sym_PIPE, - ACTIONS(4371), 12, + ACTIONS(9810), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [118138] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + [213933] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6158), 1, - anon_sym_QMARK, - STATE(3114), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, sym_formal_parameters, - STATE(3751), 1, - sym__call_signature, - STATE(3752), 1, - sym_type_annotation, - STATE(4526), 1, + STATE(6218), 1, + sym_comment, + STATE(8012), 1, sym_type_parameters, - ACTIONS(6156), 5, + STATE(8085), 1, + sym__call_signature, + [213958] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6219), 1, + sym_comment, + ACTIONS(9812), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [118173] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + [213975] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6162), 1, - anon_sym_QMARK, - STATE(3114), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, sym_formal_parameters, - STATE(3584), 1, + STATE(6220), 1, + sym_comment, + STATE(7927), 1, sym__call_signature, - STATE(3585), 1, - sym_type_annotation, - STATE(4526), 1, + STATE(8012), 1, sym_type_parameters, - ACTIONS(6160), 5, + [214000] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6221), 1, + sym_comment, + STATE(6639), 1, + sym__initializer, + ACTIONS(9332), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [214021] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6222), 1, + sym_comment, + ACTIONS(9814), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [118208] = 3, - ACTIONS(3), 1, + [214038] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6223), 1, sym_comment, - ACTIONS(3291), 1, - anon_sym_PIPE, - ACTIONS(3293), 12, + ACTIONS(9816), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [118229] = 10, - ACTIONS(3), 1, + [214055] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8753), 1, + anon_sym_EQ, + ACTIONS(9818), 1, + anon_sym_COMMA, + ACTIONS(9820), 1, + anon_sym_RBRACE, + STATE(6224), 1, sym_comment, - ACTIONS(2752), 1, + STATE(6740), 1, + aux_sym_enum_body_repeat1, + STATE(7894), 1, + sym__initializer, + [214080] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6225), 1, + sym_comment, + ACTIONS(9822), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [214097] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(2810), 1, + ACTIONS(7859), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6166), 1, - anon_sym_QMARK, - STATE(3114), 1, + STATE(5028), 1, sym_formal_parameters, - STATE(3670), 1, - sym_type_annotation, - STATE(3718), 1, + STATE(6155), 1, sym__call_signature, - STATE(4526), 1, + STATE(6226), 1, + sym_comment, + STATE(8101), 1, sym_type_parameters, - ACTIONS(6164), 5, + [214122] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6227), 1, + sym_comment, + ACTIONS(9824), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [118264] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3796), 1, - sym_type_predicate, - STATE(4644), 1, - sym_predefined_type, - ACTIONS(6168), 2, - sym_identifier, - sym_this, - ACTIONS(118), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [118289] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3534), 1, - sym_type_predicate, - STATE(4655), 1, - sym_predefined_type, - ACTIONS(6170), 2, - sym_identifier, - sym_this, - ACTIONS(118), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [118314] = 5, - ACTIONS(3), 1, + [214139] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6228), 1, sym_comment, - ACTIONS(4012), 1, - anon_sym_PIPE, - ACTIONS(6036), 1, - anon_sym_LT, - STATE(3078), 1, - sym_type_arguments, - ACTIONS(4014), 10, + STATE(6914), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + [214160] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8560), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118339] = 3, - ACTIONS(3), 1, + ACTIONS(8789), 1, + anon_sym_LBRACE, + ACTIONS(8791), 1, + anon_sym_LBRACE_PIPE, + STATE(4410), 1, + sym_object_type, + STATE(6229), 1, sym_comment, - ACTIONS(4433), 1, - anon_sym_PIPE, - ACTIONS(4435), 12, + STATE(6945), 1, + sym_extends_type_clause, + [214185] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6230), 1, + sym_comment, + ACTIONS(9826), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [118360] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1535), 1, - anon_sym_DOT, - ACTIONS(4356), 1, - anon_sym_PIPE, - ACTIONS(4358), 11, + [214202] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9324), 1, + anon_sym_LBRACE, + ACTIONS(9614), 1, + anon_sym_SEMI, + ACTIONS(9616), 1, sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(9618), 1, + sym__function_signature_automatic_semicolon, + STATE(515), 1, + sym_statement_block, + STATE(6231), 1, + sym_comment, + [214227] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9766), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(9776), 1, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [118383] = 10, - ACTIONS(3), 1, + ACTIONS(9778), 1, + sym__automatic_semicolon, + ACTIONS(9780), 1, + sym__function_signature_automatic_semicolon, + STATE(1906), 1, + sym_statement_block, + STATE(6232), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + [214252] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(6174), 1, - anon_sym_COLON, - ACTIONS(6176), 1, - anon_sym_QMARK, - STATE(3114), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, sym_formal_parameters, - STATE(3348), 1, + STATE(6233), 1, + sym_comment, + STATE(7958), 1, sym__call_signature, - STATE(3620), 1, - sym_type_annotation, - STATE(4526), 1, + STATE(8012), 1, sym_type_parameters, - ACTIONS(6172), 5, + [214277] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6234), 1, + sym_comment, + ACTIONS(9828), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [118418] = 5, - ACTIONS(3), 1, + [214294] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6235), 1, sym_comment, - ACTIONS(4396), 1, - anon_sym_PIPE, - ACTIONS(6178), 1, - anon_sym_DOT, - ACTIONS(6180), 1, - anon_sym_QMARK_DOT, - ACTIONS(4398), 10, - sym__automatic_semicolon, + STATE(8012), 1, + sym_type_parameters, + STATE(8050), 1, + sym__call_signature, + [214319] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, 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, - [118443] = 6, - ACTIONS(3), 1, + STATE(6236), 1, sym_comment, - ACTIONS(6182), 1, - anon_sym_LPAREN, - ACTIONS(6184), 1, - anon_sym_DOT, - ACTIONS(6186), 1, - anon_sym_QMARK_DOT, - STATE(3091), 1, - sym_arguments, - ACTIONS(3365), 9, + STATE(6646), 1, + sym__initializer, + ACTIONS(9332), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [118470] = 3, - ACTIONS(3), 1, + [214340] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6237), 1, sym_comment, - ACTIONS(4463), 1, - anon_sym_PIPE, - ACTIONS(4465), 12, + ACTIONS(9830), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [118491] = 10, - ACTIONS(3), 1, + [214357] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6238), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6190), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3298), 1, - sym__call_signature, - STATE(3613), 1, - sym_type_annotation, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(6188), 5, + STATE(6913), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [118526] = 6, - ACTIONS(3), 1, + [214378] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6239), 1, sym_comment, - ACTIONS(6182), 1, - anon_sym_LPAREN, - ACTIONS(6192), 1, - anon_sym_DOT, - ACTIONS(6194), 1, - anon_sym_QMARK_DOT, - STATE(3089), 1, - sym_arguments, - ACTIONS(4036), 9, + STATE(6912), 1, + sym__initializer, + ACTIONS(9332), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [118553] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4450), 1, - sym_type_predicate, - STATE(4802), 1, - sym_predefined_type, - ACTIONS(6196), 2, - sym_identifier, - sym_this, - ACTIONS(118), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_unknown, - anon_sym_never, - anon_sym_object, - [118578] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + [214399] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6198), 1, - anon_sym_QMARK, - STATE(3114), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, sym_formal_parameters, - STATE(3554), 1, + STATE(6240), 1, + sym_comment, + STATE(7812), 1, sym__call_signature, - STATE(3620), 1, - sym_type_annotation, - STATE(4526), 1, + STATE(8012), 1, sym_type_parameters, - ACTIONS(6172), 5, + [214424] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6241), 1, + sym_comment, + ACTIONS(9832), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [118613] = 6, - ACTIONS(3), 1, + [214441] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6242), 1, sym_comment, - ACTIONS(6182), 1, - anon_sym_LPAREN, - ACTIONS(6200), 1, - anon_sym_DOT, - ACTIONS(6202), 1, - anon_sym_QMARK_DOT, - STATE(3079), 1, - sym_arguments, - ACTIONS(4042), 9, + STATE(6884), 1, + sym__initializer, + ACTIONS(9332), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [118640] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(6024), 1, - anon_sym_LT, - ACTIONS(6204), 1, - anon_sym_EQ, - ACTIONS(6209), 1, - anon_sym_COLON, - ACTIONS(6211), 1, - anon_sym_extends, - STATE(2885), 1, - sym_type_arguments, - STATE(3916), 1, - sym_constraint, - STATE(4525), 1, - sym_default_type, - ACTIONS(6206), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3353), 3, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [118677] = 3, - ACTIONS(3), 1, + [214462] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6243), 1, sym_comment, - ACTIONS(3323), 1, - anon_sym_PIPE, - ACTIONS(3325), 12, + ACTIONS(9832), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [118698] = 3, - ACTIONS(3), 1, + [214479] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6244), 1, sym_comment, - ACTIONS(3261), 1, - anon_sym_PIPE, - ACTIONS(3263), 12, + ACTIONS(9832), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [118719] = 10, - ACTIONS(3), 1, + [214496] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6245), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6214), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3375), 1, - sym__call_signature, - STATE(3752), 1, - sym_type_annotation, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(6156), 5, + STATE(6647), 1, + sym__initializer, + ACTIONS(9678), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [214517] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6246), 1, + sym_comment, + ACTIONS(9834), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [118754] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, + [214534] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(2810), 1, + ACTIONS(7859), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6216), 1, - anon_sym_QMARK, - STATE(3114), 1, + STATE(5028), 1, sym_formal_parameters, - STATE(3363), 1, + STATE(5911), 1, sym__call_signature, - STATE(3585), 1, - sym_type_annotation, - STATE(4526), 1, + STATE(6247), 1, + sym_comment, + STATE(8101), 1, sym_type_parameters, - ACTIONS(6160), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [118789] = 10, - ACTIONS(3), 1, + [214559] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6248), 1, sym_comment, - ACTIONS(2752), 1, + STATE(7841), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [214584] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(2810), 1, + ACTIONS(7859), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6218), 1, - anon_sym_QMARK, - STATE(3114), 1, + STATE(5028), 1, sym_formal_parameters, - STATE(3613), 1, - sym_type_annotation, - STATE(3614), 1, + STATE(5926), 1, sym__call_signature, - STATE(4526), 1, + STATE(6249), 1, + sym_comment, + STATE(8101), 1, sym_type_parameters, - ACTIONS(6188), 5, + [214609] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6250), 1, + sym_comment, + STATE(6862), 1, + sym__initializer, + ACTIONS(9332), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [118824] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + [214630] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6220), 1, - anon_sym_QMARK, - STATE(3114), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, sym_formal_parameters, - STATE(3303), 1, + STATE(6251), 1, + sym_comment, + STATE(7924), 1, sym__call_signature, - STATE(3670), 1, - sym_type_annotation, - STATE(4526), 1, + STATE(8012), 1, sym_type_parameters, - ACTIONS(6164), 5, + [214655] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6252), 1, + sym_comment, + STATE(6852), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [118859] = 6, - ACTIONS(3), 1, + [214676] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6253), 1, sym_comment, - ACTIONS(6222), 1, - anon_sym_LT, - ACTIONS(6224), 1, - anon_sym_DOT, - ACTIONS(6226), 1, - anon_sym_is, - STATE(3184), 1, - sym_type_arguments, - ACTIONS(3353), 9, + STATE(6851), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [118886] = 11, - ACTIONS(3), 1, + [214697] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6254), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(9836), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [214714] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6100), 1, + ACTIONS(7859), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3233), 1, + STATE(5028), 1, sym_formal_parameters, - STATE(3470), 1, + STATE(5929), 1, sym__call_signature, - STATE(3775), 1, - sym_type_annotation, - STATE(4073), 1, - sym__initializer, - STATE(4529), 1, + STATE(6255), 1, + sym_comment, + STATE(8101), 1, sym_type_parameters, - ACTIONS(6228), 3, + [214739] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9153), 1, + anon_sym_class, + ACTIONS(9155), 1, + anon_sym_abstract, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6256), 1, + sym_comment, + STATE(6520), 1, + sym_decorator, + [214764] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6257), 1, + sym_comment, + ACTIONS(9838), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [214781] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6258), 1, + sym_comment, + STATE(6650), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [118922] = 2, - ACTIONS(3), 1, + [214802] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6259), 1, sym_comment, - ACTIONS(4243), 12, + ACTIONS(9840), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [118940] = 2, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [214819] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6260), 1, sym_comment, - ACTIONS(4224), 12, + STATE(6850), 1, + sym__initializer, + ACTIONS(9332), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [118958] = 11, + [214840] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8076), 1, + anon_sym_list, + ACTIONS(9842), 1, + sym_identifier, + STATE(6261), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6094), 1, + STATE(8201), 1, + sym_nested_identifier, + STATE(4493), 2, + sym_nested_type_identifier, + sym_ui_list_property_type, + [214863] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - ACTIONS(6100), 1, - anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3233), 1, - sym_formal_parameters, - STATE(3498), 1, - sym__call_signature, - STATE(3696), 1, - sym_type_annotation, - STATE(4048), 1, + STATE(6262), 1, + sym_comment, + STATE(6843), 1, sym__initializer, - STATE(4529), 1, - sym_type_parameters, - ACTIONS(6230), 3, + ACTIONS(9332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [118994] = 9, - ACTIONS(3), 1, + [214884] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9411), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9413), 1, + sym__template_chars, + ACTIONS(9844), 1, + anon_sym_BQUOTE, + STATE(6175), 1, + aux_sym_template_literal_type_repeat1, + STATE(6263), 1, sym_comment, - ACTIONS(2752), 1, + STATE(7137), 1, + sym_template_type, + [214909] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(2810), 1, + ACTIONS(7859), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3114), 1, + STATE(5028), 1, sym_formal_parameters, - STATE(3666), 1, + STATE(5946), 1, sym__call_signature, - STATE(3667), 1, - sym_type_annotation, - STATE(4526), 1, + STATE(6264), 1, + sym_comment, + STATE(8101), 1, sym_type_parameters, - ACTIONS(6232), 5, + [214934] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6265), 1, + sym_comment, + STATE(6826), 1, + sym__initializer, + ACTIONS(9678), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [214955] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6266), 1, + sym_comment, + ACTIONS(9846), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [119026] = 2, - ACTIONS(3), 1, + [214972] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6267), 1, sym_comment, - ACTIONS(4114), 12, + STATE(6825), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119044] = 9, - ACTIONS(3), 1, + [214993] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6268), 1, sym_comment, - ACTIONS(2752), 1, + STATE(6666), 1, + sym__initializer, + ACTIONS(9332), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [215014] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(2810), 1, + ACTIONS(7859), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3114), 1, + STATE(5028), 1, sym_formal_parameters, - STATE(3357), 1, + STATE(5730), 1, sym__call_signature, - STATE(3632), 1, - sym_type_annotation, - STATE(4526), 1, + STATE(6269), 1, + sym_comment, + STATE(8101), 1, sym_type_parameters, - ACTIONS(6234), 5, + [215039] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6270), 1, + sym_comment, + ACTIONS(9848), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [119076] = 2, - ACTIONS(3), 1, + [215056] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6271), 1, sym_comment, - ACTIONS(4110), 12, + STATE(6824), 1, + sym__initializer, + ACTIONS(9332), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119094] = 7, - ACTIONS(3), 1, + [215077] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6272), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(9850), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3769), 1, anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [119122] = 2, - ACTIONS(3), 1, + [215094] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6273), 1, sym_comment, - ACTIONS(4110), 12, + ACTIONS(9852), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119140] = 2, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [215111] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6274), 1, sym_comment, - ACTIONS(4110), 12, + ACTIONS(9854), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119158] = 2, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [215128] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6275), 1, sym_comment, - ACTIONS(4106), 12, + STATE(6813), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119176] = 2, - ACTIONS(3), 1, + [215149] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6276), 1, sym_comment, - ACTIONS(4106), 12, + ACTIONS(9856), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119194] = 2, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [215166] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6277), 1, sym_comment, - ACTIONS(4106), 12, + STATE(6806), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119212] = 9, - ACTIONS(3), 1, + [215187] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6278), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3114), 1, - sym_formal_parameters, - STATE(3598), 1, - sym_type_annotation, - STATE(3605), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(6236), 5, + ACTIONS(9858), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [119244] = 9, - ACTIONS(3), 1, + [215204] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6279), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + ACTIONS(9860), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [215221] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3114), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, sym_formal_parameters, - STATE(3325), 1, + STATE(6280), 1, + sym_comment, + STATE(7883), 1, sym__call_signature, - STATE(3598), 1, - sym_type_annotation, - STATE(4526), 1, + STATE(8012), 1, sym_type_parameters, - ACTIONS(6236), 5, + [215246] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6281), 1, + sym_comment, + ACTIONS(9862), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [119276] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3895), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, + [215263] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 7, + STATE(6282), 1, + sym_comment, + STATE(6804), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [119304] = 2, - ACTIONS(3), 1, + [215284] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6283), 1, sym_comment, - ACTIONS(4164), 12, + STATE(6802), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119322] = 9, - ACTIONS(3), 1, + [215305] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6284), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3114), 1, - sym_formal_parameters, - STATE(3272), 1, - sym__call_signature, - STATE(3743), 1, - sym_type_annotation, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(6238), 5, + ACTIONS(9862), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [119354] = 2, - ACTIONS(3), 1, + [215322] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6285), 1, sym_comment, - ACTIONS(4228), 12, + ACTIONS(9862), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119372] = 2, - ACTIONS(3), 1, + anon_sym_PIPE_RBRACE, + [215339] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9411), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9413), 1, + sym__template_chars, + ACTIONS(9864), 1, + anon_sym_BQUOTE, + STATE(6263), 1, + aux_sym_template_literal_type_repeat1, + STATE(6286), 1, + sym_comment, + STATE(7137), 1, + sym_template_type, + [215364] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6287), 1, sym_comment, - ACTIONS(4102), 12, + STATE(6668), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119390] = 2, - ACTIONS(3), 1, + [215385] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6288), 1, sym_comment, - ACTIONS(4102), 12, + ACTIONS(9866), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119408] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4102), 12, + anon_sym_PIPE_RBRACE, + [215402] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9326), 1, + anon_sym_SEMI, + ACTIONS(9328), 1, sym__automatic_semicolon, + ACTIONS(9330), 1, sym__function_signature_automatic_semicolon, + ACTIONS(9612), 1, anon_sym_LBRACE, + STATE(1497), 1, + sym_statement_block, + STATE(6289), 1, + sym_comment, + [215427] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6290), 1, + sym_comment, + STATE(6768), 1, + sym__initializer, + ACTIONS(9678), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119426] = 2, - ACTIONS(3), 1, + [215448] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, + sym_formal_parameters, + STATE(6291), 1, + sym_comment, + STATE(7889), 1, + sym__call_signature, + STATE(8012), 1, + sym_type_parameters, + [215473] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6292), 1, sym_comment, - ACTIONS(4306), 12, + STATE(6767), 1, + sym__initializer, + ACTIONS(9332), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119444] = 2, - ACTIONS(3), 1, + [215494] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6293), 1, sym_comment, - ACTIONS(4168), 12, + STATE(6798), 1, + sym__initializer, + ACTIONS(9332), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [215515] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8066), 1, anon_sym_extends, - [119462] = 2, - ACTIONS(3), 1, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(6294), 1, sym_comment, - ACTIONS(4266), 12, + ACTIONS(9868), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119480] = 2, - ACTIONS(3), 1, + [215538] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6295), 1, sym_comment, - ACTIONS(4262), 12, + STATE(6667), 1, + sym__initializer, + ACTIONS(9678), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119498] = 11, + [215559] = 8, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2249), 1, + anon_sym_DQUOTE, + ACTIONS(2251), 1, + anon_sym_SQUOTE, + ACTIONS(9548), 1, + sym_identifier, + STATE(6296), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6100), 1, + STATE(6503), 1, + sym_string, + STATE(7962), 1, + sym__module_export_name, + [215584] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3233), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(5707), 1, sym_formal_parameters, - STATE(3421), 1, + STATE(6297), 1, + sym_comment, + STATE(7935), 1, sym__call_signature, - STATE(3854), 1, - sym_type_annotation, - STATE(4222), 1, - sym__initializer, - STATE(4529), 1, + STATE(8012), 1, sym_type_parameters, - ACTIONS(6240), 3, + [215609] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6298), 1, + sym_comment, + STATE(6697), 1, + sym__initializer, + ACTIONS(9332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [119534] = 2, - ACTIONS(3), 1, + [215630] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7825), 1, + anon_sym_EQ, + STATE(6299), 1, sym_comment, - ACTIONS(4247), 12, + STATE(6788), 1, + sym__initializer, + ACTIONS(9332), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119552] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, + [215651] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(2810), 1, + ACTIONS(7859), 1, anon_sym_LPAREN, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3114), 1, + STATE(5028), 1, sym_formal_parameters, - STATE(3696), 1, - sym_type_annotation, - STATE(4033), 1, - sym__initializer, - STATE(4034), 1, + STATE(6007), 1, sym__call_signature, - STATE(4526), 1, + STATE(6300), 1, + sym_comment, + STATE(8101), 1, sym_type_parameters, - ACTIONS(6230), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [119588] = 2, + [215676] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9870), 1, + anon_sym_DQUOTE, + STATE(6301), 1, sym_comment, - ACTIONS(4160), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + STATE(6423), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [215696] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119606] = 2, - ACTIONS(3), 1, + STATE(6302), 1, sym_comment, - ACTIONS(4168), 12, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9876), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119624] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4160), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + [215716] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119642] = 2, - ACTIONS(3), 1, + ACTIONS(7651), 1, + anon_sym_LT, + STATE(4561), 1, + sym_arguments, + STATE(4592), 1, + sym_type_arguments, + STATE(6303), 1, sym_comment, - ACTIONS(4160), 12, + [215738] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + ACTIONS(9880), 1, + anon_sym_SEMI, + ACTIONS(9882), 1, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + STATE(6304), 1, + sym_comment, + STATE(7362), 1, + sym_import_attribute, + [215760] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9884), 1, + anon_sym_export, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6305), 1, + sym_comment, + STATE(6520), 1, + sym_decorator, + [215782] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119660] = 9, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(6306), 1, + sym_comment, + STATE(7516), 1, + sym_type_parameters, + STATE(8630), 1, + sym_formal_parameters, + [215804] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9886), 1, + anon_sym_DQUOTE, + STATE(6307), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + STATE(6373), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [215824] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3114), 1, - sym_formal_parameters, - STATE(3307), 1, - sym__call_signature, - STATE(3667), 1, - sym_type_annotation, - STATE(4526), 1, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(6308), 1, + sym_comment, + STATE(8110), 1, sym_type_parameters, - ACTIONS(6232), 5, - sym__automatic_semicolon, + STATE(8427), 1, + sym_formal_parameters, + [215846] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [119692] = 2, - ACTIONS(3), 1, + STATE(6309), 1, sym_comment, - ACTIONS(4251), 12, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9888), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119710] = 2, + [215866] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(9890), 1, + sym_identifier, + STATE(6310), 1, sym_comment, - ACTIONS(4247), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + STATE(6467), 1, + sym_string, + [215888] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119728] = 2, - ACTIONS(3), 1, + STATE(6311), 1, sym_comment, - ACTIONS(4251), 12, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9892), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119746] = 2, - ACTIONS(3), 1, + [215908] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + ACTIONS(9894), 1, + anon_sym_SEMI, + ACTIONS(9896), 1, + sym__automatic_semicolon, + STATE(6312), 1, + sym_comment, + STATE(7356), 1, + sym_import_attribute, + [215930] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6313), 1, sym_comment, - ACTIONS(4164), 12, + STATE(7358), 1, + sym_import_attribute, + ACTIONS(9898), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119764] = 2, - ACTIONS(3), 1, + [215950] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6314), 1, sym_comment, - ACTIONS(4228), 12, + STATE(7355), 1, + sym_import_attribute, + ACTIONS(9900), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119782] = 9, + [215970] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9902), 1, + anon_sym_DQUOTE, + STATE(6315), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3114), 1, - sym_formal_parameters, - STATE(3741), 1, - sym__call_signature, - STATE(3743), 1, - sym_type_annotation, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(6238), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [119814] = 2, + STATE(6319), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [215990] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9902), 1, + anon_sym_SQUOTE, + STATE(6316), 1, sym_comment, - ACTIONS(4251), 12, + STATE(6320), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [216010] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6317), 1, + sym_comment, + STATE(7366), 1, + sym__from_clause, + ACTIONS(6465), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, + [216030] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8661), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119832] = 2, + ACTIONS(9908), 1, + anon_sym_COMMA, + ACTIONS(9910), 1, + anon_sym_GT, + STATE(6318), 1, + sym_comment, + STATE(7161), 1, + aux_sym_type_arguments_repeat1, + [216052] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9912), 1, + anon_sym_DQUOTE, + STATE(6319), 1, sym_comment, - ACTIONS(4290), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119850] = 2, + STATE(6423), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [216072] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9912), 1, + anon_sym_SQUOTE, + STATE(6320), 1, sym_comment, - ACTIONS(4290), 12, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + STATE(6424), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [216092] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119868] = 2, - ACTIONS(3), 1, + STATE(6321), 1, sym_comment, - ACTIONS(4290), 12, + STATE(6325), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9914), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [119886] = 9, - ACTIONS(3), 1, + [216112] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, + anon_sym_COMMA, + STATE(6322), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3114), 1, - sym_formal_parameters, - STATE(3336), 1, - sym__call_signature, - STATE(3843), 1, - sym_type_annotation, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(6242), 5, + STATE(6545), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9916), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [119918] = 4, - ACTIONS(3), 1, + [216132] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8661), 1, + anon_sym_DOT, + ACTIONS(9918), 1, + anon_sym_COMMA, + ACTIONS(9920), 1, + anon_sym_GT, + STATE(6323), 1, sym_comment, - ACTIONS(4008), 1, - anon_sym_PIPE, - ACTIONS(6040), 1, - anon_sym_is, - ACTIONS(4010), 10, - sym__automatic_semicolon, + STATE(7079), 1, + aux_sym_type_arguments_repeat1, + [216154] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9922), 1, anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(9924), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119940] = 11, - ACTIONS(3), 1, + ACTIONS(9926), 1, + anon_sym_RBRACK, + STATE(6324), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6100), 1, - anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3233), 1, - sym_formal_parameters, - STATE(3469), 1, - sym__call_signature, - STATE(3565), 1, - sym_type_annotation, - STATE(4235), 1, - sym__initializer, - STATE(4529), 1, - sym_type_parameters, - ACTIONS(6244), 3, - sym__automatic_semicolon, + STATE(7139), 1, + aux_sym_array_pattern_repeat1, + [216176] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, + STATE(6325), 1, + sym_comment, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9928), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [119976] = 11, - ACTIONS(3), 1, + [216196] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6326), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3114), 1, - sym_formal_parameters, - STATE(3565), 1, - sym_type_annotation, - STATE(4219), 1, - sym__initializer, - STATE(4220), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(6244), 3, + STATE(8132), 1, + sym__from_clause, + ACTIONS(9930), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [120012] = 9, - ACTIONS(3), 1, + [216216] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9932), 1, + anon_sym_LBRACE, + ACTIONS(9934), 1, + anon_sym_COMMA, + ACTIONS(9937), 1, + anon_sym_LBRACE_PIPE, + STATE(6327), 2, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3114), 1, - sym_formal_parameters, - STATE(3842), 1, - sym__call_signature, - STATE(3843), 1, - sym_type_annotation, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(6242), 5, + aux_sym_extends_type_clause_repeat1, + [216236] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6328), 1, + sym_comment, + STATE(8131), 1, + sym_import_attribute, + ACTIONS(9939), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [120044] = 5, - ACTIONS(3), 1, + [216256] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6329), 1, sym_comment, - ACTIONS(6222), 1, - anon_sym_LT, - ACTIONS(6224), 1, - anon_sym_DOT, - STATE(3184), 1, - sym_type_arguments, - ACTIONS(3353), 9, + STATE(8130), 1, + sym_import_attribute, + ACTIONS(9941), 2, 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, - [120068] = 4, - ACTIONS(3), 1, + [216276] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, + anon_sym_COMMA, + STATE(6330), 1, sym_comment, - ACTIONS(4012), 1, - anon_sym_PIPE, - ACTIONS(6246), 1, - anon_sym_is, - ACTIONS(4014), 10, + STATE(6403), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9943), 2, sym__automatic_semicolon, + anon_sym_SEMI, + [216296] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8753), 1, anon_sym_EQ, - anon_sym_LBRACE, + STATE(6331), 1, + sym_comment, + STATE(7894), 1, + sym__initializer, + ACTIONS(9945), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120090] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3334), 1, - anon_sym_COLON, - ACTIONS(5990), 1, + [216316] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8661), 1, anon_sym_DOT, - ACTIONS(6024), 1, - anon_sym_LT, - ACTIONS(6248), 1, - anon_sym_QMARK, - STATE(2885), 1, - sym_type_arguments, - STATE(4471), 1, - sym_type_annotation, - ACTIONS(3353), 6, + ACTIONS(9947), 1, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [120120] = 11, - ACTIONS(3), 1, + ACTIONS(9949), 1, + anon_sym_GT, + STATE(6332), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6100), 1, - anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3233), 1, - sym_formal_parameters, - STATE(3387), 1, - sym__call_signature, - STATE(3774), 1, - sym_type_annotation, - STATE(4017), 1, - sym__initializer, - STATE(4529), 1, - sym_type_parameters, - ACTIONS(6251), 3, + STATE(7196), 1, + aux_sym_type_arguments_repeat1, + [216338] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + ACTIONS(9951), 1, + anon_sym_SEMI, + ACTIONS(9953), 1, sym__automatic_semicolon, + STATE(6333), 1, + sym_comment, + STATE(7955), 1, + sym_import_attribute, + [216360] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, + STATE(6311), 1, + aux_sym_variable_declaration_repeat1, + STATE(6334), 1, + sym_comment, + ACTIONS(9955), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [120156] = 7, - ACTIONS(3), 1, + [216380] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6335), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3794), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 7, + STATE(7377), 1, + sym_import_attribute, + ACTIONS(9957), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [120184] = 3, - ACTIONS(3), 1, + [216400] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6336), 1, sym_comment, - ACTIONS(1511), 1, - anon_sym_PIPE, - ACTIONS(1509), 11, + STATE(7380), 1, + sym_import_attribute, + ACTIONS(9959), 2, 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, - [120204] = 7, - ACTIONS(3), 1, + [216420] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6337), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3819), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 7, + STATE(7381), 1, + sym__from_clause, + ACTIONS(9961), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [120232] = 7, + [216440] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9963), 1, + sym__glimmer_template_content, + ACTIONS(9965), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3127), 1, + sym_glimmer_closing_tag, + STATE(6338), 1, + sym_comment, + STATE(7006), 1, + aux_sym_glimmer_template_repeat1, + [216462] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9963), 1, + sym__glimmer_template_content, + ACTIONS(9965), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3019), 1, + sym_glimmer_closing_tag, + STATE(6338), 1, + aux_sym_glimmer_template_repeat1, + STATE(6339), 1, + sym_comment, + [216484] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6340), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(9967), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [216500] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8661), 1, + anon_sym_DOT, + ACTIONS(9969), 1, anon_sym_COMMA, - ACTIONS(3830), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 7, + ACTIONS(9971), 1, + anon_sym_GT, + STATE(6341), 1, + sym_comment, + STATE(7286), 1, + aux_sym_type_arguments_repeat1, + [216522] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6342), 1, + sym_comment, + STATE(7467), 1, + sym__from_clause, + ACTIONS(9973), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [120260] = 2, - ACTIONS(3), 1, + [216542] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6343), 1, sym_comment, - ACTIONS(4224), 12, + STATE(7471), 1, + sym_import_attribute, + ACTIONS(9975), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [120278] = 7, - ACTIONS(3), 1, + [216562] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9977), 1, + anon_sym_EQ_GT, + STATE(6344), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_COMMA, - ACTIONS(3762), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 7, - sym__automatic_semicolon, + ACTIONS(5190), 3, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [120306] = 9, - ACTIONS(3), 1, + [216580] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6345), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3114), 1, - sym_formal_parameters, - STATE(3576), 1, - sym__call_signature, - STATE(3632), 1, - sym_type_annotation, - STATE(4526), 1, - sym_type_parameters, - ACTIONS(6234), 5, + ACTIONS(9979), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [216596] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6346), 1, + sym_comment, + STATE(7472), 1, + sym_import_attribute, + ACTIONS(9981), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [120338] = 2, - ACTIONS(3), 1, + [216616] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, + anon_sym_COMMA, + STATE(6347), 1, sym_comment, - ACTIONS(4243), 12, + STATE(6370), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9983), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_SEMI, + [216636] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8661), 1, + anon_sym_DOT, + ACTIONS(9985), 1, anon_sym_COMMA, + ACTIONS(9987), 1, + anon_sym_GT, + STATE(6348), 1, + sym_comment, + STATE(6881), 1, + aux_sym_type_arguments_repeat1, + [216658] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9989), 1, anon_sym_LPAREN, + STATE(6349), 1, + sym_comment, + STATE(7870), 1, + sym_ui_signal_parameters, + ACTIONS(9991), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [216678] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6350), 1, + sym_comment, + ACTIONS(8745), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [216694] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - [120356] = 3, - ACTIONS(3), 1, + ACTIONS(9993), 1, + anon_sym_RBRACK, + STATE(6351), 1, sym_comment, - ACTIONS(4268), 1, - anon_sym_PIPE, - ACTIONS(4270), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + [216716] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120375] = 3, - ACTIONS(3), 1, + STATE(6352), 1, sym_comment, - ACTIONS(4412), 1, - anon_sym_PIPE, - ACTIONS(4414), 10, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9995), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, + [216736] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120394] = 3, - ACTIONS(3), 1, + ACTIONS(9997), 1, + anon_sym_QMARK, + STATE(6353), 1, sym_comment, - ACTIONS(4150), 1, - anon_sym_PIPE, - ACTIONS(4152), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + [216758] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120413] = 3, - ACTIONS(3), 1, + ACTIONS(9999), 1, + anon_sym_RBRACK, + STATE(6354), 1, sym_comment, - ACTIONS(4068), 1, - anon_sym_PIPE, - ACTIONS(4070), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + [216780] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120432] = 3, - ACTIONS(3), 1, + STATE(6352), 1, + aux_sym_variable_declaration_repeat1, + STATE(6355), 1, sym_comment, - ACTIONS(2113), 1, - anon_sym_PIPE, - ACTIONS(2115), 10, + ACTIONS(10001), 2, 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, - [120451] = 5, + [216800] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10003), 1, + anon_sym_SQUOTE, + STATE(6356), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6255), 1, - anon_sym_PIPE, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(4132), 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, - [120474] = 3, + STATE(6424), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [216820] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(10005), 1, + anon_sym_LT, + STATE(3416), 1, + sym_type_arguments, + STATE(3418), 1, + sym_arguments, + STATE(6357), 1, + sym_comment, + [216842] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10007), 1, + anon_sym_EQ_GT, + STATE(6358), 1, + sym_comment, + ACTIONS(5190), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [216860] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10003), 1, + anon_sym_DQUOTE, + STATE(6359), 1, sym_comment, - ACTIONS(4130), 1, - anon_sym_PIPE, - 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, - [120493] = 2, + STATE(6423), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [216880] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10009), 1, + anon_sym_SQUOTE, + STATE(6356), 1, + aux_sym_string_repeat2, + STATE(6360), 1, sym_comment, - ACTIONS(3263), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [216900] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10009), 1, + anon_sym_DQUOTE, + STATE(6359), 1, + aux_sym_string_repeat1, + STATE(6361), 1, + sym_comment, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [216920] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + STATE(6362), 1, + sym_comment, + STATE(3139), 2, + sym_template_string, + sym_arguments, + [216940] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, + STATE(6309), 1, + aux_sym_variable_declaration_repeat1, + STATE(6363), 1, + sym_comment, + ACTIONS(10011), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [216960] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - [120510] = 5, - ACTIONS(3), 1, + ACTIONS(10013), 1, + anon_sym_RPAREN, + STATE(6364), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6255), 1, - anon_sym_PIPE, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(4128), 8, - sym__automatic_semicolon, - anon_sym_EQ, + [216982] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6365), 1, + sym_comment, + ACTIONS(9384), 4, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [120533] = 5, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_on, + [216998] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6366), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6255), 1, - anon_sym_PIPE, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(4118), 8, + STATE(7492), 1, + sym__from_clause, + ACTIONS(6621), 2, 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, - [120556] = 4, - ACTIONS(3), 1, + [217018] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6367), 1, sym_comment, - ACTIONS(4276), 1, - anon_sym_PIPE, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(4278), 9, + STATE(7500), 1, + sym_import_attribute, + ACTIONS(10015), 2, 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, - [120577] = 3, - ACTIONS(3), 1, + [217038] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6368), 1, sym_comment, - ACTIONS(2117), 1, - anon_sym_PIPE, - ACTIONS(2119), 10, + STATE(7501), 1, + sym_import_attribute, + ACTIONS(10017), 2, 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, - [120596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4084), 1, - anon_sym_PIPE, - ACTIONS(4086), 10, + [217058] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + ACTIONS(10019), 1, + anon_sym_SEMI, + ACTIONS(10021), 1, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + STATE(6369), 1, + sym_comment, + STATE(7504), 1, + sym_import_attribute, + [217080] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120615] = 2, - ACTIONS(3), 1, + STATE(6370), 1, sym_comment, - ACTIONS(3325), 11, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10023), 2, 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, - [120632] = 3, - ACTIONS(3), 1, + [217100] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, + anon_sym_COMMA, + STATE(6302), 1, + aux_sym_variable_declaration_repeat1, + STATE(6371), 1, sym_comment, - ACTIONS(2794), 1, - anon_sym_PIPE, - ACTIONS(2796), 10, + ACTIONS(10025), 2, 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, - [120651] = 3, + [217120] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + STATE(6372), 1, sym_comment, - ACTIONS(4080), 1, - anon_sym_PIPE, - ACTIONS(4082), 10, + STATE(6424), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [217140] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10027), 1, + anon_sym_DQUOTE, + STATE(6373), 1, + sym_comment, + STATE(6423), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [217160] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6374), 1, + sym_comment, + STATE(7988), 1, + sym_import_attribute, + ACTIONS(10029), 2, 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, - [120670] = 3, + [217180] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9886), 1, + anon_sym_SQUOTE, + STATE(6372), 1, + aux_sym_string_repeat2, + STATE(6375), 1, sym_comment, - ACTIONS(4076), 1, - anon_sym_PIPE, - ACTIONS(4078), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [217200] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + ACTIONS(10031), 1, anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(10033), 1, + sym__automatic_semicolon, + STATE(6376), 1, + sym_comment, + STATE(7524), 1, + sym_import_attribute, + [217222] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120689] = 3, + ACTIONS(10035), 1, + anon_sym_COLON, + STATE(6377), 1, + sym_comment, + [217244] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10037), 1, + anon_sym_DQUOTE, + STATE(6378), 1, sym_comment, - ACTIONS(4146), 1, - anon_sym_PIPE, - ACTIONS(4148), 10, + STATE(6382), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [217264] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6379), 1, + sym_comment, + STATE(7830), 1, + sym_import_attribute, + ACTIONS(10039), 2, 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, - [120708] = 3, + [217284] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10037), 1, + anon_sym_SQUOTE, + STATE(6380), 1, sym_comment, - ACTIONS(4280), 1, - anon_sym_PIPE, - ACTIONS(4282), 10, - sym__automatic_semicolon, + STATE(6383), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [217304] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8003), 1, anon_sym_EQ, - anon_sym_LBRACE, + STATE(6381), 1, + sym_comment, + STATE(8062), 1, + sym_default_type, + ACTIONS(10041), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120727] = 4, + anon_sym_GT, + [217324] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10043), 1, + anon_sym_DQUOTE, + STATE(6382), 1, sym_comment, - ACTIONS(6222), 1, - anon_sym_LT, - STATE(3154), 1, - sym_type_arguments, - ACTIONS(4014), 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, - [120748] = 3, + STATE(6423), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [217344] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10043), 1, + anon_sym_SQUOTE, + STATE(6383), 1, sym_comment, - ACTIONS(4284), 1, - anon_sym_PIPE, - ACTIONS(4286), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + STATE(6424), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [217364] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120767] = 3, - ACTIONS(3), 1, + STATE(6384), 1, sym_comment, - ACTIONS(2121), 1, - anon_sym_PIPE, - ACTIONS(2123), 10, + STATE(6386), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10045), 2, 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, - [120786] = 3, - ACTIONS(3), 1, + [217384] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(6385), 1, sym_comment, - ACTIONS(4340), 1, - anon_sym_PIPE, - ACTIONS(4342), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + STATE(8093), 1, + sym_type_parameters, + STATE(8440), 1, + sym_formal_parameters, + [217406] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120805] = 3, - ACTIONS(3), 1, + STATE(6386), 1, sym_comment, - ACTIONS(2920), 1, - anon_sym_PIPE, - ACTIONS(2922), 10, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10047), 2, 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, - [120824] = 5, - ACTIONS(3), 1, + [217426] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(6387), 1, sym_comment, - ACTIONS(6253), 1, + STATE(8067), 1, + sym_type_parameters, + STATE(8280), 1, + sym_formal_parameters, + [217448] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, - ACTIONS(6255), 1, + ACTIONS(7733), 1, anon_sym_PIPE, - ACTIONS(6257), 1, + ACTIONS(7735), 1, anon_sym_extends, - ACTIONS(4286), 8, + ACTIONS(10049), 1, + anon_sym_QMARK, + STATE(6388), 1, + sym_comment, + [217470] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6389), 1, + sym_comment, + STATE(7589), 1, + sym__from_clause, + ACTIONS(10051), 2, 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, - [120847] = 3, - ACTIONS(3), 1, + [217490] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, + anon_sym_COMMA, + STATE(6390), 1, sym_comment, - ACTIONS(1535), 1, - anon_sym_DOT, - ACTIONS(4358), 10, + STATE(6404), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10053), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [120866] = 3, - ACTIONS(3), 1, + [217510] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6391), 1, sym_comment, - ACTIONS(4300), 1, - anon_sym_PIPE, - ACTIONS(4302), 10, + STATE(7750), 1, + sym__from_clause, + ACTIONS(10055), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, + [217530] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120885] = 4, - ACTIONS(3), 1, + ACTIONS(10057), 1, + anon_sym_COLON, + STATE(6392), 1, sym_comment, - ACTIONS(1535), 1, - anon_sym_DOT, - ACTIONS(4356), 1, - anon_sym_LBRACE, - ACTIONS(4358), 9, - anon_sym_as, + [217552] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [120906] = 3, - ACTIONS(3), 1, + STATE(6393), 1, sym_comment, - ACTIONS(4308), 1, - anon_sym_PIPE, - ACTIONS(4310), 10, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10059), 2, 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, - [120925] = 3, - ACTIONS(3), 1, + [217572] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6394), 1, sym_comment, - ACTIONS(4312), 1, - anon_sym_PIPE, - ACTIONS(4314), 10, + STATE(8102), 1, + sym__from_clause, + ACTIONS(6637), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, + [217592] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120944] = 3, - ACTIONS(3), 1, + ACTIONS(10061), 1, + anon_sym_RPAREN, + STATE(6395), 1, sym_comment, - ACTIONS(2109), 1, - anon_sym_PIPE, - ACTIONS(2111), 10, + [217614] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6396), 1, + sym_comment, + STATE(7757), 1, + sym_import_attribute, + ACTIONS(10063), 2, 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, - [120963] = 2, - ACTIONS(3), 1, + [217634] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + ACTIONS(10065), 1, + anon_sym_SEMI, + ACTIONS(10067), 1, + sym__automatic_semicolon, + STATE(6397), 1, sym_comment, - ACTIONS(5337), 11, + STATE(7544), 1, + sym_import_attribute, + [217656] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6398), 1, + sym_comment, + STATE(8096), 1, + sym_import_attribute, + ACTIONS(10069), 2, 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, - [120980] = 3, - ACTIONS(3), 1, + [217676] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6399), 1, sym_comment, - ACTIONS(4505), 1, - anon_sym_PIPE, - ACTIONS(4507), 10, + STATE(8095), 1, + sym_import_attribute, + ACTIONS(10071), 2, 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, - [120999] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4371), 11, + [217696] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + ACTIONS(10073), 1, + anon_sym_SEMI, + ACTIONS(10075), 1, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + STATE(6400), 1, + sym_comment, + STATE(8091), 1, + sym_import_attribute, + [217718] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, 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, - [121016] = 4, - ACTIONS(3), 1, + STATE(6401), 1, sym_comment, - ACTIONS(4493), 1, - anon_sym_PIPE, - ACTIONS(6259), 1, - anon_sym_LBRACK, - ACTIONS(4495), 9, + STATE(6524), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10077), 2, 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, - [121037] = 4, - ACTIONS(3), 1, + [217738] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6402), 1, sym_comment, - ACTIONS(6261), 1, - anon_sym_DOT, - ACTIONS(6263), 1, - anon_sym_QMARK_DOT, - ACTIONS(4398), 9, + STATE(7603), 1, + sym__from_clause, + ACTIONS(6567), 2, 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, - [121058] = 3, - ACTIONS(3), 1, + [217758] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, + anon_sym_COMMA, + STATE(6403), 1, sym_comment, - ACTIONS(4483), 1, - anon_sym_PIPE, - ACTIONS(4485), 10, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10079), 2, 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, - [121077] = 5, - ACTIONS(3), 1, + [217778] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, + anon_sym_COMMA, + STATE(6404), 1, sym_comment, - ACTIONS(4334), 1, - anon_sym_PIPE, - ACTIONS(6259), 1, - anon_sym_LBRACK, - ACTIONS(4336), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(4469), 7, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10081), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [121100] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6253), 1, + [217798] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, - ACTIONS(6255), 1, + ACTIONS(7733), 1, anon_sym_PIPE, - ACTIONS(6257), 1, + ACTIONS(7735), 1, anon_sym_extends, - ACTIONS(4455), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(10083), 1, + anon_sym_RBRACK, + STATE(6405), 1, + sym_comment, + [217820] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6172), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [121123] = 3, - ACTIONS(3), 1, + STATE(6406), 1, sym_comment, - ACTIONS(4449), 1, - anon_sym_PIPE, - ACTIONS(4451), 10, + STATE(6432), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(9134), 2, 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, - [121142] = 3, + [217840] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6074), 1, + anon_sym_LPAREN, + ACTIONS(6114), 1, + anon_sym_BQUOTE, + STATE(6407), 1, + sym_comment, + STATE(3619), 2, + sym_template_string, + sym_arguments, + [217860] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10085), 1, + sym_identifier, + ACTIONS(10087), 1, + anon_sym_const, + ACTIONS(10089), 1, + anon_sym_GT, + STATE(6408), 1, sym_comment, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(4431), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + STATE(8069), 1, + sym_type_parameter, + [217882] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121161] = 3, - ACTIONS(3), 1, + STATE(6393), 1, + aux_sym_variable_declaration_repeat1, + STATE(6409), 1, sym_comment, - ACTIONS(4140), 1, - anon_sym_PIPE, - ACTIONS(4138), 10, + ACTIONS(10091), 2, 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, - [121180] = 4, + [217902] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10093), 1, + anon_sym_SQUOTE, + STATE(6410), 1, sym_comment, - ACTIONS(4425), 1, - anon_sym_PIPE, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(4427), 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, - [121201] = 2, + STATE(6424), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [217922] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6411), 1, + sym_comment, + ACTIONS(10095), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [217938] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10093), 1, + anon_sym_DQUOTE, + STATE(6412), 1, sym_comment, - ACTIONS(4435), 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, + STATE(6423), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [217958] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - [121218] = 3, + ACTIONS(10097), 1, + anon_sym_QMARK, + STATE(6413), 1, + sym_comment, + [217980] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10099), 1, + anon_sym_DQUOTE, + STATE(6414), 1, + sym_comment, + STATE(6504), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [218000] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10101), 1, + anon_sym_SQUOTE, + STATE(6410), 1, + aux_sym_string_repeat2, + STATE(6415), 1, + sym_comment, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [218020] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10101), 1, + anon_sym_DQUOTE, + STATE(6412), 1, + aux_sym_string_repeat1, + STATE(6416), 1, + sym_comment, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [218040] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8673), 1, + anon_sym_COMMA, + ACTIONS(8996), 1, + anon_sym_LBRACE, + ACTIONS(8998), 1, + anon_sym_LBRACE_PIPE, + STATE(6417), 1, + sym_comment, + STATE(6544), 1, + aux_sym_extends_type_clause_repeat1, + [218062] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, + anon_sym_COMMA, + STATE(6418), 1, sym_comment, - ACTIONS(4406), 1, - anon_sym_PIPE, - ACTIONS(4328), 10, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10103), 2, 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, - [121237] = 2, - ACTIONS(3), 1, + [218082] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + ACTIONS(10105), 1, + anon_sym_SEMI, + ACTIONS(10107), 1, + sym__automatic_semicolon, + STATE(6419), 1, + sym_comment, + STATE(7584), 1, + sym_import_attribute, + [218104] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6420), 1, sym_comment, - ACTIONS(4465), 11, + STATE(7585), 1, + sym_import_attribute, + ACTIONS(10109), 2, 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, - [121254] = 3, - ACTIONS(3), 1, + [218124] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6421), 1, sym_comment, - ACTIONS(2141), 1, - anon_sym_PIPE, - ACTIONS(2143), 10, + STATE(7586), 1, + sym_import_attribute, + ACTIONS(10111), 2, 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, - [121273] = 3, - ACTIONS(3), 1, + [218144] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6422), 1, sym_comment, - ACTIONS(4292), 1, - anon_sym_PIPE, - ACTIONS(4294), 10, + STATE(7594), 1, + sym__from_clause, + ACTIONS(6373), 2, 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, - [121292] = 4, + [218164] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10113), 1, + anon_sym_DQUOTE, + ACTIONS(10115), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + STATE(6423), 2, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6255), 1, - anon_sym_PIPE, - ACTIONS(4350), 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, - [121313] = 3, + aux_sym_string_repeat1, + [218182] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10118), 1, + anon_sym_SQUOTE, + ACTIONS(10120), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + STATE(6424), 2, sym_comment, - ACTIONS(4072), 1, - anon_sym_PIPE, - ACTIONS(4074), 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, - [121332] = 2, + aux_sym_string_repeat2, + [218200] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10123), 1, + anon_sym_DQUOTE, + STATE(6425), 1, sym_comment, - ACTIONS(3765), 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, - [121349] = 3, + STATE(6427), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [218220] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10123), 1, + anon_sym_SQUOTE, + STATE(6426), 1, sym_comment, - ACTIONS(4008), 1, - anon_sym_PIPE, - ACTIONS(4010), 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, - [121368] = 4, + STATE(6428), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [218240] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10125), 1, + anon_sym_DQUOTE, + STATE(6423), 1, + aux_sym_string_repeat1, + STATE(6427), 1, sym_comment, - ACTIONS(4334), 1, - anon_sym_PIPE, - ACTIONS(6259), 1, - anon_sym_LBRACK, - ACTIONS(4336), 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, - [121389] = 3, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [218260] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10125), 1, + anon_sym_SQUOTE, + STATE(6424), 1, + aux_sym_string_repeat2, + STATE(6428), 1, sym_comment, - ACTIONS(2924), 1, - anon_sym_PIPE, - ACTIONS(2926), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [218280] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121408] = 2, - ACTIONS(3), 1, + STATE(6429), 1, sym_comment, - ACTIONS(3293), 11, + STATE(6430), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10127), 2, 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, - [121425] = 3, - ACTIONS(3), 1, + [218300] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, + anon_sym_COMMA, + STATE(6430), 1, sym_comment, - ACTIONS(4344), 1, - anon_sym_PIPE, - ACTIONS(4346), 10, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10129), 2, 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, - [121444] = 3, + [218320] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9963), 1, + sym__glimmer_template_content, + ACTIONS(10131), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3714), 1, + sym_glimmer_closing_tag, + STATE(6431), 1, sym_comment, - ACTIONS(4012), 1, - anon_sym_PIPE, - ACTIONS(4014), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + STATE(7006), 1, + aux_sym_glimmer_template_repeat1, + [218342] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10133), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5615), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [121463] = 10, - ACTIONS(3), 1, + STATE(6432), 2, sym_comment, - ACTIONS(2213), 1, - anon_sym_LBRACE, - ACTIONS(5947), 1, - anon_sym_COLON, - ACTIONS(5949), 1, - anon_sym_DOT, - ACTIONS(6265), 1, - sym_identifier, - ACTIONS(6267), 1, - anon_sym_on, - ACTIONS(6269), 1, - anon_sym_list, - STATE(2492), 1, - sym_ui_object_initializer, - STATE(4880), 1, - sym_nested_identifier, - STATE(2787), 2, - sym_nested_type_identifier, - sym_ui_list_property_type, - [121495] = 4, - ACTIONS(3), 1, + aux_sym_sequence_expression_repeat1, + [218360] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, + anon_sym_COMMA, + STATE(6433), 1, sym_comment, - ACTIONS(6273), 1, - anon_sym_COLON, - STATE(3444), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(6271), 6, + STATE(6437), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10136), 2, sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [121515] = 4, - ACTIONS(3), 1, + [218380] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6434), 1, sym_comment, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3936), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3765), 7, - sym__automatic_semicolon, + ACTIONS(10138), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [218396] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [121535] = 3, - ACTIONS(3), 1, + STATE(6435), 1, sym_comment, - ACTIONS(6226), 1, - anon_sym_is, - ACTIONS(4010), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + STATE(8120), 1, + sym_type_parameters, + STATE(8250), 1, + sym_formal_parameters, + [218418] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - [121553] = 3, - ACTIONS(3), 1, + ACTIONS(10140), 1, + anon_sym_RPAREN, + STATE(6436), 1, sym_comment, - ACTIONS(6275), 1, - anon_sym_is, - ACTIONS(4014), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + [218440] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, + STATE(6437), 1, + sym_comment, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10142), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, + [218460] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7771), 1, + anon_sym_LPAREN, + ACTIONS(7777), 1, + anon_sym_LT, + STATE(4881), 1, + sym_arguments, + STATE(4961), 1, + sym_type_arguments, + STATE(6438), 1, + sym_comment, + [218482] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - [121571] = 11, + ACTIONS(10144), 1, + anon_sym_RBRACK, + STATE(6439), 1, + sym_comment, + [218504] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10099), 1, + anon_sym_SQUOTE, + STATE(6440), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6277), 1, + STATE(6468), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [218524] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10085), 1, sym_identifier, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6281), 1, - anon_sym_extends, - ACTIONS(6283), 1, - anon_sym_implements, - STATE(2145), 1, - sym_class_body, - STATE(3324), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4521), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [121605] = 8, + ACTIONS(10087), 1, + anon_sym_const, + ACTIONS(10146), 1, + anon_sym_GT, + STATE(6441), 1, + sym_comment, + STATE(8069), 1, + sym_type_parameter, + [218546] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10148), 1, + anon_sym_DQUOTE, + STATE(6442), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6287), 1, - anon_sym_BANG, - STATE(3723), 1, - sym_type_annotation, - STATE(4016), 1, - sym__initializer, - ACTIONS(6289), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6285), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [121633] = 11, + STATE(6445), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [218566] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10148), 1, + anon_sym_SQUOTE, + STATE(6443), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6281), 1, + STATE(6446), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [218586] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - ACTIONS(6283), 1, - anon_sym_implements, - ACTIONS(6291), 1, - sym_identifier, - ACTIONS(6293), 1, - anon_sym_LBRACE, - STATE(1713), 1, - sym_class_body, - STATE(3340), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4617), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [121667] = 10, - ACTIONS(3), 1, + ACTIONS(10150), 1, + anon_sym_RBRACK, + STATE(6444), 1, sym_comment, - ACTIONS(1621), 1, + [218608] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10152), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3807), 1, - anon_sym_LBRACE, - ACTIONS(6295), 1, - sym_identifier, - ACTIONS(6297), 1, - anon_sym_STAR, - STATE(4533), 1, - sym_string, - STATE(4544), 1, - sym_import_require_clause, - STATE(4546), 1, - sym_import_clause, - STATE(4877), 2, - sym_namespace_import, - sym_named_imports, - [121699] = 11, + STATE(6423), 1, + aux_sym_string_repeat1, + STATE(6445), 1, + sym_comment, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [218628] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10152), 1, + anon_sym_SQUOTE, + STATE(6424), 1, + aux_sym_string_repeat2, + STATE(6446), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6281), 1, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [218648] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - ACTIONS(6283), 1, - anon_sym_implements, - ACTIONS(6299), 1, - sym_identifier, - STATE(2116), 1, - sym_class_body, - STATE(3255), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4488), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [121733] = 8, - ACTIONS(3), 1, + ACTIONS(10154), 1, + anon_sym_QMARK, + STATE(6447), 1, sym_comment, - ACTIONS(6102), 1, + [218670] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5190), 1, anon_sym_COLON, - ACTIONS(6287), 1, - anon_sym_BANG, - ACTIONS(6301), 1, + ACTIONS(7839), 1, anon_sym_EQ, - STATE(3723), 1, - sym_type_annotation, - STATE(3803), 1, - sym__initializer, - ACTIONS(6289), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6285), 3, - sym__automatic_semicolon, + STATE(6448), 1, + sym_comment, + ACTIONS(10156), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [218690] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, + STATE(6418), 1, + aux_sym_variable_declaration_repeat1, + STATE(6449), 1, + sym_comment, + ACTIONS(10158), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [121761] = 4, - ACTIONS(3), 1, + [218710] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + ACTIONS(10160), 1, + anon_sym_SEMI, + ACTIONS(10162), 1, + sym__automatic_semicolon, + STATE(6450), 1, sym_comment, - ACTIONS(6273), 1, - anon_sym_COLON, - STATE(3385), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(6303), 6, + STATE(8057), 1, + sym_import_attribute, + [218732] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6451), 1, + sym_comment, + STATE(7634), 1, + sym_import_attribute, + ACTIONS(10164), 2, sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [121781] = 11, - ACTIONS(3), 1, + [218752] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6452), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6281), 1, - anon_sym_extends, - ACTIONS(6283), 1, - anon_sym_implements, - ACTIONS(6305), 1, - sym_identifier, - STATE(2145), 1, - sym_class_body, - STATE(3324), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4521), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [121815] = 10, - ACTIONS(3), 1, + STATE(7635), 1, + sym_import_attribute, + ACTIONS(10166), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [218772] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6453), 1, sym_comment, - ACTIONS(1621), 1, + STATE(7636), 1, + sym__from_clause, + ACTIONS(10168), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [218792] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6454), 1, + sym_comment, + STATE(7756), 1, + sym_import_attribute, + ACTIONS(10170), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [218812] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10172), 1, anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(3807), 1, - anon_sym_LBRACE, - ACTIONS(6295), 1, - sym_identifier, - ACTIONS(6297), 1, - anon_sym_STAR, - STATE(4542), 1, - sym_import_clause, - STATE(4642), 1, - sym_import_require_clause, - STATE(4643), 1, - sym_string, - STATE(4877), 2, - sym_namespace_import, - sym_named_imports, - [121847] = 11, + STATE(6455), 1, + sym_comment, + STATE(6457), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [218832] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10172), 1, + anon_sym_SQUOTE, + STATE(6456), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6281), 1, - anon_sym_extends, - ACTIONS(6283), 1, - anon_sym_implements, - ACTIONS(6293), 1, - anon_sym_LBRACE, - ACTIONS(6307), 1, - sym_identifier, - STATE(1711), 1, - sym_class_body, - STATE(3366), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4549), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [121881] = 11, + STATE(6458), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [218852] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10174), 1, + anon_sym_DQUOTE, + STATE(6423), 1, + aux_sym_string_repeat1, + STATE(6457), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6281), 1, - anon_sym_extends, - ACTIONS(6283), 1, - anon_sym_implements, - ACTIONS(6309), 1, - sym_identifier, - STATE(2116), 1, - sym_class_body, - STATE(3255), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4488), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [121915] = 11, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [218872] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10174), 1, + anon_sym_SQUOTE, + STATE(6424), 1, + aux_sym_string_repeat2, + STATE(6458), 1, + sym_comment, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [218892] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8661), 1, + anon_sym_DOT, + ACTIONS(10176), 1, + anon_sym_COMMA, + ACTIONS(10178), 1, + anon_sym_GT, + STATE(6459), 1, sym_comment, - ACTIONS(2752), 1, + STATE(7011), 1, + aux_sym_type_arguments_repeat1, + [218914] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4497), 1, + anon_sym_LPAREN, + ACTIONS(7717), 1, anon_sym_LT, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6281), 1, - anon_sym_extends, - ACTIONS(6283), 1, - anon_sym_implements, - ACTIONS(6311), 1, - sym_identifier, - STATE(2145), 1, - sym_class_body, - STATE(3324), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4521), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [121949] = 11, - ACTIONS(3), 1, + STATE(4772), 1, + sym_arguments, + STATE(4914), 1, + sym_type_arguments, + STATE(6460), 1, sym_comment, - ACTIONS(2752), 1, + [218936] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(6281), 1, - anon_sym_extends, - ACTIONS(6283), 1, - anon_sym_implements, - ACTIONS(6293), 1, - anon_sym_LBRACE, - ACTIONS(6313), 1, - sym_identifier, - STATE(2397), 1, - sym_class_body, - STATE(3356), 1, + STATE(6461), 1, + sym_comment, + STATE(8106), 1, sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4506), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [121983] = 11, + STATE(8218), 1, + sym_formal_parameters, + [218958] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10180), 1, + anon_sym_DQUOTE, + STATE(6301), 1, + aux_sym_string_repeat1, + STATE(6462), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6281), 1, - anon_sym_extends, - ACTIONS(6283), 1, - anon_sym_implements, - ACTIONS(6315), 1, - sym_identifier, - STATE(2145), 1, - sym_class_body, - STATE(3324), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4521), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [122017] = 11, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [218978] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10180), 1, + anon_sym_SQUOTE, + STATE(6463), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6281), 1, - anon_sym_extends, - ACTIONS(6283), 1, - anon_sym_implements, - ACTIONS(6317), 1, - sym_identifier, - STATE(2116), 1, - sym_class_body, - STATE(3255), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4488), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [122051] = 11, + STATE(6464), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [218998] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9870), 1, + anon_sym_SQUOTE, + STATE(6424), 1, + aux_sym_string_repeat2, + STATE(6464), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6281), 1, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219018] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - ACTIONS(6283), 1, - anon_sym_implements, - ACTIONS(6319), 1, - sym_identifier, - STATE(2116), 1, - sym_class_body, - STATE(3255), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4488), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [122085] = 9, - ACTIONS(3), 1, + ACTIONS(10182), 1, + anon_sym_RPAREN, + STATE(6465), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6321), 1, - sym_identifier, - ACTIONS(6325), 1, - anon_sym_COMMA, - ACTIONS(6327), 1, + [219040] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9750), 1, anon_sym_RBRACE, - STATE(4065), 1, - sym_export_specifier, - ACTIONS(6323), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4061), 2, - sym__module_export_name, - sym_string, - [122115] = 5, - ACTIONS(3), 1, + STATE(6466), 1, sym_comment, - ACTIONS(6253), 1, + ACTIONS(5721), 3, anon_sym_AMP, - ACTIONS(6255), 1, anon_sym_PIPE, - ACTIONS(6257), 1, anon_sym_extends, - ACTIONS(6329), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + [219058] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10184), 1, anon_sym_COMMA, - anon_sym_RBRACE, + STATE(6467), 1, + sym_comment, + STATE(6505), 1, + aux_sym_ui_pragma_repeat1, + ACTIONS(10186), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [122137] = 11, + [219078] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10188), 1, + anon_sym_SQUOTE, + STATE(6424), 1, + aux_sym_string_repeat2, + STATE(6468), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6281), 1, - anon_sym_extends, - ACTIONS(6283), 1, - anon_sym_implements, - ACTIONS(6331), 1, - sym_identifier, - STATE(2145), 1, - sym_class_body, - STATE(3324), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4521), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [122171] = 6, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219098] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10190), 1, + anon_sym_DQUOTE, + STATE(6469), 1, sym_comment, - ACTIONS(6333), 1, - anon_sym_LT, - ACTIONS(6335), 1, - anon_sym_DOT, - ACTIONS(6337), 1, - anon_sym_is, - STATE(2885), 1, - sym_type_arguments, - ACTIONS(3353), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [122195] = 9, + STATE(6471), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [219118] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10190), 1, + anon_sym_SQUOTE, + STATE(6470), 1, sym_comment, - ACTIONS(1412), 1, + STATE(6472), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219138] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10192), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, + STATE(6423), 1, + aux_sym_string_repeat1, + STATE(6471), 1, + sym_comment, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [219158] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10192), 1, anon_sym_SQUOTE, - ACTIONS(6339), 1, - sym_identifier, - ACTIONS(6343), 1, - anon_sym_COMMA, - ACTIONS(6345), 1, - anon_sym_RBRACE, - STATE(4097), 1, - sym_import_specifier, - ACTIONS(6341), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4726), 2, - sym__module_export_name, - sym_string, - [122225] = 2, + STATE(6424), 1, + aux_sym_string_repeat2, + STATE(6472), 1, + sym_comment, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219178] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10194), 1, + anon_sym_DQUOTE, + STATE(6473), 1, sym_comment, - ACTIONS(1509), 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, - [122241] = 11, + STATE(6476), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [219198] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9967), 1, + sym_escape_sequence, + STATE(6474), 1, + sym_comment, + ACTIONS(10196), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [219216] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10194), 1, + anon_sym_SQUOTE, + STATE(6475), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6281), 1, - anon_sym_extends, - ACTIONS(6283), 1, - anon_sym_implements, - ACTIONS(6347), 1, - sym_identifier, - STATE(2116), 1, - sym_class_body, - STATE(3255), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4488), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [122275] = 2, + STATE(6477), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219236] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10199), 1, + anon_sym_DQUOTE, + STATE(6423), 1, + aux_sym_string_repeat1, + STATE(6476), 1, sym_comment, - ACTIONS(2123), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [219256] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10199), 1, + anon_sym_SQUOTE, + STATE(6424), 1, + aux_sym_string_repeat2, + STATE(6477), 1, + sym_comment, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219276] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, + STATE(6478), 1, + sym_comment, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10201), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [122290] = 10, + [219296] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10203), 1, + anon_sym_DQUOTE, + STATE(6479), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6349), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2530), 1, - sym_class_body, - STATE(3287), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4580), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [122321] = 3, + STATE(6481), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [219316] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10203), 1, + anon_sym_SQUOTE, + STATE(6480), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_AMP, - ACTIONS(4278), 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, - [122338] = 2, + STATE(6482), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219336] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10205), 1, + anon_sym_DQUOTE, + STATE(6423), 1, + aux_sym_string_repeat1, + STATE(6481), 1, sym_comment, - ACTIONS(4270), 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, - [122353] = 6, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [219356] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10205), 1, + anon_sym_SQUOTE, + STATE(6424), 1, + aux_sym_string_repeat2, + STATE(6482), 1, sym_comment, - ACTIONS(6074), 1, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219376] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, - ACTIONS(6076), 1, + ACTIONS(7733), 1, anon_sym_PIPE, - ACTIONS(6078), 1, + ACTIONS(7735), 1, anon_sym_extends, - ACTIONS(6357), 1, - anon_sym_EQ, - ACTIONS(6329), 5, - anon_sym_LBRACE, + ACTIONS(10207), 1, + anon_sym_QMARK, + STATE(6483), 1, + sym_comment, + [219398] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [122376] = 10, - ACTIONS(3), 1, + STATE(6478), 1, + aux_sym_variable_declaration_repeat1, + STATE(6484), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2206), 1, - sym_class_body, - STATE(3261), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4603), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [122407] = 2, + ACTIONS(10209), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [219418] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10211), 1, + anon_sym_SQUOTE, + STATE(6424), 1, + aux_sym_string_repeat2, + STATE(6485), 1, sym_comment, - ACTIONS(6359), 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, - [122422] = 10, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219438] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10211), 1, + anon_sym_DQUOTE, + STATE(6423), 1, + aux_sym_string_repeat1, + STATE(6486), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6361), 1, - anon_sym_LBRACE, - STATE(189), 1, - sym_class_body, - STATE(3283), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4397), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [122453] = 2, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [219458] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10213), 1, + anon_sym_SQUOTE, + STATE(6485), 1, + aux_sym_string_repeat2, + STATE(6487), 1, sym_comment, - ACTIONS(2115), 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, - [122468] = 7, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219478] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10213), 1, + anon_sym_DQUOTE, + STATE(6486), 1, + aux_sym_string_repeat1, + STATE(6488), 1, sym_comment, - ACTIONS(141), 1, - anon_sym_COMMA, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3998), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [122493] = 10, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [219498] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10215), 1, + anon_sym_DQUOTE, + STATE(6489), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6363), 1, - anon_sym_LBRACE, - STATE(2611), 1, - sym_class_body, - STATE(3260), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4604), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [122524] = 8, + STATE(6491), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [219518] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10215), 1, + anon_sym_SQUOTE, + STATE(6490), 1, sym_comment, - ACTIONS(1412), 1, + STATE(6492), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219538] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10217), 1, anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6321), 1, - sym_identifier, - ACTIONS(6365), 1, - anon_sym_RBRACE, - STATE(4345), 1, - sym_export_specifier, - ACTIONS(6323), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4061), 2, - sym__module_export_name, - sym_string, - [122551] = 5, + STATE(6423), 1, + aux_sym_string_repeat1, + STATE(6491), 1, + sym_comment, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [219558] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10217), 1, + anon_sym_SQUOTE, + STATE(6424), 1, + aux_sym_string_repeat2, + STATE(6492), 1, sym_comment, - ACTIONS(6333), 1, - anon_sym_LT, - ACTIONS(6335), 1, - anon_sym_DOT, - STATE(2885), 1, - sym_type_arguments, - ACTIONS(3353), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [122572] = 2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219578] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10219), 1, + anon_sym_DQUOTE, + STATE(6493), 1, sym_comment, - ACTIONS(2111), 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, - [122587] = 7, + STATE(6496), 1, + aux_sym_string_repeat1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [219598] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10219), 1, + anon_sym_SQUOTE, + STATE(6494), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3714), 1, - sym_type_annotation, - STATE(4024), 1, - sym__initializer, - ACTIONS(6144), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6142), 3, - sym__automatic_semicolon, + STATE(6497), 1, + aux_sym_string_repeat2, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219618] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8003), 1, + anon_sym_EQ, + STATE(6495), 1, + sym_comment, + STATE(7990), 1, + sym_default_type, + ACTIONS(10221), 2, anon_sym_COMMA, - anon_sym_SEMI, - [122612] = 10, + anon_sym_GT, + [219638] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10223), 1, + anon_sym_DQUOTE, + STATE(6423), 1, + aux_sym_string_repeat1, + STATE(6496), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6293), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(1696), 1, - sym_class_body, - STATE(3328), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4596), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [122643] = 2, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [219658] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10223), 1, + anon_sym_SQUOTE, + STATE(6424), 1, + aux_sym_string_repeat2, + STATE(6497), 1, sym_comment, - ACTIONS(6367), 9, - anon_sym_EQ, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219678] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10227), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [122658] = 3, - ACTIONS(3), 1, + STATE(6498), 1, sym_comment, - ACTIONS(2794), 1, + STATE(6539), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(10225), 2, anon_sym_LBRACE, - ACTIONS(2796), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_implements, + [219698] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10085), 1, + sym_identifier, + ACTIONS(10087), 1, + anon_sym_const, + ACTIONS(10229), 1, + anon_sym_GT, + STATE(6499), 1, + sym_comment, + STATE(8069), 1, + sym_type_parameter, + [219720] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [122675] = 7, - ACTIONS(3), 1, + ACTIONS(10231), 1, + anon_sym_COLON, + STATE(6500), 1, sym_comment, - ACTIONS(6094), 1, + [219742] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8753), 1, anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3561), 1, - sym_type_annotation, - STATE(4224), 1, + STATE(6501), 1, + sym_comment, + STATE(7966), 1, sym__initializer, - ACTIONS(6116), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6114), 3, - sym__automatic_semicolon, + ACTIONS(10233), 2, anon_sym_COMMA, - anon_sym_SEMI, - [122700] = 7, + anon_sym_RPAREN, + [219762] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9570), 1, + sym_identifier, + STATE(6502), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3723), 1, - sym_type_annotation, - STATE(4091), 1, - sym__initializer, - ACTIONS(6289), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6285), 3, - sym__automatic_semicolon, + STATE(8108), 1, + sym_ui_signal_parameter, + STATE(8200), 1, + sym_nested_identifier, + STATE(8365), 1, + sym_nested_type_identifier, + [219784] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6503), 1, + sym_comment, + ACTIONS(10235), 4, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - [122725] = 2, + anon_sym_RBRACE, + anon_sym_from, + [219800] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10188), 1, + anon_sym_DQUOTE, + STATE(6423), 1, + aux_sym_string_repeat1, + STATE(6504), 1, sym_comment, - ACTIONS(4070), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [219820] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10184), 1, anon_sym_COMMA, + ACTIONS(10237), 1, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [122740] = 2, + ACTIONS(10239), 1, + sym__automatic_semicolon, + STATE(6505), 1, + sym_comment, + STATE(6573), 1, + aux_sym_ui_pragma_repeat1, + [219842] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2496), 1, + anon_sym_DQUOTE, + ACTIONS(2498), 1, + anon_sym_SQUOTE, + ACTIONS(10241), 1, + sym_identifier, + STATE(6506), 1, + sym_comment, + STATE(6600), 1, + sym_string, + [219864] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(10243), 1, + anon_sym_class, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6507), 1, + sym_comment, + STATE(6520), 1, + sym_decorator, + [219886] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(6508), 1, + sym_comment, + STATE(8008), 1, + sym_type_parameters, + STATE(8563), 1, + sym_formal_parameters, + [219908] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6509), 1, sym_comment, - ACTIONS(4152), 9, + STATE(8154), 1, + sym__from_clause, + ACTIONS(6363), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, + [219928] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9038), 1, + anon_sym_finally, + STATE(6510), 1, + sym_comment, + STATE(7880), 1, + sym_finally_clause, + ACTIONS(10245), 2, + anon_sym_else, + anon_sym_while, + [219948] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - [122755] = 7, - ACTIONS(3), 1, + ACTIONS(10247), 1, + anon_sym_RBRACK, + STATE(6511), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6301), 1, - anon_sym_EQ, - STATE(3723), 1, - sym_type_annotation, - STATE(3783), 1, - sym__initializer, - ACTIONS(6289), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(6285), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [219970] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + ACTIONS(10249), 1, anon_sym_SEMI, - [122780] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4507), 9, + ACTIONS(10251), 1, 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, - [122795] = 3, - ACTIONS(3), 1, + STATE(6512), 1, sym_comment, - ACTIONS(2924), 1, - anon_sym_LBRACE, - ACTIONS(2926), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(7814), 1, + sym_import_attribute, + [219992] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [122812] = 2, - ACTIONS(3), 1, + ACTIONS(10253), 1, + anon_sym_RBRACK, + STATE(6513), 1, sym_comment, - ACTIONS(4148), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + [220014] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - [122827] = 5, + ACTIONS(10255), 1, + anon_sym_COLON, + STATE(6514), 1, + sym_comment, + [220036] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9963), 1, + sym__glimmer_template_content, + ACTIONS(10131), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3631), 1, + sym_glimmer_closing_tag, + STATE(6431), 1, + aux_sym_glimmer_template_repeat1, + STATE(6515), 1, sym_comment, - ACTIONS(6355), 1, + [220058] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(7733), 1, anon_sym_PIPE, - ACTIONS(6371), 1, + ACTIONS(7735), 1, anon_sym_extends, - ACTIONS(4132), 6, + ACTIONS(10257), 1, + anon_sym_RBRACK, + STATE(6516), 1, + sym_comment, + [220080] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6517), 1, + sym_comment, + STATE(7858), 1, + sym__from_clause, + ACTIONS(6510), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [122848] = 2, - ACTIONS(3), 1, + [220100] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6518), 1, + sym_comment, + ACTIONS(8362), 4, + anon_sym_default, + anon_sym_readonly, + anon_sym_property, + anon_sym_required, + [220116] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6519), 1, sym_comment, - ACTIONS(4132), 9, + STATE(7899), 1, + sym_import_attribute, + ACTIONS(10259), 2, 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, - [122863] = 5, - ACTIONS(3), 1, + [220136] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6520), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_AMP, - ACTIONS(6369), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_extends, - ACTIONS(4128), 6, + ACTIONS(10261), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [220152] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6521), 1, + sym_comment, + STATE(7903), 1, + sym_import_attribute, + ACTIONS(10263), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [122884] = 5, - ACTIONS(3), 1, + [220172] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + ACTIONS(10265), 1, + anon_sym_SEMI, + ACTIONS(10267), 1, + sym__automatic_semicolon, + STATE(6522), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_AMP, - ACTIONS(6369), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_extends, - ACTIONS(4118), 6, + STATE(7904), 1, + sym_import_attribute, + [220194] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, + anon_sym_LT, + STATE(6523), 1, + sym_comment, + STATE(7921), 1, + sym_type_parameters, + STATE(8552), 1, + sym_formal_parameters, + [220216] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, + anon_sym_COMMA, + STATE(6524), 1, + sym_comment, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10269), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_SEMI, + [220236] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, + STATE(6525), 1, + sym_comment, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10271), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - [122905] = 2, - ACTIONS(3), 1, + [220256] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + ACTIONS(10273), 1, + anon_sym_SEMI, + ACTIONS(10275), 1, + sym__automatic_semicolon, + STATE(6526), 1, + sym_comment, + STATE(7776), 1, + sym_import_attribute, + [220278] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6527), 1, sym_comment, - ACTIONS(2119), 9, + STATE(7846), 1, + sym_import_attribute, + ACTIONS(10277), 2, 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, - [122920] = 10, - ACTIONS(3), 1, + [220298] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6528), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6349), 1, + STATE(7849), 1, + sym_import_attribute, + ACTIONS(10279), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [220318] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6529), 1, + sym_comment, + STATE(7853), 1, + sym__from_clause, + ACTIONS(6489), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [220338] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8673), 1, + anon_sym_COMMA, + ACTIONS(10281), 1, anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2566), 1, - sym_class_body, - STATE(3308), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4611), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [122951] = 8, - ACTIONS(3), 1, + ACTIONS(10283), 1, + anon_sym_LBRACE_PIPE, + STATE(6327), 1, + aux_sym_extends_type_clause_repeat1, + STATE(6530), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6339), 1, - sym_identifier, - ACTIONS(6373), 1, - anon_sym_RBRACE, - STATE(4339), 1, - sym_import_specifier, - ACTIONS(6341), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4726), 2, - sym__module_export_name, - sym_string, - [122978] = 3, - ACTIONS(3), 1, + [220360] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6531), 1, sym_comment, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(4495), 8, + STATE(8181), 1, + sym_import_attribute, + ACTIONS(10285), 2, 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, - [122995] = 2, - ACTIONS(3), 1, + [220380] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6532), 1, sym_comment, - ACTIONS(4294), 9, + STATE(7793), 1, + sym__from_clause, + ACTIONS(10287), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_SEMI, + [220400] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(10289), 1, + anon_sym_class, + STATE(5713), 1, + aux_sym_export_statement_repeat1, + STATE(6520), 1, + sym_decorator, + STATE(6533), 1, + sym_comment, + [220422] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10291), 1, anon_sym_COMMA, + ACTIONS(6585), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(6534), 2, + sym_comment, + aux_sym_array_repeat1, + [220440] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6535), 1, + sym_comment, + STATE(7767), 1, + sym_import_attribute, + ACTIONS(10294), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, + [220460] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - [123010] = 2, + ACTIONS(10296), 1, + anon_sym_RPAREN, + STATE(6536), 1, + sym_comment, + [220482] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8673), 1, + anon_sym_COMMA, + ACTIONS(10298), 1, + anon_sym_LBRACE, + ACTIONS(10300), 1, + anon_sym_LBRACE_PIPE, + STATE(6327), 1, + aux_sym_extends_type_clause_repeat1, + STATE(6537), 1, + sym_comment, + [220504] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10302), 1, + sym_identifier, + STATE(5746), 1, + sym_nested_type_identifier, + STATE(6538), 1, sym_comment, - ACTIONS(4485), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(7313), 1, + sym_generic_type, + STATE(8414), 1, + sym_nested_identifier, + [220526] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10227), 1, + anon_sym_COMMA, + STATE(6539), 1, + sym_comment, + STATE(6550), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(10304), 2, anon_sym_LBRACE, + anon_sym_implements, + [220546] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10306), 1, anon_sym_COMMA, + ACTIONS(10309), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, + STATE(6540), 2, + sym_comment, + aux_sym_variable_declaration_repeat1, + [220564] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - [123025] = 2, - ACTIONS(3), 1, + ACTIONS(10311), 1, + anon_sym_RBRACK, + STATE(6541), 1, + sym_comment, + [220586] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + ACTIONS(10313), 1, + anon_sym_LT, + STATE(2836), 1, + sym_type_arguments, + STATE(2838), 1, + sym_arguments, + STATE(6542), 1, + sym_comment, + [220608] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10317), 1, + anon_sym_DOT, + STATE(6543), 1, sym_comment, - ACTIONS(1535), 9, + ACTIONS(10315), 3, sym__automatic_semicolon, anon_sym_as, + anon_sym_SEMI, + [220626] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8673), 1, + anon_sym_COMMA, + ACTIONS(10281), 1, anon_sym_LBRACE, + ACTIONS(10283), 1, + anon_sym_LBRACE_PIPE, + STATE(6327), 1, + aux_sym_extends_type_clause_repeat1, + STATE(6544), 1, + sym_comment, + [220648] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - aux_sym_ui_version_specifier_token1, - [123040] = 10, - ACTIONS(3), 1, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + STATE(6545), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(10319), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [220668] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2178), 1, - sym_class_body, - STATE(3360), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4364), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [123071] = 2, - ACTIONS(3), 1, + STATE(6546), 1, sym_comment, - ACTIONS(4282), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + STATE(7947), 1, + sym_type_parameters, + STATE(8453), 1, + sym_formal_parameters, + [220690] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [123086] = 2, - ACTIONS(3), 1, + STATE(6525), 1, + aux_sym_variable_declaration_repeat1, + STATE(6547), 1, sym_comment, - ACTIONS(4086), 9, + ACTIONS(10321), 2, 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, - [123101] = 2, - ACTIONS(3), 1, + [220710] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6548), 1, sym_comment, - ACTIONS(4082), 9, + STATE(7882), 1, + sym_import_attribute, + ACTIONS(10323), 2, 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, - [123116] = 2, - ACTIONS(3), 1, + [220730] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + STATE(6549), 1, sym_comment, - ACTIONS(4078), 9, + STATE(7884), 1, + sym_import_attribute, + ACTIONS(10325), 2, 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, - [123131] = 4, - ACTIONS(3), 1, + [220750] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10329), 1, + anon_sym_COMMA, + ACTIONS(10327), 2, + anon_sym_LBRACE, + anon_sym_implements, + STATE(6550), 2, sym_comment, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(4336), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4469), 5, + aux_sym_extends_clause_repeat1, + [220768] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6551), 1, + sym_comment, + STATE(7885), 1, + sym__from_clause, + ACTIONS(10332), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_SEMI, - [123150] = 7, - ACTIONS(3), 1, + [220788] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10334), 1, + anon_sym_EQ, + STATE(6552), 1, sym_comment, - ACTIONS(141), 1, + STATE(7391), 1, + sym__initializer, + ACTIONS(8094), 2, + anon_sym_in, + anon_sym_of, + [220808] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10336), 1, + anon_sym_EQ, + ACTIONS(10338), 1, anon_sym_COMMA, - ACTIONS(2015), 1, + ACTIONS(10340), 1, anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4225), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, + STATE(6553), 1, + sym_comment, + STATE(6832), 1, + aux_sym__qml_enum_body_repeat1, + [220830] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(7835), 1, anon_sym_LT, - anon_sym_QMARK, - [123175] = 5, - ACTIONS(3), 1, + STATE(6554), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_AMP, - ACTIONS(6369), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_extends, - ACTIONS(4455), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + STATE(7997), 1, + sym_type_parameters, + STATE(8577), 1, + sym_formal_parameters, + [220852] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + ACTIONS(10342), 1, anon_sym_SEMI, - anon_sym_LBRACK, - [123196] = 10, - ACTIONS(3), 1, + ACTIONS(10344), 1, + sym__automatic_semicolon, + STATE(6555), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6377), 1, + STATE(8159), 1, + sym_import_attribute, + [220874] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10346), 1, + anon_sym_STAR, + ACTIONS(10348), 1, anon_sym_LBRACE, - STATE(691), 1, - sym_class_body, - STATE(3292), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4410), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [123227] = 10, - ACTIONS(3), 1, + STATE(6556), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6293), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(1751), 1, - sym_class_body, - STATE(3285), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4616), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [123258] = 2, - ACTIONS(3), 1, + STATE(8224), 2, + sym_namespace_import, + sym_named_imports, + [220894] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9922), 1, + anon_sym_EQ, + ACTIONS(9924), 1, + anon_sym_COMMA, + ACTIONS(10350), 1, + anon_sym_RBRACK, + STATE(6557), 1, + sym_comment, + STATE(6779), 1, + aux_sym_array_pattern_repeat1, + [220916] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6558), 1, sym_comment, - ACTIONS(4074), 9, + ACTIONS(6648), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, + [220932] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - [123273] = 8, - ACTIONS(3), 1, + ACTIONS(10352), 1, + anon_sym_COLON, + STATE(6559), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6339), 1, - sym_identifier, - ACTIONS(6379), 1, - anon_sym_RBRACE, - STATE(4339), 1, - sym_import_specifier, - ACTIONS(6341), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4726), 2, - sym__module_export_name, - sym_string, - [123300] = 2, - ACTIONS(3), 1, + [220954] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8661), 1, + anon_sym_DOT, + ACTIONS(10354), 1, + anon_sym_COMMA, + ACTIONS(10356), 1, + anon_sym_GT, + STATE(6560), 1, sym_comment, - ACTIONS(4010), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(6725), 1, + aux_sym_type_arguments_repeat1, + [220976] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6561), 1, + sym_comment, + ACTIONS(9382), 4, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_on, + [220992] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - [123315] = 4, + ACTIONS(10358), 1, + anon_sym_RBRACK, + STATE(6562), 1, + sym_comment, + [221014] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10085), 1, + sym_identifier, + ACTIONS(10087), 1, + anon_sym_const, + ACTIONS(10360), 1, + anon_sym_GT, + STATE(6563), 1, + sym_comment, + STATE(8069), 1, + sym_type_parameter, + [221036] = 7, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10362), 1, + sym_identifier, + STATE(5584), 1, + sym_nested_type_identifier, + STATE(6417), 1, + sym_generic_type, + STATE(6564), 1, sym_comment, - ACTIONS(6381), 1, - anon_sym_COLON, - STATE(3858), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(6271), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + STATE(8414), 1, + sym_nested_identifier, + [221058] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9878), 1, + anon_sym_with, + ACTIONS(10364), 1, anon_sym_SEMI, - [123334] = 10, - ACTIONS(3), 1, + ACTIONS(10366), 1, + sym__automatic_semicolon, + STATE(6565), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6383), 1, + STATE(7963), 1, + sym_import_attribute, + [221080] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, anon_sym_LBRACE, - STATE(744), 1, - sym_class_body, - STATE(3305), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4314), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [123365] = 10, - ACTIONS(3), 1, + STATE(6566), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6279), 1, + STATE(7982), 1, + sym_statement_block, + ACTIONS(2324), 2, + anon_sym_else, + anon_sym_while, + [221100] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6567), 1, + sym_comment, + ACTIONS(2398), 4, anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2294), 1, - sym_class_body, - STATE(3344), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4448), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [123396] = 2, - ACTIONS(3), 1, + anon_sym_else, + anon_sym_while, + anon_sym_DOT, + [221116] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, + anon_sym_COMMA, + STATE(6540), 1, + aux_sym_variable_declaration_repeat1, + STATE(6568), 1, sym_comment, - ACTIONS(4451), 9, + ACTIONS(10368), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_SEMI, + [221136] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9874), 1, anon_sym_COMMA, + STATE(6568), 1, + aux_sym_variable_declaration_repeat1, + STATE(6569), 1, + sym_comment, + ACTIONS(10370), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [123411] = 2, + [221156] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10372), 1, + anon_sym_SQUOTE, + STATE(6424), 1, + aux_sym_string_repeat2, + STATE(6570), 1, sym_comment, - ACTIONS(4342), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [221176] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10372), 1, + anon_sym_DQUOTE, + STATE(6423), 1, + aux_sym_string_repeat1, + STATE(6571), 1, + sym_comment, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [221196] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10374), 1, + anon_sym_SQUOTE, + STATE(6570), 1, + aux_sym_string_repeat2, + STATE(6572), 1, + sym_comment, + ACTIONS(9904), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [221216] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10376), 1, anon_sym_COMMA, + ACTIONS(10379), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [123426] = 10, + STATE(6573), 2, + sym_comment, + aux_sym_ui_pragma_repeat1, + [221234] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10374), 1, + anon_sym_DQUOTE, + STATE(6571), 1, + aux_sym_string_repeat1, + STATE(6574), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(9872), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [221254] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(6293), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2368), 1, - sym_class_body, - STATE(3258), 1, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(5362), 1, + sym_formal_parameters, + STATE(6575), 1, + sym_comment, + STATE(8004), 1, sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4391), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [123457] = 4, - ACTIONS(3), 1, + [221276] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6576), 1, sym_comment, - ACTIONS(6355), 1, + ACTIONS(10381), 4, + anon_sym_default, + anon_sym_readonly, + anon_sym_property, + anon_sym_required, + [221292] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(7733), 1, anon_sym_PIPE, - ACTIONS(4350), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7735), 1, anon_sym_extends, - [123476] = 3, - ACTIONS(3), 1, + ACTIONS(10383), 1, + anon_sym_RBRACK, + STATE(6577), 1, sym_comment, - ACTIONS(2920), 1, + [221314] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6578), 1, + sym_comment, + ACTIONS(2386), 4, anon_sym_LBRACE, - ACTIONS(2922), 8, - anon_sym_as, + anon_sym_else, + anon_sym_while, + anon_sym_DOT, + [221330] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8753), 1, + anon_sym_EQ, + STATE(6579), 1, + sym_comment, + STATE(8174), 1, + sym__initializer, + ACTIONS(10385), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RPAREN, + [221350] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, anon_sym_AMP, + ACTIONS(7733), 1, anon_sym_PIPE, + ACTIONS(7735), 1, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [123493] = 10, - ACTIONS(3), 1, + ACTIONS(10387), 1, + anon_sym_RBRACK, + STATE(6580), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2225), 1, - sym_class_body, - STATE(3343), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4375), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [123524] = 2, - ACTIONS(3), 1, + [221372] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6581), 1, sym_comment, - ACTIONS(4328), 9, + ACTIONS(10389), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [123539] = 7, - ACTIONS(3), 1, + [221387] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6582), 1, sym_comment, - ACTIONS(141), 1, + ACTIONS(10391), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(4030), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [123564] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LBRACE, - ACTIONS(5947), 1, - anon_sym_COLON, - ACTIONS(5949), 1, - anon_sym_DOT, - ACTIONS(6387), 1, - anon_sym_on, - STATE(2492), 1, - sym_ui_object_initializer, - ACTIONS(6385), 4, - anon_sym_default, - anon_sym_readonly, - anon_sym_property, - anon_sym_required, - [123589] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [221402] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6583), 1, sym_comment, - ACTIONS(4431), 9, + ACTIONS(10393), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [123604] = 7, - ACTIONS(3), 1, + [221417] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6584), 1, sym_comment, - ACTIONS(141), 1, + ACTIONS(10395), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(2041), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [123629] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6389), 1, - anon_sym_LBRACE, - STATE(896), 1, - sym_class_body, - STATE(3300), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4481), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [123660] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + [221432] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6585), 1, sym_comment, - ACTIONS(141), 1, + ACTIONS(10391), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(2039), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [123685] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [221447] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6586), 1, sym_comment, - ACTIONS(4286), 9, + ACTIONS(10391), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [123700] = 10, - ACTIONS(3), 1, + [221462] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10397), 1, + anon_sym_LPAREN, + ACTIONS(10399), 1, + anon_sym_await, + STATE(162), 1, + sym__for_header, + STATE(6587), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(700), 1, - sym_class_body, - STATE(3362), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4342), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [123731] = 7, - ACTIONS(3), 1, + [221481] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6588), 1, sym_comment, - ACTIONS(141), 1, + ACTIONS(10401), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(3976), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [123756] = 10, - ACTIONS(3), 1, + anon_sym_SEMI, + [221496] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6589), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6361), 1, - anon_sym_LBRACE, - STATE(166), 1, - sym_class_body, - STATE(3326), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4530), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [123787] = 3, - ACTIONS(3), 1, + ACTIONS(10403), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [221511] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6590), 1, sym_comment, - ACTIONS(6375), 1, - anon_sym_LBRACK, - ACTIONS(4336), 8, + ACTIONS(10405), 3, 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, - [123804] = 2, - ACTIONS(3), 1, + [221526] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6591), 1, + sym_comment, + ACTIONS(10407), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [221541] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6592), 1, sym_comment, - ACTIONS(4138), 9, + ACTIONS(10409), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [123819] = 2, - ACTIONS(3), 1, + [221556] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10411), 1, + anon_sym_COMMA, + ACTIONS(10414), 1, + anon_sym_RBRACK, + STATE(6593), 2, sym_comment, - ACTIONS(4014), 9, + aux_sym_tuple_type_repeat1, + [221573] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6594), 1, + sym_comment, + ACTIONS(10416), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [123834] = 2, - ACTIONS(3), 1, + [221588] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6595), 1, sym_comment, - ACTIONS(4346), 9, + ACTIONS(10418), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [123849] = 3, - ACTIONS(3), 1, + [221603] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6596), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_AMP, - ACTIONS(4427), 8, + ACTIONS(10420), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [221618] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10422), 1, + anon_sym_COMMA, + ACTIONS(10424), 1, + anon_sym_RBRACE, + STATE(6597), 1, + sym_comment, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + [221637] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10426), 1, + anon_sym_COMMA, + ACTIONS(10428), 1, + anon_sym_RBRACE, + STATE(6598), 1, + sym_comment, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + [221656] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9396), 1, + anon_sym_COMMA, + ACTIONS(10430), 1, + anon_sym_RBRACE, + STATE(6599), 1, + sym_comment, + STATE(6916), 1, + aux_sym_object_pattern_repeat1, + [221675] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6600), 1, + sym_comment, + ACTIONS(10432), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [123866] = 2, - ACTIONS(3), 1, + [221690] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6601), 1, sym_comment, - ACTIONS(2796), 9, + ACTIONS(10391), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [123881] = 2, - ACTIONS(3), 1, + [221705] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6602), 1, sym_comment, - ACTIONS(4414), 9, + ACTIONS(10391), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [123896] = 10, - ACTIONS(3), 1, + [221720] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10434), 1, + anon_sym_COMMA, + ACTIONS(10437), 1, + anon_sym_RPAREN, + STATE(6603), 2, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2097), 1, - sym_class_body, - STATE(3350), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4534), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [123927] = 7, - ACTIONS(3), 1, + aux_sym_formal_parameters_repeat1, + [221737] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6604), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3708), 1, - sym_type_annotation, - STATE(4040), 1, - sym__initializer, - ACTIONS(6098), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6096), 3, + ACTIONS(10391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [123952] = 10, - ACTIONS(3), 1, + [221752] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10441), 1, + anon_sym_COLON, + STATE(6605), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(3280), 1, - sym_type_parameters, - STATE(3781), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4462), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [123983] = 10, - ACTIONS(3), 1, + ACTIONS(10439), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [221769] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + ACTIONS(10443), 1, + anon_sym_as, + STATE(6606), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(3278), 1, - sym_type_parameters, - STATE(3763), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4458), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [124014] = 10, + STATE(7383), 1, + sym__from_clause, + [221788] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6389), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10445), 1, + sym_identifier, + ACTIONS(10447), 1, anon_sym_LBRACE, - STATE(887), 1, - sym_class_body, - STATE(3277), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4457), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [124045] = 10, - ACTIONS(3), 1, + STATE(6317), 1, + sym_export_clause, + STATE(6607), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6383), 1, - anon_sym_LBRACE, - STATE(794), 1, - sym_class_body, - STATE(3323), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4399), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [124076] = 10, - ACTIONS(3), 1, + [221807] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6608), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2257), 1, - sym_class_body, - STATE(3370), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4637), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [124107] = 2, - ACTIONS(3), 1, + ACTIONS(10391), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [221822] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6609), 1, sym_comment, - ACTIONS(4314), 9, + ACTIONS(10395), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [124122] = 2, + [221837] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10449), 1, + sym_identifier, + ACTIONS(10451), 1, + anon_sym_require, + STATE(6610), 1, sym_comment, - ACTIONS(6391), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + STATE(7154), 1, + sym_nested_identifier, + [221856] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6611), 1, + sym_comment, + ACTIONS(8697), 3, + anon_sym_LBRACE, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [124137] = 2, - ACTIONS(3), 1, + anon_sym_EQ_GT, + [221871] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6612), 1, sym_comment, - ACTIONS(6393), 9, - anon_sym_EQ, + ACTIONS(10395), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + anon_sym_SEMI, + [221886] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10455), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [124152] = 2, - ACTIONS(3), 1, + STATE(6613), 1, sym_comment, - ACTIONS(2922), 9, + ACTIONS(10453), 2, 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, - [124167] = 7, - ACTIONS(3), 1, + [221903] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6614), 1, sym_comment, - ACTIONS(141), 1, + ACTIONS(10457), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(2043), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_EQ, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - STATE(4063), 1, - aux_sym_object_repeat1, - ACTIONS(3765), 4, - anon_sym_LPAREN, + anon_sym_SEMI, + [221918] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [124192] = 2, - ACTIONS(3), 1, + ACTIONS(10459), 1, + anon_sym_RPAREN, + STATE(6615), 1, sym_comment, - ACTIONS(6395), 9, - anon_sym_EQ, + STATE(8411), 1, + sym_type_annotation, + [221937] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6616), 1, + sym_comment, + ACTIONS(10407), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + anon_sym_SEMI, + [221952] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10463), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [124207] = 5, - ACTIONS(3), 1, + STATE(6617), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_AMP, - ACTIONS(6369), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_extends, - ACTIONS(4286), 6, + ACTIONS(10461), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [124228] = 2, - ACTIONS(3), 1, + [221969] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6618), 1, sym_comment, - ACTIONS(2926), 9, + ACTIONS(10465), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_with, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [124243] = 2, - ACTIONS(3), 1, + [221984] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10469), 1, + anon_sym_COLON, + STATE(6619), 1, sym_comment, - ACTIONS(4310), 9, + ACTIONS(10467), 2, 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, - [124258] = 8, + [222001] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6321), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10085), 1, sym_identifier, - ACTIONS(6397), 1, + ACTIONS(10087), 1, + anon_sym_const, + STATE(6620), 1, + sym_comment, + STATE(8069), 1, + sym_type_parameter, + [222020] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10338), 1, + anon_sym_COMMA, + ACTIONS(10471), 1, anon_sym_RBRACE, - STATE(4345), 1, - sym_export_specifier, - ACTIONS(6323), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4061), 2, - sym__module_export_name, - sym_string, - [124285] = 7, + STATE(6621), 1, + sym_comment, + STATE(6831), 1, + aux_sym__qml_enum_body_repeat1, + [222039] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10473), 1, + sym_identifier, + ACTIONS(10475), 1, + anon_sym_SEMI, + ACTIONS(10477), 1, + sym__automatic_semicolon, + STATE(6622), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3784), 1, - sym_type_annotation, - STATE(4083), 1, - sym__initializer, - ACTIONS(6124), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6122), 3, + [222058] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10479), 1, + sym_identifier, + ACTIONS(10481), 1, + anon_sym_SEMI, + ACTIONS(10483), 1, sym__automatic_semicolon, + STATE(6623), 1, + sym_comment, + [222077] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10485), 1, anon_sym_COMMA, - anon_sym_SEMI, - [124310] = 2, - ACTIONS(3), 1, + ACTIONS(10487), 1, + anon_sym_RBRACE, + STATE(6598), 1, + aux_sym_enum_body_repeat1, + STATE(6624), 1, + sym_comment, + [222096] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6625), 1, sym_comment, - ACTIONS(1673), 9, + ACTIONS(10391), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [124325] = 2, - ACTIONS(3), 1, + [222111] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6626), 1, sym_comment, - ACTIONS(1649), 9, + ACTIONS(10489), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222126] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(124), 1, anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8721), 1, + anon_sym_LBRACE_PIPE, + STATE(6627), 1, + sym_comment, + STATE(7713), 1, + sym_object_type, + [222145] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6628), 1, + sym_comment, + ACTIONS(10491), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [124340] = 10, - ACTIONS(3), 1, + [222160] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10493), 1, + anon_sym_COMMA, + ACTIONS(10495), 1, + anon_sym_RPAREN, + STATE(6629), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6377), 1, + STATE(6836), 1, + aux_sym_ui_signal_parameters_repeat1, + [222179] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8707), 1, anon_sym_LBRACE, - STATE(3266), 1, - sym_type_parameters, - STATE(3701), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4436), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [124371] = 10, - ACTIONS(3), 1, + ACTIONS(8709), 1, + anon_sym_LBRACE_PIPE, + STATE(1727), 1, + sym_object_type, + STATE(6630), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(3263), 1, - sym_type_parameters, - STATE(3659), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4431), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [124402] = 2, + [222198] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10497), 1, + sym_identifier, + ACTIONS(10499), 1, + anon_sym_COLON, + ACTIONS(10501), 1, + anon_sym_DOT, + STATE(6631), 1, + sym_comment, + [222217] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6632), 1, sym_comment, - ACTIONS(2143), 9, + ACTIONS(10395), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [124417] = 7, - ACTIONS(3), 1, + [222232] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8516), 1, + anon_sym_DOT, + STATE(6633), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3857), 1, - sym_type_annotation, - STATE(4079), 1, - sym__initializer, - ACTIONS(6401), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6399), 3, + ACTIONS(10503), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [222249] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8522), 1, + anon_sym_DOT, + STATE(6634), 1, + sym_comment, + ACTIONS(10503), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [222266] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6635), 1, + sym_comment, + ACTIONS(10505), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124442] = 2, - ACTIONS(3), 1, + [222281] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6636), 1, sym_comment, - ACTIONS(4302), 9, + ACTIONS(10395), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [124457] = 4, - ACTIONS(3), 1, + [222296] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6637), 1, sym_comment, - ACTIONS(6381), 1, - anon_sym_COLON, - STATE(3720), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(6303), 5, + ACTIONS(10507), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [222311] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + ACTIONS(10443), 1, + anon_sym_as, + STATE(6638), 1, + sym_comment, + STATE(7460), 1, + sym__from_clause, + [222330] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6639), 1, + sym_comment, + ACTIONS(10407), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [124476] = 10, - ACTIONS(3), 1, + [222345] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6640), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6363), 1, + ACTIONS(4560), 3, anon_sym_LBRACE, - STATE(2693), 1, - sym_class_body, - STATE(3297), 1, - sym_type_parameters, - STATE(4228), 1, - sym_extends_clause, - STATE(4574), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [124507] = 5, - ACTIONS(3), 1, + anon_sym_else, + anon_sym_while, + [222360] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6641), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6255), 1, - anon_sym_PIPE, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(6403), 5, + ACTIONS(10395), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124527] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6405), 1, - sym_escape_sequence, - ACTIONS(6407), 1, - anon_sym_BQUOTE, - ACTIONS(6409), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6411), 1, - sym__template_chars, - STATE(3466), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3818), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [124551] = 7, - ACTIONS(3), 1, + [222375] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10509), 1, + anon_sym_COMMA, + ACTIONS(10512), 1, + anon_sym_RBRACE, + STATE(6642), 2, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6339), 1, - sym_identifier, - STATE(4339), 1, - sym_import_specifier, - ACTIONS(6341), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4726), 2, - sym__module_export_name, - sym_string, - [124575] = 5, - ACTIONS(3), 1, + aux_sym_export_clause_repeat1, + [222392] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6643), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_AMP, - ACTIONS(6369), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_extends, - ACTIONS(6329), 5, + ACTIONS(10489), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [124595] = 7, - ACTIONS(3), 1, + [222407] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6644), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(4778), 1, + ACTIONS(10395), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4000), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6413), 2, - anon_sym_LBRACE, - anon_sym_implements, - STATE(1705), 2, - sym_template_string, - sym_arguments, - [124619] = 7, + anon_sym_SEMI, + [222422] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10447), 1, + anon_sym_LBRACE, + ACTIONS(10514), 1, + sym_identifier, + STATE(6366), 1, + sym_export_clause, + STATE(6645), 1, sym_comment, - ACTIONS(6409), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6411), 1, - sym__template_chars, - ACTIONS(6415), 1, - sym_escape_sequence, - ACTIONS(6417), 1, - anon_sym_BQUOTE, - STATE(3389), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3818), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [124643] = 7, - ACTIONS(3), 1, + [222441] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6646), 1, sym_comment, - ACTIONS(6409), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6411), 1, - sym__template_chars, - ACTIONS(6415), 1, - sym_escape_sequence, - ACTIONS(6419), 1, - anon_sym_BQUOTE, - STATE(3389), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3818), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [124667] = 5, - ACTIONS(3), 1, + ACTIONS(10407), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222456] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6647), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6255), 1, - anon_sym_PIPE, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(6421), 5, + ACTIONS(10391), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124687] = 7, - ACTIONS(3), 1, + [222471] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6648), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6321), 1, - sym_identifier, - STATE(4345), 1, - sym_export_specifier, - ACTIONS(6323), 2, - anon_sym_type, - anon_sym_typeof, - STATE(4061), 2, - sym__module_export_name, - sym_string, - [124711] = 7, - ACTIONS(3), 1, + ACTIONS(10516), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222486] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(10518), 1, + anon_sym_RPAREN, + STATE(6649), 1, sym_comment, - ACTIONS(6409), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6411), 1, - sym__template_chars, - ACTIONS(6415), 1, - sym_escape_sequence, - ACTIONS(6423), 1, - anon_sym_BQUOTE, - STATE(3389), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3818), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [124735] = 7, - ACTIONS(3), 1, + STATE(8367), 1, + sym_type_annotation, + [222505] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6650), 1, sym_comment, - ACTIONS(6409), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6411), 1, - sym__template_chars, - ACTIONS(6415), 1, - sym_escape_sequence, - ACTIONS(6425), 1, - anon_sym_BQUOTE, - STATE(3389), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3818), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [124759] = 7, - ACTIONS(3), 1, + ACTIONS(10391), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222520] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6651), 1, sym_comment, - ACTIONS(6427), 1, - sym_identifier, - ACTIONS(6429), 1, - anon_sym_LBRACE, - ACTIONS(6431), 1, - anon_sym_LBRACK, - ACTIONS(6433), 1, - anon_sym_enum, - STATE(3929), 1, - sym_variable_declarator, - STATE(3342), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [124783] = 7, + ACTIONS(10520), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222535] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6427), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10451), 1, + anon_sym_require, + ACTIONS(10522), 1, sym_identifier, - ACTIONS(6429), 1, - anon_sym_LBRACE, - ACTIONS(6431), 1, - anon_sym_LBRACK, - ACTIONS(6435), 1, - anon_sym_enum, - STATE(3882), 1, - sym_variable_declarator, - STATE(3342), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [124807] = 7, - ACTIONS(3), 1, + STATE(6652), 1, sym_comment, - ACTIONS(6409), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6411), 1, - sym__template_chars, - ACTIONS(6415), 1, - sym_escape_sequence, - ACTIONS(6437), 1, - anon_sym_BQUOTE, - STATE(3389), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3622), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [124831] = 7, + STATE(7054), 1, + sym_nested_identifier, + [222554] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7851), 1, + anon_sym_type, + ACTIONS(10524), 1, + sym_identifier, + STATE(6653), 1, sym_comment, - ACTIONS(6405), 1, - sym_escape_sequence, - ACTIONS(6409), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6411), 1, - sym__template_chars, - ACTIONS(6439), 1, - anon_sym_BQUOTE, - STATE(3466), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3818), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [124855] = 7, - ACTIONS(3), 1, + STATE(7371), 1, + sym__import_identifier, + [222573] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(10526), 1, + anon_sym_RPAREN, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(6654), 1, sym_comment, - ACTIONS(6427), 1, - sym_identifier, - ACTIONS(6429), 1, - anon_sym_LBRACE, - ACTIONS(6431), 1, - anon_sym_LBRACK, - ACTIONS(6441), 1, - anon_sym_enum, - STATE(3975), 1, - sym_variable_declarator, - STATE(3342), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [124879] = 7, - ACTIONS(3), 1, + [222592] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6655), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6287), 1, - anon_sym_BANG, - STATE(3723), 1, - sym_type_annotation, - STATE(4016), 1, - sym__initializer, - ACTIONS(6285), 3, + ACTIONS(10395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [124903] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6409), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6411), 1, - sym__template_chars, - ACTIONS(6415), 1, - sym_escape_sequence, - ACTIONS(6443), 1, - anon_sym_BQUOTE, - STATE(3389), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - STATE(3818), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [124927] = 4, - ACTIONS(3), 1, + [222607] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6656), 1, sym_comment, - ACTIONS(6333), 1, - anon_sym_LT, - STATE(2874), 1, - sym_type_arguments, - ACTIONS(4014), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [124945] = 5, - ACTIONS(3), 1, + ACTIONS(10393), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222622] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6657), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - ACTIONS(6447), 1, - anon_sym_DOT, - STATE(3719), 1, - sym_statement_block, - ACTIONS(1493), 5, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [124965] = 8, - ACTIONS(3), 1, + [222637] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6658), 1, sym_comment, - ACTIONS(6279), 1, + ACTIONS(4592), 3, anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2286), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4537), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [124990] = 4, - ACTIONS(3), 1, + anon_sym_else, + anon_sym_while, + [222652] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9924), 1, + anon_sym_COMMA, + ACTIONS(10350), 1, + anon_sym_RBRACK, + STATE(6659), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4297), 1, - sym_statement_block, - ACTIONS(6449), 5, + STATE(6779), 1, + aux_sym_array_pattern_repeat1, + [222671] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10528), 1, + anon_sym_EQ, + STATE(6660), 1, + sym_comment, + ACTIONS(4753), 2, + anon_sym_in, + anon_sym_of, + [222688] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6661), 1, + sym_comment, + ACTIONS(10395), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125007] = 2, - ACTIONS(3), 1, + [222703] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6662), 1, sym_comment, - ACTIONS(6395), 7, + ACTIONS(10520), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [125020] = 8, - ACTIONS(3), 1, + [222718] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10530), 1, + anon_sym_COMMA, + ACTIONS(10532), 1, + anon_sym_RBRACK, + STATE(6593), 1, + aux_sym_tuple_type_repeat1, + STATE(6663), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2375), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4313), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [125045] = 8, + [222737] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6451), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7851), 1, + anon_sym_type, + ACTIONS(10524), 1, sym_identifier, - ACTIONS(6453), 1, - anon_sym_STAR, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4466), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [125070] = 8, - ACTIONS(3), 1, + STATE(6664), 1, sym_comment, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6363), 1, - anon_sym_LBRACE, - STATE(2592), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4577), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [125095] = 8, - ACTIONS(3), 1, + STATE(7385), 1, + sym__import_identifier, + [222756] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(10534), 1, + anon_sym_RPAREN, + STATE(6665), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2119), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4576), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [125120] = 8, - ACTIONS(3), 1, + STATE(8352), 1, + sym_type_annotation, + [222775] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6666), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6457), 1, - anon_sym_COLON, - ACTIONS(6459), 1, - anon_sym_QMARK, - STATE(3438), 1, - sym_formal_parameters, - STATE(4412), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [125145] = 8, - ACTIONS(3), 1, + ACTIONS(10407), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222790] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6667), 1, sym_comment, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(3634), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4419), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [125170] = 6, - ACTIONS(3), 1, + ACTIONS(10391), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222805] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6668), 1, sym_comment, - ACTIONS(4559), 1, - anon_sym_LPAREN, - ACTIONS(6024), 1, - anon_sym_LT, - STATE(2124), 1, - sym_arguments, - STATE(4551), 1, - sym_type_arguments, - ACTIONS(6461), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [125191] = 6, - ACTIONS(3), 1, + ACTIONS(10391), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222820] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6669), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3854), 1, - sym_type_annotation, - STATE(4230), 1, - sym__initializer, - ACTIONS(6240), 3, + ACTIONS(6648), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125212] = 8, - ACTIONS(3), 1, + [222835] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6670), 1, sym_comment, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(3653), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4420), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [125237] = 8, - ACTIONS(3), 1, + ACTIONS(10536), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222850] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10538), 1, + anon_sym_COMMA, + ACTIONS(10541), 1, + anon_sym_RBRACE, + STATE(6671), 2, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6459), 1, - anon_sym_QMARK, - ACTIONS(6463), 1, - anon_sym_COLON, - STATE(3438), 1, - sym_formal_parameters, - STATE(4412), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [125262] = 6, - ACTIONS(3), 1, + aux_sym_named_imports_repeat1, + [222867] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7737), 1, + anon_sym_DQUOTE, + ACTIONS(7739), 1, + anon_sym_SQUOTE, + STATE(6672), 1, sym_comment, - ACTIONS(6429), 1, + STATE(8724), 1, + sym_string, + [222886] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6673), 1, + sym_comment, + ACTIONS(10491), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222901] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10447), 1, anon_sym_LBRACE, - ACTIONS(6431), 1, - anon_sym_LBRACK, - ACTIONS(6465), 1, + ACTIONS(10543), 1, sym_identifier, - STATE(3921), 1, - sym_variable_declarator, - STATE(3342), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [125283] = 5, - ACTIONS(3), 1, + STATE(6402), 1, + sym_export_clause, + STATE(6674), 1, sym_comment, - ACTIONS(3253), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_DOT, - STATE(1150), 1, - sym_arguments, - ACTIONS(3251), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [125302] = 8, + [222920] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6469), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10451), 1, + anon_sym_require, + ACTIONS(10545), 1, sym_identifier, - ACTIONS(6471), 1, - anon_sym_STAR, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4563), 1, - sym__call_signature, - [125327] = 3, + STATE(6675), 1, + sym_comment, + STATE(7091), 1, + sym_nested_identifier, + [222939] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10451), 1, + anon_sym_require, + ACTIONS(10547), 1, + sym_identifier, + STATE(6633), 1, + sym_nested_identifier, + STATE(6676), 1, + sym_comment, + [222958] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6677), 1, sym_comment, - ACTIONS(6473), 1, - anon_sym_EQ, - ACTIONS(3384), 6, + ACTIONS(10395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222973] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9396), 1, anon_sym_COMMA, + ACTIONS(10430), 1, anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(6678), 1, + sym_comment, + STATE(6923), 1, + aux_sym_object_pattern_repeat1, + [222992] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, anon_sym_COLON, + ACTIONS(10549), 1, + anon_sym_RPAREN, + STATE(6679), 1, + sym_comment, + STATE(8457), 1, + sym_type_annotation, + [223011] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10551), 1, + anon_sym_COMMA, + ACTIONS(10554), 1, anon_sym_RBRACK, - anon_sym_QMARK, - [125342] = 4, + STATE(6680), 2, + sym_comment, + aux_sym_ui_object_array_repeat1, + [223028] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10451), 1, + anon_sym_require, + ACTIONS(10556), 1, + sym_identifier, + STATE(6681), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4368), 1, - sym_statement_block, - ACTIONS(6476), 5, + STATE(7192), 1, + sym_nested_identifier, + [223047] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6682), 1, + sym_comment, + ACTIONS(10558), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125359] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6478), 7, - sym__automatic_semicolon, + [223062] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9690), 1, anon_sym_LBRACE, + ACTIONS(10560), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [125372] = 8, - ACTIONS(3), 1, + STATE(6683), 2, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6480), 1, - sym_identifier, - ACTIONS(6482), 1, - anon_sym_STAR, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4539), 1, - sym__call_signature, - [125397] = 2, - ACTIONS(3), 1, + aux_sym_implements_clause_repeat1, + [223079] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6684), 1, sym_comment, - ACTIONS(6393), 7, + ACTIONS(10563), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [125410] = 4, - ACTIONS(3), 1, + [223094] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6685), 1, sym_comment, - ACTIONS(6445), 1, + ACTIONS(10565), 3, anon_sym_LBRACE, - STATE(3719), 1, - sym_statement_block, - ACTIONS(1493), 5, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125427] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, anon_sym_implements, - ACTIONS(6389), 1, - anon_sym_LBRACE, - STATE(875), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4432), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [125452] = 8, - ACTIONS(3), 1, + [223109] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6686), 1, sym_comment, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(3682), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4433), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [125477] = 6, - ACTIONS(3), 1, + ACTIONS(10563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223124] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6687), 1, sym_comment, - ACTIONS(6429), 1, - anon_sym_LBRACE, - ACTIONS(6431), 1, - anon_sym_LBRACK, - ACTIONS(6465), 1, - sym_identifier, - STATE(3975), 1, - sym_variable_declarator, - STATE(3342), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [125498] = 8, - ACTIONS(3), 1, + ACTIONS(10567), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223139] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10569), 1, + anon_sym_COMMA, + ACTIONS(10571), 1, + anon_sym_RBRACE, + STATE(6688), 1, sym_comment, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(3702), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4437), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [125523] = 8, - ACTIONS(3), 1, + STATE(7201), 1, + aux_sym_named_imports_repeat1, + [223158] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9924), 1, + anon_sym_COMMA, + ACTIONS(10350), 1, + anon_sym_RBRACK, + STATE(6689), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6484), 1, - sym_identifier, - ACTIONS(6486), 1, - anon_sym_STAR, - STATE(3438), 1, - sym_formal_parameters, - STATE(4466), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [125548] = 4, - ACTIONS(3), 1, + STATE(6762), 1, + aux_sym_array_pattern_repeat1, + [223177] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6690), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4311), 1, - sym_statement_block, - ACTIONS(6488), 5, + ACTIONS(10573), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125565] = 8, - ACTIONS(3), 1, + [223192] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6691), 1, sym_comment, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6361), 1, - anon_sym_LBRACE, - STATE(175), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4315), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [125590] = 6, - ACTIONS(3), 1, + ACTIONS(9592), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223207] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6692), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3775), 1, - sym_type_annotation, - STATE(4070), 1, - sym__initializer, - ACTIONS(6228), 3, + ACTIONS(10395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [125611] = 8, + [223222] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10575), 1, + sym_identifier, + ACTIONS(10577), 1, + anon_sym_LBRACK, + ACTIONS(10579), 1, + sym_private_property_identifier, + STATE(6693), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(1768), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4583), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [125636] = 6, + [223241] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6429), 1, - anon_sym_LBRACE, - ACTIONS(6431), 1, - anon_sym_LBRACK, - ACTIONS(6465), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10581), 1, sym_identifier, - STATE(3896), 1, - sym_variable_declarator, - STATE(3342), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [125657] = 8, - ACTIONS(3), 1, + ACTIONS(10583), 1, + anon_sym_LBRACK, + ACTIONS(10585), 1, + sym_private_property_identifier, + STATE(6694), 1, sym_comment, - ACTIONS(6349), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2541), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4561), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [125682] = 4, + [223260] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6695), 1, + sym_comment, + ACTIONS(10587), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [223275] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10589), 1, + sym_identifier, + ACTIONS(10591), 1, + anon_sym_LBRACK, + ACTIONS(10593), 1, + sym_private_property_identifier, + STATE(6696), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4309), 1, - sym_statement_block, - ACTIONS(6476), 5, + [223294] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6697), 1, + sym_comment, + ACTIONS(10407), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125699] = 8, - ACTIONS(3), 1, + [223309] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + ACTIONS(10443), 1, + anon_sym_as, + STATE(6698), 1, sym_comment, - ACTIONS(6490), 1, - anon_sym_LBRACE, - ACTIONS(6492), 1, - anon_sym_LT, - ACTIONS(6494), 1, - anon_sym_extends, - ACTIONS(6496), 1, - anon_sym_LBRACE_PIPE, - STATE(2628), 1, - sym_object_type, - STATE(3568), 1, - sym_type_parameters, - STATE(4226), 1, - sym_extends_type_clause, - [125724] = 7, - ACTIONS(3), 1, + STATE(7735), 1, + sym__from_clause, + [223328] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6699), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_COLON, - ACTIONS(6498), 1, - anon_sym_EQ, - ACTIONS(6502), 1, - anon_sym_QMARK, - STATE(3859), 1, - sym_type_annotation, - STATE(4415), 1, - sym__initializer, - ACTIONS(6500), 2, + ACTIONS(10567), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [125747] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6504), 1, - sym_identifier, - ACTIONS(6506), 1, - anon_sym_STAR, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4539), 1, - sym__call_signature, - [125772] = 8, + anon_sym_SEMI, + [223343] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6377), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10447), 1, anon_sym_LBRACE, - STATE(682), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4343), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [125797] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6508), 1, + ACTIONS(10595), 1, sym_identifier, - ACTIONS(6510), 1, - anon_sym_DOT, - STATE(732), 1, - sym__module, - STATE(3557), 1, - sym_nested_identifier, - STATE(3976), 1, - sym_string, - [125822] = 2, - ACTIONS(3), 1, + STATE(6509), 1, + sym_export_clause, + STATE(6700), 1, + sym_comment, + [223362] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6701), 1, sym_comment, - ACTIONS(4662), 7, + ACTIONS(10491), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [125835] = 8, - ACTIONS(3), 1, + [223377] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6702), 1, sym_comment, - ACTIONS(120), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1398), 1, - anon_sym_LBRACE, - ACTIONS(6492), 1, - anon_sym_LT, - ACTIONS(6494), 1, - anon_sym_extends, - STATE(812), 1, - sym_object_type, - STATE(3820), 1, - sym_type_parameters, - STATE(4186), 1, - sym_extends_type_clause, - [125860] = 6, + ACTIONS(10597), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [223392] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(6429), 1, - anon_sym_LBRACE, - ACTIONS(6431), 1, - anon_sym_LBRACK, - ACTIONS(6465), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10599), 1, sym_identifier, - STATE(3956), 1, - sym_variable_declarator, - STATE(3342), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [125881] = 8, - ACTIONS(3), 1, + ACTIONS(10601), 1, + anon_sym_LBRACK, + ACTIONS(10603), 1, + sym_private_property_identifier, + STATE(6703), 1, sym_comment, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6363), 1, - anon_sym_LBRACE, - STATE(2673), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4559), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [125906] = 4, - ACTIONS(3), 1, + [223411] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6704), 1, sym_comment, - ACTIONS(3924), 1, + ACTIONS(9592), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223426] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10605), 1, anon_sym_LBRACE, - STATE(4361), 1, + ACTIONS(10607), 1, + anon_sym_LPAREN, + STATE(4012), 1, sym_statement_block, - ACTIONS(6512), 5, - sym__automatic_semicolon, + STATE(6705), 1, + sym_comment, + [223445] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10235), 1, + anon_sym_as, + STATE(6706), 1, + sym_comment, + ACTIONS(10609), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [125923] = 8, - ACTIONS(3), 1, + [223462] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6707), 1, sym_comment, - ACTIONS(2989), 1, - anon_sym_DQUOTE, - ACTIONS(2991), 1, - anon_sym_SQUOTE, - ACTIONS(6510), 1, - anon_sym_DOT, - ACTIONS(6514), 1, - sym_identifier, - STATE(678), 1, - sym_nested_identifier, - STATE(701), 1, - sym_string, - STATE(732), 1, - sym__module, - [125948] = 8, - ACTIONS(3), 1, + ACTIONS(10491), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223477] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + ACTIONS(10443), 1, + anon_sym_as, + STATE(6708), 1, sym_comment, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6389), 1, - anon_sym_LBRACE, - STATE(890), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4460), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [125973] = 8, - ACTIONS(3), 1, + STATE(7582), 1, + sym__from_clause, + [223496] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6709), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(10403), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223511] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6516), 1, - sym_identifier, - ACTIONS(6518), 1, - anon_sym_STAR, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, + ACTIONS(10611), 1, + anon_sym_EQ, + STATE(6710), 1, + sym_comment, + STATE(8544), 1, sym_type_parameters, - STATE(4598), 1, - sym__call_signature, - [125998] = 2, - ACTIONS(3), 1, + [223530] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6711), 1, sym_comment, - ACTIONS(5337), 7, - anon_sym_EQ, + ACTIONS(10613), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [126011] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + [223545] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6712), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4367), 1, - sym_statement_block, - ACTIONS(6520), 5, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126028] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6429), 1, - anon_sym_LBRACE, - ACTIONS(6431), 1, - anon_sym_LBRACK, - ACTIONS(6465), 1, - sym_identifier, - STATE(3882), 1, - sym_variable_declarator, - STATE(3342), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [126049] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6383), 1, - anon_sym_LBRACE, - STATE(726), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4304), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [126074] = 4, - ACTIONS(3), 1, + [223560] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6713), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3590), 1, - sym_type_annotation, - ACTIONS(6522), 5, + ACTIONS(10309), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126091] = 4, - ACTIONS(3), 1, + [223575] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6714), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4411), 1, - sym_statement_block, - ACTIONS(6449), 5, + ACTIONS(10615), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126108] = 8, - ACTIONS(3), 1, + [223590] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8813), 1, + anon_sym_COMMA, + ACTIONS(10617), 1, + anon_sym_LBRACE, + STATE(6683), 1, + aux_sym_implements_clause_repeat1, + STATE(6715), 1, sym_comment, - ACTIONS(6349), 1, + [223609] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4724), 1, anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2531), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4581), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [126133] = 4, - ACTIONS(3), 1, + ACTIONS(9586), 1, + anon_sym_DOT, + STATE(4371), 1, + sym_ui_object_initializer, + STATE(6716), 1, sym_comment, - ACTIONS(3924), 1, + [223628] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4724), 1, anon_sym_LBRACE, - STATE(4299), 1, - sym_statement_block, - ACTIONS(6520), 5, + ACTIONS(8366), 1, + anon_sym_DOT, + STATE(4377), 1, + sym_ui_object_initializer, + STATE(6717), 1, + sym_comment, + [223647] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10619), 1, + anon_sym_COMMA, + ACTIONS(10621), 1, + anon_sym_RBRACK, + STATE(6718), 1, + sym_comment, + STATE(6780), 1, + aux_sym_tuple_type_repeat1, + [223666] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6719), 1, + sym_comment, + ACTIONS(10516), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126150] = 4, - ACTIONS(3), 1, + [223681] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6720), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4326), 1, - sym_statement_block, - ACTIONS(6524), 5, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126167] = 6, - ACTIONS(3), 1, + [223696] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5735), 1, + anon_sym_extends, + ACTIONS(10623), 1, + anon_sym_AMP, + ACTIONS(10625), 1, + anon_sym_PIPE, + STATE(6721), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3817), 1, - sym_type_annotation, - STATE(4185), 1, - sym__initializer, - ACTIONS(6526), 3, + [223715] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6722), 1, + sym_comment, + ACTIONS(10395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126188] = 2, - ACTIONS(3), 1, + [223730] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10627), 1, + anon_sym_COMMA, + ACTIONS(10629), 1, + anon_sym_GT, + STATE(6723), 1, sym_comment, - ACTIONS(6391), 7, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + [223749] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6724), 1, + sym_comment, + ACTIONS(10520), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [126201] = 6, - ACTIONS(3), 1, + [223764] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10631), 1, + anon_sym_COMMA, + ACTIONS(10633), 1, + anon_sym_GT, + STATE(6725), 1, sym_comment, - ACTIONS(6429), 1, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + [223783] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6726), 1, + sym_comment, + ACTIONS(10395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223798] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10635), 1, + anon_sym_COMMA, + ACTIONS(10637), 1, + anon_sym_GT, + STATE(6727), 1, + sym_comment, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + [223817] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10447), 1, anon_sym_LBRACE, - ACTIONS(6431), 1, - anon_sym_LBRACK, - ACTIONS(6465), 1, + ACTIONS(10639), 1, sym_identifier, - STATE(4165), 1, - sym_variable_declarator, - STATE(3342), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [126222] = 8, - ACTIONS(3), 1, + STATE(6422), 1, + sym_export_clause, + STATE(6728), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6528), 1, - sym_identifier, - ACTIONS(6530), 1, - anon_sym_STAR, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4539), 1, - sym__call_signature, - [126247] = 8, - ACTIONS(3), 1, + [223836] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10641), 1, + anon_sym_EQ, + STATE(6729), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6532), 1, - sym_identifier, - ACTIONS(6534), 1, - anon_sym_STAR, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4539), 1, - sym__call_signature, - [126272] = 4, - ACTIONS(3), 1, + ACTIONS(10609), 2, + anon_sym_COMMA, + anon_sym_from, + [223853] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6730), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4327), 1, - sym_statement_block, - ACTIONS(6536), 5, + ACTIONS(10407), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126289] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(838), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1605), 1, - anon_sym_LBRACE, - ACTIONS(6492), 1, - anon_sym_LT, - ACTIONS(6494), 1, - anon_sym_extends, - STATE(3816), 1, - sym_object_type, - STATE(3828), 1, - sym_type_parameters, - STATE(4193), 1, - sym_extends_type_clause, - [126314] = 3, - ACTIONS(3), 1, + [223868] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6600), 1, + anon_sym_RPAREN, + STATE(6731), 1, sym_comment, - ACTIONS(6538), 1, - anon_sym_EQ, - ACTIONS(3446), 6, + STATE(6787), 1, + aux_sym_array_repeat1, + [223887] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6600), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [126329] = 8, - ACTIONS(3), 1, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(6732), 1, sym_comment, - ACTIONS(3225), 1, - anon_sym_DQUOTE, - ACTIONS(3227), 1, - anon_sym_SQUOTE, - ACTIONS(6540), 1, - sym_identifier, - ACTIONS(6542), 1, - anon_sym_DOT, - STATE(2463), 1, - sym_nested_identifier, - STATE(2479), 1, - sym_string, - STATE(2690), 1, - sym__module, - [126354] = 2, - ACTIONS(3), 1, + [223906] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6733), 1, sym_comment, - ACTIONS(6367), 7, + ACTIONS(10491), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [126367] = 8, - ACTIONS(3), 1, + [223921] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6734), 1, sym_comment, - ACTIONS(6333), 1, - anon_sym_LT, - ACTIONS(6335), 1, - anon_sym_DOT, - ACTIONS(6544), 1, - anon_sym_LBRACE, - ACTIONS(6546), 1, + ACTIONS(10643), 3, anon_sym_COMMA, - ACTIONS(6548), 1, - anon_sym_LBRACE_PIPE, - STATE(3946), 1, - aux_sym_extends_type_clause_repeat1, - STATE(4090), 1, - sym_type_arguments, - [126392] = 2, + anon_sym_RBRACE, + anon_sym_from, + [223936] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10447), 1, + anon_sym_LBRACE, + ACTIONS(10645), 1, + sym_identifier, + STATE(6517), 1, + sym_export_clause, + STATE(6735), 1, + sym_comment, + [223955] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + ACTIONS(10443), 1, + anon_sym_as, + STATE(6736), 1, + sym_comment, + STATE(7743), 1, + sym__from_clause, + [223974] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6737), 1, sym_comment, - ACTIONS(4857), 7, + ACTIONS(10516), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [126405] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6383), 1, - anon_sym_LBRACE, - STATE(773), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4332), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [126430] = 8, - ACTIONS(3), 1, + [223989] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6919), 1, + sym__automatic_semicolon, + STATE(6738), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2303), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4442), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [126455] = 4, - ACTIONS(3), 1, + ACTIONS(6901), 2, + anon_sym_else, + anon_sym_while, + [224006] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6739), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4362), 1, - sym_statement_block, - ACTIONS(6550), 5, + ACTIONS(10647), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126472] = 8, - ACTIONS(3), 1, + [224021] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10649), 1, + anon_sym_COMMA, + ACTIONS(10651), 1, + anon_sym_RBRACE, + STATE(6740), 1, sym_comment, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6361), 1, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + [224040] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(124), 1, anon_sym_LBRACE, - STATE(170), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4407), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [126497] = 4, - ACTIONS(3), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8721), 1, + anon_sym_LBRACE_PIPE, + STATE(6741), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4335), 1, - sym_statement_block, - ACTIONS(6512), 5, - sym__automatic_semicolon, + STATE(7666), 1, + sym_object_type, + [224059] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8623), 1, + anon_sym_COMMA, + ACTIONS(10653), 1, + anon_sym_RBRACE, + STATE(6742), 1, + sym_comment, + STATE(6952), 1, + aux_sym_object_repeat1, + [224078] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10655), 1, anon_sym_COMMA, + ACTIONS(10657), 1, anon_sym_RBRACE, + STATE(6743), 1, + sym_comment, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + [224097] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6744), 1, + sym_comment, + ACTIONS(10520), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126514] = 8, + [224112] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10085), 1, + sym_identifier, + ACTIONS(10087), 1, + anon_sym_const, + STATE(6745), 1, sym_comment, - ACTIONS(6293), 1, + STATE(7249), 1, + sym_type_parameter, + [224131] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4351), 1, anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(1736), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4624), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [126539] = 4, - ACTIONS(3), 1, + STATE(6746), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4341), 1, - sym_statement_block, - ACTIONS(6550), 5, + ACTIONS(5899), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [224148] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6747), 1, + sym_comment, + ACTIONS(10659), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126556] = 4, - ACTIONS(3), 1, + [224163] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6748), 1, sym_comment, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(4818), 2, + ACTIONS(10661), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [126573] = 8, - ACTIONS(3), 1, + anon_sym_SEMI, + [224178] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6749), 1, + sym_comment, + ACTIONS(10395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224193] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4724), 1, + anon_sym_LBRACE, + ACTIONS(8366), 1, + anon_sym_DOT, + STATE(4224), 1, + sym_ui_object_initializer, + STATE(6750), 1, sym_comment, - ACTIONS(2752), 1, + [224212] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6552), 1, - sym_identifier, - ACTIONS(6554), 1, - anon_sym_STAR, - STATE(3438), 1, - sym_formal_parameters, - STATE(4466), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [126598] = 8, - ACTIONS(3), 1, + ACTIONS(10663), 1, + anon_sym_EQ, + STATE(6751), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(6556), 1, - sym_identifier, - ACTIONS(6558), 1, + STATE(8487), 1, + sym_type_parameters, + [224231] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4724), 1, + anon_sym_LBRACE, + ACTIONS(9586), 1, anon_sym_DOT, - STATE(3254), 1, - sym_nested_identifier, - STATE(3276), 1, - sym_string, - STATE(3769), 1, - sym__module, - [126623] = 2, - ACTIONS(3), 1, + STATE(4250), 1, + sym_ui_object_initializer, + STATE(6752), 1, + sym_comment, + [224250] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10667), 1, + anon_sym_COLON, + STATE(6753), 1, sym_comment, - ACTIONS(4763), 7, + ACTIONS(10665), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, + [224267] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10671), 1, anon_sym_COLON, - [126636] = 4, - ACTIONS(3), 1, + STATE(6754), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4322), 1, - sym_statement_block, - ACTIONS(6560), 5, + ACTIONS(10669), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126653] = 6, + [224284] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10673), 1, + sym_identifier, + STATE(6755), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, + STATE(8368), 1, + sym_nested_type_identifier, + STATE(8459), 1, + sym_nested_identifier, + [224303] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10677), 1, anon_sym_COLON, - STATE(3696), 1, - sym_type_annotation, - STATE(4058), 1, - sym__initializer, - ACTIONS(6230), 3, + STATE(6756), 1, + sym_comment, + ACTIONS(10675), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [126674] = 4, - ACTIONS(3), 1, + [224320] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6757), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4381), 1, - sym_statement_block, - ACTIONS(6562), 5, + ACTIONS(10567), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126691] = 6, - ACTIONS(3), 1, + [224335] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6758), 1, sym_comment, - ACTIONS(6429), 1, + ACTIONS(10679), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [224350] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8615), 1, anon_sym_LBRACE, - ACTIONS(6431), 1, - anon_sym_LBRACK, - ACTIONS(6564), 1, - sym_identifier, - STATE(3929), 1, - sym_variable_declarator, - STATE(3150), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [126712] = 6, - ACTIONS(3), 1, + ACTIONS(8617), 1, + anon_sym_LBRACE_PIPE, + STATE(4183), 1, + sym_object_type, + STATE(6759), 1, sym_comment, - ACTIONS(6429), 1, - anon_sym_LBRACE, - ACTIONS(6431), 1, - anon_sym_LBRACK, - ACTIONS(6566), 1, - sym_identifier, - STATE(3921), 1, - sym_variable_declarator, - STATE(3153), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [126733] = 2, - ACTIONS(3), 1, + [224369] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6760), 1, sym_comment, - ACTIONS(6359), 7, + ACTIONS(10567), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, + [224384] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10683), 1, anon_sym_COLON, - [126746] = 8, - ACTIONS(3), 1, + STATE(6761), 1, sym_comment, - ACTIONS(6293), 1, + ACTIONS(10681), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [224401] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10685), 1, + anon_sym_COMMA, + ACTIONS(10688), 1, + anon_sym_RBRACK, + STATE(6762), 2, + sym_comment, + aux_sym_array_pattern_repeat1, + [224418] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4389), 1, anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(1753), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4614), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [126771] = 4, - ACTIONS(3), 1, + STATE(6763), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3573), 1, - sym_type_annotation, - ACTIONS(6568), 5, + ACTIONS(5897), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [224435] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6764), 1, + sym_comment, + ACTIONS(10567), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126788] = 6, - ACTIONS(3), 1, + [224450] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6765), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3723), 1, - sym_type_annotation, - STATE(4091), 1, - sym__initializer, - ACTIONS(6285), 3, + ACTIONS(10395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126809] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2182), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4366), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [126834] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2163), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4347), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [126859] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - STATE(1705), 2, - sym_template_string, - sym_arguments, - ACTIONS(6570), 3, - anon_sym_LBRACE, + [224465] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6766), 1, + sym_comment, + ACTIONS(10690), 3, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_implements, - [126878] = 6, - ACTIONS(3), 1, + anon_sym_RBRACK, + [224480] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6767), 1, sym_comment, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(6024), 1, - anon_sym_LT, - STATE(1706), 1, - sym_arguments, - STATE(4602), 1, - sym_type_arguments, - ACTIONS(6461), 3, - anon_sym_LBRACK, - sym_identifier, - sym_private_property_identifier, - [126899] = 6, - ACTIONS(3), 1, + ACTIONS(10407), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224495] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6768), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3565), 1, - sym_type_annotation, - STATE(4244), 1, - sym__initializer, - ACTIONS(6244), 3, + ACTIONS(10391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [126920] = 4, - ACTIONS(3), 1, + [224510] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6769), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4514), 1, - sym_statement_block, - ACTIONS(6572), 5, + ACTIONS(10661), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126937] = 2, - ACTIONS(3), 1, + [224525] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6770), 1, sym_comment, - ACTIONS(6574), 7, + ACTIONS(10613), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [126950] = 8, - ACTIONS(3), 1, + [224540] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6771), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2268), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4454), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [126975] = 3, - ACTIONS(3), 1, + ACTIONS(10391), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224555] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6772), 1, sym_comment, - ACTIONS(6040), 1, - anon_sym_is, - ACTIONS(6576), 6, + ACTIONS(10491), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [126990] = 6, - ACTIONS(3), 1, + [224570] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7036), 1, + sym__automatic_semicolon, + STATE(6773), 1, sym_comment, - ACTIONS(6429), 1, - anon_sym_LBRACE, - ACTIONS(6431), 1, - anon_sym_LBRACK, - ACTIONS(6465), 1, - sym_identifier, - STATE(3929), 1, - sym_variable_declarator, - STATE(3342), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [127011] = 8, - ACTIONS(3), 1, + ACTIONS(6911), 2, + anon_sym_else, + anon_sym_while, + [224587] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7047), 1, + sym__automatic_semicolon, + STATE(6774), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6578), 1, - sym_identifier, - ACTIONS(6580), 1, - anon_sym_STAR, - STATE(3438), 1, - sym_formal_parameters, - STATE(4466), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [127036] = 2, - ACTIONS(3), 1, + ACTIONS(6915), 2, + anon_sym_else, + anon_sym_while, + [224604] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6775), 1, sym_comment, - ACTIONS(6582), 7, + ACTIONS(10692), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [127049] = 3, - ACTIONS(3), 1, + [224619] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4407), 1, + anon_sym_LBRACE, + STATE(6776), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym_EQ, - ACTIONS(3384), 6, + ACTIONS(5889), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACE_PIPE, + [224636] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10694), 1, + anon_sym_COMMA, + ACTIONS(10696), 1, anon_sym_RBRACK, - anon_sym_QMARK, - [127064] = 8, - ACTIONS(3), 1, + STATE(6680), 1, + aux_sym_ui_object_array_repeat1, + STATE(6777), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2393), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4383), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [127089] = 4, - ACTIONS(3), 1, + [224655] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6778), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4398), 1, - sym_statement_block, - ACTIONS(6587), 5, + ACTIONS(10567), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127106] = 3, - ACTIONS(3), 1, + [224670] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9924), 1, + anon_sym_COMMA, + ACTIONS(10698), 1, + anon_sym_RBRACK, + STATE(6762), 1, + aux_sym_array_pattern_repeat1, + STATE(6779), 1, sym_comment, - ACTIONS(6337), 1, - anon_sym_is, - ACTIONS(4010), 6, - anon_sym_as, - anon_sym_LBRACK, + [224689] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10700), 1, + anon_sym_COMMA, + ACTIONS(10702), 1, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127121] = 4, - ACTIONS(3), 1, + STATE(6593), 1, + aux_sym_tuple_type_repeat1, + STATE(6780), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4319), 1, - sym_statement_block, - ACTIONS(6589), 5, + [224708] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6781), 1, + sym_comment, + ACTIONS(10395), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127138] = 8, - ACTIONS(3), 1, + [224723] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6782), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2137), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4349), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [127163] = 3, - ACTIONS(3), 1, + ACTIONS(10704), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224738] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6783), 1, sym_comment, - ACTIONS(6591), 1, - anon_sym_is, - ACTIONS(4014), 6, + ACTIONS(10395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224753] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9922), 1, + anon_sym_EQ, + STATE(6784), 1, + sym_comment, + ACTIONS(10688), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [224770] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + ACTIONS(10443), 1, anon_sym_as, - anon_sym_LBRACK, + STATE(6785), 1, + sym_comment, + STATE(7647), 1, + sym__from_clause, + [224789] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(10706), 1, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [127178] = 8, - ACTIONS(3), 1, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(6786), 1, sym_comment, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(697), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4287), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [127203] = 4, - ACTIONS(3), 1, + [224808] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(10708), 1, + anon_sym_RPAREN, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(6787), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4363), 1, - sym_statement_block, - ACTIONS(6593), 5, + [224827] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6788), 1, + sym_comment, + ACTIONS(10407), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127220] = 6, - ACTIONS(3), 1, + [224842] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6789), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3774), 1, - sym_type_annotation, - STATE(4020), 1, - sym__initializer, - ACTIONS(6251), 3, + ACTIONS(10395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127241] = 4, - ACTIONS(3), 1, + [224857] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10710), 1, + anon_sym_as, + STATE(6790), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4414), 1, - sym_statement_block, - ACTIONS(6593), 5, - sym__automatic_semicolon, + ACTIONS(10712), 2, anon_sym_COMMA, anon_sym_RBRACE, + [224874] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6791), 1, + sym_comment, + ACTIONS(10395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127258] = 8, - ACTIONS(3), 1, + [224889] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6792), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(1698), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4597), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [127283] = 4, - ACTIONS(3), 1, + ACTIONS(10714), 3, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + [224904] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6793), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3677), 1, - sym_type_annotation, - ACTIONS(6595), 5, + ACTIONS(10391), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127300] = 2, - ACTIONS(3), 1, + [224919] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10716), 1, + anon_sym_COMMA, + ACTIONS(10718), 1, + anon_sym_RBRACE, + STATE(6794), 1, sym_comment, - ACTIONS(3384), 7, - anon_sym_EQ, + STATE(7299), 1, + aux_sym_export_clause_repeat1, + [224938] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6795), 1, + sym_comment, + ACTIONS(10720), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [224953] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6796), 1, + sym_comment, + ACTIONS(10722), 3, + anon_sym_default, anon_sym_RBRACE, + anon_sym_case, + [224968] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6797), 1, + sym_comment, + ACTIONS(6585), 3, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK, - [127313] = 4, - ACTIONS(3), 1, + [224983] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6798), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(3631), 1, - sym_type_annotation, - ACTIONS(6597), 5, + ACTIONS(10407), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127330] = 8, - ACTIONS(3), 1, + [224998] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10724), 1, + anon_sym_LPAREN, + ACTIONS(10726), 1, + anon_sym_await, + STATE(114), 1, + sym__for_header, + STATE(6799), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - ACTIONS(6351), 1, - anon_sym_extends, - ACTIONS(6353), 1, - anon_sym_implements, - STATE(2224), 1, - sym_class_body, - STATE(4228), 1, - sym_extends_clause, - STATE(4607), 1, - sym_class_heritage, - STATE(4779), 1, - sym_implements_clause, - [127355] = 8, - ACTIONS(3), 1, + [225017] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8522), 1, + anon_sym_DOT, + STATE(6800), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6599), 1, - sym_identifier, - ACTIONS(6601), 1, - anon_sym_STAR, - STATE(3438), 1, - sym_formal_parameters, - STATE(4466), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [127380] = 2, - ACTIONS(3), 1, + ACTIONS(10728), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [225034] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8516), 1, + anon_sym_DOT, + STATE(6801), 1, sym_comment, - ACTIONS(6603), 7, + ACTIONS(10728), 2, sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [127393] = 4, - ACTIONS(3), 1, + [225051] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6802), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4317), 1, - sym_statement_block, - ACTIONS(6562), 5, + ACTIONS(10391), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127410] = 8, - ACTIONS(3), 1, + [225066] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6803), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6605), 1, - sym_identifier, - ACTIONS(6607), 1, - anon_sym_STAR, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4539), 1, - sym__call_signature, - [127435] = 4, - ACTIONS(3), 1, + ACTIONS(10704), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225081] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6804), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4377), 1, - sym_statement_block, - ACTIONS(6488), 5, + ACTIONS(10391), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127452] = 6, - ACTIONS(3), 1, + [225096] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6805), 1, sym_comment, - ACTIONS(6204), 1, - anon_sym_EQ, - STATE(3916), 1, - sym_constraint, - STATE(4525), 1, - sym_default_type, - ACTIONS(6209), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(6609), 2, + ACTIONS(10516), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [127473] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + [225111] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6806), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2374), 1, - sym_statement_block, - ACTIONS(6536), 4, + ACTIONS(10391), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127489] = 5, + [225126] = 6, ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 1, - anon_sym_LBRACE, - ACTIONS(6611), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10085), 1, sym_identifier, - ACTIONS(6613), 1, - anon_sym_LBRACK, - STATE(3954), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [127507] = 5, - ACTIONS(3), 1, + ACTIONS(10087), 1, + anon_sym_const, + STATE(6807), 1, sym_comment, - ACTIONS(2804), 1, - anon_sym_LBRACE, - ACTIONS(6613), 1, - anon_sym_LBRACK, - ACTIONS(6615), 1, - sym_identifier, - STATE(4337), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [127525] = 7, - ACTIONS(3), 1, + STATE(7215), 1, + sym_type_parameter, + [225145] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10730), 1, + anon_sym_as, + STATE(6808), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6617), 1, - sym_identifier, - STATE(3438), 1, - sym_formal_parameters, - STATE(4435), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [127547] = 7, - ACTIONS(3), 1, + ACTIONS(10732), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [225162] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8615), 1, + anon_sym_LBRACE, + ACTIONS(8617), 1, + anon_sym_LBRACE_PIPE, + STATE(4078), 1, + sym_object_type, + STATE(6809), 1, sym_comment, - ACTIONS(6619), 1, - sym_identifier, - ACTIONS(6621), 1, - anon_sym_import, - STATE(2862), 1, - sym__type_query_member_expression, - STATE(2863), 1, - sym__type_query_subscript_expression, - STATE(2968), 1, - sym__type_query_call_expression, - STATE(4592), 1, - sym_import, - [127569] = 5, - ACTIONS(3), 1, + [225181] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6810), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6623), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6625), 1, - anon_sym_QMARK_COLON, - STATE(3674), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [127587] = 5, - ACTIONS(3), 1, + ACTIONS(10734), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [225196] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10736), 1, + anon_sym_COMMA, + ACTIONS(10738), 1, + anon_sym_RBRACE, + STATE(6811), 1, sym_comment, - ACTIONS(6630), 1, - anon_sym_BQUOTE, - ACTIONS(6632), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6627), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3383), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [127605] = 7, - ACTIONS(3), 1, + STATE(6842), 1, + aux_sym_enum_body_repeat1, + [225215] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6812), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(6635), 1, + ACTIONS(10520), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6637), 1, - anon_sym_GT, - STATE(4172), 1, - aux_sym_implements_clause_repeat1, - [127627] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [225230] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6813), 1, sym_comment, - ACTIONS(6639), 6, + ACTIONS(10391), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [127639] = 7, + [225245] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10740), 1, + sym_identifier, + STATE(5449), 1, + sym_decorator_member_expression, + STATE(6350), 1, + sym_decorator_call_expression, + STATE(6814), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6641), 1, + [225264] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10742), 1, sym_identifier, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4541), 1, - sym__call_signature, - [127661] = 4, + ACTIONS(10744), 1, + anon_sym_LBRACK, + ACTIONS(10746), 1, + sym_private_property_identifier, + STATE(6815), 1, + sym_comment, + [225283] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10748), 1, + sym_identifier, + ACTIONS(10750), 1, + anon_sym_LBRACK, + ACTIONS(10752), 1, + sym_private_property_identifier, + STATE(6816), 1, sym_comment, - ACTIONS(6445), 1, + [225302] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10754), 1, + anon_sym_else, + ACTIONS(10756), 1, + anon_sym_while, + STATE(6817), 1, + sym_comment, + STATE(7873), 1, + sym_else_clause, + [225321] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6818), 1, + sym_comment, + ACTIONS(10395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225336] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10758), 1, anon_sym_LBRACE, - STATE(2392), 1, + ACTIONS(10760), 1, + anon_sym_LPAREN, + STATE(4106), 1, sym_statement_block, - ACTIONS(6587), 4, + STATE(6819), 1, + sym_comment, + [225355] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6820), 1, + sym_comment, + ACTIONS(10520), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127677] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6643), 1, - sym_identifier, - STATE(3438), 1, - sym_formal_parameters, - STATE(4435), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [127699] = 5, + [225370] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10762), 1, + anon_sym_DQUOTE, + STATE(6821), 1, sym_comment, - ACTIONS(6647), 1, - anon_sym_BQUOTE, - ACTIONS(6649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6645), 2, - sym__template_chars, + ACTIONS(10764), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - STATE(3383), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [127717] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6651), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(4221), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [127739] = 7, - ACTIONS(3), 1, + [225387] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6822), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(6653), 1, + ACTIONS(10395), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6655), 1, - anon_sym_GT, - STATE(4125), 1, - aux_sym_implements_clause_repeat1, - [127761] = 4, + anon_sym_SEMI, + [225402] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10766), 1, + sym_identifier, + ACTIONS(10768), 1, + anon_sym_LBRACK, + ACTIONS(10770), 1, + sym_private_property_identifier, + STATE(6823), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2381), 1, - sym_statement_block, - ACTIONS(6593), 4, + [225421] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6824), 1, + sym_comment, + ACTIONS(10407), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127777] = 7, - ACTIONS(3), 1, + [225436] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6825), 1, sym_comment, - ACTIONS(2213), 1, - anon_sym_LBRACE, - ACTIONS(5947), 1, - anon_sym_COLON, - ACTIONS(5949), 1, - anon_sym_DOT, - ACTIONS(6267), 1, - anon_sym_on, - ACTIONS(6657), 1, - sym_identifier, - STATE(2492), 1, - sym_ui_object_initializer, - [127799] = 5, - ACTIONS(3), 1, + ACTIONS(10391), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225451] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6826), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(6659), 3, - anon_sym_EQ, + ACTIONS(10391), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [127817] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + [225466] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6827), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(6661), 1, - anon_sym_LBRACE, - ACTIONS(6663), 1, + ACTIONS(10491), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4157), 1, - aux_sym_implements_clause_repeat1, - [127839] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [225481] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6828), 1, sym_comment, - ACTIONS(3765), 6, - anon_sym_EQ, + ACTIONS(10567), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [127851] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [225496] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10772), 1, + anon_sym_DQUOTE, + ACTIONS(10774), 1, + anon_sym_SQUOTE, + STATE(6829), 1, + sym_comment, + STATE(7317), 1, + sym_string, + [225515] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6830), 1, sym_comment, - ACTIONS(6574), 6, + ACTIONS(10395), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [127863] = 7, - ACTIONS(3), 1, + [225530] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10338), 1, + anon_sym_COMMA, + ACTIONS(10776), 1, + anon_sym_RBRACE, + STATE(6831), 1, sym_comment, - ACTIONS(6621), 1, - anon_sym_import, - ACTIONS(6665), 1, - sym_identifier, - STATE(2794), 1, - sym__type_query_member_expression, - STATE(2795), 1, - sym__type_query_subscript_expression, - STATE(2833), 1, - sym__type_query_call_expression, - STATE(4473), 1, - sym_import, - [127885] = 7, - ACTIONS(3), 1, + STATE(7190), 1, + aux_sym__qml_enum_body_repeat1, + [225549] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10338), 1, + anon_sym_COMMA, + ACTIONS(10778), 1, + anon_sym_RBRACE, + STATE(6832), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, + STATE(7190), 1, + aux_sym__qml_enum_body_repeat1, + [225568] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10780), 1, anon_sym_LPAREN, - ACTIONS(6667), 1, - anon_sym_QMARK, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4548), 1, - sym__call_signature, - [127907] = 7, + ACTIONS(10782), 1, + anon_sym_await, + STATE(123), 1, + sym__for_header, + STATE(6833), 1, + sym_comment, + [225587] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10784), 1, + anon_sym_DASH, + ACTIONS(10786), 1, + sym_number, + STATE(6834), 1, + sym_comment, + STATE(8114), 1, + sym__qml_enum_negative_number, + [225606] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10788), 1, + sym_identifier, + ACTIONS(10790), 1, + anon_sym_SEMI, + ACTIONS(10792), 1, + sym__automatic_semicolon, + STATE(6835), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - ACTIONS(6669), 1, - anon_sym_QMARK, - STATE(3233), 1, - sym_formal_parameters, - STATE(3537), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [127929] = 4, + [225625] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10493), 1, + anon_sym_COMMA, + ACTIONS(10794), 1, + anon_sym_RPAREN, + STATE(6836), 1, + sym_comment, + STATE(7124), 1, + aux_sym_ui_signal_parameters_repeat1, + [225644] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10796), 1, + sym_identifier, + ACTIONS(10798), 1, + anon_sym_SEMI, + ACTIONS(10800), 1, + sym__automatic_semicolon, + STATE(6837), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2408), 1, - sym_statement_block, - ACTIONS(6593), 4, + [225663] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6838), 1, + sym_comment, + ACTIONS(10395), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [127945] = 7, - ACTIONS(3), 1, + [225678] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7055), 1, + sym__automatic_semicolon, + STATE(6839), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6671), 1, - anon_sym_QMARK, - STATE(3438), 1, - sym_formal_parameters, - STATE(4300), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [127967] = 7, - ACTIONS(3), 1, + ACTIONS(6978), 2, + anon_sym_else, + anon_sym_while, + [225695] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10802), 1, + anon_sym_COMMA, + ACTIONS(10804), 1, + anon_sym_RBRACE, + STATE(6840), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6673), 1, - sym_identifier, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4623), 1, - sym__call_signature, - [127989] = 4, - ACTIONS(3), 1, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + [225714] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6841), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2377), 1, - sym_statement_block, - ACTIONS(6524), 4, + ACTIONS(10520), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128005] = 7, - ACTIONS(3), 1, + [225729] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10806), 1, + anon_sym_COMMA, + ACTIONS(10808), 1, + anon_sym_RBRACE, + STATE(6842), 1, sym_comment, - ACTIONS(6621), 1, - anon_sym_import, - ACTIONS(6675), 1, - sym_identifier, - STATE(1843), 1, - sym__type_query_subscript_expression, - STATE(1844), 1, - sym__type_query_member_expression, - STATE(2026), 1, - sym__type_query_call_expression, - STATE(4497), 1, - sym_import, - [128027] = 5, - ACTIONS(3), 1, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + [225748] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6843), 1, sym_comment, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_PIPE, - ACTIONS(6681), 1, - anon_sym_extends, - ACTIONS(4455), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [128045] = 3, - ACTIONS(3), 1, + ACTIONS(10407), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225763] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6844), 1, sym_comment, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(4427), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [128059] = 7, - ACTIONS(3), 1, + ACTIONS(10395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225778] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10810), 1, + anon_sym_EQ, + STATE(6845), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(6683), 1, + ACTIONS(10609), 2, anon_sym_COMMA, - ACTIONS(6685), 1, - anon_sym_GT, - STATE(4232), 1, - aux_sym_implements_clause_repeat1, - [128081] = 7, - ACTIONS(3), 1, + anon_sym_from, + [225795] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8623), 1, + anon_sym_COMMA, + ACTIONS(10812), 1, + anon_sym_RBRACE, + STATE(6846), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6687), 1, - anon_sym_QMARK, - STATE(3438), 1, - sym_formal_parameters, - STATE(4333), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [128103] = 4, - ACTIONS(3), 1, + STATE(7033), 1, + aux_sym_object_repeat1, + [225814] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6847), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2378), 1, - sym_statement_block, - ACTIONS(6560), 4, + ACTIONS(10558), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128119] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6689), 1, - anon_sym_QMARK, - STATE(3438), 1, - sym_formal_parameters, - STATE(4403), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [128141] = 7, - ACTIONS(3), 1, + [225829] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6848), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6691), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3310), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [128163] = 7, - ACTIONS(3), 1, + ACTIONS(10395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225844] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6849), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6693), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3359), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [128185] = 4, - ACTIONS(3), 1, + ACTIONS(10567), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225859] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6850), 1, sym_comment, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_PIPE, - ACTIONS(4350), 4, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - [128201] = 7, - ACTIONS(3), 1, + ACTIONS(10407), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225874] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6851), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6695), 1, - sym_identifier, - STATE(3438), 1, - sym_formal_parameters, - STATE(4435), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [128223] = 7, - ACTIONS(3), 1, + ACTIONS(10391), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225889] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6852), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6697), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3282), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [128245] = 7, - ACTIONS(3), 1, + ACTIONS(10391), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225904] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8623), 1, + anon_sym_COMMA, + ACTIONS(10812), 1, + anon_sym_RBRACE, + STATE(6853), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6508), 1, - sym_identifier, - STATE(707), 1, - sym__module, - STATE(3557), 1, - sym_nested_identifier, - STATE(3976), 1, - sym_string, - [128267] = 7, - ACTIONS(3), 1, + STATE(6952), 1, + aux_sym_object_repeat1, + [225923] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6854), 1, sym_comment, - ACTIONS(3225), 1, - anon_sym_DQUOTE, - ACTIONS(3227), 1, - anon_sym_SQUOTE, - ACTIONS(6540), 1, - sym_identifier, - STATE(2463), 1, - sym_nested_identifier, - STATE(2479), 1, - sym_string, - STATE(2617), 1, - sym__module, - [128289] = 7, - ACTIONS(3), 1, + ACTIONS(10491), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225938] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6473), 1, + anon_sym_RPAREN, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(6855), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(6508), 1, - sym_identifier, - STATE(732), 1, - sym__module, - STATE(3557), 1, - sym_nested_identifier, - STATE(3976), 1, - sym_string, - [128311] = 7, - ACTIONS(3), 1, + [225957] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6856), 1, sym_comment, - ACTIONS(3225), 1, - anon_sym_DQUOTE, - ACTIONS(3227), 1, - anon_sym_SQUOTE, - ACTIONS(6540), 1, - sym_identifier, - STATE(2463), 1, - sym_nested_identifier, - STATE(2479), 1, - sym_string, - STATE(2690), 1, - sym__module, - [128333] = 4, + ACTIONS(10395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225972] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6473), 1, + anon_sym_RPAREN, + STATE(6654), 1, + aux_sym_array_repeat1, + STATE(6857), 1, + sym_comment, + [225991] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10814), 1, + sym_identifier, + ACTIONS(10816), 1, + anon_sym_LBRACK, + ACTIONS(10818), 1, + sym_private_property_identifier, + STATE(6858), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2409), 1, - sym_statement_block, - ACTIONS(6562), 4, + [226010] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6859), 1, + sym_comment, + ACTIONS(10395), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128349] = 7, + [226025] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10820), 1, + sym_identifier, + STATE(6860), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - ACTIONS(6699), 1, - anon_sym_QMARK, - STATE(3233), 1, - sym_formal_parameters, - STATE(3404), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [128371] = 4, - ACTIONS(3), 1, + STATE(8104), 1, + sym_nested_type_identifier, + STATE(8459), 1, + sym_nested_identifier, + [226044] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6861), 1, sym_comment, - STATE(3441), 1, - aux_sym_object_type_repeat1, - ACTIONS(6703), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6701), 3, + ACTIONS(10567), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128387] = 4, - ACTIONS(3), 1, + [226059] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6862), 1, sym_comment, - STATE(3432), 1, - aux_sym_object_type_repeat1, - ACTIONS(3516), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6705), 3, + ACTIONS(10407), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128403] = 7, - ACTIONS(3), 1, + [226074] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6863), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6707), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(4035), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [128425] = 7, - ACTIONS(3), 1, + ACTIONS(10822), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226089] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6864), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6709), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3309), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [128447] = 4, - ACTIONS(3), 1, + ACTIONS(10491), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226104] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10824), 1, + anon_sym_COMMA, + ACTIONS(10826), 1, + anon_sym_GT, + STATE(6865), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2412), 1, - sym_statement_block, - ACTIONS(6488), 4, + STATE(6997), 1, + aux_sym_type_parameters_repeat1, + [226123] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6866), 1, + sym_comment, + ACTIONS(10563), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128463] = 7, - ACTIONS(3), 1, + [226138] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6867), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(6711), 1, - anon_sym_export, - ACTIONS(6713), 1, - anon_sym_class, - ACTIONS(6715), 1, - anon_sym_abstract, - STATE(1136), 1, - sym_decorator, - STATE(3483), 1, - aux_sym_export_statement_repeat1, - [128485] = 4, - ACTIONS(3), 1, + ACTIONS(10828), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226153] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6868), 1, sym_comment, - ACTIONS(6719), 1, - anon_sym_property, - STATE(3461), 2, - sym_ui_property_modifier, - aux_sym_ui_property_repeat1, - ACTIONS(6717), 3, - anon_sym_default, - anon_sym_readonly, - anon_sym_required, - [128501] = 6, - ACTIONS(3), 1, + ACTIONS(10520), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226168] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6869), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(6723), 1, - anon_sym_QMARK, - ACTIONS(6721), 2, + ACTIONS(10828), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [128521] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + [226183] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6870), 1, sym_comment, - ACTIONS(6333), 1, - anon_sym_LT, - ACTIONS(6546), 1, + ACTIONS(10491), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6725), 1, - anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_LBRACE_PIPE, - STATE(3943), 1, - aux_sym_extends_type_clause_repeat1, - STATE(4088), 1, - sym_type_arguments, - [128543] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + [226198] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6871), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(3518), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6729), 3, + ACTIONS(10830), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128559] = 4, - ACTIONS(3), 1, + [226213] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6872), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2384), 1, - sym_statement_block, - ACTIONS(6589), 4, + ACTIONS(10822), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128575] = 4, - ACTIONS(3), 1, + [226228] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6873), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2386), 1, - sym_statement_block, - ACTIONS(6562), 4, + ACTIONS(10563), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128591] = 7, - ACTIONS(3), 1, + [226243] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6874), 1, sym_comment, - ACTIONS(2213), 1, + ACTIONS(8577), 3, anon_sym_LBRACE, - ACTIONS(5947), 1, anon_sym_COLON, - ACTIONS(5949), 1, - anon_sym_DOT, - ACTIONS(6267), 1, - anon_sym_on, - ACTIONS(6731), 1, - sym_identifier, - STATE(2492), 1, - sym_ui_object_initializer, - [128613] = 7, - ACTIONS(3), 1, + anon_sym_EQ_GT, + [226258] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6875), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6733), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3827), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [128635] = 7, - ACTIONS(3), 1, + ACTIONS(10832), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226273] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10834), 1, + anon_sym_COMMA, + ACTIONS(10836), 1, + anon_sym_GT, + STATE(6876), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6735), 1, - sym_identifier, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4599), 1, - sym__call_signature, - [128657] = 4, - ACTIONS(3), 1, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + [226292] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6877), 1, + sym_comment, + ACTIONS(10828), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226307] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6878), 1, sym_comment, - ACTIONS(6737), 1, + ACTIONS(10838), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226322] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10842), 1, anon_sym_COLON, - ACTIONS(6303), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(4388), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [128673] = 5, - ACTIONS(3), 1, + STATE(6879), 1, sym_comment, - ACTIONS(6649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6739), 1, - anon_sym_BQUOTE, - ACTIONS(6415), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3389), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [128691] = 4, - ACTIONS(3), 1, + ACTIONS(10840), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [226339] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6880), 1, sym_comment, - STATE(3463), 1, - aux_sym_object_type_repeat1, - ACTIONS(3534), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6741), 3, + ACTIONS(10395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128707] = 4, - ACTIONS(3), 1, + [226354] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10844), 1, + anon_sym_COMMA, + ACTIONS(10846), 1, + anon_sym_GT, + STATE(6881), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(3534), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6741), 3, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + [226373] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6882), 1, + sym_comment, + ACTIONS(10395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [128723] = 5, - ACTIONS(3), 1, + [226388] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6883), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6623), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6625), 1, - anon_sym_QMARK_COLON, - STATE(3836), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [128741] = 2, - ACTIONS(3), 1, + ACTIONS(10520), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226403] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6884), 1, sym_comment, - ACTIONS(6743), 6, + ACTIONS(10407), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128753] = 2, - ACTIONS(3), 1, + [226418] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10848), 1, + anon_sym_COMMA, + ACTIONS(10850), 1, + anon_sym_RPAREN, + STATE(6885), 1, sym_comment, - ACTIONS(6745), 6, + STATE(6909), 1, + aux_sym_formal_parameters_repeat1, + [226437] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10852), 1, + anon_sym_COMMA, + ACTIONS(10854), 1, + anon_sym_RBRACE, + STATE(6886), 1, + sym_comment, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + [226456] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6887), 1, + sym_comment, + ACTIONS(10558), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_SEMI, + [226471] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10856), 1, + anon_sym_COMMA, + ACTIONS(10858), 1, anon_sym_RBRACE, + STATE(6888), 1, + sym_comment, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + [226490] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6889), 1, + sym_comment, + ACTIONS(10558), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [128765] = 5, - ACTIONS(3), 1, + [226505] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6890), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6623), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6625), 1, - anon_sym_QMARK_COLON, - STATE(3837), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [128783] = 7, - ACTIONS(3), 1, + ACTIONS(10491), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226520] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10860), 1, + anon_sym_COMMA, + ACTIONS(10862), 1, + anon_sym_GT, + STATE(6891), 1, sym_comment, - ACTIONS(2989), 1, - anon_sym_DQUOTE, - ACTIONS(2991), 1, - anon_sym_SQUOTE, - ACTIONS(6514), 1, - sym_identifier, - STATE(678), 1, - sym_nested_identifier, - STATE(701), 1, - sym_string, - STATE(732), 1, - sym__module, - [128805] = 7, - ACTIONS(3), 1, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + [226539] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6892), 1, + sym_comment, + ACTIONS(10567), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226554] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6961), 1, + sym__automatic_semicolon, + STATE(6893), 1, sym_comment, - ACTIONS(2213), 1, + ACTIONS(6899), 2, + anon_sym_else, + anon_sym_while, + [226571] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4399), 1, anon_sym_LBRACE, - ACTIONS(5947), 1, - anon_sym_COLON, - ACTIONS(5949), 1, - anon_sym_DOT, - ACTIONS(6387), 1, - anon_sym_on, - ACTIONS(6747), 1, - anon_sym_function, - STATE(2492), 1, - sym_ui_object_initializer, - [128827] = 5, - ACTIONS(3), 1, + STATE(6894), 1, sym_comment, - ACTIONS(6749), 1, - anon_sym_default, - ACTIONS(6751), 1, - anon_sym_RBRACE, - ACTIONS(6753), 1, - anon_sym_case, - STATE(3548), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [128845] = 3, - ACTIONS(3), 1, + ACTIONS(5767), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [226588] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6895), 1, sym_comment, - ACTIONS(4985), 2, + ACTIONS(10393), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3765), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [128859] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + [226603] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6896), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6755), 1, - sym_identifier, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4541), 1, - sym__call_signature, - [128881] = 5, - ACTIONS(3), 1, + ACTIONS(10832), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226618] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4397), 1, + anon_sym_LBRACE, + STATE(6897), 1, sym_comment, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_PIPE, - ACTIONS(6681), 1, - anon_sym_extends, - ACTIONS(4118), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [128899] = 5, - ACTIONS(3), 1, + ACTIONS(5765), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [226635] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4397), 1, + anon_sym_LBRACE, + STATE(6898), 1, sym_comment, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_PIPE, - ACTIONS(6681), 1, - anon_sym_extends, - ACTIONS(4128), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [128917] = 7, - ACTIONS(3), 1, + ACTIONS(5765), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [226652] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6899), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6757), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3327), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [128939] = 7, - ACTIONS(3), 1, + ACTIONS(10393), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226667] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4325), 1, + anon_sym_LBRACE, + STATE(6900), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(6759), 1, - anon_sym_export, - ACTIONS(6761), 1, - anon_sym_class, - ACTIONS(6763), 1, - anon_sym_abstract, - STATE(1136), 1, - sym_decorator, - STATE(3483), 1, - aux_sym_export_statement_repeat1, - [128961] = 5, - ACTIONS(3), 1, + ACTIONS(5763), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [226684] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6901), 1, sym_comment, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_PIPE, - ACTIONS(6681), 1, - anon_sym_extends, - ACTIONS(4132), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [128979] = 2, - ACTIONS(3), 1, + ACTIONS(10613), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226699] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6902), 1, sym_comment, - ACTIONS(6478), 6, + ACTIONS(10558), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [128991] = 4, - ACTIONS(3), 1, + [226714] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6903), 1, sym_comment, - STATE(3524), 1, - aux_sym_object_type_repeat1, - ACTIONS(6767), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6765), 3, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129007] = 2, - ACTIONS(3), 1, + [226729] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6904), 1, sym_comment, - ACTIONS(6582), 6, + ACTIONS(10395), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [129019] = 4, - ACTIONS(3), 1, + [226744] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10864), 1, + anon_sym_LPAREN, + ACTIONS(10866), 1, + anon_sym_await, + STATE(152), 1, + sym__for_header, + STATE(6905), 1, sym_comment, - STATE(3549), 1, - aux_sym_object_type_repeat1, - ACTIONS(6771), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6769), 3, + [226763] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6906), 1, + sym_comment, + ACTIONS(10395), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129035] = 5, - ACTIONS(3), 1, + [226778] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8062), 1, + anon_sym_AMP, + ACTIONS(8066), 1, + anon_sym_extends, + ACTIONS(9358), 1, + anon_sym_PIPE, + STATE(6907), 1, sym_comment, - ACTIONS(6773), 1, - anon_sym_default, - ACTIONS(6776), 1, - anon_sym_RBRACE, - ACTIONS(6778), 1, - anon_sym_case, - STATE(3460), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [129053] = 4, - ACTIONS(3), 1, + [226797] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4325), 1, + anon_sym_LBRACE, + STATE(6908), 1, sym_comment, - ACTIONS(6784), 1, - anon_sym_property, - STATE(3461), 2, - sym_ui_property_modifier, - aux_sym_ui_property_repeat1, - ACTIONS(6781), 3, - anon_sym_default, - anon_sym_readonly, - anon_sym_required, - [129069] = 3, - ACTIONS(3), 1, + ACTIONS(5763), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [226814] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10868), 1, + anon_sym_COMMA, + ACTIONS(10870), 1, + anon_sym_RPAREN, + STATE(6603), 1, + aux_sym_formal_parameters_repeat1, + STATE(6909), 1, sym_comment, - ACTIONS(6226), 1, - anon_sym_is, - ACTIONS(6576), 5, + [226833] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6910), 1, + sym_comment, + ACTIONS(10393), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226848] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6911), 1, + sym_comment, + ACTIONS(8719), 3, anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [226863] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6912), 1, + sym_comment, + ACTIONS(10407), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129083] = 4, - ACTIONS(3), 1, + [226878] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6913), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(3512), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6786), 3, + ACTIONS(10391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129099] = 7, - ACTIONS(3), 1, + [226893] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6914), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(6763), 1, - anon_sym_abstract, - ACTIONS(6788), 1, - anon_sym_export, - ACTIONS(6790), 1, - anon_sym_class, - STATE(1136), 1, - sym_decorator, - STATE(3483), 1, - aux_sym_export_statement_repeat1, - [129121] = 4, - ACTIONS(3), 1, + ACTIONS(10391), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226908] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6915), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(6795), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6792), 3, + ACTIONS(10491), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129137] = 5, + [226923] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10872), 1, + anon_sym_COMMA, + ACTIONS(10875), 1, + anon_sym_RBRACE, + STATE(6916), 2, + sym_comment, + aux_sym_object_pattern_repeat1, + [226940] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10877), 1, + anon_sym_EQ, + STATE(6917), 1, + sym_comment, + ACTIONS(4657), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [226957] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10880), 1, + anon_sym_SQUOTE, + STATE(6918), 1, sym_comment, - ACTIONS(6649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6797), 1, - anon_sym_BQUOTE, - ACTIONS(6645), 2, - sym__template_chars, + ACTIONS(10882), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - STATE(3383), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [129155] = 7, + [226974] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10884), 1, + anon_sym_LPAREN, + ACTIONS(10886), 1, + anon_sym_await, + STATE(127), 1, + sym__for_header, + STATE(6919), 1, + sym_comment, + [226993] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10888), 1, + sym_identifier, + ACTIONS(10890), 1, + anon_sym_SEMI, + ACTIONS(10892), 1, + sym__automatic_semicolon, + STATE(6920), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6799), 1, - anon_sym_QMARK, - STATE(3438), 1, - sym_formal_parameters, - STATE(4312), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [129177] = 4, + [227012] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10894), 1, + sym_identifier, + ACTIONS(10896), 1, + anon_sym_SEMI, + ACTIONS(10898), 1, + sym__automatic_semicolon, + STATE(6921), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(3520), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6801), 3, + [227031] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6922), 1, + sym_comment, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129193] = 4, - ACTIONS(3), 1, + [227046] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9396), 1, + anon_sym_COMMA, + ACTIONS(10900), 1, + anon_sym_RBRACE, + STATE(6916), 1, + aux_sym_object_pattern_repeat1, + STATE(6923), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2399), 1, - sym_statement_block, - ACTIONS(6550), 4, + [227065] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10902), 1, + anon_sym_LPAREN, + ACTIONS(10904), 1, + anon_sym_await, + STATE(117), 1, + sym__for_header, + STATE(6924), 1, + sym_comment, + [227084] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10906), 1, + anon_sym_COMMA, + ACTIONS(10908), 1, + anon_sym_RBRACK, + STATE(6663), 1, + aux_sym_tuple_type_repeat1, + STATE(6925), 1, + sym_comment, + [227103] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6926), 1, + sym_comment, + ACTIONS(10395), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129209] = 4, - ACTIONS(3), 1, + [227118] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6927), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2387), 1, - sym_statement_block, - ACTIONS(6476), 4, + ACTIONS(10910), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129225] = 7, - ACTIONS(3), 1, + [227133] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6928), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6803), 1, - sym_identifier, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4541), 1, - sym__call_signature, - [129247] = 2, - ACTIONS(3), 1, + ACTIONS(10567), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227148] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6929), 1, sym_comment, - ACTIONS(2123), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129259] = 7, - ACTIONS(3), 1, + ACTIONS(10395), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227163] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6930), 1, sym_comment, - ACTIONS(6621), 1, - anon_sym_import, - ACTIONS(6805), 1, - sym_identifier, - STATE(2972), 1, - sym__type_query_member_expression, - STATE(2975), 1, - sym__type_query_subscript_expression, - STATE(3081), 1, - sym__type_query_call_expression, - STATE(4288), 1, - sym_import, - [129281] = 2, - ACTIONS(3), 1, + ACTIONS(10536), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227178] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6931), 1, sym_comment, - ACTIONS(2119), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129293] = 7, - ACTIONS(3), 1, + ACTIONS(10563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227193] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6932), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - ACTIONS(6807), 1, - anon_sym_QMARK, - STATE(3233), 1, - sym_formal_parameters, - STATE(3433), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [129315] = 2, - ACTIONS(3), 1, + ACTIONS(10393), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227208] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(10912), 1, + anon_sym_RPAREN, + STATE(6933), 1, sym_comment, - ACTIONS(2115), 6, - anon_sym_as, - anon_sym_LBRACK, + STATE(8443), 1, + sym_type_annotation, + [227227] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10914), 1, + anon_sym_COMMA, + ACTIONS(10916), 1, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129327] = 7, - ACTIONS(3), 1, + STATE(6593), 1, + aux_sym_tuple_type_repeat1, + STATE(6934), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(6809), 1, + [227246] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6935), 1, + sym_comment, + ACTIONS(10407), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6811), 1, - anon_sym_GT, - STATE(4274), 1, - aux_sym_implements_clause_repeat1, - [129349] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + [227261] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6999), 1, + sym__automatic_semicolon, + STATE(6936), 1, sym_comment, - ACTIONS(6737), 1, - anon_sym_COLON, - ACTIONS(6271), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(4556), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [129365] = 7, - ACTIONS(3), 1, + ACTIONS(6905), 2, + anon_sym_else, + anon_sym_while, + [227278] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7009), 1, + sym__automatic_semicolon, + STATE(6937), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6813), 1, - sym_identifier, - STATE(3438), 1, - sym_formal_parameters, - STATE(4435), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [129387] = 4, - ACTIONS(3), 1, + ACTIONS(6907), 2, + anon_sym_else, + anon_sym_while, + [227295] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7067), 1, + sym__automatic_semicolon, + STATE(6938), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2403), 1, - sym_statement_block, - ACTIONS(6488), 4, + ACTIONS(6959), 2, + anon_sym_else, + anon_sym_while, + [227312] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6939), 1, + sym_comment, + ACTIONS(10395), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129403] = 7, - ACTIONS(3), 1, + [227327] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6940), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6815), 1, - sym_identifier, - STATE(3438), 1, - sym_formal_parameters, - STATE(4435), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [129425] = 4, - ACTIONS(3), 1, + ACTIONS(10567), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227342] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6941), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(3528), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6817), 3, + ACTIONS(10516), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129441] = 5, - ACTIONS(3), 1, + [227357] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10918), 1, + anon_sym_COMMA, + ACTIONS(10920), 1, + anon_sym_RBRACE, + STATE(6886), 1, + aux_sym_enum_body_repeat1, + STATE(6942), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_AT, - STATE(1136), 1, - sym_decorator, - STATE(3483), 1, - aux_sym_export_statement_repeat1, - ACTIONS(3241), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [129459] = 2, - ACTIONS(3), 1, + [227376] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6943), 1, sym_comment, - ACTIONS(2111), 6, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129471] = 4, - ACTIONS(3), 1, + ACTIONS(10922), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227391] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6944), 1, sym_comment, - ACTIONS(6445), 1, + ACTIONS(10558), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227406] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8789), 1, anon_sym_LBRACE, - STATE(2410), 1, - sym_statement_block, - ACTIONS(6476), 4, + ACTIONS(8791), 1, + anon_sym_LBRACE_PIPE, + STATE(4350), 1, + sym_object_type, + STATE(6945), 1, + sym_comment, + [227425] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9922), 1, + anon_sym_EQ, + STATE(6946), 1, + sym_comment, + ACTIONS(10924), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [227442] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6947), 1, + sym_comment, + ACTIONS(10563), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129487] = 5, - ACTIONS(3), 1, + [227457] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6948), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6623), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6625), 1, - anon_sym_QMARK_COLON, - STATE(3839), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [129505] = 5, - ACTIONS(3), 1, + ACTIONS(10407), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227472] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6949), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6623), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6625), 1, - anon_sym_QMARK_COLON, - STATE(3767), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [129523] = 5, - ACTIONS(3), 1, + ACTIONS(10391), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227487] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6950), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(10391), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227502] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10926), 1, anon_sym_LBRACE, - ACTIONS(6613), 1, - anon_sym_LBRACK, - ACTIONS(6822), 1, - sym_identifier, - STATE(4076), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [129541] = 2, - ACTIONS(3), 1, + STATE(6951), 1, + sym_comment, + ACTIONS(9640), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [227519] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10928), 1, + anon_sym_COMMA, + ACTIONS(10931), 1, + anon_sym_RBRACE, + STATE(6952), 2, sym_comment, - ACTIONS(6603), 6, + aux_sym_object_repeat1, + [227536] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6953), 1, + sym_comment, + ACTIONS(10395), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227551] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10933), 1, anon_sym_LBRACE, + ACTIONS(10935), 1, + anon_sym_DOT, + STATE(4486), 1, + sym_ui_object_initializer, + STATE(6954), 1, + sym_comment, + [227570] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6955), 1, + sym_comment, + ACTIONS(10395), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [129553] = 4, - ACTIONS(3), 1, + [227585] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6956), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(3530), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6824), 3, + ACTIONS(10937), 3, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACK, + [227600] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6957), 1, + sym_comment, + ACTIONS(10407), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129569] = 2, - ACTIONS(3), 1, + [227615] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10694), 1, + anon_sym_COMMA, + ACTIONS(10939), 1, + anon_sym_RBRACK, + STATE(6777), 1, + aux_sym_ui_object_array_repeat1, + STATE(6958), 1, sym_comment, - ACTIONS(2143), 6, - anon_sym_as, - anon_sym_LBRACK, + [227634] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6497), 1, anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [129581] = 7, - ACTIONS(3), 1, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(6959), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6826), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3825), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [129603] = 6, - ACTIONS(3), 1, + [227653] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6960), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_COLON, - ACTIONS(6498), 1, - anon_sym_EQ, - STATE(3938), 1, - sym_type_annotation, - STATE(4511), 1, - sym__initializer, - ACTIONS(6828), 2, + ACTIONS(10391), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [129623] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + [227668] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6961), 1, sym_comment, - STATE(3482), 1, - aux_sym_object_type_repeat1, - ACTIONS(3530), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6824), 3, + ACTIONS(10941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129639] = 5, - ACTIONS(3), 1, + [227683] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + ACTIONS(10443), 1, + anon_sym_as, + STATE(6962), 1, sym_comment, - ACTIONS(6749), 1, - anon_sym_default, - ACTIONS(6753), 1, - anon_sym_case, - ACTIONS(6830), 1, - anon_sym_RBRACE, - STATE(3505), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [129657] = 7, + STATE(8140), 1, + sym__from_clause, + [227702] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10447), 1, + anon_sym_LBRACE, + ACTIONS(10943), 1, + sym_identifier, + STATE(6394), 1, + sym_export_clause, + STATE(6963), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6832), 1, - anon_sym_QMARK, - STATE(3438), 1, - sym_formal_parameters, - STATE(4320), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [129679] = 4, - ACTIONS(3), 1, + [227721] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6964), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2414), 1, - sym_statement_block, - ACTIONS(6520), 4, + ACTIONS(10563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227736] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6965), 1, + sym_comment, + ACTIONS(10391), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129695] = 4, - ACTIONS(3), 1, + [227751] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6966), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2413), 1, - sym_statement_block, - ACTIONS(6449), 4, + ACTIONS(10395), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129711] = 7, - ACTIONS(3), 1, + [227766] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6967), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - ACTIONS(6834), 1, - anon_sym_QMARK, - STATE(3233), 1, - sym_formal_parameters, - STATE(3480), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [129733] = 4, - ACTIONS(3), 1, + ACTIONS(10391), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227781] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6968), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2366), 1, - sym_statement_block, - ACTIONS(6520), 4, + ACTIONS(10520), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129749] = 4, - ACTIONS(3), 1, + [227796] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6969), 1, sym_comment, - STATE(3490), 1, - aux_sym_object_type_repeat1, - ACTIONS(6838), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6836), 3, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129765] = 7, - ACTIONS(3), 1, + [227811] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8516), 1, + anon_sym_DOT, + STATE(6970), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6840), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3563), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [129787] = 4, - ACTIONS(3), 1, + ACTIONS(10945), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [227828] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8522), 1, + anon_sym_DOT, + STATE(6971), 1, sym_comment, - ACTIONS(6445), 1, + ACTIONS(10945), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [227845] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4343), 1, anon_sym_LBRACE, - STATE(2372), 1, - sym_statement_block, - ACTIONS(6449), 4, + STATE(6972), 1, + sym_comment, + ACTIONS(5998), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [227862] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6973), 1, + sym_comment, + ACTIONS(10393), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129803] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6842), 1, - sym_identifier, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4541), 1, - sym__call_signature, - [129825] = 5, - ACTIONS(3), 1, + [227877] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4341), 1, + anon_sym_LBRACE, + STATE(6974), 1, sym_comment, - ACTIONS(6749), 1, - anon_sym_default, - ACTIONS(6753), 1, - anon_sym_case, - ACTIONS(6844), 1, + ACTIONS(6004), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [227894] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9396), 1, + anon_sym_COMMA, + ACTIONS(10947), 1, anon_sym_RBRACE, - STATE(3460), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [129843] = 7, - ACTIONS(3), 1, + STATE(6916), 1, + aux_sym_object_pattern_repeat1, + STATE(6975), 1, sym_comment, - ACTIONS(2989), 1, - anon_sym_DQUOTE, - ACTIONS(2991), 1, - anon_sym_SQUOTE, - ACTIONS(6514), 1, - sym_identifier, - STATE(678), 1, - sym_nested_identifier, - STATE(701), 1, - sym_string, - STATE(707), 1, - sym__module, - [129865] = 7, - ACTIONS(3), 1, + [227913] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10694), 1, + anon_sym_COMMA, + ACTIONS(10949), 1, + anon_sym_RBRACK, + STATE(6680), 1, + aux_sym_ui_object_array_repeat1, + STATE(6976), 1, sym_comment, - ACTIONS(6621), 1, - anon_sym_import, - ACTIONS(6846), 1, - sym_identifier, - STATE(1448), 1, - sym__type_query_member_expression, - STATE(1450), 1, - sym__type_query_subscript_expression, - STATE(1584), 1, - sym__type_query_call_expression, - STATE(4390), 1, - sym_import, - [129887] = 7, - ACTIONS(3), 1, + [227932] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(10951), 1, + anon_sym_RBRACK, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(6977), 1, sym_comment, - ACTIONS(2752), 1, + [227951] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6848), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3737), 1, - sym__call_signature, - STATE(4526), 1, + ACTIONS(10953), 1, + anon_sym_EQ, + STATE(6978), 1, + sym_comment, + STATE(8586), 1, sym_type_parameters, - [129909] = 7, - ACTIONS(3), 1, + [227970] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10955), 1, + anon_sym_LBRACE, + ACTIONS(10957), 1, + anon_sym_LPAREN, + STATE(1472), 1, + sym_statement_block, + STATE(6979), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(6850), 1, + [227989] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10959), 1, anon_sym_COMMA, - ACTIONS(6852), 1, - anon_sym_GT, - STATE(4128), 1, - aux_sym_implements_clause_repeat1, - [129931] = 5, - ACTIONS(3), 1, + ACTIONS(10961), 1, + anon_sym_RPAREN, + STATE(6603), 1, + aux_sym_formal_parameters_repeat1, + STATE(6980), 1, sym_comment, - ACTIONS(6649), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6854), 1, - anon_sym_BQUOTE, - ACTIONS(6405), 2, - sym__template_chars, - sym_escape_sequence, - STATE(3466), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [129949] = 4, - ACTIONS(3), 1, + [228008] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8176), 1, + anon_sym_implements, + ACTIONS(10963), 1, + anon_sym_LBRACE, + STATE(6981), 1, sym_comment, - STATE(3544), 1, - aux_sym_object_type_repeat1, - ACTIONS(3526), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6856), 3, + STATE(8550), 1, + sym_implements_clause, + [228027] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4339), 1, + anon_sym_LBRACE, + STATE(6982), 1, + sym_comment, + ACTIONS(6029), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [228044] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6983), 1, + sym_comment, + ACTIONS(10563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [129965] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6623), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6625), 1, - anon_sym_QMARK_COLON, - STATE(3724), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [129983] = 7, - ACTIONS(3), 1, + [228059] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7065), 1, + sym__automatic_semicolon, + STATE(6984), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(6556), 1, - sym_identifier, - STATE(3254), 1, - sym_nested_identifier, - STATE(3276), 1, - sym_string, - STATE(3826), 1, - sym__module, - [130005] = 7, - ACTIONS(3), 1, + ACTIONS(6976), 2, + anon_sym_else, + anon_sym_while, + [228076] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7053), 1, + sym__automatic_semicolon, + STATE(6985), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(6556), 1, - sym_identifier, - STATE(3254), 1, - sym_nested_identifier, - STATE(3276), 1, - sym_string, - STATE(3769), 1, - sym__module, - [130027] = 4, - ACTIONS(3), 1, + ACTIONS(6982), 2, + anon_sym_else, + anon_sym_while, + [228093] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6986), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2389), 1, - sym_statement_block, - ACTIONS(6512), 4, + ACTIONS(10393), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130043] = 5, - ACTIONS(3), 1, + [228108] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7051), 1, + sym__automatic_semicolon, + STATE(6987), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6623), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6625), 1, - anon_sym_QMARK_COLON, - STATE(3722), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [130061] = 4, - ACTIONS(3), 1, + ACTIONS(6984), 2, + anon_sym_else, + anon_sym_while, + [228125] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6988), 1, sym_comment, - STATE(3528), 1, - aux_sym_object_type_repeat1, - ACTIONS(6860), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6858), 3, + ACTIONS(10536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130077] = 5, - ACTIONS(3), 1, + [228140] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6989), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6623), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6625), 1, - anon_sym_QMARK_COLON, - STATE(3812), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [130095] = 4, - ACTIONS(3), 1, + ACTIONS(10965), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [228155] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6990), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(3508), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6862), 3, + ACTIONS(10967), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130111] = 7, - ACTIONS(3), 1, + [228170] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10969), 1, + anon_sym_EQ, + STATE(6991), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, + ACTIONS(10609), 2, + anon_sym_COMMA, + anon_sym_from, + [228187] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10971), 1, + anon_sym_LBRACE, + ACTIONS(10973), 1, anon_sym_LPAREN, - ACTIONS(6864), 1, - anon_sym_QMARK, - STATE(3233), 1, - sym_formal_parameters, - STATE(3500), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [130133] = 5, - ACTIONS(3), 1, + STATE(1267), 1, + sym_statement_block, + STATE(6992), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(6866), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_GT, - [130151] = 4, - ACTIONS(3), 1, + [228206] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6993), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(3493), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6868), 3, + ACTIONS(10975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130167] = 4, - ACTIONS(3), 1, + [228221] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6994), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(3516), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6705), 3, + ACTIONS(10536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130183] = 4, - ACTIONS(3), 1, + [228236] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6995), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(3487), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6870), 3, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130199] = 4, - ACTIONS(3), 1, + [228251] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(10979), 1, + anon_sym_RPAREN, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(6996), 1, sym_comment, - STATE(3519), 1, - aux_sym_object_type_repeat1, - ACTIONS(3493), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6868), 3, + [228270] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10981), 1, + anon_sym_COMMA, + ACTIONS(10984), 1, + anon_sym_GT, + STATE(6997), 2, + sym_comment, + aux_sym_type_parameters_repeat1, + [228287] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6998), 1, + sym_comment, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130215] = 4, - ACTIONS(3), 1, + [228302] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6999), 1, sym_comment, - STATE(3540), 1, - aux_sym_object_type_repeat1, - ACTIONS(3479), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6872), 3, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130231] = 4, - ACTIONS(3), 1, + [228317] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7000), 1, sym_comment, - STATE(3523), 1, - aux_sym_object_type_repeat1, - ACTIONS(6876), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6874), 3, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130247] = 4, - ACTIONS(3), 1, + [228332] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7001), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(3479), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6872), 3, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130263] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6878), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3365), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [130285] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3273), 6, - anon_sym_export, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [130297] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - ACTIONS(6880), 1, - sym_identifier, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4541), 1, - sym__call_signature, - [130319] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6882), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3664), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [130341] = 4, - ACTIONS(3), 1, + [228347] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7002), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2394), 1, - sym_statement_block, - ACTIONS(6572), 4, + ACTIONS(10536), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130357] = 2, - ACTIONS(3), 1, + [228362] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7003), 1, sym_comment, - ACTIONS(6576), 6, - sym__automatic_semicolon, + ACTIONS(8569), 3, anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [228377] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10988), 1, + anon_sym_COMMA, + ACTIONS(10990), 1, + anon_sym_RBRACK, + STATE(7004), 1, + sym_comment, + STATE(7070), 1, + aux_sym_tuple_type_repeat1, + [228396] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7005), 1, + sym_comment, + ACTIONS(10567), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130369] = 3, + [228411] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10992), 1, + sym__glimmer_template_content, + ACTIONS(10995), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(7006), 2, sym_comment, - ACTIONS(6677), 1, + aux_sym_glimmer_template_repeat1, + [228428] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8166), 1, anon_sym_AMP, - ACTIONS(4278), 5, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(8168), 1, anon_sym_PIPE, + ACTIONS(8170), 1, anon_sym_extends, - [130383] = 5, - ACTIONS(3), 1, + STATE(7007), 1, sym_comment, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_PIPE, - ACTIONS(6681), 1, - anon_sym_extends, - ACTIONS(4286), 3, - anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - [130401] = 4, - ACTIONS(3), 1, + [228447] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7008), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2390), 1, - sym_statement_block, - ACTIONS(6512), 4, + ACTIONS(10986), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130417] = 4, - ACTIONS(3), 1, + [228462] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10997), 1, + anon_sym_COMMA, + ACTIONS(10999), 1, + anon_sym_GT, + STATE(7009), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2398), 1, - sym_statement_block, - ACTIONS(6550), 4, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + [228481] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11001), 1, + anon_sym_COMMA, + ACTIONS(11003), 1, + anon_sym_RBRACK, + STATE(6593), 1, + aux_sym_tuple_type_repeat1, + STATE(7010), 1, + sym_comment, + [228500] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11005), 1, + anon_sym_COMMA, + ACTIONS(11007), 1, + anon_sym_GT, + STATE(7011), 1, + sym_comment, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + [228519] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7012), 1, + sym_comment, + ACTIONS(11009), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130433] = 7, - ACTIONS(3), 1, + [228534] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11011), 1, + anon_sym_COMMA, + ACTIONS(11013), 1, + anon_sym_GT, + STATE(7013), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - ACTIONS(6884), 1, - anon_sym_QMARK, - STATE(3233), 1, - sym_formal_parameters, - STATE(3401), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [130455] = 4, - ACTIONS(3), 1, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + [228553] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(11015), 1, + anon_sym_RPAREN, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(7014), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(3506), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6886), 3, + [228572] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7015), 1, + sym_comment, + ACTIONS(10536), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130471] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - ACTIONS(6888), 1, - anon_sym_QMARK, - STATE(3114), 1, - sym_formal_parameters, - STATE(3642), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [130493] = 4, - ACTIONS(3), 1, + [228587] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7016), 1, sym_comment, - STATE(3522), 1, - aux_sym_object_type_repeat1, - ACTIONS(6892), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6890), 3, + ACTIONS(10567), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130509] = 5, - ACTIONS(3), 1, + [228602] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6619), 1, + anon_sym_RPAREN, + STATE(7017), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - ACTIONS(6623), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(6625), 1, - anon_sym_QMARK_COLON, - STATE(3657), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [130527] = 4, - ACTIONS(3), 1, + STATE(7077), 1, + aux_sym_array_repeat1, + [228621] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6619), 1, + anon_sym_RPAREN, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(7018), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(3481), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6894), 3, + [228640] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7019), 1, + sym_comment, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130543] = 6, - ACTIONS(3), 1, + [228655] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7020), 1, sym_comment, - ACTIONS(6447), 1, - anon_sym_DOT, - ACTIONS(6896), 1, - anon_sym_as, - ACTIONS(6900), 1, - aux_sym_ui_version_specifier_token1, - STATE(4266), 1, - sym_ui_version_specifier, - ACTIONS(6898), 2, + ACTIONS(10558), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [130563] = 5, - ACTIONS(3), 1, + [228670] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5739), 1, + anon_sym_LBRACE, + STATE(7021), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(5741), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [228687] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6037), 1, anon_sym_LBRACE, - ACTIONS(6613), 1, - anon_sym_LBRACK, - ACTIONS(6902), 1, - sym_identifier, - STATE(4207), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [130581] = 7, - ACTIONS(3), 1, + STATE(7022), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(6904), 1, + ACTIONS(6039), 2, anon_sym_COMMA, - ACTIONS(6906), 1, - anon_sym_GT, - STATE(4148), 1, - aux_sym_implements_clause_repeat1, - [130603] = 5, + anon_sym_LBRACE_PIPE, + [228704] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10451), 1, + anon_sym_require, + ACTIONS(11017), 1, + sym_identifier, + STATE(6970), 1, + sym_nested_identifier, + STATE(7023), 1, sym_comment, - ACTIONS(6749), 1, - anon_sym_default, - ACTIONS(6753), 1, - anon_sym_case, - ACTIONS(6908), 1, - anon_sym_RBRACE, - STATE(3460), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [130621] = 4, - ACTIONS(3), 1, + [228723] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7024), 1, sym_comment, - STATE(3465), 1, - aux_sym_object_type_repeat1, - ACTIONS(3526), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6856), 3, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130637] = 4, - ACTIONS(3), 1, + [228738] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7025), 1, sym_comment, - STATE(3468), 1, - aux_sym_object_type_repeat1, - ACTIONS(3487), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(6870), 3, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130653] = 6, - ACTIONS(3), 1, + [228753] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8623), 1, + anon_sym_COMMA, + ACTIONS(11019), 1, + anon_sym_RBRACE, + STATE(6952), 1, + aux_sym_object_repeat1, + STATE(7026), 1, sym_comment, - ACTIONS(6333), 1, - anon_sym_LT, - ACTIONS(6335), 1, - anon_sym_DOT, - ACTIONS(6910), 1, - anon_sym_LBRACE, - STATE(4090), 1, - sym_type_arguments, - ACTIONS(6912), 2, + [228772] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7027), 1, + sym_comment, + ACTIONS(10977), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [130673] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + [228787] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7028), 1, sym_comment, - ACTIONS(6737), 1, - anon_sym_COLON, - ACTIONS(6914), 1, - anon_sym_EQ_GT, - STATE(4556), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [130688] = 2, - ACTIONS(3), 1, + ACTIONS(10558), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [228802] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7029), 1, sym_comment, - ACTIONS(1581), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [228817] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11021), 1, + anon_sym_COMMA, + ACTIONS(11023), 1, anon_sym_RBRACE, + STATE(7030), 1, + sym_comment, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + [228836] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7031), 1, + sym_comment, + ACTIONS(10977), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130699] = 2, - ACTIONS(3), 1, + [228851] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7032), 1, sym_comment, - ACTIONS(6572), 5, + ACTIONS(10536), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130710] = 6, - ACTIONS(3), 1, + [228866] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8623), 1, + anon_sym_COMMA, + ACTIONS(11025), 1, + anon_sym_RBRACE, + STATE(6952), 1, + aux_sym_object_repeat1, + STATE(7033), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - ACTIONS(6917), 1, - sym_identifier, - STATE(3545), 1, - sym_nested_identifier, - STATE(3621), 1, - sym_string, - [130729] = 5, - ACTIONS(3), 1, + [228885] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11027), 1, + anon_sym_COMMA, + ACTIONS(11029), 1, + anon_sym_RBRACE, + STATE(6743), 1, + aux_sym_enum_body_repeat1, + STATE(7034), 1, sym_comment, - ACTIONS(6919), 1, - anon_sym_BQUOTE, - ACTIONS(6921), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6923), 1, - sym__template_chars, - STATE(3587), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [130746] = 5, - ACTIONS(3), 1, + [228904] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11031), 1, + anon_sym_COMMA, + ACTIONS(11033), 1, + anon_sym_RBRACE, + STATE(7035), 1, + sym_comment, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + [228923] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7036), 1, sym_comment, - ACTIONS(3924), 1, + ACTIONS(10977), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [228938] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4702), 1, anon_sym_LBRACE, - ACTIONS(5656), 1, + ACTIONS(9586), 1, anon_sym_DOT, - STATE(706), 1, - sym_statement_block, - ACTIONS(1493), 2, - anon_sym_else, - anon_sym_while, - [130763] = 6, - ACTIONS(3), 1, + STATE(7037), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3503), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [130782] = 6, - ACTIONS(3), 1, + STATE(7780), 1, + sym_ui_object_initializer, + [228957] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8707), 1, + anon_sym_LBRACE, + ACTIONS(8709), 1, + anon_sym_LBRACE_PIPE, + STATE(1783), 1, + sym_object_type, + STATE(7038), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3626), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [130801] = 4, - ACTIONS(3), 1, + [228976] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7039), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_COLON, - STATE(4471), 1, - sym_type_annotation, - ACTIONS(3384), 3, - anon_sym_EQ, + ACTIONS(10986), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [130816] = 4, - ACTIONS(3), 1, + anon_sym_SEMI, + [228991] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7040), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - STATE(4047), 1, - sym__initializer, - ACTIONS(6925), 3, + ACTIONS(10516), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130831] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6921), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - anon_sym_BQUOTE, - ACTIONS(6929), 1, - sym__template_chars, - STATE(3556), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [130848] = 2, - ACTIONS(3), 1, + [229006] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7041), 1, sym_comment, - ACTIONS(6593), 5, + ACTIONS(10395), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [130859] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6737), 1, - anon_sym_COLON, - ACTIONS(6931), 1, - anon_sym_EQ_GT, - STATE(4388), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [130874] = 4, - ACTIONS(3), 1, + [229021] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7042), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - STATE(4045), 1, - sym__initializer, - ACTIONS(6934), 3, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [130889] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6737), 1, - anon_sym_COLON, - ACTIONS(6936), 1, - anon_sym_EQ_GT, - STATE(4556), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [130904] = 6, - ACTIONS(3), 1, + [229036] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11035), 1, + anon_sym_EQ, + STATE(7043), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3114), 1, - sym_formal_parameters, - STATE(3680), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [130923] = 6, - ACTIONS(3), 1, + ACTIONS(10609), 2, + anon_sym_COMMA, + anon_sym_from, + [229053] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6602), 1, + anon_sym_RPAREN, + STATE(7014), 1, + aux_sym_array_repeat1, + STATE(7044), 1, sym_comment, - ACTIONS(6490), 1, + [229072] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8556), 1, anon_sym_LBRACE, - ACTIONS(6494), 1, - anon_sym_extends, - ACTIONS(6496), 1, + ACTIONS(8562), 1, anon_sym_LBRACE_PIPE, - STATE(2614), 1, + STATE(1568), 1, sym_object_type, - STATE(4163), 1, - sym_extends_type_clause, - [130942] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6737), 1, - anon_sym_COLON, - ACTIONS(6939), 1, - anon_sym_EQ_GT, - STATE(4388), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [130957] = 4, - ACTIONS(3), 1, + STATE(7045), 1, sym_comment, - ACTIONS(6737), 1, - anon_sym_COLON, - ACTIONS(6942), 1, - anon_sym_EQ_GT, - STATE(4556), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [130972] = 6, - ACTIONS(3), 1, + [229091] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7046), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(6763), 1, - anon_sym_abstract, - ACTIONS(6945), 1, - anon_sym_class, - STATE(1136), 1, - sym_decorator, - STATE(3483), 1, - aux_sym_export_statement_repeat1, - [130991] = 5, - ACTIONS(3), 1, + ACTIONS(10393), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [229106] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7047), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(6947), 2, + ACTIONS(11009), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [131008] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [229121] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7048), 1, sym_comment, - ACTIONS(6949), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131019] = 6, - ACTIONS(3), 1, + [229136] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11037), 1, + anon_sym_COMMA, + ACTIONS(11039), 1, + anon_sym_RBRACE, + STATE(7030), 1, + aux_sym_enum_body_repeat1, + STATE(7049), 1, sym_comment, - ACTIONS(6951), 1, - sym_identifier, - ACTIONS(6953), 1, - anon_sym_RPAREN, - STATE(4241), 1, - sym_ui_signal_parameter, - STATE(4880), 1, - sym_nested_identifier, - STATE(4969), 1, - sym_nested_type_identifier, - [131038] = 6, - ACTIONS(3), 1, + [229155] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7050), 1, sym_comment, - ACTIONS(4048), 1, + ACTIONS(11041), 3, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACK, + [229170] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8651), 1, anon_sym_LBRACE, - ACTIONS(6955), 1, - anon_sym_SEMI, - ACTIONS(6957), 1, + ACTIONS(8653), 1, + anon_sym_LBRACE_PIPE, + STATE(1114), 1, + sym_object_type, + STATE(7051), 1, + sym_comment, + [229189] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7052), 1, + sym_comment, + ACTIONS(10977), 3, sym__automatic_semicolon, - ACTIONS(6959), 1, - sym__function_signature_automatic_semicolon, - STATE(2212), 1, - sym_statement_block, - [131057] = 2, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [229204] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7053), 1, sym_comment, - ACTIONS(6587), 5, + ACTIONS(10520), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131068] = 6, - ACTIONS(3), 1, + [229219] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8516), 1, + anon_sym_DOT, + STATE(7054), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3114), 1, - sym_formal_parameters, - STATE(4038), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [131087] = 2, + ACTIONS(11043), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [229236] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11045), 1, + sym_identifier, + ACTIONS(11047), 1, + anon_sym_LBRACK, + ACTIONS(11049), 1, + sym_private_property_identifier, + STATE(7055), 1, sym_comment, - ACTIONS(5185), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [131098] = 6, - ACTIONS(3), 1, + [229255] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8522), 1, + anon_sym_DOT, + STATE(7056), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(6961), 1, - anon_sym_class, - ACTIONS(6963), 1, - anon_sym_abstract, - STATE(1136), 1, - sym_decorator, - STATE(3483), 1, - aux_sym_export_statement_repeat1, - [131117] = 6, + ACTIONS(11043), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [229272] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11051), 1, + sym_identifier, + ACTIONS(11053), 1, + anon_sym_LBRACK, + ACTIONS(11055), 1, + sym_private_property_identifier, + STATE(7057), 1, sym_comment, - ACTIONS(2752), 1, + [229291] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3618), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [131136] = 6, - ACTIONS(3), 1, + ACTIONS(11057), 1, + anon_sym_EQ, + STATE(7058), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3616), 1, - sym__call_signature, - STATE(4529), 1, + STATE(8611), 1, sym_type_parameters, - [131155] = 6, + [229310] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11059), 1, + sym_identifier, + ACTIONS(11061), 1, + anon_sym_LBRACK, + ACTIONS(11063), 1, + sym_private_property_identifier, + STATE(7059), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4353), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [131174] = 6, - ACTIONS(3), 1, + [229329] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7060), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4365), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [131193] = 2, + ACTIONS(11065), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [229344] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11067), 1, + sym_identifier, + ACTIONS(11069), 1, + anon_sym_LBRACK, + ACTIONS(11071), 1, + sym_private_property_identifier, + STATE(7061), 1, + sym_comment, + [229363] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11073), 1, + anon_sym_EQ, + STATE(7062), 1, + sym_comment, + ACTIONS(10609), 2, + anon_sym_COMMA, + anon_sym_from, + [229380] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11075), 1, + anon_sym_COMMA, + ACTIONS(11077), 1, + anon_sym_GT, + STATE(6997), 1, + aux_sym_type_parameters_repeat1, + STATE(7063), 1, + sym_comment, + [229399] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7064), 1, + sym_comment, + ACTIONS(10986), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [229414] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8789), 1, + anon_sym_LBRACE, + ACTIONS(8791), 1, + anon_sym_LBRACE_PIPE, + STATE(4411), 1, + sym_object_type, + STATE(7065), 1, + sym_comment, + [229433] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7066), 1, sym_comment, - ACTIONS(6593), 5, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131204] = 2, - ACTIONS(3), 1, + [229448] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7067), 1, sym_comment, - ACTIONS(6965), 5, + ACTIONS(10822), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131215] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6048), 1, - anon_sym_LBRACK, - ACTIONS(6967), 1, - anon_sym_RBRACE, - ACTIONS(4336), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [131230] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6969), 1, - anon_sym_BQUOTE, - ACTIONS(6971), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6974), 1, - sym__template_chars, - STATE(3587), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [131247] = 5, - ACTIONS(3), 1, + [229463] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7068), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(6977), 2, + ACTIONS(10520), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [131264] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + [229478] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7069), 1, sym_comment, - ACTIONS(5295), 1, + ACTIONS(10536), 3, sym__automatic_semicolon, - ACTIONS(1523), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131277] = 2, - ACTIONS(3), 1, + [229493] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11079), 1, + anon_sym_COMMA, + ACTIONS(11081), 1, + anon_sym_RBRACK, + STATE(6593), 1, + aux_sym_tuple_type_repeat1, + STATE(7070), 1, + sym_comment, + [229512] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7071), 1, sym_comment, - ACTIONS(6979), 5, + ACTIONS(11009), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131288] = 3, - ACTIONS(3), 1, + [229527] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11083), 1, + anon_sym_COMMA, + ACTIONS(11085), 1, + anon_sym_GT, + STATE(7072), 1, sym_comment, - ACTIONS(5297), 1, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + [229546] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7073), 1, + sym_comment, + ACTIONS(10393), 3, sym__automatic_semicolon, - ACTIONS(1715), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131301] = 2, + [229561] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8651), 1, + anon_sym_LBRACE, + ACTIONS(8653), 1, + anon_sym_LBRACE_PIPE, + STATE(1128), 1, + sym_object_type, + STATE(7074), 1, + sym_comment, + [229580] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_LBRACK, + ACTIONS(11091), 1, + sym_private_property_identifier, + STATE(7075), 1, sym_comment, - ACTIONS(5185), 5, - anon_sym_EQ, + [229599] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + ACTIONS(11093), 1, + anon_sym_RPAREN, + STATE(7076), 1, + sym_comment, + STATE(8187), 1, + sym_type_annotation, + [229618] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, anon_sym_COMMA, + ACTIONS(11095), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [131312] = 6, - ACTIONS(3), 1, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(7077), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4595), 1, - sym__call_signature, - [131331] = 2, - ACTIONS(3), 1, + [229637] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7078), 1, sym_comment, - ACTIONS(5314), 5, - anon_sym_EQ, + ACTIONS(10986), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [131342] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [229652] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11097), 1, + anon_sym_COMMA, + ACTIONS(11099), 1, + anon_sym_GT, + STATE(7079), 1, sym_comment, - ACTIONS(5185), 5, - anon_sym_EQ, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + [229671] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11101), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11103), 1, + anon_sym_GT, + STATE(7080), 1, + sym_comment, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + [229690] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, anon_sym_COLON, - anon_sym_QMARK, - [131353] = 6, - ACTIONS(3), 1, + ACTIONS(11105), 1, + anon_sym_RPAREN, + STATE(7081), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3608), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [131372] = 6, - ACTIONS(3), 1, + STATE(8271), 1, + sym_type_annotation, + [229709] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7082), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4350), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [131391] = 2, - ACTIONS(3), 1, + ACTIONS(10986), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [229724] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11107), 1, + anon_sym_LBRACE, + STATE(7083), 1, + sym_comment, + ACTIONS(9782), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [229741] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7084), 1, sym_comment, - ACTIONS(6981), 5, + ACTIONS(10567), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131402] = 3, - ACTIONS(3), 1, + [229756] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7085), 1, sym_comment, - ACTIONS(5259), 1, + ACTIONS(10393), 3, sym__automatic_semicolon, - ACTIONS(1547), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131415] = 6, + [229771] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11109), 1, + sym_identifier, + STATE(3651), 1, + sym_decorator_member_expression, + STATE(3936), 1, + sym_decorator_call_expression, + STATE(7086), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4310), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [131434] = 2, - ACTIONS(3), 1, + [229790] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7087), 1, sym_comment, - ACTIONS(5314), 5, - anon_sym_EQ, + ACTIONS(10536), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [131445] = 6, - ACTIONS(3), 1, + anon_sym_SEMI, + [229805] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9716), 1, + anon_sym_GT, + ACTIONS(11111), 1, + anon_sym_COMMA, + STATE(7088), 2, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4348), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [131464] = 5, - ACTIONS(3), 1, + aux_sym_type_arguments_repeat1, + [229822] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7089), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(6983), 2, + ACTIONS(11009), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [131481] = 6, - ACTIONS(3), 1, + [229837] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8522), 1, + anon_sym_DOT, + STATE(7090), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - ACTIONS(6955), 1, + ACTIONS(11114), 2, + sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(6957), 1, + [229854] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8516), 1, + anon_sym_DOT, + STATE(7091), 1, + sym_comment, + ACTIONS(11114), 2, sym__automatic_semicolon, - ACTIONS(6959), 1, - sym__function_signature_automatic_semicolon, - STATE(2506), 1, - sym_statement_block, - [131500] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [229871] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7092), 1, sym_comment, - ACTIONS(6550), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131511] = 5, - ACTIONS(3), 1, + [229886] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7093), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(6987), 2, + ACTIONS(10977), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [131528] = 2, - ACTIONS(3), 1, + [229901] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6497), 1, + anon_sym_RBRACK, + STATE(6786), 1, + aux_sym_array_repeat1, + STATE(7094), 1, sym_comment, - ACTIONS(5314), 5, - anon_sym_EQ, + [229920] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7095), 1, + sym_comment, + ACTIONS(10563), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [131539] = 6, - ACTIONS(3), 1, + anon_sym_SEMI, + [229935] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7096), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - ACTIONS(6989), 1, + ACTIONS(10986), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(6991), 1, + [229950] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11116), 1, + anon_sym_as, + STATE(7097), 1, + sym_comment, + ACTIONS(11118), 2, sym__automatic_semicolon, - ACTIONS(6993), 1, - sym__function_signature_automatic_semicolon, - STATE(3591), 1, - sym_statement_block, - [131558] = 5, - ACTIONS(3), 1, + anon_sym_SEMI, + [229967] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7098), 1, sym_comment, - ACTIONS(6333), 1, - anon_sym_LT, - ACTIONS(6995), 1, - anon_sym_LBRACE, - STATE(4088), 1, - sym_type_arguments, - ACTIONS(6997), 2, + ACTIONS(10986), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [229982] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8556), 1, + anon_sym_LBRACE, + ACTIONS(8562), 1, anon_sym_LBRACE_PIPE, - [131575] = 2, - ACTIONS(3), 1, + STATE(1542), 1, + sym_object_type, + STATE(7099), 1, sym_comment, - ACTIONS(6999), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [131586] = 6, - ACTIONS(3), 1, + [230001] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8623), 1, + anon_sym_COMMA, + ACTIONS(11120), 1, + anon_sym_RBRACE, + STATE(6952), 1, + aux_sym_object_repeat1, + STATE(7100), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4618), 1, - sym__call_signature, - [131605] = 6, - ACTIONS(3), 1, + [230020] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11122), 1, + anon_sym_COMMA, + ACTIONS(11124), 1, + anon_sym_RBRACE, + STATE(7101), 1, sym_comment, - ACTIONS(4048), 1, - anon_sym_LBRACE, - ACTIONS(7001), 1, - anon_sym_SEMI, - ACTIONS(7003), 1, - sym__automatic_semicolon, - ACTIONS(7005), 1, - sym__function_signature_automatic_semicolon, - STATE(2128), 1, - sym_statement_block, - [131624] = 2, - ACTIONS(3), 1, + STATE(7132), 1, + aux_sym_enum_body_repeat1, + [230039] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7102), 1, sym_comment, - ACTIONS(7007), 5, + ACTIONS(10536), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131635] = 2, - ACTIONS(3), 1, + [230054] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7103), 1, sym_comment, - ACTIONS(6512), 5, + ACTIONS(11009), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131646] = 4, - ACTIONS(3), 1, + [230069] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7104), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - STATE(4015), 1, - sym__initializer, - ACTIONS(7009), 3, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [131661] = 6, - ACTIONS(3), 1, + [230084] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7105), 1, sym_comment, - ACTIONS(4048), 1, - anon_sym_LBRACE, - ACTIONS(6989), 1, + ACTIONS(10977), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(6991), 1, + [230099] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7106), 1, + sym_comment, + ACTIONS(10558), 3, sym__automatic_semicolon, - ACTIONS(6993), 1, - sym__function_signature_automatic_semicolon, - STATE(2140), 1, - sym_statement_block, - [131680] = 6, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [230114] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7661), 1, + anon_sym_DOT, + STATE(7107), 1, sym_comment, - ACTIONS(6498), 1, - anon_sym_EQ, - ACTIONS(7011), 1, + ACTIONS(11126), 2, anon_sym_COMMA, - ACTIONS(7013), 1, - anon_sym_RBRACE, - STATE(4099), 1, - aux_sym_enum_body_repeat1, - STATE(4346), 1, - sym__initializer, - [131699] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [230131] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7108), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - ACTIONS(7015), 1, - anon_sym_SEMI, - ACTIONS(7017), 1, + ACTIONS(10986), 3, sym__automatic_semicolon, - ACTIONS(7019), 1, - sym__function_signature_automatic_semicolon, - STATE(3693), 1, - sym_statement_block, - [131718] = 2, + anon_sym_COMMA, + anon_sym_SEMI, + [230146] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10451), 1, + anon_sym_require, + ACTIONS(11128), 1, + sym_identifier, + STATE(6801), 1, + sym_nested_identifier, + STATE(7109), 1, + sym_comment, + [230165] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7110), 1, sym_comment, - ACTIONS(6795), 5, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131729] = 2, - ACTIONS(3), 1, + [230180] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7111), 1, sym_comment, - ACTIONS(7021), 5, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131740] = 5, - ACTIONS(3), 1, + [230195] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7112), 1, sym_comment, - ACTIONS(6896), 1, - anon_sym_as, - ACTIONS(6900), 1, - aux_sym_ui_version_specifier_token1, - STATE(4266), 1, - sym_ui_version_specifier, - ACTIONS(6898), 2, + ACTIONS(11009), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [131757] = 5, - ACTIONS(3), 1, + [230210] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7113), 1, sym_comment, - ACTIONS(6921), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6923), 1, - sym__template_chars, - ACTIONS(7023), 1, - anon_sym_BQUOTE, - STATE(3587), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [131774] = 2, - ACTIONS(3), 1, + ACTIONS(10977), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230225] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7114), 1, sym_comment, - ACTIONS(2484), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131785] = 2, - ACTIONS(3), 1, + [230240] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7115), 1, sym_comment, - ACTIONS(2572), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131796] = 2, - ACTIONS(3), 1, + [230255] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7116), 1, sym_comment, - ACTIONS(2468), 5, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131807] = 6, - ACTIONS(3), 1, + [230270] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7117), 1, sym_comment, - ACTIONS(4048), 1, - anon_sym_LBRACE, - ACTIONS(7015), 1, + ACTIONS(10977), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(7017), 1, + [230285] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7088), 1, sym__automatic_semicolon, - ACTIONS(7019), 1, - sym__function_signature_automatic_semicolon, - STATE(2181), 1, - sym_statement_block, - [131826] = 4, - ACTIONS(3), 1, + STATE(7118), 1, sym_comment, - ACTIONS(6737), 1, - anon_sym_COLON, - ACTIONS(7025), 1, - anon_sym_EQ_GT, - STATE(4388), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [131841] = 2, - ACTIONS(3), 1, + ACTIONS(7014), 2, + anon_sym_else, + anon_sym_while, + [230302] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7119), 1, sym_comment, - ACTIONS(5369), 5, - anon_sym_EQ, + ACTIONS(10977), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230317] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7120), 1, + sym_comment, + ACTIONS(10393), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230332] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7731), 1, + anon_sym_AMP, + ACTIONS(7733), 1, + anon_sym_PIPE, + ACTIONS(7735), 1, + anon_sym_extends, + STATE(7121), 1, + sym_comment, + [230351] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, anon_sym_COMMA, + ACTIONS(6512), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [131852] = 2, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(7122), 1, + sym_comment, + [230370] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6512), 1, + anon_sym_RPAREN, + STATE(6996), 1, + aux_sym_array_repeat1, + STATE(7123), 1, + sym_comment, + [230389] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11130), 1, + anon_sym_COMMA, + ACTIONS(11133), 1, + anon_sym_RPAREN, + STATE(7124), 2, + sym_comment, + aux_sym_ui_signal_parameters_repeat1, + [230406] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11135), 1, + sym_identifier, + ACTIONS(11137), 1, + anon_sym_SEMI, + ACTIONS(11139), 1, + sym__automatic_semicolon, + STATE(7125), 1, + sym_comment, + [230425] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7126), 1, sym_comment, - ACTIONS(2464), 5, + ACTIONS(10536), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131863] = 2, - ACTIONS(3), 1, + [230440] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7127), 1, sym_comment, - ACTIONS(2460), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131874] = 2, - ACTIONS(3), 1, + [230455] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7128), 1, sym_comment, - ACTIONS(7028), 5, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131885] = 2, - ACTIONS(3), 1, + [230470] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7129), 1, sym_comment, - ACTIONS(7030), 5, + ACTIONS(11141), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131896] = 6, - ACTIONS(3), 1, + [230485] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11143), 1, + anon_sym_COMMA, + ACTIONS(11145), 1, + anon_sym_RBRACE, + STATE(7130), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(6963), 1, - anon_sym_abstract, - ACTIONS(7032), 1, - anon_sym_class, - STATE(1136), 1, - sym_decorator, - STATE(3483), 1, - aux_sym_export_statement_repeat1, - [131915] = 2, - ACTIONS(3), 1, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + [230504] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7131), 1, sym_comment, - ACTIONS(2412), 5, + ACTIONS(11147), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131926] = 4, - ACTIONS(3), 1, + [230519] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11149), 1, + anon_sym_COMMA, + ACTIONS(11151), 1, + anon_sym_RBRACE, + STATE(7132), 1, sym_comment, - ACTIONS(6737), 1, - anon_sym_COLON, - ACTIONS(7034), 1, - anon_sym_EQ_GT, - STATE(4556), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [131941] = 2, - ACTIONS(3), 1, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + [230538] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11153), 1, + anon_sym_COMMA, + ACTIONS(11155), 1, + anon_sym_RBRACE, + STATE(7133), 1, + sym_comment, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + [230557] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7134), 1, sym_comment, - ACTIONS(1703), 5, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131952] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(7037), 1, - sym_identifier, - STATE(4820), 2, - sym__module_export_name, - sym_string, - [131969] = 2, - ACTIONS(3), 1, + [230572] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7135), 1, sym_comment, - ACTIONS(2408), 5, + ACTIONS(11157), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [131980] = 5, - ACTIONS(3), 1, + [230587] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11159), 1, + anon_sym_COMMA, + ACTIONS(11161), 1, + anon_sym_RBRACE, + STATE(7136), 1, sym_comment, - ACTIONS(6921), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6923), 1, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + [230606] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7137), 1, + sym_comment, + ACTIONS(11163), 3, sym__template_chars, - ACTIONS(7039), 1, anon_sym_BQUOTE, - STATE(3587), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [131997] = 2, - ACTIONS(3), 1, + anon_sym_DOLLAR_LBRACE, + [230621] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(11165), 1, + anon_sym_EQ, + STATE(7138), 1, + sym_comment, + STATE(8637), 1, + sym_type_parameters, + [230640] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9924), 1, + anon_sym_COMMA, + ACTIONS(11167), 1, + anon_sym_RBRACK, + STATE(6762), 1, + aux_sym_array_pattern_repeat1, + STATE(7139), 1, + sym_comment, + [230659] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7140), 1, sym_comment, - ACTIONS(2396), 5, + ACTIONS(11009), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132008] = 6, - ACTIONS(3), 1, + [230674] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11169), 1, + anon_sym_EQ, + STATE(7141), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3114), 1, - sym_formal_parameters, - STATE(3329), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [132027] = 2, - ACTIONS(3), 1, + ACTIONS(10609), 2, + anon_sym_COMMA, + anon_sym_from, + [230691] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7142), 1, sym_comment, - ACTIONS(6512), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132038] = 2, - ACTIONS(3), 1, + [230706] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7143), 1, sym_comment, - ACTIONS(2392), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132049] = 2, - ACTIONS(3), 1, + [230721] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7144), 1, sym_comment, - ACTIONS(2388), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132060] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3114), 1, - sym_formal_parameters, - STATE(3656), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [132079] = 2, - ACTIONS(3), 1, + [230736] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7145), 1, sym_comment, - ACTIONS(2384), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132090] = 2, - ACTIONS(3), 1, + [230751] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7146), 1, sym_comment, - ACTIONS(2380), 5, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132101] = 2, - ACTIONS(3), 1, + [230766] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11171), 1, + anon_sym_COMMA, + ACTIONS(11173), 1, + anon_sym_RBRACE, + STATE(7133), 1, + aux_sym_enum_body_repeat1, + STATE(7147), 1, sym_comment, - ACTIONS(5328), 5, - anon_sym_EQ, + [230785] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11175), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [132112] = 6, - ACTIONS(3), 1, + ACTIONS(11177), 1, + anon_sym_GT, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + STATE(7148), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - ACTIONS(7001), 1, - anon_sym_SEMI, - ACTIONS(7003), 1, + [230804] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7149), 1, + sym_comment, + ACTIONS(11179), 3, sym__automatic_semicolon, - ACTIONS(7005), 1, - sym__function_signature_automatic_semicolon, - STATE(2484), 1, - sym_statement_block, - [132131] = 2, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [230819] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8629), 1, + anon_sym_LBRACE, + ACTIONS(8631), 1, + anon_sym_LBRACE_PIPE, + STATE(1312), 1, + sym_object_type, + STATE(7150), 1, sym_comment, - ACTIONS(5097), 5, - anon_sym_EQ, + [230838] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11181), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [132142] = 2, - ACTIONS(3), 1, + ACTIONS(11183), 1, + anon_sym_RBRACK, + STATE(6934), 1, + aux_sym_tuple_type_repeat1, + STATE(7151), 1, + sym_comment, + [230857] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4724), 1, + anon_sym_LBRACE, + ACTIONS(8366), 1, + anon_sym_DOT, + STATE(4299), 1, + sym_ui_object_initializer, + STATE(7152), 1, + sym_comment, + [230876] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4724), 1, + anon_sym_LBRACE, + ACTIONS(9586), 1, + anon_sym_DOT, + STATE(4298), 1, + sym_ui_object_initializer, + STATE(7153), 1, + sym_comment, + [230895] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8516), 1, + anon_sym_DOT, + STATE(7154), 1, sym_comment, - ACTIONS(2368), 5, + ACTIONS(11185), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132153] = 5, - ACTIONS(3), 1, + [230912] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8522), 1, + anon_sym_DOT, + STATE(7155), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(7041), 2, + ACTIONS(11185), 2, sym__automatic_semicolon, anon_sym_SEMI, - [132170] = 2, - ACTIONS(3), 1, + [230929] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7156), 1, sym_comment, - ACTIONS(1655), 5, + ACTIONS(11157), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132181] = 6, - ACTIONS(3), 1, + [230944] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6602), 1, + anon_sym_RPAREN, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(7157), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(6763), 1, - anon_sym_abstract, - ACTIONS(6790), 1, - anon_sym_class, - STATE(1136), 1, - sym_decorator, - STATE(3483), 1, - aux_sym_export_statement_repeat1, - [132200] = 6, + [230963] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11187), 1, + sym_identifier, + ACTIONS(11189), 1, + anon_sym_SEMI, + ACTIONS(11191), 1, + sym__automatic_semicolon, + STATE(7158), 1, sym_comment, - ACTIONS(6498), 1, - anon_sym_EQ, - ACTIONS(7043), 1, + [230982] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9396), 1, anon_sym_COMMA, - ACTIONS(7045), 1, + ACTIONS(11193), 1, anon_sym_RBRACE, - STATE(4191), 1, - aux_sym_enum_body_repeat1, - STATE(4346), 1, - sym__initializer, - [132219] = 2, - ACTIONS(3), 1, + STATE(6916), 1, + aux_sym_object_pattern_repeat1, + STATE(7159), 1, + sym_comment, + [231001] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7160), 1, sym_comment, - ACTIONS(6449), 5, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132230] = 2, - ACTIONS(3), 1, + [231016] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11195), 1, + anon_sym_COMMA, + ACTIONS(11197), 1, + anon_sym_GT, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + STATE(7161), 1, sym_comment, - ACTIONS(7047), 5, - sym__automatic_semicolon, + [231035] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9396), 1, anon_sym_COMMA, + ACTIONS(11199), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132241] = 2, - ACTIONS(3), 1, + STATE(6916), 1, + aux_sym_object_pattern_repeat1, + STATE(7162), 1, + sym_comment, + [231054] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(11201), 1, + anon_sym_RPAREN, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(7163), 1, + sym_comment, + [231073] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7164), 1, sym_comment, - ACTIONS(1693), 5, + ACTIONS(11009), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132252] = 2, - ACTIONS(3), 1, + [231088] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7165), 1, sym_comment, - ACTIONS(2480), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132263] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3114), 1, - sym_formal_parameters, - STATE(3731), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [132282] = 6, - ACTIONS(3), 1, + [231103] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7166), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4354), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [132301] = 2, - ACTIONS(3), 1, + ACTIONS(10977), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [231118] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7167), 1, sym_comment, - ACTIONS(2496), 5, + ACTIONS(11065), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132312] = 2, - ACTIONS(3), 1, + [231133] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7168), 1, sym_comment, - ACTIONS(2496), 5, + ACTIONS(11147), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132323] = 2, - ACTIONS(3), 1, + [231148] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7169), 1, sym_comment, - ACTIONS(6520), 5, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132334] = 5, - ACTIONS(3), 1, + [231163] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4724), 1, + anon_sym_LBRACE, + ACTIONS(10935), 1, + anon_sym_DOT, + STATE(4445), 1, + sym_ui_object_initializer, + STATE(7170), 1, sym_comment, - ACTIONS(6921), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7049), 1, - anon_sym_BQUOTE, - ACTIONS(7051), 1, - sym__template_chars, - STATE(3639), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [132351] = 2, - ACTIONS(3), 1, + [231182] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7171), 1, sym_comment, - ACTIONS(6449), 5, + ACTIONS(10558), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132362] = 2, - ACTIONS(3), 1, + [231197] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8629), 1, + anon_sym_LBRACE, + ACTIONS(8631), 1, + anon_sym_LBRACE_PIPE, + STATE(1300), 1, + sym_object_type, + STATE(7172), 1, sym_comment, - ACTIONS(7053), 5, + [231216] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7173), 1, + sym_comment, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132373] = 2, + [231231] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11203), 1, + sym_identifier, + ACTIONS(11205), 1, + anon_sym_LBRACK, + ACTIONS(11207), 1, + sym_private_property_identifier, + STATE(7174), 1, + sym_comment, + [231250] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11209), 1, + anon_sym_COMMA, + ACTIONS(11211), 1, + anon_sym_GT, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + STATE(7175), 1, + sym_comment, + [231269] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7176), 1, + sym_comment, + ACTIONS(11213), 3, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACK, + [231284] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7177), 1, sym_comment, - ACTIONS(2508), 5, + ACTIONS(10536), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132384] = 2, - ACTIONS(3), 1, + [231299] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6720), 1, + anon_sym_extends, + ACTIONS(11215), 1, + anon_sym_AMP, + ACTIONS(11217), 1, + anon_sym_PIPE, + STATE(7178), 1, + sym_comment, + [231318] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7179), 1, sym_comment, - ACTIONS(2524), 5, + ACTIONS(10536), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132395] = 2, - ACTIONS(3), 1, + [231333] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7180), 1, sym_comment, - ACTIONS(7055), 5, + ACTIONS(11009), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132406] = 2, - ACTIONS(3), 1, + [231348] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7181), 1, sym_comment, - ACTIONS(2532), 5, + ACTIONS(10558), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132417] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3848), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [132436] = 6, - ACTIONS(3), 1, + [231363] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11219), 1, + anon_sym_COMMA, + ACTIONS(11221), 1, + anon_sym_RBRACK, + STATE(7010), 1, + aux_sym_tuple_type_repeat1, + STATE(7182), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4578), 1, - sym__call_signature, - [132455] = 2, - ACTIONS(3), 1, + [231382] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7183), 1, sym_comment, - ACTIONS(7057), 5, + ACTIONS(11223), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132466] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3649), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [132485] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(7059), 1, - sym_identifier, - STATE(4108), 2, - sym__module_export_name, - sym_string, - [132502] = 2, - ACTIONS(3), 1, + [231397] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7184), 1, sym_comment, - ACTIONS(7061), 5, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132513] = 6, - ACTIONS(3), 1, + [231412] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6623), 1, + anon_sym_RPAREN, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(7185), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3114), 1, - sym_formal_parameters, - STATE(3256), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [132532] = 6, - ACTIONS(3), 1, + [231431] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6623), 1, + anon_sym_RPAREN, + STATE(7163), 1, + aux_sym_array_repeat1, + STATE(7186), 1, sym_comment, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_PIPE, - ACTIONS(6681), 1, - anon_sym_extends, - ACTIONS(7063), 1, - anon_sym_as, - ACTIONS(7065), 1, - anon_sym_RBRACK, - [132551] = 2, - ACTIONS(3), 1, + [231450] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10336), 1, + anon_sym_EQ, + STATE(7187), 1, sym_comment, - ACTIONS(6550), 5, - sym__automatic_semicolon, + ACTIONS(11225), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132562] = 5, - ACTIONS(3), 1, + [231467] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8695), 1, + anon_sym_EQ, + STATE(7188), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(7067), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [132579] = 2, - ACTIONS(3), 1, + ACTIONS(4753), 2, + anon_sym_in, + anon_sym_of, + [231484] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7189), 1, sym_comment, - ACTIONS(2540), 5, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132590] = 2, - ACTIONS(3), 1, + [231499] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11227), 1, + anon_sym_COMMA, + ACTIONS(11230), 1, + anon_sym_RBRACE, + STATE(7190), 2, + sym_comment, + aux_sym__qml_enum_body_repeat1, + [231516] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7191), 1, sym_comment, - ACTIONS(2544), 5, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132601] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4584), 1, - sym__call_signature, - [132620] = 2, - ACTIONS(3), 1, + [231531] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8516), 1, + anon_sym_DOT, + STATE(7192), 1, sym_comment, - ACTIONS(2548), 5, + ACTIONS(11232), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132631] = 2, - ACTIONS(3), 1, + [231548] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8522), 1, + anon_sym_DOT, + STATE(7193), 1, sym_comment, - ACTIONS(2548), 5, + ACTIONS(11232), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132642] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3114), 1, - sym_formal_parameters, - STATE(3288), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [132661] = 6, - ACTIONS(3), 1, + [231565] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11234), 1, + anon_sym_COMMA, + ACTIONS(11236), 1, + anon_sym_GT, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + STATE(7194), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3485), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [132680] = 2, - ACTIONS(3), 1, + [231584] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7195), 1, sym_comment, - ACTIONS(2548), 5, + ACTIONS(11009), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132691] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3114), 1, - sym_formal_parameters, - STATE(3373), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [132710] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(6715), 1, - anon_sym_abstract, - ACTIONS(7069), 1, - anon_sym_class, - STATE(1136), 1, - sym_decorator, - STATE(3483), 1, - aux_sym_export_statement_repeat1, - [132729] = 6, - ACTIONS(3), 1, + [231599] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11238), 1, + anon_sym_COMMA, + ACTIONS(11240), 1, + anon_sym_GT, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + STATE(7196), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3114), 1, - sym_formal_parameters, - STATE(3334), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [132748] = 3, - ACTIONS(3), 1, + [231618] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7197), 1, sym_comment, - ACTIONS(5318), 1, + ACTIONS(10977), 3, sym__automatic_semicolon, - ACTIONS(1571), 4, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132761] = 6, - ACTIONS(3), 1, + [231633] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11242), 1, + anon_sym_COMMA, + ACTIONS(11244), 1, + anon_sym_GT, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + STATE(7198), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3114), 1, - sym_formal_parameters, - STATE(3316), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [132780] = 2, - ACTIONS(3), 1, + [231652] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7199), 1, sym_comment, - ACTIONS(2576), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132791] = 4, - ACTIONS(3), 1, + [231667] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7200), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - STATE(4066), 1, - sym__initializer, - ACTIONS(7071), 3, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132806] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4536), 1, - sym__call_signature, - [132825] = 6, - ACTIONS(3), 1, + [231682] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11246), 1, + anon_sym_COMMA, + ACTIONS(11248), 1, + anon_sym_RBRACE, + STATE(6671), 1, + aux_sym_named_imports_repeat1, + STATE(7201), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4515), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [132844] = 2, - ACTIONS(3), 1, + [231701] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7202), 1, sym_comment, - ACTIONS(2612), 5, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132855] = 6, - ACTIONS(3), 1, + [231716] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7203), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3832), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [132874] = 2, - ACTIONS(3), 1, + ACTIONS(10536), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [231731] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7204), 1, sym_comment, - ACTIONS(1729), 5, + ACTIONS(11009), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132885] = 2, - ACTIONS(3), 1, + [231746] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7205), 1, sym_comment, - ACTIONS(1591), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132896] = 2, + [231761] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8524), 1, + sym_identifier, + STATE(7206), 1, sym_comment, - ACTIONS(7073), 5, - anon_sym_EQ, + ACTIONS(8528), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [231778] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, anon_sym_LBRACE, + ACTIONS(11250), 1, anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [132907] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3538), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [132926] = 6, - ACTIONS(3), 1, + STATE(6758), 1, + sym_statement_block, + STATE(7207), 1, sym_comment, - ACTIONS(1491), 1, + [231797] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11252), 1, anon_sym_LBRACE, - ACTIONS(7001), 1, - anon_sym_SEMI, - ACTIONS(7003), 1, - sym__automatic_semicolon, - ACTIONS(7005), 1, - sym__function_signature_automatic_semicolon, - STATE(186), 1, + ACTIONS(11254), 1, + anon_sym_LPAREN, + STATE(1039), 1, sym_statement_block, - [132945] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1641), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [132956] = 6, - ACTIONS(3), 1, + STATE(7208), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3855), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [132975] = 4, - ACTIONS(3), 1, + [231816] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7209), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - STATE(4078), 1, - sym__initializer, - ACTIONS(7075), 3, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [132990] = 6, + [231831] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11256), 1, + sym_identifier, + ACTIONS(11258), 1, + anon_sym_SEMI, + ACTIONS(11260), 1, + sym__automatic_semicolon, + STATE(7210), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4334), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [133009] = 6, + [231850] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11262), 1, + sym_identifier, + ACTIONS(11264), 1, + anon_sym_SEMI, + ACTIONS(11266), 1, + sym__automatic_semicolon, + STATE(7211), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3114), 1, - sym_formal_parameters, - STATE(4114), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [133028] = 2, - ACTIONS(3), 1, + [231869] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7212), 1, sym_comment, - ACTIONS(1739), 5, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133039] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5346), 5, - anon_sym_EQ, + [231884] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11268), 1, anon_sym_COMMA, + ACTIONS(11270), 1, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [133050] = 6, - ACTIONS(3), 1, + STATE(6603), 1, + aux_sym_formal_parameters_repeat1, + STATE(7213), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4318), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [133069] = 4, + [231903] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7851), 1, + anon_sym_type, + ACTIONS(10524), 1, + sym_identifier, + STATE(7214), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - STATE(4231), 1, - sym__initializer, - ACTIONS(7077), 3, - sym__automatic_semicolon, + STATE(7908), 1, + sym__import_identifier, + [231922] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11272), 1, anon_sym_COMMA, - anon_sym_SEMI, - [133084] = 2, - ACTIONS(3), 1, + ACTIONS(11274), 1, + anon_sym_GT, + STATE(6865), 1, + aux_sym_type_parameters_repeat1, + STATE(7215), 1, + sym_comment, + [231941] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7216), 1, sym_comment, - ACTIONS(2660), 5, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133095] = 2, - ACTIONS(3), 1, + [231956] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7217), 1, sym_comment, - ACTIONS(2668), 5, + ACTIONS(11157), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133106] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(6713), 1, - anon_sym_class, - ACTIONS(6715), 1, - anon_sym_abstract, - STATE(1136), 1, - sym_decorator, - STATE(3483), 1, - aux_sym_export_statement_repeat1, - [133125] = 2, - ACTIONS(3), 1, + [231971] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7218), 1, sym_comment, - ACTIONS(6520), 5, + ACTIONS(10563), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133136] = 2, - ACTIONS(3), 1, + [231986] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7219), 1, sym_comment, - ACTIONS(1663), 5, + ACTIONS(11157), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133147] = 2, - ACTIONS(3), 1, + [232001] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11276), 1, + anon_sym_LBRACE, + STATE(7220), 1, + sym_comment, + ACTIONS(9483), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [232018] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7221), 1, sym_comment, - ACTIONS(6639), 5, + ACTIONS(11009), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [133158] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3808), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [133177] = 2, - ACTIONS(3), 1, + [232033] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7222), 1, sym_comment, - ACTIONS(7079), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133188] = 4, - ACTIONS(3), 1, + [232048] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7223), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - STATE(4164), 1, - sym__initializer, - ACTIONS(7081), 3, + ACTIONS(10558), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133203] = 2, - ACTIONS(3), 1, + [232063] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7224), 1, sym_comment, - ACTIONS(7083), 5, + ACTIONS(11157), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133214] = 2, - ACTIONS(3), 1, + [232078] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7225), 1, sym_comment, - ACTIONS(5165), 5, - anon_sym_EQ, + ACTIONS(11278), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [232093] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8623), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [133225] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3804), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [133244] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4459), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [133263] = 6, - ACTIONS(3), 1, + ACTIONS(11280), 1, + anon_sym_RBRACE, + STATE(6952), 1, + aux_sym_object_repeat1, + STATE(7226), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4606), 1, - sym__call_signature, - [133282] = 2, - ACTIONS(3), 1, + [232112] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7227), 1, sym_comment, - ACTIONS(2668), 5, + ACTIONS(10558), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133293] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, + [232127] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3782), 1, - sym__call_signature, - STATE(4529), 1, + ACTIONS(11282), 1, + anon_sym_EQ, + STATE(7228), 1, + sym_comment, + STATE(8661), 1, sym_type_parameters, - [133312] = 2, - ACTIONS(3), 1, + [232146] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7229), 1, sym_comment, - ACTIONS(6476), 5, + ACTIONS(11284), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133323] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + [232161] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4497), 1, anon_sym_LPAREN, - STATE(3114), 1, - sym_formal_parameters, - STATE(3821), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [133342] = 2, - ACTIONS(3), 1, + ACTIONS(11286), 1, + anon_sym_DOT, + STATE(5202), 1, + sym_arguments, + STATE(7230), 1, sym_comment, - ACTIONS(4662), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [133353] = 6, - ACTIONS(3), 1, + [232180] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8623), 1, + anon_sym_COMMA, + ACTIONS(11288), 1, + anon_sym_RBRACE, + STATE(7226), 1, + aux_sym_object_repeat1, + STATE(7231), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4417), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [133372] = 6, - ACTIONS(3), 1, + [232199] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7232), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3612), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [133391] = 6, - ACTIONS(3), 1, + ACTIONS(11290), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [232214] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8623), 1, + anon_sym_COMMA, + ACTIONS(11288), 1, + anon_sym_RBRACE, + STATE(6952), 1, + aux_sym_object_repeat1, + STATE(7233), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4434), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [133410] = 2, - ACTIONS(3), 1, + [232233] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7234), 1, sym_comment, - ACTIONS(6488), 5, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133421] = 2, - ACTIONS(3), 1, + [232248] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7235), 1, sym_comment, - ACTIONS(2616), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133432] = 2, - ACTIONS(3), 1, + [232263] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7236), 1, sym_comment, - ACTIONS(2436), 5, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133443] = 2, - ACTIONS(3), 1, + [232278] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7237), 1, sym_comment, - ACTIONS(5363), 5, - anon_sym_EQ, + ACTIONS(10977), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [133454] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [232293] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7238), 1, sym_comment, - ACTIONS(6476), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133465] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(7085), 1, - sym_identifier, - STATE(4286), 2, - sym__module_export_name, - sym_string, - [133482] = 2, - ACTIONS(3), 1, + [232308] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7239), 1, sym_comment, - ACTIONS(7087), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133493] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4336), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [133512] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4504), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [133531] = 2, - ACTIONS(3), 1, + [232323] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7240), 1, sym_comment, - ACTIONS(2688), 5, + ACTIONS(10977), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133542] = 2, - ACTIONS(3), 1, + [232338] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11292), 1, + anon_sym_EQ, + STATE(7241), 1, + sym_comment, + ACTIONS(10609), 2, + anon_sym_COMMA, + anon_sym_from, + [232355] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7242), 1, sym_comment, - ACTIONS(2604), 5, + ACTIONS(11223), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133553] = 2, - ACTIONS(3), 1, + [232370] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7243), 1, sym_comment, - ACTIONS(2600), 5, + ACTIONS(11294), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133564] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6921), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7089), 1, - anon_sym_BQUOTE, - ACTIONS(7091), 1, - sym__template_chars, - STATE(3622), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [133581] = 2, - ACTIONS(3), 1, + [232385] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7244), 1, sym_comment, - ACTIONS(2592), 5, + ACTIONS(11296), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133592] = 2, - ACTIONS(3), 1, + [232400] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7245), 1, sym_comment, - ACTIONS(6488), 5, + ACTIONS(11298), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133603] = 2, - ACTIONS(3), 1, + [232415] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7246), 1, sym_comment, - ACTIONS(7093), 5, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133614] = 6, - ACTIONS(3), 1, + [232430] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7247), 1, sym_comment, - ACTIONS(7001), 1, - anon_sym_SEMI, - ACTIONS(7003), 1, + ACTIONS(10922), 3, sym__automatic_semicolon, - ACTIONS(7005), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(7095), 1, - anon_sym_LBRACE, - STATE(695), 1, - sym_statement_block, - [133633] = 6, + anon_sym_COMMA, + anon_sym_SEMI, + [232445] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11300), 1, + sym_identifier, + STATE(2036), 1, + sym_decorator_member_expression, + STATE(2148), 1, + sym_decorator_call_expression, + STATE(7248), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3604), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [133652] = 6, - ACTIONS(3), 1, + [232464] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11302), 1, + anon_sym_COMMA, + ACTIONS(11304), 1, + anon_sym_GT, + STATE(7063), 1, + aux_sym_type_parameters_repeat1, + STATE(7249), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4452), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [133671] = 6, + [232483] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7851), 1, + anon_sym_type, + ACTIONS(10524), 1, + sym_identifier, + STATE(7250), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(6761), 1, - anon_sym_class, - ACTIONS(6763), 1, - anon_sym_abstract, - STATE(1136), 1, - sym_decorator, - STATE(3483), 1, - aux_sym_export_statement_repeat1, - [133690] = 2, - ACTIONS(3), 1, + STATE(7951), 1, + sym__import_identifier, + [232502] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7251), 1, sym_comment, - ACTIONS(1703), 5, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133701] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4499), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [133720] = 2, - ACTIONS(3), 1, + [232517] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11306), 1, + anon_sym_as, + STATE(7252), 1, sym_comment, - ACTIONS(2588), 5, - sym__automatic_semicolon, + ACTIONS(10643), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133731] = 6, - ACTIONS(3), 1, + [232534] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11308), 1, + anon_sym_COMMA, + ACTIONS(11310), 1, + anon_sym_RPAREN, + STATE(7213), 1, + aux_sym_formal_parameters_repeat1, + STATE(7253), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3434), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [133750] = 2, - ACTIONS(3), 1, + [232553] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7254), 1, sym_comment, - ACTIONS(2584), 5, + ACTIONS(10558), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133761] = 5, - ACTIONS(3), 1, + [232568] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7255), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(7097), 2, + ACTIONS(10416), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [133778] = 2, - ACTIONS(3), 1, + [232583] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7256), 1, sym_comment, - ACTIONS(2580), 5, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133789] = 2, - ACTIONS(3), 1, + [232598] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7257), 1, sym_comment, - ACTIONS(2560), 5, + ACTIONS(11284), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133800] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(7099), 1, - sym_identifier, - STATE(4645), 2, - sym__module_export_name, - sym_string, - [133817] = 5, - ACTIONS(3), 1, + [232613] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7258), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(7101), 2, + ACTIONS(10922), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [133834] = 2, - ACTIONS(3), 1, + [232628] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7259), 1, sym_comment, - ACTIONS(7103), 5, + ACTIONS(11157), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133845] = 2, - ACTIONS(3), 1, + [232643] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7260), 1, sym_comment, - ACTIONS(2556), 5, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133856] = 2, - ACTIONS(3), 1, + [232658] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7261), 1, sym_comment, - ACTIONS(2432), 5, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133867] = 2, - ACTIONS(3), 1, + [232673] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7262), 1, sym_comment, - ACTIONS(2692), 5, + ACTIONS(11141), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133878] = 2, - ACTIONS(3), 1, + [232688] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7263), 1, sym_comment, - ACTIONS(2560), 5, + ACTIONS(11312), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133889] = 2, - ACTIONS(3), 1, + [232703] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7264), 1, sym_comment, - ACTIONS(2560), 5, + ACTIONS(11141), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133900] = 2, - ACTIONS(3), 1, + [232718] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(11314), 1, + anon_sym_EQ, + STATE(7265), 1, sym_comment, - ACTIONS(2440), 5, - sym__automatic_semicolon, + STATE(8681), 1, + sym_type_parameters, + [232737] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9396), 1, anon_sym_COMMA, + ACTIONS(11316), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133911] = 4, - ACTIONS(3), 1, + STATE(7159), 1, + aux_sym_object_pattern_repeat1, + STATE(7266), 1, sym_comment, - ACTIONS(6094), 1, + [232756] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11318), 1, anon_sym_EQ, - STATE(4218), 1, - sym__initializer, - ACTIONS(7105), 3, + STATE(7267), 1, + sym_comment, + ACTIONS(10609), 2, + anon_sym_COMMA, + anon_sym_from, + [232773] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7268), 1, + sym_comment, + ACTIONS(11312), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [133926] = 4, - ACTIONS(3), 1, + [232788] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11320), 1, + anon_sym_COMMA, + ACTIONS(11323), 1, + anon_sym_RBRACE, + STATE(7269), 2, sym_comment, - ACTIONS(6094), 1, + aux_sym_enum_body_repeat1, + [232805] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8661), 1, + anon_sym_DOT, + STATE(7270), 1, + sym_comment, + ACTIONS(11325), 2, + anon_sym_COMMA, + anon_sym_GT, + [232822] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7835), 1, + anon_sym_LT, + ACTIONS(11327), 1, anon_sym_EQ, - STATE(4229), 1, - sym__initializer, - ACTIONS(7107), 3, - sym__automatic_semicolon, + STATE(7271), 1, + sym_comment, + STATE(8699), 1, + sym_type_parameters, + [232841] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9396), 1, anon_sym_COMMA, + ACTIONS(11316), 1, + anon_sym_RBRACE, + STATE(6916), 1, + aux_sym_object_pattern_repeat1, + STATE(7272), 1, + sym_comment, + [232860] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11329), 1, + sym_identifier, + ACTIONS(11331), 1, anon_sym_SEMI, - [133941] = 2, + ACTIONS(11333), 1, + sym__automatic_semicolon, + STATE(7273), 1, + sym_comment, + [232879] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11335), 1, + anon_sym_LBRACE, + ACTIONS(11337), 1, + anon_sym_LPAREN, + STATE(1164), 1, + sym_statement_block, + STATE(7274), 1, + sym_comment, + [232898] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11339), 1, + sym_identifier, + ACTIONS(11341), 1, + anon_sym_SEMI, + ACTIONS(11343), 1, + sym__automatic_semicolon, + STATE(7275), 1, + sym_comment, + [232917] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7276), 1, sym_comment, - ACTIONS(2352), 5, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133952] = 2, - ACTIONS(3), 1, + [232932] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9924), 1, + anon_sym_COMMA, + ACTIONS(9926), 1, + anon_sym_RBRACK, + STATE(7139), 1, + aux_sym_array_pattern_repeat1, + STATE(7277), 1, sym_comment, - ACTIONS(2352), 5, - sym__automatic_semicolon, + [232951] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8623), 1, anon_sym_COMMA, + ACTIONS(11345), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133963] = 2, - ACTIONS(3), 1, + STATE(6952), 1, + aux_sym_object_repeat1, + STATE(7278), 1, sym_comment, - ACTIONS(2352), 5, + [232970] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7279), 1, + sym_comment, + ACTIONS(11347), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133974] = 2, - ACTIONS(3), 1, + [232985] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7280), 1, sym_comment, - ACTIONS(2352), 5, + ACTIONS(10536), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [133985] = 5, - ACTIONS(3), 1, + [233000] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7281), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(7109), 2, + ACTIONS(10536), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [134002] = 2, - ACTIONS(3), 1, + [233015] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6652), 1, + anon_sym_RBRACK, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(7282), 1, sym_comment, - ACTIONS(1557), 5, + [233034] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7283), 1, + sym_comment, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134013] = 6, - ACTIONS(3), 1, + [233049] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11349), 1, + anon_sym_COMMA, + ACTIONS(11351), 1, + anon_sym_GT, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + STATE(7284), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - ACTIONS(7111), 1, - anon_sym_SEMI, - ACTIONS(7113), 1, + [233068] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7285), 1, + sym_comment, + ACTIONS(10922), 3, sym__automatic_semicolon, - ACTIONS(7115), 1, - sym__function_signature_automatic_semicolon, - STATE(2484), 1, - sym_statement_block, - [134032] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [233083] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11353), 1, + anon_sym_COMMA, + ACTIONS(11355), 1, + anon_sym_GT, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + STATE(7286), 1, sym_comment, - ACTIONS(7119), 1, - anon_sym_in, - ACTIONS(7121), 1, - anon_sym_of, - ACTIONS(7117), 3, + [233102] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7287), 1, + sym_comment, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134047] = 4, - ACTIONS(3), 1, + [233117] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11357), 1, + anon_sym_COMMA, + ACTIONS(11359), 1, + anon_sym_GT, + STATE(7088), 1, + aux_sym_type_arguments_repeat1, + STATE(7288), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - STATE(4153), 1, - sym__initializer, - ACTIONS(7123), 3, + [233136] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7289), 1, + sym_comment, + ACTIONS(10558), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134062] = 2, - ACTIONS(3), 1, + [233151] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6590), 1, + anon_sym_RPAREN, + STATE(7290), 1, sym_comment, - ACTIONS(4763), 5, - anon_sym_EQ, + STATE(7328), 1, + aux_sym_array_repeat1, + [233170] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6590), 1, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [134073] = 2, - ACTIONS(3), 1, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(7291), 1, + sym_comment, + [233189] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10694), 1, + anon_sym_COMMA, + ACTIONS(11361), 1, + anon_sym_RBRACK, + STATE(6976), 1, + aux_sym_ui_object_array_repeat1, + STATE(7292), 1, sym_comment, - ACTIONS(2364), 5, + [233208] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7293), 1, + sym_comment, + ACTIONS(10393), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134084] = 2, - ACTIONS(3), 1, + [233223] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7294), 1, sym_comment, - ACTIONS(4857), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [134095] = 6, - ACTIONS(3), 1, + ACTIONS(10393), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [233238] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(6652), 1, + anon_sym_RBRACK, + STATE(6977), 1, + aux_sym_array_repeat1, + STATE(7295), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, + [233257] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4513), 1, anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4620), 1, - sym__call_signature, - [134114] = 2, - ACTIONS(3), 1, + ACTIONS(11363), 1, + anon_sym_DOT, + STATE(5176), 1, + sym_arguments, + STATE(7296), 1, + sym_comment, + [233276] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9924), 1, + anon_sym_COMMA, + ACTIONS(9926), 1, + anon_sym_RBRACK, + STATE(6762), 1, + aux_sym_array_pattern_repeat1, + STATE(7297), 1, + sym_comment, + [233295] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7298), 1, sym_comment, - ACTIONS(2360), 5, + ACTIONS(11365), 3, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [233310] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11367), 1, + anon_sym_COMMA, + ACTIONS(11369), 1, anon_sym_RBRACE, + STATE(6642), 1, + aux_sym_export_clause_repeat1, + STATE(7299), 1, + sym_comment, + [233329] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7300), 1, + sym_comment, + ACTIONS(11365), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134125] = 6, - ACTIONS(3), 1, + [233344] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7301), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, + ACTIONS(11371), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [233359] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7771), 1, anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4298), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [134144] = 6, - ACTIONS(3), 1, + ACTIONS(11373), 1, + anon_sym_DOT, + STATE(5535), 1, + sym_arguments, + STATE(7302), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, + [233378] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7303), 1, + sym_comment, + ACTIONS(10536), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [233393] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11375), 1, anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4622), 1, - sym__call_signature, - [134163] = 2, - ACTIONS(3), 1, + ACTIONS(11377), 1, + anon_sym_await, + STATE(155), 1, + sym__for_header, + STATE(7304), 1, + sym_comment, + [233412] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11379), 1, + anon_sym_as, + STATE(7305), 1, + sym_comment, + ACTIONS(11381), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [233429] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7306), 1, + sym_comment, + ACTIONS(10922), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [233444] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7307), 1, + sym_comment, + ACTIONS(10922), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [233459] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7308), 1, sym_comment, - ACTIONS(2352), 5, + ACTIONS(10536), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134174] = 2, - ACTIONS(3), 1, + [233474] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7309), 1, sym_comment, - ACTIONS(2352), 5, + ACTIONS(10536), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134185] = 2, - ACTIONS(3), 1, + [233489] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7310), 1, sym_comment, - ACTIONS(2640), 5, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134196] = 2, - ACTIONS(3), 1, + [233504] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7311), 1, sym_comment, - ACTIONS(2644), 5, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134207] = 2, - ACTIONS(3), 1, + [233519] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7312), 1, sym_comment, - ACTIONS(6576), 5, + ACTIONS(11365), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [134218] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4570), 1, - sym__call_signature, - [134237] = 5, - ACTIONS(3), 1, + [233534] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9376), 1, + anon_sym_LBRACE, + STATE(7313), 1, sym_comment, - ACTIONS(6269), 1, - anon_sym_list, - ACTIONS(7125), 1, - sym_identifier, - STATE(4880), 1, - sym_nested_identifier, - STATE(2788), 2, - sym_nested_type_identifier, - sym_ui_list_property_type, - [134254] = 2, - ACTIONS(3), 1, + ACTIONS(9378), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [233551] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7314), 1, sym_comment, - ACTIONS(7127), 5, - anon_sym_EQ, + ACTIONS(11365), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [233566] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1589), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [134265] = 6, - ACTIONS(3), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8581), 1, + anon_sym_LBRACE_PIPE, + STATE(6278), 1, + sym_object_type, + STATE(7315), 1, sym_comment, - ACTIONS(6498), 1, - anon_sym_EQ, - ACTIONS(7129), 1, + [233585] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11383), 1, + anon_sym_COMMA, + ACTIONS(11385), 1, + anon_sym_RPAREN, + STATE(6980), 1, + aux_sym_formal_parameters_repeat1, + STATE(7316), 1, + sym_comment, + [233604] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7317), 1, + sym_comment, + ACTIONS(11387), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [233619] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11389), 1, anon_sym_COMMA, - ACTIONS(7131), 1, + ACTIONS(11391), 1, anon_sym_RBRACE, - STATE(4004), 1, + STATE(7269), 1, aux_sym_enum_body_repeat1, - STATE(4346), 1, - sym__initializer, - [134284] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 1, - anon_sym_LBRACE, - ACTIONS(5947), 1, - anon_sym_COLON, - ACTIONS(5949), 1, - anon_sym_DOT, - ACTIONS(6387), 1, - anon_sym_on, - STATE(2492), 1, - sym_ui_object_initializer, - [134303] = 5, - ACTIONS(3), 1, + STATE(7318), 1, sym_comment, - ACTIONS(6921), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7133), 1, - anon_sym_BQUOTE, - ACTIONS(7135), 1, - sym__template_chars, - STATE(3818), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134320] = 4, - ACTIONS(3), 1, + [233638] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7319), 1, sym_comment, - ACTIONS(7137), 1, - anon_sym_in, - ACTIONS(7139), 1, - anon_sym_of, - ACTIONS(7117), 3, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [134335] = 6, - ACTIONS(3), 1, + [233653] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7320), 1, sym_comment, - ACTIONS(2730), 1, - anon_sym_LBRACE, - ACTIONS(7111), 1, - anon_sym_SEMI, - ACTIONS(7113), 1, + ACTIONS(10922), 3, sym__automatic_semicolon, - ACTIONS(7115), 1, - sym__function_signature_automatic_semicolon, - STATE(882), 1, - sym_statement_block, - [134354] = 2, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [233668] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7321), 1, sym_comment, - ACTIONS(7141), 5, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134365] = 5, - ACTIONS(3), 1, + [233683] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7322), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(7143), 2, + ACTIONS(10922), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [134382] = 2, - ACTIONS(3), 1, + [233698] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7323), 1, sym_comment, - ACTIONS(6536), 5, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134393] = 6, - ACTIONS(3), 1, + [233713] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7324), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - ACTIONS(7145), 1, + ACTIONS(11347), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(7147), 1, + [233728] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7325), 1, + sym_comment, + ACTIONS(10563), 3, sym__automatic_semicolon, - ACTIONS(7149), 1, - sym__function_signature_automatic_semicolon, - STATE(2506), 1, - sym_statement_block, - [134412] = 5, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [233743] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7326), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - ACTIONS(7151), 1, - sym_identifier, - STATE(4344), 2, - sym__module_export_name, - sym_string, - [134429] = 6, - ACTIONS(3), 1, + ACTIONS(10922), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [233758] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11393), 1, + anon_sym_COMMA, + ACTIONS(11395), 1, + anon_sym_RBRACE, + STATE(7269), 1, + aux_sym_enum_body_repeat1, + STATE(7327), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4543), 1, - sym__call_signature, - [134448] = 6, - ACTIONS(3), 1, + [233777] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6471), 1, + anon_sym_COMMA, + ACTIONS(11397), 1, + anon_sym_RPAREN, + STATE(6534), 1, + aux_sym_array_repeat1, + STATE(7328), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3377), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [134467] = 2, - ACTIONS(3), 1, + [233796] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7329), 1, sym_comment, - ACTIONS(7153), 5, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134478] = 2, - ACTIONS(3), 1, + [233811] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4744), 1, + anon_sym_LBRACE, + ACTIONS(9586), 1, + anon_sym_DOT, + STATE(6956), 1, + sym_ui_object_initializer, + STATE(7330), 1, sym_comment, - ACTIONS(2608), 5, + [233830] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7331), 1, + sym_comment, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134489] = 2, - ACTIONS(3), 1, + [233845] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7332), 1, sym_comment, - ACTIONS(2620), 5, + ACTIONS(10563), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134500] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4325), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [134519] = 2, - ACTIONS(3), 1, + [233860] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7333), 1, sym_comment, - ACTIONS(2628), 5, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134530] = 4, + [233875] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11399), 1, + sym_identifier, + ACTIONS(11401), 1, + anon_sym_SEMI, + ACTIONS(11403), 1, + sym__automatic_semicolon, + STATE(7334), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - STATE(4055), 1, - sym__initializer, - ACTIONS(7155), 3, + [233894] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + ACTIONS(10443), 1, + anon_sym_as, + STATE(7335), 1, + sym_comment, + STATE(7888), 1, + sym__from_clause, + [233913] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8522), 1, + anon_sym_DOT, + STATE(7336), 1, + sym_comment, + ACTIONS(11405), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [134545] = 5, - ACTIONS(3), 1, + [233930] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8516), 1, + anon_sym_DOT, + STATE(7337), 1, sym_comment, - ACTIONS(6921), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6923), 1, - sym__template_chars, - ACTIONS(7157), 1, - anon_sym_BQUOTE, - STATE(3587), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134562] = 2, - ACTIONS(3), 1, + ACTIONS(11405), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233947] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7338), 1, sym_comment, - ACTIONS(2636), 5, + ACTIONS(10986), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134573] = 6, + [233962] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11407), 1, + sym_identifier, + ACTIONS(11409), 1, + anon_sym_SEMI, + ACTIONS(11411), 1, + sym__automatic_semicolon, + STATE(7339), 1, sym_comment, - ACTIONS(120), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1398), 1, + [233981] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8623), 1, + anon_sym_COMMA, + ACTIONS(11413), 1, + anon_sym_RBRACE, + STATE(6952), 1, + aux_sym_object_repeat1, + STATE(7340), 1, + sym_comment, + [234000] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(6494), 1, - anon_sym_extends, - STATE(797), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8581), 1, + anon_sym_LBRACE_PIPE, + STATE(6230), 1, sym_object_type, - STATE(4087), 1, - sym_extends_type_clause, - [134592] = 2, - ACTIONS(3), 1, + STATE(7341), 1, sym_comment, - ACTIONS(6562), 5, - sym__automatic_semicolon, + [234019] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4744), 1, + anon_sym_LBRACE, + ACTIONS(8366), 1, + anon_sym_DOT, + STATE(7050), 1, + sym_ui_object_initializer, + STATE(7342), 1, + sym_comment, + [234038] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11415), 1, anon_sym_COMMA, + ACTIONS(11417), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134603] = 5, - ACTIONS(3), 1, + STATE(7318), 1, + aux_sym_enum_body_repeat1, + STATE(7343), 1, sym_comment, - ACTIONS(6921), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7159), 1, - anon_sym_BQUOTE, - ACTIONS(7161), 1, - sym__template_chars, - STATE(3853), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [134620] = 6, - ACTIONS(3), 1, + [234057] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7344), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3114), 1, - sym_formal_parameters, - STATE(3833), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [134639] = 6, - ACTIONS(3), 1, + ACTIONS(11312), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [234072] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8623), 1, + anon_sym_COMMA, + ACTIONS(11413), 1, + anon_sym_RBRACE, + STATE(7026), 1, + aux_sym_object_repeat1, + STATE(7345), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3753), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [134658] = 2, - ACTIONS(3), 1, + [234091] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7346), 1, sym_comment, - ACTIONS(6589), 5, + ACTIONS(11312), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134669] = 2, - ACTIONS(3), 1, + [234106] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7347), 1, sym_comment, - ACTIONS(1723), 5, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134680] = 2, - ACTIONS(3), 1, + [234121] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7348), 1, sym_comment, - ACTIONS(6524), 5, + ACTIONS(10922), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134691] = 6, + [234136] = 6, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10447), 1, + anon_sym_LBRACE, + ACTIONS(11419), 1, + sym_identifier, + STATE(6529), 1, + sym_export_clause, + STATE(7349), 1, sym_comment, - ACTIONS(838), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1605), 1, + [234155] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8302), 1, anon_sym_LBRACE, - ACTIONS(6494), 1, - anon_sym_extends, - STATE(3759), 1, - sym_object_type, - STATE(4117), 1, - sym_extends_type_clause, - [134710] = 6, - ACTIONS(3), 1, + STATE(4033), 1, + sym_class_body, + STATE(7350), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3575), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [134729] = 2, - ACTIONS(3), 1, + [234171] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11421), 1, + anon_sym_LBRACE, + STATE(7351), 1, + sym_comment, + STATE(7600), 1, + sym_enum_body, + [234187] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3524), 1, + sym_class_body, + STATE(7352), 1, + sym_comment, + [234203] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, + anon_sym_LBRACE, + STATE(3531), 1, + sym_statement_block, + STATE(7353), 1, sym_comment, - ACTIONS(2452), 5, + [234219] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + STATE(6237), 1, + sym_class_body, + STATE(7354), 1, + sym_comment, + [234235] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7355), 1, + sym_comment, + ACTIONS(11423), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134740] = 6, - ACTIONS(3), 1, + [234249] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11425), 1, + anon_sym_SEMI, + ACTIONS(11427), 1, + sym__automatic_semicolon, + STATE(7356), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3114), 1, - sym_formal_parameters, - STATE(3807), 1, - sym__call_signature, - STATE(4526), 1, - sym_type_parameters, - [134759] = 6, - ACTIONS(3), 1, + [234265] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8306), 1, + anon_sym_LBRACE, + STATE(1329), 1, + sym_class_body, + STATE(7357), 1, + sym_comment, + [234281] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7358), 1, sym_comment, - ACTIONS(2730), 1, + ACTIONS(11429), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234295] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8306), 1, anon_sym_LBRACE, - ACTIONS(7145), 1, + STATE(1328), 1, + sym_class_body, + STATE(7359), 1, + sym_comment, + [234311] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3537), 1, + sym_class_body, + STATE(7360), 1, + sym_comment, + [234327] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8514), 1, + anon_sym_LBRACE, + STATE(6254), 1, + sym_statement_block, + STATE(7361), 1, + sym_comment, + [234343] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11431), 1, anon_sym_SEMI, - ACTIONS(7147), 1, + ACTIONS(11433), 1, sym__automatic_semicolon, - ACTIONS(7149), 1, - sym__function_signature_automatic_semicolon, - STATE(888), 1, + STATE(7362), 1, + sym_comment, + [234359] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, + anon_sym_LBRACE, + STATE(3517), 1, sym_statement_block, - [134778] = 2, - ACTIONS(3), 1, + STATE(7363), 1, + sym_comment, + [234375] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + STATE(6219), 1, + sym_class_body, + STATE(7364), 1, sym_comment, - ACTIONS(6560), 5, + [234391] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7365), 1, + sym_comment, + ACTIONS(11435), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234405] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11437), 1, + anon_sym_SEMI, + ACTIONS(11439), 1, sym__automatic_semicolon, + STATE(7366), 1, + sym_comment, + [234421] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7367), 1, + sym_comment, + ACTIONS(11441), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134789] = 2, - ACTIONS(3), 1, + [234435] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8254), 1, + anon_sym_LBRACE, + STATE(1576), 1, + sym_class_body, + STATE(7368), 1, sym_comment, - ACTIONS(2444), 5, - sym__automatic_semicolon, + [234451] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3514), 1, + sym_class_body, + STATE(7369), 1, + sym_comment, + [234467] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + STATE(6213), 1, + sym_class_body, + STATE(7370), 1, + sym_comment, + [234483] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7371), 1, + sym_comment, + ACTIONS(11443), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134800] = 6, - ACTIONS(3), 1, + [234497] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11335), 1, + anon_sym_LBRACE, + STATE(1174), 1, + sym_statement_block, + STATE(7372), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, + [234513] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3561), 1, + sym_class_body, + STATE(7373), 1, + sym_comment, + [234529] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8306), 1, + anon_sym_LBRACE, + STATE(1322), 1, + sym_class_body, + STATE(7374), 1, + sym_comment, + [234545] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11445), 1, anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4600), 1, - sym__call_signature, - [134819] = 2, - ACTIONS(3), 1, + STATE(1347), 1, + sym_parenthesized_expression, + STATE(7375), 1, + sym_comment, + [234561] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11447), 1, + anon_sym_LBRACE, + STATE(6288), 1, + sym_enum_body, + STATE(7376), 1, sym_comment, - ACTIONS(7163), 5, + [234577] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7377), 1, + sym_comment, + ACTIONS(9898), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134830] = 2, - ACTIONS(3), 1, + [234591] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + STATE(6202), 1, + sym_class_body, + STATE(7378), 1, + sym_comment, + [234607] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11335), 1, + anon_sym_LBRACE, + STATE(1175), 1, + sym_statement_block, + STATE(7379), 1, sym_comment, - ACTIONS(7165), 5, + [234623] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7380), 1, + sym_comment, + ACTIONS(11449), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134841] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(7167), 2, + [234637] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11451), 1, + anon_sym_SEMI, + ACTIONS(11453), 1, sym__automatic_semicolon, + STATE(7381), 1, + sym_comment, + [234653] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11455), 1, anon_sym_SEMI, - [134858] = 2, - ACTIONS(3), 1, + ACTIONS(11457), 1, + sym__automatic_semicolon, + STATE(7382), 1, sym_comment, - ACTIONS(7169), 5, + [234669] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11459), 1, + anon_sym_SEMI, + ACTIONS(11461), 1, sym__automatic_semicolon, + STATE(7383), 1, + sym_comment, + [234685] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9334), 1, + anon_sym_LBRACE, + STATE(1280), 1, + sym_statement_block, + STATE(7384), 1, + sym_comment, + [234701] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7385), 1, + sym_comment, + ACTIONS(11463), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134869] = 6, - ACTIONS(3), 1, + [234715] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(103), 1, + sym_parenthesized_expression, + STATE(7386), 1, sym_comment, - ACTIONS(2213), 1, + [234731] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11467), 1, anon_sym_LBRACE, - ACTIONS(7171), 1, - anon_sym_COLON, - ACTIONS(7173), 1, - anon_sym_DOT, - ACTIONS(7175), 1, - anon_sym_on, - STATE(2500), 1, - sym_ui_object_initializer, - [134888] = 6, - ACTIONS(3), 1, + STATE(959), 1, + sym_statement_block, + STATE(7387), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3705), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [134907] = 2, - ACTIONS(3), 1, + [234747] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7388), 1, sym_comment, - ACTIONS(6562), 5, + ACTIONS(6280), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134918] = 2, - ACTIONS(3), 1, + [234761] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7389), 1, sym_comment, - ACTIONS(7177), 5, + ACTIONS(6402), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134929] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4523), 1, - sym_type_parameters, - STATE(4619), 1, - sym__call_signature, - [134948] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3438), 1, - sym_formal_parameters, - STATE(4401), 1, - sym__call_signature, - STATE(4523), 1, - sym_type_parameters, - [134967] = 2, - ACTIONS(3), 1, + [234775] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7390), 1, sym_comment, - ACTIONS(2488), 5, + ACTIONS(11469), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [134978] = 3, - ACTIONS(3), 1, + [234789] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9598), 1, + anon_sym_in, + ACTIONS(9600), 1, + anon_sym_of, + STATE(7391), 1, sym_comment, - ACTIONS(7179), 1, - anon_sym_EQ, - ACTIONS(3446), 4, + [234805] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7392), 1, + sym_comment, + ACTIONS(6505), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [134991] = 6, - ACTIONS(3), 1, + [234819] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(7393), 1, + sym_comment, + STATE(7978), 1, + sym_statement_block, + [234835] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11471), 1, + anon_sym_LBRACE, + STATE(1751), 1, + sym_switch_body, + STATE(7394), 1, sym_comment, - ACTIONS(1491), 1, + [234851] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7395), 1, + sym_comment, + ACTIONS(6861), 2, + anon_sym_else, + anon_sym_while, + [234865] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11473), 1, anon_sym_LBRACE, - ACTIONS(6955), 1, - anon_sym_SEMI, - ACTIONS(6957), 1, - sym__automatic_semicolon, - ACTIONS(6959), 1, - sym__function_signature_automatic_semicolon, - STATE(168), 1, + STATE(1396), 1, sym_statement_block, - [135010] = 6, - ACTIONS(3), 1, + STATE(7396), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3233), 1, - sym_formal_parameters, - STATE(3410), 1, - sym__call_signature, - STATE(4529), 1, - sym_type_parameters, - [135029] = 6, - ACTIONS(3), 1, + [234881] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7397), 1, sym_comment, - ACTIONS(3765), 1, - anon_sym_COLON, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(4002), 1, - anon_sym_COMMA, - ACTIONS(7181), 1, - anon_sym_RBRACE, - STATE(4064), 1, - aux_sym_object_pattern_repeat1, - [135048] = 6, + ACTIONS(11475), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234895] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11477), 1, + sym_identifier, + STATE(6954), 1, + sym_ui_simple_nested_identifier, + STATE(7398), 1, sym_comment, - ACTIONS(3765), 1, - anon_sym_COLON, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(4002), 1, - anon_sym_COMMA, - ACTIONS(7183), 1, - anon_sym_RBRACE, - STATE(4043), 1, - aux_sym_object_pattern_repeat1, - [135067] = 4, - ACTIONS(3), 1, + [234911] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11447), 1, + anon_sym_LBRACE, + STATE(6266), 1, + sym_enum_body, + STATE(7399), 1, sym_comment, - ACTIONS(6737), 1, - anon_sym_COLON, - ACTIONS(7185), 1, - anon_sym_EQ_GT, - STATE(4388), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [135082] = 5, - ACTIONS(3), 1, + [234927] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11479), 1, + anon_sym_LBRACE, + STATE(1185), 1, + sym_switch_body, + STATE(7400), 1, sym_comment, - ACTIONS(6921), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6923), 1, - sym__template_chars, - ACTIONS(7188), 1, - anon_sym_BQUOTE, - STATE(3587), 2, - sym_template_type, - aux_sym_template_literal_type_repeat1, - [135099] = 4, - ACTIONS(3), 1, + [234943] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7401), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - STATE(4188), 1, - sym__initializer, - ACTIONS(7190), 3, - sym__automatic_semicolon, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [234957] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7402), 1, + sym_comment, + ACTIONS(6423), 2, anon_sym_COMMA, - anon_sym_SEMI, - [135114] = 6, - ACTIONS(3), 1, + anon_sym_RBRACE, + [234971] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7403), 1, sym_comment, - ACTIONS(6955), 1, - anon_sym_SEMI, - ACTIONS(6957), 1, + ACTIONS(6200), 2, sym__automatic_semicolon, - ACTIONS(6959), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(7095), 1, - anon_sym_LBRACE, - STATE(684), 1, - sym_statement_block, - [135133] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [234985] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7404), 1, sym_comment, - ACTIONS(6743), 5, + ACTIONS(6202), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_SEMI, - [135144] = 4, - ACTIONS(3), 1, + [234999] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7405), 1, sym_comment, - ACTIONS(6094), 1, - anon_sym_EQ, - STATE(4171), 1, - sym__initializer, - ACTIONS(7192), 3, + ACTIONS(11483), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [135159] = 2, - ACTIONS(3), 1, + [235013] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7406), 1, sym_comment, - ACTIONS(6745), 5, + ACTIONS(11485), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_SEMI, - [135170] = 4, + [235027] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3227), 1, + sym_statement_block, + STATE(7407), 1, + sym_comment, + [235043] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(7408), 1, + sym_comment, + STATE(8574), 1, + sym_formal_parameters, + [235059] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(7409), 1, + sym_comment, + STATE(7946), 1, + sym_statement_block, + [235075] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11487), 1, + sym_identifier, + ACTIONS(11489), 1, + anon_sym_STAR, + STATE(7410), 1, sym_comment, - ACTIONS(6498), 1, - anon_sym_EQ, - STATE(4528), 1, - sym__initializer, - ACTIONS(7194), 2, + [235091] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7411), 1, + sym_comment, + ACTIONS(6518), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [135184] = 5, - ACTIONS(3), 1, + anon_sym_RBRACE, + [235105] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9334), 1, + anon_sym_LBRACE, + STATE(1452), 1, + sym_statement_block, + STATE(7412), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7196), 1, - anon_sym_QMARK, - [135200] = 5, - ACTIONS(3), 1, + [235121] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3228), 1, + sym_statement_block, + STATE(7413), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7198), 1, - anon_sym_COLON, - [135216] = 5, - ACTIONS(3), 1, + [235137] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7414), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7200), 1, - anon_sym_RPAREN, - [135232] = 5, - ACTIONS(3), 1, + ACTIONS(9642), 2, + anon_sym_else, + anon_sym_while, + [235151] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7415), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7202), 1, - anon_sym_RPAREN, - [135248] = 4, - ACTIONS(3), 1, + ACTIONS(6861), 2, + anon_sym_else, + anon_sym_while, + [235165] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7416), 1, sym_comment, - ACTIONS(7204), 1, - anon_sym_COMMA, - STATE(3864), 1, - aux_sym_implements_clause_repeat1, - ACTIONS(6866), 2, + ACTIONS(11491), 2, + anon_sym_else, + anon_sym_while, + [235179] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9437), 1, anon_sym_LBRACE, - anon_sym_GT, - [135262] = 5, - ACTIONS(3), 1, + STATE(1158), 1, + sym_statement_block, + STATE(7417), 1, sym_comment, - ACTIONS(7207), 1, - anon_sym_EQ, - ACTIONS(7209), 1, - anon_sym_COMMA, - ACTIONS(7211), 1, - anon_sym_RBRACE, - STATE(4167), 1, - aux_sym__qml_enum_body_repeat1, - [135278] = 5, - ACTIONS(3), 1, + [235195] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3101), 1, + sym_class_body, + STATE(7418), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7213), 1, - anon_sym_RBRACK, - [135294] = 5, + [235211] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11493), 1, + sym_identifier, + ACTIONS(11495), 1, + anon_sym_STAR, + STATE(7419), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4469), 1, - sym_type_parameters, - STATE(4882), 1, - sym_formal_parameters, - [135310] = 5, - ACTIONS(3), 1, + [235227] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7420), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7215), 1, - anon_sym_RPAREN, - [135326] = 3, - ACTIONS(3), 1, + ACTIONS(11497), 2, + anon_sym_else, + anon_sym_while, + [235241] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7421), 1, sym_comment, - ACTIONS(7217), 1, - sym_escape_sequence, - ACTIONS(7219), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [135338] = 4, - ACTIONS(3), 1, + ACTIONS(11499), 2, + anon_sym_else, + anon_sym_while, + [235255] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7422), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_from, - STATE(4564), 1, - sym__from_clause, - ACTIONS(7224), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [135352] = 4, - ACTIONS(7226), 1, - anon_sym_SQUOTE, - ACTIONS(7230), 1, + ACTIONS(11501), 2, + anon_sym_else, + anon_sym_while, + [235269] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7423), 1, sym_comment, - STATE(3983), 1, - aux_sym_string_repeat2, - ACTIONS(7228), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [135366] = 5, - ACTIONS(3), 1, + ACTIONS(9784), 2, + anon_sym_else, + anon_sym_while, + [235283] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7424), 1, sym_comment, - ACTIONS(1681), 1, - anon_sym_COMMA, - ACTIONS(7232), 1, - anon_sym_EQ, - ACTIONS(7234), 1, - anon_sym_RBRACK, - STATE(4056), 1, - aux_sym_array_pattern_repeat1, - [135382] = 4, - ACTIONS(7226), 1, - anon_sym_DQUOTE, - ACTIONS(7230), 1, + ACTIONS(9786), 2, + anon_sym_else, + anon_sym_while, + [235297] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6031), 1, + anon_sym_LBRACE, + STATE(3106), 1, + sym_statement_block, + STATE(7425), 1, sym_comment, - STATE(4003), 1, - aux_sym_string_repeat1, - ACTIONS(7236), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [135396] = 4, - ACTIONS(7230), 1, + [235313] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7426), 1, sym_comment, - ACTIONS(7238), 1, - anon_sym_SQUOTE, - STATE(3871), 1, - aux_sym_string_repeat2, - ACTIONS(7240), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [135410] = 4, - ACTIONS(7230), 1, + ACTIONS(11503), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [235327] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7427), 1, sym_comment, - ACTIONS(7238), 1, - anon_sym_DQUOTE, - STATE(3873), 1, - aux_sym_string_repeat1, - ACTIONS(7242), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [135424] = 4, - ACTIONS(3), 1, + ACTIONS(11505), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [235341] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7428), 1, sym_comment, - ACTIONS(7244), 1, + ACTIONS(11507), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [235355] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7429), 1, + sym_comment, + ACTIONS(11509), 2, anon_sym_COMMA, - STATE(3908), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(7246), 2, + anon_sym_RBRACE, + [235369] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7430), 1, + sym_comment, + ACTIONS(6317), 2, sym__automatic_semicolon, anon_sym_SEMI, - [135438] = 5, + [235383] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11511), 1, + sym_identifier, + ACTIONS(11513), 1, + anon_sym_STAR, + STATE(7431), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7248), 1, - anon_sym_RBRACK, - [135454] = 5, - ACTIONS(3), 1, + [235399] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7432), 1, + sym_comment, + ACTIONS(6311), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [235413] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8296), 1, + anon_sym_LBRACE, + STATE(1697), 1, + sym_class_body, + STATE(7433), 1, + sym_comment, + [235429] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10758), 1, + anon_sym_LBRACE, + STATE(4099), 1, + sym_statement_block, + STATE(7434), 1, + sym_comment, + [235445] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11473), 1, + anon_sym_LBRACE, + STATE(1275), 1, + sym_statement_block, + STATE(7435), 1, + sym_comment, + [235461] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11515), 1, + anon_sym_LBRACE, + STATE(1387), 1, + sym_switch_body, + STATE(7436), 1, + sym_comment, + [235477] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11517), 1, + anon_sym_LBRACE, + STATE(1272), 1, + sym_enum_body, + STATE(7437), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7250), 1, - anon_sym_QMARK, - [135470] = 5, + [235493] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11519), 1, + sym_identifier, + ACTIONS(11521), 1, + sym_private_property_identifier, + STATE(7438), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7252), 1, - anon_sym_QMARK, - [135486] = 4, - ACTIONS(3), 1, + [235509] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7439), 1, sym_comment, - ACTIONS(7244), 1, - anon_sym_COMMA, - STATE(3908), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(7254), 2, + ACTIONS(11523), 2, sym__automatic_semicolon, anon_sym_SEMI, - [135500] = 4, - ACTIONS(3), 1, + [235523] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(4945), 1, + sym_formal_parameters, + STATE(7440), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_from, - STATE(4613), 1, - sym__from_clause, - ACTIONS(4942), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [135514] = 4, - ACTIONS(3), 1, + [235539] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7441), 1, sym_comment, - ACTIONS(7244), 1, - anon_sym_COMMA, - STATE(3889), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(7256), 2, + ACTIONS(6174), 2, sym__automatic_semicolon, anon_sym_SEMI, - [135528] = 4, - ACTIONS(3), 1, + [235553] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11525), 1, + anon_sym_LBRACE, + STATE(1223), 1, + sym_statement_block, + STATE(7442), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_from, - STATE(4483), 1, - sym__from_clause, - ACTIONS(7258), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [135542] = 3, + [235569] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11527), 1, + sym_identifier, + ACTIONS(11529), 1, + anon_sym_STAR, + STATE(7443), 1, sym_comment, - ACTIONS(6967), 1, - anon_sym_RBRACE, - ACTIONS(4336), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [135554] = 4, - ACTIONS(3), 1, + [235585] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7444), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_from, - STATE(4467), 1, - sym__from_clause, - ACTIONS(4650), 2, + ACTIONS(11531), 2, + anon_sym_else, + anon_sym_while, + [235599] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7445), 1, + sym_comment, + ACTIONS(6353), 2, sym__automatic_semicolon, anon_sym_SEMI, - [135568] = 5, + [235613] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(6951), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11533), 1, sym_identifier, - STATE(4438), 1, - sym_ui_signal_parameter, - STATE(4880), 1, - sym_nested_identifier, - STATE(4969), 1, - sym_nested_type_identifier, - [135584] = 4, - ACTIONS(7230), 1, + ACTIONS(11535), 1, + anon_sym_STAR, + STATE(7446), 1, sym_comment, - ACTIONS(7260), 1, - anon_sym_DQUOTE, - STATE(3949), 1, - aux_sym_string_repeat1, - ACTIONS(7262), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [135598] = 5, - ACTIONS(3), 1, + [235629] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(6166), 1, + sym_formal_parameters, + STATE(7447), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7264), 1, - anon_sym_QMARK, - [135614] = 4, - ACTIONS(3), 1, + [235645] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7448), 1, sym_comment, - ACTIONS(7244), 1, - anon_sym_COMMA, - STATE(3908), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(7266), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [135628] = 5, + ACTIONS(9658), 2, + anon_sym_else, + anon_sym_while, + [235659] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11537), 1, + sym_identifier, + ACTIONS(11539), 1, + anon_sym_STAR, + STATE(7449), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(7268), 1, - anon_sym_class, - STATE(1136), 1, - sym_decorator, - STATE(3483), 1, - aux_sym_export_statement_repeat1, - [135644] = 5, - ACTIONS(7230), 1, + [235675] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7450), 1, sym_comment, - ACTIONS(7270), 1, - sym__glimmer_template_content, - ACTIONS(7272), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(1689), 1, - sym_glimmer_closing_tag, - STATE(4001), 1, - aux_sym_glimmer_template_repeat1, - [135660] = 5, - ACTIONS(3), 1, + ACTIONS(11541), 2, + anon_sym_else, + anon_sym_while, + [235689] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11543), 1, + anon_sym_LBRACE, + STATE(1017), 1, + sym_statement_block, + STATE(7451), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7274), 1, - anon_sym_COLON, - [135676] = 5, + [235705] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11545), 1, + anon_sym_LBRACE, + STATE(972), 1, + sym_statement_block, + STATE(7452), 1, + sym_comment, + [235721] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11091), 1, + sym_private_property_identifier, + STATE(7453), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7276), 1, - anon_sym_COLON, - [135692] = 4, - ACTIONS(7230), 1, + [235737] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(137), 1, + sym_parenthesized_expression, + STATE(7454), 1, sym_comment, - ACTIONS(7260), 1, - anon_sym_SQUOTE, - STATE(3944), 1, - aux_sym_string_repeat2, - ACTIONS(7278), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [135706] = 5, - ACTIONS(3), 1, + [235753] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7455), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7280), 1, - anon_sym_QMARK, - [135722] = 4, - ACTIONS(3), 1, + ACTIONS(11547), 2, + anon_sym_else, + anon_sym_while, + [235767] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7456), 1, sym_comment, - ACTIONS(7244), 1, - anon_sym_COMMA, - STATE(3972), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(7282), 2, - sym__automatic_semicolon, + ACTIONS(9768), 2, + anon_sym_else, + anon_sym_while, + [235781] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7457), 1, + sym_comment, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [235795] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7458), 1, + sym_comment, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [235809] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9437), 1, + anon_sym_LBRACE, + STATE(1170), 1, + sym_statement_block, + STATE(7459), 1, + sym_comment, + [235825] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11549), 1, anon_sym_SEMI, - [135736] = 4, - ACTIONS(7230), 1, + ACTIONS(11551), 1, + sym__automatic_semicolon, + STATE(7460), 1, sym_comment, - ACTIONS(7284), 1, - anon_sym_DQUOTE, - STATE(3899), 1, - aux_sym_string_repeat1, - ACTIONS(7286), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [135750] = 4, - ACTIONS(7230), 1, + [235841] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(93), 1, + sym_parenthesized_expression, + STATE(7461), 1, sym_comment, - ACTIONS(7284), 1, - anon_sym_SQUOTE, - STATE(3900), 1, - aux_sym_string_repeat2, - ACTIONS(7288), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [135764] = 4, - ACTIONS(7230), 1, + [235857] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7462), 1, sym_comment, - ACTIONS(7290), 1, - anon_sym_DQUOTE, - STATE(4003), 1, - aux_sym_string_repeat1, - ACTIONS(7236), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [135778] = 4, - ACTIONS(7230), 1, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [235871] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7463), 1, sym_comment, - ACTIONS(7290), 1, - anon_sym_SQUOTE, - STATE(3983), 1, - aux_sym_string_repeat2, - ACTIONS(7228), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [135792] = 4, - ACTIONS(3), 1, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [235885] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7464), 1, sym_comment, - ACTIONS(7292), 1, - anon_sym_LPAREN, - STATE(4625), 1, - sym_ui_signal_parameters, - ACTIONS(7294), 2, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [235899] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7465), 1, + sym_comment, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [235913] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11553), 1, + anon_sym_SEMI, + ACTIONS(11555), 1, sym__automatic_semicolon, + STATE(7466), 1, + sym_comment, + [235929] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11557), 1, anon_sym_SEMI, - [135806] = 5, - ACTIONS(3), 1, + ACTIONS(11559), 1, + sym__automatic_semicolon, + STATE(7467), 1, sym_comment, - ACTIONS(7296), 1, - sym_identifier, - STATE(3431), 1, - sym_nested_type_identifier, - STATE(3966), 1, - sym_generic_type, - STATE(4799), 1, - sym_nested_identifier, - [135822] = 5, - ACTIONS(3), 1, + [235945] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7468), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7298), 1, - anon_sym_QMARK, - [135838] = 5, - ACTIONS(3), 1, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [235959] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7469), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4519), 1, - sym_type_parameters, - STATE(4666), 1, - sym_formal_parameters, - [135854] = 4, - ACTIONS(3), 1, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [235973] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7470), 1, sym_comment, - ACTIONS(7244), 1, - anon_sym_COMMA, - STATE(3908), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(7300), 2, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [235987] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7471), 1, + sym_comment, + ACTIONS(11561), 2, sym__automatic_semicolon, anon_sym_SEMI, - [135868] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7302), 1, - anon_sym_RBRACK, - [135884] = 5, - ACTIONS(7230), 1, - sym_comment, - ACTIONS(7304), 1, - sym__glimmer_template_content, - ACTIONS(7306), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(2302), 1, - sym_glimmer_closing_tag, - STATE(3974), 1, - aux_sym_glimmer_template_repeat1, - [135900] = 4, - ACTIONS(3), 1, + [236001] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7472), 1, sym_comment, - ACTIONS(7308), 1, - anon_sym_COMMA, - STATE(3908), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(7311), 2, + ACTIONS(10017), 2, sym__automatic_semicolon, anon_sym_SEMI, - [135914] = 5, - ACTIONS(3), 1, + [236015] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7473), 1, sym_comment, - ACTIONS(7313), 1, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [236029] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11517), 1, anon_sym_LBRACE, - ACTIONS(7315), 1, - anon_sym_COMMA, - ACTIONS(7318), 1, - anon_sym_LBRACE_PIPE, - STATE(3909), 1, - aux_sym_extends_type_clause_repeat1, - [135930] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(7320), 1, - anon_sym_export, - STATE(1136), 1, - sym_decorator, - STATE(3483), 1, - aux_sym_export_statement_repeat1, - [135946] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_EQ, - STATE(4346), 1, - sym__initializer, - ACTIONS(7322), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [135960] = 5, - ACTIONS(3), 1, + STATE(1276), 1, + sym_enum_body, + STATE(7474), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + [236045] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11563), 1, anon_sym_LPAREN, - STATE(3306), 1, - sym_formal_parameters, - STATE(4359), 1, - sym_type_parameters, - [135976] = 4, - ACTIONS(3), 1, + STATE(1194), 1, + sym_parenthesized_expression, + STATE(7475), 1, sym_comment, - ACTIONS(4778), 1, - anon_sym_COMMA, - STATE(4002), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(7324), 2, + [236061] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8234), 1, anon_sym_LBRACE, - anon_sym_implements, - [135990] = 2, - ACTIONS(3), 1, + STATE(417), 1, + sym_class_body, + STATE(7476), 1, sym_comment, - ACTIONS(6385), 4, - anon_sym_default, - anon_sym_readonly, - anon_sym_property, - anon_sym_required, - [136000] = 5, - ACTIONS(3), 1, + [236077] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7477), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4554), 1, - sym_type_parameters, - STATE(4653), 1, - sym_formal_parameters, - [136016] = 4, - ACTIONS(3), 1, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [236091] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7478), 1, sym_comment, - ACTIONS(6204), 1, - anon_sym_EQ, - STATE(4468), 1, - sym_default_type, - ACTIONS(7326), 2, - anon_sym_COMMA, - anon_sym_GT, - [136030] = 5, - ACTIONS(3), 1, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [236105] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7479), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7328), 1, - anon_sym_RBRACK, - [136046] = 5, - ACTIONS(3), 1, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [236119] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7480), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7330), 1, - anon_sym_RBRACK, - [136062] = 5, - ACTIONS(3), 1, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [236133] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7481), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4379), 1, - sym_type_parameters, - STATE(4711), 1, - sym_formal_parameters, - [136078] = 4, - ACTIONS(3), 1, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [236147] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7482), 1, sym_comment, - ACTIONS(3807), 1, - anon_sym_LBRACE, - ACTIONS(6297), 1, - anon_sym_STAR, - STATE(4837), 2, - sym_namespace_import, - sym_named_imports, - [136092] = 4, - ACTIONS(3), 1, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [236161] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7483), 1, sym_comment, - ACTIONS(7244), 1, - anon_sym_COMMA, - STATE(3880), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(7332), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [136106] = 2, - ACTIONS(3), 1, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [236175] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7484), 1, sym_comment, - ACTIONS(7334), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [136116] = 4, - ACTIONS(7230), 1, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [236189] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7485), 1, sym_comment, - ACTIONS(7336), 1, - anon_sym_SQUOTE, - STATE(3983), 1, - aux_sym_string_repeat2, - ACTIONS(7228), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [136130] = 5, - ACTIONS(3), 1, + ACTIONS(11481), 2, + anon_sym_else, + anon_sym_while, + [236203] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7486), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4464), 1, - sym_type_parameters, - STATE(4787), 1, - sym_formal_parameters, - [136146] = 4, - ACTIONS(7230), 1, + ACTIONS(11565), 2, + anon_sym_else, + anon_sym_while, + [236217] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7487), 1, sym_comment, - ACTIONS(7336), 1, - anon_sym_DQUOTE, - STATE(4003), 1, - aux_sym_string_repeat1, - ACTIONS(7236), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [136160] = 5, - ACTIONS(3), 1, + ACTIONS(11567), 2, + anon_sym_else, + anon_sym_while, + [236231] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7488), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4443), 1, - sym_type_parameters, - STATE(5010), 1, - sym_formal_parameters, - [136176] = 5, + ACTIONS(11569), 2, + anon_sym_else, + anon_sym_while, + [236245] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11571), 1, + sym_identifier, + ACTIONS(11573), 1, + sym_private_property_identifier, + STATE(7489), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7338), 1, - anon_sym_RPAREN, - [136192] = 2, + [236261] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11203), 1, + sym_identifier, + ACTIONS(11207), 1, + sym_private_property_identifier, + STATE(7490), 1, sym_comment, - ACTIONS(7340), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_on, - [136202] = 4, - ACTIONS(3), 1, + [236277] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7491), 1, sym_comment, - ACTIONS(7244), 1, - anon_sym_COMMA, - STATE(3905), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(7342), 2, + ACTIONS(11575), 2, + anon_sym_else, + anon_sym_while, + [236291] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11577), 1, + anon_sym_SEMI, + ACTIONS(11579), 1, + sym__automatic_semicolon, + STATE(7492), 1, + sym_comment, + [236307] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7493), 1, + sym_comment, + ACTIONS(11581), 2, sym__automatic_semicolon, anon_sym_SEMI, - [136216] = 5, - ACTIONS(3), 1, + [236321] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8284), 1, + anon_sym_LBRACE, + STATE(1173), 1, + sym_class_body, + STATE(7494), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7344), 1, - anon_sym_RPAREN, - [136232] = 4, - ACTIONS(7230), 1, + [236337] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7495), 1, sym_comment, - ACTIONS(7346), 1, - anon_sym_DQUOTE, - STATE(3934), 1, - aux_sym_string_repeat1, - ACTIONS(7348), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [136246] = 4, - ACTIONS(7230), 1, + ACTIONS(11583), 2, + anon_sym_else, + anon_sym_while, + [236351] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7496), 1, sym_comment, - ACTIONS(7346), 1, - anon_sym_SQUOTE, - STATE(3935), 1, - aux_sym_string_repeat2, - ACTIONS(7350), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [136260] = 4, - ACTIONS(7230), 1, + ACTIONS(9836), 2, + anon_sym_else, + anon_sym_while, + [236365] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7497), 1, sym_comment, - ACTIONS(7352), 1, - anon_sym_SQUOTE, - STATE(3923), 1, - aux_sym_string_repeat2, - ACTIONS(7354), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [136274] = 4, - ACTIONS(7230), 1, + ACTIONS(9838), 2, + anon_sym_else, + anon_sym_while, + [236379] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7498), 1, sym_comment, - ACTIONS(7356), 1, - anon_sym_DQUOTE, - STATE(4003), 1, - aux_sym_string_repeat1, - ACTIONS(7236), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [136288] = 4, - ACTIONS(7230), 1, + ACTIONS(9846), 2, + anon_sym_else, + anon_sym_while, + [236393] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3163), 1, + sym_statement_block, + STATE(7499), 1, sym_comment, - ACTIONS(7356), 1, - anon_sym_SQUOTE, - STATE(3983), 1, - aux_sym_string_repeat2, - ACTIONS(7228), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [136302] = 4, - ACTIONS(3), 1, + [236409] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7500), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_from, - STATE(4423), 1, - sym__from_clause, - ACTIONS(4881), 2, + ACTIONS(11585), 2, sym__automatic_semicolon, anon_sym_SEMI, - [136316] = 3, - ACTIONS(3), 1, + [236423] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7501), 1, sym_comment, - ACTIONS(7360), 1, - anon_sym_DOT, - ACTIONS(7358), 3, + ACTIONS(11587), 2, sym__automatic_semicolon, - anon_sym_as, anon_sym_SEMI, - [136328] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 1, - anon_sym_EQ, - STATE(4395), 1, - sym__initializer, - ACTIONS(7362), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [136342] = 4, - ACTIONS(7230), 1, - sym_comment, - ACTIONS(7352), 1, - anon_sym_DQUOTE, - STATE(3925), 1, - aux_sym_string_repeat1, - ACTIONS(7364), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [136356] = 5, - ACTIONS(3), 1, + [236437] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7502), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4440), 1, - sym_type_parameters, - STATE(4972), 1, - sym_formal_parameters, - [136372] = 5, - ACTIONS(3), 1, + ACTIONS(9666), 2, + anon_sym_else, + anon_sym_while, + [236451] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10971), 1, + anon_sym_LBRACE, + STATE(1331), 1, + sym_statement_block, + STATE(7503), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7366), 1, - anon_sym_COLON, - [136388] = 5, - ACTIONS(3), 1, + [236467] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11589), 1, + anon_sym_SEMI, + ACTIONS(11591), 1, + sym__automatic_semicolon, + STATE(7504), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7368), 1, - anon_sym_RBRACK, - [136404] = 5, - ACTIONS(3), 1, + [236483] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8234), 1, + anon_sym_LBRACE, + STATE(379), 1, + sym_class_body, + STATE(7505), 1, sym_comment, - ACTIONS(6546), 1, - anon_sym_COMMA, - ACTIONS(7370), 1, + [236499] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8384), 1, anon_sym_LBRACE, - ACTIONS(7372), 1, - anon_sym_LBRACE_PIPE, - STATE(3909), 1, - aux_sym_extends_type_clause_repeat1, - [136420] = 4, - ACTIONS(7230), 1, + STATE(1509), 1, + sym_class_body, + STATE(7506), 1, sym_comment, - ACTIONS(7374), 1, - anon_sym_SQUOTE, - STATE(3983), 1, - aux_sym_string_repeat2, - ACTIONS(7228), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [136434] = 5, - ACTIONS(3), 1, + [236515] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9427), 1, + anon_sym_LBRACE, + STATE(398), 1, + sym_statement_block, + STATE(7507), 1, sym_comment, - ACTIONS(104), 1, - anon_sym_AT, - ACTIONS(7376), 1, - anon_sym_class, - STATE(1136), 1, - sym_decorator, - STATE(3483), 1, - aux_sym_export_statement_repeat1, - [136450] = 5, - ACTIONS(3), 1, + [236531] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8178), 1, + anon_sym_LBRACE, + STATE(1316), 1, + sym_class_body, + STATE(7508), 1, sym_comment, - ACTIONS(6546), 1, - anon_sym_COMMA, - ACTIONS(7378), 1, + [236547] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - ACTIONS(7380), 1, - anon_sym_LBRACE_PIPE, - STATE(3909), 1, - aux_sym_extends_type_clause_repeat1, - [136466] = 4, - ACTIONS(3), 1, + STATE(3290), 1, + sym_statement_block, + STATE(7509), 1, sym_comment, - ACTIONS(7244), 1, - anon_sym_COMMA, - STATE(3908), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(7382), 2, + [236563] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7510), 1, + sym_comment, + ACTIONS(11593), 2, sym__automatic_semicolon, anon_sym_SEMI, - [136480] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7384), 1, - sym_identifier, - STATE(3609), 1, - sym_nested_type_identifier, - STATE(4179), 1, - sym_generic_type, - STATE(4799), 1, - sym_nested_identifier, - [136496] = 4, - ACTIONS(7230), 1, + [236577] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7511), 1, sym_comment, - ACTIONS(7374), 1, - anon_sym_DQUOTE, - STATE(4003), 1, - aux_sym_string_repeat1, - ACTIONS(7236), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [136510] = 2, - ACTIONS(3), 1, + ACTIONS(9654), 2, + anon_sym_else, + anon_sym_while, + [236591] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + STATE(6188), 1, + sym_class_body, + STATE(7512), 1, sym_comment, - ACTIONS(4239), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, + [236607] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, anon_sym_COLON, - anon_sym_RBRACK, - [136520] = 5, + STATE(7513), 1, + sym_comment, + STATE(8056), 1, + sym_type_annotation, + [236623] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8234), 1, + anon_sym_LBRACE, + STATE(397), 1, + sym_class_body, + STATE(7514), 1, + sym_comment, + [236639] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11595), 1, + sym_identifier, + ACTIONS(11597), 1, + anon_sym_STAR, + STATE(7515), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, + [236655] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - STATE(4485), 1, - sym_type_parameters, - STATE(4874), 1, + STATE(7516), 1, + sym_comment, + STATE(8286), 1, sym_formal_parameters, - [136536] = 3, - ACTIONS(3), 1, + [236671] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9612), 1, + anon_sym_LBRACE, + STATE(1484), 1, + sym_statement_block, + STATE(7517), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_EQ_GT, - ACTIONS(3765), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [136548] = 2, + [236687] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11599), 1, + sym_identifier, + ACTIONS(11601), 1, + anon_sym_STAR, + STATE(7518), 1, sym_comment, - ACTIONS(7386), 4, + [236703] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8284), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_on, - [136558] = 4, - ACTIONS(3), 1, + STATE(1142), 1, + sym_class_body, + STATE(7519), 1, sym_comment, - ACTIONS(7388), 1, - anon_sym_EQ, - STATE(4296), 1, - sym__initializer, - ACTIONS(6289), 2, - anon_sym_in, - anon_sym_of, - [136572] = 4, - ACTIONS(3), 1, + [236719] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7520), 1, sym_comment, - ACTIONS(211), 1, - anon_sym_BQUOTE, - ACTIONS(4559), 1, - anon_sym_LPAREN, - STATE(2123), 2, - sym_template_string, - sym_arguments, - [136586] = 4, + ACTIONS(11603), 2, + anon_sym_COMMA, + anon_sym_GT, + [236733] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8284), 1, + anon_sym_LBRACE, + STATE(1141), 1, + sym_class_body, + STATE(7521), 1, + sym_comment, + [236749] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11605), 1, + sym_identifier, + ACTIONS(11607), 1, + sym_private_property_identifier, + STATE(7522), 1, sym_comment, - ACTIONS(7244), 1, - anon_sym_COMMA, - STATE(3947), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(7390), 2, - sym__automatic_semicolon, + [236765] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7523), 1, + sym_comment, + ACTIONS(11609), 2, + anon_sym_else, + anon_sym_while, + [236779] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11611), 1, anon_sym_SEMI, - [136600] = 4, - ACTIONS(7230), 1, + ACTIONS(11613), 1, + sym__automatic_semicolon, + STATE(7524), 1, sym_comment, - ACTIONS(7392), 1, - anon_sym_SQUOTE, - STATE(3983), 1, - aux_sym_string_repeat2, - ACTIONS(7228), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [136614] = 5, - ACTIONS(3), 1, + [236795] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9427), 1, + anon_sym_LBRACE, + STATE(391), 1, + sym_statement_block, + STATE(7525), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4509), 1, - sym_type_parameters, - STATE(4765), 1, - sym_formal_parameters, - [136630] = 4, - ACTIONS(7230), 1, + [236811] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8178), 1, + anon_sym_LBRACE, + STATE(1448), 1, + sym_class_body, + STATE(7526), 1, sym_comment, - ACTIONS(7394), 1, - anon_sym_SQUOTE, - STATE(3983), 1, - aux_sym_string_repeat2, - ACTIONS(7228), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [136644] = 3, + [236827] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11615), 1, + sym_identifier, + ACTIONS(11617), 1, + sym_private_property_identifier, + STATE(7527), 1, sym_comment, - ACTIONS(7396), 1, - anon_sym_EQ_GT, - ACTIONS(3765), 3, + [236843] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11619), 1, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [136656] = 4, - ACTIONS(7230), 1, + STATE(118), 1, + sym__for_header, + STATE(7528), 1, sym_comment, - ACTIONS(7392), 1, - anon_sym_DQUOTE, - STATE(4003), 1, - aux_sym_string_repeat1, - ACTIONS(7236), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [136670] = 4, - ACTIONS(7230), 1, + [236859] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10971), 1, + anon_sym_LBRACE, + STATE(1318), 1, + sym_statement_block, + STATE(7529), 1, sym_comment, - ACTIONS(7398), 1, - anon_sym_SQUOTE, - STATE(3957), 1, - aux_sym_string_repeat2, - ACTIONS(7400), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [136684] = 4, - ACTIONS(7230), 1, + [236875] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8384), 1, + anon_sym_LBRACE, + STATE(1518), 1, + sym_class_body, + STATE(7530), 1, sym_comment, - ACTIONS(7398), 1, - anon_sym_DQUOTE, - STATE(3961), 1, - aux_sym_string_repeat1, - ACTIONS(7402), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [136698] = 4, - ACTIONS(7230), 1, + [236891] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8234), 1, + anon_sym_LBRACE, + STATE(388), 1, + sym_class_body, + STATE(7531), 1, sym_comment, - ACTIONS(7394), 1, - anon_sym_DQUOTE, - STATE(4003), 1, - aux_sym_string_repeat1, - ACTIONS(7236), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [136712] = 5, - ACTIONS(3), 1, + [236907] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8178), 1, + anon_sym_LBRACE, + STATE(1439), 1, + sym_class_body, + STATE(7532), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7404), 1, - anon_sym_RBRACK, - [136728] = 5, - ACTIONS(3), 1, + [236923] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3210), 1, + sym_statement_block, + STATE(7533), 1, sym_comment, - ACTIONS(6546), 1, - anon_sym_COMMA, - ACTIONS(6725), 1, + [236939] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11252), 1, anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_LBRACE_PIPE, - STATE(3994), 1, - aux_sym_extends_type_clause_repeat1, - [136744] = 5, - ACTIONS(3), 1, + STATE(1044), 1, + sym_statement_block, + STATE(7534), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7406), 1, - anon_sym_RBRACK, - [136760] = 4, - ACTIONS(7230), 1, + [236955] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8422), 1, + anon_sym_LBRACE, + STATE(476), 1, + sym_class_body, + STATE(7535), 1, sym_comment, - ACTIONS(7408), 1, - anon_sym_SQUOTE, - STATE(3959), 1, - aux_sym_string_repeat2, - ACTIONS(7410), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [136774] = 4, - ACTIONS(7230), 1, + [236971] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8284), 1, + anon_sym_LBRACE, + STATE(1121), 1, + sym_class_body, + STATE(7536), 1, sym_comment, - ACTIONS(7408), 1, - anon_sym_DQUOTE, - STATE(3964), 1, - aux_sym_string_repeat1, - ACTIONS(7412), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [136788] = 5, - ACTIONS(3), 1, + [236987] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7537), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7414), 1, - anon_sym_COLON, - [136804] = 5, - ACTIONS(3), 1, + ACTIONS(9672), 2, + anon_sym_else, + anon_sym_while, + [237001] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7538), 1, + sym_comment, + ACTIONS(9672), 2, + anon_sym_else, + anon_sym_while, + [237015] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8384), 1, + anon_sym_LBRACE, + STATE(1607), 1, + sym_class_body, + STATE(7539), 1, + sym_comment, + [237031] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8178), 1, + anon_sym_LBRACE, + STATE(1426), 1, + sym_class_body, + STATE(7540), 1, + sym_comment, + [237047] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11252), 1, + anon_sym_LBRACE, + STATE(1047), 1, + sym_statement_block, + STATE(7541), 1, + sym_comment, + [237063] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9469), 1, + anon_sym_LBRACE, + STATE(478), 1, + sym_statement_block, + STATE(7542), 1, + sym_comment, + [237079] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7543), 1, + sym_comment, + ACTIONS(9692), 2, + anon_sym_else, + anon_sym_while, + [237093] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11621), 1, + anon_sym_SEMI, + ACTIONS(11623), 1, + sym__automatic_semicolon, + STATE(7544), 1, + sym_comment, + [237109] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7545), 1, + sym_comment, + ACTIONS(9674), 2, + anon_sym_else, + anon_sym_while, + [237123] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + STATE(6149), 1, + sym_class_body, + STATE(7546), 1, + sym_comment, + [237139] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + STATE(6148), 1, + sym_class_body, + STATE(7547), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7416), 1, - anon_sym_RBRACK, - [136820] = 4, + [237155] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11625), 1, + sym_identifier, + ACTIONS(11627), 1, + sym_private_property_identifier, + STATE(7548), 1, sym_comment, - ACTIONS(7244), 1, - anon_sym_COMMA, - STATE(3908), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(7418), 2, + [237171] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7549), 1, + sym_comment, + ACTIONS(6261), 2, sym__automatic_semicolon, anon_sym_SEMI, - [136834] = 2, + [237185] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(153), 1, + sym_parenthesized_expression, + STATE(7550), 1, + sym_comment, + [237201] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11629), 1, + sym_identifier, + ACTIONS(11631), 1, + anon_sym_STAR, + STATE(7551), 1, + sym_comment, + [237217] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, + anon_sym_LBRACE, + STATE(3736), 1, + sym_statement_block, + STATE(7552), 1, + sym_comment, + [237233] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3257), 1, + sym_statement_block, + STATE(7553), 1, sym_comment, - ACTIONS(5598), 4, + [237249] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7554), 1, + sym_comment, + ACTIONS(11633), 2, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [136844] = 5, - ACTIONS(7230), 1, + [237263] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7555), 1, sym_comment, - ACTIONS(7306), 1, - anon_sym_LT_SLASHtemplate_GT, - ACTIONS(7420), 1, - sym__glimmer_template_content, - STATE(2126), 1, - sym_glimmer_closing_tag, - STATE(4041), 1, - aux_sym_glimmer_template_repeat1, - [136860] = 4, + ACTIONS(11635), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [237277] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11637), 1, + sym_identifier, + ACTIONS(11639), 1, + anon_sym_STAR, + STATE(7556), 1, sym_comment, - ACTIONS(7244), 1, - anon_sym_COMMA, - STATE(3876), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(7422), 2, + [237293] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7557), 1, + sym_comment, + ACTIONS(6266), 2, sym__automatic_semicolon, anon_sym_SEMI, - [136874] = 4, - ACTIONS(3), 1, + [237307] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7558), 1, sym_comment, - ACTIONS(3924), 1, + ACTIONS(6272), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [237321] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9485), 1, anon_sym_LBRACE, - STATE(706), 1, + STATE(1035), 1, sym_statement_block, - ACTIONS(1493), 2, - anon_sym_else, - anon_sym_while, - [136888] = 5, - ACTIONS(3), 1, + STATE(7559), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4566), 1, - sym_type_parameters, - STATE(4775), 1, - sym_formal_parameters, - [136904] = 4, - ACTIONS(7230), 1, + [237337] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7560), 1, sym_comment, - ACTIONS(7424), 1, - anon_sym_SQUOTE, - STATE(3983), 1, - aux_sym_string_repeat2, - ACTIONS(7228), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [136918] = 4, - ACTIONS(7230), 1, + ACTIONS(2330), 2, + anon_sym_else, + anon_sym_while, + [237351] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(7496), 1, + sym_statement_block, + STATE(7561), 1, sym_comment, - ACTIONS(7424), 1, - anon_sym_DQUOTE, - STATE(4003), 1, - aux_sym_string_repeat1, - ACTIONS(7236), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [136932] = 4, - ACTIONS(7230), 1, + [237367] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11421), 1, + anon_sym_LBRACE, + STATE(7498), 1, + sym_enum_body, + STATE(7562), 1, sym_comment, - ACTIONS(7426), 1, - anon_sym_SQUOTE, - STATE(3978), 1, - aux_sym_string_repeat2, - ACTIONS(7428), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [136946] = 4, - ACTIONS(7230), 1, + [237383] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3152), 1, + sym_statement_block, + STATE(7563), 1, sym_comment, - ACTIONS(7426), 1, - anon_sym_DQUOTE, - STATE(3979), 1, - aux_sym_string_repeat1, - ACTIONS(7430), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [136960] = 5, + [237399] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11641), 1, + sym_identifier, + ACTIONS(11643), 1, + anon_sym_STAR, + STATE(7564), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7432), 1, - anon_sym_COLON, - [136976] = 4, - ACTIONS(7230), 1, + [237415] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3254), 1, + sym_statement_block, + STATE(7565), 1, sym_comment, - ACTIONS(7434), 1, - anon_sym_SQUOTE, - STATE(3983), 1, - aux_sym_string_repeat2, - ACTIONS(7436), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [136990] = 4, - ACTIONS(3), 1, + [237431] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7566), 1, sym_comment, - ACTIONS(3765), 1, - anon_sym_COLON, - ACTIONS(3902), 1, - anon_sym_EQ, - ACTIONS(7439), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [137004] = 4, - ACTIONS(3), 1, + ACTIONS(9672), 2, + anon_sym_else, + anon_sym_while, + [237445] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7567), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_from, - STATE(4284), 1, - sym__from_clause, - ACTIONS(7441), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [137018] = 5, - ACTIONS(3), 1, + ACTIONS(9672), 2, + anon_sym_else, + anon_sym_while, + [237459] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7568), 1, sym_comment, - ACTIONS(1681), 1, - anon_sym_COMMA, - ACTIONS(7232), 1, - anon_sym_EQ, - ACTIONS(7443), 1, - anon_sym_RBRACK, - STATE(4136), 1, - aux_sym_array_pattern_repeat1, - [137034] = 4, - ACTIONS(7230), 1, + ACTIONS(9672), 2, + anon_sym_else, + anon_sym_while, + [237473] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11525), 1, + anon_sym_LBRACE, + STATE(1079), 1, + sym_statement_block, + STATE(7569), 1, sym_comment, - ACTIONS(7445), 1, - anon_sym_SQUOTE, - STATE(3983), 1, - aux_sym_string_repeat2, - ACTIONS(7228), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [137048] = 4, - ACTIONS(7230), 1, + [237489] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7570), 1, sym_comment, - ACTIONS(7445), 1, - anon_sym_DQUOTE, - STATE(4003), 1, - aux_sym_string_repeat1, - ACTIONS(7236), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [137062] = 5, - ACTIONS(3), 1, + ACTIONS(9672), 2, + anon_sym_else, + anon_sym_while, + [237503] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11645), 1, + anon_sym_LBRACE, + STATE(1076), 1, + sym_enum_body, + STATE(7571), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(2810), 1, + [237519] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8422), 1, + anon_sym_LBRACE, + STATE(481), 1, + sym_class_body, + STATE(7572), 1, + sym_comment, + [237535] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6074), 1, anon_sym_LPAREN, - STATE(3341), 1, - sym_formal_parameters, - STATE(4498), 1, - sym_type_parameters, - [137078] = 4, - ACTIONS(7230), 1, + STATE(3507), 1, + sym_arguments, + STATE(7573), 1, sym_comment, - ACTIONS(7447), 1, - anon_sym_SQUOTE, - STATE(3987), 1, - aux_sym_string_repeat2, - ACTIONS(7449), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [137092] = 4, - ACTIONS(3), 1, + [237551] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7574), 1, sym_comment, - ACTIONS(7451), 1, - anon_sym_COMMA, - STATE(3991), 1, - aux_sym_array_repeat1, - ACTIONS(4994), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [137106] = 4, - ACTIONS(7230), 1, + ACTIONS(11647), 2, + anon_sym_else, + anon_sym_while, + [237565] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7575), 1, sym_comment, - ACTIONS(7447), 1, - anon_sym_DQUOTE, - STATE(3988), 1, - aux_sym_string_repeat1, - ACTIONS(7454), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [137120] = 5, - ACTIONS(3), 1, + ACTIONS(11649), 2, + anon_sym_else, + anon_sym_while, + [237579] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8384), 1, + anon_sym_LBRACE, + STATE(1544), 1, + sym_class_body, + STATE(7576), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4396), 1, - sym_type_parameters, - STATE(4747), 1, - sym_formal_parameters, - [137136] = 5, - ACTIONS(3), 1, + [237595] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9469), 1, + anon_sym_LBRACE, + STATE(477), 1, + sym_statement_block, + STATE(7577), 1, sym_comment, - ACTIONS(6546), 1, - anon_sym_COMMA, - ACTIONS(7370), 1, + [237611] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8422), 1, anon_sym_LBRACE, - ACTIONS(7372), 1, - anon_sym_LBRACE_PIPE, - STATE(3909), 1, - aux_sym_extends_type_clause_repeat1, - [137152] = 4, - ACTIONS(3), 1, + STATE(471), 1, + sym_class_body, + STATE(7578), 1, sym_comment, - ACTIONS(1230), 1, - anon_sym_BQUOTE, - ACTIONS(3966), 1, - anon_sym_LPAREN, - STATE(1705), 2, - sym_template_string, - sym_arguments, - [137166] = 5, - ACTIONS(3), 1, + [237627] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7579), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4562), 1, - sym_type_parameters, - STATE(4784), 1, - sym_formal_parameters, - [137182] = 5, - ACTIONS(3), 1, + ACTIONS(8868), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [237641] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7580), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7456), 1, - anon_sym_RBRACK, - [137198] = 5, - ACTIONS(3), 1, + ACTIONS(11609), 2, + anon_sym_else, + anon_sym_while, + [237655] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9485), 1, + anon_sym_LBRACE, + STATE(1041), 1, + sym_statement_block, + STATE(7581), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7458), 1, - anon_sym_RBRACK, - [137214] = 5, - ACTIONS(3), 1, + [237671] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11651), 1, + anon_sym_SEMI, + ACTIONS(11653), 1, + sym__automatic_semicolon, + STATE(7582), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(7460), 1, - anon_sym_RBRACK, - [137230] = 4, - ACTIONS(3), 1, + [237687] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, + anon_sym_LBRACE, + STATE(3568), 1, + sym_statement_block, + STATE(7583), 1, sym_comment, - ACTIONS(4778), 1, - anon_sym_COMMA, - STATE(4002), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(7462), 2, + [237703] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11655), 1, + anon_sym_SEMI, + ACTIONS(11657), 1, + sym__automatic_semicolon, + STATE(7584), 1, + sym_comment, + [237719] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7585), 1, + sym_comment, + ACTIONS(11659), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [237733] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7586), 1, + sym_comment, + ACTIONS(11661), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [237747] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7587), 1, + sym_comment, + ACTIONS(9095), 2, anon_sym_LBRACE, - anon_sym_implements, - [137244] = 5, - ACTIONS(7230), 1, + anon_sym_EQ_GT, + [237761] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11663), 1, + anon_sym_SEMI, + ACTIONS(11665), 1, + sym__automatic_semicolon, + STATE(7588), 1, sym_comment, - ACTIONS(7272), 1, - anon_sym_LT_SLASHtemplate_GT, - ACTIONS(7420), 1, - sym__glimmer_template_content, - STATE(1707), 1, - sym_glimmer_closing_tag, - STATE(4041), 1, - aux_sym_glimmer_template_repeat1, - [137260] = 4, - ACTIONS(3), 1, + [237777] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11667), 1, + anon_sym_SEMI, + ACTIONS(11669), 1, + sym__automatic_semicolon, + STATE(7589), 1, sym_comment, - ACTIONS(7466), 1, - anon_sym_COMMA, - STATE(4002), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(7464), 2, + [237793] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, anon_sym_LBRACE, - anon_sym_implements, - [137274] = 4, - ACTIONS(7230), 1, + STATE(6121), 1, + sym_class_body, + STATE(7590), 1, sym_comment, - ACTIONS(7469), 1, - anon_sym_DQUOTE, - STATE(4003), 1, - aux_sym_string_repeat1, - ACTIONS(7471), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [137288] = 4, - ACTIONS(3), 1, + [237809] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11645), 1, + anon_sym_LBRACE, + STATE(1057), 1, + sym_enum_body, + STATE(7591), 1, sym_comment, - ACTIONS(7474), 1, - anon_sym_COMMA, - ACTIONS(7476), 1, - anon_sym_RBRACE, - STATE(4158), 1, - aux_sym_enum_body_repeat1, - [137301] = 4, - ACTIONS(3), 1, + [237825] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8428), 1, + anon_sym_LBRACE, + STATE(351), 1, + sym_class_body, + STATE(7592), 1, sym_comment, - ACTIONS(7478), 1, - anon_sym_EQ, - ACTIONS(7480), 1, - anon_sym_COMMA, - ACTIONS(7482), 1, - anon_sym_from, - [137314] = 2, - ACTIONS(3), 1, + [237841] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7593), 1, sym_comment, - ACTIONS(7484), 3, + ACTIONS(11671), 2, sym__automatic_semicolon, - anon_sym_from, anon_sym_SEMI, - [137323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7486), 1, - anon_sym_COMMA, - ACTIONS(7488), 1, - anon_sym_GT, - STATE(4183), 1, - aux_sym_type_parameters_repeat1, - [137336] = 4, - ACTIONS(3), 1, + [237855] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11673), 1, + anon_sym_SEMI, + ACTIONS(11675), 1, + sym__automatic_semicolon, + STATE(7594), 1, sym_comment, - ACTIONS(3924), 1, + [237871] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, anon_sym_LBRACE, - ACTIONS(7490), 1, - anon_sym_LPAREN, - STATE(2501), 1, + STATE(3717), 1, sym_statement_block, - [137349] = 4, - ACTIONS(3), 1, + STATE(7595), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(4946), 1, - anon_sym_RBRACK, - STATE(3991), 1, - aux_sym_array_repeat1, - [137362] = 3, + [237887] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11677), 1, + sym_identifier, + ACTIONS(11679), 1, + sym_private_property_identifier, + STATE(7596), 1, sym_comment, - ACTIONS(7492), 1, - anon_sym_EQ, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_of, - [137373] = 4, - ACTIONS(3), 1, + [237903] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7597), 1, sym_comment, - ACTIONS(1458), 1, - anon_sym_RPAREN, - ACTIONS(7494), 1, - anon_sym_COMMA, - STATE(4093), 1, - aux_sym_formal_parameters_repeat1, - [137386] = 2, - ACTIONS(3), 1, + ACTIONS(9724), 2, + anon_sym_else, + anon_sym_while, + [237917] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11681), 1, + anon_sym_LBRACE, + STATE(1777), 1, + sym_statement_block, + STATE(7598), 1, sym_comment, - ACTIONS(6574), 3, + [237933] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7599), 1, + sym_comment, + ACTIONS(8874), 2, anon_sym_LBRACE, - anon_sym_COLON, anon_sym_EQ_GT, - [137395] = 4, - ACTIONS(3), 1, + [237947] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7600), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(4952), 1, - anon_sym_RPAREN, - STATE(4150), 1, - aux_sym_array_repeat1, - [137408] = 4, - ACTIONS(3), 1, + ACTIONS(9866), 2, + anon_sym_else, + anon_sym_while, + [237961] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7601), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(4952), 1, - anon_sym_RPAREN, - STATE(3991), 1, - aux_sym_array_repeat1, - [137421] = 2, - ACTIONS(3), 1, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [237975] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7602), 1, sym_comment, - ACTIONS(7496), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [237989] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11685), 1, anon_sym_SEMI, - [137430] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7117), 3, + ACTIONS(11687), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137439] = 2, - ACTIONS(3), 1, + STATE(7603), 1, + sym_comment, + [238005] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7604), 1, sym_comment, - ACTIONS(7498), 3, + ACTIONS(11689), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [137448] = 4, - ACTIONS(3), 1, + [238019] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8358), 1, + anon_sym_LBRACE, + STATE(1033), 1, + sym_class_body, + STATE(7605), 1, sym_comment, - ACTIONS(7500), 1, - anon_sym_COMMA, - ACTIONS(7502), 1, - anon_sym_RBRACK, - STATE(4119), 1, - aux_sym_ui_object_array_repeat1, - [137461] = 4, - ACTIONS(3), 1, + [238035] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7606), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(7504), 1, - anon_sym_RPAREN, - STATE(3991), 1, - aux_sym_array_repeat1, - [137474] = 2, - ACTIONS(3), 1, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238049] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7607), 1, sym_comment, - ACTIONS(7498), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137483] = 4, - ACTIONS(3), 1, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238063] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7608), 1, sym_comment, - ACTIONS(7506), 1, - anon_sym_COMMA, - ACTIONS(7509), 1, - anon_sym_RBRACE, - STATE(4021), 1, - aux_sym_export_clause_repeat1, - [137496] = 2, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238077] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11691), 1, + sym_identifier, + ACTIONS(11693), 1, + sym_private_property_identifier, + STATE(7609), 1, sym_comment, - ACTIONS(7511), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137505] = 2, + [238093] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11695), 1, + sym_identifier, + ACTIONS(11697), 1, + sym_private_property_identifier, + STATE(7610), 1, sym_comment, - ACTIONS(7513), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137514] = 2, + [238109] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11699), 1, + sym_identifier, + ACTIONS(11701), 1, + sym_private_property_identifier, + STATE(7611), 1, sym_comment, - ACTIONS(7511), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137523] = 2, - ACTIONS(3), 1, + [238125] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8428), 1, + anon_sym_LBRACE, + STATE(366), 1, + sym_class_body, + STATE(7612), 1, sym_comment, - ACTIONS(4994), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [137532] = 2, + [238141] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11045), 1, + sym_identifier, + ACTIONS(11049), 1, + sym_private_property_identifier, + STATE(7613), 1, sym_comment, - ACTIONS(7511), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137541] = 3, - ACTIONS(3), 1, + [238157] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9473), 1, + anon_sym_LBRACE, + STATE(347), 1, + sym_statement_block, + STATE(7614), 1, sym_comment, - ACTIONS(7517), 1, - anon_sym_COLON, - ACTIONS(7515), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [137552] = 4, - ACTIONS(3), 1, + [238173] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8324), 1, + anon_sym_LBRACE, + STATE(1116), 1, + sym_class_body, + STATE(7615), 1, + sym_comment, + [238189] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7616), 1, + sym_comment, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238203] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7617), 1, + sym_comment, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238217] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7618), 1, sym_comment, - ACTIONS(2213), 1, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238231] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7619), 1, + sym_comment, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238245] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7620), 1, + sym_comment, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238259] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8428), 1, anon_sym_LBRACE, - ACTIONS(5656), 1, - anon_sym_DOT, - STATE(2769), 1, - sym_ui_object_initializer, - [137565] = 4, - ACTIONS(3), 1, + STATE(360), 1, + sym_class_body, + STATE(7621), 1, sym_comment, - ACTIONS(7519), 1, - anon_sym_COMMA, - ACTIONS(7522), 1, - anon_sym_RBRACE, - STATE(4029), 1, - aux_sym_object_repeat1, - [137578] = 4, + [238275] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(7622), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(4974), 1, - anon_sym_RPAREN, - STATE(3991), 1, - aux_sym_array_repeat1, - [137591] = 4, - ACTIONS(3), 1, + ACTIONS(11703), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [238289] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7623), 1, sym_comment, - ACTIONS(7524), 1, - sym_identifier, - ACTIONS(7526), 1, - anon_sym_LBRACK, - ACTIONS(7528), 1, - sym_private_property_identifier, - [137604] = 4, - ACTIONS(3), 1, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238303] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7624), 1, sym_comment, - ACTIONS(1681), 1, - anon_sym_COMMA, - ACTIONS(7443), 1, - anon_sym_RBRACK, - STATE(4147), 1, - aux_sym_array_pattern_repeat1, - [137617] = 2, - ACTIONS(3), 1, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238317] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7625), 1, sym_comment, - ACTIONS(7530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137626] = 2, - ACTIONS(3), 1, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238331] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8358), 1, + anon_sym_LBRACE, + STATE(1046), 1, + sym_class_body, + STATE(7626), 1, sym_comment, - ACTIONS(7532), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137635] = 2, - ACTIONS(3), 1, + [238347] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8422), 1, + anon_sym_LBRACE, + STATE(462), 1, + sym_class_body, + STATE(7627), 1, sym_comment, - ACTIONS(7534), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137644] = 4, - ACTIONS(3), 1, + [238363] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8358), 1, + anon_sym_LBRACE, + STATE(1049), 1, + sym_class_body, + STATE(7628), 1, sym_comment, - ACTIONS(7500), 1, - anon_sym_COMMA, - ACTIONS(7536), 1, - anon_sym_RBRACK, - STATE(4053), 1, - aux_sym_ui_object_array_repeat1, - [137657] = 4, - ACTIONS(3), 1, + [238379] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11705), 1, + anon_sym_LPAREN, + STATE(1577), 1, + sym_parenthesized_expression, + STATE(7629), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(7538), 1, - anon_sym_RBRACK, - STATE(3991), 1, - aux_sym_array_repeat1, - [137670] = 2, - ACTIONS(3), 1, + [238395] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7630), 1, sym_comment, - ACTIONS(7532), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137679] = 4, - ACTIONS(3), 1, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238409] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9473), 1, + anon_sym_LBRACE, + STATE(370), 1, + sym_statement_block, + STATE(7631), 1, sym_comment, - ACTIONS(7540), 1, - sym_identifier, - STATE(1156), 1, - sym_decorator_call_expression, - STATE(3269), 1, - sym_decorator_member_expression, - [137692] = 2, - ACTIONS(3), 1, + [238425] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8324), 1, + anon_sym_LBRACE, + STATE(1098), 1, + sym_class_body, + STATE(7632), 1, + sym_comment, + [238441] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11707), 1, + anon_sym_LBRACE, + STATE(1598), 1, + sym_enum_body, + STATE(7633), 1, sym_comment, - ACTIONS(7542), 3, + [238457] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7634), 1, + sym_comment, + ACTIONS(10109), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [137701] = 4, - ACTIONS(7230), 1, - sym_comment, - ACTIONS(7544), 1, - sym__glimmer_template_content, - ACTIONS(7547), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(4041), 1, - aux_sym_glimmer_template_repeat1, - [137714] = 2, - ACTIONS(3), 1, + [238471] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7635), 1, sym_comment, - ACTIONS(7542), 3, + ACTIONS(11709), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [137723] = 4, - ACTIONS(3), 1, + [238485] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11711), 1, + anon_sym_SEMI, + ACTIONS(11713), 1, + sym__automatic_semicolon, + STATE(7636), 1, sym_comment, - ACTIONS(4002), 1, - anon_sym_COMMA, - ACTIONS(7549), 1, - anon_sym_RBRACE, - STATE(4098), 1, - aux_sym_object_pattern_repeat1, - [137736] = 4, - ACTIONS(3), 1, + [238501] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8428), 1, + anon_sym_LBRACE, + STATE(369), 1, + sym_class_body, + STATE(7637), 1, sym_comment, - ACTIONS(4002), 1, - anon_sym_COMMA, - ACTIONS(7551), 1, - anon_sym_RBRACE, - STATE(4098), 1, - aux_sym_object_pattern_repeat1, - [137749] = 2, - ACTIONS(3), 1, + [238517] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8324), 1, + anon_sym_LBRACE, + STATE(1085), 1, + sym_class_body, + STATE(7638), 1, sym_comment, - ACTIONS(7553), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [238533] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11715), 1, anon_sym_SEMI, - [137758] = 4, - ACTIONS(3), 1, + ACTIONS(11717), 1, + sym__automatic_semicolon, + STATE(7639), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(4946), 1, - anon_sym_RBRACK, - STATE(4037), 1, - aux_sym_array_repeat1, - [137771] = 2, - ACTIONS(3), 1, + [238549] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7640), 1, sym_comment, - ACTIONS(7555), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137780] = 2, - ACTIONS(3), 1, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238563] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8358), 1, + anon_sym_LBRACE, + STATE(1011), 1, + sym_class_body, + STATE(7641), 1, sym_comment, - ACTIONS(7530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [238579] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7642), 1, + sym_comment, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238593] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7643), 1, + sym_comment, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238607] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7644), 1, + sym_comment, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238621] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8324), 1, + anon_sym_LBRACE, + STATE(1070), 1, + sym_class_body, + STATE(7645), 1, + sym_comment, + [238637] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7646), 1, + sym_comment, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238651] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11719), 1, anon_sym_SEMI, - [137789] = 4, - ACTIONS(3), 1, + ACTIONS(11721), 1, + sym__automatic_semicolon, + STATE(7647), 1, sym_comment, - ACTIONS(2057), 1, + [238667] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8514), 1, anon_sym_LBRACE, - ACTIONS(7557), 1, - sym_identifier, - STATE(3885), 1, - sym_export_clause, - [137802] = 4, - ACTIONS(3), 1, + STATE(6210), 1, + sym_statement_block, + STATE(7648), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(4974), 1, - anon_sym_RPAREN, - STATE(4019), 1, - aux_sym_array_repeat1, - [137815] = 4, - ACTIONS(3), 1, + [238683] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7649), 1, sym_comment, - ACTIONS(7480), 1, - anon_sym_COMMA, - ACTIONS(7482), 1, - anon_sym_from, - ACTIONS(7559), 1, - anon_sym_EQ, - [137828] = 4, - ACTIONS(3), 1, + ACTIONS(11683), 2, + anon_sym_else, + anon_sym_while, + [238697] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7650), 1, sym_comment, - ACTIONS(7561), 1, - anon_sym_COMMA, - ACTIONS(7563), 1, - anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_ui_signal_parameters_repeat1, - [137841] = 4, - ACTIONS(3), 1, + ACTIONS(11723), 2, + anon_sym_else, + anon_sym_while, + [238711] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7651), 1, sym_comment, - ACTIONS(7500), 1, - anon_sym_COMMA, - ACTIONS(7565), 1, - anon_sym_RBRACK, - STATE(4249), 1, - aux_sym_ui_object_array_repeat1, - [137854] = 4, - ACTIONS(3), 1, + ACTIONS(11725), 2, + anon_sym_else, + anon_sym_while, + [238725] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7652), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(4980), 1, - anon_sym_RBRACK, - STATE(3991), 1, - aux_sym_array_repeat1, - [137867] = 2, + ACTIONS(9862), 2, + anon_sym_else, + anon_sym_while, + [238739] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11727), 1, + sym_identifier, + ACTIONS(11729), 1, + anon_sym_STAR, + STATE(7653), 1, sym_comment, - ACTIONS(7567), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137876] = 4, - ACTIONS(3), 1, + [238755] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3034), 1, + sym_class_body, + STATE(7654), 1, sym_comment, - ACTIONS(1681), 1, - anon_sym_COMMA, - ACTIONS(7569), 1, - anon_sym_RBRACK, - STATE(4147), 1, - aux_sym_array_pattern_repeat1, - [137889] = 4, - ACTIONS(3), 1, + [238771] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3518), 1, + sym_class_body, + STATE(7655), 1, sym_comment, - ACTIONS(7571), 1, - anon_sym_COMMA, - ACTIONS(7573), 1, - anon_sym_RBRACE, - STATE(4029), 1, - aux_sym_object_repeat1, - [137902] = 2, - ACTIONS(3), 1, + [238787] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3030), 1, + sym_class_body, + STATE(7656), 1, sym_comment, - ACTIONS(7530), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [137911] = 4, - ACTIONS(3), 1, + [238803] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7657), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_from, - ACTIONS(7575), 1, - anon_sym_as, - STATE(4486), 1, - sym__from_clause, - [137924] = 3, - ACTIONS(3), 1, + ACTIONS(9862), 2, + anon_sym_else, + anon_sym_while, + [238817] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7658), 1, sym_comment, - ACTIONS(7207), 1, - anon_sym_EQ, - ACTIONS(7577), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [137935] = 3, - ACTIONS(3), 1, + ACTIONS(9862), 2, + anon_sym_else, + anon_sym_while, + [238831] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6031), 1, + anon_sym_LBRACE, + STATE(3027), 1, + sym_statement_block, + STATE(7659), 1, sym_comment, - ACTIONS(7579), 1, - anon_sym_as, - ACTIONS(7581), 2, + [238847] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3149), 1, + sym_statement_block, + STATE(7660), 1, + sym_comment, + [238863] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6031), 1, + anon_sym_LBRACE, + STATE(3020), 1, + sym_statement_block, + STATE(7661), 1, + sym_comment, + [238879] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6031), 1, + anon_sym_LBRACE, + STATE(3002), 1, + sym_statement_block, + STATE(7662), 1, + sym_comment, + [238895] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7663), 1, + sym_comment, + ACTIONS(10924), 2, anon_sym_COMMA, anon_sym_RBRACE, - [137946] = 4, - ACTIONS(3), 1, + [238909] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7664), 1, + sym_comment, + ACTIONS(9860), 2, + anon_sym_else, + anon_sym_while, + [238923] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, + anon_sym_LBRACE, + STATE(3660), 1, + sym_statement_block, + STATE(7665), 1, + sym_comment, + [238939] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7666), 1, + sym_comment, + ACTIONS(9858), 2, + anon_sym_else, + anon_sym_while, + [238953] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7667), 1, sym_comment, - ACTIONS(1782), 1, + ACTIONS(9203), 2, anon_sym_COMMA, - ACTIONS(4980), 1, anon_sym_RBRACK, - STATE(4246), 1, - aux_sym_array_repeat1, - [137959] = 4, - ACTIONS(3), 1, + [238967] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7668), 1, sym_comment, - ACTIONS(7571), 1, - anon_sym_COMMA, - ACTIONS(7583), 1, - anon_sym_RBRACE, - STATE(4029), 1, - aux_sym_object_repeat1, - [137972] = 4, - ACTIONS(3), 1, + ACTIONS(9854), 2, + anon_sym_else, + anon_sym_while, + [238981] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7669), 1, sym_comment, - ACTIONS(4002), 1, - anon_sym_COMMA, - ACTIONS(7585), 1, - anon_sym_RBRACE, - STATE(4098), 1, - aux_sym_object_pattern_repeat1, - [137985] = 4, - ACTIONS(3), 1, + ACTIONS(9852), 2, + anon_sym_else, + anon_sym_while, + [238995] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7670), 1, sym_comment, - ACTIONS(7587), 1, - anon_sym_COMMA, - ACTIONS(7589), 1, - anon_sym_RBRACE, - STATE(4154), 1, - aux_sym_export_clause_repeat1, - [137998] = 2, - ACTIONS(3), 1, + ACTIONS(9694), 2, + anon_sym_else, + anon_sym_while, + [239009] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7671), 1, sym_comment, - ACTIONS(7591), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138007] = 4, - ACTIONS(3), 1, + ACTIONS(11731), 2, + anon_sym_else, + anon_sym_while, + [239023] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7672), 1, sym_comment, - ACTIONS(7593), 1, - anon_sym_COMMA, - ACTIONS(7595), 1, - anon_sym_RPAREN, - STATE(4109), 1, - aux_sym_formal_parameters_repeat1, - [138020] = 4, - ACTIONS(3), 1, + ACTIONS(9696), 2, + anon_sym_else, + anon_sym_while, + [239037] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11733), 1, + anon_sym_LBRACE, + STATE(1612), 1, + sym_statement_block, + STATE(7673), 1, sym_comment, - ACTIONS(7597), 1, - anon_sym_COMMA, - ACTIONS(7600), 1, - anon_sym_RBRACE, - STATE(4068), 1, - aux_sym_named_imports_repeat1, - [138033] = 4, - ACTIONS(3), 1, + [239053] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3648), 1, + sym_class_body, + STATE(7674), 1, sym_comment, - ACTIONS(1412), 1, - anon_sym_DQUOTE, - ACTIONS(1414), 1, - anon_sym_SQUOTE, - STATE(4993), 1, - sym_string, - [138046] = 2, - ACTIONS(3), 1, + [239069] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7675), 1, + sym_comment, + ACTIONS(9696), 2, + anon_sym_else, + anon_sym_while, + [239083] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7676), 1, + sym_comment, + ACTIONS(9700), 2, + anon_sym_else, + anon_sym_while, + [239097] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11707), 1, + anon_sym_LBRACE, + STATE(1617), 1, + sym_enum_body, + STATE(7677), 1, + sym_comment, + [239113] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11733), 1, + anon_sym_LBRACE, + STATE(1458), 1, + sym_statement_block, + STATE(7678), 1, + sym_comment, + [239129] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7679), 1, sym_comment, - ACTIONS(7602), 3, + ACTIONS(6307), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [138055] = 3, - ACTIONS(3), 1, + [239143] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9730), 1, + anon_sym_LBRACE, + STATE(4180), 1, + sym_statement_block, + STATE(7680), 1, sym_comment, - ACTIONS(7604), 1, - anon_sym_as, - ACTIONS(7606), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [138066] = 2, - ACTIONS(3), 1, + [239159] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7681), 1, sym_comment, - ACTIONS(7608), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [138075] = 2, - ACTIONS(3), 1, + ACTIONS(9840), 2, + anon_sym_else, + anon_sym_while, + [239173] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7682), 1, sym_comment, - ACTIONS(7602), 3, + ACTIONS(6309), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [138084] = 3, - ACTIONS(3), 1, + [239187] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7683), 1, sym_comment, - ACTIONS(7604), 1, - anon_sym_as, - ACTIONS(7610), 2, + ACTIONS(11735), 2, + anon_sym_else, + anon_sym_while, + [239201] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7684), 1, + sym_comment, + ACTIONS(6526), 2, anon_sym_COMMA, anon_sym_RBRACE, - [138095] = 2, + [239215] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11737), 1, + sym_identifier, + ACTIONS(11739), 1, + sym_private_property_identifier, + STATE(7685), 1, sym_comment, - ACTIONS(5598), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [138104] = 4, + [239231] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11741), 1, + sym_identifier, + ACTIONS(11743), 1, + sym_private_property_identifier, + STATE(7686), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_COLON, - ACTIONS(7612), 1, - anon_sym_RPAREN, - STATE(4687), 1, - sym_type_annotation, - [138117] = 4, - ACTIONS(3), 1, + [239247] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(7411), 1, + sym_statement_block, + STATE(7687), 1, + sym_comment, + [239263] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7688), 1, sym_comment, - ACTIONS(7614), 1, + ACTIONS(6530), 2, anon_sym_COMMA, - ACTIONS(7616), 1, anon_sym_RBRACE, - STATE(4158), 1, - aux_sym_enum_body_repeat1, - [138130] = 2, - ACTIONS(3), 1, + [239277] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3722), 1, + sym_class_body, + STATE(7689), 1, + sym_comment, + [239293] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7690), 1, sym_comment, - ACTIONS(7618), 3, + ACTIONS(11745), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [138139] = 2, - ACTIONS(3), 1, + [239307] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7691), 1, sym_comment, - ACTIONS(7620), 3, + ACTIONS(11747), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [138148] = 2, - ACTIONS(3), 1, + [239321] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7692), 1, sym_comment, - ACTIONS(7622), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [138157] = 3, - ACTIONS(3), 1, + ACTIONS(11735), 2, + anon_sym_else, + anon_sym_while, + [239335] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7693), 1, sym_comment, - ACTIONS(7624), 1, - anon_sym_LBRACE, - ACTIONS(7127), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [138168] = 3, - ACTIONS(3), 1, + ACTIONS(11749), 2, + anon_sym_else, + anon_sym_while, + [239349] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7694), 1, sym_comment, - ACTIONS(7626), 1, - anon_sym_EQ, - ACTIONS(3384), 2, + ACTIONS(11751), 2, + anon_sym_else, + anon_sym_while, + [239363] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7695), 1, + sym_comment, + ACTIONS(9834), 2, + anon_sym_else, + anon_sym_while, + [239377] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7696), 1, + sym_comment, + ACTIONS(10875), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [138179] = 2, - ACTIONS(3), 1, + anon_sym_RBRACE, + [239391] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7697), 1, + sym_comment, + ACTIONS(11753), 2, + anon_sym_else, + anon_sym_while, + [239405] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7698), 1, + sym_comment, + ACTIONS(11753), 2, + anon_sym_else, + anon_sym_while, + [239419] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8306), 1, + anon_sym_LBRACE, + STATE(1340), 1, + sym_class_body, + STATE(7699), 1, + sym_comment, + [239435] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7700), 1, sym_comment, - ACTIONS(7629), 3, + ACTIONS(11755), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [138188] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6478), 3, + [239449] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8514), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [138197] = 4, - ACTIONS(3), 1, + STATE(6208), 1, + sym_statement_block, + STATE(7701), 1, sym_comment, - ACTIONS(7631), 1, - sym_identifier, - ACTIONS(7633), 1, - anon_sym_LBRACK, - ACTIONS(7635), 1, - sym_private_property_identifier, - [138210] = 4, - ACTIONS(3), 1, + [239465] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7702), 1, sym_comment, - ACTIONS(7637), 1, - sym_identifier, - STATE(2334), 1, - sym_decorator_member_expression, - STATE(2461), 1, - sym_decorator_call_expression, - [138223] = 4, - ACTIONS(3), 1, + ACTIONS(11757), 2, + anon_sym_else, + anon_sym_while, + [239479] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7703), 1, sym_comment, - ACTIONS(120), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1398), 1, - anon_sym_LBRACE, - STATE(770), 1, - sym_object_type, - [138236] = 3, - ACTIONS(3), 1, + ACTIONS(11759), 2, + anon_sym_else, + anon_sym_while, + [239493] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7704), 1, sym_comment, - ACTIONS(4505), 1, - anon_sym_LBRACE, - ACTIONS(4507), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [138247] = 2, - ACTIONS(3), 1, + ACTIONS(9832), 2, + anon_sym_else, + anon_sym_while, + [239507] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7705), 1, sym_comment, - ACTIONS(6461), 3, - anon_sym_LBRACK, + ACTIONS(9832), 2, + anon_sym_else, + anon_sym_while, + [239521] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7706), 1, + sym_comment, + ACTIONS(9832), 2, + anon_sym_else, + anon_sym_while, + [239535] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11761), 1, sym_identifier, + ACTIONS(11763), 1, sym_private_property_identifier, - [138256] = 3, - ACTIONS(3), 1, + STATE(7707), 1, + sym_comment, + [239551] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7708), 1, + sym_comment, + ACTIONS(11765), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [239565] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7709), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(9830), 2, + anon_sym_else, + anon_sym_while, + [239579] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - ACTIONS(4451), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [138267] = 2, - ACTIONS(3), 1, + STATE(3183), 1, + sym_statement_block, + STATE(7710), 1, + sym_comment, + [239595] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7711), 1, sym_comment, - ACTIONS(7117), 3, + ACTIONS(11767), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [138276] = 4, - ACTIONS(3), 1, + [239609] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7712), 1, + sym_comment, + ACTIONS(9828), 2, + anon_sym_else, + anon_sym_while, + [239623] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7713), 1, + sym_comment, + ACTIONS(9826), 2, + anon_sym_else, + anon_sym_while, + [239637] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7714), 1, + sym_comment, + ACTIONS(9824), 2, + anon_sym_else, + anon_sym_while, + [239651] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7715), 1, sym_comment, - ACTIONS(7571), 1, + ACTIONS(6534), 2, anon_sym_COMMA, - ACTIONS(7639), 1, anon_sym_RBRACE, - STATE(4029), 1, - aux_sym_object_repeat1, - [138289] = 4, + [239665] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11769), 1, + sym_identifier, + ACTIONS(11771), 1, + anon_sym_STAR, + STATE(7716), 1, sym_comment, - ACTIONS(7641), 1, - anon_sym_COMMA, - ACTIONS(7644), 1, - anon_sym_RPAREN, - STATE(4093), 1, - aux_sym_formal_parameters_repeat1, - [138302] = 4, - ACTIONS(3), 1, + [239681] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7717), 1, + sym_comment, + ACTIONS(11773), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [239695] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7718), 1, + sym_comment, + ACTIONS(11775), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [239709] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7719), 1, + sym_comment, + ACTIONS(9712), 2, + anon_sym_else, + anon_sym_while, + [239723] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7720), 1, + sym_comment, + ACTIONS(9712), 2, + anon_sym_else, + anon_sym_while, + [239737] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7721), 1, + sym_comment, + ACTIONS(11777), 2, + anon_sym_else, + anon_sym_while, + [239751] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3277), 1, + sym_statement_block, + STATE(7722), 1, + sym_comment, + [239767] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7723), 1, sym_comment, - ACTIONS(7646), 1, + ACTIONS(11779), 2, anon_sym_COMMA, - ACTIONS(7649), 1, anon_sym_RPAREN, - STATE(4094), 1, - aux_sym_ui_signal_parameters_repeat1, - [138315] = 4, - ACTIONS(3), 1, + [239781] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7724), 1, sym_comment, - ACTIONS(4002), 1, - anon_sym_COMMA, - ACTIONS(7651), 1, - anon_sym_RBRACE, - STATE(4098), 1, - aux_sym_object_pattern_repeat1, - [138328] = 4, - ACTIONS(3), 1, + ACTIONS(9816), 2, + anon_sym_else, + anon_sym_while, + [239795] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7725), 1, sym_comment, - ACTIONS(7653), 1, + ACTIONS(11781), 2, anon_sym_COMMA, - ACTIONS(7655), 1, - anon_sym_RBRACE, - STATE(4158), 1, - aux_sym_enum_body_repeat1, - [138341] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [239809] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7726), 1, sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - anon_sym_RBRACE, - STATE(4189), 1, - aux_sym_named_imports_repeat1, - [138354] = 4, - ACTIONS(3), 1, + ACTIONS(11783), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [239823] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7727), 1, sym_comment, - ACTIONS(7661), 1, + ACTIONS(6493), 2, anon_sym_COMMA, - ACTIONS(7664), 1, anon_sym_RBRACE, - STATE(4098), 1, - aux_sym_object_pattern_repeat1, - [138367] = 4, - ACTIONS(3), 1, + [239837] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7728), 1, sym_comment, - ACTIONS(7666), 1, - anon_sym_COMMA, - ACTIONS(7668), 1, - anon_sym_RBRACE, - STATE(4158), 1, - aux_sym_enum_body_repeat1, - [138380] = 4, - ACTIONS(3), 1, + ACTIONS(9814), 2, + anon_sym_else, + anon_sym_while, + [239851] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7729), 1, sym_comment, - ACTIONS(2213), 1, - anon_sym_LBRACE, - ACTIONS(7173), 1, - anon_sym_DOT, - STATE(2708), 1, - sym_ui_object_initializer, - [138393] = 4, + ACTIONS(11785), 2, + anon_sym_else, + anon_sym_while, + [239865] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11787), 1, + sym_identifier, + STATE(7730), 1, sym_comment, - ACTIONS(7571), 1, - anon_sym_COMMA, - ACTIONS(7639), 1, - anon_sym_RBRACE, - STATE(4102), 1, - aux_sym_object_repeat1, - [138406] = 4, - ACTIONS(3), 1, + STATE(8119), 1, + sym__qml_enum_assignment, + [239881] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7731), 1, sym_comment, - ACTIONS(7571), 1, - anon_sym_COMMA, - ACTIONS(7670), 1, - anon_sym_RBRACE, - STATE(4029), 1, - aux_sym_object_repeat1, - [138419] = 4, + ACTIONS(2420), 2, + anon_sym_else, + anon_sym_while, + [239895] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11789), 1, + sym_identifier, + ACTIONS(11791), 1, + anon_sym_STAR, + STATE(7732), 1, sym_comment, - ACTIONS(7672), 1, - anon_sym_COMMA, - ACTIONS(7674), 1, - anon_sym_GT, - STATE(4170), 1, - aux_sym_type_parameters_repeat1, - [138432] = 4, - ACTIONS(3), 1, + [239911] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7733), 1, sym_comment, - ACTIONS(2322), 1, + ACTIONS(11785), 2, + anon_sym_else, anon_sym_while, - ACTIONS(7676), 1, + [239925] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7734), 1, + sym_comment, + ACTIONS(11793), 2, anon_sym_else, - STATE(2509), 1, - sym_else_clause, - [138445] = 4, - ACTIONS(3), 1, + anon_sym_while, + [239939] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11795), 1, + anon_sym_SEMI, + ACTIONS(11797), 1, + sym__automatic_semicolon, + STATE(7735), 1, sym_comment, - ACTIONS(7678), 1, - anon_sym_COMMA, - ACTIONS(7680), 1, - anon_sym_RBRACE, - STATE(4120), 1, - aux_sym_enum_body_repeat1, - [138458] = 4, - ACTIONS(3), 1, + [239955] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5484), 1, + anon_sym_LPAREN, + STATE(2973), 1, + sym_arguments, + STATE(7736), 1, sym_comment, - ACTIONS(2220), 1, + [239971] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, anon_sym_LBRACE, - ACTIONS(7173), 1, - anon_sym_DOT, - STATE(4329), 1, - sym_ui_object_initializer, - [138471] = 4, - ACTIONS(3), 1, + STATE(3028), 1, + sym_class_body, + STATE(7737), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(7682), 1, - anon_sym_EQ, - STATE(4871), 1, - sym_type_parameters, - [138484] = 3, - ACTIONS(3), 1, + [239987] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11799), 1, + anon_sym_LBRACE, + STATE(1574), 1, + sym_switch_body, + STATE(7738), 1, sym_comment, - ACTIONS(7684), 1, - anon_sym_as, - ACTIONS(7686), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [138495] = 4, - ACTIONS(3), 1, + [240003] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7739), 1, sym_comment, - ACTIONS(1446), 1, - anon_sym_RPAREN, - ACTIONS(7688), 1, - anon_sym_COMMA, - STATE(4093), 1, - aux_sym_formal_parameters_repeat1, - [138508] = 4, - ACTIONS(3), 1, + ACTIONS(11801), 2, + anon_sym_else, + anon_sym_while, + [240017] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7740), 1, + sym_comment, + ACTIONS(9812), 2, + anon_sym_else, + anon_sym_while, + [240031] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7741), 1, sym_comment, - ACTIONS(2314), 1, + ACTIONS(11803), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [240045] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9612), 1, anon_sym_LBRACE, - ACTIONS(7690), 1, - anon_sym_LPAREN, - STATE(698), 1, + STATE(1471), 1, sym_statement_block, - [138521] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7480), 1, - anon_sym_COMMA, - ACTIONS(7482), 1, - anon_sym_from, - ACTIONS(7692), 1, - anon_sym_EQ, - [138534] = 2, - ACTIONS(3), 1, + STATE(7742), 1, sym_comment, - ACTIONS(7629), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + [240061] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11805), 1, anon_sym_SEMI, - [138543] = 3, - ACTIONS(3), 1, + ACTIONS(11807), 1, + sym__automatic_semicolon, + STATE(7743), 1, sym_comment, - ACTIONS(6538), 1, - anon_sym_EQ, - ACTIONS(3504), 2, - anon_sym_in, - anon_sym_of, - [138554] = 2, - ACTIONS(3), 1, + [240077] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7744), 1, + sym_comment, + ACTIONS(9810), 2, + anon_sym_else, + anon_sym_while, + [240091] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7745), 1, sym_comment, - ACTIONS(7694), 3, + ACTIONS(6327), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [138563] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7696), 1, - anon_sym_COMMA, - ACTIONS(7698), 1, - anon_sym_RBRACE, - STATE(4077), 1, - aux_sym_enum_body_repeat1, - [138576] = 4, + [240105] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(7674), 1, - anon_sym_GT, - ACTIONS(7700), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11809), 1, sym_identifier, - STATE(4463), 1, - sym_type_parameter, - [138589] = 4, - ACTIONS(3), 1, + ACTIONS(11811), 1, + anon_sym_STAR, + STATE(7746), 1, sym_comment, - ACTIONS(838), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1605), 1, + [240121] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11813), 1, + anon_sym_SEMI, + ACTIONS(11815), 1, + sym__automatic_semicolon, + STATE(7747), 1, + sym_comment, + [240137] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - STATE(3671), 1, - sym_object_type, - [138602] = 4, - ACTIONS(3), 1, + STATE(3246), 1, + sym_statement_block, + STATE(7748), 1, sym_comment, - ACTIONS(7702), 1, - anon_sym_LPAREN, - ACTIONS(7704), 1, - anon_sym_await, - STATE(39), 1, - sym__for_header, - [138615] = 4, - ACTIONS(3), 1, + [240153] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7749), 1, sym_comment, - ACTIONS(7500), 1, - anon_sym_COMMA, - ACTIONS(7706), 1, - anon_sym_RBRACK, - STATE(4249), 1, - aux_sym_ui_object_array_repeat1, - [138628] = 4, - ACTIONS(3), 1, + ACTIONS(9808), 2, + anon_sym_else, + anon_sym_while, + [240167] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11817), 1, + anon_sym_SEMI, + ACTIONS(11819), 1, + sym__automatic_semicolon, + STATE(7750), 1, sym_comment, - ACTIONS(7708), 1, - anon_sym_COMMA, - ACTIONS(7710), 1, - anon_sym_RBRACE, - STATE(4158), 1, - aux_sym_enum_body_repeat1, - [138641] = 3, - ACTIONS(3), 1, + [240183] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7751), 1, sym_comment, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(7712), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [138652] = 4, - ACTIONS(3), 1, + ACTIONS(9806), 2, + anon_sym_else, + anon_sym_while, + [240197] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3268), 1, + sym_statement_block, + STATE(7752), 1, sym_comment, - ACTIONS(7714), 1, - anon_sym_COMMA, - ACTIONS(7716), 1, - anon_sym_RBRACK, - STATE(4155), 1, - aux_sym_tuple_type_repeat1, - [138665] = 3, - ACTIONS(3), 1, + [240213] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11821), 1, + anon_sym_LBRACE, + STATE(1006), 1, + sym_statement_block, + STATE(7753), 1, sym_comment, - ACTIONS(7232), 1, - anon_sym_EQ, - ACTIONS(7718), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [138676] = 4, - ACTIONS(3), 1, + [240229] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7754), 1, sym_comment, - ACTIONS(7720), 1, - anon_sym_COMMA, - ACTIONS(7723), 1, - anon_sym_RBRACK, - STATE(4124), 1, - aux_sym_tuple_type_repeat1, - [138689] = 4, - ACTIONS(3), 1, + ACTIONS(9804), 2, + anon_sym_else, + anon_sym_while, + [240243] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(132), 1, + sym_parenthesized_expression, + STATE(7755), 1, sym_comment, - ACTIONS(3157), 1, - anon_sym_GT, - ACTIONS(7725), 1, - anon_sym_COMMA, - STATE(3864), 1, - aux_sym_implements_clause_repeat1, - [138702] = 4, - ACTIONS(3), 1, + [240259] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7756), 1, sym_comment, - ACTIONS(4124), 1, - anon_sym_extends, - ACTIONS(7727), 1, - anon_sym_AMP, - ACTIONS(7729), 1, - anon_sym_PIPE, - [138715] = 4, - ACTIONS(3), 1, + ACTIONS(11823), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [240273] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7757), 1, sym_comment, - ACTIONS(1621), 1, - anon_sym_DQUOTE, - ACTIONS(1623), 1, - anon_sym_SQUOTE, - STATE(4424), 1, - sym_string, - [138728] = 4, - ACTIONS(3), 1, + ACTIONS(10263), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [240287] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7758), 1, sym_comment, - ACTIONS(3063), 1, - anon_sym_GT, - ACTIONS(7731), 1, - anon_sym_COMMA, - STATE(3864), 1, - aux_sym_implements_clause_repeat1, - [138741] = 4, - ACTIONS(3), 1, + ACTIONS(11825), 2, + anon_sym_else, + anon_sym_while, + [240301] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7759), 1, + sym_comment, + ACTIONS(11827), 2, + anon_sym_else, + anon_sym_while, + [240315] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7760), 1, + sym_comment, + ACTIONS(9822), 2, + anon_sym_else, + anon_sym_while, + [240329] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7761), 1, sym_comment, - ACTIONS(1782), 1, + ACTIONS(9800), 2, + anon_sym_else, + anon_sym_while, + [240343] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7762), 1, + sym_comment, + ACTIONS(6479), 2, anon_sym_COMMA, - ACTIONS(7733), 1, - anon_sym_RPAREN, - STATE(3991), 1, - aux_sym_array_repeat1, - [138754] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [240357] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7763), 1, sym_comment, - ACTIONS(7735), 1, + ACTIONS(11829), 2, anon_sym_COMMA, - ACTIONS(7737), 1, anon_sym_RPAREN, - STATE(4011), 1, - aux_sym_formal_parameters_repeat1, - [138767] = 4, - ACTIONS(3), 1, + [240371] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7764), 1, sym_comment, - ACTIONS(7739), 1, + ACTIONS(6469), 2, anon_sym_COMMA, - ACTIONS(7742), 1, anon_sym_RBRACE, - STATE(4131), 1, - aux_sym__qml_enum_body_repeat1, - [138780] = 2, - ACTIONS(3), 1, + [240385] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7765), 1, sym_comment, - ACTIONS(6603), 3, + ACTIONS(11831), 2, + anon_sym_else, + anon_sym_while, + [240399] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [138789] = 2, - ACTIONS(3), 1, + STATE(3247), 1, + sym_statement_block, + STATE(7766), 1, sym_comment, - ACTIONS(6582), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [138798] = 4, - ACTIONS(3), 1, + [240415] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7767), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(5011), 1, - anon_sym_RPAREN, - STATE(4160), 1, - aux_sym_array_repeat1, - [138811] = 4, - ACTIONS(3), 1, + ACTIONS(11833), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [240429] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7768), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(5011), 1, - anon_sym_RPAREN, - STATE(3991), 1, - aux_sym_array_repeat1, - [138824] = 4, - ACTIONS(3), 1, + ACTIONS(9798), 2, + anon_sym_else, + anon_sym_while, + [240443] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7769), 1, sym_comment, - ACTIONS(1681), 1, - anon_sym_COMMA, - ACTIONS(7744), 1, - anon_sym_RBRACK, - STATE(4147), 1, - aux_sym_array_pattern_repeat1, - [138837] = 2, - ACTIONS(3), 1, + ACTIONS(9796), 2, + anon_sym_else, + anon_sym_while, + [240457] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7770), 1, sym_comment, - ACTIONS(7746), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [138846] = 4, - ACTIONS(3), 1, + ACTIONS(9794), 2, + anon_sym_else, + anon_sym_while, + [240471] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7771), 1, + sym_comment, + ACTIONS(11835), 2, + anon_sym_else, + anon_sym_while, + [240485] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7772), 1, + sym_comment, + ACTIONS(9792), 2, + anon_sym_else, + anon_sym_while, + [240499] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(94), 1, + sym_parenthesized_expression, + STATE(7773), 1, + sym_comment, + [240515] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7774), 1, sym_comment, - ACTIONS(1782), 1, + ACTIONS(6505), 2, anon_sym_COMMA, - ACTIONS(5015), 1, - anon_sym_RPAREN, - STATE(3991), 1, - aux_sym_array_repeat1, - [138859] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [240529] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7775), 1, sym_comment, - ACTIONS(7571), 1, + ACTIONS(6423), 2, anon_sym_COMMA, - ACTIONS(7748), 1, anon_sym_RBRACE, - STATE(4029), 1, - aux_sym_object_repeat1, - [138872] = 4, - ACTIONS(3), 1, + [240543] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11837), 1, + anon_sym_SEMI, + ACTIONS(11839), 1, + sym__automatic_semicolon, + STATE(7776), 1, sym_comment, - ACTIONS(7750), 1, - sym_identifier, - ACTIONS(7752), 1, - anon_sym_require, - STATE(4187), 1, - sym_nested_identifier, - [138885] = 4, - ACTIONS(3), 1, + [240559] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7777), 1, sym_comment, - ACTIONS(7571), 1, + ACTIONS(6557), 2, anon_sym_COMMA, - ACTIONS(7748), 1, anon_sym_RBRACE, - STATE(4057), 1, - aux_sym_object_repeat1, - [138898] = 4, - ACTIONS(3), 1, + [240573] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7778), 1, sym_comment, - ACTIONS(7754), 1, + ACTIONS(6549), 2, anon_sym_COMMA, - ACTIONS(7756), 1, - anon_sym_RBRACK, - STATE(4223), 1, - aux_sym_tuple_type_repeat1, - [138911] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [240587] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7779), 1, sym_comment, - ACTIONS(7752), 1, - anon_sym_require, - ACTIONS(7758), 1, - sym_identifier, - STATE(4181), 1, - sym_nested_identifier, - [138924] = 3, - ACTIONS(3), 1, + ACTIONS(11041), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [240601] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7780), 1, sym_comment, - ACTIONS(6447), 1, - anon_sym_DOT, - ACTIONS(7760), 2, + ACTIONS(10937), 2, sym__automatic_semicolon, anon_sym_SEMI, - [138935] = 4, - ACTIONS(3), 1, + [240615] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7781), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(5015), 1, - anon_sym_RPAREN, - STATE(4129), 1, - aux_sym_array_repeat1, - [138948] = 4, - ACTIONS(3), 1, + ACTIONS(11841), 2, + anon_sym_else, + anon_sym_while, + [240629] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11843), 1, + anon_sym_LBRACE, + STATE(4235), 1, + sym_switch_body, + STATE(7782), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_EQ, - STATE(4979), 1, - sym_type_parameters, - [138961] = 4, - ACTIONS(3), 1, + [240645] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7783), 1, sym_comment, - ACTIONS(7718), 1, - anon_sym_RBRACK, - ACTIONS(7764), 1, - anon_sym_COMMA, - STATE(4147), 1, - aux_sym_array_pattern_repeat1, - [138974] = 4, - ACTIONS(3), 1, + ACTIONS(9788), 2, + anon_sym_else, + anon_sym_while, + [240659] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7784), 1, sym_comment, - ACTIONS(3163), 1, - anon_sym_GT, - ACTIONS(7767), 1, - anon_sym_COMMA, - STATE(3864), 1, - aux_sym_implements_clause_repeat1, - [138987] = 3, - ACTIONS(3), 1, + ACTIONS(11845), 2, + anon_sym_else, + anon_sym_while, + [240673] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10605), 1, + anon_sym_LBRACE, + STATE(4004), 1, + sym_statement_block, + STATE(7785), 1, sym_comment, - ACTIONS(6026), 1, - anon_sym_is, - ACTIONS(6576), 2, + [240689] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8326), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [138998] = 4, - ACTIONS(3), 1, + STATE(4167), 1, + sym_class_body, + STATE(7786), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(7769), 1, - anon_sym_RPAREN, - STATE(3991), 1, - aux_sym_array_repeat1, - [139011] = 4, - ACTIONS(3), 1, + [240705] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3641), 1, + sym_class_body, + STATE(7787), 1, + sym_comment, + [240721] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11847), 1, + anon_sym_in, + ACTIONS(11849), 1, + anon_sym_COLON, + STATE(7788), 1, sym_comment, - ACTIONS(2213), 1, + [240737] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8252), 1, anon_sym_LBRACE, - ACTIONS(5949), 1, - anon_sym_DOT, - STATE(2492), 1, - sym_ui_object_initializer, - [139024] = 2, - ACTIONS(3), 1, + STATE(4006), 1, + sym_class_body, + STATE(7789), 1, sym_comment, - ACTIONS(7771), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139033] = 2, - ACTIONS(3), 1, + [240753] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11851), 1, + anon_sym_LPAREN, + STATE(7650), 1, + sym_parenthesized_expression, + STATE(7790), 1, + sym_comment, + [240769] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3637), 1, + sym_class_body, + STATE(7791), 1, sym_comment, - ACTIONS(7773), 3, + [240785] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11853), 1, + anon_sym_SEMI, + ACTIONS(11855), 1, sym__automatic_semicolon, - anon_sym_COMMA, + STATE(7792), 1, + sym_comment, + [240801] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11857), 1, anon_sym_SEMI, - [139042] = 4, - ACTIONS(3), 1, + ACTIONS(11859), 1, + sym__automatic_semicolon, + STATE(7793), 1, sym_comment, - ACTIONS(6397), 1, - anon_sym_RBRACE, - ACTIONS(7775), 1, - anon_sym_COMMA, - STATE(4021), 1, - aux_sym_export_clause_repeat1, - [139055] = 4, - ACTIONS(3), 1, + [240817] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3256), 1, + sym_statement_block, + STATE(7794), 1, sym_comment, - ACTIONS(2884), 1, - anon_sym_RBRACK, - ACTIONS(7777), 1, - anon_sym_COMMA, - STATE(4124), 1, - aux_sym_tuple_type_repeat1, - [139068] = 4, - ACTIONS(3), 1, + [240833] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(7795), 1, sym_comment, - ACTIONS(6253), 1, - anon_sym_AMP, - ACTIONS(6257), 1, - anon_sym_extends, - ACTIONS(6985), 1, - anon_sym_PIPE, - [139081] = 4, + STATE(8169), 1, + sym_statement_block, + [240849] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11861), 1, + sym_identifier, + STATE(7054), 1, + sym_nested_identifier, + STATE(7796), 1, sym_comment, - ACTIONS(6663), 1, - anon_sym_COMMA, - ACTIONS(7779), 1, + [240865] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7797), 1, + sym_comment, + ACTIONS(8884), 2, anon_sym_LBRACE, - STATE(3864), 1, - aux_sym_implements_clause_repeat1, - [139094] = 4, - ACTIONS(3), 1, + anon_sym_EQ_GT, + [240879] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3262), 1, + sym_statement_block, + STATE(7798), 1, sym_comment, - ACTIONS(7781), 1, - anon_sym_COMMA, - ACTIONS(7784), 1, - anon_sym_RBRACE, - STATE(4158), 1, - aux_sym_enum_body_repeat1, - [139107] = 4, - ACTIONS(3), 1, + [240895] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6031), 1, + anon_sym_LBRACE, + STATE(3057), 1, + sym_statement_block, + STATE(7799), 1, sym_comment, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - [139120] = 4, - ACTIONS(3), 1, + [240911] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6031), 1, + anon_sym_LBRACE, + STATE(3058), 1, + sym_statement_block, + STATE(7800), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(7786), 1, - anon_sym_RPAREN, - STATE(3991), 1, - aux_sym_array_repeat1, - [139133] = 4, - ACTIONS(3), 1, + [240927] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6333), 1, + sym__from_clause, + STATE(7801), 1, sym_comment, - ACTIONS(7788), 1, - anon_sym_COMMA, - ACTIONS(7790), 1, - anon_sym_RBRACE, - STATE(4096), 1, - aux_sym_enum_body_repeat1, - [139146] = 4, - ACTIONS(3), 1, + [240943] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6031), 1, + anon_sym_LBRACE, + STATE(3059), 1, + sym_statement_block, + STATE(7802), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(7792), 1, - anon_sym_RPAREN, - STATE(3991), 1, - aux_sym_array_repeat1, - [139159] = 4, + [240959] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(7588), 1, + sym__from_clause, + STATE(7803), 1, + sym_comment, + [240975] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10599), 1, + sym_identifier, + ACTIONS(10603), 1, + sym_private_property_identifier, + STATE(7804), 1, + sym_comment, + [240991] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10605), 1, + anon_sym_LBRACE, + STATE(4010), 1, + sym_statement_block, + STATE(7805), 1, + sym_comment, + [241007] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7806), 1, sym_comment, - ACTIONS(6490), 1, + ACTIONS(9802), 2, + anon_sym_else, + anon_sym_while, + [241021] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8326), 1, anon_sym_LBRACE, - ACTIONS(6496), 1, - anon_sym_LBRACE_PIPE, - STATE(2596), 1, - sym_object_type, - [139172] = 2, - ACTIONS(3), 1, + STATE(4120), 1, + sym_class_body, + STATE(7807), 1, sym_comment, - ACTIONS(7794), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139181] = 2, - ACTIONS(3), 1, + [241037] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8298), 1, + anon_sym_LBRACE, + STATE(1859), 1, + sym_class_body, + STATE(7808), 1, sym_comment, - ACTIONS(7311), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139190] = 4, - ACTIONS(3), 1, + [241053] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7809), 1, sym_comment, - ACTIONS(7209), 1, - anon_sym_COMMA, - ACTIONS(7796), 1, - anon_sym_RBRACE, - STATE(4131), 1, - aux_sym__qml_enum_body_repeat1, - [139203] = 4, - ACTIONS(3), 1, + ACTIONS(9772), 2, + anon_sym_else, + anon_sym_while, + [241067] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3293), 1, + sym_statement_block, + STATE(7810), 1, sym_comment, - ACTIONS(7209), 1, - anon_sym_COMMA, - ACTIONS(7798), 1, - anon_sym_RBRACE, - STATE(4131), 1, - aux_sym__qml_enum_body_repeat1, - [139216] = 2, - ACTIONS(3), 1, + [241083] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8326), 1, + anon_sym_LBRACE, + STATE(4108), 1, + sym_class_body, + STATE(7811), 1, sym_comment, - ACTIONS(7800), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139225] = 4, - ACTIONS(3), 1, + [241099] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9556), 1, + anon_sym_LBRACE, + STATE(1842), 1, + sym_statement_block, + STATE(7812), 1, sym_comment, - ACTIONS(2792), 1, - anon_sym_RBRACK, - ACTIONS(7802), 1, - anon_sym_COMMA, - STATE(4124), 1, - aux_sym_tuple_type_repeat1, - [139238] = 4, - ACTIONS(3), 1, + [241115] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(121), 1, + sym_parenthesized_expression, + STATE(7813), 1, sym_comment, - ACTIONS(7804), 1, - anon_sym_COMMA, - ACTIONS(7807), 1, - anon_sym_GT, - STATE(4170), 1, - aux_sym_type_parameters_repeat1, - [139251] = 2, - ACTIONS(3), 1, + [241131] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11863), 1, + anon_sym_SEMI, + ACTIONS(11865), 1, + sym__automatic_semicolon, + STATE(7814), 1, + sym_comment, + [241147] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7815), 1, sym_comment, - ACTIONS(7809), 3, + ACTIONS(6305), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [139260] = 4, - ACTIONS(3), 1, + [241161] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8252), 1, + anon_sym_LBRACE, + STATE(3983), 1, + sym_class_body, + STATE(7816), 1, sym_comment, - ACTIONS(3155), 1, - anon_sym_GT, - ACTIONS(7811), 1, - anon_sym_COMMA, - STATE(3864), 1, - aux_sym_implements_clause_repeat1, - [139273] = 4, - ACTIONS(3), 1, + [241177] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8252), 1, + anon_sym_LBRACE, + STATE(4027), 1, + sym_class_body, + STATE(7817), 1, sym_comment, - ACTIONS(7813), 1, - anon_sym_COMMA, - ACTIONS(7815), 1, - anon_sym_RPAREN, - STATE(4239), 1, - aux_sym_formal_parameters_repeat1, - [139286] = 4, + [241193] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11867), 1, + sym_identifier, + ACTIONS(11869), 1, + sym_private_property_identifier, + STATE(7818), 1, sym_comment, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6679), 1, - anon_sym_PIPE, - ACTIONS(6681), 1, - anon_sym_extends, - [139299] = 3, - ACTIONS(3), 1, + [241209] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3214), 1, + sym_statement_block, + STATE(7819), 1, sym_comment, - ACTIONS(7817), 1, - sym_identifier, - ACTIONS(7819), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [139310] = 4, - ACTIONS(3), 1, + [241225] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3266), 1, + sym_statement_block, + STATE(7820), 1, sym_comment, - ACTIONS(7700), 1, - sym_identifier, - ACTIONS(7821), 1, - anon_sym_GT, - STATE(4463), 1, - sym_type_parameter, - [139323] = 3, + [241241] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(7823), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11871), 1, sym_identifier, - ACTIONS(7825), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [139334] = 4, + ACTIONS(11873), 1, + sym_private_property_identifier, + STATE(7821), 1, + sym_comment, + [241257] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11875), 1, + sym_identifier, + ACTIONS(11877), 1, + sym_private_property_identifier, + STATE(7822), 1, + sym_comment, + [241273] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7823), 1, sym_comment, - ACTIONS(1681), 1, + ACTIONS(11879), 2, anon_sym_COMMA, - ACTIONS(7443), 1, - anon_sym_RBRACK, - STATE(4136), 1, - aux_sym_array_pattern_repeat1, - [139347] = 3, + anon_sym_RBRACE, + [241287] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11881), 1, + sym_identifier, + STATE(7170), 1, + sym_ui_simple_nested_identifier, + STATE(7824), 1, sym_comment, - ACTIONS(6995), 1, + [241303] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - ACTIONS(6997), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [139358] = 4, - ACTIONS(3), 1, + STATE(3270), 1, + sym_statement_block, + STATE(7825), 1, sym_comment, - ACTIONS(7700), 1, - sym_identifier, - ACTIONS(7827), 1, - anon_sym_GT, - STATE(4463), 1, - sym_type_parameter, - [139371] = 3, - ACTIONS(3), 1, + [241319] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11883), 1, + anon_sym_LBRACE, + STATE(7826), 1, sym_comment, - ACTIONS(6447), 1, - anon_sym_DOT, - ACTIONS(7829), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [139382] = 4, - ACTIONS(3), 1, + STATE(8144), 1, + sym_object, + [241335] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(122), 1, + sym_parenthesized_expression, + STATE(7827), 1, sym_comment, - ACTIONS(7831), 1, + [241351] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11851), 1, anon_sym_LPAREN, - ACTIONS(7833), 1, - anon_sym_await, - STATE(57), 1, - sym__for_header, - [139395] = 4, - ACTIONS(3), 1, + STATE(7394), 1, + sym_parenthesized_expression, + STATE(7828), 1, sym_comment, - ACTIONS(7827), 1, - anon_sym_GT, - ACTIONS(7835), 1, - anon_sym_COMMA, - STATE(4170), 1, - aux_sym_type_parameters_repeat1, - [139408] = 4, - ACTIONS(3), 1, + [241367] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3263), 1, + sym_statement_block, + STATE(7829), 1, sym_comment, - ACTIONS(7837), 1, - anon_sym_DASH, - ACTIONS(7839), 1, - sym_number, - STATE(4429), 1, - sym__qml_enum_negative_number, - [139421] = 2, - ACTIONS(3), 1, + [241383] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7830), 1, sym_comment, - ACTIONS(7841), 3, + ACTIONS(11885), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [139430] = 4, - ACTIONS(3), 1, + [241397] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3053), 1, + sym_class_body, + STATE(7831), 1, sym_comment, - ACTIONS(120), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1398), 1, + [241413] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11887), 1, anon_sym_LBRACE, - STATE(796), 1, - sym_object_type, - [139443] = 3, - ACTIONS(3), 1, + STATE(1796), 1, + sym_enum_body, + STATE(7832), 1, sym_comment, - ACTIONS(6447), 1, - anon_sym_DOT, - ACTIONS(7843), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [139454] = 2, + [241429] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11889), 1, + sym_identifier, + STATE(7154), 1, + sym_nested_identifier, + STATE(7833), 1, sym_comment, - ACTIONS(7845), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139463] = 4, - ACTIONS(3), 1, + [241445] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8216), 1, + anon_sym_LBRACE, + STATE(503), 1, + sym_class_body, + STATE(7834), 1, sym_comment, - ACTIONS(6379), 1, - anon_sym_RBRACE, - ACTIONS(7847), 1, - anon_sym_COMMA, - STATE(4068), 1, - aux_sym_named_imports_repeat1, - [139476] = 3, + [241461] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(7849), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11891), 1, sym_identifier, - ACTIONS(7851), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [139487] = 4, - ACTIONS(3), 1, + ACTIONS(11893), 1, + sym_private_property_identifier, + STATE(7835), 1, sym_comment, - ACTIONS(7853), 1, - anon_sym_COMMA, - ACTIONS(7855), 1, - anon_sym_RBRACE, - STATE(4158), 1, - aux_sym_enum_body_repeat1, - [139500] = 3, - ACTIONS(3), 1, + [241477] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7836), 1, sym_comment, - ACTIONS(7857), 1, - sym_identifier, - ACTIONS(7859), 2, + ACTIONS(11895), 2, + anon_sym_else, + anon_sym_while, + [241491] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8298), 1, + anon_sym_LBRACE, + STATE(1849), 1, + sym_class_body, + STATE(7837), 1, + sym_comment, + [241507] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7838), 1, + sym_comment, + ACTIONS(11897), 2, + anon_sym_else, + anon_sym_while, + [241521] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7839), 1, + sym_comment, + ACTIONS(11899), 2, sym__automatic_semicolon, anon_sym_SEMI, - [139511] = 4, - ACTIONS(3), 1, + [241535] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8326), 1, + anon_sym_LBRACE, + STATE(4063), 1, + sym_class_body, + STATE(7840), 1, sym_comment, - ACTIONS(838), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1605), 1, + [241551] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9556), 1, anon_sym_LBRACE, - STATE(3761), 1, - sym_object_type, - [139524] = 4, - ACTIONS(3), 1, + STATE(1854), 1, + sym_statement_block, + STATE(7841), 1, sym_comment, - ACTIONS(4002), 1, - anon_sym_COMMA, - ACTIONS(7861), 1, - anon_sym_RBRACE, - STATE(4098), 1, - aux_sym_object_pattern_repeat1, - [139537] = 4, - ACTIONS(3), 1, + [241567] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8298), 1, + anon_sym_LBRACE, + STATE(1856), 1, + sym_class_body, + STATE(7842), 1, sym_comment, - ACTIONS(7863), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_await, - STATE(42), 1, - sym__for_header, - [139550] = 4, - ACTIONS(3), 1, + [241583] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7843), 1, sym_comment, - ACTIONS(2057), 1, - anon_sym_LBRACE, - ACTIONS(7867), 1, - sym_identifier, - STATE(3881), 1, - sym_export_clause, - [139563] = 4, - ACTIONS(3), 1, + ACTIONS(11901), 2, + anon_sym_else, + anon_sym_while, + [241597] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_parenthesized_expression, + STATE(7844), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LT, - ACTIONS(7869), 1, - anon_sym_EQ, - STATE(4717), 1, - sym_type_parameters, - [139576] = 4, - ACTIONS(3), 1, + [241613] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7845), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(5023), 1, - anon_sym_RPAREN, - STATE(4203), 1, - aux_sym_array_repeat1, - [139589] = 4, - ACTIONS(3), 1, + ACTIONS(11903), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [241627] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7846), 1, sym_comment, - ACTIONS(7222), 1, + ACTIONS(11905), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [241641] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, anon_sym_from, - ACTIONS(7575), 1, - anon_sym_as, - STATE(4626), 1, + STATE(6376), 1, sym__from_clause, - [139602] = 4, - ACTIONS(3), 1, + STATE(7847), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(5023), 1, - anon_sym_RPAREN, - STATE(3991), 1, - aux_sym_array_repeat1, - [139615] = 3, - ACTIONS(3), 1, + [241657] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3068), 1, + sym_class_body, + STATE(7848), 1, sym_comment, - ACTIONS(7232), 1, - anon_sym_EQ, - ACTIONS(7871), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [139626] = 2, - ACTIONS(3), 1, + [241673] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7849), 1, sym_comment, - ACTIONS(7873), 3, + ACTIONS(11907), 2, sym__automatic_semicolon, - anon_sym_as, anon_sym_SEMI, - [139635] = 4, - ACTIONS(3), 1, + [241687] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3271), 1, + sym_statement_block, + STATE(7850), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(7875), 1, - anon_sym_RPAREN, - STATE(3991), 1, - aux_sym_array_repeat1, - [139648] = 4, - ACTIONS(3), 1, + [241703] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8252), 1, + anon_sym_LBRACE, + STATE(3992), 1, + sym_class_body, + STATE(7851), 1, sym_comment, - ACTIONS(4002), 1, - anon_sym_COMMA, - ACTIONS(7861), 1, - anon_sym_RBRACE, - STATE(4095), 1, - aux_sym_object_pattern_repeat1, - [139661] = 3, - ACTIONS(3), 1, + [241719] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7852), 1, sym_comment, - ACTIONS(7877), 1, + ACTIONS(11909), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [241733] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11911), 1, + anon_sym_SEMI, + ACTIONS(11913), 1, + sym__automatic_semicolon, + STATE(7853), 1, + sym_comment, + [241749] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, anon_sym_LBRACE, - ACTIONS(6999), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [139672] = 4, - ACTIONS(3), 1, + STATE(3072), 1, + sym_class_body, + STATE(7854), 1, sym_comment, - ACTIONS(7879), 1, - sym_identifier, - STATE(1121), 1, - sym_decorator_member_expression, - STATE(1156), 1, - sym_decorator_call_expression, - [139685] = 4, + [241765] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11915), 1, + sym_identifier, + ACTIONS(11917), 1, + sym_private_property_identifier, + STATE(7855), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_COLON, - ACTIONS(7881), 1, - anon_sym_RPAREN, - STATE(5008), 1, - sym_type_annotation, - [139698] = 4, - ACTIONS(3), 1, + [241781] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7856), 1, sym_comment, - ACTIONS(2213), 1, + ACTIONS(10688), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [241795] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10758), 1, anon_sym_LBRACE, - ACTIONS(5949), 1, - anon_sym_DOT, - STATE(2746), 1, - sym_ui_object_initializer, - [139711] = 4, - ACTIONS(3), 1, + STATE(4114), 1, + sym_statement_block, + STATE(7857), 1, sym_comment, - ACTIONS(2928), 1, - anon_sym_RBRACK, - ACTIONS(7883), 1, - anon_sym_COMMA, - STATE(4124), 1, - aux_sym_tuple_type_repeat1, - [139724] = 4, - ACTIONS(3), 1, + [241811] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11919), 1, + anon_sym_SEMI, + ACTIONS(11921), 1, + sym__automatic_semicolon, + STATE(7858), 1, + sym_comment, + [241827] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6369), 1, + sym__from_clause, + STATE(7859), 1, sym_comment, - ACTIONS(2213), 1, + [241843] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8216), 1, anon_sym_LBRACE, - ACTIONS(7173), 1, - anon_sym_DOT, - STATE(2720), 1, - sym_ui_object_initializer, - [139737] = 4, + STATE(525), 1, + sym_class_body, + STATE(7860), 1, + sym_comment, + [241859] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7861), 1, + sym_comment, + ACTIONS(9790), 2, + anon_sym_else, + anon_sym_while, + [241873] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11923), 1, + sym_identifier, + ACTIONS(11925), 1, + sym_private_property_identifier, + STATE(7862), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(5025), 1, - anon_sym_RPAREN, - STATE(3991), 1, - aux_sym_array_repeat1, - [139750] = 4, + [241889] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11927), 1, + sym_identifier, + STATE(6621), 1, + sym__qml_enum_assignment, + STATE(7863), 1, sym_comment, - ACTIONS(7700), 1, + [241905] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11929), 1, sym_identifier, - ACTIONS(7885), 1, - anon_sym_GT, - STATE(4463), 1, - sym_type_parameter, - [139763] = 2, + ACTIONS(11931), 1, + sym_private_property_identifier, + STATE(7864), 1, + sym_comment, + [241921] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(7865), 1, + sym_comment, + STATE(8545), 1, + sym_formal_parameters, + [241937] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11933), 1, + sym_identifier, + ACTIONS(11935), 1, + sym_private_property_identifier, + STATE(7866), 1, sym_comment, - ACTIONS(7887), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [139772] = 3, + [241953] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11937), 1, + sym_identifier, + ACTIONS(11939), 1, + sym_private_property_identifier, + STATE(7867), 1, sym_comment, - ACTIONS(7889), 1, + [241969] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, anon_sym_LBRACE, - ACTIONS(7073), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [139783] = 2, - ACTIONS(3), 1, + STATE(3894), 1, + sym_class_body, + STATE(7868), 1, sym_comment, - ACTIONS(7891), 3, + [241985] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7869), 1, + sym_comment, + ACTIONS(6351), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [139792] = 2, - ACTIONS(3), 1, + [241999] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7870), 1, sym_comment, - ACTIONS(7893), 3, + ACTIONS(11941), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [139801] = 4, - ACTIONS(3), 1, + [242013] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7871), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(5025), 1, - anon_sym_RPAREN, - STATE(4162), 1, - aux_sym_array_repeat1, - [139814] = 2, - ACTIONS(3), 1, + ACTIONS(11943), 2, + anon_sym_else, + anon_sym_while, + [242027] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8296), 1, + anon_sym_LBRACE, + STATE(1657), 1, + sym_class_body, + STATE(7872), 1, sym_comment, - ACTIONS(7895), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139823] = 2, - ACTIONS(3), 1, + [242043] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7873), 1, sym_comment, - ACTIONS(7897), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [139832] = 2, - ACTIONS(3), 1, + ACTIONS(11945), 2, + anon_sym_else, + anon_sym_while, + [242057] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7874), 1, + sym_comment, + ACTIONS(11947), 2, + anon_sym_else, + anon_sym_while, + [242071] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7875), 1, sym_comment, - ACTIONS(7899), 3, + ACTIONS(11949), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [139841] = 2, - ACTIONS(3), 1, + [242085] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7876), 1, sym_comment, - ACTIONS(7893), 3, + ACTIONS(11951), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [139850] = 2, - ACTIONS(3), 1, + [242099] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8298), 1, + anon_sym_LBRACE, + STATE(1882), 1, + sym_class_body, + STATE(7877), 1, + sym_comment, + [242115] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + STATE(6987), 1, + sym_class_body, + STATE(7878), 1, + sym_comment, + [242131] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11953), 1, + anon_sym_LPAREN, + STATE(4036), 1, + sym_parenthesized_expression, + STATE(7879), 1, + sym_comment, + [242147] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7880), 1, + sym_comment, + ACTIONS(11955), 2, + anon_sym_else, + anon_sym_while, + [242161] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11957), 1, + anon_sym_LBRACE, + STATE(4068), 1, + sym_enum_body, + STATE(7881), 1, + sym_comment, + [242177] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7882), 1, sym_comment, - ACTIONS(7901), 3, + ACTIONS(10277), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [139859] = 4, - ACTIONS(3), 1, + [242191] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9730), 1, + anon_sym_LBRACE, + STATE(4028), 1, + sym_statement_block, + STATE(7883), 1, sym_comment, - ACTIONS(2886), 1, - anon_sym_RBRACK, - ACTIONS(7903), 1, - anon_sym_COMMA, - STATE(4124), 1, - aux_sym_tuple_type_repeat1, - [139872] = 2, - ACTIONS(3), 1, + [242207] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7884), 1, sym_comment, - ACTIONS(7891), 3, + ACTIONS(11959), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [139881] = 4, - ACTIONS(3), 1, + [242221] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11961), 1, + anon_sym_SEMI, + ACTIONS(11963), 1, + sym__automatic_semicolon, + STATE(7885), 1, sym_comment, - ACTIONS(7571), 1, - anon_sym_COMMA, - ACTIONS(7905), 1, - anon_sym_RBRACE, - STATE(4029), 1, - aux_sym_object_repeat1, - [139894] = 4, - ACTIONS(3), 1, + [242237] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11965), 1, + anon_sym_SEMI, + ACTIONS(11967), 1, + sym__automatic_semicolon, + STATE(7886), 1, sym_comment, - ACTIONS(6490), 1, + [242253] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8296), 1, anon_sym_LBRACE, - ACTIONS(6496), 1, - anon_sym_LBRACE_PIPE, - STATE(2612), 1, - sym_object_type, - [139907] = 4, - ACTIONS(3), 1, + STATE(1663), 1, + sym_class_body, + STATE(7887), 1, sym_comment, - ACTIONS(1681), 1, - anon_sym_COMMA, - ACTIONS(7234), 1, - anon_sym_RBRACK, - STATE(4147), 1, - aux_sym_array_pattern_repeat1, - [139920] = 4, - ACTIONS(3), 1, + [242269] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11969), 1, + anon_sym_SEMI, + ACTIONS(11971), 1, + sym__automatic_semicolon, + STATE(7888), 1, sym_comment, - ACTIONS(6353), 1, - anon_sym_implements, - ACTIONS(7907), 1, + [242285] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9540), 1, anon_sym_LBRACE, - STATE(4729), 1, - sym_implements_clause, - [139933] = 2, - ACTIONS(3), 1, + STATE(4024), 1, + sym_statement_block, + STATE(7889), 1, sym_comment, - ACTIONS(7909), 3, - sym__automatic_semicolon, + [242301] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7890), 1, + sym_comment, + ACTIONS(9850), 2, + anon_sym_else, + anon_sym_while, + [242315] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(7466), 1, + sym__from_clause, + STATE(7891), 1, + sym_comment, + [242331] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(7747), 1, + sym__from_clause, + STATE(7892), 1, + sym_comment, + [242347] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7893), 1, + sym_comment, + ACTIONS(9856), 2, + anon_sym_else, + anon_sym_while, + [242361] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7894), 1, + sym_comment, + ACTIONS(11973), 2, anon_sym_COMMA, - anon_sym_SEMI, - [139942] = 2, - ACTIONS(3), 1, + anon_sym_RBRACE, + [242375] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7895), 1, sym_comment, - ACTIONS(7901), 3, + ACTIONS(6270), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [139951] = 2, - ACTIONS(3), 1, + [242389] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6522), 1, + sym__from_clause, + STATE(7896), 1, + sym_comment, + [242405] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3231), 1, + sym_statement_block, + STATE(7897), 1, + sym_comment, + [242421] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11619), 1, + anon_sym_LPAREN, + STATE(105), 1, + sym__for_header, + STATE(7898), 1, + sym_comment, + [242437] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7899), 1, sym_comment, - ACTIONS(7911), 3, + ACTIONS(11975), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [139960] = 4, - ACTIONS(3), 1, + [242451] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7900), 1, sym_comment, - ACTIONS(3161), 1, - anon_sym_GT, - ACTIONS(7913), 1, - anon_sym_COMMA, - STATE(3864), 1, - aux_sym_implements_clause_repeat1, - [139973] = 4, - ACTIONS(3), 1, + ACTIONS(11977), 2, + anon_sym_else, + anon_sym_while, + [242465] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7901), 1, sym_comment, - ACTIONS(7915), 1, - sym_identifier, - STATE(4439), 1, - sym_nested_type_identifier, - STATE(4880), 1, - sym_nested_identifier, - [139986] = 4, - ACTIONS(3), 1, + ACTIONS(11979), 2, + anon_sym_else, + anon_sym_while, + [242479] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7902), 1, sym_comment, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(7917), 1, - sym_identifier, - ACTIONS(7919), 1, - anon_sym_COLON, - [139999] = 2, - ACTIONS(3), 1, + ACTIONS(9848), 2, + anon_sym_else, + anon_sym_while, + [242493] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7903), 1, sym_comment, - ACTIONS(7897), 3, + ACTIONS(11981), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140008] = 4, - ACTIONS(3), 1, + [242507] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11983), 1, + anon_sym_SEMI, + ACTIONS(11985), 1, + sym__automatic_semicolon, + STATE(7904), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(7921), 1, - anon_sym_RPAREN, - STATE(3991), 1, - aux_sym_array_repeat1, - [140021] = 4, - ACTIONS(3), 1, + [242523] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3646), 1, + sym_class_body, + STATE(7905), 1, sym_comment, - ACTIONS(7923), 1, - anon_sym_COMMA, - ACTIONS(7925), 1, - anon_sym_RBRACK, - STATE(4209), 1, - aux_sym_tuple_type_repeat1, - [140034] = 4, - ACTIONS(3), 1, + [242539] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3229), 1, + sym_statement_block, + STATE(7906), 1, sym_comment, - ACTIONS(5085), 1, - anon_sym_extends, - ACTIONS(7927), 1, - anon_sym_AMP, - ACTIONS(7929), 1, - anon_sym_PIPE, - [140047] = 4, - ACTIONS(3), 1, + [242555] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, + anon_sym_LBRACE, + STATE(3627), 1, + sym_statement_block, + STATE(7907), 1, sym_comment, - ACTIONS(1440), 1, - anon_sym_RPAREN, - ACTIONS(7931), 1, - anon_sym_COMMA, - STATE(4093), 1, - aux_sym_formal_parameters_repeat1, - [140060] = 4, - ACTIONS(3), 1, + [242571] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7908), 1, sym_comment, - ACTIONS(2918), 1, - anon_sym_RBRACK, - ACTIONS(7933), 1, + ACTIONS(11987), 2, anon_sym_COMMA, - STATE(4124), 1, - aux_sym_tuple_type_repeat1, - [140073] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [242585] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(7402), 1, + sym_statement_block, + STATE(7909), 1, sym_comment, - ACTIONS(7561), 1, - anon_sym_COMMA, - ACTIONS(7935), 1, - anon_sym_RPAREN, - STATE(4052), 1, - aux_sym_ui_signal_parameters_repeat1, - [140086] = 3, - ACTIONS(3), 1, + [242601] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11989), 1, + anon_sym_LBRACE, + STATE(4116), 1, + sym_statement_block, + STATE(7910), 1, sym_comment, - ACTIONS(7939), 1, - anon_sym_COLON, - ACTIONS(7937), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [140097] = 4, - ACTIONS(3), 1, + [242617] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8256), 1, + anon_sym_LBRACE, + STATE(7709), 1, + sym_class_body, + STATE(7911), 1, sym_comment, - ACTIONS(2213), 1, + [242633] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11957), 1, anon_sym_LBRACE, - ACTIONS(5949), 1, - anon_sym_DOT, - STATE(2717), 1, - sym_ui_object_initializer, - [140110] = 2, - ACTIONS(3), 1, + STATE(4144), 1, + sym_enum_body, + STATE(7912), 1, + sym_comment, + [242649] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11989), 1, + anon_sym_LBRACE, + STATE(4149), 1, + sym_statement_block, + STATE(7913), 1, + sym_comment, + [242665] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7914), 1, sym_comment, - ACTIONS(7897), 3, + ACTIONS(10690), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140119] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4002), 1, - anon_sym_COMMA, - ACTIONS(7941), 1, - anon_sym_RBRACE, - STATE(4044), 1, - aux_sym_object_pattern_repeat1, - [140132] = 4, - ACTIONS(3), 1, + [242679] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7915), 1, sym_comment, - ACTIONS(1782), 1, - anon_sym_COMMA, - ACTIONS(7943), 1, - anon_sym_RBRACK, - STATE(3991), 1, - aux_sym_array_repeat1, - [140145] = 4, - ACTIONS(3), 1, + ACTIONS(11213), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [242693] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7916), 1, sym_comment, - ACTIONS(7209), 1, - anon_sym_COMMA, - ACTIONS(7945), 1, - anon_sym_RBRACE, - STATE(4166), 1, - aux_sym__qml_enum_body_repeat1, - [140158] = 3, - ACTIONS(3), 1, + ACTIONS(6255), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [242707] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7917), 1, sym_comment, - ACTIONS(7949), 1, - anon_sym_COLON, - ACTIONS(7947), 2, + ACTIONS(6253), 2, sym__automatic_semicolon, anon_sym_SEMI, - [140169] = 4, - ACTIONS(3), 1, + [242721] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7918), 1, sym_comment, - ACTIONS(7951), 1, + ACTIONS(6479), 2, anon_sym_COMMA, - ACTIONS(7954), 1, - anon_sym_RBRACK, - STATE(4249), 1, - aux_sym_ui_object_array_repeat1, - [140182] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7956), 1, - sym_identifier, - ACTIONS(7958), 1, - anon_sym_LBRACK, - ACTIONS(7960), 1, - sym_private_property_identifier, - [140195] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [242735] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7919), 1, sym_comment, - ACTIONS(7964), 1, - anon_sym_COLON, - ACTIONS(7962), 2, + ACTIONS(11991), 2, sym__automatic_semicolon, anon_sym_SEMI, - [140206] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7966), 1, - sym_identifier, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(7970), 1, - sym_private_property_identifier, - [140219] = 4, - ACTIONS(3), 1, + [242749] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(5991), 1, + sym_formal_parameters, + STATE(7920), 1, sym_comment, - ACTIONS(7972), 1, - sym_identifier, - ACTIONS(7974), 1, - anon_sym_LBRACK, - ACTIONS(7976), 1, - sym_private_property_identifier, - [140232] = 4, - ACTIONS(3), 1, + [242765] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(7921), 1, sym_comment, - ACTIONS(7978), 1, - sym_identifier, - ACTIONS(7980), 1, - anon_sym_LBRACK, - ACTIONS(7982), 1, - sym_private_property_identifier, - [140245] = 2, - ACTIONS(3), 1, + STATE(8454), 1, + sym_formal_parameters, + [242781] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7922), 1, sym_comment, - ACTIONS(7891), 3, + ACTIONS(11993), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [140254] = 4, - ACTIONS(3), 1, + [242795] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7833), 1, + anon_sym_COLON, + STATE(6739), 1, + sym_type_annotation, + STATE(7923), 1, sym_comment, - ACTIONS(7984), 1, - sym_identifier, - ACTIONS(7986), 1, - anon_sym_LBRACK, - ACTIONS(7988), 1, - sym_private_property_identifier, - [140267] = 4, - ACTIONS(3), 1, + [242811] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(7392), 1, + sym_statement_block, + STATE(7924), 1, sym_comment, - ACTIONS(7990), 1, - sym_identifier, - ACTIONS(7992), 1, - anon_sym_LBRACK, - ACTIONS(7994), 1, - sym_private_property_identifier, - [140280] = 4, - ACTIONS(3), 1, + [242827] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9730), 1, + anon_sym_LBRACE, + STATE(4182), 1, + sym_statement_block, + STATE(7925), 1, sym_comment, - ACTIONS(2057), 1, + [242843] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9730), 1, anon_sym_LBRACE, - ACTIONS(7996), 1, - sym_identifier, - STATE(3936), 1, - sym_export_clause, - [140293] = 4, - ACTIONS(3), 1, + STATE(4203), 1, + sym_statement_block, + STATE(7926), 1, sym_comment, - ACTIONS(7998), 1, - sym_identifier, - ACTIONS(8000), 1, - anon_sym_LBRACK, - ACTIONS(8002), 1, - sym_private_property_identifier, - [140306] = 4, - ACTIONS(3), 1, + [242859] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(7927), 1, sym_comment, - ACTIONS(8004), 1, - sym_identifier, - ACTIONS(8006), 1, - anon_sym_LBRACK, - ACTIONS(8008), 1, - sym_private_property_identifier, - [140319] = 4, - ACTIONS(3), 1, + STATE(8019), 1, + sym_statement_block, + [242875] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7928), 1, sym_comment, - ACTIONS(8010), 1, - sym_identifier, - STATE(4880), 1, - sym_nested_identifier, - STATE(4926), 1, - sym_nested_type_identifier, - [140332] = 4, - ACTIONS(3), 1, + ACTIONS(8094), 2, + anon_sym_in, + anon_sym_of, + [242889] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7929), 1, sym_comment, - ACTIONS(8012), 1, - sym_identifier, - ACTIONS(8014), 1, - anon_sym_LBRACK, - ACTIONS(8016), 1, - sym_private_property_identifier, - [140345] = 4, - ACTIONS(3), 1, + ACTIONS(6606), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [242903] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3595), 1, + sym_class_body, + STATE(7930), 1, sym_comment, - ACTIONS(7222), 1, + [242919] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11851), 1, + anon_sym_LPAREN, + STATE(7400), 1, + sym_parenthesized_expression, + STATE(7931), 1, + sym_comment, + [242935] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, anon_sym_from, - ACTIONS(7575), 1, - anon_sym_as, - STATE(4593), 1, + STATE(6565), 1, sym__from_clause, - [140358] = 4, - ACTIONS(3), 1, + STATE(7932), 1, + sym_comment, + [242951] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6031), 1, + anon_sym_LBRACE, + STATE(3087), 1, + sym_statement_block, + STATE(7933), 1, + sym_comment, + [242967] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7934), 1, sym_comment, - ACTIONS(8018), 1, + ACTIONS(10437), 2, anon_sym_COMMA, - ACTIONS(8020), 1, - anon_sym_RBRACK, - STATE(4169), 1, - aux_sym_tuple_type_repeat1, - [140371] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [242981] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9540), 1, + anon_sym_LBRACE, + STATE(3985), 1, + sym_statement_block, + STATE(7935), 1, sym_comment, - ACTIONS(8022), 1, - sym_identifier, - ACTIONS(8024), 1, - anon_sym_LBRACK, - ACTIONS(8026), 1, - sym_private_property_identifier, - [140384] = 3, + [242997] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11995), 1, + sym_identifier, + STATE(7091), 1, + sym_nested_identifier, + STATE(7936), 1, sym_comment, - ACTIONS(8028), 1, - anon_sym_as, - ACTIONS(8030), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [140395] = 3, - ACTIONS(3), 1, + [243013] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7937), 1, sym_comment, - ACTIONS(8034), 1, - anon_sym_COLON, - ACTIONS(8032), 2, + ACTIONS(2293), 2, sym__automatic_semicolon, anon_sym_SEMI, - [140406] = 4, - ACTIONS(3), 1, + [243027] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7938), 1, sym_comment, - ACTIONS(8036), 1, + ACTIONS(10541), 2, anon_sym_COMMA, - ACTIONS(8038), 1, - anon_sym_GT, - STATE(4103), 1, - aux_sym_type_parameters_repeat1, - [140419] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [243041] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6304), 1, + sym__from_clause, + STATE(7939), 1, sym_comment, - ACTIONS(8040), 1, - anon_sym_COMMA, - ACTIONS(8042), 1, - anon_sym_RBRACK, - STATE(4240), 1, - aux_sym_tuple_type_repeat1, - [140432] = 4, - ACTIONS(3), 1, + [243057] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(7940), 1, sym_comment, - ACTIONS(8044), 1, + STATE(8025), 1, + sym_statement_block, + [243073] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2396), 1, + anon_sym_DOT, + ACTIONS(5801), 1, sym_identifier, - ACTIONS(8046), 1, - anon_sym_LBRACK, - ACTIONS(8048), 1, - sym_private_property_identifier, - [140445] = 4, + STATE(7941), 1, + sym_comment, + [243089] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2384), 1, + anon_sym_DOT, + ACTIONS(5801), 1, + sym_identifier, + STATE(7942), 1, + sym_comment, + [243105] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7943), 1, sym_comment, - ACTIONS(4002), 1, + ACTIONS(10512), 2, anon_sym_COMMA, - ACTIONS(7941), 1, anon_sym_RBRACE, - STATE(4098), 1, - aux_sym_object_pattern_repeat1, - [140458] = 4, - ACTIONS(3), 1, + [243119] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6312), 1, + sym__from_clause, + STATE(7944), 1, sym_comment, - ACTIONS(6355), 1, - anon_sym_AMP, - ACTIONS(6369), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_extends, - [140471] = 4, - ACTIONS(3), 1, + [243135] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(6055), 1, + sym_formal_parameters, + STATE(7945), 1, sym_comment, - ACTIONS(1681), 1, - anon_sym_COMMA, - ACTIONS(7234), 1, - anon_sym_RBRACK, - STATE(4056), 1, - aux_sym_array_pattern_repeat1, - [140484] = 4, - ACTIONS(3), 1, + [243151] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7946), 1, sym_comment, - ACTIONS(3189), 1, - anon_sym_GT, - ACTIONS(8050), 1, + ACTIONS(6557), 2, anon_sym_COMMA, - STATE(3864), 1, - aux_sym_implements_clause_repeat1, - [140497] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [243165] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(7947), 1, sym_comment, - ACTIONS(8054), 1, - anon_sym_COLON, - ACTIONS(8052), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [140508] = 3, - ACTIONS(3), 1, + STATE(8379), 1, + sym_formal_parameters, + [243181] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(7382), 1, + sym__from_clause, + STATE(7948), 1, sym_comment, - ACTIONS(8058), 1, - anon_sym_COLON, - ACTIONS(8056), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [140519] = 4, + [243197] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11997), 1, + sym_identifier, + STATE(6633), 1, + sym_nested_identifier, + STATE(7949), 1, sym_comment, - ACTIONS(2213), 1, + [243213] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, anon_sym_LBRACE, - ACTIONS(7173), 1, - anon_sym_DOT, - STATE(2500), 1, - sym_ui_object_initializer, - [140532] = 3, - ACTIONS(3), 1, + STATE(7950), 1, sym_comment, - ACTIONS(8062), 1, - anon_sym_COLON, - ACTIONS(8060), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [140543] = 4, - ACTIONS(3), 1, + STATE(8023), 1, + sym_statement_block, + [243229] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7951), 1, sym_comment, - ACTIONS(1782), 1, + ACTIONS(11999), 2, anon_sym_COMMA, - ACTIONS(5000), 1, - anon_sym_RPAREN, - STATE(4236), 1, - aux_sym_array_repeat1, - [140556] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [243243] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7952), 1, sym_comment, - ACTIONS(1782), 1, + ACTIONS(10609), 2, anon_sym_COMMA, - ACTIONS(5000), 1, - anon_sym_RPAREN, - STATE(3991), 1, - aux_sym_array_repeat1, - [140569] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8064), 1, - sym_identifier, - ACTIONS(8066), 1, - anon_sym_LBRACK, - ACTIONS(8068), 1, - sym_private_property_identifier, - [140582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8072), 1, - anon_sym_COLON, - ACTIONS(8070), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [140593] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + [243257] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7953), 1, sym_comment, - ACTIONS(8074), 1, - anon_sym_LPAREN, - STATE(4409), 1, - sym_parenthesized_expression, - [140603] = 3, - ACTIONS(3), 1, + ACTIONS(12001), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [243271] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3089), 1, + sym_class_body, + STATE(7954), 1, sym_comment, - ACTIONS(8076), 1, + [243287] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12003), 1, anon_sym_SEMI, - ACTIONS(8078), 1, + ACTIONS(12005), 1, sym__automatic_semicolon, - [140613] = 3, - ACTIONS(3), 1, + STATE(7955), 1, sym_comment, - ACTIONS(8080), 1, - sym_identifier, - STATE(4028), 1, - sym_nested_identifier, - [140623] = 2, - ACTIONS(3), 1, + [243303] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7956), 1, sym_comment, - ACTIONS(8082), 2, + ACTIONS(6469), 2, anon_sym_COMMA, anon_sym_RBRACE, - [140631] = 3, - ACTIONS(3), 1, + [243317] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8254), 1, + anon_sym_LBRACE, + STATE(1616), 1, + sym_class_body, + STATE(7957), 1, + sym_comment, + [243333] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9324), 1, + anon_sym_LBRACE, + STATE(519), 1, + sym_statement_block, + STATE(7958), 1, + sym_comment, + [243349] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, + anon_sym_LBRACE, + STATE(6938), 1, + sym_class_body, + STATE(7959), 1, sym_comment, - ACTIONS(6377), 1, + [243365] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, anon_sym_LBRACE, - STATE(696), 1, + STATE(6937), 1, sym_class_body, - [140641] = 3, - ACTIONS(3), 1, + STATE(7960), 1, sym_comment, - ACTIONS(6182), 1, + [243381] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, anon_sym_LPAREN, - STATE(3091), 1, - sym_arguments, - [140651] = 3, - ACTIONS(3), 1, + STATE(161), 1, + sym_parenthesized_expression, + STATE(7961), 1, sym_comment, - ACTIONS(7978), 1, - sym_identifier, - ACTIONS(7982), 1, - sym_private_property_identifier, - [140661] = 2, - ACTIONS(3), 1, + [243397] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7962), 1, sym_comment, - ACTIONS(8084), 2, + ACTIONS(12007), 2, anon_sym_COMMA, anon_sym_RBRACE, - [140669] = 3, - ACTIONS(3), 1, + [243411] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12009), 1, + anon_sym_SEMI, + ACTIONS(12011), 1, + sym__automatic_semicolon, + STATE(7963), 1, sym_comment, - ACTIONS(8086), 1, - sym_identifier, - ACTIONS(8088), 1, - sym_private_property_identifier, - [140679] = 3, - ACTIONS(3), 1, + [243427] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12013), 1, + anon_sym_LBRACE, + STATE(4143), 1, + sym_switch_body, + STATE(7964), 1, sym_comment, - ACTIONS(8090), 1, - sym_identifier, - ACTIONS(8092), 1, - anon_sym_STAR, - [140689] = 3, - ACTIONS(3), 1, + [243443] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7661), 1, + anon_sym_DOT, + ACTIONS(12015), 1, + anon_sym_GT, + STATE(7965), 1, sym_comment, - ACTIONS(8094), 1, - sym_identifier, - ACTIONS(8096), 1, - sym_private_property_identifier, - [140699] = 3, - ACTIONS(3), 1, + [243459] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7966), 1, sym_comment, - ACTIONS(8098), 1, - sym_identifier, - ACTIONS(8100), 1, - anon_sym_STAR, - [140709] = 3, - ACTIONS(3), 1, + ACTIONS(12017), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [243473] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3888), 1, + sym_class_body, + STATE(7967), 1, sym_comment, - ACTIONS(8102), 1, - sym_identifier, - ACTIONS(8104), 1, - sym_private_property_identifier, - [140719] = 3, - ACTIONS(3), 1, + [243489] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8254), 1, + anon_sym_LBRACE, + STATE(1610), 1, + sym_class_body, + STATE(7968), 1, sym_comment, - ACTIONS(7137), 1, - anon_sym_in, - ACTIONS(7139), 1, - anon_sym_of, - [140729] = 2, - ACTIONS(3), 1, + [243505] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3567), 1, + sym_class_body, + STATE(7969), 1, sym_comment, - ACTIONS(5492), 2, + [243521] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3218), 1, + sym_statement_block, + STATE(7970), 1, + sym_comment, + [243537] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7971), 1, + sym_comment, + ACTIONS(12019), 2, anon_sym_COMMA, anon_sym_RBRACE, - [140737] = 3, - ACTIONS(3), 1, + [243551] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11851), 1, + anon_sym_LPAREN, + STATE(7436), 1, + sym_parenthesized_expression, + STATE(7972), 1, sym_comment, - ACTIONS(3924), 1, + [243567] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8304), 1, anon_sym_LBRACE, - STATE(4309), 1, + STATE(4324), 1, + sym_class_body, + STATE(7973), 1, + sym_comment, + [243583] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(95), 1, + sym_parenthesized_expression, + STATE(7974), 1, + sym_comment, + [243599] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, + anon_sym_LBRACE, + STATE(3534), 1, sym_statement_block, - [140747] = 2, - ACTIONS(3), 1, + STATE(7975), 1, sym_comment, - ACTIONS(5476), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [140755] = 3, - ACTIONS(3), 1, + [243615] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7976), 1, sym_comment, - ACTIONS(3924), 1, + ACTIONS(12021), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [243629] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - STATE(4311), 1, + STATE(3215), 1, sym_statement_block, - [140765] = 2, - ACTIONS(3), 1, + STATE(7977), 1, sym_comment, - ACTIONS(8106), 2, + [243645] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7978), 1, + sym_comment, + ACTIONS(6534), 2, anon_sym_COMMA, anon_sym_RBRACE, - [140773] = 3, - ACTIONS(3), 1, + [243659] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7979), 1, sym_comment, - ACTIONS(8108), 1, - sym_identifier, - ACTIONS(8110), 1, - anon_sym_STAR, - [140783] = 3, - ACTIONS(3), 1, + ACTIONS(10414), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [243673] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7980), 1, sym_comment, - ACTIONS(8112), 1, - anon_sym_in, - ACTIONS(8114), 1, - anon_sym_COLON, - [140793] = 3, - ACTIONS(3), 1, + ACTIONS(6301), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [243687] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8256), 1, + anon_sym_LBRACE, + STATE(7740), 1, + sym_class_body, + STATE(7981), 1, + sym_comment, + [243703] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7982), 1, sym_comment, - ACTIONS(6383), 1, + ACTIONS(2412), 2, + anon_sym_else, + anon_sym_while, + [243717] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, anon_sym_LBRACE, - STATE(745), 1, + STATE(3541), 1, sym_class_body, - [140803] = 3, - ACTIONS(3), 1, + STATE(7983), 1, sym_comment, - ACTIONS(3924), 1, + [243733] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12023), 1, anon_sym_LBRACE, - STATE(2498), 1, + STATE(3896), 1, sym_statement_block, - [140813] = 3, - ACTIONS(3), 1, + STATE(7984), 1, sym_comment, - ACTIONS(8116), 1, - sym_identifier, - ACTIONS(8118), 1, - anon_sym_STAR, - [140823] = 3, - ACTIONS(3), 1, + [243749] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8256), 1, + anon_sym_LBRACE, + STATE(7806), 1, + sym_class_body, + STATE(7985), 1, sym_comment, - ACTIONS(8120), 1, - sym_identifier, - ACTIONS(8122), 1, - anon_sym_STAR, - [140833] = 2, - ACTIONS(3), 1, + [243765] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12025), 1, + anon_sym_LBRACE, + STATE(3796), 1, + sym_statement_block, + STATE(7986), 1, sym_comment, - ACTIONS(8124), 2, + [243781] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(120), 1, + sym_parenthesized_expression, + STATE(7987), 1, + sym_comment, + [243797] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7988), 1, + sym_comment, + ACTIONS(10294), 2, sym__automatic_semicolon, anon_sym_SEMI, - [140841] = 2, - ACTIONS(3), 1, + [243811] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7989), 1, sym_comment, - ACTIONS(5546), 2, + ACTIONS(12027), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [140849] = 3, - ACTIONS(3), 1, + anon_sym_RBRACK, + [243825] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7990), 1, sym_comment, - ACTIONS(3924), 1, + ACTIONS(12029), 2, + anon_sym_COMMA, + anon_sym_GT, + [243839] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - STATE(4317), 1, + STATE(3282), 1, sym_statement_block, - [140859] = 2, - ACTIONS(3), 1, + STATE(7991), 1, sym_comment, - ACTIONS(5592), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [140867] = 3, + [243855] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11729), 1, + anon_sym_STAR, + ACTIONS(12031), 1, + sym_identifier, + STATE(7992), 1, sym_comment, - ACTIONS(3924), 1, + [243871] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - STATE(4319), 1, + STATE(3176), 1, sym_statement_block, - [140877] = 3, - ACTIONS(3), 1, + STATE(7993), 1, sym_comment, - ACTIONS(6293), 1, + [243887] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8172), 1, anon_sym_LBRACE, - STATE(2405), 1, + STATE(6893), 1, sym_class_body, - [140887] = 3, - ACTIONS(3), 1, + STATE(7994), 1, sym_comment, - ACTIONS(6383), 1, - anon_sym_LBRACE, - STATE(725), 1, - sym_class_body, - [140897] = 3, + [243903] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7995), 1, + sym_comment, + ACTIONS(2416), 2, + anon_sym_else, + anon_sym_while, + [243917] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12033), 1, + sym_identifier, + STATE(7337), 1, + sym_nested_identifier, + STATE(7996), 1, + sym_comment, + [243933] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(7997), 1, sym_comment, - ACTIONS(6361), 1, + STATE(8575), 1, + sym_formal_parameters, + [243949] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - STATE(190), 1, - sym_class_body, - [140907] = 3, - ACTIONS(3), 1, + STATE(3197), 1, + sym_statement_block, + STATE(7998), 1, sym_comment, - ACTIONS(3924), 1, + [243965] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - STATE(2497), 1, + STATE(3195), 1, sym_statement_block, - [140917] = 2, - ACTIONS(3), 1, + STATE(7999), 1, + sym_comment, + [243981] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8000), 1, sym_comment, - ACTIONS(5542), 2, + ACTIONS(10554), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [140925] = 3, - ACTIONS(3), 1, + anon_sym_RBRACK, + [243995] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8256), 1, + anon_sym_LBRACE, + STATE(7772), 1, + sym_class_body, + STATE(8001), 1, sym_comment, - ACTIONS(3924), 1, + [244011] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6397), 1, + sym__from_clause, + STATE(8002), 1, + sym_comment, + [244027] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10955), 1, anon_sym_LBRACE, - STATE(4322), 1, + STATE(1467), 1, sym_statement_block, - [140935] = 2, - ACTIONS(3), 1, + STATE(8003), 1, sym_comment, - ACTIONS(5538), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [140943] = 3, - ACTIONS(3), 1, + [244043] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(5217), 1, + sym_formal_parameters, + STATE(8004), 1, sym_comment, - ACTIONS(3924), 1, + [244059] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - STATE(4326), 1, + STATE(3191), 1, sym_statement_block, - [140953] = 2, - ACTIONS(3), 1, + STATE(8005), 1, sym_comment, - ACTIONS(8126), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [140961] = 2, - ACTIONS(3), 1, + [244075] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, + anon_sym_LBRACE, + STATE(3539), 1, + sym_statement_block, + STATE(8006), 1, sym_comment, - ACTIONS(5522), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [140969] = 3, - ACTIONS(3), 1, + [244091] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3190), 1, + sym_statement_block, + STATE(8007), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_from, - STATE(4567), 1, - sym__from_clause, - [140979] = 3, - ACTIONS(3), 1, + [244107] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(8008), 1, sym_comment, - ACTIONS(8118), 1, - anon_sym_STAR, - ACTIONS(8128), 1, - sym_identifier, - [140989] = 3, - ACTIONS(3), 1, + STATE(8576), 1, + sym_formal_parameters, + [244123] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3182), 1, + sym_statement_block, + STATE(8009), 1, sym_comment, - ACTIONS(3924), 1, + [244139] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - STATE(4327), 1, + STATE(3181), 1, sym_statement_block, - [140999] = 2, - ACTIONS(3), 1, + STATE(8010), 1, sym_comment, - ACTIONS(5518), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141007] = 2, + [244155] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12035), 1, + sym_identifier, + ACTIONS(12037), 1, + anon_sym_STAR, + STATE(8011), 1, sym_comment, - ACTIONS(5502), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141015] = 2, - ACTIONS(3), 1, + [244171] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(5708), 1, + sym_formal_parameters, + STATE(8012), 1, sym_comment, - ACTIONS(5702), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [141023] = 2, - ACTIONS(3), 1, + [244187] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(7792), 1, + sym__from_clause, + STATE(8013), 1, sym_comment, - ACTIONS(5716), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [141031] = 2, - ACTIONS(3), 1, + [244203] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(6695), 1, + sym_statement_block, + STATE(8014), 1, sym_comment, - ACTIONS(5720), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [141039] = 2, - ACTIONS(3), 1, + [244219] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8015), 1, sym_comment, - ACTIONS(5690), 2, + ACTIONS(6234), 2, sym__automatic_semicolon, anon_sym_SEMI, - [141047] = 3, - ACTIONS(3), 1, + [244233] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3174), 1, + sym_statement_block, + STATE(8016), 1, sym_comment, - ACTIONS(6383), 1, + [244249] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8304), 1, anon_sym_LBRACE, - STATE(718), 1, + STATE(4315), 1, sym_class_body, - [141057] = 3, - ACTIONS(3), 1, + STATE(8017), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4299), 1, - sym_statement_block, - [141067] = 3, - ACTIONS(3), 1, + [244265] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(1741), 1, + sym_parenthesized_expression, + STATE(8018), 1, sym_comment, - ACTIONS(1491), 1, - anon_sym_LBRACE, - STATE(165), 1, - sym_statement_block, - [141077] = 2, - ACTIONS(3), 1, + [244281] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8019), 1, sym_comment, - ACTIONS(5556), 2, + ACTIONS(6610), 2, anon_sym_COMMA, anon_sym_RBRACE, - [141085] = 3, - ACTIONS(3), 1, + [244295] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8302), 1, + anon_sym_LBRACE, + STATE(4065), 1, + sym_class_body, + STATE(8020), 1, sym_comment, - ACTIONS(3924), 1, + [244311] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, anon_sym_LBRACE, - STATE(4297), 1, + STATE(7684), 1, sym_statement_block, - [141095] = 2, - ACTIONS(3), 1, + STATE(8021), 1, sym_comment, - ACTIONS(6289), 2, - anon_sym_in, - anon_sym_of, - [141103] = 3, - ACTIONS(3), 1, + [244327] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3179), 1, + sym_statement_block, + STATE(8022), 1, sym_comment, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(8130), 1, - anon_sym_GT, - [141113] = 2, - ACTIONS(3), 1, + [244343] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8023), 1, sym_comment, - ACTIONS(7600), 2, + ACTIONS(6545), 2, anon_sym_COMMA, anon_sym_RBRACE, - [141121] = 2, - ACTIONS(3), 1, + [244357] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(7688), 1, + sym_statement_block, + STATE(8024), 1, sym_comment, - ACTIONS(8132), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141129] = 2, - ACTIONS(3), 1, + [244373] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8025), 1, sym_comment, - ACTIONS(5588), 2, + ACTIONS(6549), 2, anon_sym_COMMA, anon_sym_RBRACE, - [141137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6377), 1, + [244387] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10955), 1, anon_sym_LBRACE, - STATE(699), 1, - sym_class_body, - [141147] = 3, - ACTIONS(3), 1, + STATE(1470), 1, + sym_statement_block, + STATE(8026), 1, sym_comment, - ACTIONS(6377), 1, + [244403] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, anon_sym_LBRACE, - STATE(694), 1, + STATE(3734), 1, sym_class_body, - [141157] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8134), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141165] = 2, - ACTIONS(3), 1, + STATE(8027), 1, sym_comment, - ACTIONS(7509), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141173] = 2, - ACTIONS(3), 1, + [244419] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11619), 1, + anon_sym_LPAREN, + STATE(110), 1, + sym__for_header, + STATE(8028), 1, sym_comment, - ACTIONS(8136), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141181] = 3, - ACTIONS(3), 1, + [244435] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6419), 1, + sym__from_clause, + STATE(8029), 1, sym_comment, - ACTIONS(6279), 1, + [244451] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, anon_sym_LBRACE, - STATE(2192), 1, - sym_class_body, - [141191] = 3, - ACTIONS(3), 1, + STATE(3721), 1, + sym_statement_block, + STATE(8030), 1, sym_comment, - ACTIONS(4048), 1, + [244467] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - STATE(2196), 1, + STATE(3294), 1, sym_statement_block, - [141201] = 3, - ACTIONS(3), 1, + STATE(8031), 1, + sym_comment, + [244483] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(7639), 1, + sym__from_clause, + STATE(8032), 1, sym_comment, - ACTIONS(6279), 1, + [244499] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, anon_sym_LBRACE, - STATE(2108), 1, - sym_class_body, - [141211] = 3, - ACTIONS(3), 1, + STATE(3720), 1, + sym_statement_block, + STATE(8033), 1, sym_comment, - ACTIONS(4048), 1, + [244515] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5539), 1, anon_sym_LBRACE, - STATE(2113), 1, + STATE(3718), 1, sym_statement_block, - [141221] = 2, - ACTIONS(3), 1, + STATE(8034), 1, sym_comment, - ACTIONS(5889), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [141229] = 3, - ACTIONS(3), 1, + [244531] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7841), 1, + anon_sym_LPAREN, + STATE(5369), 1, + sym_formal_parameters, + STATE(8035), 1, sym_comment, - ACTIONS(7700), 1, + [244547] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10742), 1, sym_identifier, - STATE(4463), 1, - sym_type_parameter, - [141239] = 3, + ACTIONS(10746), 1, + sym_private_property_identifier, + STATE(8036), 1, + sym_comment, + [244563] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12039), 1, + sym_identifier, + ACTIONS(12041), 1, + sym_private_property_identifier, + STATE(8037), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2481), 1, - sym_statement_block, - [141249] = 3, + [244579] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(8038), 1, sym_comment, - ACTIONS(6445), 1, + ACTIONS(12043), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [244593] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12045), 1, anon_sym_LBRACE, - STATE(2484), 1, + STATE(4236), 1, sym_statement_block, - [141259] = 2, + STATE(8039), 1, + sym_comment, + [244609] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(8040), 1, + sym_comment, + STATE(8505), 1, + sym_formal_parameters, + [244625] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12047), 1, + sym_identifier, + ACTIONS(12049), 1, + sym_private_property_identifier, + STATE(8041), 1, sym_comment, - ACTIONS(8138), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141267] = 2, + [244641] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12051), 1, + sym_identifier, + ACTIONS(12053), 1, + sym_private_property_identifier, + STATE(8042), 1, + sym_comment, + [244657] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8043), 1, sym_comment, - ACTIONS(8140), 2, + ACTIONS(12055), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [141275] = 2, - ACTIONS(3), 1, + anon_sym_GT, + [244671] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8044), 1, sym_comment, - ACTIONS(7723), 2, + ACTIONS(12057), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [141283] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [244685] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(6056), 1, + sym_formal_parameters, + STATE(8045), 1, + sym_comment, + [244701] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(6702), 1, + sym_statement_block, + STATE(8046), 1, + sym_comment, + [244717] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8047), 1, sym_comment, - ACTIONS(5749), 2, + ACTIONS(12059), 2, sym__automatic_semicolon, anon_sym_SEMI, - [141291] = 3, - ACTIONS(3), 1, + [244731] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8202), 1, + anon_sym_LBRACE, + STATE(1886), 1, + sym_class_body, + STATE(8048), 1, + sym_comment, + [244747] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8304), 1, + anon_sym_LBRACE, + STATE(4332), 1, + sym_class_body, + STATE(8049), 1, + sym_comment, + [244763] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9766), 1, + anon_sym_LBRACE, + STATE(1894), 1, + sym_statement_block, + STATE(8050), 1, sym_comment, - ACTIONS(2810), 1, + [244779] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3173), 1, + sym_statement_block, + STATE(8051), 1, + sym_comment, + [244795] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, anon_sym_LPAREN, - STATE(3367), 1, - sym_formal_parameters, - [141301] = 3, - ACTIONS(3), 1, + STATE(125), 1, + sym_parenthesized_expression, + STATE(8052), 1, sym_comment, - ACTIONS(8110), 1, - anon_sym_STAR, - ACTIONS(8142), 1, - sym_identifier, - [141311] = 2, - ACTIONS(3), 1, + [244811] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4596), 1, + anon_sym_COLON, + STATE(7989), 1, + sym_type_annotation, + STATE(8053), 1, sym_comment, - ACTIONS(5556), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141319] = 2, - ACTIONS(3), 1, + [244827] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11851), 1, + anon_sym_LPAREN, + STATE(7782), 1, + sym_parenthesized_expression, + STATE(8054), 1, sym_comment, - ACTIONS(5588), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141327] = 2, - ACTIONS(3), 1, + [244843] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(97), 1, + sym_parenthesized_expression, + STATE(8055), 1, + sym_comment, + [244859] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8056), 1, sym_comment, - ACTIONS(5526), 2, + ACTIONS(12061), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [141335] = 3, - ACTIONS(3), 1, + anon_sym_RBRACK, + [244873] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12063), 1, + anon_sym_SEMI, + ACTIONS(12065), 1, + sym__automatic_semicolon, + STATE(8057), 1, sym_comment, - ACTIONS(6279), 1, + [244889] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8302), 1, anon_sym_LBRACE, - STATE(2138), 1, + STATE(4034), 1, sym_class_body, - [141345] = 3, - ACTIONS(3), 1, + STATE(8058), 1, + sym_comment, + [244905] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(99), 1, + sym_parenthesized_expression, + STATE(8059), 1, + sym_comment, + [244921] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8060), 1, sym_comment, - ACTIONS(4048), 1, + ACTIONS(12067), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [244935] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - STATE(2139), 1, + STATE(3171), 1, sym_statement_block, - [141355] = 3, - ACTIONS(3), 1, + STATE(8061), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - STATE(2141), 1, - sym_class_body, - [141365] = 2, - ACTIONS(3), 1, + [244951] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8062), 1, sym_comment, - ACTIONS(5476), 2, + ACTIONS(12069), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [141373] = 2, - ACTIONS(3), 1, + anon_sym_GT, + [244965] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym_parenthesized_expression, + STATE(8063), 1, sym_comment, - ACTIONS(5546), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141381] = 2, - ACTIONS(3), 1, + [244981] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11851), 1, + anon_sym_LPAREN, + STATE(8064), 1, sym_comment, - ACTIONS(7522), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141389] = 2, - ACTIONS(3), 1, + STATE(8124), 1, + sym_parenthesized_expression, + [244997] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11851), 1, + anon_sym_LPAREN, + STATE(7738), 1, + sym_parenthesized_expression, + STATE(8065), 1, + sym_comment, + [245013] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(136), 1, + sym_parenthesized_expression, + STATE(8066), 1, + sym_comment, + [245029] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(8067), 1, + sym_comment, + STATE(8356), 1, + sym_formal_parameters, + [245045] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8068), 1, sym_comment, - ACTIONS(5964), 2, + ACTIONS(6371), 2, sym__automatic_semicolon, anon_sym_SEMI, - [141397] = 3, - ACTIONS(3), 1, + [245059] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8069), 1, sym_comment, - ACTIONS(8144), 1, - sym_identifier, - ACTIONS(8146), 1, - sym_private_property_identifier, - [141407] = 3, + ACTIONS(10984), 2, + anon_sym_COMMA, + anon_sym_GT, + [245073] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(8148), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12071), 1, sym_identifier, - ACTIONS(8150), 1, - sym_private_property_identifier, - [141417] = 3, - ACTIONS(3), 1, + STATE(7192), 1, + sym_nested_identifier, + STATE(8070), 1, sym_comment, - ACTIONS(8152), 1, - sym_identifier, - ACTIONS(8154), 1, - sym_private_property_identifier, - [141427] = 3, + [245089] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12073), 1, sym_identifier, - ACTIONS(8158), 1, + ACTIONS(12075), 1, sym_private_property_identifier, - [141437] = 3, - ACTIONS(3), 1, + STATE(8071), 1, sym_comment, - ACTIONS(6279), 1, + [245105] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(119), 1, + sym_parenthesized_expression, + STATE(8072), 1, + sym_comment, + [245121] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, anon_sym_LBRACE, - STATE(2183), 1, + STATE(3620), 1, sym_class_body, - [141447] = 3, - ACTIONS(3), 1, + STATE(8073), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_from, - STATE(4538), 1, - sym__from_clause, - [141457] = 2, - ACTIONS(3), 1, + [245137] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(7929), 1, + sym_statement_block, + STATE(8074), 1, sym_comment, - ACTIONS(5592), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141465] = 2, - ACTIONS(3), 1, + [245153] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8250), 1, + anon_sym_LBRACE, + STATE(3540), 1, + sym_class_body, + STATE(8075), 1, sym_comment, - ACTIONS(8160), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [141473] = 3, - ACTIONS(3), 1, + [245169] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11887), 1, + anon_sym_LBRACE, + STATE(1690), 1, + sym_enum_body, + STATE(8076), 1, + sym_comment, + [245185] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3170), 1, + sym_statement_block, + STATE(8077), 1, sym_comment, - ACTIONS(6455), 1, + [245201] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, anon_sym_LPAREN, - STATE(4695), 1, + STATE(151), 1, + sym_parenthesized_expression, + STATE(8078), 1, + sym_comment, + [245217] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(5598), 1, + sym_statement_block, + STATE(8079), 1, + sym_comment, + [245233] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8202), 1, + anon_sym_LBRACE, + STATE(1900), 1, + sym_class_body, + STATE(8080), 1, + sym_comment, + [245249] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(8081), 1, + sym_comment, + STATE(8221), 1, sym_formal_parameters, - [141483] = 2, - ACTIONS(3), 1, + [245265] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8082), 1, + sym_comment, + ACTIONS(12077), 2, + anon_sym_LBRACE, + anon_sym_DOT, + [245279] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8083), 1, sym_comment, - ACTIONS(8162), 2, + ACTIONS(6329), 2, sym__automatic_semicolon, anon_sym_SEMI, - [141491] = 2, - ACTIONS(3), 1, + [245293] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8304), 1, + anon_sym_LBRACE, + STATE(4353), 1, + sym_class_body, + STATE(8084), 1, sym_comment, - ACTIONS(5542), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141499] = 2, - ACTIONS(3), 1, + [245309] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9766), 1, + anon_sym_LBRACE, + STATE(1885), 1, + sym_statement_block, + STATE(8085), 1, sym_comment, - ACTIONS(7718), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [141507] = 3, - ACTIONS(3), 1, + [245325] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8202), 1, + anon_sym_LBRACE, + STATE(1904), 1, + sym_class_body, + STATE(8086), 1, sym_comment, - ACTIONS(6293), 1, + [245341] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(2376), 1, + STATE(3862), 1, sym_class_body, - [141517] = 3, + STATE(8087), 1, + sym_comment, + [245357] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12079), 1, + sym_identifier, + STATE(6801), 1, + sym_nested_identifier, + STATE(8088), 1, sym_comment, - ACTIONS(8164), 1, + [245373] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(8089), 1, + sym_comment, + STATE(8134), 1, + sym__from_clause, + [245389] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8090), 1, + sym_comment, + ACTIONS(10931), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [245403] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12081), 1, + anon_sym_SEMI, + ACTIONS(12083), 1, + sym__automatic_semicolon, + STATE(8091), 1, + sym_comment, + [245419] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6400), 1, + sym__from_clause, + STATE(8092), 1, + sym_comment, + [245435] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(8093), 1, + sym_comment, + STATE(8468), 1, + sym_formal_parameters, + [245451] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11619), 1, anon_sym_LPAREN, - STATE(60), 1, + STATE(126), 1, sym__for_header, - [141527] = 3, - ACTIONS(3), 1, + STATE(8094), 1, sym_comment, - ACTIONS(8110), 1, - anon_sym_STAR, - ACTIONS(8166), 1, - sym_identifier, - [141537] = 2, - ACTIONS(3), 1, + [245467] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8095), 1, sym_comment, - ACTIONS(8168), 2, + ACTIONS(12085), 2, sym__automatic_semicolon, anon_sym_SEMI, - [141545] = 2, - ACTIONS(3), 1, + [245481] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8096), 1, sym_comment, - ACTIONS(8170), 2, + ACTIONS(12087), 2, sym__automatic_semicolon, anon_sym_SEMI, - [141553] = 2, - ACTIONS(3), 1, + [245495] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3881), 1, + sym_class_body, + STATE(8097), 1, sym_comment, - ACTIONS(6639), 2, + [245511] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8302), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [141561] = 2, - ACTIONS(3), 1, + STATE(4207), 1, + sym_class_body, + STATE(8098), 1, + sym_comment, + [245527] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8099), 1, sym_comment, - ACTIONS(8172), 2, + ACTIONS(12089), 2, sym__automatic_semicolon, anon_sym_SEMI, - [141569] = 3, + [245541] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12091), 1, + sym_identifier, + ACTIONS(12093), 1, + sym_private_property_identifier, + STATE(8100), 1, sym_comment, - ACTIONS(3966), 1, + [245557] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7859), 1, anon_sym_LPAREN, - STATE(1611), 1, - sym_arguments, - [141579] = 3, - ACTIONS(3), 1, + STATE(5158), 1, + sym_formal_parameters, + STATE(8101), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_LBRACE, - STATE(2373), 1, - sym_class_body, - [141589] = 3, - ACTIONS(3), 1, + [245573] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12095), 1, + anon_sym_SEMI, + ACTIONS(12097), 1, + sym__automatic_semicolon, + STATE(8102), 1, sym_comment, - ACTIONS(6445), 1, + [245589] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11681), 1, anon_sym_LBRACE, - STATE(3819), 1, + STATE(1760), 1, sym_statement_block, - [141599] = 2, - ACTIONS(3), 1, + STATE(8103), 1, sym_comment, - ACTIONS(5013), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [141607] = 2, - ACTIONS(3), 1, + [245605] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8104), 1, sym_comment, - ACTIONS(5027), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [141615] = 2, + ACTIONS(12099), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [245619] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12101), 1, + sym_identifier, + ACTIONS(12103), 1, + sym_private_property_identifier, + STATE(8105), 1, + sym_comment, + [245635] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(8106), 1, + sym_comment, + STATE(8244), 1, + sym_formal_parameters, + [245651] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6512), 1, + sym__from_clause, + STATE(8107), 1, + sym_comment, + [245667] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8108), 1, sym_comment, - ACTIONS(8174), 2, + ACTIONS(11133), 2, anon_sym_COMMA, anon_sym_RPAREN, - [141623] = 3, - ACTIONS(3), 1, + [245681] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8109), 1, sym_comment, - ACTIONS(6455), 1, + ACTIONS(12105), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [245695] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, anon_sym_LPAREN, - STATE(4712), 1, + STATE(8110), 1, + sym_comment, + STATE(8438), 1, sym_formal_parameters, - [141633] = 3, - ACTIONS(3), 1, + [245711] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8111), 1, sym_comment, - ACTIONS(6361), 1, - anon_sym_LBRACE, - STATE(169), 1, - sym_class_body, - [141643] = 2, - ACTIONS(3), 1, + ACTIONS(12107), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [245725] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8112), 1, sym_comment, - ACTIONS(5566), 2, + ACTIONS(12109), 2, anon_sym_COMMA, anon_sym_RBRACE, - [141651] = 3, - ACTIONS(3), 1, + [245739] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6450), 1, + sym__from_clause, + STATE(8113), 1, + sym_comment, + [245755] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8114), 1, sym_comment, - ACTIONS(6383), 1, + ACTIONS(12111), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [245769] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8216), 1, anon_sym_LBRACE, - STATE(774), 1, + STATE(498), 1, sym_class_body, - [141661] = 3, - ACTIONS(3), 1, + STATE(8115), 1, sym_comment, - ACTIONS(8118), 1, - anon_sym_STAR, - ACTIONS(8176), 1, - sym_identifier, - [141671] = 3, + [245785] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12113), 1, + sym_identifier, + ACTIONS(12115), 1, + sym_private_property_identifier, + STATE(8116), 1, sym_comment, - ACTIONS(1491), 1, - anon_sym_LBRACE, - STATE(161), 1, - sym_statement_block, - [141681] = 3, + [245801] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12117), 1, + sym_identifier, + ACTIONS(12119), 1, + sym_private_property_identifier, + STATE(8117), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4739), 1, - sym_formal_parameters, - [141691] = 3, + [245817] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12121), 1, + sym_identifier, + ACTIONS(12123), 1, + sym_private_property_identifier, + STATE(8118), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4335), 1, - sym_statement_block, - [141701] = 2, - ACTIONS(3), 1, + [245833] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8119), 1, sym_comment, - ACTIONS(7664), 2, + ACTIONS(12125), 2, anon_sym_COMMA, anon_sym_RBRACE, - [141709] = 3, - ACTIONS(3), 1, + [245847] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(8120), 1, sym_comment, - ACTIONS(2314), 1, - anon_sym_LBRACE, - STATE(814), 1, - sym_statement_block, - [141719] = 3, + STATE(8288), 1, + sym_formal_parameters, + [245863] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12127), 1, + sym_identifier, + STATE(6970), 1, + sym_nested_identifier, + STATE(8121), 1, sym_comment, - ACTIONS(8178), 1, - anon_sym_LBRACE, - STATE(2743), 1, - sym__qml_enum_body, - [141729] = 3, + [245879] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12129), 1, + sym_identifier, + ACTIONS(12131), 1, + sym_private_property_identifier, + STATE(8122), 1, sym_comment, - ACTIONS(6361), 1, + [245895] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8296), 1, anon_sym_LBRACE, - STATE(182), 1, + STATE(1776), 1, sym_class_body, - [141739] = 3, - ACTIONS(3), 1, + STATE(8123), 1, sym_comment, - ACTIONS(8180), 1, + [245911] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12133), 1, anon_sym_LBRACE, - STATE(810), 1, - sym_enum_body, - [141749] = 2, - ACTIONS(3), 1, + STATE(7836), 1, + sym_switch_body, + STATE(8124), 1, sym_comment, - ACTIONS(8182), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [141757] = 3, - ACTIONS(3), 1, + [245927] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9324), 1, + anon_sym_LBRACE, + STATE(510), 1, + sym_statement_block, + STATE(8125), 1, sym_comment, - ACTIONS(6377), 1, + [245943] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8202), 1, anon_sym_LBRACE, - STATE(683), 1, + STATE(1909), 1, sym_class_body, - [141767] = 2, - ACTIONS(3), 1, + STATE(8126), 1, sym_comment, - ACTIONS(5492), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141775] = 3, - ACTIONS(3), 1, + [245959] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12135), 1, + anon_sym_LPAREN, + STATE(4418), 1, + sym_parenthesized_expression, + STATE(8127), 1, + sym_comment, + [245975] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6555), 1, + sym__from_clause, + STATE(8128), 1, sym_comment, - ACTIONS(3924), 1, + [245991] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12137), 1, anon_sym_LBRACE, - STATE(4514), 1, - sym_statement_block, - [141785] = 3, - ACTIONS(3), 1, + STATE(4365), 1, + sym_enum_body, + STATE(8129), 1, sym_comment, - ACTIONS(8184), 1, + [246007] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8130), 1, + sym_comment, + ACTIONS(10071), 2, + sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(8186), 1, + [246021] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8131), 1, + sym_comment, + ACTIONS(12139), 2, sym__automatic_semicolon, - [141795] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [246035] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12141), 1, + anon_sym_SEMI, + ACTIONS(12143), 1, + sym__automatic_semicolon, + STATE(8132), 1, sym_comment, - ACTIONS(5526), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141803] = 2, - ACTIONS(3), 1, + [246051] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11619), 1, + anon_sym_LPAREN, + STATE(159), 1, + sym__for_header, + STATE(8133), 1, sym_comment, - ACTIONS(8188), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [141811] = 3, - ACTIONS(3), 1, + [246067] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12145), 1, + anon_sym_SEMI, + ACTIONS(12147), 1, + sym__automatic_semicolon, + STATE(8134), 1, + sym_comment, + [246083] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(6526), 1, + sym__from_clause, + STATE(8135), 1, + sym_comment, + [246099] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9906), 1, + anon_sym_from, + STATE(7886), 1, + sym__from_clause, + STATE(8136), 1, sym_comment, - ACTIONS(3924), 1, + [246115] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, anon_sym_LBRACE, - STATE(2528), 1, + STATE(7918), 1, sym_statement_block, - [141821] = 3, - ACTIONS(3), 1, + STATE(8137), 1, sym_comment, - ACTIONS(3924), 1, + [246131] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8216), 1, anon_sym_LBRACE, - STATE(4341), 1, - sym_statement_block, - [141831] = 2, - ACTIONS(3), 1, + STATE(522), 1, + sym_class_body, + STATE(8138), 1, + sym_comment, + [246147] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8139), 1, sym_comment, - ACTIONS(8190), 2, + ACTIONS(12149), 2, sym__automatic_semicolon, anon_sym_SEMI, - [141839] = 3, - ACTIONS(3), 1, + [246161] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12151), 1, + anon_sym_SEMI, + ACTIONS(12153), 1, + sym__automatic_semicolon, + STATE(8140), 1, sym_comment, - ACTIONS(6377), 1, + [246177] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - STATE(3623), 1, - sym_class_body, - [141849] = 3, - ACTIONS(3), 1, + STATE(3205), 1, + sym_statement_block, + STATE(8141), 1, sym_comment, - ACTIONS(6377), 1, + [246193] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8514), 1, anon_sym_LBRACE, - STATE(3711), 1, - sym_class_body, - [141859] = 3, - ACTIONS(3), 1, + STATE(6738), 1, + sym_statement_block, + STATE(8142), 1, sym_comment, - ACTIONS(8192), 1, - sym_identifier, - STATE(4187), 1, - sym_nested_identifier, - [141869] = 2, - ACTIONS(3), 1, + [246209] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8143), 1, sym_comment, - ACTIONS(8194), 2, + ACTIONS(12155), 2, sym__automatic_semicolon, anon_sym_SEMI, - [141877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8196), 1, - anon_sym_SEMI, - ACTIONS(8198), 1, - sym__automatic_semicolon, - [141887] = 2, - ACTIONS(3), 1, + [246223] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8144), 1, sym_comment, - ACTIONS(8200), 2, + ACTIONS(12157), 2, sym__automatic_semicolon, anon_sym_SEMI, - [141895] = 2, - ACTIONS(3), 1, + [246237] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8145), 1, sym_comment, - ACTIONS(8202), 2, + ACTIONS(6365), 2, sym__automatic_semicolon, anon_sym_SEMI, - [141903] = 2, - ACTIONS(3), 1, + [246251] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8146), 1, sym_comment, - ACTIONS(8204), 2, + ACTIONS(12159), 2, sym__automatic_semicolon, anon_sym_SEMI, - [141911] = 2, - ACTIONS(3), 1, + [246265] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8147), 1, sym_comment, - ACTIONS(8206), 2, + ACTIONS(12161), 2, sym__automatic_semicolon, anon_sym_SEMI, - [141919] = 2, - ACTIONS(3), 1, + [246279] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8148), 1, sym_comment, - ACTIONS(8208), 2, + ACTIONS(12163), 2, sym__automatic_semicolon, anon_sym_SEMI, - [141927] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8210), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [141935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8212), 2, + [246293] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12165), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [141943] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(3638), 1, - sym_class_body, - [141953] = 3, - ACTIONS(3), 1, + ACTIONS(12167), 1, + anon_sym_from, + STATE(8149), 1, sym_comment, - ACTIONS(6389), 1, - anon_sym_LBRACE, - STATE(892), 1, - sym_class_body, - [141963] = 3, + [246309] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12169), 1, + sym_identifier, + ACTIONS(12171), 1, + sym_private_property_identifier, + STATE(8150), 1, sym_comment, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(3647), 1, - sym_class_body, - [141973] = 3, - ACTIONS(3), 1, + [246325] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7831), 1, + anon_sym_LPAREN, + STATE(8151), 1, sym_comment, - ACTIONS(2730), 1, + STATE(8429), 1, + sym_formal_parameters, + [246341] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, anon_sym_LBRACE, - STATE(881), 1, + STATE(3216), 1, sym_statement_block, - [141983] = 3, - ACTIONS(3), 1, + STATE(8152), 1, sym_comment, - ACTIONS(4048), 1, - anon_sym_LBRACE, - STATE(2110), 1, - sym_statement_block, - [141993] = 3, + [246357] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12173), 1, + sym_identifier, + ACTIONS(12175), 1, + sym_private_property_identifier, + STATE(8153), 1, sym_comment, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(3553), 1, - sym_class_body, - [142003] = 3, - ACTIONS(3), 1, + [246373] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12177), 1, + anon_sym_SEMI, + ACTIONS(12179), 1, + sym__automatic_semicolon, + STATE(8154), 1, sym_comment, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(3658), 1, - sym_class_body, - [142013] = 2, - ACTIONS(3), 1, + [246389] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8155), 1, sym_comment, - ACTIONS(7649), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [142021] = 2, - ACTIONS(3), 1, + ACTIONS(12181), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [246403] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3241), 1, + sym_statement_block, + STATE(8156), 1, sym_comment, - ACTIONS(8214), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [142029] = 3, - ACTIONS(3), 1, + [246419] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, + anon_sym_LPAREN, + STATE(156), 1, + sym_parenthesized_expression, + STATE(8157), 1, sym_comment, - ACTIONS(6455), 1, + [246435] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11619), 1, anon_sym_LPAREN, - STATE(4940), 1, - sym_formal_parameters, - [142039] = 3, - ACTIONS(3), 1, + STATE(140), 1, + sym__for_header, + STATE(8158), 1, sym_comment, - ACTIONS(8216), 1, - sym_identifier, - ACTIONS(8218), 1, - sym_private_property_identifier, - [142049] = 3, - ACTIONS(3), 1, + [246451] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12183), 1, + anon_sym_SEMI, + ACTIONS(12185), 1, + sym__automatic_semicolon, + STATE(8159), 1, sym_comment, - ACTIONS(6279), 1, + [246467] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8254), 1, anon_sym_LBRACE, - STATE(2164), 1, + STATE(1480), 1, sym_class_body, - [142059] = 3, - ACTIONS(3), 1, + STATE(8160), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4975), 1, - sym_formal_parameters, - [142069] = 3, - ACTIONS(3), 1, + [246483] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8839), 1, + anon_sym_LBRACE, + STATE(3141), 1, + sym_statement_block, + STATE(8161), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_LPAREN, - STATE(45), 1, - sym_parenthesized_expression, - [142079] = 3, - ACTIONS(3), 1, + [246499] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12187), 1, + anon_sym_LBRACE, + STATE(4302), 1, + sym__qml_enum_body, + STATE(8162), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_LPAREN, - STATE(4540), 1, - sym_parenthesized_expression, - [142089] = 2, - ACTIONS(3), 1, + [246515] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(7956), 1, + sym_statement_block, + STATE(8163), 1, + sym_comment, + [246531] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8536), 1, + anon_sym_LBRACE, + STATE(7843), 1, + sym_statement_block, + STATE(8164), 1, sym_comment, - ACTIONS(8222), 2, + [246547] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8165), 1, + sym_comment, + ACTIONS(12189), 2, sym__automatic_semicolon, anon_sym_SEMI, - [142097] = 3, - ACTIONS(3), 1, + [246561] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8166), 1, sym_comment, - ACTIONS(8220), 1, + ACTIONS(7599), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [246575] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11851), 1, anon_sym_LPAREN, - STATE(33), 1, + STATE(7964), 1, sym_parenthesized_expression, - [142107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - STATE(2158), 1, - sym_class_body, - [142117] = 3, - ACTIONS(3), 1, + STATE(8167), 1, sym_comment, - ACTIONS(6455), 1, + [246591] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11465), 1, anon_sym_LPAREN, - STATE(4892), 1, - sym_formal_parameters, - [142127] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6576), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [142135] = 2, - ACTIONS(3), 1, + STATE(148), 1, + sym_parenthesized_expression, + STATE(8168), 1, sym_comment, - ACTIONS(2716), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [142143] = 3, - ACTIONS(3), 1, + [246607] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8169), 1, sym_comment, - ACTIONS(4048), 1, + ACTIONS(6493), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [246621] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8514), 1, anon_sym_LBRACE, - STATE(2155), 1, + STATE(6773), 1, sym_statement_block, - [142153] = 2, - ACTIONS(3), 1, + STATE(8170), 1, sym_comment, - ACTIONS(8224), 2, + [246637] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8171), 1, + sym_comment, + ACTIONS(12191), 2, anon_sym_COMMA, anon_sym_RBRACE, - [142161] = 3, - ACTIONS(3), 1, + [246651] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12137), 1, + anon_sym_LBRACE, + STATE(4228), 1, + sym_enum_body, + STATE(8172), 1, sym_comment, - ACTIONS(6279), 1, + [246667] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12045), 1, anon_sym_LBRACE, - STATE(2100), 1, - sym_class_body, - [142171] = 3, - ACTIONS(3), 1, + STATE(4222), 1, + sym_statement_block, + STATE(8173), 1, sym_comment, - ACTIONS(7700), 1, - sym_identifier, - STATE(4007), 1, - sym_type_parameter, - [142181] = 2, - ACTIONS(3), 1, + [246683] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8174), 1, + sym_comment, + ACTIONS(12193), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [246697] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8175), 1, sym_comment, - ACTIONS(8226), 2, + ACTIONS(6377), 2, sym__automatic_semicolon, anon_sym_SEMI, - [142189] = 3, - ACTIONS(3), 1, + [246711] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8176), 1, sym_comment, - ACTIONS(6389), 1, - anon_sym_LBRACE, - STATE(877), 1, - sym_class_body, - [142199] = 3, - ACTIONS(3), 1, + ACTIONS(6375), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [246725] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8177), 1, sym_comment, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(3683), 1, - sym_class_body, - [142209] = 3, - ACTIONS(3), 1, + ACTIONS(12195), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [246739] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8178), 1, sym_comment, - ACTIONS(2730), 1, - anon_sym_LBRACE, - STATE(871), 1, - sym_statement_block, - [142219] = 3, - ACTIONS(3), 1, + ACTIONS(12197), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [246753] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11619), 1, + anon_sym_LPAREN, + STATE(96), 1, + sym__for_header, + STATE(8179), 1, sym_comment, - ACTIONS(6389), 1, - anon_sym_LBRACE, - STATE(872), 1, - sym_class_body, - [142229] = 2, - ACTIONS(3), 1, + [246769] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8180), 1, sym_comment, - ACTIONS(2724), 2, + ACTIONS(12199), 2, sym__automatic_semicolon, anon_sym_SEMI, - [142237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6377), 1, - anon_sym_LBRACE, - STATE(3706), 1, - sym_class_body, - [142247] = 2, - ACTIONS(3), 1, + [246783] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8181), 1, sym_comment, - ACTIONS(7807), 2, - anon_sym_COMMA, - anon_sym_GT, - [142255] = 3, + ACTIONS(12201), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [246797] = 5, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11643), 1, + anon_sym_STAR, + ACTIONS(12203), 1, + sym_identifier, + STATE(8182), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4905), 1, - sym_formal_parameters, - [142265] = 2, - ACTIONS(3), 1, + [246813] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(8183), 1, sym_comment, - ACTIONS(8228), 2, + ACTIONS(12205), 2, sym__automatic_semicolon, anon_sym_SEMI, - [142273] = 3, + [246827] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12207), 1, + sym_identifier, + STATE(8184), 1, sym_comment, - ACTIONS(4048), 1, - anon_sym_LBRACE, - STATE(2270), 1, - sym_statement_block, - [142283] = 3, - ACTIONS(3), 1, + [246840] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12209), 1, + anon_sym_RBRACK, + STATE(8185), 1, sym_comment, - ACTIONS(8230), 1, - anon_sym_SEMI, - ACTIONS(8232), 1, - sym__automatic_semicolon, - [142293] = 2, - ACTIONS(3), 1, + [246853] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12211), 1, + anon_sym_EQ_GT, + STATE(8186), 1, sym_comment, - ACTIONS(8234), 2, - anon_sym_COMMA, - anon_sym_GT, - [142301] = 3, - ACTIONS(3), 1, + [246866] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12213), 1, + anon_sym_RPAREN, + STATE(8187), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4909), 1, - sym_formal_parameters, - [142311] = 2, - ACTIONS(3), 1, + [246879] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12215), 1, + anon_sym_EQ_GT, + STATE(8188), 1, sym_comment, - ACTIONS(8236), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [142319] = 2, - ACTIONS(3), 1, + [246892] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12217), 1, + anon_sym_while, + STATE(8189), 1, sym_comment, - ACTIONS(8238), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [142327] = 3, - ACTIONS(3), 1, + [246905] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12219), 1, + anon_sym_EQ, + STATE(8190), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_COLON, - STATE(4356), 1, - sym_type_annotation, - [142337] = 3, - ACTIONS(3), 1, + [246918] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12221), 1, + anon_sym_require, + STATE(8191), 1, sym_comment, - ACTIONS(3375), 1, - anon_sym_LPAREN, - STATE(2836), 1, - sym_arguments, - [142347] = 3, - ACTIONS(3), 1, + [246931] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12223), 1, + anon_sym_EQ, + STATE(8192), 1, sym_comment, - ACTIONS(8240), 1, - sym_identifier, - ACTIONS(8242), 1, - sym_private_property_identifier, - [142357] = 3, - ACTIONS(3), 1, + [246944] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12225), 1, + anon_sym_from, + STATE(8193), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3552), 1, - sym_formal_parameters, - [142367] = 3, - ACTIONS(3), 1, + [246957] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12227), 1, + anon_sym_EQ_GT, + STATE(8194), 1, sym_comment, - ACTIONS(8244), 1, - sym_identifier, - ACTIONS(8246), 1, - sym_private_property_identifier, - [142377] = 3, - ACTIONS(3), 1, + [246970] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6849), 1, + anon_sym_in, + STATE(8195), 1, sym_comment, - ACTIONS(8248), 1, - sym_identifier, - ACTIONS(8250), 1, - sym_private_property_identifier, - [142387] = 3, + [246983] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8252), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12229), 1, sym_identifier, - ACTIONS(8254), 1, - sym_private_property_identifier, - [142397] = 3, - ACTIONS(3), 1, + STATE(8196), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4664), 1, - sym_formal_parameters, - [142407] = 3, + [246996] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8256), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12231), 1, sym_identifier, - ACTIONS(8258), 1, - sym_private_property_identifier, - [142417] = 3, - ACTIONS(3), 1, + STATE(8197), 1, sym_comment, - ACTIONS(6389), 1, - anon_sym_LBRACE, - STATE(891), 1, - sym_class_body, - [142427] = 3, + [247009] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12233), 1, + sym_identifier, + STATE(8198), 1, sym_comment, - ACTIONS(8260), 1, - anon_sym_LBRACE, - STATE(3773), 1, - sym_enum_body, - [142437] = 3, - ACTIONS(3), 1, + [247022] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12235), 1, + anon_sym_LT, + STATE(8199), 1, sym_comment, - ACTIONS(8262), 1, - anon_sym_SEMI, - ACTIONS(8264), 1, - sym__automatic_semicolon, - [142447] = 3, - ACTIONS(3), 1, + [247035] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12237), 1, + anon_sym_DOT, + STATE(8200), 1, sym_comment, - ACTIONS(8266), 1, - anon_sym_SEMI, - ACTIONS(8268), 1, - sym__automatic_semicolon, - [142457] = 3, - ACTIONS(3), 1, + [247048] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12239), 1, + anon_sym_DOT, + STATE(8201), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4879), 1, - sym_formal_parameters, - [142467] = 3, - ACTIONS(3), 1, + [247061] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12241), 1, + anon_sym_from, + STATE(8202), 1, sym_comment, - ACTIONS(8270), 1, - anon_sym_SEMI, - ACTIONS(8272), 1, - sym__automatic_semicolon, - [142477] = 3, - ACTIONS(3), 1, + [247074] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12243), 1, + anon_sym_RPAREN, + STATE(8203), 1, sym_comment, - ACTIONS(8274), 1, - sym_identifier, - ACTIONS(8276), 1, - sym_private_property_identifier, - [142487] = 3, + [247087] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12245), 1, + sym_regex_pattern, + STATE(8204), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - STATE(2290), 1, - sym_class_body, - [142497] = 3, - ACTIONS(3), 1, + [247100] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12247), 1, + anon_sym_COLON, + STATE(8205), 1, sym_comment, - ACTIONS(8278), 1, - sym_identifier, - ACTIONS(8280), 1, - sym_private_property_identifier, - [142507] = 3, - ACTIONS(3), 1, + [247113] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12249), 1, + anon_sym_as, + STATE(8206), 1, sym_comment, - ACTIONS(8012), 1, - sym_identifier, - ACTIONS(8016), 1, - sym_private_property_identifier, - [142517] = 3, - ACTIONS(3), 1, + [247126] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12251), 1, + anon_sym_EQ_GT, + STATE(8207), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_LPAREN, - STATE(58), 1, - sym_parenthesized_expression, - [142527] = 3, - ACTIONS(3), 1, + [247139] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12253), 1, + anon_sym_symbol, + STATE(8208), 1, sym_comment, - ACTIONS(6455), 1, + [247152] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12255), 1, anon_sym_LPAREN, - STATE(4737), 1, - sym_formal_parameters, - [142537] = 3, - ACTIONS(3), 1, + STATE(8209), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4875), 1, - sym_formal_parameters, - [142547] = 3, + [247165] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12257), 1, + sym_identifier, + STATE(8210), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3566), 1, - sym_formal_parameters, - [142557] = 3, - ACTIONS(3), 1, + [247178] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12259), 1, + sym_number, + STATE(8211), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_LPAREN, - STATE(4590), 1, - sym_parenthesized_expression, - [142567] = 3, + [247191] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12261), 1, + sym_identifier, + STATE(8212), 1, sym_comment, - ACTIONS(3334), 1, - anon_sym_COLON, - STATE(4471), 1, - sym_type_annotation, - [142577] = 3, + [247204] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12263), 1, + sym_identifier, + STATE(8213), 1, sym_comment, - ACTIONS(4559), 1, - anon_sym_LPAREN, - STATE(1989), 1, - sym_arguments, - [142587] = 3, + [247217] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12265), 1, + sym_identifier, + STATE(8214), 1, sym_comment, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3369), 1, - sym_formal_parameters, - [142597] = 3, - ACTIONS(3), 1, + [247230] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11221), 1, + anon_sym_RBRACK, + STATE(8215), 1, sym_comment, - ACTIONS(4048), 1, - anon_sym_LBRACE, - STATE(2151), 1, - sym_statement_block, - [142607] = 3, - ACTIONS(3), 1, + [247243] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12267), 1, + anon_sym_SLASH2, + STATE(8216), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym_parenthesized_expression, - [142617] = 2, - ACTIONS(3), 1, + [247256] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12269), 1, + anon_sym_EQ, + STATE(8217), 1, sym_comment, - ACTIONS(7954), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [142625] = 3, - ACTIONS(3), 1, + [247269] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12271), 1, + anon_sym_EQ_GT, + STATE(8218), 1, sym_comment, - ACTIONS(8260), 1, - anon_sym_LBRACE, - STATE(3814), 1, - sym_enum_body, - [142635] = 3, - ACTIONS(3), 1, + [247282] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12273), 1, + anon_sym_from, + STATE(8219), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(2629), 1, - sym_statement_block, - [142645] = 3, - ACTIONS(3), 1, + [247295] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12275), 1, + anon_sym_EQ_GT, + STATE(8220), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(3589), 1, - sym_statement_block, - [142655] = 3, - ACTIONS(3), 1, + [247308] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12277), 1, + anon_sym_EQ_GT, + STATE(8221), 1, sym_comment, - ACTIONS(8164), 1, - anon_sym_LPAREN, - STATE(47), 1, - sym__for_header, - [142665] = 3, + [247321] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12279), 1, + sym_identifier, + STATE(8222), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_LBRACE, - STATE(2369), 1, - sym_class_body, - [142675] = 2, - ACTIONS(7230), 1, + [247334] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12281), 1, + aux_sym_ui_version_specifier_token1, + STATE(8223), 1, sym_comment, - ACTIONS(8282), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [142683] = 3, + [247347] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12283), 1, + anon_sym_from, + STATE(8224), 1, + sym_comment, + [247360] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12285), 1, + sym_identifier, + STATE(8225), 1, sym_comment, - ACTIONS(7222), 1, + [247373] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12167), 1, anon_sym_from, - STATE(4632), 1, - sym__from_clause, - [142693] = 3, - ACTIONS(3), 1, + STATE(8226), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4785), 1, - sym_formal_parameters, - [142703] = 3, + [247386] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12287), 1, + anon_sym_EQ_GT, + STATE(8227), 1, + sym_comment, + [247399] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12289), 1, + anon_sym_EQ_GT, + STATE(8228), 1, + sym_comment, + [247412] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12291), 1, + sym_identifier, + STATE(8229), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_from, - STATE(4641), 1, - sym__from_clause, - [142713] = 2, + [247425] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12293), 1, + sym_identifier, + STATE(8230), 1, sym_comment, - ACTIONS(8284), 2, - anon_sym_COMMA, + [247438] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12295), 1, + anon_sym_namespace, + STATE(8231), 1, + sym_comment, + [247451] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12297), 1, + anon_sym_EQ_GT, + STATE(8232), 1, + sym_comment, + [247464] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5806), 1, anon_sym_RPAREN, - [142721] = 2, - ACTIONS(3), 1, + STATE(8233), 1, sym_comment, - ACTIONS(7644), 2, - anon_sym_COMMA, + [247477] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6598), 1, anon_sym_RPAREN, - [142729] = 3, - ACTIONS(3), 1, + STATE(8234), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(2406), 1, - sym_statement_block, - [142739] = 2, + [247490] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12299), 1, + sym_identifier, + STATE(8235), 1, sym_comment, - ACTIONS(5576), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [142747] = 3, - ACTIONS(3), 1, + [247503] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12301), 1, + anon_sym_COLON, + STATE(8236), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4398), 1, - sym_statement_block, - [142757] = 3, + [247516] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12303), 1, + sym_identifier, + STATE(8237), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_LPAREN, - STATE(52), 1, - sym_parenthesized_expression, - [142767] = 3, - ACTIONS(3), 1, + [247529] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12305), 1, + anon_sym_while, + STATE(8238), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3570), 1, - sym_formal_parameters, - [142777] = 3, - ACTIONS(3), 1, + [247542] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6501), 1, + anon_sym_COLON, + STATE(8239), 1, sym_comment, - ACTIONS(2314), 1, - anon_sym_LBRACE, - STATE(659), 1, - sym_statement_block, - [142787] = 3, + [247555] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12307), 1, + sym_identifier, + STATE(8240), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4652), 1, - sym_formal_parameters, - [142797] = 3, - ACTIONS(3), 1, + [247568] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12309), 1, + sym_number, + STATE(8241), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_LPAREN, - STATE(56), 1, - sym_parenthesized_expression, - [142807] = 3, + [247581] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12311), 1, + sym_identifier, + STATE(8242), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - STATE(2300), 1, - sym_class_body, - [142817] = 2, + [247594] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12313), 1, + sym_identifier, + STATE(8243), 1, sym_comment, - ACTIONS(5002), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [142825] = 3, - ACTIONS(3), 1, + [247607] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12315), 1, + anon_sym_EQ_GT, + STATE(8244), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3478), 1, - sym_formal_parameters, - [142835] = 2, + [247620] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12317), 1, + sym_identifier, + STATE(8245), 1, sym_comment, - ACTIONS(4978), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [142843] = 2, + [247633] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12319), 1, + sym_identifier, + STATE(8246), 1, sym_comment, - ACTIONS(8286), 2, - anon_sym_COMMA, - anon_sym_GT, - [142851] = 3, + [247646] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10595), 1, + sym_identifier, + STATE(8247), 1, sym_comment, - ACTIONS(2810), 1, - anon_sym_LPAREN, - STATE(3104), 1, - sym_formal_parameters, - [142861] = 3, + [247659] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12321), 1, + sym_identifier, + STATE(8248), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_LPAREN, - STATE(34), 1, - sym_parenthesized_expression, - [142871] = 2, + [247672] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12323), 1, + sym_identifier, + STATE(8249), 1, sym_comment, - ACTIONS(8288), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [142879] = 3, - ACTIONS(3), 1, + [247685] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12325), 1, + anon_sym_EQ_GT, + STATE(8250), 1, sym_comment, - ACTIONS(6100), 1, - anon_sym_LPAREN, - STATE(3181), 1, - sym_formal_parameters, - [142889] = 3, + [247698] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12327), 1, + sym_identifier, + STATE(8251), 1, sym_comment, - ACTIONS(6361), 1, - anon_sym_LBRACE, - STATE(173), 1, - sym_class_body, - [142899] = 3, - ACTIONS(3), 1, + [247711] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12329), 1, + anon_sym_as, + STATE(8252), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_LPAREN, - STATE(43), 1, - sym_parenthesized_expression, - [142909] = 2, - ACTIONS(3), 1, + [247724] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6514), 1, + anon_sym_is, + STATE(8253), 1, sym_comment, - ACTIONS(8290), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [142917] = 2, + [247737] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12331), 1, + sym_identifier, + STATE(8254), 1, sym_comment, - ACTIONS(8292), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [142925] = 3, + [247750] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12333), 1, + sym_identifier, + STATE(8255), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - STATE(2267), 1, - sym_class_body, - [142935] = 3, - ACTIONS(3), 1, + [247763] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12335), 1, + anon_sym_while, + STATE(8256), 1, sym_comment, - ACTIONS(8180), 1, - anon_sym_LBRACE, - STATE(734), 1, - sym_enum_body, - [142945] = 3, + [247776] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12337), 1, + sym_identifier, + STATE(8257), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(3599), 1, - sym_statement_block, - [142955] = 3, + [247789] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12339), 1, + sym_identifier, + STATE(8258), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - STATE(2269), 1, - sym_class_body, - [142965] = 3, - ACTIONS(3), 1, + [247802] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9580), 1, + anon_sym_EQ, + STATE(8259), 1, sym_comment, - ACTIONS(8294), 1, - anon_sym_SEMI, - ACTIONS(8296), 1, - sym__automatic_semicolon, - [142975] = 3, + [247815] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12341), 1, + sym_identifier, + STATE(8260), 1, sym_comment, - ACTIONS(4048), 1, - anon_sym_LBRACE, - STATE(2275), 1, - sym_statement_block, - [142985] = 3, - ACTIONS(3), 1, + [247828] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12343), 1, + anon_sym_readonly, + STATE(8261), 1, sym_comment, - ACTIONS(8298), 1, - anon_sym_LBRACE, - STATE(850), 1, - sym_switch_body, - [142995] = 3, - ACTIONS(3), 1, + [247841] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5645), 1, + anon_sym_in, + STATE(8262), 1, sym_comment, - ACTIONS(4048), 1, - anon_sym_LBRACE, - STATE(2280), 1, - sym_statement_block, - [143005] = 3, + [247854] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12345), 1, + sym_identifier, + STATE(8263), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_from, - STATE(4610), 1, - sym__from_clause, - [143015] = 3, + [247867] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12347), 1, + sym_identifier, + STATE(8264), 1, sym_comment, - ACTIONS(4048), 1, - anon_sym_LBRACE, - STATE(2283), 1, - sym_statement_block, - [143025] = 2, - ACTIONS(3), 1, + [247880] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12349), 1, + anon_sym_RBRACK, + STATE(8265), 1, sym_comment, - ACTIONS(8300), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143033] = 3, - ACTIONS(3), 1, + [247893] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12351), 1, + anon_sym_RBRACK, + STATE(8266), 1, sym_comment, - ACTIONS(8074), 1, - anon_sym_LPAREN, - STATE(4609), 1, - sym_parenthesized_expression, - [143043] = 3, + [247906] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12353), 1, + sym_identifier, + STATE(8267), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_from, - STATE(4413), 1, - sym__from_clause, - [143053] = 2, + [247919] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12355), 1, + sym_identifier, + STATE(8268), 1, sym_comment, - ACTIONS(4239), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143061] = 3, - ACTIONS(3), 1, + [247932] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6461), 1, + anon_sym_RPAREN, + STATE(8269), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(4414), 1, - sym_statement_block, - [143071] = 3, - ACTIONS(3), 1, + [247945] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12357), 1, + anon_sym_RBRACK, + STATE(8270), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_LBRACE, - STATE(1697), 1, - sym_class_body, - [143081] = 3, - ACTIONS(3), 1, + [247958] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12359), 1, + anon_sym_RPAREN, + STATE(8271), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(3635), 1, - sym_formal_parameters, - [143091] = 3, - ACTIONS(3), 1, + [247971] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12361), 1, + anon_sym_class, + STATE(8272), 1, sym_comment, - ACTIONS(4559), 1, - anon_sym_LPAREN, - STATE(2311), 1, - sym_arguments, - [143101] = 3, - ACTIONS(3), 1, + [247984] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7727), 1, + anon_sym_is, + STATE(8273), 1, sym_comment, - ACTIONS(6102), 1, - anon_sym_COLON, - STATE(4152), 1, - sym_type_annotation, - [143111] = 3, - ACTIONS(3), 1, + [247997] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6581), 1, + anon_sym_RBRACK, + STATE(8274), 1, sym_comment, - ACTIONS(8302), 1, - sym_identifier, - STATE(4144), 1, - sym_nested_identifier, - [143121] = 3, - ACTIONS(3), 1, + [248010] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12363), 1, + anon_sym_RBRACK, + STATE(8275), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4680), 1, - sym_formal_parameters, - [143131] = 2, - ACTIONS(3), 1, + [248023] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12365), 1, + anon_sym_RBRACK, + STATE(8276), 1, sym_comment, - ACTIONS(6743), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [143139] = 2, - ACTIONS(3), 1, + [248036] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12367), 1, + anon_sym_RBRACK, + STATE(8277), 1, sym_comment, - ACTIONS(6745), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [143147] = 2, - ACTIONS(3), 1, + [248049] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12369), 1, + anon_sym_RBRACK, + STATE(8278), 1, sym_comment, - ACTIONS(8304), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143155] = 3, - ACTIONS(3), 1, + [248062] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12371), 1, + anon_sym_RBRACK, + STATE(8279), 1, sym_comment, - ACTIONS(2314), 1, - anon_sym_LBRACE, - STATE(689), 1, - sym_statement_block, - [143165] = 3, - ACTIONS(3), 1, + [248075] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12373), 1, + anon_sym_EQ_GT, + STATE(8280), 1, sym_comment, - ACTIONS(6363), 1, - anon_sym_LBRACE, - STATE(2618), 1, - sym_class_body, - [143175] = 3, - ACTIONS(3), 1, + [248088] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12375), 1, + anon_sym_DOT, + STATE(8281), 1, sym_comment, - ACTIONS(8306), 1, - sym_identifier, - STATE(4181), 1, - sym_nested_identifier, - [143185] = 3, - ACTIONS(3), 1, + [248101] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12377), 1, + anon_sym_RBRACK, + STATE(8282), 1, sym_comment, - ACTIONS(6349), 1, - anon_sym_LBRACE, - STATE(2536), 1, - sym_class_body, - [143195] = 3, + [248114] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12379), 1, + sym_regex_pattern, + STATE(8283), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4811), 1, - sym_formal_parameters, - [143205] = 3, - ACTIONS(3), 1, + [248127] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12381), 1, + anon_sym_RBRACK, + STATE(8284), 1, sym_comment, - ACTIONS(4272), 1, - anon_sym_LBRACE, - STATE(1699), 1, - sym_statement_block, - [143215] = 3, + [248140] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12383), 1, + sym_regex_pattern, + STATE(8285), 1, sym_comment, - ACTIONS(8308), 1, - anon_sym_SEMI, - ACTIONS(8310), 1, - sym__automatic_semicolon, - [143225] = 3, - ACTIONS(3), 1, + [248153] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12385), 1, + anon_sym_EQ_GT, + STATE(8286), 1, sym_comment, - ACTIONS(8312), 1, - sym_identifier, - ACTIONS(8314), 1, - sym_private_property_identifier, - [143235] = 3, - ACTIONS(3), 1, + [248166] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12387), 1, + anon_sym_DOT, + STATE(8287), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4782), 1, - sym_formal_parameters, - [143245] = 3, - ACTIONS(3), 1, + [248179] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12389), 1, + anon_sym_EQ_GT, + STATE(8288), 1, sym_comment, - ACTIONS(8316), 1, - anon_sym_SEMI, - ACTIONS(8318), 1, - sym__automatic_semicolon, - [143255] = 3, - ACTIONS(3), 1, + [248192] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12391), 1, + anon_sym_RBRACK, + STATE(8289), 1, sym_comment, - ACTIONS(8320), 1, - sym_identifier, - ACTIONS(8322), 1, - anon_sym_STAR, - [143265] = 3, - ACTIONS(3), 1, + [248205] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12393), 1, + anon_sym_EQ, + STATE(8290), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_from, - STATE(4484), 1, - sym__from_clause, - [143275] = 3, - ACTIONS(3), 1, + [248218] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6475), 1, + anon_sym_RPAREN, + STATE(8291), 1, sym_comment, - ACTIONS(7095), 1, - anon_sym_LBRACE, - STATE(681), 1, - sym_statement_block, - [143285] = 2, - ACTIONS(3), 1, + [248231] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12395), 1, + anon_sym_RPAREN, + STATE(8292), 1, sym_comment, - ACTIONS(8324), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143293] = 2, + [248244] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12397), 1, + sym_identifier, + STATE(8293), 1, sym_comment, - ACTIONS(8326), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143301] = 3, + [248257] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12399), 1, + sym_identifier, + STATE(8294), 1, sym_comment, - ACTIONS(2314), 1, - anon_sym_LBRACE, - STATE(693), 1, - sym_statement_block, - [143311] = 3, - ACTIONS(3), 1, + [248270] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12401), 1, + anon_sym_EQ_GT, + STATE(8295), 1, sym_comment, - ACTIONS(6363), 1, - anon_sym_LBRACE, - STATE(2674), 1, - sym_class_body, - [143321] = 3, - ACTIONS(3), 1, + [248283] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12403), 1, + anon_sym_EQ_GT, + STATE(8296), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_LPAREN, - STATE(4777), 1, - sym_formal_parameters, - [143331] = 3, - ACTIONS(3), 1, + [248296] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12405), 1, + anon_sym_EQ_GT, + STATE(8297), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - STATE(2101), 1, - sym_class_body, - [143341] = 3, - ACTIONS(3), 1, + [248309] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12407), 1, + anon_sym_EQ, + STATE(8298), 1, sym_comment, - ACTIONS(6363), 1, - anon_sym_LBRACE, - STATE(2682), 1, - sym_class_body, - [143351] = 3, - ACTIONS(3), 1, + [248322] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12409), 1, + anon_sym_RBRACK, + STATE(8299), 1, sym_comment, - ACTIONS(4048), 1, - anon_sym_LBRACE, - STATE(2102), 1, - sym_statement_block, - [143361] = 3, - ACTIONS(3), 1, + [248335] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12411), 1, + anon_sym_EQ_GT, + STATE(8300), 1, + sym_comment, + [248348] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6949), 1, + anon_sym_in, + STATE(8301), 1, sym_comment, - ACTIONS(8164), 1, - anon_sym_LPAREN, - STATE(53), 1, - sym__for_header, - [143371] = 3, - ACTIONS(3), 1, + [248361] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12413), 1, + anon_sym_RBRACK, + STATE(8302), 1, sym_comment, - ACTIONS(6349), 1, - anon_sym_LBRACE, - STATE(2542), 1, - sym_class_body, - [143381] = 3, - ACTIONS(3), 1, + [248374] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12415), 1, + anon_sym_RBRACK, + STATE(8303), 1, sym_comment, - ACTIONS(6349), 1, - anon_sym_LBRACE, - STATE(2545), 1, - sym_class_body, - [143391] = 2, - ACTIONS(3), 1, + [248387] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12417), 1, + anon_sym_RBRACK, + STATE(8304), 1, sym_comment, - ACTIONS(8328), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143399] = 3, - ACTIONS(3), 1, + [248400] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12419), 1, + anon_sym_RBRACK, + STATE(8305), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_LBRACE, - STATE(1775), 1, - sym_class_body, - [143409] = 3, + [248413] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12421), 1, + sym_identifier, + STATE(8306), 1, sym_comment, - ACTIONS(4272), 1, - anon_sym_LBRACE, - STATE(1774), 1, - sym_statement_block, - [143419] = 2, - ACTIONS(3), 1, + [248426] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12423), 1, + anon_sym_RBRACK, + STATE(8307), 1, sym_comment, - ACTIONS(8330), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143427] = 2, + [248439] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12425), 1, + sym_regex_pattern, + STATE(8308), 1, sym_comment, - ACTIONS(7871), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [143435] = 2, - ACTIONS(3), 1, + [248452] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12427), 1, + anon_sym_RBRACK, + STATE(8309), 1, sym_comment, - ACTIONS(4996), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143443] = 2, - ACTIONS(3), 1, + [248465] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12429), 1, + anon_sym_RBRACK, + STATE(8310), 1, sym_comment, - ACTIONS(4998), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143451] = 3, + [248478] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12431), 1, + sym_identifier, + STATE(8311), 1, sym_comment, - ACTIONS(8332), 1, - anon_sym_LBRACE, - STATE(2627), 1, - sym_enum_body, - [143461] = 3, - ACTIONS(3), 1, + [248491] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12433), 1, + anon_sym_RBRACK, + STATE(8312), 1, sym_comment, - ACTIONS(8334), 1, - anon_sym_LBRACE, - STATE(2529), 1, - sym_switch_body, - [143471] = 3, - ACTIONS(3), 1, + [248504] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6104), 1, + anon_sym_in, + STATE(8313), 1, sym_comment, - ACTIONS(2314), 1, - anon_sym_LBRACE, - STATE(760), 1, - sym_statement_block, - [143481] = 3, - ACTIONS(3), 1, + [248517] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12435), 1, + anon_sym_RBRACK, + STATE(8314), 1, sym_comment, - ACTIONS(3367), 1, - anon_sym_LPAREN, - STATE(2970), 1, - sym_arguments, - [143491] = 3, - ACTIONS(3), 1, + [248530] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12437), 1, + anon_sym_RBRACK, + STATE(8315), 1, sym_comment, - ACTIONS(8336), 1, - anon_sym_SEMI, - ACTIONS(8338), 1, - sym__automatic_semicolon, - [143501] = 3, - ACTIONS(3), 1, + [248543] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12439), 1, + anon_sym_RBRACK, + STATE(8316), 1, sym_comment, - ACTIONS(8340), 1, - sym_identifier, - STATE(4453), 1, - sym__qml_enum_assignment, - [143511] = 3, + [248556] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12441), 1, + sym_identifier, + STATE(8317), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2506), 1, - sym_statement_block, - [143521] = 3, - ACTIONS(3), 1, + [248569] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12443), 1, + anon_sym_EQ_GT, + STATE(8318), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_LBRACE, - STATE(1734), 1, - sym_class_body, - [143531] = 3, - ACTIONS(3), 1, + [248582] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12445), 1, + anon_sym_while, + STATE(8319), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_LBRACE, - STATE(1741), 1, - sym_class_body, - [143541] = 3, - ACTIONS(3), 1, + [248595] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10528), 1, + anon_sym_EQ, + STATE(8320), 1, sym_comment, - ACTIONS(4272), 1, - anon_sym_LBRACE, - STATE(1743), 1, - sym_statement_block, - [143551] = 3, + [248608] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12447), 1, + sym_identifier, + STATE(8321), 1, sym_comment, - ACTIONS(4272), 1, - anon_sym_LBRACE, - STATE(1746), 1, - sym_statement_block, - [143561] = 3, - ACTIONS(3), 1, + [248621] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12449), 1, + anon_sym_function, + STATE(8322), 1, sym_comment, - ACTIONS(4272), 1, - anon_sym_LBRACE, - STATE(1747), 1, - sym_statement_block, - [143571] = 2, - ACTIONS(3), 1, + [248634] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12451), 1, + anon_sym_LBRACK, + STATE(8323), 1, sym_comment, - ACTIONS(8342), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143579] = 3, + [248647] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12453), 1, + sym_identifier, + STATE(8324), 1, sym_comment, - ACTIONS(3966), 1, - anon_sym_LPAREN, - STATE(1749), 1, - sym_arguments, - [143589] = 3, + [248660] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8882), 1, + sym_identifier, + STATE(8325), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - STATE(2121), 1, - sym_class_body, - [143599] = 3, - ACTIONS(3), 1, + [248673] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12455), 1, + anon_sym_EQ, + STATE(8326), 1, sym_comment, - ACTIONS(6363), 1, - anon_sym_LBRACE, - STATE(2670), 1, - sym_class_body, - [143609] = 2, + [248686] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12457), 1, + sym_identifier, + STATE(8327), 1, sym_comment, - ACTIONS(8344), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143617] = 3, - ACTIONS(3), 1, + [248699] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12459), 1, + anon_sym_RBRACK, + STATE(8328), 1, sym_comment, - ACTIONS(4048), 1, - anon_sym_LBRACE, - STATE(2125), 1, - sym_statement_block, - [143627] = 3, + [248712] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12461), 1, + sym_identifier, + STATE(8329), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - STATE(2129), 1, - sym_class_body, - [143637] = 3, + [248725] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12463), 1, + sym_identifier, + STATE(8330), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_LPAREN, - STATE(48), 1, - sym_parenthesized_expression, - [143647] = 2, - ACTIONS(3), 1, + [248738] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12465), 1, + anon_sym_EQ, + STATE(8331), 1, sym_comment, - ACTIONS(8346), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143655] = 3, - ACTIONS(3), 1, + [248751] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12467), 1, + anon_sym_COLON, + STATE(8332), 1, sym_comment, - ACTIONS(8348), 1, - anon_sym_SEMI, - ACTIONS(8350), 1, - sym__automatic_semicolon, - [143665] = 3, - ACTIONS(3), 1, + [248764] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12469), 1, + anon_sym_RBRACK, + STATE(8333), 1, sym_comment, - ACTIONS(6349), 1, - anon_sym_LBRACE, - STATE(2532), 1, - sym_class_body, - [143675] = 2, - ACTIONS(3), 1, + [248777] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12471), 1, + anon_sym_RBRACK, + STATE(8334), 1, sym_comment, - ACTIONS(8352), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143683] = 3, - ACTIONS(3), 1, + [248790] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12473), 1, + anon_sym_RBRACK, + STATE(8335), 1, sym_comment, - ACTIONS(8354), 1, - anon_sym_SEMI, - ACTIONS(8356), 1, - sym__automatic_semicolon, - [143693] = 3, + [248803] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12475), 1, + sym_identifier, + STATE(8336), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_LBRACE, - STATE(1769), 1, - sym_class_body, - [143703] = 2, - ACTIONS(3), 1, + [248816] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12477), 1, + anon_sym_RBRACK, + STATE(8337), 1, sym_comment, - ACTIONS(8358), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143711] = 3, - ACTIONS(3), 1, + [248829] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12479), 1, + anon_sym_RBRACK, + STATE(8338), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_LBRACE, - STATE(1767), 1, - sym_class_body, - [143721] = 3, - ACTIONS(3), 1, + [248842] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12481), 1, + anon_sym_RBRACK, + STATE(8339), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_LBRACE, - STATE(1752), 1, - sym_class_body, - [143731] = 3, - ACTIONS(3), 1, + [248855] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12483), 1, + anon_sym_RBRACK, + STATE(8340), 1, sym_comment, - ACTIONS(6445), 1, - anon_sym_LBRACE, - STATE(2485), 1, - sym_statement_block, - [143741] = 3, - ACTIONS(3), 1, + [248868] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12485), 1, + anon_sym_RBRACK, + STATE(8341), 1, sym_comment, - ACTIONS(7095), 1, - anon_sym_LBRACE, - STATE(688), 1, - sym_statement_block, - [143751] = 3, - ACTIONS(3), 1, + [248881] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12487), 1, + anon_sym_RBRACK, + STATE(8342), 1, sym_comment, - ACTIONS(4272), 1, - anon_sym_LBRACE, - STATE(1765), 1, - sym_statement_block, - [143761] = 3, - ACTIONS(3), 1, + [248894] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12489), 1, + anon_sym_RBRACK, + STATE(8343), 1, sym_comment, - ACTIONS(8360), 1, - sym_identifier, - STATE(4247), 1, - sym__qml_enum_assignment, - [143771] = 3, - ACTIONS(3), 1, + [248907] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12491), 1, + anon_sym_RBRACK, + STATE(8344), 1, sym_comment, - ACTIONS(4272), 1, - anon_sym_LBRACE, - STATE(1764), 1, - sym_statement_block, - [143781] = 3, - ACTIONS(3), 1, + [248920] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12493), 1, + anon_sym_RBRACK, + STATE(8345), 1, sym_comment, - ACTIONS(4272), 1, - anon_sym_LBRACE, - STATE(1763), 1, - sym_statement_block, - [143791] = 3, - ACTIONS(3), 1, + [248933] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12495), 1, + anon_sym_RBRACK, + STATE(8346), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_LBRACE, - STATE(1759), 1, - sym_class_body, - [143801] = 2, - ACTIONS(3), 1, + [248946] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12497), 1, + anon_sym_RBRACK, + STATE(8347), 1, sym_comment, - ACTIONS(8362), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143809] = 3, - ACTIONS(3), 1, + [248959] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12499), 1, + anon_sym_RBRACK, + STATE(8348), 1, sym_comment, - ACTIONS(8364), 1, - anon_sym_SEMI, - ACTIONS(8366), 1, - sym__automatic_semicolon, - [143819] = 2, - ACTIONS(3), 1, + [248972] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12501), 1, + anon_sym_RBRACK, + STATE(8349), 1, sym_comment, - ACTIONS(8368), 2, - anon_sym_COMMA, + [248985] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6499), 1, anon_sym_RPAREN, - [143827] = 2, - ACTIONS(3), 1, + STATE(8350), 1, sym_comment, - ACTIONS(8370), 2, - anon_sym_COMMA, + [248998] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12503), 1, + anon_sym_RBRACK, + STATE(8351), 1, + sym_comment, + [249011] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12505), 1, anon_sym_RPAREN, - [143835] = 2, - ACTIONS(3), 1, + STATE(8352), 1, sym_comment, - ACTIONS(8372), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143843] = 2, - ACTIONS(3), 1, + [249024] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12507), 1, + anon_sym_RBRACK, + STATE(8353), 1, sym_comment, - ACTIONS(8374), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143851] = 3, - ACTIONS(3), 1, + [249037] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12509), 1, + anon_sym_RBRACK, + STATE(8354), 1, sym_comment, - ACTIONS(8376), 1, - sym_identifier, - ACTIONS(8378), 1, - sym_private_property_identifier, - [143861] = 3, - ACTIONS(3), 1, + [249050] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12511), 1, + anon_sym_RBRACK, + STATE(8355), 1, sym_comment, - ACTIONS(8380), 1, - anon_sym_SEMI, - ACTIONS(8382), 1, - sym__automatic_semicolon, - [143871] = 3, - ACTIONS(3), 1, + [249063] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12513), 1, + anon_sym_EQ_GT, + STATE(8356), 1, sym_comment, - ACTIONS(8384), 1, - sym_identifier, - ACTIONS(8386), 1, - sym_private_property_identifier, - [143881] = 3, - ACTIONS(3), 1, + [249076] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6451), 1, + anon_sym_in, + STATE(8357), 1, sym_comment, - ACTIONS(8388), 1, - sym_identifier, - ACTIONS(8390), 1, - sym_private_property_identifier, - [143891] = 3, - ACTIONS(3), 1, + [249089] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12515), 1, + anon_sym_EQ_GT, + STATE(8358), 1, sym_comment, - ACTIONS(8064), 1, - sym_identifier, - ACTIONS(8068), 1, - sym_private_property_identifier, - [143901] = 2, + [249102] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12517), 1, + sym_identifier, + STATE(8359), 1, sym_comment, - ACTIONS(8392), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143909] = 3, + [249115] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12519), 1, + sym_identifier, + STATE(8360), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_LBRACE, - STATE(2226), 1, - sym_class_body, - [143919] = 3, + [249128] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12521), 1, + sym_identifier, + STATE(8361), 1, sym_comment, - ACTIONS(3924), 1, - anon_sym_LBRACE, - STATE(814), 1, - sym_statement_block, - [143929] = 3, - ACTIONS(3), 1, + [249141] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12523), 1, + anon_sym_DOT, + STATE(8362), 1, sym_comment, - ACTIONS(7700), 1, - sym_identifier, - STATE(4268), 1, - sym_type_parameter, - [143939] = 3, - ACTIONS(3), 1, + [249154] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12525), 1, + anon_sym_RBRACK, + STATE(8363), 1, sym_comment, - ACTIONS(8332), 1, - anon_sym_LBRACE, - STATE(2582), 1, - sym_enum_body, - [143949] = 3, + [249167] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12527), 1, + sym_identifier, + STATE(8364), 1, sym_comment, - ACTIONS(8394), 1, - anon_sym_SEMI, - ACTIONS(8396), 1, - sym__automatic_semicolon, - [143959] = 2, + [249180] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12529), 1, + sym_identifier, + STATE(8365), 1, sym_comment, - ACTIONS(8398), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143967] = 2, - ACTIONS(3), 1, + [249193] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6631), 1, + anon_sym_RPAREN, + STATE(8366), 1, sym_comment, - ACTIONS(8400), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [143975] = 2, - ACTIONS(3), 1, + [249206] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12531), 1, + anon_sym_RPAREN, + STATE(8367), 1, sym_comment, - ACTIONS(6275), 1, - anon_sym_is, - [143982] = 2, - ACTIONS(3), 1, + [249219] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12533), 1, + anon_sym_GT, + STATE(8368), 1, sym_comment, - ACTIONS(8402), 1, - anon_sym_as, - [143989] = 2, - ACTIONS(3), 1, + [249232] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6635), 1, + anon_sym_RPAREN, + STATE(8369), 1, sym_comment, - ACTIONS(8404), 1, - anon_sym_EQ_GT, - [143996] = 2, - ACTIONS(3), 1, + [249245] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5907), 1, + anon_sym_RPAREN, + STATE(8370), 1, sym_comment, - ACTIONS(8406), 1, + [249258] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12535), 1, anon_sym_EQ_GT, - [144003] = 2, - ACTIONS(3), 1, + STATE(8371), 1, sym_comment, - ACTIONS(8408), 1, + [249271] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12537), 1, anon_sym_EQ_GT, - [144010] = 2, - ACTIONS(3), 1, + STATE(8372), 1, sym_comment, - ACTIONS(8410), 1, - anon_sym_EQ, - [144017] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, - anon_sym_RBRACE, - [144024] = 2, + [249284] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8412), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12539), 1, sym_identifier, - [144031] = 2, - ACTIONS(3), 1, + STATE(8373), 1, sym_comment, - ACTIONS(8414), 1, - anon_sym_EQ_GT, - [144038] = 2, + [249297] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12541), 1, + sym_identifier, + STATE(8374), 1, sym_comment, - ACTIONS(8416), 1, + [249310] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12543), 1, anon_sym_EQ_GT, - [144045] = 2, - ACTIONS(3), 1, + STATE(8375), 1, sym_comment, - ACTIONS(5116), 1, + [249323] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12545), 1, anon_sym_RBRACK, - [144052] = 2, - ACTIONS(3), 1, + STATE(8376), 1, sym_comment, - ACTIONS(6246), 1, - anon_sym_is, - [144059] = 2, - ACTIONS(3), 1, + [249336] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12547), 1, + anon_sym_EQ, + STATE(8377), 1, sym_comment, - ACTIONS(8418), 1, + [249349] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12549), 1, anon_sym_RBRACK, - [144066] = 2, - ACTIONS(3), 1, + STATE(8378), 1, + sym_comment, + [249362] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12551), 1, + anon_sym_EQ_GT, + STATE(8379), 1, sym_comment, - ACTIONS(5076), 1, + [249375] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12553), 1, anon_sym_RBRACK, - [144073] = 2, - ACTIONS(3), 1, + STATE(8380), 1, sym_comment, - ACTIONS(8420), 1, - sym_identifier, - [144080] = 2, - ACTIONS(3), 1, + [249388] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12555), 1, + anon_sym_RBRACK, + STATE(8381), 1, sym_comment, - ACTIONS(8422), 1, - anon_sym_class, - [144087] = 2, - ACTIONS(3), 1, + [249401] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12557), 1, + anon_sym_SLASH2, + STATE(8382), 1, sym_comment, - ACTIONS(8424), 1, - sym_identifier, - [144094] = 2, + [249414] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8426), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12559), 1, sym_identifier, - [144101] = 2, - ACTIONS(3), 1, + STATE(8383), 1, sym_comment, - ACTIONS(8428), 1, - anon_sym_EQ, - [144108] = 2, - ACTIONS(3), 1, + [249427] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12561), 1, + sym_number, + STATE(8384), 1, sym_comment, - ACTIONS(8430), 1, + [249440] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12563), 1, anon_sym_RBRACK, - [144115] = 2, - ACTIONS(3), 1, + STATE(8385), 1, sym_comment, - ACTIONS(8432), 1, - anon_sym_EQ_GT, - [144122] = 2, + [249453] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12565), 1, + sym_identifier, + STATE(8386), 1, sym_comment, - ACTIONS(8434), 1, - anon_sym_RBRACK, - [144129] = 2, - ACTIONS(3), 1, + [249466] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12567), 1, + anon_sym_symbol, + STATE(8387), 1, sym_comment, - ACTIONS(8436), 1, - anon_sym_EQ_GT, - [144136] = 2, + [249479] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12569), 1, + sym_identifier, + STATE(8388), 1, sym_comment, - ACTIONS(7756), 1, - anon_sym_RBRACK, - [144143] = 2, - ACTIONS(3), 1, + [249492] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12571), 1, + anon_sym_while, + STATE(8389), 1, sym_comment, - ACTIONS(8438), 1, + [249505] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12573), 1, anon_sym_RBRACK, - [144150] = 2, + STATE(8390), 1, + sym_comment, + [249518] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12575), 1, + sym_identifier, + STATE(8391), 1, sym_comment, - ACTIONS(8440), 1, + [249531] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12577), 1, + anon_sym_EQ_GT, + STATE(8392), 1, + sym_comment, + [249544] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12579), 1, anon_sym_RBRACK, - [144157] = 2, - ACTIONS(3), 1, + STATE(8393), 1, sym_comment, - ACTIONS(8442), 1, + [249557] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12581), 1, anon_sym_RBRACK, - [144164] = 2, - ACTIONS(3), 1, + STATE(8394), 1, sym_comment, - ACTIONS(8444), 1, - anon_sym_RPAREN, - [144171] = 2, + [249570] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8446), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12583), 1, sym_identifier, - [144178] = 2, - ACTIONS(3), 1, + STATE(8395), 1, sym_comment, - ACTIONS(8448), 1, + [249583] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12585), 1, anon_sym_RBRACK, - [144185] = 2, - ACTIONS(3), 1, + STATE(8396), 1, sym_comment, - ACTIONS(8450), 1, - sym_identifier, - [144192] = 2, + [249596] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12587), 1, + sym_identifier, + STATE(8397), 1, sym_comment, - ACTIONS(4906), 1, - anon_sym_DOT, - [144199] = 2, - ACTIONS(7230), 1, + [249609] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12589), 1, + anon_sym_RPAREN, + STATE(8398), 1, sym_comment, - ACTIONS(8452), 1, - sym_regex_pattern, - [144206] = 2, - ACTIONS(3), 1, + [249622] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12591), 1, + anon_sym_from, + STATE(8399), 1, sym_comment, - ACTIONS(8454), 1, + [249635] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12593), 1, anon_sym_RBRACK, - [144213] = 2, + STATE(8400), 1, + sym_comment, + [249648] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12595), 1, + sym_identifier, + STATE(8401), 1, sym_comment, - ACTIONS(8456), 1, + [249661] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12597), 1, anon_sym_RBRACK, - [144220] = 2, - ACTIONS(3), 1, + STATE(8402), 1, sym_comment, - ACTIONS(8458), 1, + [249674] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12599), 1, anon_sym_RBRACK, - [144227] = 2, - ACTIONS(3), 1, + STATE(8403), 1, sym_comment, - ACTIONS(8460), 1, - anon_sym_EQ_GT, - [144234] = 2, + [249687] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8462), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12601), 1, sym_identifier, - [144241] = 2, - ACTIONS(3), 1, + STATE(8404), 1, sym_comment, - ACTIONS(8464), 1, - sym_identifier, - [144248] = 2, + [249700] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8466), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12603), 1, sym_identifier, - [144255] = 2, - ACTIONS(3), 1, + STATE(8405), 1, sym_comment, - ACTIONS(7589), 1, - anon_sym_RBRACE, - [144262] = 2, - ACTIONS(3), 1, + [249713] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6633), 1, + anon_sym_RPAREN, + STATE(8406), 1, sym_comment, - ACTIONS(4769), 1, + [249726] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12605), 1, anon_sym_RPAREN, - [144269] = 2, + STATE(8407), 1, + sym_comment, + [249739] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12607), 1, + sym_identifier, + STATE(8408), 1, sym_comment, - ACTIONS(5130), 1, + [249752] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12609), 1, + anon_sym_COLON, + STATE(8409), 1, + sym_comment, + [249765] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12611), 1, anon_sym_RPAREN, - [144276] = 2, - ACTIONS(3), 1, + STATE(8410), 1, sym_comment, - ACTIONS(8468), 1, + [249778] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12613), 1, anon_sym_RPAREN, - [144283] = 2, - ACTIONS(3), 1, + STATE(8411), 1, sym_comment, - ACTIONS(8470), 1, - anon_sym_RBRACK, - [144290] = 2, - ACTIONS(3), 1, + [249791] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12615), 1, + anon_sym_RPAREN, + STATE(8412), 1, sym_comment, - ACTIONS(8472), 1, - anon_sym_RBRACK, - [144297] = 2, + [249804] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8474), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12617), 1, sym_identifier, - [144304] = 2, - ACTIONS(3), 1, + STATE(8413), 1, sym_comment, - ACTIONS(8476), 1, - anon_sym_RBRACK, - [144311] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8478), 1, - sym_identifier, - [144318] = 2, - ACTIONS(3), 1, + [249817] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12619), 1, + anon_sym_DOT, + STATE(8414), 1, sym_comment, - ACTIONS(8480), 1, - anon_sym_EQ, - [144325] = 2, + [249830] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8482), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12621), 1, sym_identifier, - [144332] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8484), 1, - anon_sym_EQ_GT, - [144339] = 2, - ACTIONS(3), 1, + STATE(8415), 1, sym_comment, - ACTIONS(8486), 1, + [249843] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12623), 1, anon_sym_RBRACK, - [144346] = 2, - ACTIONS(3), 1, + STATE(8416), 1, sym_comment, - ACTIONS(8488), 1, - anon_sym_RBRACK, - [144353] = 2, - ACTIONS(3), 1, + [249856] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6629), 1, + anon_sym_RPAREN, + STATE(8417), 1, sym_comment, - ACTIONS(8490), 1, - anon_sym_RBRACK, - [144360] = 2, - ACTIONS(3), 1, + [249869] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6627), 1, + anon_sym_RPAREN, + STATE(8418), 1, sym_comment, - ACTIONS(8492), 1, - anon_sym_RBRACK, - [144367] = 2, + [249882] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8494), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12625), 1, sym_identifier, - [144374] = 2, - ACTIONS(3), 1, + STATE(8419), 1, sym_comment, - ACTIONS(8496), 1, - sym_identifier, - [144381] = 2, + [249895] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8498), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12627), 1, sym_identifier, - [144388] = 2, - ACTIONS(3), 1, + STATE(8420), 1, sym_comment, - ACTIONS(8500), 1, - anon_sym_target, - [144395] = 2, - ACTIONS(3), 1, + [249908] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12629), 1, + anon_sym_RPAREN, + STATE(8421), 1, sym_comment, - ACTIONS(8502), 1, - anon_sym_RBRACK, - [144402] = 2, + [249921] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12631), 1, + sym_identifier, + STATE(8422), 1, sym_comment, - ACTIONS(8504), 1, - anon_sym_EQ_GT, - [144409] = 2, + [249934] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12633), 1, + sym_identifier, + STATE(8423), 1, sym_comment, - ACTIONS(8506), 1, - anon_sym_EQ_GT, - [144416] = 2, + [249947] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8508), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12635), 1, sym_identifier, - [144423] = 2, - ACTIONS(3), 1, + STATE(8424), 1, sym_comment, - ACTIONS(8510), 1, + [249960] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10621), 1, anon_sym_RBRACK, - [144430] = 2, - ACTIONS(3), 1, + STATE(8425), 1, sym_comment, - ACTIONS(8512), 1, - anon_sym_RBRACK, - [144437] = 2, - ACTIONS(3), 1, + [249973] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12637), 1, + anon_sym_while, + STATE(8426), 1, sym_comment, - ACTIONS(1882), 1, + [249986] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12639), 1, anon_sym_EQ_GT, - [144444] = 2, - ACTIONS(3), 1, + STATE(8427), 1, sym_comment, - ACTIONS(8514), 1, - anon_sym_EQ_GT, - [144451] = 2, + [249999] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12641), 1, + sym_identifier, + STATE(8428), 1, sym_comment, - ACTIONS(8516), 1, + [250012] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12643), 1, anon_sym_EQ_GT, - [144458] = 2, + STATE(8429), 1, + sym_comment, + [250025] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12645), 1, + sym_identifier, + STATE(8430), 1, sym_comment, - ACTIONS(8518), 1, - anon_sym_SLASH2, - [144465] = 2, + [250038] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12647), 1, + sym_identifier, + STATE(8431), 1, sym_comment, - ACTIONS(8520), 1, - anon_sym_EQ_GT, - [144472] = 2, + [250051] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12649), 1, + sym_identifier, + STATE(8432), 1, sym_comment, - ACTIONS(5157), 1, + [250064] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12651), 1, anon_sym_RBRACK, - [144479] = 2, - ACTIONS(3), 1, + STATE(8433), 1, sym_comment, - ACTIONS(8522), 1, - sym_identifier, - [144486] = 2, + [250077] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12653), 1, + sym_identifier, + STATE(8434), 1, sym_comment, - ACTIONS(8524), 1, - anon_sym_EQ, - [144493] = 2, + [250090] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12655), 1, + sym_identifier, + STATE(8435), 1, sym_comment, - ACTIONS(8526), 1, - sym_number, - [144500] = 2, + [250103] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8528), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12657), 1, sym_identifier, - [144507] = 2, - ACTIONS(3), 1, + STATE(8436), 1, sym_comment, - ACTIONS(8530), 1, - sym_identifier, - [144514] = 2, - ACTIONS(3), 1, + [250116] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12659), 1, + anon_sym_while, + STATE(8437), 1, sym_comment, - ACTIONS(8532), 1, - sym_identifier, - [144521] = 2, - ACTIONS(3), 1, + [250129] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12661), 1, + anon_sym_EQ_GT, + STATE(8438), 1, sym_comment, - ACTIONS(4899), 1, - anon_sym_RPAREN, - [144528] = 2, + [250142] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8534), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12663), 1, sym_identifier, - [144535] = 2, - ACTIONS(3), 1, + STATE(8439), 1, sym_comment, - ACTIONS(7659), 1, - anon_sym_RBRACE, - [144542] = 2, - ACTIONS(3), 1, + [250155] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12665), 1, + anon_sym_EQ_GT, + STATE(8440), 1, sym_comment, - ACTIONS(8536), 1, - anon_sym_from, - [144549] = 2, - ACTIONS(3), 1, + [250168] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5553), 1, + anon_sym_is, + STATE(8441), 1, sym_comment, - ACTIONS(8538), 1, - anon_sym_as, - [144556] = 2, + [250181] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8540), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12667), 1, sym_identifier, - [144563] = 2, - ACTIONS(3), 1, + STATE(8442), 1, sym_comment, - ACTIONS(8542), 1, - sym_identifier, - [144570] = 2, - ACTIONS(3), 1, + [250194] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12669), 1, + anon_sym_RPAREN, + STATE(8443), 1, sym_comment, - ACTIONS(8544), 1, - anon_sym_LBRACE, - [144577] = 2, + [250207] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8546), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12671), 1, sym_identifier, - [144584] = 2, - ACTIONS(3), 1, + STATE(8444), 1, sym_comment, - ACTIONS(8548), 1, - anon_sym_COLON, - [144591] = 2, - ACTIONS(3), 1, + [250220] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8017), 1, + anon_sym_is, + STATE(8445), 1, sym_comment, - ACTIONS(8550), 1, - anon_sym_EQ, - [144598] = 2, + [250233] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12673), 1, + sym_identifier, + STATE(8446), 1, sym_comment, - ACTIONS(8552), 1, - anon_sym_EQ_GT, - [144605] = 2, - ACTIONS(3), 1, + [250246] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6650), 1, + anon_sym_RBRACK, + STATE(8447), 1, sym_comment, - ACTIONS(7179), 1, - anon_sym_EQ, - [144612] = 2, + [250259] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12675), 1, + sym_identifier, + STATE(8448), 1, sym_comment, - ACTIONS(8554), 1, - sym_number, - [144619] = 2, - ACTIONS(3), 1, + [250272] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12677), 1, + anon_sym_RBRACK, + STATE(8449), 1, sym_comment, - ACTIONS(8556), 1, - sym_identifier, - [144626] = 2, + [250285] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12679), 1, + sym_identifier, + STATE(8450), 1, sym_comment, - ACTIONS(8558), 1, - anon_sym_EQ_GT, - [144633] = 2, - ACTIONS(3), 1, + [250298] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12681), 1, + anon_sym_RBRACK, + STATE(8451), 1, sym_comment, - ACTIONS(6538), 1, - anon_sym_EQ, - [144640] = 2, + [250311] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12683), 1, + sym_regex_pattern, + STATE(8452), 1, sym_comment, - ACTIONS(8560), 1, + [250324] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12685), 1, anon_sym_EQ_GT, - [144647] = 2, - ACTIONS(3), 1, + STATE(8453), 1, sym_comment, - ACTIONS(8562), 1, + [250337] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12687), 1, anon_sym_EQ_GT, - [144654] = 2, - ACTIONS(3), 1, + STATE(8454), 1, sym_comment, - ACTIONS(4847), 1, + [250350] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12689), 1, + anon_sym_RBRACK, + STATE(8455), 1, + sym_comment, + [250363] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12691), 1, + anon_sym_RBRACK, + STATE(8456), 1, + sym_comment, + [250376] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12693), 1, anon_sym_RPAREN, - [144661] = 2, - ACTIONS(3), 1, + STATE(8457), 1, sym_comment, - ACTIONS(7492), 1, - anon_sym_EQ, - [144668] = 2, - ACTIONS(3), 1, + [250389] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12695), 1, + anon_sym_RBRACK, + STATE(8458), 1, sym_comment, - ACTIONS(8564), 1, - sym_identifier, - [144675] = 2, - ACTIONS(3), 1, + [250402] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12697), 1, + anon_sym_DOT, + STATE(8459), 1, sym_comment, - ACTIONS(8566), 1, - anon_sym_EQ_GT, - [144682] = 2, - ACTIONS(3), 1, + [250415] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12699), 1, + anon_sym_DOT, + STATE(8460), 1, sym_comment, - ACTIONS(8568), 1, - sym_number, - [144689] = 2, - ACTIONS(3), 1, + [250428] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12701), 1, + anon_sym_RBRACK, + STATE(8461), 1, sym_comment, - ACTIONS(8570), 1, - anon_sym_EQ_GT, - [144696] = 2, - ACTIONS(3), 1, + [250441] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12703), 1, + anon_sym_RBRACK, + STATE(8462), 1, sym_comment, - ACTIONS(8572), 1, + [250454] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12705), 1, anon_sym_EQ_GT, - [144703] = 2, - ACTIONS(3), 1, + STATE(8463), 1, sym_comment, - ACTIONS(8574), 1, - sym_identifier, - [144710] = 2, - ACTIONS(3), 1, + [250467] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12707), 1, + anon_sym_RBRACK, + STATE(8464), 1, sym_comment, - ACTIONS(8576), 1, - anon_sym_SLASH2, - [144717] = 2, + [250480] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12709), 1, + sym_identifier, + STATE(8465), 1, sym_comment, - ACTIONS(8578), 1, - anon_sym_EQ_GT, - [144724] = 2, + [250493] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12711), 1, + sym_identifier, + STATE(8466), 1, + sym_comment, + [250506] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12713), 1, + anon_sym_RBRACK, + STATE(8467), 1, sym_comment, - ACTIONS(8580), 1, + [250519] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12715), 1, anon_sym_EQ_GT, - [144731] = 2, - ACTIONS(3), 1, + STATE(8468), 1, sym_comment, - ACTIONS(8582), 1, - sym_identifier, - [144738] = 2, - ACTIONS(3), 1, + [250532] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12717), 1, + anon_sym_as, + STATE(8469), 1, sym_comment, - ACTIONS(8584), 1, - anon_sym_COLON, - [144745] = 2, - ACTIONS(3), 1, + [250545] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12719), 1, + anon_sym_from, + STATE(8470), 1, sym_comment, - ACTIONS(8586), 1, - sym_identifier, - [144752] = 2, + [250558] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10571), 1, + anon_sym_RBRACE, + STATE(8471), 1, + sym_comment, + [250571] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12721), 1, + sym_identifier, + STATE(8472), 1, + sym_comment, + [250584] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12723), 1, + anon_sym_class, + STATE(8473), 1, sym_comment, - ACTIONS(8588), 1, + [250597] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12725), 1, sym_identifier, - [144759] = 2, + STATE(8474), 1, + sym_comment, + [250610] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12727), 1, + sym_identifier, + STATE(8475), 1, sym_comment, - ACTIONS(8590), 1, - anon_sym_EQ_GT, - [144766] = 2, + [250623] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12729), 1, + sym_identifier, + STATE(8476), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_RBRACK, - [144773] = 2, + [250636] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12731), 1, + sym_identifier, + STATE(8477), 1, sym_comment, - ACTIONS(8594), 1, + [250649] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12733), 1, anon_sym_EQ, - [144780] = 2, - ACTIONS(3), 1, + STATE(8478), 1, sym_comment, - ACTIONS(8596), 1, - anon_sym_EQ_GT, - [144787] = 2, + [250662] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12735), 1, + sym_identifier, + STATE(8479), 1, sym_comment, - ACTIONS(8598), 1, - anon_sym_EQ_GT, - [144794] = 2, + [250675] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12737), 1, + anon_sym_COLON, + STATE(8480), 1, + sym_comment, + [250688] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12739), 1, + sym_identifier, + STATE(8481), 1, sym_comment, - ACTIONS(8600), 1, - anon_sym_EQ_GT, - [144801] = 2, - ACTIONS(7230), 1, + [250701] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12741), 1, + anon_sym_RBRACK, + STATE(8482), 1, sym_comment, - ACTIONS(8602), 1, - sym_regex_pattern, - [144808] = 2, - ACTIONS(3), 1, + [250714] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12743), 1, + anon_sym_RBRACK, + STATE(8483), 1, sym_comment, - ACTIONS(8604), 1, - anon_sym_class, - [144815] = 2, + [250727] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8606), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12745), 1, sym_identifier, - [144822] = 2, - ACTIONS(3), 1, + STATE(8484), 1, sym_comment, - ACTIONS(8608), 1, - anon_sym_EQ_GT, - [144829] = 2, + [250740] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12747), 1, + sym_identifier, + STATE(8485), 1, sym_comment, - ACTIONS(8610), 1, - anon_sym_RPAREN, - [144836] = 2, - ACTIONS(3), 1, + [250753] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12749), 1, + anon_sym_RBRACK, + STATE(8486), 1, sym_comment, - ACTIONS(8612), 1, - anon_sym_new, - [144843] = 2, - ACTIONS(3), 1, + [250766] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12751), 1, + anon_sym_EQ, + STATE(8487), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_DOT, - [144850] = 2, - ACTIONS(7230), 1, + [250779] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6146), 1, + anon_sym_in, + STATE(8488), 1, sym_comment, - ACTIONS(8614), 1, - sym_regex_pattern, - [144857] = 2, - ACTIONS(3), 1, + [250792] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12753), 1, + anon_sym_RBRACK, + STATE(8489), 1, sym_comment, - ACTIONS(8616), 1, - sym_identifier, - [144864] = 2, + [250805] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12755), 1, + sym_identifier, + STATE(8490), 1, sym_comment, - ACTIONS(8618), 1, - anon_sym_EQ_GT, - [144871] = 2, - ACTIONS(3), 1, + [250818] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12757), 1, + anon_sym_RBRACK, + STATE(8491), 1, sym_comment, - ACTIONS(8620), 1, - anon_sym_LBRACK, - [144878] = 2, - ACTIONS(3), 1, + [250831] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12759), 1, + anon_sym_RBRACK, + STATE(8492), 1, sym_comment, - ACTIONS(7925), 1, + [250844] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12761), 1, anon_sym_RBRACK, - [144885] = 2, - ACTIONS(3), 1, + STATE(8493), 1, sym_comment, - ACTIONS(8020), 1, + [250857] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12763), 1, anon_sym_RBRACK, - [144892] = 2, - ACTIONS(3), 1, + STATE(8494), 1, sym_comment, - ACTIONS(8622), 1, - anon_sym_EQ_GT, - [144899] = 2, - ACTIONS(3), 1, + [250870] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12765), 1, + anon_sym_RBRACK, + STATE(8495), 1, sym_comment, - ACTIONS(8624), 1, - anon_sym_SLASH2, - [144906] = 2, + [250883] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12767), 1, + sym_identifier, + STATE(8496), 1, sym_comment, - ACTIONS(8626), 1, - anon_sym_EQ_GT, - [144913] = 2, + [250896] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8628), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12769), 1, sym_identifier, - [144920] = 2, - ACTIONS(3), 1, + STATE(8497), 1, sym_comment, - ACTIONS(7907), 1, - anon_sym_LBRACE, - [144927] = 2, - ACTIONS(3), 1, + [250909] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12771), 1, + anon_sym_RBRACK, + STATE(8498), 1, sym_comment, - ACTIONS(8630), 1, - anon_sym_EQ_GT, - [144934] = 2, - ACTIONS(3), 1, + [250922] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6041), 1, + anon_sym_RPAREN, + STATE(8499), 1, sym_comment, - ACTIONS(1886), 1, - anon_sym_EQ_GT, - [144941] = 2, + [250935] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12773), 1, + sym_identifier, + STATE(8500), 1, sym_comment, - ACTIONS(8632), 1, - anon_sym_EQ_GT, - [144948] = 2, + [250948] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12775), 1, + sym_identifier, + STATE(8501), 1, sym_comment, - ACTIONS(7396), 1, - anon_sym_EQ_GT, - [144955] = 2, + [250961] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12777), 1, + sym_identifier, + STATE(8502), 1, sym_comment, - ACTIONS(8634), 1, - anon_sym_EQ_GT, - [144962] = 2, + [250974] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6687), 1, + anon_sym_in, + STATE(8503), 1, + sym_comment, + [250987] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12779), 1, + sym_identifier, + STATE(8504), 1, sym_comment, - ACTIONS(8636), 1, + [251000] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12781), 1, anon_sym_EQ_GT, - [144969] = 2, - ACTIONS(3), 1, + STATE(8505), 1, sym_comment, - ACTIONS(8638), 1, + [251013] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12783), 1, anon_sym_EQ_GT, - [144976] = 2, - ACTIONS(3), 1, + STATE(8506), 1, sym_comment, - ACTIONS(8640), 1, + [251026] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12785), 1, anon_sym_EQ_GT, - [144983] = 2, - ACTIONS(3), 1, + STATE(8507), 1, sym_comment, - ACTIONS(8042), 1, - anon_sym_RBRACK, - [144990] = 2, - ACTIONS(3), 1, + [251039] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12787), 1, + anon_sym_EQ, + STATE(8508), 1, sym_comment, - ACTIONS(8642), 1, - sym_identifier, - [144997] = 2, + [251052] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8644), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12789), 1, sym_identifier, - [145004] = 2, - ACTIONS(3), 1, + STATE(8509), 1, sym_comment, - ACTIONS(8646), 1, - anon_sym_target, - [145011] = 2, - ACTIONS(3), 1, + [251065] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12791), 1, + anon_sym_EQ, + STATE(8510), 1, sym_comment, - ACTIONS(8648), 1, - anon_sym_RBRACK, - [145018] = 2, + [251078] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8650), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12793), 1, sym_identifier, - [145025] = 2, - ACTIONS(3), 1, + STATE(8511), 1, sym_comment, - ACTIONS(8652), 1, - anon_sym_RBRACK, - [145032] = 2, - ACTIONS(3), 1, + [251091] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12795), 1, + anon_sym_EQ, + STATE(8512), 1, sym_comment, - ACTIONS(8654), 1, - anon_sym_RBRACK, - [145039] = 2, - ACTIONS(3), 1, + [251104] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12797), 1, + anon_sym_class, + STATE(8513), 1, sym_comment, - ACTIONS(8656), 1, - anon_sym_RBRACK, - [145046] = 2, + [251117] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12799), 1, + sym_identifier, + STATE(8514), 1, sym_comment, - ACTIONS(5161), 1, - anon_sym_RBRACK, - [145053] = 2, - ACTIONS(3), 1, + [251130] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12801), 1, + anon_sym_EQ_GT, + STATE(8515), 1, sym_comment, - ACTIONS(8658), 1, - anon_sym_RBRACK, - [145060] = 2, - ACTIONS(3), 1, + [251143] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12803), 1, + anon_sym_EQ_GT, + STATE(8516), 1, sym_comment, - ACTIONS(6335), 1, - anon_sym_DOT, - [145067] = 2, - ACTIONS(7230), 1, + [251156] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12805), 1, + anon_sym_EQ_GT, + STATE(8517), 1, sym_comment, - ACTIONS(8660), 1, - sym_regex_pattern, - [145074] = 2, + [251169] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12807), 1, + sym_identifier, + STATE(8518), 1, sym_comment, - ACTIONS(8662), 1, - aux_sym_ui_version_specifier_token1, - [145081] = 2, + [251182] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12809), 1, + sym_identifier, + STATE(8519), 1, sym_comment, - ACTIONS(6064), 1, - anon_sym_is, - [145088] = 2, - ACTIONS(3), 1, + [251195] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12811), 1, + ts_builtin_sym_end, + STATE(8520), 1, sym_comment, - ACTIONS(8664), 1, - anon_sym_RBRACK, - [145095] = 2, - ACTIONS(7230), 1, + [251208] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10718), 1, + anon_sym_RBRACE, + STATE(8521), 1, sym_comment, - ACTIONS(8666), 1, - sym_regex_pattern, - [145102] = 2, + [251221] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12813), 1, + sym_identifier, + STATE(8522), 1, sym_comment, - ACTIONS(8668), 1, - anon_sym_RBRACK, - [145109] = 2, + [251234] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12815), 1, + sym_identifier, + STATE(8523), 1, sym_comment, - ACTIONS(8670), 1, - anon_sym_RBRACK, - [145116] = 2, + [251247] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12817), 1, + sym_identifier, + STATE(8524), 1, sym_comment, - ACTIONS(6038), 1, - anon_sym_DOT, - [145123] = 2, - ACTIONS(3), 1, + [251260] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12819), 1, + anon_sym_EQ, + STATE(8525), 1, sym_comment, - ACTIONS(8672), 1, - anon_sym_EQ_GT, - [145130] = 2, - ACTIONS(3), 1, + [251273] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12821), 1, + anon_sym_new, + STATE(8526), 1, sym_comment, - ACTIONS(8674), 1, - anon_sym_RBRACK, - [145137] = 2, - ACTIONS(3), 1, + [251286] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12823), 1, + anon_sym_namespace, + STATE(8527), 1, sym_comment, - ACTIONS(8676), 1, - anon_sym_new, - [145144] = 2, - ACTIONS(3), 1, + [251299] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5661), 1, + anon_sym_RPAREN, + STATE(8528), 1, sym_comment, - ACTIONS(8678), 1, + [251312] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12825), 1, anon_sym_EQ_GT, - [145151] = 2, - ACTIONS(3), 1, + STATE(8529), 1, sym_comment, - ACTIONS(8680), 1, - sym_number, - [145158] = 2, - ACTIONS(3), 1, + [251325] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12827), 1, + anon_sym_EQ_GT, + STATE(8530), 1, sym_comment, - ACTIONS(5029), 1, - anon_sym_RPAREN, - [145165] = 2, - ACTIONS(3), 1, + [251338] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12829), 1, + anon_sym_EQ_GT, + STATE(8531), 1, + sym_comment, + [251351] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12831), 1, + ts_builtin_sym_end, + STATE(8532), 1, sym_comment, - ACTIONS(8682), 1, + [251364] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6481), 1, anon_sym_RBRACK, - [145172] = 2, - ACTIONS(3), 1, + STATE(8533), 1, sym_comment, - ACTIONS(8684), 1, - anon_sym_from, - [145179] = 2, + [251377] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12833), 1, + sym_identifier, + STATE(8534), 1, sym_comment, - ACTIONS(8686), 1, - anon_sym_RBRACK, - [145186] = 2, + [251390] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12835), 1, + sym_identifier, + STATE(8535), 1, sym_comment, - ACTIONS(8688), 1, - anon_sym_RBRACK, - [145193] = 2, + [251403] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12837), 1, + sym_identifier, + STATE(8536), 1, sym_comment, - ACTIONS(8690), 1, - anon_sym_RBRACK, - [145200] = 2, + [251416] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10645), 1, + sym_identifier, + STATE(8537), 1, sym_comment, - ACTIONS(8692), 1, - anon_sym_RBRACK, - [145207] = 2, - ACTIONS(3), 1, + [251429] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12839), 1, + anon_sym_class, + STATE(8538), 1, sym_comment, - ACTIONS(8694), 1, - anon_sym_from, - [145214] = 2, - ACTIONS(3), 1, + [251442] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12841), 1, + anon_sym_EQ, + STATE(8539), 1, sym_comment, - ACTIONS(6224), 1, - anon_sym_DOT, - [145221] = 2, - ACTIONS(3), 1, + [251455] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12843), 1, + anon_sym_SLASH2, + STATE(8540), 1, sym_comment, - ACTIONS(8696), 1, - anon_sym_RBRACK, - [145228] = 2, - ACTIONS(3), 1, + [251468] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12845), 1, + sym_number, + STATE(8541), 1, sym_comment, - ACTIONS(8698), 1, - anon_sym_RBRACK, - [145235] = 2, - ACTIONS(3), 1, + [251481] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12847), 1, + anon_sym_EQ, + STATE(8542), 1, sym_comment, - ACTIONS(8700), 1, - anon_sym_RBRACK, - [145242] = 2, + [251494] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12849), 1, + sym_identifier, + STATE(8543), 1, sym_comment, - ACTIONS(8702), 1, - anon_sym_RBRACK, - [145249] = 2, - ACTIONS(3), 1, + [251507] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12851), 1, + anon_sym_EQ, + STATE(8544), 1, sym_comment, - ACTIONS(8704), 1, - anon_sym_RBRACK, - [145256] = 2, - ACTIONS(3), 1, + [251520] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12853), 1, + anon_sym_EQ_GT, + STATE(8545), 1, sym_comment, - ACTIONS(8706), 1, - anon_sym_readonly, - [145263] = 2, - ACTIONS(3), 1, + [251533] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12855), 1, + anon_sym_symbol, + STATE(8546), 1, sym_comment, - ACTIONS(8708), 1, - sym_identifier, - [145270] = 2, + [251546] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12857), 1, + sym_identifier, + STATE(8547), 1, sym_comment, - ACTIONS(8710), 1, - anon_sym_from, - [145277] = 2, + [251559] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8712), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12859), 1, sym_identifier, - [145284] = 2, - ACTIONS(3), 1, + STATE(8548), 1, sym_comment, - ACTIONS(8714), 1, - anon_sym_require, - [145291] = 2, + [251572] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12861), 1, + sym_identifier, + STATE(8549), 1, sym_comment, - ACTIONS(8716), 1, - anon_sym_RPAREN, - [145298] = 2, + [251585] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12863), 1, + anon_sym_LBRACE, + STATE(8550), 1, + sym_comment, + [251598] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12865), 1, + sym_identifier, + STATE(8551), 1, sym_comment, - ACTIONS(8718), 1, + [251611] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12867), 1, anon_sym_EQ_GT, - [145305] = 2, - ACTIONS(3), 1, + STATE(8552), 1, + sym_comment, + [251624] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12869), 1, + anon_sym_COLON, + STATE(8553), 1, sym_comment, - ACTIONS(8720), 1, + [251637] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10908), 1, anon_sym_RBRACK, - [145312] = 2, - ACTIONS(3), 1, + STATE(8554), 1, sym_comment, - ACTIONS(8722), 1, - sym_identifier, - [145319] = 2, + [251650] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12871), 1, + sym_identifier, + STATE(8555), 1, sym_comment, - ACTIONS(8724), 1, - anon_sym_LPAREN, - [145326] = 2, - ACTIONS(3), 1, + [251663] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10963), 1, + anon_sym_LBRACE, + STATE(8556), 1, sym_comment, - ACTIONS(8726), 1, - anon_sym_from, - [145333] = 2, - ACTIONS(3), 1, + [251676] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12873), 1, + anon_sym_RPAREN, + STATE(8557), 1, sym_comment, - ACTIONS(8728), 1, + [251689] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9977), 1, anon_sym_EQ_GT, - [145340] = 2, - ACTIONS(3), 1, + STATE(8558), 1, sym_comment, - ACTIONS(8730), 1, - sym_identifier, - [145347] = 2, - ACTIONS(3), 1, + [251702] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10007), 1, + anon_sym_EQ_GT, + STATE(8559), 1, sym_comment, - ACTIONS(8732), 1, - anon_sym_EQ, - [145354] = 2, + [251715] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8734), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12875), 1, sym_identifier, - [145361] = 2, - ACTIONS(3), 1, + STATE(8560), 1, + sym_comment, + [251728] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10990), 1, + anon_sym_RBRACK, + STATE(8561), 1, sym_comment, - ACTIONS(8736), 1, + [251741] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12877), 1, + anon_sym_RPAREN, + STATE(8562), 1, + sym_comment, + [251754] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12879), 1, anon_sym_EQ_GT, - [145368] = 2, - ACTIONS(3), 1, + STATE(8563), 1, sym_comment, - ACTIONS(8738), 1, - anon_sym_EQ, - [145375] = 2, + [251767] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12881), 1, + sym_identifier, + STATE(8564), 1, sym_comment, - ACTIONS(8740), 1, - anon_sym_class, - [145382] = 2, + [251780] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8742), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12883), 1, sym_identifier, - [145389] = 2, - ACTIONS(3), 1, + STATE(8565), 1, sym_comment, - ACTIONS(8744), 1, - sym_identifier, - [145396] = 2, + [251793] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12885), 1, + sym_identifier, + STATE(8566), 1, sym_comment, - ACTIONS(8746), 1, - anon_sym_new, - [145403] = 2, + [251806] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7996), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12887), 1, sym_identifier, - [145410] = 2, - ACTIONS(3), 1, + STATE(8567), 1, sym_comment, - ACTIONS(8748), 1, + [251819] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12889), 1, anon_sym_EQ_GT, - [145417] = 2, - ACTIONS(3), 1, + STATE(8568), 1, sym_comment, - ACTIONS(8750), 1, - anon_sym_EQ_GT, - [145424] = 2, - ACTIONS(3), 1, + [251832] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5671), 1, + anon_sym_RPAREN, + STATE(8569), 1, sym_comment, - ACTIONS(8752), 1, - anon_sym_EQ_GT, - [145431] = 2, - ACTIONS(3), 1, + [251845] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12891), 1, + anon_sym_class, + STATE(8570), 1, sym_comment, - ACTIONS(8754), 1, - anon_sym_RBRACK, - [145438] = 2, - ACTIONS(3), 1, + [251858] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12893), 1, + anon_sym_new, + STATE(8571), 1, sym_comment, - ACTIONS(8756), 1, + [251871] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12895), 1, anon_sym_namespace, - [145445] = 2, - ACTIONS(3), 1, + STATE(8572), 1, sym_comment, - ACTIONS(8758), 1, - sym_number, - [145452] = 2, - ACTIONS(3), 1, + [251884] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12897), 1, + anon_sym_EQ_GT, + STATE(8573), 1, sym_comment, - ACTIONS(8760), 1, - anon_sym_COLON, - [145459] = 2, - ACTIONS(3), 1, + [251897] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12899), 1, + anon_sym_EQ_GT, + STATE(8574), 1, sym_comment, - ACTIONS(8762), 1, - sym_identifier, - [145466] = 2, - ACTIONS(3), 1, + [251910] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12901), 1, + anon_sym_EQ_GT, + STATE(8575), 1, sym_comment, - ACTIONS(8764), 1, + [251923] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12903), 1, anon_sym_EQ_GT, - [145473] = 2, - ACTIONS(3), 1, + STATE(8576), 1, sym_comment, - ACTIONS(8766), 1, - anon_sym_COLON, - [145480] = 2, - ACTIONS(3), 1, + [251936] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12905), 1, + anon_sym_EQ_GT, + STATE(8577), 1, sym_comment, - ACTIONS(8768), 1, - anon_sym_while, - [145487] = 2, - ACTIONS(3), 1, + [251949] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12907), 1, + anon_sym_RPAREN, + STATE(8578), 1, sym_comment, - ACTIONS(8770), 1, - anon_sym_SLASH2, - [145494] = 2, - ACTIONS(3), 1, + [251962] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8104), 1, + anon_sym_is, + STATE(8579), 1, sym_comment, - ACTIONS(5067), 1, - anon_sym_COLON, - [145501] = 2, + [251975] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7867), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10943), 1, sym_identifier, - [145508] = 2, - ACTIONS(3), 1, + STATE(8580), 1, sym_comment, - ACTIONS(8772), 1, + [251988] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12909), 1, anon_sym_class, - [145515] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8774), 1, - anon_sym_EQ_GT, - [145522] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8776), 1, - anon_sym_EQ_GT, - [145529] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8778), 1, - anon_sym_EQ_GT, - [145536] = 2, - ACTIONS(3), 1, + STATE(8581), 1, sym_comment, - ACTIONS(3809), 1, - anon_sym_LPAREN, - [145543] = 2, - ACTIONS(3), 1, + [252001] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12911), 1, + anon_sym_target, + STATE(8582), 1, sym_comment, - ACTIONS(8780), 1, + [252014] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12913), 1, anon_sym_RPAREN, - [145550] = 2, - ACTIONS(3), 1, + STATE(8583), 1, sym_comment, - ACTIONS(8782), 1, + [252027] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12915), 1, anon_sym_EQ, - [145557] = 2, - ACTIONS(3), 1, + STATE(8584), 1, sym_comment, - ACTIONS(8784), 1, - sym_identifier, - [145564] = 2, - ACTIONS(3), 1, + [252040] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12917), 1, + anon_sym_RBRACK, + STATE(8585), 1, sym_comment, - ACTIONS(8786), 1, + [252053] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12919), 1, anon_sym_EQ, - [145571] = 2, - ACTIONS(3), 1, + STATE(8586), 1, sym_comment, - ACTIONS(8788), 1, - anon_sym_while, - [145578] = 2, - ACTIONS(3), 1, + [252066] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12921), 1, + anon_sym_RBRACK, + STATE(8587), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_RPAREN, - [145585] = 2, - ACTIONS(3), 1, + [252079] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12923), 1, + anon_sym_RBRACK, + STATE(8588), 1, sym_comment, - ACTIONS(8790), 1, - anon_sym_EQ_GT, - [145592] = 2, - ACTIONS(3), 1, + [252092] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6583), 1, + anon_sym_RBRACK, + STATE(8589), 1, sym_comment, - ACTIONS(8792), 1, - anon_sym_EQ_GT, - [145599] = 2, - ACTIONS(3), 1, + [252105] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12925), 1, + anon_sym_RBRACK, + STATE(8590), 1, sym_comment, - ACTIONS(8794), 1, + [252118] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12927), 1, anon_sym_COLON, - [145606] = 2, - ACTIONS(3), 1, + STATE(8591), 1, sym_comment, - ACTIONS(7482), 1, - anon_sym_from, - [145613] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8796), 1, - anon_sym_as, - [145620] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8798), 1, - anon_sym_EQ_GT, - [145627] = 2, + [252131] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12929), 1, + sym_identifier, + STATE(8592), 1, sym_comment, - ACTIONS(5990), 1, - anon_sym_DOT, - [145634] = 2, + [252144] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12931), 1, + sym_identifier, + STATE(8593), 1, sym_comment, - ACTIONS(8800), 1, - anon_sym_LT, - [145641] = 2, + [252157] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12933), 1, + sym_identifier, + STATE(8594), 1, sym_comment, - ACTIONS(8802), 1, - anon_sym_EQ_GT, - [145648] = 2, + [252170] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12935), 1, + sym_identifier, + STATE(8595), 1, sym_comment, - ACTIONS(8804), 1, + [252183] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12937), 1, anon_sym_RBRACK, - [145655] = 2, - ACTIONS(3), 1, + STATE(8596), 1, sym_comment, - ACTIONS(8806), 1, - anon_sym_RBRACK, - [145662] = 2, - ACTIONS(3), 1, + [252196] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12939), 1, + anon_sym_class, + STATE(8597), 1, sym_comment, - ACTIONS(8808), 1, - sym_identifier, - [145669] = 2, - ACTIONS(3), 1, + [252209] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12941), 1, + anon_sym_new, + STATE(8598), 1, sym_comment, - ACTIONS(8810), 1, - anon_sym_RBRACK, - [145676] = 2, - ACTIONS(3), 1, + [252222] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12943), 1, + anon_sym_namespace, + STATE(8599), 1, sym_comment, - ACTIONS(8812), 1, + [252235] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12945), 1, anon_sym_RBRACK, - [145683] = 2, - ACTIONS(3), 1, + STATE(8600), 1, sym_comment, - ACTIONS(8814), 1, - anon_sym_RBRACK, - [145690] = 2, + [252248] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12947), 1, + sym_identifier, + STATE(8601), 1, sym_comment, - ACTIONS(8816), 1, + [252261] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12949), 1, anon_sym_RBRACK, - [145697] = 2, - ACTIONS(3), 1, + STATE(8602), 1, + sym_comment, + [252274] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5785), 1, + anon_sym_RPAREN, + STATE(8603), 1, sym_comment, - ACTIONS(8818), 1, + [252287] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12951), 1, anon_sym_RBRACK, - [145704] = 2, - ACTIONS(3), 1, + STATE(8604), 1, sym_comment, - ACTIONS(8820), 1, - sym_identifier, - [145711] = 2, - ACTIONS(3), 1, + [252300] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6625), 1, + anon_sym_RBRACE, + STATE(8605), 1, sym_comment, - ACTIONS(8822), 1, - anon_sym_EQ_GT, - [145718] = 2, + [252313] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11419), 1, + sym_identifier, + STATE(8606), 1, sym_comment, - ACTIONS(8824), 1, - anon_sym_RBRACK, - [145725] = 2, - ACTIONS(3), 1, + [252326] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12953), 1, + anon_sym_class, + STATE(8607), 1, sym_comment, - ACTIONS(8826), 1, + [252339] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12955), 1, anon_sym_RBRACK, - [145732] = 2, - ACTIONS(3), 1, + STATE(8608), 1, sym_comment, - ACTIONS(8828), 1, - anon_sym_RBRACK, - [145739] = 2, - ACTIONS(3), 1, + [252352] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12957), 1, + anon_sym_EQ, + STATE(8609), 1, sym_comment, - ACTIONS(8830), 1, - anon_sym_RBRACK, - [145746] = 2, + [252365] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8832), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12959), 1, sym_identifier, - [145753] = 2, - ACTIONS(3), 1, + STATE(8610), 1, sym_comment, - ACTIONS(8834), 1, - sym_identifier, - [145760] = 2, - ACTIONS(3), 1, + [252378] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12961), 1, + anon_sym_EQ, + STATE(8611), 1, sym_comment, - ACTIONS(8836), 1, - anon_sym_RBRACK, - [145767] = 2, + [252391] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12963), 1, + sym_identifier, + STATE(8612), 1, sym_comment, - ACTIONS(8838), 1, + [252404] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12965), 1, anon_sym_RBRACK, - [145774] = 2, - ACTIONS(3), 1, + STATE(8613), 1, sym_comment, - ACTIONS(8840), 1, - anon_sym_RBRACK, - [145781] = 2, + [252417] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12967), 1, + sym_identifier, + STATE(8614), 1, sym_comment, - ACTIONS(8842), 1, + [252430] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12969), 1, anon_sym_RBRACK, - [145788] = 2, - ACTIONS(3), 1, + STATE(8615), 1, sym_comment, - ACTIONS(8844), 1, + [252443] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12971), 1, anon_sym_RBRACK, - [145795] = 2, - ACTIONS(3), 1, + STATE(8616), 1, sym_comment, - ACTIONS(8846), 1, - anon_sym_RBRACK, - [145802] = 2, - ACTIONS(3), 1, + [252456] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12973), 1, + anon_sym_COLON, + STATE(8617), 1, sym_comment, - ACTIONS(8848), 1, - anon_sym_EQ_GT, - [145809] = 2, + [252469] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12975), 1, + sym_identifier, + STATE(8618), 1, sym_comment, - ACTIONS(8850), 1, - anon_sym_RBRACK, - [145816] = 2, + [252482] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12977), 1, + sym_identifier, + STATE(8619), 1, sym_comment, - ACTIONS(8852), 1, + [252495] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12979), 1, anon_sym_RBRACK, - [145823] = 2, - ACTIONS(3), 1, + STATE(8620), 1, sym_comment, - ACTIONS(8854), 1, + [252508] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12981), 1, anon_sym_RBRACK, - [145830] = 2, - ACTIONS(3), 1, + STATE(8621), 1, sym_comment, - ACTIONS(8856), 1, - anon_sym_EQ_GT, - [145837] = 2, - ACTIONS(3), 1, + [252521] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12983), 1, + anon_sym_class, + STATE(8622), 1, sym_comment, - ACTIONS(8858), 1, - sym_identifier, - [145844] = 2, - ACTIONS(3), 1, + [252534] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12985), 1, + anon_sym_new, + STATE(8623), 1, sym_comment, - ACTIONS(8860), 1, - sym_identifier, - [145851] = 2, - ACTIONS(3), 1, + [252547] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12987), 1, + anon_sym_namespace, + STATE(8624), 1, sym_comment, - ACTIONS(8862), 1, + [252560] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12989), 1, anon_sym_RBRACK, - [145858] = 2, - ACTIONS(3), 1, + STATE(8625), 1, sym_comment, - ACTIONS(8864), 1, - anon_sym_RBRACK, - [145865] = 2, + [252573] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12991), 1, + sym_identifier, + STATE(8626), 1, sym_comment, - ACTIONS(8866), 1, - anon_sym_RBRACK, - [145872] = 2, + [252586] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8868), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12993), 1, sym_identifier, - [145879] = 2, - ACTIONS(3), 1, + STATE(8627), 1, sym_comment, - ACTIONS(8870), 1, + [252599] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12995), 1, anon_sym_RBRACK, - [145886] = 2, - ACTIONS(3), 1, + STATE(8628), 1, sym_comment, - ACTIONS(8872), 1, + [252612] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12997), 1, anon_sym_RBRACK, - [145893] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8874), 1, - sym_identifier, - [145900] = 2, - ACTIONS(3), 1, + STATE(8629), 1, sym_comment, - ACTIONS(8876), 1, - anon_sym_RBRACK, - [145907] = 2, - ACTIONS(3), 1, + [252625] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12999), 1, + anon_sym_EQ_GT, + STATE(8630), 1, sym_comment, - ACTIONS(8878), 1, - anon_sym_from, - [145914] = 2, + [252638] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10445), 1, + sym_identifier, + STATE(8631), 1, sym_comment, - ACTIONS(8880), 1, - anon_sym_RBRACK, - [145921] = 2, - ACTIONS(3), 1, + [252651] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13001), 1, + anon_sym_class, + STATE(8632), 1, sym_comment, - ACTIONS(5122), 1, - anon_sym_RPAREN, - [145928] = 2, + [252664] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13003), 1, + sym_identifier, + STATE(8633), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_RPAREN, - [145935] = 2, - ACTIONS(3), 1, + [252677] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13005), 1, + ts_builtin_sym_end, + STATE(8634), 1, sym_comment, - ACTIONS(5118), 1, - anon_sym_RPAREN, - [145942] = 2, - ACTIONS(3), 1, + [252690] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13007), 1, + anon_sym_EQ, + STATE(8635), 1, sym_comment, - ACTIONS(8882), 1, + [252703] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13009), 1, anon_sym_RBRACK, - [145949] = 2, - ACTIONS(3), 1, + STATE(8636), 1, sym_comment, - ACTIONS(8884), 1, - anon_sym_GT, - [145956] = 2, - ACTIONS(3), 1, + [252716] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13011), 1, + anon_sym_EQ, + STATE(8637), 1, sym_comment, - ACTIONS(8886), 1, - anon_sym_RBRACK, - [145963] = 2, + [252729] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13013), 1, + sym_identifier, + STATE(8638), 1, sym_comment, - ACTIONS(8888), 1, + [252742] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13015), 1, anon_sym_RBRACK, - [145970] = 2, - ACTIONS(3), 1, + STATE(8639), 1, sym_comment, - ACTIONS(7716), 1, - anon_sym_RBRACK, - [145977] = 2, - ACTIONS(3), 1, + [252755] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13017), 1, + anon_sym_new, + STATE(8640), 1, sym_comment, - ACTIONS(8890), 1, - anon_sym_RBRACK, - [145984] = 2, - ACTIONS(3), 1, + [252768] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13019), 1, + anon_sym_EQ, + STATE(8641), 1, sym_comment, - ACTIONS(8892), 1, - anon_sym_RBRACK, - [145991] = 2, - ACTIONS(3), 1, + [252781] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13021), 1, + anon_sym_COLON, + STATE(8642), 1, sym_comment, - ACTIONS(8894), 1, - anon_sym_RBRACK, - [145998] = 2, + [252794] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13023), 1, + sym_identifier, + STATE(8643), 1, sym_comment, - ACTIONS(8896), 1, - anon_sym_RBRACK, - [146005] = 2, + [252807] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13025), 1, + sym_identifier, + STATE(8644), 1, sym_comment, - ACTIONS(8898), 1, - anon_sym_RBRACK, - [146012] = 2, - ACTIONS(3), 1, + [252820] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13027), 1, + anon_sym_SLASH2, + STATE(8645), 1, sym_comment, - ACTIONS(8900), 1, + [252833] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13029), 1, anon_sym_RBRACK, - [146019] = 2, - ACTIONS(3), 1, + STATE(8646), 1, sym_comment, - ACTIONS(8902), 1, - anon_sym_RBRACK, - [146026] = 2, - ACTIONS(3), 1, + [252846] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13031), 1, + anon_sym_class, + STATE(8647), 1, sym_comment, - ACTIONS(8904), 1, - anon_sym_RBRACK, - [146033] = 2, - ACTIONS(3), 1, + [252859] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13033), 1, + anon_sym_namespace, + STATE(8648), 1, sym_comment, - ACTIONS(8906), 1, - anon_sym_RBRACK, - [146040] = 2, - ACTIONS(3), 1, + [252872] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6889), 1, + anon_sym_in, + STATE(8649), 1, sym_comment, - ACTIONS(8908), 1, + [252885] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11183), 1, anon_sym_RBRACK, - [146047] = 2, - ACTIONS(3), 1, + STATE(8650), 1, sym_comment, - ACTIONS(8910), 1, + [252898] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13035), 1, anon_sym_EQ_GT, - [146054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8912), 1, - anon_sym_RBRACK, - [146061] = 2, - ACTIONS(3), 1, + STATE(8651), 1, sym_comment, - ACTIONS(8914), 1, + [252911] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13037), 1, anon_sym_EQ_GT, - [146068] = 2, + STATE(8652), 1, + sym_comment, + [252924] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13039), 1, + anon_sym_symbol, + STATE(8653), 1, + sym_comment, + [252937] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13041), 1, + sym_identifier, + STATE(8654), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_RBRACK, - [146075] = 2, + [252950] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10639), 1, + sym_identifier, + STATE(8655), 1, sym_comment, - ACTIONS(8918), 1, + [252963] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13043), 1, + anon_sym_class, + STATE(8656), 1, + sym_comment, + [252976] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13045), 1, + sym_number, + STATE(8657), 1, + sym_comment, + [252989] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7155), 1, + anon_sym_in, + STATE(8658), 1, + sym_comment, + [253002] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13047), 1, anon_sym_EQ, - [146082] = 2, - ACTIONS(3), 1, + STATE(8659), 1, sym_comment, - ACTIONS(8920), 1, - anon_sym_EQ_GT, - [146089] = 2, - ACTIONS(3), 1, + [253015] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13049), 1, + anon_sym_EQ, + STATE(8660), 1, sym_comment, - ACTIONS(8922), 1, - anon_sym_EQ_GT, - [146096] = 2, - ACTIONS(3), 1, + [253028] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13051), 1, + anon_sym_EQ, + STATE(8661), 1, sym_comment, - ACTIONS(8924), 1, - anon_sym_EQ_GT, - [146103] = 2, - ACTIONS(3), 1, + [253041] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13053), 1, + anon_sym_SLASH2, + STATE(8662), 1, sym_comment, - ACTIONS(8926), 1, - anon_sym_RBRACK, - [146110] = 2, - ACTIONS(3), 1, + [253054] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13055), 1, + anon_sym_EQ, + STATE(8663), 1, sym_comment, - ACTIONS(8928), 1, - anon_sym_RBRACK, - [146117] = 2, + [253067] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13057), 1, + anon_sym_COLON, + STATE(8664), 1, + sym_comment, + [253080] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13059), 1, + sym_identifier, + STATE(8665), 1, sym_comment, - ACTIONS(8930), 1, - anon_sym_RBRACK, - [146124] = 2, + [253093] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13061), 1, + sym_identifier, + STATE(8666), 1, sym_comment, - ACTIONS(8932), 1, + [253106] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13063), 1, ts_builtin_sym_end, - [146131] = 2, - ACTIONS(3), 1, + STATE(8667), 1, sym_comment, - ACTIONS(8934), 1, - anon_sym_RBRACK, - [146138] = 2, - ACTIONS(3), 1, + [253119] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13065), 1, + anon_sym_EQ_GT, + STATE(8668), 1, sym_comment, - ACTIONS(8936), 1, - ts_builtin_sym_end, - [146145] = 2, - ACTIONS(3), 1, + [253132] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13067), 1, + anon_sym_class, + STATE(8669), 1, sym_comment, - ACTIONS(8938), 1, - anon_sym_RBRACK, - [146152] = 2, - ACTIONS(3), 1, + [253145] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13069), 1, + anon_sym_namespace, + STATE(8670), 1, sym_comment, - ACTIONS(8940), 1, - anon_sym_RBRACK, - [146159] = 2, - ACTIONS(3), 1, + [253158] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13071), 1, + sym_number, + STATE(8671), 1, sym_comment, - ACTIONS(8942), 1, - anon_sym_RBRACK, - [146166] = 2, - ACTIONS(3), 1, + [253171] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8695), 1, + anon_sym_EQ, + STATE(8672), 1, sym_comment, - ACTIONS(8944), 1, - anon_sym_RBRACK, - [146173] = 2, + [253184] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13073), 1, + sym_identifier, + STATE(8673), 1, sym_comment, - ACTIONS(8946), 1, - anon_sym_EQ_GT, - [146180] = 2, + [253197] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13075), 1, + sym_identifier, + STATE(8674), 1, sym_comment, - ACTIONS(8948), 1, + [253210] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13077), 1, anon_sym_RPAREN, - [146187] = 2, - ACTIONS(3), 1, + STATE(8675), 1, sym_comment, - ACTIONS(8950), 1, + [253223] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5887), 1, anon_sym_RPAREN, - [146194] = 2, - ACTIONS(3), 1, + STATE(8676), 1, sym_comment, - ACTIONS(8952), 1, - anon_sym_RPAREN, - [146201] = 2, + [253236] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10514), 1, + sym_identifier, + STATE(8677), 1, sym_comment, - ACTIONS(8954), 1, - anon_sym_RPAREN, - [146208] = 2, - ACTIONS(3), 1, + [253249] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13079), 1, + anon_sym_class, + STATE(8678), 1, sym_comment, - ACTIONS(8956), 1, + [253262] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13081), 1, anon_sym_EQ, - [146215] = 2, - ACTIONS(3), 1, + STATE(8679), 1, sym_comment, - ACTIONS(8958), 1, - anon_sym_class, - [146222] = 2, - ACTIONS(3), 1, + [253275] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13083), 1, + anon_sym_EQ_GT, + STATE(8680), 1, sym_comment, - ACTIONS(8960), 1, - anon_sym_new, - [146229] = 2, - ACTIONS(3), 1, + [253288] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13085), 1, + anon_sym_EQ, + STATE(8681), 1, sym_comment, - ACTIONS(8962), 1, - anon_sym_namespace, - [146236] = 2, - ACTIONS(3), 1, + [253301] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13087), 1, + anon_sym_target, + STATE(8682), 1, sym_comment, - ACTIONS(8964), 1, - sym_identifier, - [146243] = 2, - ACTIONS(3), 1, + [253314] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13089), 1, + anon_sym_EQ_GT, + STATE(8683), 1, sym_comment, - ACTIONS(8966), 1, - anon_sym_RBRACK, - [146250] = 2, - ACTIONS(3), 1, + [253327] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13091), 1, + anon_sym_COLON, + STATE(8684), 1, sym_comment, - ACTIONS(8968), 1, - sym_identifier, - [146257] = 2, + [253340] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8970), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13093), 1, sym_identifier, - [146264] = 2, - ACTIONS(3), 1, + STATE(8685), 1, sym_comment, - ACTIONS(8972), 1, - anon_sym_COLON, - [146271] = 2, + [253353] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13095), 1, + sym_identifier, + STATE(8686), 1, sym_comment, - ACTIONS(8974), 1, + [253366] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13097), 1, anon_sym_EQ_GT, - [146278] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7557), 1, - sym_identifier, - [146285] = 2, - ACTIONS(3), 1, + STATE(8687), 1, sym_comment, - ACTIONS(8976), 1, + [253379] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13099), 1, anon_sym_class, - [146292] = 2, - ACTIONS(3), 1, + STATE(8688), 1, + sym_comment, + [253392] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13101), 1, + anon_sym_namespace, + STATE(8689), 1, + sym_comment, + [253405] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13103), 1, + anon_sym_EQ, + STATE(8690), 1, + sym_comment, + [253418] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13105), 1, + anon_sym_EQ_GT, + STATE(8691), 1, + sym_comment, + [253431] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13107), 1, + anon_sym_EQ_GT, + STATE(8692), 1, sym_comment, - ACTIONS(8978), 1, + [253444] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13109), 1, anon_sym_EQ_GT, - [146299] = 2, + STATE(8693), 1, + sym_comment, + [253457] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13111), 1, + sym_identifier, + STATE(8694), 1, sym_comment, - ACTIONS(8980), 1, - anon_sym_RBRACK, - [146306] = 2, + [253470] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10543), 1, + sym_identifier, + STATE(8695), 1, + sym_comment, + [253483] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13113), 1, + anon_sym_class, + STATE(8696), 1, sym_comment, - ACTIONS(8982), 1, + [253496] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13115), 1, anon_sym_EQ, - [146313] = 2, - ACTIONS(3), 1, + STATE(8697), 1, sym_comment, - ACTIONS(8984), 1, - anon_sym_function, - [146320] = 2, + [253509] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13117), 1, + sym_identifier, + STATE(8698), 1, sym_comment, - ACTIONS(8986), 1, + [253522] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13119), 1, anon_sym_EQ, - [146327] = 2, - ACTIONS(3), 1, + STATE(8699), 1, sym_comment, - ACTIONS(8988), 1, - sym_identifier, - [146334] = 2, + [253535] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8990), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13121), 1, sym_identifier, - [146341] = 2, - ACTIONS(3), 1, + STATE(8700), 1, sym_comment, - ACTIONS(8992), 1, + [253548] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13123), 1, anon_sym_COLON, - [146348] = 2, - ACTIONS(3), 1, + STATE(8701), 1, sym_comment, - ACTIONS(8994), 1, - sym_number, - [146355] = 2, + [253561] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(8996), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13125), 1, sym_identifier, - [146362] = 2, - ACTIONS(3), 1, + STATE(8702), 1, sym_comment, - ACTIONS(8998), 1, - anon_sym_EQ_GT, - [146369] = 2, - ACTIONS(3), 1, + [253574] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13127), 1, + ts_builtin_sym_end, + STATE(8703), 1, sym_comment, - ACTIONS(9000), 1, - sym_identifier, - [146376] = 2, + [253587] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9253), 1, + sym_identifier, + STATE(8704), 1, sym_comment, - ACTIONS(9002), 1, - anon_sym_SLASH2, - [146383] = 2, - ACTIONS(3), 1, + [253600] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13129), 1, + anon_sym_function, + STATE(8705), 1, sym_comment, - ACTIONS(9004), 1, - ts_builtin_sym_end, - [146390] = 2, + [253613] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13131), 1, + sym_identifier, + STATE(8706), 1, sym_comment, - ACTIONS(9006), 1, - anon_sym_RBRACK, - [146397] = 2, + [253626] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13133), 1, + sym_identifier, + STATE(8707), 1, sym_comment, - ACTIONS(9008), 1, - anon_sym_new, - [146404] = 2, - ACTIONS(3), 1, + [253639] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5844), 1, + anon_sym_RPAREN, + STATE(8708), 1, sym_comment, - ACTIONS(9010), 1, - anon_sym_EQ_GT, - [146411] = 2, + [253652] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13135), 1, + sym_identifier, + STATE(8709), 1, sym_comment, - ACTIONS(5132), 1, - anon_sym_RPAREN, - [146418] = 2, + [253665] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13137), 1, + sym_identifier, + STATE(8710), 1, sym_comment, - ACTIONS(9012), 1, + [253678] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5905), 1, anon_sym_RPAREN, - [146425] = 2, - ACTIONS(3), 1, + STATE(8711), 1, sym_comment, - ACTIONS(9014), 1, - anon_sym_from, - [146432] = 2, + [253691] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9255), 1, + sym_identifier, + STATE(8712), 1, sym_comment, - ACTIONS(9016), 1, - anon_sym_EQ_GT, - [146439] = 2, - ACTIONS(3), 1, + [253704] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13139), 1, + anon_sym_function, + STATE(8713), 1, sym_comment, - ACTIONS(9018), 1, - anon_sym_EQ_GT, - [146446] = 2, + [253717] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13141), 1, + anon_sym_RPAREN, + STATE(8714), 1, + sym_comment, + [253730] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13143), 1, + sym_identifier, + STATE(8715), 1, sym_comment, - ACTIONS(9020), 1, - anon_sym_RBRACK, - [146453] = 2, + [253743] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13145), 1, + sym_identifier, + STATE(8716), 1, sym_comment, - ACTIONS(9022), 1, - anon_sym_new, - [146460] = 2, + [253756] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13147), 1, + sym_identifier, + STATE(8717), 1, sym_comment, - ACTIONS(9024), 1, + [253769] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13149), 1, anon_sym_RBRACK, - [146467] = 2, - ACTIONS(3), 1, + STATE(8718), 1, sym_comment, - ACTIONS(9026), 1, - sym_identifier, - [146474] = 2, - ACTIONS(3), 1, + [253782] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6641), 1, + anon_sym_RPAREN, + STATE(8719), 1, sym_comment, - ACTIONS(9028), 1, - sym_identifier, - [146481] = 2, + [253795] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(9030), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9269), 1, sym_identifier, - [146488] = 2, - ACTIONS(3), 1, + STATE(8720), 1, sym_comment, - ACTIONS(9032), 1, - anon_sym_new, - [146495] = 2, - ACTIONS(3), 1, + [253808] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13151), 1, + anon_sym_function, + STATE(8721), 1, sym_comment, - ACTIONS(9034), 1, + [253821] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13153), 1, anon_sym_RBRACK, - [146502] = 2, - ACTIONS(3), 1, + STATE(8722), 1, sym_comment, - ACTIONS(9036), 1, - sym_identifier, - [146509] = 2, - ACTIONS(3), 1, + [253834] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13155), 1, + anon_sym_RBRACK, + STATE(8723), 1, sym_comment, - ACTIONS(9038), 1, - anon_sym_function, - [146516] = 2, - ACTIONS(3), 1, + [253847] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13157), 1, + anon_sym_RPAREN, + STATE(8724), 1, sym_comment, - ACTIONS(9040), 1, - ts_builtin_sym_end, - [146523] = 2, + [253860] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13159), 1, + sym_identifier, + STATE(8725), 1, sym_comment, - ACTIONS(9042), 1, - anon_sym_RPAREN, - [146530] = 2, + [253873] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(9044), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9277), 1, sym_identifier, - [146537] = 2, - ACTIONS(3), 1, + STATE(8726), 1, sym_comment, - ACTIONS(9046), 1, - anon_sym_EQ_GT, - [146544] = 2, - ACTIONS(3), 1, + [253886] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13161), 1, + anon_sym_function, + STATE(8727), 1, sym_comment, - ACTIONS(9048), 1, - ts_builtin_sym_end, - [146551] = 2, - ACTIONS(3), 1, + [253899] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13163), 1, + anon_sym_from, + STATE(8728), 1, + sym_comment, + [253912] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13165), 1, + anon_sym_EQ_GT, + STATE(8729), 1, sym_comment, - ACTIONS(9050), 1, + [253925] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13167), 1, anon_sym_RBRACK, - [146558] = 2, - ACTIONS(3), 1, + STATE(8730), 1, sym_comment, - ACTIONS(9052), 1, - sym_identifier, - [146565] = 2, + [253938] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(9054), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13169), 1, sym_identifier, - [146572] = 2, + STATE(8731), 1, + sym_comment, + [253951] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9292), 1, + sym_identifier, + STATE(8732), 1, sym_comment, - ACTIONS(9056), 1, + [253964] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13171), 1, anon_sym_function, - [146579] = 2, - ACTIONS(3), 1, + STATE(8733), 1, sym_comment, - ACTIONS(9058), 1, - anon_sym_namespace, - [146586] = 2, - ACTIONS(3), 1, + [253977] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13173), 1, + anon_sym_symbol, + STATE(8734), 1, sym_comment, - ACTIONS(9060), 1, - anon_sym_RBRACK, - [146593] = 2, + [253990] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(9062), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13175), 1, sym_identifier, - [146600] = 2, + STATE(8735), 1, + sym_comment, + [254003] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9294), 1, + sym_identifier, + STATE(8736), 1, sym_comment, - ACTIONS(9064), 1, + [254016] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13177), 1, anon_sym_function, - [146607] = 2, + STATE(8737), 1, + sym_comment, + [254029] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13179), 1, + anon_sym_new, + STATE(8738), 1, + sym_comment, + [254042] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13181), 1, + sym_identifier, + STATE(8739), 1, sym_comment, - ACTIONS(9066), 1, - anon_sym_RBRACK, - [146614] = 2, + [254055] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9318), 1, + sym_identifier, + STATE(8740), 1, sym_comment, - ACTIONS(9068), 1, - anon_sym_RBRACK, - [146621] = 2, + [254068] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13183), 1, + anon_sym_function, + STATE(8741), 1, + sym_comment, + [254081] = 4, ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(13185), 1, + sym_identifier, + STATE(8742), 1, sym_comment, - ACTIONS(9070), 1, - anon_sym_RBRACK, + [254094] = 1, + ACTIONS(13187), 1, + ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1106)] = 0, - [SMALL_STATE(1107)] = 91, - [SMALL_STATE(1108)] = 180, - [SMALL_STATE(1109)] = 269, - [SMALL_STATE(1110)] = 358, - [SMALL_STATE(1111)] = 455, - [SMALL_STATE(1112)] = 548, - [SMALL_STATE(1113)] = 639, - [SMALL_STATE(1114)] = 730, - [SMALL_STATE(1115)] = 821, - [SMALL_STATE(1116)] = 912, - [SMALL_STATE(1117)] = 1001, - [SMALL_STATE(1118)] = 1094, - [SMALL_STATE(1119)] = 1185, - [SMALL_STATE(1120)] = 1277, - [SMALL_STATE(1121)] = 1355, - [SMALL_STATE(1122)] = 1431, - [SMALL_STATE(1123)] = 1523, - [SMALL_STATE(1124)] = 1611, - [SMALL_STATE(1125)] = 1703, - [SMALL_STATE(1126)] = 1795, - [SMALL_STATE(1127)] = 1883, - [SMALL_STATE(1128)] = 1959, - [SMALL_STATE(1129)] = 2053, - [SMALL_STATE(1130)] = 2122, - [SMALL_STATE(1131)] = 2191, - [SMALL_STATE(1132)] = 2260, - [SMALL_STATE(1133)] = 2347, - [SMALL_STATE(1134)] = 2416, - [SMALL_STATE(1135)] = 2505, - [SMALL_STATE(1136)] = 2574, - [SMALL_STATE(1137)] = 2643, - [SMALL_STATE(1138)] = 2732, - [SMALL_STATE(1139)] = 2801, - [SMALL_STATE(1140)] = 2890, - [SMALL_STATE(1141)] = 2959, - [SMALL_STATE(1142)] = 3028, - [SMALL_STATE(1143)] = 3097, - [SMALL_STATE(1144)] = 3184, - [SMALL_STATE(1145)] = 3275, - [SMALL_STATE(1146)] = 3344, - [SMALL_STATE(1147)] = 3431, - [SMALL_STATE(1148)] = 3518, - [SMALL_STATE(1149)] = 3607, - [SMALL_STATE(1150)] = 3694, - [SMALL_STATE(1151)] = 3763, - [SMALL_STATE(1152)] = 3850, - [SMALL_STATE(1153)] = 3937, - [SMALL_STATE(1154)] = 4024, - [SMALL_STATE(1155)] = 4093, - [SMALL_STATE(1156)] = 4182, - [SMALL_STATE(1157)] = 4251, - [SMALL_STATE(1158)] = 4340, - [SMALL_STATE(1159)] = 4429, - [SMALL_STATE(1160)] = 4518, - [SMALL_STATE(1161)] = 4607, - [SMALL_STATE(1162)] = 4696, - [SMALL_STATE(1163)] = 4790, - [SMALL_STATE(1164)] = 4876, - [SMALL_STATE(1165)] = 4944, - [SMALL_STATE(1166)] = 5030, - [SMALL_STATE(1167)] = 5098, - [SMALL_STATE(1168)] = 5184, - [SMALL_STATE(1169)] = 5256, - [SMALL_STATE(1170)] = 5346, - [SMALL_STATE(1171)] = 5432, - [SMALL_STATE(1172)] = 5520, - [SMALL_STATE(1173)] = 5606, - [SMALL_STATE(1174)] = 5692, - [SMALL_STATE(1175)] = 5778, - [SMALL_STATE(1176)] = 5864, - [SMALL_STATE(1177)] = 5950, - [SMALL_STATE(1178)] = 6041, - [SMALL_STATE(1179)] = 6164, - [SMALL_STATE(1180)] = 6241, - [SMALL_STATE(1181)] = 6318, - [SMALL_STATE(1182)] = 6441, - [SMALL_STATE(1183)] = 6518, - [SMALL_STATE(1184)] = 6595, - [SMALL_STATE(1185)] = 6680, - [SMALL_STATE(1186)] = 6759, - [SMALL_STATE(1187)] = 6882, - [SMALL_STATE(1188)] = 6967, - [SMALL_STATE(1189)] = 7090, - [SMALL_STATE(1190)] = 7167, - [SMALL_STATE(1191)] = 7290, - [SMALL_STATE(1192)] = 7375, - [SMALL_STATE(1193)] = 7460, - [SMALL_STATE(1194)] = 7551, - [SMALL_STATE(1195)] = 7630, - [SMALL_STATE(1196)] = 7753, - [SMALL_STATE(1197)] = 7830, - [SMALL_STATE(1198)] = 7915, - [SMALL_STATE(1199)] = 8038, - [SMALL_STATE(1200)] = 8123, - [SMALL_STATE(1201)] = 8199, - [SMALL_STATE(1202)] = 8273, - [SMALL_STATE(1203)] = 8351, - [SMALL_STATE(1204)] = 8423, - [SMALL_STATE(1205)] = 8501, - [SMALL_STATE(1206)] = 8575, - [SMALL_STATE(1207)] = 8651, - [SMALL_STATE(1208)] = 8735, - [SMALL_STATE(1209)] = 8823, - [SMALL_STATE(1210)] = 8907, - [SMALL_STATE(1211)] = 8979, - [SMALL_STATE(1212)] = 9063, - [SMALL_STATE(1213)] = 9141, - [SMALL_STATE(1214)] = 9219, - [SMALL_STATE(1215)] = 9301, - [SMALL_STATE(1216)] = 9385, - [SMALL_STATE(1217)] = 9457, - [SMALL_STATE(1218)] = 9539, - [SMALL_STATE(1219)] = 9617, - [SMALL_STATE(1220)] = 9689, - [SMALL_STATE(1221)] = 9775, - [SMALL_STATE(1222)] = 9859, - [SMALL_STATE(1223)] = 9937, - [SMALL_STATE(1224)] = 10013, - [SMALL_STATE(1225)] = 10087, - [SMALL_STATE(1226)] = 10206, - [SMALL_STATE(1227)] = 10277, - [SMALL_STATE(1228)] = 10360, - [SMALL_STATE(1229)] = 10479, - [SMALL_STATE(1230)] = 10562, - [SMALL_STATE(1231)] = 10681, - [SMALL_STATE(1232)] = 10800, - [SMALL_STATE(1233)] = 10883, - [SMALL_STATE(1234)] = 10960, - [SMALL_STATE(1235)] = 11025, - [SMALL_STATE(1236)] = 11106, - [SMALL_STATE(1237)] = 11185, - [SMALL_STATE(1238)] = 11304, - [SMALL_STATE(1239)] = 11383, - [SMALL_STATE(1240)] = 11458, - [SMALL_STATE(1241)] = 11541, - [SMALL_STATE(1242)] = 11614, - [SMALL_STATE(1243)] = 11733, - [SMALL_STATE(1244)] = 11806, - [SMALL_STATE(1245)] = 11925, - [SMALL_STATE(1246)] = 12004, - [SMALL_STATE(1247)] = 12087, - [SMALL_STATE(1248)] = 12162, - [SMALL_STATE(1249)] = 12241, - [SMALL_STATE(1250)] = 12360, - [SMALL_STATE(1251)] = 12479, - [SMALL_STATE(1252)] = 12598, - [SMALL_STATE(1253)] = 12681, - [SMALL_STATE(1254)] = 12800, - [SMALL_STATE(1255)] = 12873, - [SMALL_STATE(1256)] = 12946, - [SMALL_STATE(1257)] = 13065, - [SMALL_STATE(1258)] = 13130, - [SMALL_STATE(1259)] = 13203, - [SMALL_STATE(1260)] = 13322, - [SMALL_STATE(1261)] = 13405, - [SMALL_STATE(1262)] = 13478, - [SMALL_STATE(1263)] = 13597, - [SMALL_STATE(1264)] = 13662, - [SMALL_STATE(1265)] = 13727, - [SMALL_STATE(1266)] = 13792, - [SMALL_STATE(1267)] = 13863, - [SMALL_STATE(1268)] = 13946, - [SMALL_STATE(1269)] = 14065, - [SMALL_STATE(1270)] = 14142, - [SMALL_STATE(1271)] = 14213, - [SMALL_STATE(1272)] = 14332, - [SMALL_STATE(1273)] = 14451, - [SMALL_STATE(1274)] = 14516, - [SMALL_STATE(1275)] = 14581, - [SMALL_STATE(1276)] = 14646, - [SMALL_STATE(1277)] = 14715, - [SMALL_STATE(1278)] = 14784, - [SMALL_STATE(1279)] = 14855, - [SMALL_STATE(1280)] = 14926, - [SMALL_STATE(1281)] = 14991, - [SMALL_STATE(1282)] = 15110, - [SMALL_STATE(1283)] = 15229, - [SMALL_STATE(1284)] = 15348, - [SMALL_STATE(1285)] = 15419, - [SMALL_STATE(1286)] = 15494, - [SMALL_STATE(1287)] = 15565, - [SMALL_STATE(1288)] = 15636, - [SMALL_STATE(1289)] = 15755, - [SMALL_STATE(1290)] = 15831, - [SMALL_STATE(1291)] = 15913, - [SMALL_STATE(1292)] = 15989, - [SMALL_STATE(1293)] = 16057, - [SMALL_STATE(1294)] = 16129, - [SMALL_STATE(1295)] = 16211, - [SMALL_STATE(1296)] = 16283, - [SMALL_STATE(1297)] = 16355, - [SMALL_STATE(1298)] = 16425, - [SMALL_STATE(1299)] = 16501, - [SMALL_STATE(1300)] = 16579, - [SMALL_STATE(1301)] = 16649, - [SMALL_STATE(1302)] = 16721, - [SMALL_STATE(1303)] = 16793, - [SMALL_STATE(1304)] = 16861, - [SMALL_STATE(1305)] = 16931, - [SMALL_STATE(1306)] = 17007, - [SMALL_STATE(1307)] = 17083, - [SMALL_STATE(1308)] = 17165, - [SMALL_STATE(1309)] = 17237, - [SMALL_STATE(1310)] = 17307, - [SMALL_STATE(1311)] = 17376, - [SMALL_STATE(1312)] = 17491, - [SMALL_STATE(1313)] = 17562, - [SMALL_STATE(1314)] = 17637, - [SMALL_STATE(1315)] = 17752, - [SMALL_STATE(1316)] = 17823, - [SMALL_STATE(1317)] = 17896, - [SMALL_STATE(1318)] = 18011, - [SMALL_STATE(1319)] = 18080, - [SMALL_STATE(1320)] = 18195, - [SMALL_STATE(1321)] = 18310, - [SMALL_STATE(1322)] = 18379, - [SMALL_STATE(1323)] = 18452, - [SMALL_STATE(1324)] = 18519, - [SMALL_STATE(1325)] = 18634, - [SMALL_STATE(1326)] = 18707, - [SMALL_STATE(1327)] = 18822, - [SMALL_STATE(1328)] = 18895, - [SMALL_STATE(1329)] = 19010, - [SMALL_STATE(1330)] = 19079, - [SMALL_STATE(1331)] = 19147, - [SMALL_STATE(1332)] = 19219, - [SMALL_STATE(1333)] = 19287, - [SMALL_STATE(1334)] = 19355, - [SMALL_STATE(1335)] = 19423, - [SMALL_STATE(1336)] = 19489, - [SMALL_STATE(1337)] = 19561, - [SMALL_STATE(1338)] = 19629, - [SMALL_STATE(1339)] = 19697, - [SMALL_STATE(1340)] = 19767, - [SMALL_STATE(1341)] = 19835, - [SMALL_STATE(1342)] = 19903, - [SMALL_STATE(1343)] = 19971, - [SMALL_STATE(1344)] = 20039, - [SMALL_STATE(1345)] = 20107, - [SMALL_STATE(1346)] = 20175, - [SMALL_STATE(1347)] = 20240, - [SMALL_STATE(1348)] = 20345, - [SMALL_STATE(1349)] = 20450, - [SMALL_STATE(1350)] = 20555, - [SMALL_STATE(1351)] = 20660, - [SMALL_STATE(1352)] = 20727, - [SMALL_STATE(1353)] = 20792, - [SMALL_STATE(1354)] = 20861, - [SMALL_STATE(1355)] = 20966, - [SMALL_STATE(1356)] = 21033, - [SMALL_STATE(1357)] = 21138, - [SMALL_STATE(1358)] = 21243, - [SMALL_STATE(1359)] = 21308, - [SMALL_STATE(1360)] = 21403, - [SMALL_STATE(1361)] = 21498, - [SMALL_STATE(1362)] = 21595, - [SMALL_STATE(1363)] = 21690, - [SMALL_STATE(1364)] = 21785, - [SMALL_STATE(1365)] = 21880, - [SMALL_STATE(1366)] = 21998, - [SMALL_STATE(1367)] = 22116, - [SMALL_STATE(1368)] = 22218, - [SMALL_STATE(1369)] = 22320, - [SMALL_STATE(1370)] = 22438, - [SMALL_STATE(1371)] = 22540, - [SMALL_STATE(1372)] = 22618, - [SMALL_STATE(1373)] = 22720, - [SMALL_STATE(1374)] = 22822, - [SMALL_STATE(1375)] = 22924, - [SMALL_STATE(1376)] = 23026, - [SMALL_STATE(1377)] = 23144, - [SMALL_STATE(1378)] = 23246, - [SMALL_STATE(1379)] = 23348, - [SMALL_STATE(1380)] = 23426, - [SMALL_STATE(1381)] = 23544, - [SMALL_STATE(1382)] = 23646, - [SMALL_STATE(1383)] = 23748, - [SMALL_STATE(1384)] = 23850, - [SMALL_STATE(1385)] = 23952, - [SMALL_STATE(1386)] = 24054, - [SMALL_STATE(1387)] = 24156, - [SMALL_STATE(1388)] = 24258, - [SMALL_STATE(1389)] = 24376, - [SMALL_STATE(1390)] = 24478, - [SMALL_STATE(1391)] = 24567, - [SMALL_STATE(1392)] = 24656, - [SMALL_STATE(1393)] = 24745, - [SMALL_STATE(1394)] = 24834, - [SMALL_STATE(1395)] = 24923, - [SMALL_STATE(1396)] = 25012, - [SMALL_STATE(1397)] = 25092, - [SMALL_STATE(1398)] = 25200, - [SMALL_STATE(1399)] = 25282, - [SMALL_STATE(1400)] = 25338, - [SMALL_STATE(1401)] = 25418, - [SMALL_STATE(1402)] = 25500, - [SMALL_STATE(1403)] = 25556, - [SMALL_STATE(1404)] = 25664, - [SMALL_STATE(1405)] = 25744, - [SMALL_STATE(1406)] = 25824, - [SMALL_STATE(1407)] = 25904, - [SMALL_STATE(1408)] = 25986, - [SMALL_STATE(1409)] = 26066, - [SMALL_STATE(1410)] = 26148, - [SMALL_STATE(1411)] = 26230, - [SMALL_STATE(1412)] = 26312, - [SMALL_STATE(1413)] = 26422, - [SMALL_STATE(1414)] = 26504, - [SMALL_STATE(1415)] = 26583, - [SMALL_STATE(1416)] = 26640, - [SMALL_STATE(1417)] = 26715, - [SMALL_STATE(1418)] = 26796, - [SMALL_STATE(1419)] = 26871, - [SMALL_STATE(1420)] = 26926, - [SMALL_STATE(1421)] = 27001, - [SMALL_STATE(1422)] = 27076, - [SMALL_STATE(1423)] = 27131, - [SMALL_STATE(1424)] = 27188, - [SMALL_STATE(1425)] = 27263, - [SMALL_STATE(1426)] = 27320, - [SMALL_STATE(1427)] = 27377, - [SMALL_STATE(1428)] = 27440, - [SMALL_STATE(1429)] = 27511, - [SMALL_STATE(1430)] = 27586, - [SMALL_STATE(1431)] = 27672, - [SMALL_STATE(1432)] = 27744, - [SMALL_STATE(1433)] = 27820, - [SMALL_STATE(1434)] = 27874, - [SMALL_STATE(1435)] = 27948, - [SMALL_STATE(1436)] = 28024, - [SMALL_STATE(1437)] = 28078, - [SMALL_STATE(1438)] = 28164, - [SMALL_STATE(1439)] = 28240, - [SMALL_STATE(1440)] = 28296, - [SMALL_STATE(1441)] = 28350, - [SMALL_STATE(1442)] = 28408, - [SMALL_STATE(1443)] = 28484, - [SMALL_STATE(1444)] = 28560, - [SMALL_STATE(1445)] = 28646, - [SMALL_STATE(1446)] = 28706, - [SMALL_STATE(1447)] = 28792, - [SMALL_STATE(1448)] = 28852, - [SMALL_STATE(1449)] = 28912, - [SMALL_STATE(1450)] = 28998, - [SMALL_STATE(1451)] = 29058, - [SMALL_STATE(1452)] = 29116, - [SMALL_STATE(1453)] = 29202, - [SMALL_STATE(1454)] = 29260, - [SMALL_STATE(1455)] = 29332, - [SMALL_STATE(1456)] = 29408, - [SMALL_STATE(1457)] = 29468, - [SMALL_STATE(1458)] = 29524, - [SMALL_STATE(1459)] = 29610, - [SMALL_STATE(1460)] = 29664, - [SMALL_STATE(1461)] = 29736, - [SMALL_STATE(1462)] = 29790, - [SMALL_STATE(1463)] = 29843, - [SMALL_STATE(1464)] = 29896, - [SMALL_STATE(1465)] = 29949, - [SMALL_STATE(1466)] = 30026, - [SMALL_STATE(1467)] = 30079, - [SMALL_STATE(1468)] = 30132, - [SMALL_STATE(1469)] = 30185, - [SMALL_STATE(1470)] = 30264, - [SMALL_STATE(1471)] = 30321, - [SMALL_STATE(1472)] = 30388, - [SMALL_STATE(1473)] = 30465, - [SMALL_STATE(1474)] = 30542, - [SMALL_STATE(1475)] = 30619, - [SMALL_STATE(1476)] = 30688, - [SMALL_STATE(1477)] = 30741, - [SMALL_STATE(1478)] = 30794, - [SMALL_STATE(1479)] = 30873, - [SMALL_STATE(1480)] = 30926, - [SMALL_STATE(1481)] = 30979, - [SMALL_STATE(1482)] = 31032, - [SMALL_STATE(1483)] = 31085, - [SMALL_STATE(1484)] = 31138, - [SMALL_STATE(1485)] = 31203, - [SMALL_STATE(1486)] = 31268, - [SMALL_STATE(1487)] = 31321, - [SMALL_STATE(1488)] = 31374, - [SMALL_STATE(1489)] = 31427, - [SMALL_STATE(1490)] = 31492, - [SMALL_STATE(1491)] = 31545, - [SMALL_STATE(1492)] = 31610, - [SMALL_STATE(1493)] = 31669, - [SMALL_STATE(1494)] = 31728, - [SMALL_STATE(1495)] = 31781, - [SMALL_STATE(1496)] = 31860, - [SMALL_STATE(1497)] = 31919, - [SMALL_STATE(1498)] = 31978, - [SMALL_STATE(1499)] = 32035, - [SMALL_STATE(1500)] = 32106, - [SMALL_STATE(1501)] = 32159, - [SMALL_STATE(1502)] = 32212, - [SMALL_STATE(1503)] = 32265, - [SMALL_STATE(1504)] = 32332, - [SMALL_STATE(1505)] = 32385, - [SMALL_STATE(1506)] = 32438, - [SMALL_STATE(1507)] = 32491, - [SMALL_STATE(1508)] = 32544, - [SMALL_STATE(1509)] = 32613, - [SMALL_STATE(1510)] = 32666, - [SMALL_STATE(1511)] = 32719, - [SMALL_STATE(1512)] = 32830, - [SMALL_STATE(1513)] = 32887, - [SMALL_STATE(1514)] = 32942, - [SMALL_STATE(1515)] = 32995, - [SMALL_STATE(1516)] = 33048, - [SMALL_STATE(1517)] = 33101, - [SMALL_STATE(1518)] = 33180, - [SMALL_STATE(1519)] = 33233, - [SMALL_STATE(1520)] = 33286, - [SMALL_STATE(1521)] = 33399, - [SMALL_STATE(1522)] = 33452, - [SMALL_STATE(1523)] = 33505, - [SMALL_STATE(1524)] = 33558, - [SMALL_STATE(1525)] = 33627, - [SMALL_STATE(1526)] = 33680, - [SMALL_STATE(1527)] = 33733, - [SMALL_STATE(1528)] = 33806, - [SMALL_STATE(1529)] = 33859, - [SMALL_STATE(1530)] = 33912, - [SMALL_STATE(1531)] = 33965, - [SMALL_STATE(1532)] = 34018, - [SMALL_STATE(1533)] = 34071, - [SMALL_STATE(1534)] = 34124, - [SMALL_STATE(1535)] = 34177, - [SMALL_STATE(1536)] = 34230, - [SMALL_STATE(1537)] = 34287, - [SMALL_STATE(1538)] = 34346, - [SMALL_STATE(1539)] = 34401, - [SMALL_STATE(1540)] = 34454, - [SMALL_STATE(1541)] = 34507, - [SMALL_STATE(1542)] = 34574, - [SMALL_STATE(1543)] = 34627, - [SMALL_STATE(1544)] = 34680, - [SMALL_STATE(1545)] = 34739, - [SMALL_STATE(1546)] = 34804, - [SMALL_STATE(1547)] = 34857, - [SMALL_STATE(1548)] = 34922, - [SMALL_STATE(1549)] = 34975, - [SMALL_STATE(1550)] = 35042, - [SMALL_STATE(1551)] = 35111, - [SMALL_STATE(1552)] = 35176, - [SMALL_STATE(1553)] = 35229, - [SMALL_STATE(1554)] = 35282, - [SMALL_STATE(1555)] = 35343, - [SMALL_STATE(1556)] = 35396, - [SMALL_STATE(1557)] = 35449, - [SMALL_STATE(1558)] = 35502, - [SMALL_STATE(1559)] = 35563, - [SMALL_STATE(1560)] = 35622, - [SMALL_STATE(1561)] = 35677, - [SMALL_STATE(1562)] = 35732, - [SMALL_STATE(1563)] = 35785, - [SMALL_STATE(1564)] = 35864, - [SMALL_STATE(1565)] = 35943, - [SMALL_STATE(1566)] = 35996, - [SMALL_STATE(1567)] = 36061, - [SMALL_STATE(1568)] = 36114, - [SMALL_STATE(1569)] = 36171, - [SMALL_STATE(1570)] = 36250, - [SMALL_STATE(1571)] = 36319, - [SMALL_STATE(1572)] = 36386, - [SMALL_STATE(1573)] = 36463, - [SMALL_STATE(1574)] = 36540, - [SMALL_STATE(1575)] = 36595, - [SMALL_STATE(1576)] = 36656, - [SMALL_STATE(1577)] = 36709, - [SMALL_STATE(1578)] = 36762, - [SMALL_STATE(1579)] = 36829, - [SMALL_STATE(1580)] = 36896, - [SMALL_STATE(1581)] = 36961, - [SMALL_STATE(1582)] = 37026, - [SMALL_STATE(1583)] = 37097, - [SMALL_STATE(1584)] = 37162, - [SMALL_STATE(1585)] = 37217, - [SMALL_STATE(1586)] = 37328, - [SMALL_STATE(1587)] = 37439, - [SMALL_STATE(1588)] = 37492, - [SMALL_STATE(1589)] = 37603, - [SMALL_STATE(1590)] = 37680, - [SMALL_STATE(1591)] = 37791, - [SMALL_STATE(1592)] = 37844, - [SMALL_STATE(1593)] = 37955, - [SMALL_STATE(1594)] = 38030, - [SMALL_STATE(1595)] = 38085, - [SMALL_STATE(1596)] = 38170, - [SMALL_STATE(1597)] = 38223, - [SMALL_STATE(1598)] = 38276, - [SMALL_STATE(1599)] = 38329, - [SMALL_STATE(1600)] = 38396, - [SMALL_STATE(1601)] = 38495, - [SMALL_STATE(1602)] = 38564, - [SMALL_STATE(1603)] = 38617, - [SMALL_STATE(1604)] = 38676, - [SMALL_STATE(1605)] = 38743, - [SMALL_STATE(1606)] = 38844, - [SMALL_STATE(1607)] = 38925, - [SMALL_STATE(1608)] = 39018, - [SMALL_STATE(1609)] = 39113, - [SMALL_STATE(1610)] = 39210, - [SMALL_STATE(1611)] = 39289, - [SMALL_STATE(1612)] = 39342, - [SMALL_STATE(1613)] = 39423, - [SMALL_STATE(1614)] = 39512, - [SMALL_STATE(1615)] = 39615, - [SMALL_STATE(1616)] = 39674, - [SMALL_STATE(1617)] = 39785, - [SMALL_STATE(1618)] = 39896, - [SMALL_STATE(1619)] = 40007, - [SMALL_STATE(1620)] = 40118, - [SMALL_STATE(1621)] = 40229, - [SMALL_STATE(1622)] = 40340, - [SMALL_STATE(1623)] = 40393, - [SMALL_STATE(1624)] = 40458, - [SMALL_STATE(1625)] = 40525, - [SMALL_STATE(1626)] = 40580, - [SMALL_STATE(1627)] = 40645, - [SMALL_STATE(1628)] = 40712, - [SMALL_STATE(1629)] = 40767, - [SMALL_STATE(1630)] = 40822, - [SMALL_STATE(1631)] = 40875, - [SMALL_STATE(1632)] = 40928, - [SMALL_STATE(1633)] = 40997, - [SMALL_STATE(1634)] = 41050, - [SMALL_STATE(1635)] = 41129, - [SMALL_STATE(1636)] = 41198, - [SMALL_STATE(1637)] = 41251, - [SMALL_STATE(1638)] = 41304, - [SMALL_STATE(1639)] = 41371, - [SMALL_STATE(1640)] = 41438, - [SMALL_STATE(1641)] = 41491, - [SMALL_STATE(1642)] = 41560, - [SMALL_STATE(1643)] = 41627, - [SMALL_STATE(1644)] = 41694, - [SMALL_STATE(1645)] = 41763, - [SMALL_STATE(1646)] = 41825, - [SMALL_STATE(1647)] = 41935, - [SMALL_STATE(1648)] = 42015, - [SMALL_STATE(1649)] = 42069, - [SMALL_STATE(1650)] = 42123, - [SMALL_STATE(1651)] = 42201, - [SMALL_STATE(1652)] = 42297, - [SMALL_STATE(1653)] = 42351, - [SMALL_STATE(1654)] = 42403, - [SMALL_STATE(1655)] = 42497, - [SMALL_STATE(1656)] = 42607, - [SMALL_STATE(1657)] = 42719, - [SMALL_STATE(1658)] = 42771, - [SMALL_STATE(1659)] = 42863, - [SMALL_STATE(1660)] = 42973, - [SMALL_STATE(1661)] = 43053, - [SMALL_STATE(1662)] = 43111, - [SMALL_STATE(1663)] = 43167, - [SMALL_STATE(1664)] = 43219, - [SMALL_STATE(1665)] = 43329, - [SMALL_STATE(1666)] = 43381, - [SMALL_STATE(1667)] = 43433, - [SMALL_STATE(1668)] = 43485, - [SMALL_STATE(1669)] = 43547, - [SMALL_STATE(1670)] = 43609, - [SMALL_STATE(1671)] = 43681, - [SMALL_STATE(1672)] = 43733, - [SMALL_STATE(1673)] = 43785, - [SMALL_STATE(1674)] = 43885, - [SMALL_STATE(1675)] = 43937, - [SMALL_STATE(1676)] = 44047, - [SMALL_STATE(1677)] = 44145, - [SMALL_STATE(1678)] = 44203, - [SMALL_STATE(1679)] = 44313, - [SMALL_STATE(1680)] = 44423, - [SMALL_STATE(1681)] = 44475, - [SMALL_STATE(1682)] = 44529, - [SMALL_STATE(1683)] = 44639, - [SMALL_STATE(1684)] = 44741, - [SMALL_STATE(1685)] = 44793, - [SMALL_STATE(1686)] = 44855, - [SMALL_STATE(1687)] = 44917, - [SMALL_STATE(1688)] = 45001, - [SMALL_STATE(1689)] = 45075, - [SMALL_STATE(1690)] = 45127, - [SMALL_STATE(1691)] = 45179, - [SMALL_STATE(1692)] = 45231, - [SMALL_STATE(1693)] = 45283, - [SMALL_STATE(1694)] = 45393, - [SMALL_STATE(1695)] = 45503, - [SMALL_STATE(1696)] = 45555, - [SMALL_STATE(1697)] = 45607, - [SMALL_STATE(1698)] = 45659, - [SMALL_STATE(1699)] = 45711, - [SMALL_STATE(1700)] = 45763, - [SMALL_STATE(1701)] = 45815, - [SMALL_STATE(1702)] = 45867, - [SMALL_STATE(1703)] = 45919, - [SMALL_STATE(1704)] = 45971, - [SMALL_STATE(1705)] = 46049, - [SMALL_STATE(1706)] = 46101, - [SMALL_STATE(1707)] = 46153, - [SMALL_STATE(1708)] = 46205, - [SMALL_STATE(1709)] = 46315, - [SMALL_STATE(1710)] = 46367, - [SMALL_STATE(1711)] = 46419, - [SMALL_STATE(1712)] = 46471, - [SMALL_STATE(1713)] = 46581, - [SMALL_STATE(1714)] = 46633, - [SMALL_STATE(1715)] = 46685, - [SMALL_STATE(1716)] = 46737, - [SMALL_STATE(1717)] = 46793, - [SMALL_STATE(1718)] = 46845, - [SMALL_STATE(1719)] = 46907, - [SMALL_STATE(1720)] = 47017, - [SMALL_STATE(1721)] = 47079, - [SMALL_STATE(1722)] = 47195, - [SMALL_STATE(1723)] = 47267, - [SMALL_STATE(1724)] = 47329, - [SMALL_STATE(1725)] = 47391, - [SMALL_STATE(1726)] = 47479, - [SMALL_STATE(1727)] = 47593, - [SMALL_STATE(1728)] = 47645, - [SMALL_STATE(1729)] = 47697, - [SMALL_STATE(1730)] = 47749, - [SMALL_STATE(1731)] = 47801, - [SMALL_STATE(1732)] = 47863, - [SMALL_STATE(1733)] = 47915, - [SMALL_STATE(1734)] = 47967, - [SMALL_STATE(1735)] = 48019, - [SMALL_STATE(1736)] = 48097, - [SMALL_STATE(1737)] = 48149, - [SMALL_STATE(1738)] = 48221, - [SMALL_STATE(1739)] = 48283, - [SMALL_STATE(1740)] = 48335, - [SMALL_STATE(1741)] = 48387, - [SMALL_STATE(1742)] = 48439, - [SMALL_STATE(1743)] = 48491, - [SMALL_STATE(1744)] = 48543, - [SMALL_STATE(1745)] = 48595, - [SMALL_STATE(1746)] = 48647, - [SMALL_STATE(1747)] = 48699, - [SMALL_STATE(1748)] = 48751, - [SMALL_STATE(1749)] = 48803, - [SMALL_STATE(1750)] = 48855, - [SMALL_STATE(1751)] = 48971, - [SMALL_STATE(1752)] = 49023, - [SMALL_STATE(1753)] = 49075, - [SMALL_STATE(1754)] = 49127, - [SMALL_STATE(1755)] = 49189, - [SMALL_STATE(1756)] = 49251, - [SMALL_STATE(1757)] = 49361, - [SMALL_STATE(1758)] = 49471, - [SMALL_STATE(1759)] = 49543, - [SMALL_STATE(1760)] = 49595, - [SMALL_STATE(1761)] = 49667, - [SMALL_STATE(1762)] = 49777, - [SMALL_STATE(1763)] = 49833, - [SMALL_STATE(1764)] = 49885, - [SMALL_STATE(1765)] = 49937, - [SMALL_STATE(1766)] = 49989, - [SMALL_STATE(1767)] = 50061, - [SMALL_STATE(1768)] = 50113, - [SMALL_STATE(1769)] = 50165, - [SMALL_STATE(1770)] = 50217, - [SMALL_STATE(1771)] = 50279, - [SMALL_STATE(1772)] = 50351, - [SMALL_STATE(1773)] = 50413, - [SMALL_STATE(1774)] = 50523, - [SMALL_STATE(1775)] = 50575, - [SMALL_STATE(1776)] = 50627, - [SMALL_STATE(1777)] = 50689, - [SMALL_STATE(1778)] = 50805, - [SMALL_STATE(1779)] = 50867, - [SMALL_STATE(1780)] = 50977, - [SMALL_STATE(1781)] = 51045, - [SMALL_STATE(1782)] = 51115, - [SMALL_STATE(1783)] = 51177, - [SMALL_STATE(1784)] = 51241, - [SMALL_STATE(1785)] = 51355, - [SMALL_STATE(1786)] = 51427, - [SMALL_STATE(1787)] = 51497, - [SMALL_STATE(1788)] = 51561, - [SMALL_STATE(1789)] = 51673, - [SMALL_STATE(1790)] = 51787, - [SMALL_STATE(1791)] = 51897, - [SMALL_STATE(1792)] = 52007, - [SMALL_STATE(1793)] = 52117, - [SMALL_STATE(1794)] = 52231, - [SMALL_STATE(1795)] = 52309, - [SMALL_STATE(1796)] = 52425, - [SMALL_STATE(1797)] = 52497, - [SMALL_STATE(1798)] = 52551, - [SMALL_STATE(1799)] = 52611, - [SMALL_STATE(1800)] = 52665, - [SMALL_STATE(1801)] = 52749, - [SMALL_STATE(1802)] = 52859, - [SMALL_STATE(1803)] = 52969, - [SMALL_STATE(1804)] = 53071, - [SMALL_STATE(1805)] = 53181, - [SMALL_STATE(1806)] = 53269, - [SMALL_STATE(1807)] = 53349, - [SMALL_STATE(1808)] = 53427, - [SMALL_STATE(1809)] = 53523, - [SMALL_STATE(1810)] = 53617, - [SMALL_STATE(1811)] = 53709, - [SMALL_STATE(1812)] = 53789, - [SMALL_STATE(1813)] = 53889, - [SMALL_STATE(1814)] = 53987, - [SMALL_STATE(1815)] = 54101, - [SMALL_STATE(1816)] = 54159, - [SMALL_STATE(1817)] = 54243, - [SMALL_STATE(1818)] = 54317, - [SMALL_STATE(1819)] = 54427, - [SMALL_STATE(1820)] = 54484, - [SMALL_STATE(1821)] = 54595, - [SMALL_STATE(1822)] = 54658, - [SMALL_STATE(1823)] = 54771, - [SMALL_STATE(1824)] = 54828, - [SMALL_STATE(1825)] = 54885, - [SMALL_STATE(1826)] = 54952, - [SMALL_STATE(1827)] = 55015, - [SMALL_STATE(1828)] = 55124, - [SMALL_STATE(1829)] = 55233, - [SMALL_STATE(1830)] = 55292, - [SMALL_STATE(1831)] = 55355, - [SMALL_STATE(1832)] = 55464, - [SMALL_STATE(1833)] = 55573, - [SMALL_STATE(1834)] = 55686, - [SMALL_STATE(1835)] = 55797, - [SMALL_STATE(1836)] = 55866, - [SMALL_STATE(1837)] = 55975, - [SMALL_STATE(1838)] = 56084, - [SMALL_STATE(1839)] = 56193, - [SMALL_STATE(1840)] = 56270, - [SMALL_STATE(1841)] = 56327, - [SMALL_STATE(1842)] = 56398, - [SMALL_STATE(1843)] = 56507, - [SMALL_STATE(1844)] = 56564, - [SMALL_STATE(1845)] = 56621, - [SMALL_STATE(1846)] = 56678, - [SMALL_STATE(1847)] = 56751, - [SMALL_STATE(1848)] = 56834, - [SMALL_STATE(1849)] = 56947, - [SMALL_STATE(1850)] = 57006, - [SMALL_STATE(1851)] = 57059, - [SMALL_STATE(1852)] = 57112, - [SMALL_STATE(1853)] = 57223, - [SMALL_STATE(1854)] = 57282, - [SMALL_STATE(1855)] = 57395, - [SMALL_STATE(1856)] = 57450, - [SMALL_STATE(1857)] = 57547, - [SMALL_STATE(1858)] = 57622, - [SMALL_STATE(1859)] = 57675, - [SMALL_STATE(1860)] = 57774, - [SMALL_STATE(1861)] = 57831, - [SMALL_STATE(1862)] = 57940, - [SMALL_STATE(1863)] = 57995, - [SMALL_STATE(1864)] = 58074, - [SMALL_STATE(1865)] = 58165, - [SMALL_STATE(1866)] = 58232, - [SMALL_STATE(1867)] = 58341, - [SMALL_STATE(1868)] = 58434, - [SMALL_STATE(1869)] = 58529, - [SMALL_STATE(1870)] = 58606, - [SMALL_STATE(1871)] = 58685, - [SMALL_STATE(1872)] = 58754, - [SMALL_STATE(1873)] = 58841, - [SMALL_STATE(1874)] = 58952, - [SMALL_STATE(1875)] = 59063, - [SMALL_STATE(1876)] = 59176, - [SMALL_STATE(1877)] = 59277, - [SMALL_STATE(1878)] = 59348, - [SMALL_STATE(1879)] = 59403, - [SMALL_STATE(1880)] = 59512, - [SMALL_STATE(1881)] = 59621, - [SMALL_STATE(1882)] = 59730, - [SMALL_STATE(1883)] = 59839, - [SMALL_STATE(1884)] = 59948, - [SMALL_STATE(1885)] = 60059, - [SMALL_STATE(1886)] = 60110, - [SMALL_STATE(1887)] = 60221, - [SMALL_STATE(1888)] = 60282, - [SMALL_STATE(1889)] = 60341, - [SMALL_STATE(1890)] = 60396, - [SMALL_STATE(1891)] = 60509, - [SMALL_STATE(1892)] = 60620, - [SMALL_STATE(1893)] = 60733, - [SMALL_STATE(1894)] = 60842, - [SMALL_STATE(1895)] = 60903, - [SMALL_STATE(1896)] = 60960, - [SMALL_STATE(1897)] = 61073, - [SMALL_STATE(1898)] = 61182, - [SMALL_STATE(1899)] = 61295, - [SMALL_STATE(1900)] = 61408, - [SMALL_STATE(1901)] = 61519, - [SMALL_STATE(1902)] = 61629, - [SMALL_STATE(1903)] = 61681, - [SMALL_STATE(1904)] = 61789, - [SMALL_STATE(1905)] = 61899, - [SMALL_STATE(1906)] = 61953, - [SMALL_STATE(1907)] = 62061, - [SMALL_STATE(1908)] = 62169, - [SMALL_STATE(1909)] = 62241, - [SMALL_STATE(1910)] = 62351, - [SMALL_STATE(1911)] = 62401, - [SMALL_STATE(1912)] = 62451, - [SMALL_STATE(1913)] = 62533, - [SMALL_STATE(1914)] = 62643, - [SMALL_STATE(1915)] = 62713, - [SMALL_STATE(1916)] = 62809, - [SMALL_STATE(1917)] = 62907, - [SMALL_STATE(1918)] = 62957, - [SMALL_STATE(1919)] = 63035, - [SMALL_STATE(1920)] = 63125, - [SMALL_STATE(1921)] = 63181, - [SMALL_STATE(1922)] = 63257, - [SMALL_STATE(1923)] = 63319, - [SMALL_STATE(1924)] = 63427, - [SMALL_STATE(1925)] = 63519, - [SMALL_STATE(1926)] = 63613, - [SMALL_STATE(1927)] = 63689, - [SMALL_STATE(1928)] = 63757, - [SMALL_STATE(1929)] = 63865, - [SMALL_STATE(1930)] = 63927, - [SMALL_STATE(1931)] = 64005, - [SMALL_STATE(1932)] = 64091, - [SMALL_STATE(1933)] = 64191, - [SMALL_STATE(1934)] = 64253, - [SMALL_STATE(1935)] = 64361, - [SMALL_STATE(1936)] = 64469, - [SMALL_STATE(1937)] = 64519, - [SMALL_STATE(1938)] = 64571, - [SMALL_STATE(1939)] = 64679, - [SMALL_STATE(1940)] = 64741, - [SMALL_STATE(1941)] = 64803, - [SMALL_STATE(1942)] = 64853, - [SMALL_STATE(1943)] = 64961, - [SMALL_STATE(1944)] = 65023, - [SMALL_STATE(1945)] = 65085, - [SMALL_STATE(1946)] = 65147, - [SMALL_STATE(1947)] = 65197, - [SMALL_STATE(1948)] = 65253, - [SMALL_STATE(1949)] = 65361, - [SMALL_STATE(1950)] = 65411, - [SMALL_STATE(1951)] = 65519, - [SMALL_STATE(1952)] = 65575, - [SMALL_STATE(1953)] = 65631, - [SMALL_STATE(1954)] = 65689, - [SMALL_STATE(1955)] = 65739, - [SMALL_STATE(1956)] = 65789, - [SMALL_STATE(1957)] = 65839, - [SMALL_STATE(1958)] = 65889, - [SMALL_STATE(1959)] = 65939, - [SMALL_STATE(1960)] = 66047, - [SMALL_STATE(1961)] = 66097, - [SMALL_STATE(1962)] = 66207, - [SMALL_STATE(1963)] = 66257, - [SMALL_STATE(1964)] = 66321, - [SMALL_STATE(1965)] = 66371, - [SMALL_STATE(1966)] = 66429, - [SMALL_STATE(1967)] = 66491, - [SMALL_STATE(1968)] = 66543, - [SMALL_STATE(1969)] = 66593, - [SMALL_STATE(1970)] = 66643, - [SMALL_STATE(1971)] = 66693, - [SMALL_STATE(1972)] = 66743, - [SMALL_STATE(1973)] = 66803, - [SMALL_STATE(1974)] = 66853, - [SMALL_STATE(1975)] = 66911, - [SMALL_STATE(1976)] = 66961, - [SMALL_STATE(1977)] = 67069, - [SMALL_STATE(1978)] = 67177, - [SMALL_STATE(1979)] = 67285, - [SMALL_STATE(1980)] = 67347, - [SMALL_STATE(1981)] = 67455, - [SMALL_STATE(1982)] = 67517, - [SMALL_STATE(1983)] = 67627, - [SMALL_STATE(1984)] = 67677, - [SMALL_STATE(1985)] = 67739, - [SMALL_STATE(1986)] = 67849, - [SMALL_STATE(1987)] = 67899, - [SMALL_STATE(1988)] = 68009, - [SMALL_STATE(1989)] = 68059, - [SMALL_STATE(1990)] = 68109, - [SMALL_STATE(1991)] = 68159, - [SMALL_STATE(1992)] = 68227, - [SMALL_STATE(1993)] = 68337, - [SMALL_STATE(1994)] = 68387, - [SMALL_STATE(1995)] = 68497, - [SMALL_STATE(1996)] = 68553, - [SMALL_STATE(1997)] = 68607, - [SMALL_STATE(1998)] = 68657, - [SMALL_STATE(1999)] = 68707, - [SMALL_STATE(2000)] = 68757, - [SMALL_STATE(2001)] = 68807, - [SMALL_STATE(2002)] = 68873, - [SMALL_STATE(2003)] = 68927, - [SMALL_STATE(2004)] = 68977, - [SMALL_STATE(2005)] = 69027, - [SMALL_STATE(2006)] = 69079, - [SMALL_STATE(2007)] = 69129, - [SMALL_STATE(2008)] = 69185, - [SMALL_STATE(2009)] = 69235, - [SMALL_STATE(2010)] = 69297, - [SMALL_STATE(2011)] = 69353, - [SMALL_STATE(2012)] = 69409, - [SMALL_STATE(2013)] = 69461, - [SMALL_STATE(2014)] = 69569, - [SMALL_STATE(2015)] = 69619, - [SMALL_STATE(2016)] = 69683, - [SMALL_STATE(2017)] = 69747, - [SMALL_STATE(2018)] = 69855, - [SMALL_STATE(2019)] = 69905, - [SMALL_STATE(2020)] = 69959, - [SMALL_STATE(2021)] = 70069, - [SMALL_STATE(2022)] = 70179, - [SMALL_STATE(2023)] = 70289, - [SMALL_STATE(2024)] = 70347, - [SMALL_STATE(2025)] = 70409, - [SMALL_STATE(2026)] = 70459, - [SMALL_STATE(2027)] = 70511, - [SMALL_STATE(2028)] = 70561, - [SMALL_STATE(2029)] = 70611, - [SMALL_STATE(2030)] = 70661, - [SMALL_STATE(2031)] = 70711, - [SMALL_STATE(2032)] = 70761, - [SMALL_STATE(2033)] = 70811, - [SMALL_STATE(2034)] = 70861, - [SMALL_STATE(2035)] = 70911, - [SMALL_STATE(2036)] = 70961, - [SMALL_STATE(2037)] = 71011, - [SMALL_STATE(2038)] = 71061, - [SMALL_STATE(2039)] = 71111, - [SMALL_STATE(2040)] = 71161, - [SMALL_STATE(2041)] = 71211, - [SMALL_STATE(2042)] = 71261, - [SMALL_STATE(2043)] = 71311, - [SMALL_STATE(2044)] = 71363, - [SMALL_STATE(2045)] = 71413, - [SMALL_STATE(2046)] = 71463, - [SMALL_STATE(2047)] = 71513, - [SMALL_STATE(2048)] = 71563, - [SMALL_STATE(2049)] = 71619, - [SMALL_STATE(2050)] = 71669, - [SMALL_STATE(2051)] = 71719, - [SMALL_STATE(2052)] = 71769, - [SMALL_STATE(2053)] = 71819, - [SMALL_STATE(2054)] = 71869, - [SMALL_STATE(2055)] = 71979, - [SMALL_STATE(2056)] = 72035, - [SMALL_STATE(2057)] = 72145, - [SMALL_STATE(2058)] = 72195, - [SMALL_STATE(2059)] = 72247, - [SMALL_STATE(2060)] = 72357, - [SMALL_STATE(2061)] = 72407, - [SMALL_STATE(2062)] = 72457, - [SMALL_STATE(2063)] = 72519, - [SMALL_STATE(2064)] = 72569, - [SMALL_STATE(2065)] = 72623, - [SMALL_STATE(2066)] = 72683, - [SMALL_STATE(2067)] = 72739, - [SMALL_STATE(2068)] = 72849, - [SMALL_STATE(2069)] = 72911, - [SMALL_STATE(2070)] = 72963, - [SMALL_STATE(2071)] = 73071, - [SMALL_STATE(2072)] = 73127, - [SMALL_STATE(2073)] = 73185, - [SMALL_STATE(2074)] = 73295, - [SMALL_STATE(2075)] = 73345, - [SMALL_STATE(2076)] = 73455, - [SMALL_STATE(2077)] = 73505, - [SMALL_STATE(2078)] = 73557, - [SMALL_STATE(2079)] = 73609, - [SMALL_STATE(2080)] = 73659, - [SMALL_STATE(2081)] = 73721, - [SMALL_STATE(2082)] = 73783, - [SMALL_STATE(2083)] = 73845, - [SMALL_STATE(2084)] = 73895, - [SMALL_STATE(2085)] = 73945, - [SMALL_STATE(2086)] = 73999, - [SMALL_STATE(2087)] = 74055, - [SMALL_STATE(2088)] = 74111, - [SMALL_STATE(2089)] = 74173, - [SMALL_STATE(2090)] = 74235, - [SMALL_STATE(2091)] = 74291, - [SMALL_STATE(2092)] = 74341, - [SMALL_STATE(2093)] = 74403, - [SMALL_STATE(2094)] = 74465, - [SMALL_STATE(2095)] = 74517, - [SMALL_STATE(2096)] = 74579, - [SMALL_STATE(2097)] = 74629, - [SMALL_STATE(2098)] = 74678, - [SMALL_STATE(2099)] = 74755, - [SMALL_STATE(2100)] = 74816, - [SMALL_STATE(2101)] = 74865, - [SMALL_STATE(2102)] = 74918, - [SMALL_STATE(2103)] = 74971, - [SMALL_STATE(2104)] = 75024, - [SMALL_STATE(2105)] = 75131, - [SMALL_STATE(2106)] = 75186, - [SMALL_STATE(2107)] = 75243, - [SMALL_STATE(2108)] = 75292, - [SMALL_STATE(2109)] = 75343, - [SMALL_STATE(2110)] = 75450, - [SMALL_STATE(2111)] = 75499, - [SMALL_STATE(2112)] = 75606, - [SMALL_STATE(2113)] = 75667, - [SMALL_STATE(2114)] = 75720, - [SMALL_STATE(2115)] = 75769, - [SMALL_STATE(2116)] = 75818, - [SMALL_STATE(2117)] = 75867, - [SMALL_STATE(2118)] = 75948, - [SMALL_STATE(2119)] = 75997, - [SMALL_STATE(2120)] = 76050, - [SMALL_STATE(2121)] = 76099, - [SMALL_STATE(2122)] = 76152, - [SMALL_STATE(2123)] = 76259, - [SMALL_STATE(2124)] = 76308, - [SMALL_STATE(2125)] = 76357, - [SMALL_STATE(2126)] = 76410, - [SMALL_STATE(2127)] = 76459, - [SMALL_STATE(2128)] = 76508, - [SMALL_STATE(2129)] = 76561, - [SMALL_STATE(2130)] = 76614, - [SMALL_STATE(2131)] = 76721, - [SMALL_STATE(2132)] = 76774, - [SMALL_STATE(2133)] = 76833, - [SMALL_STATE(2134)] = 76890, - [SMALL_STATE(2135)] = 76943, - [SMALL_STATE(2136)] = 77000, - [SMALL_STATE(2137)] = 77059, - [SMALL_STATE(2138)] = 77110, - [SMALL_STATE(2139)] = 77161, - [SMALL_STATE(2140)] = 77214, - [SMALL_STATE(2141)] = 77267, - [SMALL_STATE(2142)] = 77318, - [SMALL_STATE(2143)] = 77373, - [SMALL_STATE(2144)] = 77480, - [SMALL_STATE(2145)] = 77533, - [SMALL_STATE(2146)] = 77582, - [SMALL_STATE(2147)] = 77677, - [SMALL_STATE(2148)] = 77774, - [SMALL_STATE(2149)] = 77833, - [SMALL_STATE(2150)] = 77940, - [SMALL_STATE(2151)] = 77989, - [SMALL_STATE(2152)] = 78038, - [SMALL_STATE(2153)] = 78119, - [SMALL_STATE(2154)] = 78190, - [SMALL_STATE(2155)] = 78297, - [SMALL_STATE(2156)] = 78346, - [SMALL_STATE(2157)] = 78453, - [SMALL_STATE(2158)] = 78560, - [SMALL_STATE(2159)] = 78609, - [SMALL_STATE(2160)] = 78666, - [SMALL_STATE(2161)] = 78773, - [SMALL_STATE(2162)] = 78880, - [SMALL_STATE(2163)] = 78987, - [SMALL_STATE(2164)] = 79036, - [SMALL_STATE(2165)] = 79085, - [SMALL_STATE(2166)] = 79192, - [SMALL_STATE(2167)] = 79247, - [SMALL_STATE(2168)] = 79354, - [SMALL_STATE(2169)] = 79409, - [SMALL_STATE(2170)] = 79464, - [SMALL_STATE(2171)] = 79571, - [SMALL_STATE(2172)] = 79678, - [SMALL_STATE(2173)] = 79785, - [SMALL_STATE(2174)] = 79892, - [SMALL_STATE(2175)] = 79945, - [SMALL_STATE(2176)] = 79998, - [SMALL_STATE(2177)] = 80097, - [SMALL_STATE(2178)] = 80158, - [SMALL_STATE(2179)] = 80209, - [SMALL_STATE(2180)] = 80264, - [SMALL_STATE(2181)] = 80371, - [SMALL_STATE(2182)] = 80424, - [SMALL_STATE(2183)] = 80475, - [SMALL_STATE(2184)] = 80526, - [SMALL_STATE(2185)] = 80579, - [SMALL_STATE(2186)] = 80630, - [SMALL_STATE(2187)] = 80701, - [SMALL_STATE(2188)] = 80782, - [SMALL_STATE(2189)] = 80877, - [SMALL_STATE(2190)] = 80974, - [SMALL_STATE(2191)] = 81051, - [SMALL_STATE(2192)] = 81140, - [SMALL_STATE(2193)] = 81189, - [SMALL_STATE(2194)] = 81244, - [SMALL_STATE(2195)] = 81297, - [SMALL_STATE(2196)] = 81382, - [SMALL_STATE(2197)] = 81431, - [SMALL_STATE(2198)] = 81522, - [SMALL_STATE(2199)] = 81615, - [SMALL_STATE(2200)] = 81690, - [SMALL_STATE(2201)] = 81767, - [SMALL_STATE(2202)] = 81852, - [SMALL_STATE(2203)] = 81951, - [SMALL_STATE(2204)] = 82058, - [SMALL_STATE(2205)] = 82165, - [SMALL_STATE(2206)] = 82240, - [SMALL_STATE(2207)] = 82293, - [SMALL_STATE(2208)] = 82342, - [SMALL_STATE(2209)] = 82449, - [SMALL_STATE(2210)] = 82556, - [SMALL_STATE(2211)] = 82605, - [SMALL_STATE(2212)] = 82662, - [SMALL_STATE(2213)] = 82715, - [SMALL_STATE(2214)] = 82808, - [SMALL_STATE(2215)] = 82899, - [SMALL_STATE(2216)] = 82976, - [SMALL_STATE(2217)] = 83065, - [SMALL_STATE(2218)] = 83142, - [SMALL_STATE(2219)] = 83239, - [SMALL_STATE(2220)] = 83334, - [SMALL_STATE(2221)] = 83383, - [SMALL_STATE(2222)] = 83432, - [SMALL_STATE(2223)] = 83485, - [SMALL_STATE(2224)] = 83544, - [SMALL_STATE(2225)] = 83597, - [SMALL_STATE(2226)] = 83648, - [SMALL_STATE(2227)] = 83701, - [SMALL_STATE(2228)] = 83808, - [SMALL_STATE(2229)] = 83897, - [SMALL_STATE(2230)] = 83952, - [SMALL_STATE(2231)] = 84043, - [SMALL_STATE(2232)] = 84136, - [SMALL_STATE(2233)] = 84191, - [SMALL_STATE(2234)] = 84266, - [SMALL_STATE(2235)] = 84337, - [SMALL_STATE(2236)] = 84414, - [SMALL_STATE(2237)] = 84499, - [SMALL_STATE(2238)] = 84598, - [SMALL_STATE(2239)] = 84705, - [SMALL_STATE(2240)] = 84772, - [SMALL_STATE(2241)] = 84879, - [SMALL_STATE(2242)] = 84986, - [SMALL_STATE(2243)] = 85035, - [SMALL_STATE(2244)] = 85110, - [SMALL_STATE(2245)] = 85179, - [SMALL_STATE(2246)] = 85286, - [SMALL_STATE(2247)] = 85339, - [SMALL_STATE(2248)] = 85446, - [SMALL_STATE(2249)] = 85553, - [SMALL_STATE(2250)] = 85660, - [SMALL_STATE(2251)] = 85767, - [SMALL_STATE(2252)] = 85874, - [SMALL_STATE(2253)] = 85981, - [SMALL_STATE(2254)] = 86088, - [SMALL_STATE(2255)] = 86149, - [SMALL_STATE(2256)] = 86202, - [SMALL_STATE(2257)] = 86309, - [SMALL_STATE(2258)] = 86362, - [SMALL_STATE(2259)] = 86419, - [SMALL_STATE(2260)] = 86472, - [SMALL_STATE(2261)] = 86539, - [SMALL_STATE(2262)] = 86588, - [SMALL_STATE(2263)] = 86645, - [SMALL_STATE(2264)] = 86694, - [SMALL_STATE(2265)] = 86743, - [SMALL_STATE(2266)] = 86794, - [SMALL_STATE(2267)] = 86843, - [SMALL_STATE(2268)] = 86892, - [SMALL_STATE(2269)] = 86941, - [SMALL_STATE(2270)] = 86990, - [SMALL_STATE(2271)] = 87039, - [SMALL_STATE(2272)] = 87088, - [SMALL_STATE(2273)] = 87137, - [SMALL_STATE(2274)] = 87186, - [SMALL_STATE(2275)] = 87293, - [SMALL_STATE(2276)] = 87342, - [SMALL_STATE(2277)] = 87391, - [SMALL_STATE(2278)] = 87460, - [SMALL_STATE(2279)] = 87509, - [SMALL_STATE(2280)] = 87616, - [SMALL_STATE(2281)] = 87665, - [SMALL_STATE(2282)] = 87734, - [SMALL_STATE(2283)] = 87785, - [SMALL_STATE(2284)] = 87834, - [SMALL_STATE(2285)] = 87887, - [SMALL_STATE(2286)] = 87994, - [SMALL_STATE(2287)] = 88043, - [SMALL_STATE(2288)] = 88150, - [SMALL_STATE(2289)] = 88257, - [SMALL_STATE(2290)] = 88310, - [SMALL_STATE(2291)] = 88359, - [SMALL_STATE(2292)] = 88466, - [SMALL_STATE(2293)] = 88533, - [SMALL_STATE(2294)] = 88590, - [SMALL_STATE(2295)] = 88639, - [SMALL_STATE(2296)] = 88688, - [SMALL_STATE(2297)] = 88749, - [SMALL_STATE(2298)] = 88800, - [SMALL_STATE(2299)] = 88907, - [SMALL_STATE(2300)] = 89014, - [SMALL_STATE(2301)] = 89063, - [SMALL_STATE(2302)] = 89112, - [SMALL_STATE(2303)] = 89161, - [SMALL_STATE(2304)] = 89210, - [SMALL_STATE(2305)] = 89319, - [SMALL_STATE(2306)] = 89426, - [SMALL_STATE(2307)] = 89477, - [SMALL_STATE(2308)] = 89584, - [SMALL_STATE(2309)] = 89635, - [SMALL_STATE(2310)] = 89710, - [SMALL_STATE(2311)] = 89785, - [SMALL_STATE(2312)] = 89834, - [SMALL_STATE(2313)] = 89918, - [SMALL_STATE(2314)] = 90022, - [SMALL_STATE(2315)] = 90078, - [SMALL_STATE(2316)] = 90130, - [SMALL_STATE(2317)] = 90234, - [SMALL_STATE(2318)] = 90338, - [SMALL_STATE(2319)] = 90412, - [SMALL_STATE(2320)] = 90466, - [SMALL_STATE(2321)] = 90522, - [SMALL_STATE(2322)] = 90590, - [SMALL_STATE(2323)] = 90660, - [SMALL_STATE(2324)] = 90764, - [SMALL_STATE(2325)] = 90818, - [SMALL_STATE(2326)] = 90872, - [SMALL_STATE(2327)] = 90926, - [SMALL_STATE(2328)] = 90980, - [SMALL_STATE(2329)] = 91034, - [SMALL_STATE(2330)] = 91138, - [SMALL_STATE(2331)] = 91190, - [SMALL_STATE(2332)] = 91294, - [SMALL_STATE(2333)] = 91398, - [SMALL_STATE(2334)] = 91502, - [SMALL_STATE(2335)] = 91556, - [SMALL_STATE(2336)] = 91660, - [SMALL_STATE(2337)] = 91764, - [SMALL_STATE(2338)] = 91818, - [SMALL_STATE(2339)] = 91922, - [SMALL_STATE(2340)] = 91992, - [SMALL_STATE(2341)] = 92072, - [SMALL_STATE(2342)] = 92166, - [SMALL_STATE(2343)] = 92262, - [SMALL_STATE(2344)] = 92338, - [SMALL_STATE(2345)] = 92426, - [SMALL_STATE(2346)] = 92516, - [SMALL_STATE(2347)] = 92608, - [SMALL_STATE(2348)] = 92682, - [SMALL_STATE(2349)] = 92758, - [SMALL_STATE(2350)] = 92856, - [SMALL_STATE(2351)] = 92912, - [SMALL_STATE(2352)] = 92968, - [SMALL_STATE(2353)] = 93024, - [SMALL_STATE(2354)] = 93128, - [SMALL_STATE(2355)] = 93184, - [SMALL_STATE(2356)] = 93238, - [SMALL_STATE(2357)] = 93342, - [SMALL_STATE(2358)] = 93446, - [SMALL_STATE(2359)] = 93496, - [SMALL_STATE(2360)] = 93562, - [SMALL_STATE(2361)] = 93618, - [SMALL_STATE(2362)] = 93678, - [SMALL_STATE(2363)] = 93728, - [SMALL_STATE(2364)] = 93782, - [SMALL_STATE(2365)] = 93835, - [SMALL_STATE(2366)] = 93882, - [SMALL_STATE(2367)] = 93929, - [SMALL_STATE(2368)] = 93992, - [SMALL_STATE(2369)] = 94041, - [SMALL_STATE(2370)] = 94090, - [SMALL_STATE(2371)] = 94143, - [SMALL_STATE(2372)] = 94202, - [SMALL_STATE(2373)] = 94249, - [SMALL_STATE(2374)] = 94298, - [SMALL_STATE(2375)] = 94345, - [SMALL_STATE(2376)] = 94394, - [SMALL_STATE(2377)] = 94443, - [SMALL_STATE(2378)] = 94490, - [SMALL_STATE(2379)] = 94537, - [SMALL_STATE(2380)] = 94586, - [SMALL_STATE(2381)] = 94637, - [SMALL_STATE(2382)] = 94684, - [SMALL_STATE(2383)] = 94735, - [SMALL_STATE(2384)] = 94798, - [SMALL_STATE(2385)] = 94845, - [SMALL_STATE(2386)] = 94906, - [SMALL_STATE(2387)] = 94953, - [SMALL_STATE(2388)] = 95000, - [SMALL_STATE(2389)] = 95061, - [SMALL_STATE(2390)] = 95108, - [SMALL_STATE(2391)] = 95155, - [SMALL_STATE(2392)] = 95216, - [SMALL_STATE(2393)] = 95263, - [SMALL_STATE(2394)] = 95312, - [SMALL_STATE(2395)] = 95359, - [SMALL_STATE(2396)] = 95410, - [SMALL_STATE(2397)] = 95459, - [SMALL_STATE(2398)] = 95508, - [SMALL_STATE(2399)] = 95555, - [SMALL_STATE(2400)] = 95602, - [SMALL_STATE(2401)] = 95655, - [SMALL_STATE(2402)] = 95708, - [SMALL_STATE(2403)] = 95769, - [SMALL_STATE(2404)] = 95816, - [SMALL_STATE(2405)] = 95865, - [SMALL_STATE(2406)] = 95914, - [SMALL_STATE(2407)] = 95969, - [SMALL_STATE(2408)] = 96018, - [SMALL_STATE(2409)] = 96065, - [SMALL_STATE(2410)] = 96112, - [SMALL_STATE(2411)] = 96159, - [SMALL_STATE(2412)] = 96208, - [SMALL_STATE(2413)] = 96255, - [SMALL_STATE(2414)] = 96302, - [SMALL_STATE(2415)] = 96349, - [SMALL_STATE(2416)] = 96404, - [SMALL_STATE(2417)] = 96467, - [SMALL_STATE(2418)] = 96520, - [SMALL_STATE(2419)] = 96576, - [SMALL_STATE(2420)] = 96632, - [SMALL_STATE(2421)] = 96680, - [SMALL_STATE(2422)] = 96736, - [SMALL_STATE(2423)] = 96792, - [SMALL_STATE(2424)] = 96840, - [SMALL_STATE(2425)] = 96892, - [SMALL_STATE(2426)] = 96954, - [SMALL_STATE(2427)] = 97016, - [SMALL_STATE(2428)] = 97072, - [SMALL_STATE(2429)] = 97128, - [SMALL_STATE(2430)] = 97184, - [SMALL_STATE(2431)] = 97240, - [SMALL_STATE(2432)] = 97296, - [SMALL_STATE(2433)] = 97352, - [SMALL_STATE(2434)] = 97408, - [SMALL_STATE(2435)] = 97464, - [SMALL_STATE(2436)] = 97520, - [SMALL_STATE(2437)] = 97576, - [SMALL_STATE(2438)] = 97624, - [SMALL_STATE(2439)] = 97686, - [SMALL_STATE(2440)] = 97738, - [SMALL_STATE(2441)] = 97790, - [SMALL_STATE(2442)] = 97842, - [SMALL_STATE(2443)] = 97890, - [SMALL_STATE(2444)] = 97946, - [SMALL_STATE(2445)] = 98002, - [SMALL_STATE(2446)] = 98058, - [SMALL_STATE(2447)] = 98128, - [SMALL_STATE(2448)] = 98184, - [SMALL_STATE(2449)] = 98240, - [SMALL_STATE(2450)] = 98296, - [SMALL_STATE(2451)] = 98353, - [SMALL_STATE(2452)] = 98398, - [SMALL_STATE(2453)] = 98465, - [SMALL_STATE(2454)] = 98532, - [SMALL_STATE(2455)] = 98599, - [SMALL_STATE(2456)] = 98644, - [SMALL_STATE(2457)] = 98701, - [SMALL_STATE(2458)] = 98764, - [SMALL_STATE(2459)] = 98809, - [SMALL_STATE(2460)] = 98866, - [SMALL_STATE(2461)] = 98923, - [SMALL_STATE(2462)] = 98968, - [SMALL_STATE(2463)] = 99017, - [SMALL_STATE(2464)] = 99068, - [SMALL_STATE(2465)] = 99113, - [SMALL_STATE(2466)] = 99170, - [SMALL_STATE(2467)] = 99227, - [SMALL_STATE(2468)] = 99272, - [SMALL_STATE(2469)] = 99329, - [SMALL_STATE(2470)] = 99374, - [SMALL_STATE(2471)] = 99431, - [SMALL_STATE(2472)] = 99488, - [SMALL_STATE(2473)] = 99545, - [SMALL_STATE(2474)] = 99602, - [SMALL_STATE(2475)] = 99659, - [SMALL_STATE(2476)] = 99704, - [SMALL_STATE(2477)] = 99761, - [SMALL_STATE(2478)] = 99818, - [SMALL_STATE(2479)] = 99875, - [SMALL_STATE(2480)] = 99923, - [SMALL_STATE(2481)] = 99983, - [SMALL_STATE(2482)] = 100029, - [SMALL_STATE(2483)] = 100089, - [SMALL_STATE(2484)] = 100135, - [SMALL_STATE(2485)] = 100181, - [SMALL_STATE(2486)] = 100227, - [SMALL_STATE(2487)] = 100271, - [SMALL_STATE(2488)] = 100329, - [SMALL_STATE(2489)] = 100389, - [SMALL_STATE(2490)] = 100449, - [SMALL_STATE(2491)] = 100509, - [SMALL_STATE(2492)] = 100569, - [SMALL_STATE(2493)] = 100613, - [SMALL_STATE(2494)] = 100673, - [SMALL_STATE(2495)] = 100733, - [SMALL_STATE(2496)] = 100793, - [SMALL_STATE(2497)] = 100851, - [SMALL_STATE(2498)] = 100895, - [SMALL_STATE(2499)] = 100939, - [SMALL_STATE(2500)] = 100993, - [SMALL_STATE(2501)] = 101037, - [SMALL_STATE(2502)] = 101081, - [SMALL_STATE(2503)] = 101141, - [SMALL_STATE(2504)] = 101201, - [SMALL_STATE(2505)] = 101245, - [SMALL_STATE(2506)] = 101305, - [SMALL_STATE(2507)] = 101351, - [SMALL_STATE(2508)] = 101402, - [SMALL_STATE(2509)] = 101445, - [SMALL_STATE(2510)] = 101488, - [SMALL_STATE(2511)] = 101539, - [SMALL_STATE(2512)] = 101582, - [SMALL_STATE(2513)] = 101633, - [SMALL_STATE(2514)] = 101684, - [SMALL_STATE(2515)] = 101735, - [SMALL_STATE(2516)] = 101786, - [SMALL_STATE(2517)] = 101837, - [SMALL_STATE(2518)] = 101890, - [SMALL_STATE(2519)] = 101933, - [SMALL_STATE(2520)] = 101984, - [SMALL_STATE(2521)] = 102035, - [SMALL_STATE(2522)] = 102086, - [SMALL_STATE(2523)] = 102133, - [SMALL_STATE(2524)] = 102184, - [SMALL_STATE(2525)] = 102227, - [SMALL_STATE(2526)] = 102278, - [SMALL_STATE(2527)] = 102329, - [SMALL_STATE(2528)] = 102380, - [SMALL_STATE(2529)] = 102423, - [SMALL_STATE(2530)] = 102466, - [SMALL_STATE(2531)] = 102511, - [SMALL_STATE(2532)] = 102556, - [SMALL_STATE(2533)] = 102601, - [SMALL_STATE(2534)] = 102652, - [SMALL_STATE(2535)] = 102703, - [SMALL_STATE(2536)] = 102746, - [SMALL_STATE(2537)] = 102791, - [SMALL_STATE(2538)] = 102834, - [SMALL_STATE(2539)] = 102877, - [SMALL_STATE(2540)] = 102928, - [SMALL_STATE(2541)] = 102971, - [SMALL_STATE(2542)] = 103016, - [SMALL_STATE(2543)] = 103061, - [SMALL_STATE(2544)] = 103112, - [SMALL_STATE(2545)] = 103163, - [SMALL_STATE(2546)] = 103208, - [SMALL_STATE(2547)] = 103251, - [SMALL_STATE(2548)] = 103302, - [SMALL_STATE(2549)] = 103353, - [SMALL_STATE(2550)] = 103396, - [SMALL_STATE(2551)] = 103447, - [SMALL_STATE(2552)] = 103498, - [SMALL_STATE(2553)] = 103541, - [SMALL_STATE(2554)] = 103592, - [SMALL_STATE(2555)] = 103635, - [SMALL_STATE(2556)] = 103688, - [SMALL_STATE(2557)] = 103739, - [SMALL_STATE(2558)] = 103790, - [SMALL_STATE(2559)] = 103833, - [SMALL_STATE(2560)] = 103884, - [SMALL_STATE(2561)] = 103927, - [SMALL_STATE(2562)] = 103970, - [SMALL_STATE(2563)] = 104023, - [SMALL_STATE(2564)] = 104066, - [SMALL_STATE(2565)] = 104117, - [SMALL_STATE(2566)] = 104160, - [SMALL_STATE(2567)] = 104205, - [SMALL_STATE(2568)] = 104256, - [SMALL_STATE(2569)] = 104299, - [SMALL_STATE(2570)] = 104341, - [SMALL_STATE(2571)] = 104383, - [SMALL_STATE(2572)] = 104425, - [SMALL_STATE(2573)] = 104467, - [SMALL_STATE(2574)] = 104509, - [SMALL_STATE(2575)] = 104551, - [SMALL_STATE(2576)] = 104593, - [SMALL_STATE(2577)] = 104635, - [SMALL_STATE(2578)] = 104677, - [SMALL_STATE(2579)] = 104719, - [SMALL_STATE(2580)] = 104761, - [SMALL_STATE(2581)] = 104803, - [SMALL_STATE(2582)] = 104845, - [SMALL_STATE(2583)] = 104887, - [SMALL_STATE(2584)] = 104929, - [SMALL_STATE(2585)] = 104971, - [SMALL_STATE(2586)] = 105013, - [SMALL_STATE(2587)] = 105055, - [SMALL_STATE(2588)] = 105097, - [SMALL_STATE(2589)] = 105139, - [SMALL_STATE(2590)] = 105181, - [SMALL_STATE(2591)] = 105223, - [SMALL_STATE(2592)] = 105265, - [SMALL_STATE(2593)] = 105307, - [SMALL_STATE(2594)] = 105349, - [SMALL_STATE(2595)] = 105391, - [SMALL_STATE(2596)] = 105433, - [SMALL_STATE(2597)] = 105475, - [SMALL_STATE(2598)] = 105517, - [SMALL_STATE(2599)] = 105559, - [SMALL_STATE(2600)] = 105601, - [SMALL_STATE(2601)] = 105643, - [SMALL_STATE(2602)] = 105685, - [SMALL_STATE(2603)] = 105727, - [SMALL_STATE(2604)] = 105769, - [SMALL_STATE(2605)] = 105811, - [SMALL_STATE(2606)] = 105853, - [SMALL_STATE(2607)] = 105895, - [SMALL_STATE(2608)] = 105937, - [SMALL_STATE(2609)] = 105979, - [SMALL_STATE(2610)] = 106021, - [SMALL_STATE(2611)] = 106063, - [SMALL_STATE(2612)] = 106105, - [SMALL_STATE(2613)] = 106147, - [SMALL_STATE(2614)] = 106189, - [SMALL_STATE(2615)] = 106231, - [SMALL_STATE(2616)] = 106273, - [SMALL_STATE(2617)] = 106315, - [SMALL_STATE(2618)] = 106357, - [SMALL_STATE(2619)] = 106399, - [SMALL_STATE(2620)] = 106441, - [SMALL_STATE(2621)] = 106483, - [SMALL_STATE(2622)] = 106525, - [SMALL_STATE(2623)] = 106567, - [SMALL_STATE(2624)] = 106609, - [SMALL_STATE(2625)] = 106651, - [SMALL_STATE(2626)] = 106693, - [SMALL_STATE(2627)] = 106735, - [SMALL_STATE(2628)] = 106777, - [SMALL_STATE(2629)] = 106819, - [SMALL_STATE(2630)] = 106861, - [SMALL_STATE(2631)] = 106903, - [SMALL_STATE(2632)] = 106945, - [SMALL_STATE(2633)] = 106987, - [SMALL_STATE(2634)] = 107029, - [SMALL_STATE(2635)] = 107071, - [SMALL_STATE(2636)] = 107113, - [SMALL_STATE(2637)] = 107155, - [SMALL_STATE(2638)] = 107197, - [SMALL_STATE(2639)] = 107239, - [SMALL_STATE(2640)] = 107281, - [SMALL_STATE(2641)] = 107323, - [SMALL_STATE(2642)] = 107365, - [SMALL_STATE(2643)] = 107407, - [SMALL_STATE(2644)] = 107449, - [SMALL_STATE(2645)] = 107491, - [SMALL_STATE(2646)] = 107533, - [SMALL_STATE(2647)] = 107575, - [SMALL_STATE(2648)] = 107617, - [SMALL_STATE(2649)] = 107659, - [SMALL_STATE(2650)] = 107701, - [SMALL_STATE(2651)] = 107743, - [SMALL_STATE(2652)] = 107785, - [SMALL_STATE(2653)] = 107831, - [SMALL_STATE(2654)] = 107873, - [SMALL_STATE(2655)] = 107915, - [SMALL_STATE(2656)] = 107957, - [SMALL_STATE(2657)] = 107999, - [SMALL_STATE(2658)] = 108041, - [SMALL_STATE(2659)] = 108083, - [SMALL_STATE(2660)] = 108125, - [SMALL_STATE(2661)] = 108167, - [SMALL_STATE(2662)] = 108209, - [SMALL_STATE(2663)] = 108251, - [SMALL_STATE(2664)] = 108293, - [SMALL_STATE(2665)] = 108335, - [SMALL_STATE(2666)] = 108377, - [SMALL_STATE(2667)] = 108419, - [SMALL_STATE(2668)] = 108461, - [SMALL_STATE(2669)] = 108503, - [SMALL_STATE(2670)] = 108545, - [SMALL_STATE(2671)] = 108587, - [SMALL_STATE(2672)] = 108629, - [SMALL_STATE(2673)] = 108671, - [SMALL_STATE(2674)] = 108713, - [SMALL_STATE(2675)] = 108755, - [SMALL_STATE(2676)] = 108797, - [SMALL_STATE(2677)] = 108839, - [SMALL_STATE(2678)] = 108881, - [SMALL_STATE(2679)] = 108923, - [SMALL_STATE(2680)] = 108965, - [SMALL_STATE(2681)] = 109007, - [SMALL_STATE(2682)] = 109049, - [SMALL_STATE(2683)] = 109091, - [SMALL_STATE(2684)] = 109133, - [SMALL_STATE(2685)] = 109175, - [SMALL_STATE(2686)] = 109217, - [SMALL_STATE(2687)] = 109259, - [SMALL_STATE(2688)] = 109301, - [SMALL_STATE(2689)] = 109343, - [SMALL_STATE(2690)] = 109385, - [SMALL_STATE(2691)] = 109427, - [SMALL_STATE(2692)] = 109469, - [SMALL_STATE(2693)] = 109511, - [SMALL_STATE(2694)] = 109553, - [SMALL_STATE(2695)] = 109595, - [SMALL_STATE(2696)] = 109637, - [SMALL_STATE(2697)] = 109679, - [SMALL_STATE(2698)] = 109721, - [SMALL_STATE(2699)] = 109763, - [SMALL_STATE(2700)] = 109805, - [SMALL_STATE(2701)] = 109847, - [SMALL_STATE(2702)] = 109889, - [SMALL_STATE(2703)] = 109931, - [SMALL_STATE(2704)] = 109973, - [SMALL_STATE(2705)] = 110015, - [SMALL_STATE(2706)] = 110057, - [SMALL_STATE(2707)] = 110098, - [SMALL_STATE(2708)] = 110139, - [SMALL_STATE(2709)] = 110180, - [SMALL_STATE(2710)] = 110221, - [SMALL_STATE(2711)] = 110262, - [SMALL_STATE(2712)] = 110303, - [SMALL_STATE(2713)] = 110344, - [SMALL_STATE(2714)] = 110385, - [SMALL_STATE(2715)] = 110426, - [SMALL_STATE(2716)] = 110467, - [SMALL_STATE(2717)] = 110508, - [SMALL_STATE(2718)] = 110549, - [SMALL_STATE(2719)] = 110590, - [SMALL_STATE(2720)] = 110631, - [SMALL_STATE(2721)] = 110672, - [SMALL_STATE(2722)] = 110713, - [SMALL_STATE(2723)] = 110754, - [SMALL_STATE(2724)] = 110795, - [SMALL_STATE(2725)] = 110836, - [SMALL_STATE(2726)] = 110877, - [SMALL_STATE(2727)] = 110918, - [SMALL_STATE(2728)] = 110959, - [SMALL_STATE(2729)] = 111038, - [SMALL_STATE(2730)] = 111079, - [SMALL_STATE(2731)] = 111120, - [SMALL_STATE(2732)] = 111199, - [SMALL_STATE(2733)] = 111278, - [SMALL_STATE(2734)] = 111319, - [SMALL_STATE(2735)] = 111360, - [SMALL_STATE(2736)] = 111407, - [SMALL_STATE(2737)] = 111448, - [SMALL_STATE(2738)] = 111489, - [SMALL_STATE(2739)] = 111568, - [SMALL_STATE(2740)] = 111609, - [SMALL_STATE(2741)] = 111650, - [SMALL_STATE(2742)] = 111691, - [SMALL_STATE(2743)] = 111732, - [SMALL_STATE(2744)] = 111773, - [SMALL_STATE(2745)] = 111814, - [SMALL_STATE(2746)] = 111855, - [SMALL_STATE(2747)] = 111896, - [SMALL_STATE(2748)] = 111937, - [SMALL_STATE(2749)] = 111978, - [SMALL_STATE(2750)] = 112057, - [SMALL_STATE(2751)] = 112136, - [SMALL_STATE(2752)] = 112177, - [SMALL_STATE(2753)] = 112218, - [SMALL_STATE(2754)] = 112259, - [SMALL_STATE(2755)] = 112300, - [SMALL_STATE(2756)] = 112341, - [SMALL_STATE(2757)] = 112382, - [SMALL_STATE(2758)] = 112461, - [SMALL_STATE(2759)] = 112502, - [SMALL_STATE(2760)] = 112543, - [SMALL_STATE(2761)] = 112584, - [SMALL_STATE(2762)] = 112663, - [SMALL_STATE(2763)] = 112704, - [SMALL_STATE(2764)] = 112745, - [SMALL_STATE(2765)] = 112786, - [SMALL_STATE(2766)] = 112827, - [SMALL_STATE(2767)] = 112868, - [SMALL_STATE(2768)] = 112909, - [SMALL_STATE(2769)] = 112950, - [SMALL_STATE(2770)] = 112990, - [SMALL_STATE(2771)] = 113030, - [SMALL_STATE(2772)] = 113080, - [SMALL_STATE(2773)] = 113134, - [SMALL_STATE(2774)] = 113172, - [SMALL_STATE(2775)] = 113214, - [SMALL_STATE(2776)] = 113252, - [SMALL_STATE(2777)] = 113290, - [SMALL_STATE(2778)] = 113328, - [SMALL_STATE(2779)] = 113366, - [SMALL_STATE(2780)] = 113404, - [SMALL_STATE(2781)] = 113445, - [SMALL_STATE(2782)] = 113486, - [SMALL_STATE(2783)] = 113524, - [SMALL_STATE(2784)] = 113562, - [SMALL_STATE(2785)] = 113600, - [SMALL_STATE(2786)] = 113638, - [SMALL_STATE(2787)] = 113676, - [SMALL_STATE(2788)] = 113711, - [SMALL_STATE(2789)] = 113746, - [SMALL_STATE(2790)] = 113779, - [SMALL_STATE(2791)] = 113812, - [SMALL_STATE(2792)] = 113840, - [SMALL_STATE(2793)] = 113868, - [SMALL_STATE(2794)] = 113903, - [SMALL_STATE(2795)] = 113938, - [SMALL_STATE(2796)] = 113973, - [SMALL_STATE(2797)] = 113999, - [SMALL_STATE(2798)] = 114025, - [SMALL_STATE(2799)] = 114051, - [SMALL_STATE(2800)] = 114077, - [SMALL_STATE(2801)] = 114103, - [SMALL_STATE(2802)] = 114129, - [SMALL_STATE(2803)] = 114155, - [SMALL_STATE(2804)] = 114181, - [SMALL_STATE(2805)] = 114207, - [SMALL_STATE(2806)] = 114233, - [SMALL_STATE(2807)] = 114267, - [SMALL_STATE(2808)] = 114293, - [SMALL_STATE(2809)] = 114319, - [SMALL_STATE(2810)] = 114345, - [SMALL_STATE(2811)] = 114371, - [SMALL_STATE(2812)] = 114397, - [SMALL_STATE(2813)] = 114423, - [SMALL_STATE(2814)] = 114449, - [SMALL_STATE(2815)] = 114475, - [SMALL_STATE(2816)] = 114501, - [SMALL_STATE(2817)] = 114527, - [SMALL_STATE(2818)] = 114553, - [SMALL_STATE(2819)] = 114579, - [SMALL_STATE(2820)] = 114605, - [SMALL_STATE(2821)] = 114631, - [SMALL_STATE(2822)] = 114657, - [SMALL_STATE(2823)] = 114683, - [SMALL_STATE(2824)] = 114709, - [SMALL_STATE(2825)] = 114735, - [SMALL_STATE(2826)] = 114761, - [SMALL_STATE(2827)] = 114787, - [SMALL_STATE(2828)] = 114813, - [SMALL_STATE(2829)] = 114839, - [SMALL_STATE(2830)] = 114865, - [SMALL_STATE(2831)] = 114891, - [SMALL_STATE(2832)] = 114917, - [SMALL_STATE(2833)] = 114943, - [SMALL_STATE(2834)] = 114972, - [SMALL_STATE(2835)] = 114997, - [SMALL_STATE(2836)] = 115022, - [SMALL_STATE(2837)] = 115047, - [SMALL_STATE(2838)] = 115072, - [SMALL_STATE(2839)] = 115097, - [SMALL_STATE(2840)] = 115122, - [SMALL_STATE(2841)] = 115153, - [SMALL_STATE(2842)] = 115181, - [SMALL_STATE(2843)] = 115205, - [SMALL_STATE(2844)] = 115226, - [SMALL_STATE(2845)] = 115249, - [SMALL_STATE(2846)] = 115270, - [SMALL_STATE(2847)] = 115301, - [SMALL_STATE(2848)] = 115322, - [SMALL_STATE(2849)] = 115345, - [SMALL_STATE(2850)] = 115368, - [SMALL_STATE(2851)] = 115391, - [SMALL_STATE(2852)] = 115412, - [SMALL_STATE(2853)] = 115435, - [SMALL_STATE(2854)] = 115458, - [SMALL_STATE(2855)] = 115479, - [SMALL_STATE(2856)] = 115502, - [SMALL_STATE(2857)] = 115525, - [SMALL_STATE(2858)] = 115548, - [SMALL_STATE(2859)] = 115573, - [SMALL_STATE(2860)] = 115594, - [SMALL_STATE(2861)] = 115617, - [SMALL_STATE(2862)] = 115640, - [SMALL_STATE(2863)] = 115671, - [SMALL_STATE(2864)] = 115702, - [SMALL_STATE(2865)] = 115725, - [SMALL_STATE(2866)] = 115748, - [SMALL_STATE(2867)] = 115773, - [SMALL_STATE(2868)] = 115796, - [SMALL_STATE(2869)] = 115819, - [SMALL_STATE(2870)] = 115840, - [SMALL_STATE(2871)] = 115871, - [SMALL_STATE(2872)] = 115894, - [SMALL_STATE(2873)] = 115915, - [SMALL_STATE(2874)] = 115938, - [SMALL_STATE(2875)] = 115961, - [SMALL_STATE(2876)] = 115986, - [SMALL_STATE(2877)] = 116011, - [SMALL_STATE(2878)] = 116034, - [SMALL_STATE(2879)] = 116057, - [SMALL_STATE(2880)] = 116084, - [SMALL_STATE(2881)] = 116107, - [SMALL_STATE(2882)] = 116128, - [SMALL_STATE(2883)] = 116151, - [SMALL_STATE(2884)] = 116174, - [SMALL_STATE(2885)] = 116197, - [SMALL_STATE(2886)] = 116220, - [SMALL_STATE(2887)] = 116243, - [SMALL_STATE(2888)] = 116265, - [SMALL_STATE(2889)] = 116287, - [SMALL_STATE(2890)] = 116317, - [SMALL_STATE(2891)] = 116347, - [SMALL_STATE(2892)] = 116375, - [SMALL_STATE(2893)] = 116403, - [SMALL_STATE(2894)] = 116425, - [SMALL_STATE(2895)] = 116453, - [SMALL_STATE(2896)] = 116483, - [SMALL_STATE(2897)] = 116511, - [SMALL_STATE(2898)] = 116539, - [SMALL_STATE(2899)] = 116569, - [SMALL_STATE(2900)] = 116597, - [SMALL_STATE(2901)] = 116621, - [SMALL_STATE(2902)] = 116651, - [SMALL_STATE(2903)] = 116679, - [SMALL_STATE(2904)] = 116701, - [SMALL_STATE(2905)] = 116723, - [SMALL_STATE(2906)] = 116745, - [SMALL_STATE(2907)] = 116767, - [SMALL_STATE(2908)] = 116797, - [SMALL_STATE(2909)] = 116819, - [SMALL_STATE(2910)] = 116861, - [SMALL_STATE(2911)] = 116885, - [SMALL_STATE(2912)] = 116927, - [SMALL_STATE(2913)] = 116955, - [SMALL_STATE(2914)] = 116983, - [SMALL_STATE(2915)] = 117025, - [SMALL_STATE(2916)] = 117047, - [SMALL_STATE(2917)] = 117077, - [SMALL_STATE(2918)] = 117119, - [SMALL_STATE(2919)] = 117149, - [SMALL_STATE(2920)] = 117171, - [SMALL_STATE(2921)] = 117193, - [SMALL_STATE(2922)] = 117215, - [SMALL_STATE(2923)] = 117241, - [SMALL_STATE(2924)] = 117271, - [SMALL_STATE(2925)] = 117301, - [SMALL_STATE(2926)] = 117323, - [SMALL_STATE(2927)] = 117345, - [SMALL_STATE(2928)] = 117367, - [SMALL_STATE(2929)] = 117395, - [SMALL_STATE(2930)] = 117417, - [SMALL_STATE(2931)] = 117439, - [SMALL_STATE(2932)] = 117461, - [SMALL_STATE(2933)] = 117491, - [SMALL_STATE(2934)] = 117513, - [SMALL_STATE(2935)] = 117535, - [SMALL_STATE(2936)] = 117557, - [SMALL_STATE(2937)] = 117587, - [SMALL_STATE(2938)] = 117609, - [SMALL_STATE(2939)] = 117651, - [SMALL_STATE(2940)] = 117673, - [SMALL_STATE(2941)] = 117715, - [SMALL_STATE(2942)] = 117737, - [SMALL_STATE(2943)] = 117759, - [SMALL_STATE(2944)] = 117789, - [SMALL_STATE(2945)] = 117811, - [SMALL_STATE(2946)] = 117841, - [SMALL_STATE(2947)] = 117863, - [SMALL_STATE(2948)] = 117885, - [SMALL_STATE(2949)] = 117907, - [SMALL_STATE(2950)] = 117929, - [SMALL_STATE(2951)] = 117951, - [SMALL_STATE(2952)] = 117993, - [SMALL_STATE(2953)] = 118015, - [SMALL_STATE(2954)] = 118037, - [SMALL_STATE(2955)] = 118067, - [SMALL_STATE(2956)] = 118089, - [SMALL_STATE(2957)] = 118117, - [SMALL_STATE(2958)] = 118138, - [SMALL_STATE(2959)] = 118173, - [SMALL_STATE(2960)] = 118208, - [SMALL_STATE(2961)] = 118229, - [SMALL_STATE(2962)] = 118264, - [SMALL_STATE(2963)] = 118289, - [SMALL_STATE(2964)] = 118314, - [SMALL_STATE(2965)] = 118339, - [SMALL_STATE(2966)] = 118360, - [SMALL_STATE(2967)] = 118383, - [SMALL_STATE(2968)] = 118418, - [SMALL_STATE(2969)] = 118443, - [SMALL_STATE(2970)] = 118470, - [SMALL_STATE(2971)] = 118491, - [SMALL_STATE(2972)] = 118526, - [SMALL_STATE(2973)] = 118553, - [SMALL_STATE(2974)] = 118578, - [SMALL_STATE(2975)] = 118613, - [SMALL_STATE(2976)] = 118640, - [SMALL_STATE(2977)] = 118677, - [SMALL_STATE(2978)] = 118698, - [SMALL_STATE(2979)] = 118719, - [SMALL_STATE(2980)] = 118754, - [SMALL_STATE(2981)] = 118789, - [SMALL_STATE(2982)] = 118824, - [SMALL_STATE(2983)] = 118859, - [SMALL_STATE(2984)] = 118886, - [SMALL_STATE(2985)] = 118922, - [SMALL_STATE(2986)] = 118940, - [SMALL_STATE(2987)] = 118958, - [SMALL_STATE(2988)] = 118994, - [SMALL_STATE(2989)] = 119026, - [SMALL_STATE(2990)] = 119044, - [SMALL_STATE(2991)] = 119076, - [SMALL_STATE(2992)] = 119094, - [SMALL_STATE(2993)] = 119122, - [SMALL_STATE(2994)] = 119140, - [SMALL_STATE(2995)] = 119158, - [SMALL_STATE(2996)] = 119176, - [SMALL_STATE(2997)] = 119194, - [SMALL_STATE(2998)] = 119212, - [SMALL_STATE(2999)] = 119244, - [SMALL_STATE(3000)] = 119276, - [SMALL_STATE(3001)] = 119304, - [SMALL_STATE(3002)] = 119322, - [SMALL_STATE(3003)] = 119354, - [SMALL_STATE(3004)] = 119372, - [SMALL_STATE(3005)] = 119390, - [SMALL_STATE(3006)] = 119408, - [SMALL_STATE(3007)] = 119426, - [SMALL_STATE(3008)] = 119444, - [SMALL_STATE(3009)] = 119462, - [SMALL_STATE(3010)] = 119480, - [SMALL_STATE(3011)] = 119498, - [SMALL_STATE(3012)] = 119534, - [SMALL_STATE(3013)] = 119552, - [SMALL_STATE(3014)] = 119588, - [SMALL_STATE(3015)] = 119606, - [SMALL_STATE(3016)] = 119624, - [SMALL_STATE(3017)] = 119642, - [SMALL_STATE(3018)] = 119660, - [SMALL_STATE(3019)] = 119692, - [SMALL_STATE(3020)] = 119710, - [SMALL_STATE(3021)] = 119728, - [SMALL_STATE(3022)] = 119746, - [SMALL_STATE(3023)] = 119764, - [SMALL_STATE(3024)] = 119782, - [SMALL_STATE(3025)] = 119814, - [SMALL_STATE(3026)] = 119832, - [SMALL_STATE(3027)] = 119850, - [SMALL_STATE(3028)] = 119868, - [SMALL_STATE(3029)] = 119886, - [SMALL_STATE(3030)] = 119918, - [SMALL_STATE(3031)] = 119940, - [SMALL_STATE(3032)] = 119976, - [SMALL_STATE(3033)] = 120012, - [SMALL_STATE(3034)] = 120044, - [SMALL_STATE(3035)] = 120068, - [SMALL_STATE(3036)] = 120090, - [SMALL_STATE(3037)] = 120120, - [SMALL_STATE(3038)] = 120156, - [SMALL_STATE(3039)] = 120184, - [SMALL_STATE(3040)] = 120204, - [SMALL_STATE(3041)] = 120232, - [SMALL_STATE(3042)] = 120260, - [SMALL_STATE(3043)] = 120278, - [SMALL_STATE(3044)] = 120306, - [SMALL_STATE(3045)] = 120338, - [SMALL_STATE(3046)] = 120356, - [SMALL_STATE(3047)] = 120375, - [SMALL_STATE(3048)] = 120394, - [SMALL_STATE(3049)] = 120413, - [SMALL_STATE(3050)] = 120432, - [SMALL_STATE(3051)] = 120451, - [SMALL_STATE(3052)] = 120474, - [SMALL_STATE(3053)] = 120493, - [SMALL_STATE(3054)] = 120510, - [SMALL_STATE(3055)] = 120533, - [SMALL_STATE(3056)] = 120556, - [SMALL_STATE(3057)] = 120577, - [SMALL_STATE(3058)] = 120596, - [SMALL_STATE(3059)] = 120615, - [SMALL_STATE(3060)] = 120632, - [SMALL_STATE(3061)] = 120651, - [SMALL_STATE(3062)] = 120670, - [SMALL_STATE(3063)] = 120689, - [SMALL_STATE(3064)] = 120708, - [SMALL_STATE(3065)] = 120727, - [SMALL_STATE(3066)] = 120748, - [SMALL_STATE(3067)] = 120767, - [SMALL_STATE(3068)] = 120786, - [SMALL_STATE(3069)] = 120805, - [SMALL_STATE(3070)] = 120824, - [SMALL_STATE(3071)] = 120847, - [SMALL_STATE(3072)] = 120866, - [SMALL_STATE(3073)] = 120885, - [SMALL_STATE(3074)] = 120906, - [SMALL_STATE(3075)] = 120925, - [SMALL_STATE(3076)] = 120944, - [SMALL_STATE(3077)] = 120963, - [SMALL_STATE(3078)] = 120980, - [SMALL_STATE(3079)] = 120999, - [SMALL_STATE(3080)] = 121016, - [SMALL_STATE(3081)] = 121037, - [SMALL_STATE(3082)] = 121058, - [SMALL_STATE(3083)] = 121077, - [SMALL_STATE(3084)] = 121100, - [SMALL_STATE(3085)] = 121123, - [SMALL_STATE(3086)] = 121142, - [SMALL_STATE(3087)] = 121161, - [SMALL_STATE(3088)] = 121180, - [SMALL_STATE(3089)] = 121201, - [SMALL_STATE(3090)] = 121218, - [SMALL_STATE(3091)] = 121237, - [SMALL_STATE(3092)] = 121254, - [SMALL_STATE(3093)] = 121273, - [SMALL_STATE(3094)] = 121292, - [SMALL_STATE(3095)] = 121313, - [SMALL_STATE(3096)] = 121332, - [SMALL_STATE(3097)] = 121349, - [SMALL_STATE(3098)] = 121368, - [SMALL_STATE(3099)] = 121389, - [SMALL_STATE(3100)] = 121408, - [SMALL_STATE(3101)] = 121425, - [SMALL_STATE(3102)] = 121444, - [SMALL_STATE(3103)] = 121463, - [SMALL_STATE(3104)] = 121495, - [SMALL_STATE(3105)] = 121515, - [SMALL_STATE(3106)] = 121535, - [SMALL_STATE(3107)] = 121553, - [SMALL_STATE(3108)] = 121571, - [SMALL_STATE(3109)] = 121605, - [SMALL_STATE(3110)] = 121633, - [SMALL_STATE(3111)] = 121667, - [SMALL_STATE(3112)] = 121699, - [SMALL_STATE(3113)] = 121733, - [SMALL_STATE(3114)] = 121761, - [SMALL_STATE(3115)] = 121781, - [SMALL_STATE(3116)] = 121815, - [SMALL_STATE(3117)] = 121847, - [SMALL_STATE(3118)] = 121881, - [SMALL_STATE(3119)] = 121915, - [SMALL_STATE(3120)] = 121949, - [SMALL_STATE(3121)] = 121983, - [SMALL_STATE(3122)] = 122017, - [SMALL_STATE(3123)] = 122051, - [SMALL_STATE(3124)] = 122085, - [SMALL_STATE(3125)] = 122115, - [SMALL_STATE(3126)] = 122137, - [SMALL_STATE(3127)] = 122171, - [SMALL_STATE(3128)] = 122195, - [SMALL_STATE(3129)] = 122225, - [SMALL_STATE(3130)] = 122241, - [SMALL_STATE(3131)] = 122275, - [SMALL_STATE(3132)] = 122290, - [SMALL_STATE(3133)] = 122321, - [SMALL_STATE(3134)] = 122338, - [SMALL_STATE(3135)] = 122353, - [SMALL_STATE(3136)] = 122376, - [SMALL_STATE(3137)] = 122407, - [SMALL_STATE(3138)] = 122422, - [SMALL_STATE(3139)] = 122453, - [SMALL_STATE(3140)] = 122468, - [SMALL_STATE(3141)] = 122493, - [SMALL_STATE(3142)] = 122524, - [SMALL_STATE(3143)] = 122551, - [SMALL_STATE(3144)] = 122572, - [SMALL_STATE(3145)] = 122587, - [SMALL_STATE(3146)] = 122612, - [SMALL_STATE(3147)] = 122643, - [SMALL_STATE(3148)] = 122658, - [SMALL_STATE(3149)] = 122675, - [SMALL_STATE(3150)] = 122700, - [SMALL_STATE(3151)] = 122725, - [SMALL_STATE(3152)] = 122740, - [SMALL_STATE(3153)] = 122755, - [SMALL_STATE(3154)] = 122780, - [SMALL_STATE(3155)] = 122795, - [SMALL_STATE(3156)] = 122812, - [SMALL_STATE(3157)] = 122827, - [SMALL_STATE(3158)] = 122848, - [SMALL_STATE(3159)] = 122863, - [SMALL_STATE(3160)] = 122884, - [SMALL_STATE(3161)] = 122905, - [SMALL_STATE(3162)] = 122920, - [SMALL_STATE(3163)] = 122951, - [SMALL_STATE(3164)] = 122978, - [SMALL_STATE(3165)] = 122995, - [SMALL_STATE(3166)] = 123010, - [SMALL_STATE(3167)] = 123025, - [SMALL_STATE(3168)] = 123040, - [SMALL_STATE(3169)] = 123071, - [SMALL_STATE(3170)] = 123086, - [SMALL_STATE(3171)] = 123101, - [SMALL_STATE(3172)] = 123116, - [SMALL_STATE(3173)] = 123131, - [SMALL_STATE(3174)] = 123150, - [SMALL_STATE(3175)] = 123175, - [SMALL_STATE(3176)] = 123196, - [SMALL_STATE(3177)] = 123227, - [SMALL_STATE(3178)] = 123258, - [SMALL_STATE(3179)] = 123273, - [SMALL_STATE(3180)] = 123300, - [SMALL_STATE(3181)] = 123315, - [SMALL_STATE(3182)] = 123334, - [SMALL_STATE(3183)] = 123365, - [SMALL_STATE(3184)] = 123396, - [SMALL_STATE(3185)] = 123411, - [SMALL_STATE(3186)] = 123426, - [SMALL_STATE(3187)] = 123457, - [SMALL_STATE(3188)] = 123476, - [SMALL_STATE(3189)] = 123493, - [SMALL_STATE(3190)] = 123524, - [SMALL_STATE(3191)] = 123539, - [SMALL_STATE(3192)] = 123564, - [SMALL_STATE(3193)] = 123589, - [SMALL_STATE(3194)] = 123604, - [SMALL_STATE(3195)] = 123629, - [SMALL_STATE(3196)] = 123660, - [SMALL_STATE(3197)] = 123685, - [SMALL_STATE(3198)] = 123700, - [SMALL_STATE(3199)] = 123731, - [SMALL_STATE(3200)] = 123756, - [SMALL_STATE(3201)] = 123787, - [SMALL_STATE(3202)] = 123804, - [SMALL_STATE(3203)] = 123819, - [SMALL_STATE(3204)] = 123834, - [SMALL_STATE(3205)] = 123849, - [SMALL_STATE(3206)] = 123866, - [SMALL_STATE(3207)] = 123881, - [SMALL_STATE(3208)] = 123896, - [SMALL_STATE(3209)] = 123927, - [SMALL_STATE(3210)] = 123952, - [SMALL_STATE(3211)] = 123983, - [SMALL_STATE(3212)] = 124014, - [SMALL_STATE(3213)] = 124045, - [SMALL_STATE(3214)] = 124076, - [SMALL_STATE(3215)] = 124107, - [SMALL_STATE(3216)] = 124122, - [SMALL_STATE(3217)] = 124137, - [SMALL_STATE(3218)] = 124152, - [SMALL_STATE(3219)] = 124167, - [SMALL_STATE(3220)] = 124192, - [SMALL_STATE(3221)] = 124207, - [SMALL_STATE(3222)] = 124228, - [SMALL_STATE(3223)] = 124243, - [SMALL_STATE(3224)] = 124258, - [SMALL_STATE(3225)] = 124285, - [SMALL_STATE(3226)] = 124310, - [SMALL_STATE(3227)] = 124325, - [SMALL_STATE(3228)] = 124340, - [SMALL_STATE(3229)] = 124371, - [SMALL_STATE(3230)] = 124402, - [SMALL_STATE(3231)] = 124417, - [SMALL_STATE(3232)] = 124442, - [SMALL_STATE(3233)] = 124457, - [SMALL_STATE(3234)] = 124476, - [SMALL_STATE(3235)] = 124507, - [SMALL_STATE(3236)] = 124527, - [SMALL_STATE(3237)] = 124551, - [SMALL_STATE(3238)] = 124575, - [SMALL_STATE(3239)] = 124595, - [SMALL_STATE(3240)] = 124619, - [SMALL_STATE(3241)] = 124643, - [SMALL_STATE(3242)] = 124667, - [SMALL_STATE(3243)] = 124687, - [SMALL_STATE(3244)] = 124711, - [SMALL_STATE(3245)] = 124735, - [SMALL_STATE(3246)] = 124759, - [SMALL_STATE(3247)] = 124783, - [SMALL_STATE(3248)] = 124807, - [SMALL_STATE(3249)] = 124831, - [SMALL_STATE(3250)] = 124855, - [SMALL_STATE(3251)] = 124879, - [SMALL_STATE(3252)] = 124903, - [SMALL_STATE(3253)] = 124927, - [SMALL_STATE(3254)] = 124945, - [SMALL_STATE(3255)] = 124965, - [SMALL_STATE(3256)] = 124990, - [SMALL_STATE(3257)] = 125007, - [SMALL_STATE(3258)] = 125020, - [SMALL_STATE(3259)] = 125045, - [SMALL_STATE(3260)] = 125070, - [SMALL_STATE(3261)] = 125095, - [SMALL_STATE(3262)] = 125120, - [SMALL_STATE(3263)] = 125145, - [SMALL_STATE(3264)] = 125170, - [SMALL_STATE(3265)] = 125191, - [SMALL_STATE(3266)] = 125212, - [SMALL_STATE(3267)] = 125237, - [SMALL_STATE(3268)] = 125262, - [SMALL_STATE(3269)] = 125283, - [SMALL_STATE(3270)] = 125302, - [SMALL_STATE(3271)] = 125327, - [SMALL_STATE(3272)] = 125342, - [SMALL_STATE(3273)] = 125359, - [SMALL_STATE(3274)] = 125372, - [SMALL_STATE(3275)] = 125397, - [SMALL_STATE(3276)] = 125410, - [SMALL_STATE(3277)] = 125427, - [SMALL_STATE(3278)] = 125452, - [SMALL_STATE(3279)] = 125477, - [SMALL_STATE(3280)] = 125498, - [SMALL_STATE(3281)] = 125523, - [SMALL_STATE(3282)] = 125548, - [SMALL_STATE(3283)] = 125565, - [SMALL_STATE(3284)] = 125590, - [SMALL_STATE(3285)] = 125611, - [SMALL_STATE(3286)] = 125636, - [SMALL_STATE(3287)] = 125657, - [SMALL_STATE(3288)] = 125682, - [SMALL_STATE(3289)] = 125699, - [SMALL_STATE(3290)] = 125724, - [SMALL_STATE(3291)] = 125747, - [SMALL_STATE(3292)] = 125772, - [SMALL_STATE(3293)] = 125797, - [SMALL_STATE(3294)] = 125822, - [SMALL_STATE(3295)] = 125835, - [SMALL_STATE(3296)] = 125860, - [SMALL_STATE(3297)] = 125881, - [SMALL_STATE(3298)] = 125906, - [SMALL_STATE(3299)] = 125923, - [SMALL_STATE(3300)] = 125948, - [SMALL_STATE(3301)] = 125973, - [SMALL_STATE(3302)] = 125998, - [SMALL_STATE(3303)] = 126011, - [SMALL_STATE(3304)] = 126028, - [SMALL_STATE(3305)] = 126049, - [SMALL_STATE(3306)] = 126074, - [SMALL_STATE(3307)] = 126091, - [SMALL_STATE(3308)] = 126108, - [SMALL_STATE(3309)] = 126133, - [SMALL_STATE(3310)] = 126150, - [SMALL_STATE(3311)] = 126167, - [SMALL_STATE(3312)] = 126188, - [SMALL_STATE(3313)] = 126201, - [SMALL_STATE(3314)] = 126222, - [SMALL_STATE(3315)] = 126247, - [SMALL_STATE(3316)] = 126272, - [SMALL_STATE(3317)] = 126289, - [SMALL_STATE(3318)] = 126314, - [SMALL_STATE(3319)] = 126329, - [SMALL_STATE(3320)] = 126354, - [SMALL_STATE(3321)] = 126367, - [SMALL_STATE(3322)] = 126392, - [SMALL_STATE(3323)] = 126405, - [SMALL_STATE(3324)] = 126430, - [SMALL_STATE(3325)] = 126455, - [SMALL_STATE(3326)] = 126472, - [SMALL_STATE(3327)] = 126497, - [SMALL_STATE(3328)] = 126514, - [SMALL_STATE(3329)] = 126539, - [SMALL_STATE(3330)] = 126556, - [SMALL_STATE(3331)] = 126573, - [SMALL_STATE(3332)] = 126598, - [SMALL_STATE(3333)] = 126623, - [SMALL_STATE(3334)] = 126636, - [SMALL_STATE(3335)] = 126653, - [SMALL_STATE(3336)] = 126674, - [SMALL_STATE(3337)] = 126691, - [SMALL_STATE(3338)] = 126712, - [SMALL_STATE(3339)] = 126733, - [SMALL_STATE(3340)] = 126746, - [SMALL_STATE(3341)] = 126771, - [SMALL_STATE(3342)] = 126788, - [SMALL_STATE(3343)] = 126809, - [SMALL_STATE(3344)] = 126834, - [SMALL_STATE(3345)] = 126859, - [SMALL_STATE(3346)] = 126878, - [SMALL_STATE(3347)] = 126899, - [SMALL_STATE(3348)] = 126920, - [SMALL_STATE(3349)] = 126937, - [SMALL_STATE(3350)] = 126950, - [SMALL_STATE(3351)] = 126975, - [SMALL_STATE(3352)] = 126990, - [SMALL_STATE(3353)] = 127011, - [SMALL_STATE(3354)] = 127036, - [SMALL_STATE(3355)] = 127049, - [SMALL_STATE(3356)] = 127064, - [SMALL_STATE(3357)] = 127089, - [SMALL_STATE(3358)] = 127106, - [SMALL_STATE(3359)] = 127121, - [SMALL_STATE(3360)] = 127138, - [SMALL_STATE(3361)] = 127163, - [SMALL_STATE(3362)] = 127178, - [SMALL_STATE(3363)] = 127203, - [SMALL_STATE(3364)] = 127220, - [SMALL_STATE(3365)] = 127241, - [SMALL_STATE(3366)] = 127258, - [SMALL_STATE(3367)] = 127283, - [SMALL_STATE(3368)] = 127300, - [SMALL_STATE(3369)] = 127313, - [SMALL_STATE(3370)] = 127330, - [SMALL_STATE(3371)] = 127355, - [SMALL_STATE(3372)] = 127380, - [SMALL_STATE(3373)] = 127393, - [SMALL_STATE(3374)] = 127410, - [SMALL_STATE(3375)] = 127435, - [SMALL_STATE(3376)] = 127452, - [SMALL_STATE(3377)] = 127473, - [SMALL_STATE(3378)] = 127489, - [SMALL_STATE(3379)] = 127507, - [SMALL_STATE(3380)] = 127525, - [SMALL_STATE(3381)] = 127547, - [SMALL_STATE(3382)] = 127569, - [SMALL_STATE(3383)] = 127587, - [SMALL_STATE(3384)] = 127605, - [SMALL_STATE(3385)] = 127627, - [SMALL_STATE(3386)] = 127639, - [SMALL_STATE(3387)] = 127661, - [SMALL_STATE(3388)] = 127677, - [SMALL_STATE(3389)] = 127699, - [SMALL_STATE(3390)] = 127717, - [SMALL_STATE(3391)] = 127739, - [SMALL_STATE(3392)] = 127761, - [SMALL_STATE(3393)] = 127777, - [SMALL_STATE(3394)] = 127799, - [SMALL_STATE(3395)] = 127817, - [SMALL_STATE(3396)] = 127839, - [SMALL_STATE(3397)] = 127851, - [SMALL_STATE(3398)] = 127863, - [SMALL_STATE(3399)] = 127885, - [SMALL_STATE(3400)] = 127907, - [SMALL_STATE(3401)] = 127929, - [SMALL_STATE(3402)] = 127945, - [SMALL_STATE(3403)] = 127967, - [SMALL_STATE(3404)] = 127989, - [SMALL_STATE(3405)] = 128005, - [SMALL_STATE(3406)] = 128027, - [SMALL_STATE(3407)] = 128045, - [SMALL_STATE(3408)] = 128059, - [SMALL_STATE(3409)] = 128081, - [SMALL_STATE(3410)] = 128103, - [SMALL_STATE(3411)] = 128119, - [SMALL_STATE(3412)] = 128141, - [SMALL_STATE(3413)] = 128163, - [SMALL_STATE(3414)] = 128185, - [SMALL_STATE(3415)] = 128201, - [SMALL_STATE(3416)] = 128223, - [SMALL_STATE(3417)] = 128245, - [SMALL_STATE(3418)] = 128267, - [SMALL_STATE(3419)] = 128289, - [SMALL_STATE(3420)] = 128311, - [SMALL_STATE(3421)] = 128333, - [SMALL_STATE(3422)] = 128349, - [SMALL_STATE(3423)] = 128371, - [SMALL_STATE(3424)] = 128387, - [SMALL_STATE(3425)] = 128403, - [SMALL_STATE(3426)] = 128425, - [SMALL_STATE(3427)] = 128447, - [SMALL_STATE(3428)] = 128463, - [SMALL_STATE(3429)] = 128485, - [SMALL_STATE(3430)] = 128501, - [SMALL_STATE(3431)] = 128521, - [SMALL_STATE(3432)] = 128543, - [SMALL_STATE(3433)] = 128559, - [SMALL_STATE(3434)] = 128575, - [SMALL_STATE(3435)] = 128591, - [SMALL_STATE(3436)] = 128613, - [SMALL_STATE(3437)] = 128635, - [SMALL_STATE(3438)] = 128657, - [SMALL_STATE(3439)] = 128673, - [SMALL_STATE(3440)] = 128691, - [SMALL_STATE(3441)] = 128707, - [SMALL_STATE(3442)] = 128723, - [SMALL_STATE(3443)] = 128741, - [SMALL_STATE(3444)] = 128753, - [SMALL_STATE(3445)] = 128765, - [SMALL_STATE(3446)] = 128783, - [SMALL_STATE(3447)] = 128805, - [SMALL_STATE(3448)] = 128827, - [SMALL_STATE(3449)] = 128845, - [SMALL_STATE(3450)] = 128859, - [SMALL_STATE(3451)] = 128881, - [SMALL_STATE(3452)] = 128899, - [SMALL_STATE(3453)] = 128917, - [SMALL_STATE(3454)] = 128939, - [SMALL_STATE(3455)] = 128961, - [SMALL_STATE(3456)] = 128979, - [SMALL_STATE(3457)] = 128991, - [SMALL_STATE(3458)] = 129007, - [SMALL_STATE(3459)] = 129019, - [SMALL_STATE(3460)] = 129035, - [SMALL_STATE(3461)] = 129053, - [SMALL_STATE(3462)] = 129069, - [SMALL_STATE(3463)] = 129083, - [SMALL_STATE(3464)] = 129099, - [SMALL_STATE(3465)] = 129121, - [SMALL_STATE(3466)] = 129137, - [SMALL_STATE(3467)] = 129155, - [SMALL_STATE(3468)] = 129177, - [SMALL_STATE(3469)] = 129193, - [SMALL_STATE(3470)] = 129209, - [SMALL_STATE(3471)] = 129225, - [SMALL_STATE(3472)] = 129247, - [SMALL_STATE(3473)] = 129259, - [SMALL_STATE(3474)] = 129281, - [SMALL_STATE(3475)] = 129293, - [SMALL_STATE(3476)] = 129315, - [SMALL_STATE(3477)] = 129327, - [SMALL_STATE(3478)] = 129349, - [SMALL_STATE(3479)] = 129365, - [SMALL_STATE(3480)] = 129387, - [SMALL_STATE(3481)] = 129403, - [SMALL_STATE(3482)] = 129425, - [SMALL_STATE(3483)] = 129441, - [SMALL_STATE(3484)] = 129459, - [SMALL_STATE(3485)] = 129471, - [SMALL_STATE(3486)] = 129487, - [SMALL_STATE(3487)] = 129505, - [SMALL_STATE(3488)] = 129523, - [SMALL_STATE(3489)] = 129541, - [SMALL_STATE(3490)] = 129553, - [SMALL_STATE(3491)] = 129569, - [SMALL_STATE(3492)] = 129581, - [SMALL_STATE(3493)] = 129603, - [SMALL_STATE(3494)] = 129623, - [SMALL_STATE(3495)] = 129639, - [SMALL_STATE(3496)] = 129657, - [SMALL_STATE(3497)] = 129679, - [SMALL_STATE(3498)] = 129695, - [SMALL_STATE(3499)] = 129711, - [SMALL_STATE(3500)] = 129733, - [SMALL_STATE(3501)] = 129749, - [SMALL_STATE(3502)] = 129765, - [SMALL_STATE(3503)] = 129787, - [SMALL_STATE(3504)] = 129803, - [SMALL_STATE(3505)] = 129825, - [SMALL_STATE(3506)] = 129843, - [SMALL_STATE(3507)] = 129865, - [SMALL_STATE(3508)] = 129887, - [SMALL_STATE(3509)] = 129909, - [SMALL_STATE(3510)] = 129931, - [SMALL_STATE(3511)] = 129949, - [SMALL_STATE(3512)] = 129965, - [SMALL_STATE(3513)] = 129983, - [SMALL_STATE(3514)] = 130005, - [SMALL_STATE(3515)] = 130027, - [SMALL_STATE(3516)] = 130043, - [SMALL_STATE(3517)] = 130061, - [SMALL_STATE(3518)] = 130077, - [SMALL_STATE(3519)] = 130095, - [SMALL_STATE(3520)] = 130111, - [SMALL_STATE(3521)] = 130133, - [SMALL_STATE(3522)] = 130151, - [SMALL_STATE(3523)] = 130167, - [SMALL_STATE(3524)] = 130183, - [SMALL_STATE(3525)] = 130199, - [SMALL_STATE(3526)] = 130215, - [SMALL_STATE(3527)] = 130231, - [SMALL_STATE(3528)] = 130247, - [SMALL_STATE(3529)] = 130263, - [SMALL_STATE(3530)] = 130285, - [SMALL_STATE(3531)] = 130297, - [SMALL_STATE(3532)] = 130319, - [SMALL_STATE(3533)] = 130341, - [SMALL_STATE(3534)] = 130357, - [SMALL_STATE(3535)] = 130369, - [SMALL_STATE(3536)] = 130383, - [SMALL_STATE(3537)] = 130401, - [SMALL_STATE(3538)] = 130417, - [SMALL_STATE(3539)] = 130433, - [SMALL_STATE(3540)] = 130455, - [SMALL_STATE(3541)] = 130471, - [SMALL_STATE(3542)] = 130493, - [SMALL_STATE(3543)] = 130509, - [SMALL_STATE(3544)] = 130527, - [SMALL_STATE(3545)] = 130543, - [SMALL_STATE(3546)] = 130563, - [SMALL_STATE(3547)] = 130581, - [SMALL_STATE(3548)] = 130603, - [SMALL_STATE(3549)] = 130621, - [SMALL_STATE(3550)] = 130637, - [SMALL_STATE(3551)] = 130653, - [SMALL_STATE(3552)] = 130673, - [SMALL_STATE(3553)] = 130688, - [SMALL_STATE(3554)] = 130699, - [SMALL_STATE(3555)] = 130710, - [SMALL_STATE(3556)] = 130729, - [SMALL_STATE(3557)] = 130746, - [SMALL_STATE(3558)] = 130763, - [SMALL_STATE(3559)] = 130782, - [SMALL_STATE(3560)] = 130801, - [SMALL_STATE(3561)] = 130816, - [SMALL_STATE(3562)] = 130831, - [SMALL_STATE(3563)] = 130848, - [SMALL_STATE(3564)] = 130859, - [SMALL_STATE(3565)] = 130874, - [SMALL_STATE(3566)] = 130889, - [SMALL_STATE(3567)] = 130904, - [SMALL_STATE(3568)] = 130923, - [SMALL_STATE(3569)] = 130942, - [SMALL_STATE(3570)] = 130957, - [SMALL_STATE(3571)] = 130972, - [SMALL_STATE(3572)] = 130991, - [SMALL_STATE(3573)] = 131008, - [SMALL_STATE(3574)] = 131019, - [SMALL_STATE(3575)] = 131038, - [SMALL_STATE(3576)] = 131057, - [SMALL_STATE(3577)] = 131068, - [SMALL_STATE(3578)] = 131087, - [SMALL_STATE(3579)] = 131098, - [SMALL_STATE(3580)] = 131117, - [SMALL_STATE(3581)] = 131136, - [SMALL_STATE(3582)] = 131155, - [SMALL_STATE(3583)] = 131174, - [SMALL_STATE(3584)] = 131193, - [SMALL_STATE(3585)] = 131204, - [SMALL_STATE(3586)] = 131215, - [SMALL_STATE(3587)] = 131230, - [SMALL_STATE(3588)] = 131247, - [SMALL_STATE(3589)] = 131264, - [SMALL_STATE(3590)] = 131277, - [SMALL_STATE(3591)] = 131288, - [SMALL_STATE(3592)] = 131301, - [SMALL_STATE(3593)] = 131312, - [SMALL_STATE(3594)] = 131331, - [SMALL_STATE(3595)] = 131342, - [SMALL_STATE(3596)] = 131353, - [SMALL_STATE(3597)] = 131372, - [SMALL_STATE(3598)] = 131391, - [SMALL_STATE(3599)] = 131402, - [SMALL_STATE(3600)] = 131415, - [SMALL_STATE(3601)] = 131434, - [SMALL_STATE(3602)] = 131445, - [SMALL_STATE(3603)] = 131464, - [SMALL_STATE(3604)] = 131481, - [SMALL_STATE(3605)] = 131500, - [SMALL_STATE(3606)] = 131511, - [SMALL_STATE(3607)] = 131528, - [SMALL_STATE(3608)] = 131539, - [SMALL_STATE(3609)] = 131558, - [SMALL_STATE(3610)] = 131575, - [SMALL_STATE(3611)] = 131586, - [SMALL_STATE(3612)] = 131605, - [SMALL_STATE(3613)] = 131624, - [SMALL_STATE(3614)] = 131635, - [SMALL_STATE(3615)] = 131646, - [SMALL_STATE(3616)] = 131661, - [SMALL_STATE(3617)] = 131680, - [SMALL_STATE(3618)] = 131699, - [SMALL_STATE(3619)] = 131718, - [SMALL_STATE(3620)] = 131729, - [SMALL_STATE(3621)] = 131740, - [SMALL_STATE(3622)] = 131757, - [SMALL_STATE(3623)] = 131774, - [SMALL_STATE(3624)] = 131785, - [SMALL_STATE(3625)] = 131796, - [SMALL_STATE(3626)] = 131807, - [SMALL_STATE(3627)] = 131826, - [SMALL_STATE(3628)] = 131841, - [SMALL_STATE(3629)] = 131852, - [SMALL_STATE(3630)] = 131863, - [SMALL_STATE(3631)] = 131874, - [SMALL_STATE(3632)] = 131885, - [SMALL_STATE(3633)] = 131896, - [SMALL_STATE(3634)] = 131915, - [SMALL_STATE(3635)] = 131926, - [SMALL_STATE(3636)] = 131941, - [SMALL_STATE(3637)] = 131952, - [SMALL_STATE(3638)] = 131969, - [SMALL_STATE(3639)] = 131980, - [SMALL_STATE(3640)] = 131997, - [SMALL_STATE(3641)] = 132008, - [SMALL_STATE(3642)] = 132027, - [SMALL_STATE(3643)] = 132038, - [SMALL_STATE(3644)] = 132049, - [SMALL_STATE(3645)] = 132060, - [SMALL_STATE(3646)] = 132079, - [SMALL_STATE(3647)] = 132090, - [SMALL_STATE(3648)] = 132101, - [SMALL_STATE(3649)] = 132112, - [SMALL_STATE(3650)] = 132131, - [SMALL_STATE(3651)] = 132142, - [SMALL_STATE(3652)] = 132153, - [SMALL_STATE(3653)] = 132170, - [SMALL_STATE(3654)] = 132181, - [SMALL_STATE(3655)] = 132200, - [SMALL_STATE(3656)] = 132219, - [SMALL_STATE(3657)] = 132230, - [SMALL_STATE(3658)] = 132241, - [SMALL_STATE(3659)] = 132252, - [SMALL_STATE(3660)] = 132263, - [SMALL_STATE(3661)] = 132282, - [SMALL_STATE(3662)] = 132301, - [SMALL_STATE(3663)] = 132312, - [SMALL_STATE(3664)] = 132323, - [SMALL_STATE(3665)] = 132334, - [SMALL_STATE(3666)] = 132351, - [SMALL_STATE(3667)] = 132362, - [SMALL_STATE(3668)] = 132373, - [SMALL_STATE(3669)] = 132384, - [SMALL_STATE(3670)] = 132395, - [SMALL_STATE(3671)] = 132406, - [SMALL_STATE(3672)] = 132417, - [SMALL_STATE(3673)] = 132436, - [SMALL_STATE(3674)] = 132455, - [SMALL_STATE(3675)] = 132466, - [SMALL_STATE(3676)] = 132485, - [SMALL_STATE(3677)] = 132502, - [SMALL_STATE(3678)] = 132513, - [SMALL_STATE(3679)] = 132532, - [SMALL_STATE(3680)] = 132551, - [SMALL_STATE(3681)] = 132562, - [SMALL_STATE(3682)] = 132579, - [SMALL_STATE(3683)] = 132590, - [SMALL_STATE(3684)] = 132601, - [SMALL_STATE(3685)] = 132620, - [SMALL_STATE(3686)] = 132631, - [SMALL_STATE(3687)] = 132642, - [SMALL_STATE(3688)] = 132661, - [SMALL_STATE(3689)] = 132680, - [SMALL_STATE(3690)] = 132691, - [SMALL_STATE(3691)] = 132710, - [SMALL_STATE(3692)] = 132729, - [SMALL_STATE(3693)] = 132748, - [SMALL_STATE(3694)] = 132761, - [SMALL_STATE(3695)] = 132780, - [SMALL_STATE(3696)] = 132791, - [SMALL_STATE(3697)] = 132806, - [SMALL_STATE(3698)] = 132825, - [SMALL_STATE(3699)] = 132844, - [SMALL_STATE(3700)] = 132855, - [SMALL_STATE(3701)] = 132874, - [SMALL_STATE(3702)] = 132885, - [SMALL_STATE(3703)] = 132896, - [SMALL_STATE(3704)] = 132907, - [SMALL_STATE(3705)] = 132926, - [SMALL_STATE(3706)] = 132945, - [SMALL_STATE(3707)] = 132956, - [SMALL_STATE(3708)] = 132975, - [SMALL_STATE(3709)] = 132990, - [SMALL_STATE(3710)] = 133009, - [SMALL_STATE(3711)] = 133028, - [SMALL_STATE(3712)] = 133039, - [SMALL_STATE(3713)] = 133050, - [SMALL_STATE(3714)] = 133069, - [SMALL_STATE(3715)] = 133084, - [SMALL_STATE(3716)] = 133095, - [SMALL_STATE(3717)] = 133106, - [SMALL_STATE(3718)] = 133125, - [SMALL_STATE(3719)] = 133136, - [SMALL_STATE(3720)] = 133147, - [SMALL_STATE(3721)] = 133158, - [SMALL_STATE(3722)] = 133177, - [SMALL_STATE(3723)] = 133188, - [SMALL_STATE(3724)] = 133203, - [SMALL_STATE(3725)] = 133214, - [SMALL_STATE(3726)] = 133225, - [SMALL_STATE(3727)] = 133244, - [SMALL_STATE(3728)] = 133263, - [SMALL_STATE(3729)] = 133282, - [SMALL_STATE(3730)] = 133293, - [SMALL_STATE(3731)] = 133312, - [SMALL_STATE(3732)] = 133323, - [SMALL_STATE(3733)] = 133342, - [SMALL_STATE(3734)] = 133353, - [SMALL_STATE(3735)] = 133372, - [SMALL_STATE(3736)] = 133391, - [SMALL_STATE(3737)] = 133410, - [SMALL_STATE(3738)] = 133421, - [SMALL_STATE(3739)] = 133432, - [SMALL_STATE(3740)] = 133443, - [SMALL_STATE(3741)] = 133454, - [SMALL_STATE(3742)] = 133465, - [SMALL_STATE(3743)] = 133482, - [SMALL_STATE(3744)] = 133493, - [SMALL_STATE(3745)] = 133512, - [SMALL_STATE(3746)] = 133531, - [SMALL_STATE(3747)] = 133542, - [SMALL_STATE(3748)] = 133553, - [SMALL_STATE(3749)] = 133564, - [SMALL_STATE(3750)] = 133581, - [SMALL_STATE(3751)] = 133592, - [SMALL_STATE(3752)] = 133603, - [SMALL_STATE(3753)] = 133614, - [SMALL_STATE(3754)] = 133633, - [SMALL_STATE(3755)] = 133652, - [SMALL_STATE(3756)] = 133671, - [SMALL_STATE(3757)] = 133690, - [SMALL_STATE(3758)] = 133701, - [SMALL_STATE(3759)] = 133720, - [SMALL_STATE(3760)] = 133731, - [SMALL_STATE(3761)] = 133750, - [SMALL_STATE(3762)] = 133761, - [SMALL_STATE(3763)] = 133778, - [SMALL_STATE(3764)] = 133789, - [SMALL_STATE(3765)] = 133800, - [SMALL_STATE(3766)] = 133817, - [SMALL_STATE(3767)] = 133834, - [SMALL_STATE(3768)] = 133845, - [SMALL_STATE(3769)] = 133856, - [SMALL_STATE(3770)] = 133867, - [SMALL_STATE(3771)] = 133878, - [SMALL_STATE(3772)] = 133889, - [SMALL_STATE(3773)] = 133900, - [SMALL_STATE(3774)] = 133911, - [SMALL_STATE(3775)] = 133926, - [SMALL_STATE(3776)] = 133941, - [SMALL_STATE(3777)] = 133952, - [SMALL_STATE(3778)] = 133963, - [SMALL_STATE(3779)] = 133974, - [SMALL_STATE(3780)] = 133985, - [SMALL_STATE(3781)] = 134002, - [SMALL_STATE(3782)] = 134013, - [SMALL_STATE(3783)] = 134032, - [SMALL_STATE(3784)] = 134047, - [SMALL_STATE(3785)] = 134062, - [SMALL_STATE(3786)] = 134073, - [SMALL_STATE(3787)] = 134084, - [SMALL_STATE(3788)] = 134095, - [SMALL_STATE(3789)] = 134114, - [SMALL_STATE(3790)] = 134125, - [SMALL_STATE(3791)] = 134144, - [SMALL_STATE(3792)] = 134163, - [SMALL_STATE(3793)] = 134174, - [SMALL_STATE(3794)] = 134185, - [SMALL_STATE(3795)] = 134196, - [SMALL_STATE(3796)] = 134207, - [SMALL_STATE(3797)] = 134218, - [SMALL_STATE(3798)] = 134237, - [SMALL_STATE(3799)] = 134254, - [SMALL_STATE(3800)] = 134265, - [SMALL_STATE(3801)] = 134284, - [SMALL_STATE(3802)] = 134303, - [SMALL_STATE(3803)] = 134320, - [SMALL_STATE(3804)] = 134335, - [SMALL_STATE(3805)] = 134354, - [SMALL_STATE(3806)] = 134365, - [SMALL_STATE(3807)] = 134382, - [SMALL_STATE(3808)] = 134393, - [SMALL_STATE(3809)] = 134412, - [SMALL_STATE(3810)] = 134429, - [SMALL_STATE(3811)] = 134448, - [SMALL_STATE(3812)] = 134467, - [SMALL_STATE(3813)] = 134478, - [SMALL_STATE(3814)] = 134489, - [SMALL_STATE(3815)] = 134500, - [SMALL_STATE(3816)] = 134519, - [SMALL_STATE(3817)] = 134530, - [SMALL_STATE(3818)] = 134545, - [SMALL_STATE(3819)] = 134562, - [SMALL_STATE(3820)] = 134573, - [SMALL_STATE(3821)] = 134592, - [SMALL_STATE(3822)] = 134603, - [SMALL_STATE(3823)] = 134620, - [SMALL_STATE(3824)] = 134639, - [SMALL_STATE(3825)] = 134658, - [SMALL_STATE(3826)] = 134669, - [SMALL_STATE(3827)] = 134680, - [SMALL_STATE(3828)] = 134691, - [SMALL_STATE(3829)] = 134710, - [SMALL_STATE(3830)] = 134729, - [SMALL_STATE(3831)] = 134740, - [SMALL_STATE(3832)] = 134759, - [SMALL_STATE(3833)] = 134778, - [SMALL_STATE(3834)] = 134789, - [SMALL_STATE(3835)] = 134800, - [SMALL_STATE(3836)] = 134819, - [SMALL_STATE(3837)] = 134830, - [SMALL_STATE(3838)] = 134841, - [SMALL_STATE(3839)] = 134858, - [SMALL_STATE(3840)] = 134869, - [SMALL_STATE(3841)] = 134888, - [SMALL_STATE(3842)] = 134907, - [SMALL_STATE(3843)] = 134918, - [SMALL_STATE(3844)] = 134929, - [SMALL_STATE(3845)] = 134948, - [SMALL_STATE(3846)] = 134967, - [SMALL_STATE(3847)] = 134978, - [SMALL_STATE(3848)] = 134991, - [SMALL_STATE(3849)] = 135010, - [SMALL_STATE(3850)] = 135029, - [SMALL_STATE(3851)] = 135048, - [SMALL_STATE(3852)] = 135067, - [SMALL_STATE(3853)] = 135082, - [SMALL_STATE(3854)] = 135099, - [SMALL_STATE(3855)] = 135114, - [SMALL_STATE(3856)] = 135133, - [SMALL_STATE(3857)] = 135144, - [SMALL_STATE(3858)] = 135159, - [SMALL_STATE(3859)] = 135170, - [SMALL_STATE(3860)] = 135184, - [SMALL_STATE(3861)] = 135200, - [SMALL_STATE(3862)] = 135216, - [SMALL_STATE(3863)] = 135232, - [SMALL_STATE(3864)] = 135248, - [SMALL_STATE(3865)] = 135262, - [SMALL_STATE(3866)] = 135278, - [SMALL_STATE(3867)] = 135294, - [SMALL_STATE(3868)] = 135310, - [SMALL_STATE(3869)] = 135326, - [SMALL_STATE(3870)] = 135338, - [SMALL_STATE(3871)] = 135352, - [SMALL_STATE(3872)] = 135366, - [SMALL_STATE(3873)] = 135382, - [SMALL_STATE(3874)] = 135396, - [SMALL_STATE(3875)] = 135410, - [SMALL_STATE(3876)] = 135424, - [SMALL_STATE(3877)] = 135438, - [SMALL_STATE(3878)] = 135454, - [SMALL_STATE(3879)] = 135470, - [SMALL_STATE(3880)] = 135486, - [SMALL_STATE(3881)] = 135500, - [SMALL_STATE(3882)] = 135514, - [SMALL_STATE(3883)] = 135528, - [SMALL_STATE(3884)] = 135542, - [SMALL_STATE(3885)] = 135554, - [SMALL_STATE(3886)] = 135568, - [SMALL_STATE(3887)] = 135584, - [SMALL_STATE(3888)] = 135598, - [SMALL_STATE(3889)] = 135614, - [SMALL_STATE(3890)] = 135628, - [SMALL_STATE(3891)] = 135644, - [SMALL_STATE(3892)] = 135660, - [SMALL_STATE(3893)] = 135676, - [SMALL_STATE(3894)] = 135692, - [SMALL_STATE(3895)] = 135706, - [SMALL_STATE(3896)] = 135722, - [SMALL_STATE(3897)] = 135736, - [SMALL_STATE(3898)] = 135750, - [SMALL_STATE(3899)] = 135764, - [SMALL_STATE(3900)] = 135778, - [SMALL_STATE(3901)] = 135792, - [SMALL_STATE(3902)] = 135806, - [SMALL_STATE(3903)] = 135822, - [SMALL_STATE(3904)] = 135838, - [SMALL_STATE(3905)] = 135854, - [SMALL_STATE(3906)] = 135868, - [SMALL_STATE(3907)] = 135884, - [SMALL_STATE(3908)] = 135900, - [SMALL_STATE(3909)] = 135914, - [SMALL_STATE(3910)] = 135930, - [SMALL_STATE(3911)] = 135946, - [SMALL_STATE(3912)] = 135960, - [SMALL_STATE(3913)] = 135976, - [SMALL_STATE(3914)] = 135990, - [SMALL_STATE(3915)] = 136000, - [SMALL_STATE(3916)] = 136016, - [SMALL_STATE(3917)] = 136030, - [SMALL_STATE(3918)] = 136046, - [SMALL_STATE(3919)] = 136062, - [SMALL_STATE(3920)] = 136078, - [SMALL_STATE(3921)] = 136092, - [SMALL_STATE(3922)] = 136106, - [SMALL_STATE(3923)] = 136116, - [SMALL_STATE(3924)] = 136130, - [SMALL_STATE(3925)] = 136146, - [SMALL_STATE(3926)] = 136160, - [SMALL_STATE(3927)] = 136176, - [SMALL_STATE(3928)] = 136192, - [SMALL_STATE(3929)] = 136202, - [SMALL_STATE(3930)] = 136216, - [SMALL_STATE(3931)] = 136232, - [SMALL_STATE(3932)] = 136246, - [SMALL_STATE(3933)] = 136260, - [SMALL_STATE(3934)] = 136274, - [SMALL_STATE(3935)] = 136288, - [SMALL_STATE(3936)] = 136302, - [SMALL_STATE(3937)] = 136316, - [SMALL_STATE(3938)] = 136328, - [SMALL_STATE(3939)] = 136342, - [SMALL_STATE(3940)] = 136356, - [SMALL_STATE(3941)] = 136372, - [SMALL_STATE(3942)] = 136388, - [SMALL_STATE(3943)] = 136404, - [SMALL_STATE(3944)] = 136420, - [SMALL_STATE(3945)] = 136434, - [SMALL_STATE(3946)] = 136450, - [SMALL_STATE(3947)] = 136466, - [SMALL_STATE(3948)] = 136480, - [SMALL_STATE(3949)] = 136496, - [SMALL_STATE(3950)] = 136510, - [SMALL_STATE(3951)] = 136520, - [SMALL_STATE(3952)] = 136536, - [SMALL_STATE(3953)] = 136548, - [SMALL_STATE(3954)] = 136558, - [SMALL_STATE(3955)] = 136572, - [SMALL_STATE(3956)] = 136586, - [SMALL_STATE(3957)] = 136600, - [SMALL_STATE(3958)] = 136614, - [SMALL_STATE(3959)] = 136630, - [SMALL_STATE(3960)] = 136644, - [SMALL_STATE(3961)] = 136656, - [SMALL_STATE(3962)] = 136670, - [SMALL_STATE(3963)] = 136684, - [SMALL_STATE(3964)] = 136698, - [SMALL_STATE(3965)] = 136712, - [SMALL_STATE(3966)] = 136728, - [SMALL_STATE(3967)] = 136744, - [SMALL_STATE(3968)] = 136760, - [SMALL_STATE(3969)] = 136774, - [SMALL_STATE(3970)] = 136788, - [SMALL_STATE(3971)] = 136804, - [SMALL_STATE(3972)] = 136820, - [SMALL_STATE(3973)] = 136834, - [SMALL_STATE(3974)] = 136844, - [SMALL_STATE(3975)] = 136860, - [SMALL_STATE(3976)] = 136874, - [SMALL_STATE(3977)] = 136888, - [SMALL_STATE(3978)] = 136904, - [SMALL_STATE(3979)] = 136918, - [SMALL_STATE(3980)] = 136932, - [SMALL_STATE(3981)] = 136946, - [SMALL_STATE(3982)] = 136960, - [SMALL_STATE(3983)] = 136976, - [SMALL_STATE(3984)] = 136990, - [SMALL_STATE(3985)] = 137004, - [SMALL_STATE(3986)] = 137018, - [SMALL_STATE(3987)] = 137034, - [SMALL_STATE(3988)] = 137048, - [SMALL_STATE(3989)] = 137062, - [SMALL_STATE(3990)] = 137078, - [SMALL_STATE(3991)] = 137092, - [SMALL_STATE(3992)] = 137106, - [SMALL_STATE(3993)] = 137120, - [SMALL_STATE(3994)] = 137136, - [SMALL_STATE(3995)] = 137152, - [SMALL_STATE(3996)] = 137166, - [SMALL_STATE(3997)] = 137182, - [SMALL_STATE(3998)] = 137198, - [SMALL_STATE(3999)] = 137214, - [SMALL_STATE(4000)] = 137230, - [SMALL_STATE(4001)] = 137244, - [SMALL_STATE(4002)] = 137260, - [SMALL_STATE(4003)] = 137274, - [SMALL_STATE(4004)] = 137288, - [SMALL_STATE(4005)] = 137301, - [SMALL_STATE(4006)] = 137314, - [SMALL_STATE(4007)] = 137323, - [SMALL_STATE(4008)] = 137336, - [SMALL_STATE(4009)] = 137349, - [SMALL_STATE(4010)] = 137362, - [SMALL_STATE(4011)] = 137373, - [SMALL_STATE(4012)] = 137386, - [SMALL_STATE(4013)] = 137395, - [SMALL_STATE(4014)] = 137408, - [SMALL_STATE(4015)] = 137421, - [SMALL_STATE(4016)] = 137430, - [SMALL_STATE(4017)] = 137439, - [SMALL_STATE(4018)] = 137448, - [SMALL_STATE(4019)] = 137461, - [SMALL_STATE(4020)] = 137474, - [SMALL_STATE(4021)] = 137483, - [SMALL_STATE(4022)] = 137496, - [SMALL_STATE(4023)] = 137505, - [SMALL_STATE(4024)] = 137514, - [SMALL_STATE(4025)] = 137523, - [SMALL_STATE(4026)] = 137532, - [SMALL_STATE(4027)] = 137541, - [SMALL_STATE(4028)] = 137552, - [SMALL_STATE(4029)] = 137565, - [SMALL_STATE(4030)] = 137578, - [SMALL_STATE(4031)] = 137591, - [SMALL_STATE(4032)] = 137604, - [SMALL_STATE(4033)] = 137617, - [SMALL_STATE(4034)] = 137626, - [SMALL_STATE(4035)] = 137635, - [SMALL_STATE(4036)] = 137644, - [SMALL_STATE(4037)] = 137657, - [SMALL_STATE(4038)] = 137670, - [SMALL_STATE(4039)] = 137679, - [SMALL_STATE(4040)] = 137692, - [SMALL_STATE(4041)] = 137701, - [SMALL_STATE(4042)] = 137714, - [SMALL_STATE(4043)] = 137723, - [SMALL_STATE(4044)] = 137736, - [SMALL_STATE(4045)] = 137749, - [SMALL_STATE(4046)] = 137758, - [SMALL_STATE(4047)] = 137771, - [SMALL_STATE(4048)] = 137780, - [SMALL_STATE(4049)] = 137789, - [SMALL_STATE(4050)] = 137802, - [SMALL_STATE(4051)] = 137815, - [SMALL_STATE(4052)] = 137828, - [SMALL_STATE(4053)] = 137841, - [SMALL_STATE(4054)] = 137854, - [SMALL_STATE(4055)] = 137867, - [SMALL_STATE(4056)] = 137876, - [SMALL_STATE(4057)] = 137889, - [SMALL_STATE(4058)] = 137902, - [SMALL_STATE(4059)] = 137911, - [SMALL_STATE(4060)] = 137924, - [SMALL_STATE(4061)] = 137935, - [SMALL_STATE(4062)] = 137946, - [SMALL_STATE(4063)] = 137959, - [SMALL_STATE(4064)] = 137972, - [SMALL_STATE(4065)] = 137985, - [SMALL_STATE(4066)] = 137998, - [SMALL_STATE(4067)] = 138007, - [SMALL_STATE(4068)] = 138020, - [SMALL_STATE(4069)] = 138033, - [SMALL_STATE(4070)] = 138046, - [SMALL_STATE(4071)] = 138055, - [SMALL_STATE(4072)] = 138066, - [SMALL_STATE(4073)] = 138075, - [SMALL_STATE(4074)] = 138084, - [SMALL_STATE(4075)] = 138095, - [SMALL_STATE(4076)] = 138104, - [SMALL_STATE(4077)] = 138117, - [SMALL_STATE(4078)] = 138130, - [SMALL_STATE(4079)] = 138139, - [SMALL_STATE(4080)] = 138148, - [SMALL_STATE(4081)] = 138157, - [SMALL_STATE(4082)] = 138168, - [SMALL_STATE(4083)] = 138179, - [SMALL_STATE(4084)] = 138188, - [SMALL_STATE(4085)] = 138197, - [SMALL_STATE(4086)] = 138210, - [SMALL_STATE(4087)] = 138223, - [SMALL_STATE(4088)] = 138236, - [SMALL_STATE(4089)] = 138247, - [SMALL_STATE(4090)] = 138256, - [SMALL_STATE(4091)] = 138267, - [SMALL_STATE(4092)] = 138276, - [SMALL_STATE(4093)] = 138289, - [SMALL_STATE(4094)] = 138302, - [SMALL_STATE(4095)] = 138315, - [SMALL_STATE(4096)] = 138328, - [SMALL_STATE(4097)] = 138341, - [SMALL_STATE(4098)] = 138354, - [SMALL_STATE(4099)] = 138367, - [SMALL_STATE(4100)] = 138380, - [SMALL_STATE(4101)] = 138393, - [SMALL_STATE(4102)] = 138406, - [SMALL_STATE(4103)] = 138419, - [SMALL_STATE(4104)] = 138432, - [SMALL_STATE(4105)] = 138445, - [SMALL_STATE(4106)] = 138458, - [SMALL_STATE(4107)] = 138471, - [SMALL_STATE(4108)] = 138484, - [SMALL_STATE(4109)] = 138495, - [SMALL_STATE(4110)] = 138508, - [SMALL_STATE(4111)] = 138521, - [SMALL_STATE(4112)] = 138534, - [SMALL_STATE(4113)] = 138543, - [SMALL_STATE(4114)] = 138554, - [SMALL_STATE(4115)] = 138563, - [SMALL_STATE(4116)] = 138576, - [SMALL_STATE(4117)] = 138589, - [SMALL_STATE(4118)] = 138602, - [SMALL_STATE(4119)] = 138615, - [SMALL_STATE(4120)] = 138628, - [SMALL_STATE(4121)] = 138641, - [SMALL_STATE(4122)] = 138652, - [SMALL_STATE(4123)] = 138665, - [SMALL_STATE(4124)] = 138676, - [SMALL_STATE(4125)] = 138689, - [SMALL_STATE(4126)] = 138702, - [SMALL_STATE(4127)] = 138715, - [SMALL_STATE(4128)] = 138728, - [SMALL_STATE(4129)] = 138741, - [SMALL_STATE(4130)] = 138754, - [SMALL_STATE(4131)] = 138767, - [SMALL_STATE(4132)] = 138780, - [SMALL_STATE(4133)] = 138789, - [SMALL_STATE(4134)] = 138798, - [SMALL_STATE(4135)] = 138811, - [SMALL_STATE(4136)] = 138824, - [SMALL_STATE(4137)] = 138837, - [SMALL_STATE(4138)] = 138846, - [SMALL_STATE(4139)] = 138859, - [SMALL_STATE(4140)] = 138872, - [SMALL_STATE(4141)] = 138885, - [SMALL_STATE(4142)] = 138898, - [SMALL_STATE(4143)] = 138911, - [SMALL_STATE(4144)] = 138924, - [SMALL_STATE(4145)] = 138935, - [SMALL_STATE(4146)] = 138948, - [SMALL_STATE(4147)] = 138961, - [SMALL_STATE(4148)] = 138974, - [SMALL_STATE(4149)] = 138987, - [SMALL_STATE(4150)] = 138998, - [SMALL_STATE(4151)] = 139011, - [SMALL_STATE(4152)] = 139024, - [SMALL_STATE(4153)] = 139033, - [SMALL_STATE(4154)] = 139042, - [SMALL_STATE(4155)] = 139055, - [SMALL_STATE(4156)] = 139068, - [SMALL_STATE(4157)] = 139081, - [SMALL_STATE(4158)] = 139094, - [SMALL_STATE(4159)] = 139107, - [SMALL_STATE(4160)] = 139120, - [SMALL_STATE(4161)] = 139133, - [SMALL_STATE(4162)] = 139146, - [SMALL_STATE(4163)] = 139159, - [SMALL_STATE(4164)] = 139172, - [SMALL_STATE(4165)] = 139181, - [SMALL_STATE(4166)] = 139190, - [SMALL_STATE(4167)] = 139203, - [SMALL_STATE(4168)] = 139216, - [SMALL_STATE(4169)] = 139225, - [SMALL_STATE(4170)] = 139238, - [SMALL_STATE(4171)] = 139251, - [SMALL_STATE(4172)] = 139260, - [SMALL_STATE(4173)] = 139273, - [SMALL_STATE(4174)] = 139286, - [SMALL_STATE(4175)] = 139299, - [SMALL_STATE(4176)] = 139310, - [SMALL_STATE(4177)] = 139323, - [SMALL_STATE(4178)] = 139334, - [SMALL_STATE(4179)] = 139347, - [SMALL_STATE(4180)] = 139358, - [SMALL_STATE(4181)] = 139371, - [SMALL_STATE(4182)] = 139382, - [SMALL_STATE(4183)] = 139395, - [SMALL_STATE(4184)] = 139408, - [SMALL_STATE(4185)] = 139421, - [SMALL_STATE(4186)] = 139430, - [SMALL_STATE(4187)] = 139443, - [SMALL_STATE(4188)] = 139454, - [SMALL_STATE(4189)] = 139463, - [SMALL_STATE(4190)] = 139476, - [SMALL_STATE(4191)] = 139487, - [SMALL_STATE(4192)] = 139500, - [SMALL_STATE(4193)] = 139511, - [SMALL_STATE(4194)] = 139524, - [SMALL_STATE(4195)] = 139537, - [SMALL_STATE(4196)] = 139550, - [SMALL_STATE(4197)] = 139563, - [SMALL_STATE(4198)] = 139576, - [SMALL_STATE(4199)] = 139589, - [SMALL_STATE(4200)] = 139602, - [SMALL_STATE(4201)] = 139615, - [SMALL_STATE(4202)] = 139626, - [SMALL_STATE(4203)] = 139635, - [SMALL_STATE(4204)] = 139648, - [SMALL_STATE(4205)] = 139661, - [SMALL_STATE(4206)] = 139672, - [SMALL_STATE(4207)] = 139685, - [SMALL_STATE(4208)] = 139698, - [SMALL_STATE(4209)] = 139711, - [SMALL_STATE(4210)] = 139724, - [SMALL_STATE(4211)] = 139737, - [SMALL_STATE(4212)] = 139750, - [SMALL_STATE(4213)] = 139763, - [SMALL_STATE(4214)] = 139772, - [SMALL_STATE(4215)] = 139783, - [SMALL_STATE(4216)] = 139792, - [SMALL_STATE(4217)] = 139801, - [SMALL_STATE(4218)] = 139814, - [SMALL_STATE(4219)] = 139823, - [SMALL_STATE(4220)] = 139832, - [SMALL_STATE(4221)] = 139841, - [SMALL_STATE(4222)] = 139850, - [SMALL_STATE(4223)] = 139859, - [SMALL_STATE(4224)] = 139872, - [SMALL_STATE(4225)] = 139881, - [SMALL_STATE(4226)] = 139894, - [SMALL_STATE(4227)] = 139907, - [SMALL_STATE(4228)] = 139920, - [SMALL_STATE(4229)] = 139933, - [SMALL_STATE(4230)] = 139942, - [SMALL_STATE(4231)] = 139951, - [SMALL_STATE(4232)] = 139960, - [SMALL_STATE(4233)] = 139973, - [SMALL_STATE(4234)] = 139986, - [SMALL_STATE(4235)] = 139999, - [SMALL_STATE(4236)] = 140008, - [SMALL_STATE(4237)] = 140021, - [SMALL_STATE(4238)] = 140034, - [SMALL_STATE(4239)] = 140047, - [SMALL_STATE(4240)] = 140060, - [SMALL_STATE(4241)] = 140073, - [SMALL_STATE(4242)] = 140086, - [SMALL_STATE(4243)] = 140097, - [SMALL_STATE(4244)] = 140110, - [SMALL_STATE(4245)] = 140119, - [SMALL_STATE(4246)] = 140132, - [SMALL_STATE(4247)] = 140145, - [SMALL_STATE(4248)] = 140158, - [SMALL_STATE(4249)] = 140169, - [SMALL_STATE(4250)] = 140182, - [SMALL_STATE(4251)] = 140195, - [SMALL_STATE(4252)] = 140206, - [SMALL_STATE(4253)] = 140219, - [SMALL_STATE(4254)] = 140232, - [SMALL_STATE(4255)] = 140245, - [SMALL_STATE(4256)] = 140254, - [SMALL_STATE(4257)] = 140267, - [SMALL_STATE(4258)] = 140280, - [SMALL_STATE(4259)] = 140293, - [SMALL_STATE(4260)] = 140306, - [SMALL_STATE(4261)] = 140319, - [SMALL_STATE(4262)] = 140332, - [SMALL_STATE(4263)] = 140345, - [SMALL_STATE(4264)] = 140358, - [SMALL_STATE(4265)] = 140371, - [SMALL_STATE(4266)] = 140384, - [SMALL_STATE(4267)] = 140395, - [SMALL_STATE(4268)] = 140406, - [SMALL_STATE(4269)] = 140419, - [SMALL_STATE(4270)] = 140432, - [SMALL_STATE(4271)] = 140445, - [SMALL_STATE(4272)] = 140458, - [SMALL_STATE(4273)] = 140471, - [SMALL_STATE(4274)] = 140484, - [SMALL_STATE(4275)] = 140497, - [SMALL_STATE(4276)] = 140508, - [SMALL_STATE(4277)] = 140519, - [SMALL_STATE(4278)] = 140532, - [SMALL_STATE(4279)] = 140543, - [SMALL_STATE(4280)] = 140556, - [SMALL_STATE(4281)] = 140569, - [SMALL_STATE(4282)] = 140582, - [SMALL_STATE(4283)] = 140593, - [SMALL_STATE(4284)] = 140603, - [SMALL_STATE(4285)] = 140613, - [SMALL_STATE(4286)] = 140623, - [SMALL_STATE(4287)] = 140631, - [SMALL_STATE(4288)] = 140641, - [SMALL_STATE(4289)] = 140651, - [SMALL_STATE(4290)] = 140661, - [SMALL_STATE(4291)] = 140669, - [SMALL_STATE(4292)] = 140679, - [SMALL_STATE(4293)] = 140689, - [SMALL_STATE(4294)] = 140699, - [SMALL_STATE(4295)] = 140709, - [SMALL_STATE(4296)] = 140719, - [SMALL_STATE(4297)] = 140729, - [SMALL_STATE(4298)] = 140737, - [SMALL_STATE(4299)] = 140747, - [SMALL_STATE(4300)] = 140755, - [SMALL_STATE(4301)] = 140765, - [SMALL_STATE(4302)] = 140773, - [SMALL_STATE(4303)] = 140783, - [SMALL_STATE(4304)] = 140793, - [SMALL_STATE(4305)] = 140803, - [SMALL_STATE(4306)] = 140813, - [SMALL_STATE(4307)] = 140823, - [SMALL_STATE(4308)] = 140833, - [SMALL_STATE(4309)] = 140841, - [SMALL_STATE(4310)] = 140849, - [SMALL_STATE(4311)] = 140859, - [SMALL_STATE(4312)] = 140867, - [SMALL_STATE(4313)] = 140877, - [SMALL_STATE(4314)] = 140887, - [SMALL_STATE(4315)] = 140897, - [SMALL_STATE(4316)] = 140907, - [SMALL_STATE(4317)] = 140917, - [SMALL_STATE(4318)] = 140925, - [SMALL_STATE(4319)] = 140935, - [SMALL_STATE(4320)] = 140943, - [SMALL_STATE(4321)] = 140953, - [SMALL_STATE(4322)] = 140961, - [SMALL_STATE(4323)] = 140969, - [SMALL_STATE(4324)] = 140979, - [SMALL_STATE(4325)] = 140989, - [SMALL_STATE(4326)] = 140999, - [SMALL_STATE(4327)] = 141007, - [SMALL_STATE(4328)] = 141015, - [SMALL_STATE(4329)] = 141023, - [SMALL_STATE(4330)] = 141031, - [SMALL_STATE(4331)] = 141039, - [SMALL_STATE(4332)] = 141047, - [SMALL_STATE(4333)] = 141057, - [SMALL_STATE(4334)] = 141067, - [SMALL_STATE(4335)] = 141077, - [SMALL_STATE(4336)] = 141085, - [SMALL_STATE(4337)] = 141095, - [SMALL_STATE(4338)] = 141103, - [SMALL_STATE(4339)] = 141113, - [SMALL_STATE(4340)] = 141121, - [SMALL_STATE(4341)] = 141129, - [SMALL_STATE(4342)] = 141137, - [SMALL_STATE(4343)] = 141147, - [SMALL_STATE(4344)] = 141157, - [SMALL_STATE(4345)] = 141165, - [SMALL_STATE(4346)] = 141173, - [SMALL_STATE(4347)] = 141181, - [SMALL_STATE(4348)] = 141191, - [SMALL_STATE(4349)] = 141201, - [SMALL_STATE(4350)] = 141211, - [SMALL_STATE(4351)] = 141221, - [SMALL_STATE(4352)] = 141229, - [SMALL_STATE(4353)] = 141239, - [SMALL_STATE(4354)] = 141249, - [SMALL_STATE(4355)] = 141259, - [SMALL_STATE(4356)] = 141267, - [SMALL_STATE(4357)] = 141275, - [SMALL_STATE(4358)] = 141283, - [SMALL_STATE(4359)] = 141291, - [SMALL_STATE(4360)] = 141301, - [SMALL_STATE(4361)] = 141311, - [SMALL_STATE(4362)] = 141319, - [SMALL_STATE(4363)] = 141327, - [SMALL_STATE(4364)] = 141335, - [SMALL_STATE(4365)] = 141345, - [SMALL_STATE(4366)] = 141355, - [SMALL_STATE(4367)] = 141365, - [SMALL_STATE(4368)] = 141373, - [SMALL_STATE(4369)] = 141381, - [SMALL_STATE(4370)] = 141389, - [SMALL_STATE(4371)] = 141397, - [SMALL_STATE(4372)] = 141407, - [SMALL_STATE(4373)] = 141417, - [SMALL_STATE(4374)] = 141427, - [SMALL_STATE(4375)] = 141437, - [SMALL_STATE(4376)] = 141447, - [SMALL_STATE(4377)] = 141457, - [SMALL_STATE(4378)] = 141465, - [SMALL_STATE(4379)] = 141473, - [SMALL_STATE(4380)] = 141483, - [SMALL_STATE(4381)] = 141491, - [SMALL_STATE(4382)] = 141499, - [SMALL_STATE(4383)] = 141507, - [SMALL_STATE(4384)] = 141517, - [SMALL_STATE(4385)] = 141527, - [SMALL_STATE(4386)] = 141537, - [SMALL_STATE(4387)] = 141545, - [SMALL_STATE(4388)] = 141553, - [SMALL_STATE(4389)] = 141561, - [SMALL_STATE(4390)] = 141569, - [SMALL_STATE(4391)] = 141579, - [SMALL_STATE(4392)] = 141589, - [SMALL_STATE(4393)] = 141599, - [SMALL_STATE(4394)] = 141607, - [SMALL_STATE(4395)] = 141615, - [SMALL_STATE(4396)] = 141623, - [SMALL_STATE(4397)] = 141633, - [SMALL_STATE(4398)] = 141643, - [SMALL_STATE(4399)] = 141651, - [SMALL_STATE(4400)] = 141661, - [SMALL_STATE(4401)] = 141671, - [SMALL_STATE(4402)] = 141681, - [SMALL_STATE(4403)] = 141691, - [SMALL_STATE(4404)] = 141701, - [SMALL_STATE(4405)] = 141709, - [SMALL_STATE(4406)] = 141719, - [SMALL_STATE(4407)] = 141729, - [SMALL_STATE(4408)] = 141739, - [SMALL_STATE(4409)] = 141749, - [SMALL_STATE(4410)] = 141757, - [SMALL_STATE(4411)] = 141767, - [SMALL_STATE(4412)] = 141775, - [SMALL_STATE(4413)] = 141785, - [SMALL_STATE(4414)] = 141795, - [SMALL_STATE(4415)] = 141803, - [SMALL_STATE(4416)] = 141811, - [SMALL_STATE(4417)] = 141821, - [SMALL_STATE(4418)] = 141831, - [SMALL_STATE(4419)] = 141839, - [SMALL_STATE(4420)] = 141849, - [SMALL_STATE(4421)] = 141859, - [SMALL_STATE(4422)] = 141869, - [SMALL_STATE(4423)] = 141877, - [SMALL_STATE(4424)] = 141887, - [SMALL_STATE(4425)] = 141895, - [SMALL_STATE(4426)] = 141903, - [SMALL_STATE(4427)] = 141911, - [SMALL_STATE(4428)] = 141919, - [SMALL_STATE(4429)] = 141927, - [SMALL_STATE(4430)] = 141935, - [SMALL_STATE(4431)] = 141943, - [SMALL_STATE(4432)] = 141953, - [SMALL_STATE(4433)] = 141963, - [SMALL_STATE(4434)] = 141973, - [SMALL_STATE(4435)] = 141983, - [SMALL_STATE(4436)] = 141993, - [SMALL_STATE(4437)] = 142003, - [SMALL_STATE(4438)] = 142013, - [SMALL_STATE(4439)] = 142021, - [SMALL_STATE(4440)] = 142029, - [SMALL_STATE(4441)] = 142039, - [SMALL_STATE(4442)] = 142049, - [SMALL_STATE(4443)] = 142059, - [SMALL_STATE(4444)] = 142069, - [SMALL_STATE(4445)] = 142079, - [SMALL_STATE(4446)] = 142089, - [SMALL_STATE(4447)] = 142097, - [SMALL_STATE(4448)] = 142107, - [SMALL_STATE(4449)] = 142117, - [SMALL_STATE(4450)] = 142127, - [SMALL_STATE(4451)] = 142135, - [SMALL_STATE(4452)] = 142143, - [SMALL_STATE(4453)] = 142153, - [SMALL_STATE(4454)] = 142161, - [SMALL_STATE(4455)] = 142171, - [SMALL_STATE(4456)] = 142181, - [SMALL_STATE(4457)] = 142189, - [SMALL_STATE(4458)] = 142199, - [SMALL_STATE(4459)] = 142209, - [SMALL_STATE(4460)] = 142219, - [SMALL_STATE(4461)] = 142229, - [SMALL_STATE(4462)] = 142237, - [SMALL_STATE(4463)] = 142247, - [SMALL_STATE(4464)] = 142255, - [SMALL_STATE(4465)] = 142265, - [SMALL_STATE(4466)] = 142273, - [SMALL_STATE(4467)] = 142283, - [SMALL_STATE(4468)] = 142293, - [SMALL_STATE(4469)] = 142301, - [SMALL_STATE(4470)] = 142311, - [SMALL_STATE(4471)] = 142319, - [SMALL_STATE(4472)] = 142327, - [SMALL_STATE(4473)] = 142337, - [SMALL_STATE(4474)] = 142347, - [SMALL_STATE(4475)] = 142357, - [SMALL_STATE(4476)] = 142367, - [SMALL_STATE(4477)] = 142377, - [SMALL_STATE(4478)] = 142387, - [SMALL_STATE(4479)] = 142397, - [SMALL_STATE(4480)] = 142407, - [SMALL_STATE(4481)] = 142417, - [SMALL_STATE(4482)] = 142427, - [SMALL_STATE(4483)] = 142437, - [SMALL_STATE(4484)] = 142447, - [SMALL_STATE(4485)] = 142457, - [SMALL_STATE(4486)] = 142467, - [SMALL_STATE(4487)] = 142477, - [SMALL_STATE(4488)] = 142487, - [SMALL_STATE(4489)] = 142497, - [SMALL_STATE(4490)] = 142507, - [SMALL_STATE(4491)] = 142517, - [SMALL_STATE(4492)] = 142527, - [SMALL_STATE(4493)] = 142537, - [SMALL_STATE(4494)] = 142547, - [SMALL_STATE(4495)] = 142557, - [SMALL_STATE(4496)] = 142567, - [SMALL_STATE(4497)] = 142577, - [SMALL_STATE(4498)] = 142587, - [SMALL_STATE(4499)] = 142597, - [SMALL_STATE(4500)] = 142607, - [SMALL_STATE(4501)] = 142617, - [SMALL_STATE(4502)] = 142625, - [SMALL_STATE(4503)] = 142635, - [SMALL_STATE(4504)] = 142645, - [SMALL_STATE(4505)] = 142655, - [SMALL_STATE(4506)] = 142665, - [SMALL_STATE(4507)] = 142675, - [SMALL_STATE(4508)] = 142683, - [SMALL_STATE(4509)] = 142693, - [SMALL_STATE(4510)] = 142703, - [SMALL_STATE(4511)] = 142713, - [SMALL_STATE(4512)] = 142721, - [SMALL_STATE(4513)] = 142729, - [SMALL_STATE(4514)] = 142739, - [SMALL_STATE(4515)] = 142747, - [SMALL_STATE(4516)] = 142757, - [SMALL_STATE(4517)] = 142767, - [SMALL_STATE(4518)] = 142777, - [SMALL_STATE(4519)] = 142787, - [SMALL_STATE(4520)] = 142797, - [SMALL_STATE(4521)] = 142807, - [SMALL_STATE(4522)] = 142817, - [SMALL_STATE(4523)] = 142825, - [SMALL_STATE(4524)] = 142835, - [SMALL_STATE(4525)] = 142843, - [SMALL_STATE(4526)] = 142851, - [SMALL_STATE(4527)] = 142861, - [SMALL_STATE(4528)] = 142871, - [SMALL_STATE(4529)] = 142879, - [SMALL_STATE(4530)] = 142889, - [SMALL_STATE(4531)] = 142899, - [SMALL_STATE(4532)] = 142909, - [SMALL_STATE(4533)] = 142917, - [SMALL_STATE(4534)] = 142925, - [SMALL_STATE(4535)] = 142935, - [SMALL_STATE(4536)] = 142945, - [SMALL_STATE(4537)] = 142955, - [SMALL_STATE(4538)] = 142965, - [SMALL_STATE(4539)] = 142975, - [SMALL_STATE(4540)] = 142985, - [SMALL_STATE(4541)] = 142995, - [SMALL_STATE(4542)] = 143005, - [SMALL_STATE(4543)] = 143015, - [SMALL_STATE(4544)] = 143025, - [SMALL_STATE(4545)] = 143033, - [SMALL_STATE(4546)] = 143043, - [SMALL_STATE(4547)] = 143053, - [SMALL_STATE(4548)] = 143061, - [SMALL_STATE(4549)] = 143071, - [SMALL_STATE(4550)] = 143081, - [SMALL_STATE(4551)] = 143091, - [SMALL_STATE(4552)] = 143101, - [SMALL_STATE(4553)] = 143111, - [SMALL_STATE(4554)] = 143121, - [SMALL_STATE(4555)] = 143131, - [SMALL_STATE(4556)] = 143139, - [SMALL_STATE(4557)] = 143147, - [SMALL_STATE(4558)] = 143155, - [SMALL_STATE(4559)] = 143165, - [SMALL_STATE(4560)] = 143175, - [SMALL_STATE(4561)] = 143185, - [SMALL_STATE(4562)] = 143195, - [SMALL_STATE(4563)] = 143205, - [SMALL_STATE(4564)] = 143215, - [SMALL_STATE(4565)] = 143225, - [SMALL_STATE(4566)] = 143235, - [SMALL_STATE(4567)] = 143245, - [SMALL_STATE(4568)] = 143255, - [SMALL_STATE(4569)] = 143265, - [SMALL_STATE(4570)] = 143275, - [SMALL_STATE(4571)] = 143285, - [SMALL_STATE(4572)] = 143293, - [SMALL_STATE(4573)] = 143301, - [SMALL_STATE(4574)] = 143311, - [SMALL_STATE(4575)] = 143321, - [SMALL_STATE(4576)] = 143331, - [SMALL_STATE(4577)] = 143341, - [SMALL_STATE(4578)] = 143351, - [SMALL_STATE(4579)] = 143361, - [SMALL_STATE(4580)] = 143371, - [SMALL_STATE(4581)] = 143381, - [SMALL_STATE(4582)] = 143391, - [SMALL_STATE(4583)] = 143399, - [SMALL_STATE(4584)] = 143409, - [SMALL_STATE(4585)] = 143419, - [SMALL_STATE(4586)] = 143427, - [SMALL_STATE(4587)] = 143435, - [SMALL_STATE(4588)] = 143443, - [SMALL_STATE(4589)] = 143451, - [SMALL_STATE(4590)] = 143461, - [SMALL_STATE(4591)] = 143471, - [SMALL_STATE(4592)] = 143481, - [SMALL_STATE(4593)] = 143491, - [SMALL_STATE(4594)] = 143501, - [SMALL_STATE(4595)] = 143511, - [SMALL_STATE(4596)] = 143521, - [SMALL_STATE(4597)] = 143531, - [SMALL_STATE(4598)] = 143541, - [SMALL_STATE(4599)] = 143551, - [SMALL_STATE(4600)] = 143561, - [SMALL_STATE(4601)] = 143571, - [SMALL_STATE(4602)] = 143579, - [SMALL_STATE(4603)] = 143589, - [SMALL_STATE(4604)] = 143599, - [SMALL_STATE(4605)] = 143609, - [SMALL_STATE(4606)] = 143617, - [SMALL_STATE(4607)] = 143627, - [SMALL_STATE(4608)] = 143637, - [SMALL_STATE(4609)] = 143647, - [SMALL_STATE(4610)] = 143655, - [SMALL_STATE(4611)] = 143665, - [SMALL_STATE(4612)] = 143675, - [SMALL_STATE(4613)] = 143683, - [SMALL_STATE(4614)] = 143693, - [SMALL_STATE(4615)] = 143703, - [SMALL_STATE(4616)] = 143711, - [SMALL_STATE(4617)] = 143721, - [SMALL_STATE(4618)] = 143731, - [SMALL_STATE(4619)] = 143741, - [SMALL_STATE(4620)] = 143751, - [SMALL_STATE(4621)] = 143761, - [SMALL_STATE(4622)] = 143771, - [SMALL_STATE(4623)] = 143781, - [SMALL_STATE(4624)] = 143791, - [SMALL_STATE(4625)] = 143801, - [SMALL_STATE(4626)] = 143809, - [SMALL_STATE(4627)] = 143819, - [SMALL_STATE(4628)] = 143827, - [SMALL_STATE(4629)] = 143835, - [SMALL_STATE(4630)] = 143843, - [SMALL_STATE(4631)] = 143851, - [SMALL_STATE(4632)] = 143861, - [SMALL_STATE(4633)] = 143871, - [SMALL_STATE(4634)] = 143881, - [SMALL_STATE(4635)] = 143891, - [SMALL_STATE(4636)] = 143901, - [SMALL_STATE(4637)] = 143909, - [SMALL_STATE(4638)] = 143919, - [SMALL_STATE(4639)] = 143929, - [SMALL_STATE(4640)] = 143939, - [SMALL_STATE(4641)] = 143949, - [SMALL_STATE(4642)] = 143959, - [SMALL_STATE(4643)] = 143967, - [SMALL_STATE(4644)] = 143975, - [SMALL_STATE(4645)] = 143982, - [SMALL_STATE(4646)] = 143989, - [SMALL_STATE(4647)] = 143996, - [SMALL_STATE(4648)] = 144003, - [SMALL_STATE(4649)] = 144010, - [SMALL_STATE(4650)] = 144017, - [SMALL_STATE(4651)] = 144024, - [SMALL_STATE(4652)] = 144031, - [SMALL_STATE(4653)] = 144038, - [SMALL_STATE(4654)] = 144045, - [SMALL_STATE(4655)] = 144052, - [SMALL_STATE(4656)] = 144059, - [SMALL_STATE(4657)] = 144066, - [SMALL_STATE(4658)] = 144073, - [SMALL_STATE(4659)] = 144080, - [SMALL_STATE(4660)] = 144087, - [SMALL_STATE(4661)] = 144094, - [SMALL_STATE(4662)] = 144101, - [SMALL_STATE(4663)] = 144108, - [SMALL_STATE(4664)] = 144115, - [SMALL_STATE(4665)] = 144122, - [SMALL_STATE(4666)] = 144129, - [SMALL_STATE(4667)] = 144136, - [SMALL_STATE(4668)] = 144143, - [SMALL_STATE(4669)] = 144150, - [SMALL_STATE(4670)] = 144157, - [SMALL_STATE(4671)] = 144164, - [SMALL_STATE(4672)] = 144171, - [SMALL_STATE(4673)] = 144178, - [SMALL_STATE(4674)] = 144185, - [SMALL_STATE(4675)] = 144192, - [SMALL_STATE(4676)] = 144199, - [SMALL_STATE(4677)] = 144206, - [SMALL_STATE(4678)] = 144213, - [SMALL_STATE(4679)] = 144220, - [SMALL_STATE(4680)] = 144227, - [SMALL_STATE(4681)] = 144234, - [SMALL_STATE(4682)] = 144241, - [SMALL_STATE(4683)] = 144248, - [SMALL_STATE(4684)] = 144255, - [SMALL_STATE(4685)] = 144262, - [SMALL_STATE(4686)] = 144269, - [SMALL_STATE(4687)] = 144276, - [SMALL_STATE(4688)] = 144283, - [SMALL_STATE(4689)] = 144290, - [SMALL_STATE(4690)] = 144297, - [SMALL_STATE(4691)] = 144304, - [SMALL_STATE(4692)] = 144311, - [SMALL_STATE(4693)] = 144318, - [SMALL_STATE(4694)] = 144325, - [SMALL_STATE(4695)] = 144332, - [SMALL_STATE(4696)] = 144339, - [SMALL_STATE(4697)] = 144346, - [SMALL_STATE(4698)] = 144353, - [SMALL_STATE(4699)] = 144360, - [SMALL_STATE(4700)] = 144367, - [SMALL_STATE(4701)] = 144374, - [SMALL_STATE(4702)] = 144381, - [SMALL_STATE(4703)] = 144388, - [SMALL_STATE(4704)] = 144395, - [SMALL_STATE(4705)] = 144402, - [SMALL_STATE(4706)] = 144409, - [SMALL_STATE(4707)] = 144416, - [SMALL_STATE(4708)] = 144423, - [SMALL_STATE(4709)] = 144430, - [SMALL_STATE(4710)] = 144437, - [SMALL_STATE(4711)] = 144444, - [SMALL_STATE(4712)] = 144451, - [SMALL_STATE(4713)] = 144458, - [SMALL_STATE(4714)] = 144465, - [SMALL_STATE(4715)] = 144472, - [SMALL_STATE(4716)] = 144479, - [SMALL_STATE(4717)] = 144486, - [SMALL_STATE(4718)] = 144493, - [SMALL_STATE(4719)] = 144500, - [SMALL_STATE(4720)] = 144507, - [SMALL_STATE(4721)] = 144514, - [SMALL_STATE(4722)] = 144521, - [SMALL_STATE(4723)] = 144528, - [SMALL_STATE(4724)] = 144535, - [SMALL_STATE(4725)] = 144542, - [SMALL_STATE(4726)] = 144549, - [SMALL_STATE(4727)] = 144556, - [SMALL_STATE(4728)] = 144563, - [SMALL_STATE(4729)] = 144570, - [SMALL_STATE(4730)] = 144577, - [SMALL_STATE(4731)] = 144584, - [SMALL_STATE(4732)] = 144591, - [SMALL_STATE(4733)] = 144598, - [SMALL_STATE(4734)] = 144605, - [SMALL_STATE(4735)] = 144612, - [SMALL_STATE(4736)] = 144619, - [SMALL_STATE(4737)] = 144626, - [SMALL_STATE(4738)] = 144633, - [SMALL_STATE(4739)] = 144640, - [SMALL_STATE(4740)] = 144647, - [SMALL_STATE(4741)] = 144654, - [SMALL_STATE(4742)] = 144661, - [SMALL_STATE(4743)] = 144668, - [SMALL_STATE(4744)] = 144675, - [SMALL_STATE(4745)] = 144682, - [SMALL_STATE(4746)] = 144689, - [SMALL_STATE(4747)] = 144696, - [SMALL_STATE(4748)] = 144703, - [SMALL_STATE(4749)] = 144710, - [SMALL_STATE(4750)] = 144717, - [SMALL_STATE(4751)] = 144724, - [SMALL_STATE(4752)] = 144731, - [SMALL_STATE(4753)] = 144738, - [SMALL_STATE(4754)] = 144745, - [SMALL_STATE(4755)] = 144752, - [SMALL_STATE(4756)] = 144759, - [SMALL_STATE(4757)] = 144766, - [SMALL_STATE(4758)] = 144773, - [SMALL_STATE(4759)] = 144780, - [SMALL_STATE(4760)] = 144787, - [SMALL_STATE(4761)] = 144794, - [SMALL_STATE(4762)] = 144801, - [SMALL_STATE(4763)] = 144808, - [SMALL_STATE(4764)] = 144815, - [SMALL_STATE(4765)] = 144822, - [SMALL_STATE(4766)] = 144829, - [SMALL_STATE(4767)] = 144836, - [SMALL_STATE(4768)] = 144843, - [SMALL_STATE(4769)] = 144850, - [SMALL_STATE(4770)] = 144857, - [SMALL_STATE(4771)] = 144864, - [SMALL_STATE(4772)] = 144871, - [SMALL_STATE(4773)] = 144878, - [SMALL_STATE(4774)] = 144885, - [SMALL_STATE(4775)] = 144892, - [SMALL_STATE(4776)] = 144899, - [SMALL_STATE(4777)] = 144906, - [SMALL_STATE(4778)] = 144913, - [SMALL_STATE(4779)] = 144920, - [SMALL_STATE(4780)] = 144927, - [SMALL_STATE(4781)] = 144934, - [SMALL_STATE(4782)] = 144941, - [SMALL_STATE(4783)] = 144948, - [SMALL_STATE(4784)] = 144955, - [SMALL_STATE(4785)] = 144962, - [SMALL_STATE(4786)] = 144969, - [SMALL_STATE(4787)] = 144976, - [SMALL_STATE(4788)] = 144983, - [SMALL_STATE(4789)] = 144990, - [SMALL_STATE(4790)] = 144997, - [SMALL_STATE(4791)] = 145004, - [SMALL_STATE(4792)] = 145011, - [SMALL_STATE(4793)] = 145018, - [SMALL_STATE(4794)] = 145025, - [SMALL_STATE(4795)] = 145032, - [SMALL_STATE(4796)] = 145039, - [SMALL_STATE(4797)] = 145046, - [SMALL_STATE(4798)] = 145053, - [SMALL_STATE(4799)] = 145060, - [SMALL_STATE(4800)] = 145067, - [SMALL_STATE(4801)] = 145074, - [SMALL_STATE(4802)] = 145081, - [SMALL_STATE(4803)] = 145088, - [SMALL_STATE(4804)] = 145095, - [SMALL_STATE(4805)] = 145102, - [SMALL_STATE(4806)] = 145109, - [SMALL_STATE(4807)] = 145116, - [SMALL_STATE(4808)] = 145123, - [SMALL_STATE(4809)] = 145130, - [SMALL_STATE(4810)] = 145137, - [SMALL_STATE(4811)] = 145144, - [SMALL_STATE(4812)] = 145151, - [SMALL_STATE(4813)] = 145158, - [SMALL_STATE(4814)] = 145165, - [SMALL_STATE(4815)] = 145172, - [SMALL_STATE(4816)] = 145179, - [SMALL_STATE(4817)] = 145186, - [SMALL_STATE(4818)] = 145193, - [SMALL_STATE(4819)] = 145200, - [SMALL_STATE(4820)] = 145207, - [SMALL_STATE(4821)] = 145214, - [SMALL_STATE(4822)] = 145221, - [SMALL_STATE(4823)] = 145228, - [SMALL_STATE(4824)] = 145235, - [SMALL_STATE(4825)] = 145242, - [SMALL_STATE(4826)] = 145249, - [SMALL_STATE(4827)] = 145256, - [SMALL_STATE(4828)] = 145263, - [SMALL_STATE(4829)] = 145270, - [SMALL_STATE(4830)] = 145277, - [SMALL_STATE(4831)] = 145284, - [SMALL_STATE(4832)] = 145291, - [SMALL_STATE(4833)] = 145298, - [SMALL_STATE(4834)] = 145305, - [SMALL_STATE(4835)] = 145312, - [SMALL_STATE(4836)] = 145319, - [SMALL_STATE(4837)] = 145326, - [SMALL_STATE(4838)] = 145333, - [SMALL_STATE(4839)] = 145340, - [SMALL_STATE(4840)] = 145347, - [SMALL_STATE(4841)] = 145354, - [SMALL_STATE(4842)] = 145361, - [SMALL_STATE(4843)] = 145368, - [SMALL_STATE(4844)] = 145375, - [SMALL_STATE(4845)] = 145382, - [SMALL_STATE(4846)] = 145389, - [SMALL_STATE(4847)] = 145396, - [SMALL_STATE(4848)] = 145403, - [SMALL_STATE(4849)] = 145410, - [SMALL_STATE(4850)] = 145417, - [SMALL_STATE(4851)] = 145424, - [SMALL_STATE(4852)] = 145431, - [SMALL_STATE(4853)] = 145438, - [SMALL_STATE(4854)] = 145445, - [SMALL_STATE(4855)] = 145452, - [SMALL_STATE(4856)] = 145459, - [SMALL_STATE(4857)] = 145466, - [SMALL_STATE(4858)] = 145473, - [SMALL_STATE(4859)] = 145480, - [SMALL_STATE(4860)] = 145487, - [SMALL_STATE(4861)] = 145494, - [SMALL_STATE(4862)] = 145501, - [SMALL_STATE(4863)] = 145508, - [SMALL_STATE(4864)] = 145515, - [SMALL_STATE(4865)] = 145522, - [SMALL_STATE(4866)] = 145529, - [SMALL_STATE(4867)] = 145536, - [SMALL_STATE(4868)] = 145543, - [SMALL_STATE(4869)] = 145550, - [SMALL_STATE(4870)] = 145557, - [SMALL_STATE(4871)] = 145564, - [SMALL_STATE(4872)] = 145571, - [SMALL_STATE(4873)] = 145578, - [SMALL_STATE(4874)] = 145585, - [SMALL_STATE(4875)] = 145592, - [SMALL_STATE(4876)] = 145599, - [SMALL_STATE(4877)] = 145606, - [SMALL_STATE(4878)] = 145613, - [SMALL_STATE(4879)] = 145620, - [SMALL_STATE(4880)] = 145627, - [SMALL_STATE(4881)] = 145634, - [SMALL_STATE(4882)] = 145641, - [SMALL_STATE(4883)] = 145648, - [SMALL_STATE(4884)] = 145655, - [SMALL_STATE(4885)] = 145662, - [SMALL_STATE(4886)] = 145669, - [SMALL_STATE(4887)] = 145676, - [SMALL_STATE(4888)] = 145683, - [SMALL_STATE(4889)] = 145690, - [SMALL_STATE(4890)] = 145697, - [SMALL_STATE(4891)] = 145704, - [SMALL_STATE(4892)] = 145711, - [SMALL_STATE(4893)] = 145718, - [SMALL_STATE(4894)] = 145725, - [SMALL_STATE(4895)] = 145732, - [SMALL_STATE(4896)] = 145739, - [SMALL_STATE(4897)] = 145746, - [SMALL_STATE(4898)] = 145753, - [SMALL_STATE(4899)] = 145760, - [SMALL_STATE(4900)] = 145767, - [SMALL_STATE(4901)] = 145774, - [SMALL_STATE(4902)] = 145781, - [SMALL_STATE(4903)] = 145788, - [SMALL_STATE(4904)] = 145795, - [SMALL_STATE(4905)] = 145802, - [SMALL_STATE(4906)] = 145809, - [SMALL_STATE(4907)] = 145816, - [SMALL_STATE(4908)] = 145823, - [SMALL_STATE(4909)] = 145830, - [SMALL_STATE(4910)] = 145837, - [SMALL_STATE(4911)] = 145844, - [SMALL_STATE(4912)] = 145851, - [SMALL_STATE(4913)] = 145858, - [SMALL_STATE(4914)] = 145865, - [SMALL_STATE(4915)] = 145872, - [SMALL_STATE(4916)] = 145879, - [SMALL_STATE(4917)] = 145886, - [SMALL_STATE(4918)] = 145893, - [SMALL_STATE(4919)] = 145900, - [SMALL_STATE(4920)] = 145907, - [SMALL_STATE(4921)] = 145914, - [SMALL_STATE(4922)] = 145921, - [SMALL_STATE(4923)] = 145928, - [SMALL_STATE(4924)] = 145935, - [SMALL_STATE(4925)] = 145942, - [SMALL_STATE(4926)] = 145949, - [SMALL_STATE(4927)] = 145956, - [SMALL_STATE(4928)] = 145963, - [SMALL_STATE(4929)] = 145970, - [SMALL_STATE(4930)] = 145977, - [SMALL_STATE(4931)] = 145984, - [SMALL_STATE(4932)] = 145991, - [SMALL_STATE(4933)] = 145998, - [SMALL_STATE(4934)] = 146005, - [SMALL_STATE(4935)] = 146012, - [SMALL_STATE(4936)] = 146019, - [SMALL_STATE(4937)] = 146026, - [SMALL_STATE(4938)] = 146033, - [SMALL_STATE(4939)] = 146040, - [SMALL_STATE(4940)] = 146047, - [SMALL_STATE(4941)] = 146054, - [SMALL_STATE(4942)] = 146061, - [SMALL_STATE(4943)] = 146068, - [SMALL_STATE(4944)] = 146075, - [SMALL_STATE(4945)] = 146082, - [SMALL_STATE(4946)] = 146089, - [SMALL_STATE(4947)] = 146096, - [SMALL_STATE(4948)] = 146103, - [SMALL_STATE(4949)] = 146110, - [SMALL_STATE(4950)] = 146117, - [SMALL_STATE(4951)] = 146124, - [SMALL_STATE(4952)] = 146131, - [SMALL_STATE(4953)] = 146138, - [SMALL_STATE(4954)] = 146145, - [SMALL_STATE(4955)] = 146152, - [SMALL_STATE(4956)] = 146159, - [SMALL_STATE(4957)] = 146166, - [SMALL_STATE(4958)] = 146173, - [SMALL_STATE(4959)] = 146180, - [SMALL_STATE(4960)] = 146187, - [SMALL_STATE(4961)] = 146194, - [SMALL_STATE(4962)] = 146201, - [SMALL_STATE(4963)] = 146208, - [SMALL_STATE(4964)] = 146215, - [SMALL_STATE(4965)] = 146222, - [SMALL_STATE(4966)] = 146229, - [SMALL_STATE(4967)] = 146236, - [SMALL_STATE(4968)] = 146243, - [SMALL_STATE(4969)] = 146250, - [SMALL_STATE(4970)] = 146257, - [SMALL_STATE(4971)] = 146264, - [SMALL_STATE(4972)] = 146271, - [SMALL_STATE(4973)] = 146278, - [SMALL_STATE(4974)] = 146285, - [SMALL_STATE(4975)] = 146292, - [SMALL_STATE(4976)] = 146299, - [SMALL_STATE(4977)] = 146306, - [SMALL_STATE(4978)] = 146313, - [SMALL_STATE(4979)] = 146320, - [SMALL_STATE(4980)] = 146327, - [SMALL_STATE(4981)] = 146334, - [SMALL_STATE(4982)] = 146341, - [SMALL_STATE(4983)] = 146348, - [SMALL_STATE(4984)] = 146355, - [SMALL_STATE(4985)] = 146362, - [SMALL_STATE(4986)] = 146369, - [SMALL_STATE(4987)] = 146376, - [SMALL_STATE(4988)] = 146383, - [SMALL_STATE(4989)] = 146390, - [SMALL_STATE(4990)] = 146397, - [SMALL_STATE(4991)] = 146404, - [SMALL_STATE(4992)] = 146411, - [SMALL_STATE(4993)] = 146418, - [SMALL_STATE(4994)] = 146425, - [SMALL_STATE(4995)] = 146432, - [SMALL_STATE(4996)] = 146439, - [SMALL_STATE(4997)] = 146446, - [SMALL_STATE(4998)] = 146453, - [SMALL_STATE(4999)] = 146460, - [SMALL_STATE(5000)] = 146467, - [SMALL_STATE(5001)] = 146474, - [SMALL_STATE(5002)] = 146481, - [SMALL_STATE(5003)] = 146488, - [SMALL_STATE(5004)] = 146495, - [SMALL_STATE(5005)] = 146502, - [SMALL_STATE(5006)] = 146509, - [SMALL_STATE(5007)] = 146516, - [SMALL_STATE(5008)] = 146523, - [SMALL_STATE(5009)] = 146530, - [SMALL_STATE(5010)] = 146537, - [SMALL_STATE(5011)] = 146544, - [SMALL_STATE(5012)] = 146551, - [SMALL_STATE(5013)] = 146558, - [SMALL_STATE(5014)] = 146565, - [SMALL_STATE(5015)] = 146572, - [SMALL_STATE(5016)] = 146579, - [SMALL_STATE(5017)] = 146586, - [SMALL_STATE(5018)] = 146593, - [SMALL_STATE(5019)] = 146600, - [SMALL_STATE(5020)] = 146607, - [SMALL_STATE(5021)] = 146614, - [SMALL_STATE(5022)] = 146621, + [SMALL_STATE(2210)] = 0, + [SMALL_STATE(2211)] = 95, + [SMALL_STATE(2212)] = 188, + [SMALL_STATE(2213)] = 263, + [SMALL_STATE(2214)] = 358, + [SMALL_STATE(2215)] = 451, + [SMALL_STATE(2216)] = 544, + [SMALL_STATE(2217)] = 619, + [SMALL_STATE(2218)] = 712, + [SMALL_STATE(2219)] = 805, + [SMALL_STATE(2220)] = 902, + [SMALL_STATE(2221)] = 999, + [SMALL_STATE(2222)] = 1092, + [SMALL_STATE(2223)] = 1185, + [SMALL_STATE(2224)] = 1278, + [SMALL_STATE(2225)] = 1371, + [SMALL_STATE(2226)] = 1464, + [SMALL_STATE(2227)] = 1559, + [SMALL_STATE(2228)] = 1652, + [SMALL_STATE(2229)] = 1745, + [SMALL_STATE(2230)] = 1838, + [SMALL_STATE(2231)] = 1931, + [SMALL_STATE(2232)] = 2024, + [SMALL_STATE(2233)] = 2119, + [SMALL_STATE(2234)] = 2214, + [SMALL_STATE(2235)] = 2289, + [SMALL_STATE(2236)] = 2382, + [SMALL_STATE(2237)] = 2475, + [SMALL_STATE(2238)] = 2572, + [SMALL_STATE(2239)] = 2665, + [SMALL_STATE(2240)] = 2758, + [SMALL_STATE(2241)] = 2851, + [SMALL_STATE(2242)] = 2946, + [SMALL_STATE(2243)] = 3021, + [SMALL_STATE(2244)] = 3114, + [SMALL_STATE(2245)] = 3207, + [SMALL_STATE(2246)] = 3302, + [SMALL_STATE(2247)] = 3397, + [SMALL_STATE(2248)] = 3490, + [SMALL_STATE(2249)] = 3583, + [SMALL_STATE(2250)] = 3678, + [SMALL_STATE(2251)] = 3753, + [SMALL_STATE(2252)] = 3828, + [SMALL_STATE(2253)] = 3903, + [SMALL_STATE(2254)] = 3998, + [SMALL_STATE(2255)] = 4092, + [SMALL_STATE(2256)] = 4166, + [SMALL_STATE(2257)] = 4258, + [SMALL_STATE(2258)] = 4388, + [SMALL_STATE(2259)] = 4518, + [SMALL_STATE(2260)] = 4648, + [SMALL_STATE(2261)] = 4778, + [SMALL_STATE(2262)] = 4870, + [SMALL_STATE(2263)] = 5000, + [SMALL_STATE(2264)] = 5130, + [SMALL_STATE(2265)] = 5260, + [SMALL_STATE(2266)] = 5356, + [SMALL_STATE(2267)] = 5486, + [SMALL_STATE(2268)] = 5616, + [SMALL_STATE(2269)] = 5746, + [SMALL_STATE(2270)] = 5824, + [SMALL_STATE(2271)] = 5954, + [SMALL_STATE(2272)] = 6028, + [SMALL_STATE(2273)] = 6120, + [SMALL_STATE(2274)] = 6250, + [SMALL_STATE(2275)] = 6350, + [SMALL_STATE(2276)] = 6446, + [SMALL_STATE(2277)] = 6576, + [SMALL_STATE(2278)] = 6706, + [SMALL_STATE(2279)] = 6802, + [SMALL_STATE(2280)] = 6932, + [SMALL_STATE(2281)] = 7024, + [SMALL_STATE(2282)] = 7154, + [SMALL_STATE(2283)] = 7284, + [SMALL_STATE(2284)] = 7414, + [SMALL_STATE(2285)] = 7544, + [SMALL_STATE(2286)] = 7674, + [SMALL_STATE(2287)] = 7766, + [SMALL_STATE(2288)] = 7862, + [SMALL_STATE(2289)] = 7992, + [SMALL_STATE(2290)] = 8122, + [SMALL_STATE(2291)] = 8252, + [SMALL_STATE(2292)] = 8382, + [SMALL_STATE(2293)] = 8512, + [SMALL_STATE(2294)] = 8642, + [SMALL_STATE(2295)] = 8772, + [SMALL_STATE(2296)] = 8902, + [SMALL_STATE(2297)] = 9032, + [SMALL_STATE(2298)] = 9124, + [SMALL_STATE(2299)] = 9254, + [SMALL_STATE(2300)] = 9384, + [SMALL_STATE(2301)] = 9476, + [SMALL_STATE(2302)] = 9606, + [SMALL_STATE(2303)] = 9736, + [SMALL_STATE(2304)] = 9829, + [SMALL_STATE(2305)] = 9912, + [SMALL_STATE(2306)] = 10003, + [SMALL_STATE(2307)] = 10094, + [SMALL_STATE(2308)] = 10185, + [SMALL_STATE(2309)] = 10276, + [SMALL_STATE(2310)] = 10367, + [SMALL_STATE(2311)] = 10464, + [SMALL_STATE(2312)] = 10555, + [SMALL_STATE(2313)] = 10646, + [SMALL_STATE(2314)] = 10729, + [SMALL_STATE(2315)] = 10812, + [SMALL_STATE(2316)] = 10903, + [SMALL_STATE(2317)] = 10998, + [SMALL_STATE(2318)] = 11081, + [SMALL_STATE(2319)] = 11176, + [SMALL_STATE(2320)] = 11261, + [SMALL_STATE(2321)] = 11356, + [SMALL_STATE(2322)] = 11429, + [SMALL_STATE(2323)] = 11502, + [SMALL_STATE(2324)] = 11593, + [SMALL_STATE(2325)] = 11678, + [SMALL_STATE(2326)] = 11769, + [SMALL_STATE(2327)] = 11860, + [SMALL_STATE(2328)] = 11943, + [SMALL_STATE(2329)] = 12026, + [SMALL_STATE(2330)] = 12123, + [SMALL_STATE(2331)] = 12214, + [SMALL_STATE(2332)] = 12302, + [SMALL_STATE(2333)] = 12392, + [SMALL_STATE(2334)] = 12474, + [SMALL_STATE(2335)] = 12600, + [SMALL_STATE(2336)] = 12678, + [SMALL_STATE(2337)] = 12758, + [SMALL_STATE(2338)] = 12838, + [SMALL_STATE(2339)] = 12964, + [SMALL_STATE(2340)] = 13048, + [SMALL_STATE(2341)] = 13126, + [SMALL_STATE(2342)] = 13252, + [SMALL_STATE(2343)] = 13334, + [SMALL_STATE(2344)] = 13460, + [SMALL_STATE(2345)] = 13544, + [SMALL_STATE(2346)] = 13670, + [SMALL_STATE(2347)] = 13796, + [SMALL_STATE(2348)] = 13890, + [SMALL_STATE(2349)] = 13984, + [SMALL_STATE(2350)] = 14066, + [SMALL_STATE(2351)] = 14192, + [SMALL_STATE(2352)] = 14274, + [SMALL_STATE(2353)] = 14358, + [SMALL_STATE(2354)] = 14436, + [SMALL_STATE(2355)] = 14516, + [SMALL_STATE(2356)] = 14642, + [SMALL_STATE(2357)] = 14724, + [SMALL_STATE(2358)] = 14850, + [SMALL_STATE(2359)] = 14976, + [SMALL_STATE(2360)] = 15070, + [SMALL_STATE(2361)] = 15154, + [SMALL_STATE(2362)] = 15242, + [SMALL_STATE(2363)] = 15324, + [SMALL_STATE(2364)] = 15414, + [SMALL_STATE(2365)] = 15508, + [SMALL_STATE(2366)] = 15592, + [SMALL_STATE(2367)] = 15684, + [SMALL_STATE(2368)] = 15810, + [SMALL_STATE(2369)] = 15892, + [SMALL_STATE(2370)] = 15970, + [SMALL_STATE(2371)] = 16096, + [SMALL_STATE(2372)] = 16190, + [SMALL_STATE(2373)] = 16274, + [SMALL_STATE(2374)] = 16363, + [SMALL_STATE(2375)] = 16442, + [SMALL_STATE(2376)] = 16521, + [SMALL_STATE(2377)] = 16600, + [SMALL_STATE(2378)] = 16683, + [SMALL_STATE(2379)] = 16758, + [SMALL_STATE(2380)] = 16831, + [SMALL_STATE(2381)] = 16910, + [SMALL_STATE(2382)] = 16983, + [SMALL_STATE(2383)] = 17072, + [SMALL_STATE(2384)] = 17149, + [SMALL_STATE(2385)] = 17228, + [SMALL_STATE(2386)] = 17317, + [SMALL_STATE(2387)] = 17396, + [SMALL_STATE(2388)] = 17475, + [SMALL_STATE(2389)] = 17558, + [SMALL_STATE(2390)] = 17637, + [SMALL_STATE(2391)] = 17714, + [SMALL_STATE(2392)] = 17807, + [SMALL_STATE(2393)] = 17886, + [SMALL_STATE(2394)] = 17963, + [SMALL_STATE(2395)] = 18040, + [SMALL_STATE(2396)] = 18117, + [SMALL_STATE(2397)] = 18202, + [SMALL_STATE(2398)] = 18273, + [SMALL_STATE(2399)] = 18352, + [SMALL_STATE(2400)] = 18437, + [SMALL_STATE(2401)] = 18522, + [SMALL_STATE(2402)] = 18607, + [SMALL_STATE(2403)] = 18696, + [SMALL_STATE(2404)] = 18767, + [SMALL_STATE(2405)] = 18860, + [SMALL_STATE(2406)] = 18937, + [SMALL_STATE(2407)] = 19024, + [SMALL_STATE(2408)] = 19095, + [SMALL_STATE(2409)] = 19166, + [SMALL_STATE(2410)] = 19247, + [SMALL_STATE(2411)] = 19328, + [SMALL_STATE(2412)] = 19407, + [SMALL_STATE(2413)] = 19486, + [SMALL_STATE(2414)] = 19557, + [SMALL_STATE(2415)] = 19628, + [SMALL_STATE(2416)] = 19699, + [SMALL_STATE(2417)] = 19770, + [SMALL_STATE(2418)] = 19849, + [SMALL_STATE(2419)] = 19928, + [SMALL_STATE(2420)] = 20009, + [SMALL_STATE(2421)] = 20080, + [SMALL_STATE(2422)] = 20151, + [SMALL_STATE(2423)] = 20226, + [SMALL_STATE(2424)] = 20303, + [SMALL_STATE(2425)] = 20374, + [SMALL_STATE(2426)] = 20451, + [SMALL_STATE(2427)] = 20575, + [SMALL_STATE(2428)] = 20699, + [SMALL_STATE(2429)] = 20823, + [SMALL_STATE(2430)] = 20941, + [SMALL_STATE(2431)] = 21065, + [SMALL_STATE(2432)] = 21143, + [SMALL_STATE(2433)] = 21221, + [SMALL_STATE(2434)] = 21345, + [SMALL_STATE(2435)] = 21469, + [SMALL_STATE(2436)] = 21593, + [SMALL_STATE(2437)] = 21669, + [SMALL_STATE(2438)] = 21793, + [SMALL_STATE(2439)] = 21917, + [SMALL_STATE(2440)] = 21991, + [SMALL_STATE(2441)] = 22069, + [SMALL_STATE(2442)] = 22147, + [SMALL_STATE(2443)] = 22271, + [SMALL_STATE(2444)] = 22349, + [SMALL_STATE(2445)] = 22473, + [SMALL_STATE(2446)] = 22551, + [SMALL_STATE(2447)] = 22675, + [SMALL_STATE(2448)] = 22753, + [SMALL_STATE(2449)] = 22877, + [SMALL_STATE(2450)] = 23001, + [SMALL_STATE(2451)] = 23125, + [SMALL_STATE(2452)] = 23203, + [SMALL_STATE(2453)] = 23327, + [SMALL_STATE(2454)] = 23451, + [SMALL_STATE(2455)] = 23575, + [SMALL_STATE(2456)] = 23699, + [SMALL_STATE(2457)] = 23823, + [SMALL_STATE(2458)] = 23947, + [SMALL_STATE(2459)] = 24071, + [SMALL_STATE(2460)] = 24147, + [SMALL_STATE(2461)] = 24271, + [SMALL_STATE(2462)] = 24395, + [SMALL_STATE(2463)] = 24513, + [SMALL_STATE(2464)] = 24637, + [SMALL_STATE(2465)] = 24715, + [SMALL_STATE(2466)] = 24839, + [SMALL_STATE(2467)] = 24915, + [SMALL_STATE(2468)] = 25039, + [SMALL_STATE(2469)] = 25117, + [SMALL_STATE(2470)] = 25199, + [SMALL_STATE(2471)] = 25317, + [SMALL_STATE(2472)] = 25441, + [SMALL_STATE(2473)] = 25565, + [SMALL_STATE(2474)] = 25689, + [SMALL_STATE(2475)] = 25813, + [SMALL_STATE(2476)] = 25901, + [SMALL_STATE(2477)] = 26025, + [SMALL_STATE(2478)] = 26149, + [SMALL_STATE(2479)] = 26267, + [SMALL_STATE(2480)] = 26349, + [SMALL_STATE(2481)] = 26431, + [SMALL_STATE(2482)] = 26555, + [SMALL_STATE(2483)] = 26679, + [SMALL_STATE(2484)] = 26797, + [SMALL_STATE(2485)] = 26921, + [SMALL_STATE(2486)] = 27045, + [SMALL_STATE(2487)] = 27169, + [SMALL_STATE(2488)] = 27253, + [SMALL_STATE(2489)] = 27371, + [SMALL_STATE(2490)] = 27495, + [SMALL_STATE(2491)] = 27619, + [SMALL_STATE(2492)] = 27743, + [SMALL_STATE(2493)] = 27825, + [SMALL_STATE(2494)] = 27899, + [SMALL_STATE(2495)] = 27971, + [SMALL_STATE(2496)] = 28043, + [SMALL_STATE(2497)] = 28167, + [SMALL_STATE(2498)] = 28285, + [SMALL_STATE(2499)] = 28367, + [SMALL_STATE(2500)] = 28491, + [SMALL_STATE(2501)] = 28569, + [SMALL_STATE(2502)] = 28691, + [SMALL_STATE(2503)] = 28767, + [SMALL_STATE(2504)] = 28891, + [SMALL_STATE(2505)] = 28964, + [SMALL_STATE(2506)] = 29039, + [SMALL_STATE(2507)] = 29118, + [SMALL_STATE(2508)] = 29193, + [SMALL_STATE(2509)] = 29268, + [SMALL_STATE(2510)] = 29345, + [SMALL_STATE(2511)] = 29422, + [SMALL_STATE(2512)] = 29501, + [SMALL_STATE(2513)] = 29580, + [SMALL_STATE(2514)] = 29651, + [SMALL_STATE(2515)] = 29722, + [SMALL_STATE(2516)] = 29801, + [SMALL_STATE(2517)] = 29876, + [SMALL_STATE(2518)] = 29957, + [SMALL_STATE(2519)] = 30031, + [SMALL_STATE(2520)] = 30105, + [SMALL_STATE(2521)] = 30215, + [SMALL_STATE(2522)] = 30289, + [SMALL_STATE(2523)] = 30363, + [SMALL_STATE(2524)] = 30437, + [SMALL_STATE(2525)] = 30513, + [SMALL_STATE(2526)] = 30587, + [SMALL_STATE(2527)] = 30661, + [SMALL_STATE(2528)] = 30735, + [SMALL_STATE(2529)] = 30813, + [SMALL_STATE(2530)] = 30887, + [SMALL_STATE(2531)] = 30959, + [SMALL_STATE(2532)] = 31037, + [SMALL_STATE(2533)] = 31111, + [SMALL_STATE(2534)] = 31185, + [SMALL_STATE(2535)] = 31259, + [SMALL_STATE(2536)] = 31330, + [SMALL_STATE(2537)] = 31403, + [SMALL_STATE(2538)] = 31476, + [SMALL_STATE(2539)] = 31549, + [SMALL_STATE(2540)] = 31622, + [SMALL_STATE(2541)] = 31695, + [SMALL_STATE(2542)] = 31800, + [SMALL_STATE(2543)] = 31873, + [SMALL_STATE(2544)] = 31946, + [SMALL_STATE(2545)] = 32019, + [SMALL_STATE(2546)] = 32126, + [SMALL_STATE(2547)] = 32197, + [SMALL_STATE(2548)] = 32270, + [SMALL_STATE(2549)] = 32343, + [SMALL_STATE(2550)] = 32416, + [SMALL_STATE(2551)] = 32489, + [SMALL_STATE(2552)] = 32596, + [SMALL_STATE(2553)] = 32703, + [SMALL_STATE(2554)] = 32776, + [SMALL_STATE(2555)] = 32851, + [SMALL_STATE(2556)] = 32924, + [SMALL_STATE(2557)] = 32995, + [SMALL_STATE(2558)] = 33102, + [SMALL_STATE(2559)] = 33209, + [SMALL_STATE(2560)] = 33316, + [SMALL_STATE(2561)] = 33389, + [SMALL_STATE(2562)] = 33496, + [SMALL_STATE(2563)] = 33569, + [SMALL_STATE(2564)] = 33642, + [SMALL_STATE(2565)] = 33715, + [SMALL_STATE(2566)] = 33788, + [SMALL_STATE(2567)] = 33895, + [SMALL_STATE(2568)] = 33968, + [SMALL_STATE(2569)] = 34038, + [SMALL_STATE(2570)] = 34140, + [SMALL_STATE(2571)] = 34210, + [SMALL_STATE(2572)] = 34280, + [SMALL_STATE(2573)] = 34382, + [SMALL_STATE(2574)] = 34452, + [SMALL_STATE(2575)] = 34554, + [SMALL_STATE(2576)] = 34624, + [SMALL_STATE(2577)] = 34726, + [SMALL_STATE(2578)] = 34796, + [SMALL_STATE(2579)] = 34866, + [SMALL_STATE(2580)] = 34936, + [SMALL_STATE(2581)] = 35038, + [SMALL_STATE(2582)] = 35108, + [SMALL_STATE(2583)] = 35210, + [SMALL_STATE(2584)] = 35305, + [SMALL_STATE(2585)] = 35400, + [SMALL_STATE(2586)] = 35495, + [SMALL_STATE(2587)] = 35588, + [SMALL_STATE(2588)] = 35683, + [SMALL_STATE(2589)] = 35776, + [SMALL_STATE(2590)] = 35871, + [SMALL_STATE(2591)] = 35966, + [SMALL_STATE(2592)] = 36059, + [SMALL_STATE(2593)] = 36152, + [SMALL_STATE(2594)] = 36245, + [SMALL_STATE(2595)] = 36338, + [SMALL_STATE(2596)] = 36433, + [SMALL_STATE(2597)] = 36521, + [SMALL_STATE(2598)] = 36645, + [SMALL_STATE(2599)] = 36733, + [SMALL_STATE(2600)] = 36857, + [SMALL_STATE(2601)] = 36945, + [SMALL_STATE(2602)] = 37063, + [SMALL_STATE(2603)] = 37187, + [SMALL_STATE(2604)] = 37281, + [SMALL_STATE(2605)] = 37369, + [SMALL_STATE(2606)] = 37457, + [SMALL_STATE(2607)] = 37581, + [SMALL_STATE(2608)] = 37673, + [SMALL_STATE(2609)] = 37797, + [SMALL_STATE(2610)] = 37889, + [SMALL_STATE(2611)] = 38013, + [SMALL_STATE(2612)] = 38101, + [SMALL_STATE(2613)] = 38188, + [SMALL_STATE(2614)] = 38277, + [SMALL_STATE(2615)] = 38374, + [SMALL_STATE(2616)] = 38463, + [SMALL_STATE(2617)] = 38552, + [SMALL_STATE(2618)] = 38639, + [SMALL_STATE(2619)] = 38728, + [SMALL_STATE(2620)] = 38813, + [SMALL_STATE(2621)] = 38910, + [SMALL_STATE(2622)] = 38995, + [SMALL_STATE(2623)] = 39092, + [SMALL_STATE(2624)] = 39181, + [SMALL_STATE(2625)] = 39268, + [SMALL_STATE(2626)] = 39353, + [SMALL_STATE(2627)] = 39438, + [SMALL_STATE(2628)] = 39523, + [SMALL_STATE(2629)] = 39620, + [SMALL_STATE(2630)] = 39709, + [SMALL_STATE(2631)] = 39806, + [SMALL_STATE(2632)] = 39903, + [SMALL_STATE(2633)] = 40000, + [SMALL_STATE(2634)] = 40089, + [SMALL_STATE(2635)] = 40178, + [SMALL_STATE(2636)] = 40266, + [SMALL_STATE(2637)] = 40340, + [SMALL_STATE(2638)] = 40430, + [SMALL_STATE(2639)] = 40492, + [SMALL_STATE(2640)] = 40554, + [SMALL_STATE(2641)] = 40634, + [SMALL_STATE(2642)] = 40722, + [SMALL_STATE(2643)] = 40802, + [SMALL_STATE(2644)] = 40884, + [SMALL_STATE(2645)] = 40972, + [SMALL_STATE(2646)] = 41072, + [SMALL_STATE(2647)] = 41162, + [SMALL_STATE(2648)] = 41244, + [SMALL_STATE(2649)] = 41332, + [SMALL_STATE(2650)] = 41412, + [SMALL_STATE(2651)] = 41486, + [SMALL_STATE(2652)] = 41566, + [SMALL_STATE(2653)] = 41648, + [SMALL_STATE(2654)] = 41722, + [SMALL_STATE(2655)] = 41812, + [SMALL_STATE(2656)] = 41892, + [SMALL_STATE(2657)] = 41974, + [SMALL_STATE(2658)] = 42048, + [SMALL_STATE(2659)] = 42138, + [SMALL_STATE(2660)] = 42220, + [SMALL_STATE(2661)] = 42300, + [SMALL_STATE(2662)] = 42382, + [SMALL_STATE(2663)] = 42462, + [SMALL_STATE(2664)] = 42542, + [SMALL_STATE(2665)] = 42624, + [SMALL_STATE(2666)] = 42706, + [SMALL_STATE(2667)] = 42786, + [SMALL_STATE(2668)] = 42866, + [SMALL_STATE(2669)] = 42940, + [SMALL_STATE(2670)] = 43022, + [SMALL_STATE(2671)] = 43136, + [SMALL_STATE(2672)] = 43216, + [SMALL_STATE(2673)] = 43306, + [SMALL_STATE(2674)] = 43422, + [SMALL_STATE(2675)] = 43512, + [SMALL_STATE(2676)] = 43592, + [SMALL_STATE(2677)] = 43680, + [SMALL_STATE(2678)] = 43768, + [SMALL_STATE(2679)] = 43842, + [SMALL_STATE(2680)] = 43922, + [SMALL_STATE(2681)] = 43996, + [SMALL_STATE(2682)] = 44078, + [SMALL_STATE(2683)] = 44158, + [SMALL_STATE(2684)] = 44240, + [SMALL_STATE(2685)] = 44324, + [SMALL_STATE(2686)] = 44412, + [SMALL_STATE(2687)] = 44494, + [SMALL_STATE(2688)] = 44576, + [SMALL_STATE(2689)] = 44656, + [SMALL_STATE(2690)] = 44730, + [SMALL_STATE(2691)] = 44804, + [SMALL_STATE(2692)] = 44878, + [SMALL_STATE(2693)] = 44958, + [SMALL_STATE(2694)] = 45040, + [SMALL_STATE(2695)] = 45122, + [SMALL_STATE(2696)] = 45212, + [SMALL_STATE(2697)] = 45286, + [SMALL_STATE(2698)] = 45368, + [SMALL_STATE(2699)] = 45448, + [SMALL_STATE(2700)] = 45528, + [SMALL_STATE(2701)] = 45608, + [SMALL_STATE(2702)] = 45688, + [SMALL_STATE(2703)] = 45762, + [SMALL_STATE(2704)] = 45837, + [SMALL_STATE(2705)] = 45912, + [SMALL_STATE(2706)] = 45987, + [SMALL_STATE(2707)] = 46064, + [SMALL_STATE(2708)] = 46155, + [SMALL_STATE(2709)] = 46230, + [SMALL_STATE(2710)] = 46305, + [SMALL_STATE(2711)] = 46388, + [SMALL_STATE(2712)] = 46471, + [SMALL_STATE(2713)] = 46546, + [SMALL_STATE(2714)] = 46629, + [SMALL_STATE(2715)] = 46704, + [SMALL_STATE(2716)] = 46779, + [SMALL_STATE(2717)] = 46862, + [SMALL_STATE(2718)] = 46931, + [SMALL_STATE(2719)] = 47026, + [SMALL_STATE(2720)] = 47101, + [SMALL_STATE(2721)] = 47184, + [SMALL_STATE(2722)] = 47255, + [SMALL_STATE(2723)] = 47326, + [SMALL_STATE(2724)] = 47401, + [SMALL_STATE(2725)] = 47476, + [SMALL_STATE(2726)] = 47539, + [SMALL_STATE(2727)] = 47610, + [SMALL_STATE(2728)] = 47685, + [SMALL_STATE(2729)] = 47760, + [SMALL_STATE(2730)] = 47835, + [SMALL_STATE(2731)] = 47910, + [SMALL_STATE(2732)] = 47985, + [SMALL_STATE(2733)] = 48060, + [SMALL_STATE(2734)] = 48135, + [SMALL_STATE(2735)] = 48210, + [SMALL_STATE(2736)] = 48285, + [SMALL_STATE(2737)] = 48360, + [SMALL_STATE(2738)] = 48435, + [SMALL_STATE(2739)] = 48510, + [SMALL_STATE(2740)] = 48599, + [SMALL_STATE(2741)] = 48682, + [SMALL_STATE(2742)] = 48765, + [SMALL_STATE(2743)] = 48845, + [SMALL_STATE(2744)] = 48905, + [SMALL_STATE(2745)] = 48985, + [SMALL_STATE(2746)] = 49051, + [SMALL_STATE(2747)] = 49117, + [SMALL_STATE(2748)] = 49181, + [SMALL_STATE(2749)] = 49261, + [SMALL_STATE(2750)] = 49321, + [SMALL_STATE(2751)] = 49397, + [SMALL_STATE(2752)] = 49481, + [SMALL_STATE(2753)] = 49561, + [SMALL_STATE(2754)] = 49641, + [SMALL_STATE(2755)] = 49703, + [SMALL_STATE(2756)] = 49789, + [SMALL_STATE(2757)] = 49851, + [SMALL_STATE(2758)] = 49913, + [SMALL_STATE(2759)] = 49973, + [SMALL_STATE(2760)] = 50055, + [SMALL_STATE(2761)] = 50117, + [SMALL_STATE(2762)] = 50193, + [SMALL_STATE(2763)] = 50293, + [SMALL_STATE(2764)] = 50369, + [SMALL_STATE(2765)] = 50449, + [SMALL_STATE(2766)] = 50525, + [SMALL_STATE(2767)] = 50591, + [SMALL_STATE(2768)] = 50657, + [SMALL_STATE(2769)] = 50733, + [SMALL_STATE(2770)] = 50793, + [SMALL_STATE(2771)] = 50875, + [SMALL_STATE(2772)] = 50939, + [SMALL_STATE(2773)] = 51003, + [SMALL_STATE(2774)] = 51063, + [SMALL_STATE(2775)] = 51129, + [SMALL_STATE(2776)] = 51189, + [SMALL_STATE(2777)] = 51255, + [SMALL_STATE(2778)] = 51315, + [SMALL_STATE(2779)] = 51374, + [SMALL_STATE(2780)] = 51491, + [SMALL_STATE(2781)] = 51616, + [SMALL_STATE(2782)] = 51675, + [SMALL_STATE(2783)] = 51734, + [SMALL_STATE(2784)] = 51859, + [SMALL_STATE(2785)] = 51976, + [SMALL_STATE(2786)] = 52035, + [SMALL_STATE(2787)] = 52094, + [SMALL_STATE(2788)] = 52161, + [SMALL_STATE(2789)] = 52278, + [SMALL_STATE(2790)] = 52395, + [SMALL_STATE(2791)] = 52456, + [SMALL_STATE(2792)] = 52523, + [SMALL_STATE(2793)] = 52582, + [SMALL_STATE(2794)] = 52647, + [SMALL_STATE(2795)] = 52706, + [SMALL_STATE(2796)] = 52771, + [SMALL_STATE(2797)] = 52832, + [SMALL_STATE(2798)] = 52891, + [SMALL_STATE(2799)] = 52950, + [SMALL_STATE(2800)] = 53009, + [SMALL_STATE(2801)] = 53078, + [SMALL_STATE(2802)] = 53147, + [SMALL_STATE(2803)] = 53206, + [SMALL_STATE(2804)] = 53265, + [SMALL_STATE(2805)] = 53330, + [SMALL_STATE(2806)] = 53391, + [SMALL_STATE(2807)] = 53450, + [SMALL_STATE(2808)] = 53509, + [SMALL_STATE(2809)] = 53568, + [SMALL_STATE(2810)] = 53627, + [SMALL_STATE(2811)] = 53686, + [SMALL_STATE(2812)] = 53745, + [SMALL_STATE(2813)] = 53816, + [SMALL_STATE(2814)] = 53889, + [SMALL_STATE(2815)] = 53950, + [SMALL_STATE(2816)] = 54009, + [SMALL_STATE(2817)] = 54134, + [SMALL_STATE(2818)] = 54193, + [SMALL_STATE(2819)] = 54252, + [SMALL_STATE(2820)] = 54325, + [SMALL_STATE(2821)] = 54384, + [SMALL_STATE(2822)] = 54457, + [SMALL_STATE(2823)] = 54516, + [SMALL_STATE(2824)] = 54575, + [SMALL_STATE(2825)] = 54636, + [SMALL_STATE(2826)] = 54709, + [SMALL_STATE(2827)] = 54834, + [SMALL_STATE(2828)] = 54907, + [SMALL_STATE(2829)] = 54966, + [SMALL_STATE(2830)] = 55025, + [SMALL_STATE(2831)] = 55088, + [SMALL_STATE(2832)] = 55147, + [SMALL_STATE(2833)] = 55264, + [SMALL_STATE(2834)] = 55323, + [SMALL_STATE(2835)] = 55382, + [SMALL_STATE(2836)] = 55441, + [SMALL_STATE(2837)] = 55500, + [SMALL_STATE(2838)] = 55559, + [SMALL_STATE(2839)] = 55618, + [SMALL_STATE(2840)] = 55735, + [SMALL_STATE(2841)] = 55798, + [SMALL_STATE(2842)] = 55863, + [SMALL_STATE(2843)] = 55988, + [SMALL_STATE(2844)] = 56105, + [SMALL_STATE(2845)] = 56222, + [SMALL_STATE(2846)] = 56295, + [SMALL_STATE(2847)] = 56372, + [SMALL_STATE(2848)] = 56463, + [SMALL_STATE(2849)] = 56536, + [SMALL_STATE(2850)] = 56605, + [SMALL_STATE(2851)] = 56664, + [SMALL_STATE(2852)] = 56733, + [SMALL_STATE(2853)] = 56792, + [SMALL_STATE(2854)] = 56873, + [SMALL_STATE(2855)] = 56946, + [SMALL_STATE(2856)] = 57005, + [SMALL_STATE(2857)] = 57064, + [SMALL_STATE(2858)] = 57137, + [SMALL_STATE(2859)] = 57198, + [SMALL_STATE(2860)] = 57257, + [SMALL_STATE(2861)] = 57316, + [SMALL_STATE(2862)] = 57375, + [SMALL_STATE(2863)] = 57440, + [SMALL_STATE(2864)] = 57509, + [SMALL_STATE(2865)] = 57578, + [SMALL_STATE(2866)] = 57643, + [SMALL_STATE(2867)] = 57748, + [SMALL_STATE(2868)] = 57855, + [SMALL_STATE(2869)] = 57914, + [SMALL_STATE(2870)] = 57987, + [SMALL_STATE(2871)] = 58112, + [SMALL_STATE(2872)] = 58171, + [SMALL_STATE(2873)] = 58244, + [SMALL_STATE(2874)] = 58305, + [SMALL_STATE(2875)] = 58364, + [SMALL_STATE(2876)] = 58423, + [SMALL_STATE(2877)] = 58488, + [SMALL_STATE(2878)] = 58613, + [SMALL_STATE(2879)] = 58674, + [SMALL_STATE(2880)] = 58799, + [SMALL_STATE(2881)] = 58886, + [SMALL_STATE(2882)] = 58985, + [SMALL_STATE(2883)] = 59064, + [SMALL_STATE(2884)] = 59123, + [SMALL_STATE(2885)] = 59224, + [SMALL_STATE(2886)] = 59301, + [SMALL_STATE(2887)] = 59374, + [SMALL_STATE(2888)] = 59477, + [SMALL_STATE(2889)] = 59536, + [SMALL_STATE(2890)] = 59601, + [SMALL_STATE(2891)] = 59666, + [SMALL_STATE(2892)] = 59743, + [SMALL_STATE(2893)] = 59808, + [SMALL_STATE(2894)] = 59893, + [SMALL_STATE(2895)] = 59952, + [SMALL_STATE(2896)] = 60025, + [SMALL_STATE(2897)] = 60088, + [SMALL_STATE(2898)] = 60147, + [SMALL_STATE(2899)] = 60206, + [SMALL_STATE(2900)] = 60267, + [SMALL_STATE(2901)] = 60326, + [SMALL_STATE(2902)] = 60385, + [SMALL_STATE(2903)] = 60502, + [SMALL_STATE(2904)] = 60561, + [SMALL_STATE(2905)] = 60620, + [SMALL_STATE(2906)] = 60707, + [SMALL_STATE(2907)] = 60766, + [SMALL_STATE(2908)] = 60851, + [SMALL_STATE(2909)] = 60946, + [SMALL_STATE(2910)] = 61055, + [SMALL_STATE(2911)] = 61124, + [SMALL_STATE(2912)] = 61183, + [SMALL_STATE(2913)] = 61300, + [SMALL_STATE(2914)] = 61379, + [SMALL_STATE(2915)] = 61438, + [SMALL_STATE(2916)] = 61555, + [SMALL_STATE(2917)] = 61628, + [SMALL_STATE(2918)] = 61701, + [SMALL_STATE(2919)] = 61760, + [SMALL_STATE(2920)] = 61819, + [SMALL_STATE(2921)] = 61878, + [SMALL_STATE(2922)] = 61937, + [SMALL_STATE(2923)] = 61996, + [SMALL_STATE(2924)] = 62057, + [SMALL_STATE(2925)] = 62174, + [SMALL_STATE(2926)] = 62291, + [SMALL_STATE(2927)] = 62350, + [SMALL_STATE(2928)] = 62467, + [SMALL_STATE(2929)] = 62540, + [SMALL_STATE(2930)] = 62601, + [SMALL_STATE(2931)] = 62660, + [SMALL_STATE(2932)] = 62727, + [SMALL_STATE(2933)] = 62786, + [SMALL_STATE(2934)] = 62845, + [SMALL_STATE(2935)] = 62904, + [SMALL_STATE(2936)] = 62963, + [SMALL_STATE(2937)] = 63022, + [SMALL_STATE(2938)] = 63081, + [SMALL_STATE(2939)] = 63140, + [SMALL_STATE(2940)] = 63209, + [SMALL_STATE(2941)] = 63278, + [SMALL_STATE(2942)] = 63347, + [SMALL_STATE(2943)] = 63416, + [SMALL_STATE(2944)] = 63485, + [SMALL_STATE(2945)] = 63560, + [SMALL_STATE(2946)] = 63677, + [SMALL_STATE(2947)] = 63738, + [SMALL_STATE(2948)] = 63797, + [SMALL_STATE(2949)] = 63856, + [SMALL_STATE(2950)] = 63915, + [SMALL_STATE(2951)] = 63980, + [SMALL_STATE(2952)] = 64045, + [SMALL_STATE(2953)] = 64108, + [SMALL_STATE(2954)] = 64167, + [SMALL_STATE(2955)] = 64228, + [SMALL_STATE(2956)] = 64287, + [SMALL_STATE(2957)] = 64412, + [SMALL_STATE(2958)] = 64471, + [SMALL_STATE(2959)] = 64530, + [SMALL_STATE(2960)] = 64589, + [SMALL_STATE(2961)] = 64648, + [SMALL_STATE(2962)] = 64707, + [SMALL_STATE(2963)] = 64766, + [SMALL_STATE(2964)] = 64825, + [SMALL_STATE(2965)] = 64884, + [SMALL_STATE(2966)] = 64943, + [SMALL_STATE(2967)] = 65012, + [SMALL_STATE(2968)] = 65071, + [SMALL_STATE(2969)] = 65130, + [SMALL_STATE(2970)] = 65199, + [SMALL_STATE(2971)] = 65257, + [SMALL_STATE(2972)] = 65315, + [SMALL_STATE(2973)] = 65373, + [SMALL_STATE(2974)] = 65431, + [SMALL_STATE(2975)] = 65551, + [SMALL_STATE(2976)] = 65667, + [SMALL_STATE(2977)] = 65783, + [SMALL_STATE(2978)] = 65891, + [SMALL_STATE(2979)] = 65985, + [SMALL_STATE(2980)] = 66071, + [SMALL_STATE(2981)] = 66155, + [SMALL_STATE(2982)] = 66239, + [SMALL_STATE(2983)] = 66341, + [SMALL_STATE(2984)] = 66441, + [SMALL_STATE(2985)] = 66539, + [SMALL_STATE(2986)] = 66625, + [SMALL_STATE(2987)] = 66741, + [SMALL_STATE(2988)] = 66847, + [SMALL_STATE(2989)] = 66909, + [SMALL_STATE(2990)] = 66967, + [SMALL_STATE(2991)] = 67039, + [SMALL_STATE(2992)] = 67143, + [SMALL_STATE(2993)] = 67201, + [SMALL_STATE(2994)] = 67281, + [SMALL_STATE(2995)] = 67401, + [SMALL_STATE(2996)] = 67491, + [SMALL_STATE(2997)] = 67567, + [SMALL_STATE(2998)] = 67687, + [SMALL_STATE(2999)] = 67803, + [SMALL_STATE(3000)] = 67919, + [SMALL_STATE(3001)] = 67977, + [SMALL_STATE(3002)] = 68035, + [SMALL_STATE(3003)] = 68093, + [SMALL_STATE(3004)] = 68157, + [SMALL_STATE(3005)] = 68215, + [SMALL_STATE(3006)] = 68331, + [SMALL_STATE(3007)] = 68391, + [SMALL_STATE(3008)] = 68507, + [SMALL_STATE(3009)] = 68627, + [SMALL_STATE(3010)] = 68743, + [SMALL_STATE(3011)] = 68863, + [SMALL_STATE(3012)] = 68933, + [SMALL_STATE(3013)] = 69049, + [SMALL_STATE(3014)] = 69165, + [SMALL_STATE(3015)] = 69281, + [SMALL_STATE(3016)] = 69397, + [SMALL_STATE(3017)] = 69455, + [SMALL_STATE(3018)] = 69571, + [SMALL_STATE(3019)] = 69629, + [SMALL_STATE(3020)] = 69687, + [SMALL_STATE(3021)] = 69745, + [SMALL_STATE(3022)] = 69803, + [SMALL_STATE(3023)] = 69861, + [SMALL_STATE(3024)] = 69919, + [SMALL_STATE(3025)] = 69983, + [SMALL_STATE(3026)] = 70103, + [SMALL_STATE(3027)] = 70179, + [SMALL_STATE(3028)] = 70237, + [SMALL_STATE(3029)] = 70295, + [SMALL_STATE(3030)] = 70353, + [SMALL_STATE(3031)] = 70411, + [SMALL_STATE(3032)] = 70531, + [SMALL_STATE(3033)] = 70651, + [SMALL_STATE(3034)] = 70709, + [SMALL_STATE(3035)] = 70767, + [SMALL_STATE(3036)] = 70825, + [SMALL_STATE(3037)] = 70883, + [SMALL_STATE(3038)] = 71003, + [SMALL_STATE(3039)] = 71119, + [SMALL_STATE(3040)] = 71189, + [SMALL_STATE(3041)] = 71247, + [SMALL_STATE(3042)] = 71363, + [SMALL_STATE(3043)] = 71453, + [SMALL_STATE(3044)] = 71573, + [SMALL_STATE(3045)] = 71693, + [SMALL_STATE(3046)] = 71751, + [SMALL_STATE(3047)] = 71867, + [SMALL_STATE(3048)] = 71983, + [SMALL_STATE(3049)] = 72103, + [SMALL_STATE(3050)] = 72161, + [SMALL_STATE(3051)] = 72219, + [SMALL_STATE(3052)] = 72277, + [SMALL_STATE(3053)] = 72335, + [SMALL_STATE(3054)] = 72393, + [SMALL_STATE(3055)] = 72455, + [SMALL_STATE(3056)] = 72515, + [SMALL_STATE(3057)] = 72573, + [SMALL_STATE(3058)] = 72631, + [SMALL_STATE(3059)] = 72689, + [SMALL_STATE(3060)] = 72747, + [SMALL_STATE(3061)] = 72863, + [SMALL_STATE(3062)] = 72943, + [SMALL_STATE(3063)] = 73059, + [SMALL_STATE(3064)] = 73175, + [SMALL_STATE(3065)] = 73291, + [SMALL_STATE(3066)] = 73407, + [SMALL_STATE(3067)] = 73523, + [SMALL_STATE(3068)] = 73597, + [SMALL_STATE(3069)] = 73655, + [SMALL_STATE(3070)] = 73715, + [SMALL_STATE(3071)] = 73773, + [SMALL_STATE(3072)] = 73877, + [SMALL_STATE(3073)] = 73935, + [SMALL_STATE(3074)] = 73995, + [SMALL_STATE(3075)] = 74101, + [SMALL_STATE(3076)] = 74187, + [SMALL_STATE(3077)] = 74285, + [SMALL_STATE(3078)] = 74385, + [SMALL_STATE(3079)] = 74487, + [SMALL_STATE(3080)] = 74607, + [SMALL_STATE(3081)] = 74691, + [SMALL_STATE(3082)] = 74777, + [SMALL_STATE(3083)] = 74837, + [SMALL_STATE(3084)] = 74895, + [SMALL_STATE(3085)] = 74953, + [SMALL_STATE(3086)] = 75073, + [SMALL_STATE(3087)] = 75193, + [SMALL_STATE(3088)] = 75251, + [SMALL_STATE(3089)] = 75345, + [SMALL_STATE(3090)] = 75403, + [SMALL_STATE(3091)] = 75511, + [SMALL_STATE(3092)] = 75569, + [SMALL_STATE(3093)] = 75689, + [SMALL_STATE(3094)] = 75747, + [SMALL_STATE(3095)] = 75863, + [SMALL_STATE(3096)] = 75979, + [SMALL_STATE(3097)] = 76037, + [SMALL_STATE(3098)] = 76095, + [SMALL_STATE(3099)] = 76153, + [SMALL_STATE(3100)] = 76273, + [SMALL_STATE(3101)] = 76331, + [SMALL_STATE(3102)] = 76389, + [SMALL_STATE(3103)] = 76447, + [SMALL_STATE(3104)] = 76567, + [SMALL_STATE(3105)] = 76687, + [SMALL_STATE(3106)] = 76803, + [SMALL_STATE(3107)] = 76861, + [SMALL_STATE(3108)] = 76919, + [SMALL_STATE(3109)] = 76977, + [SMALL_STATE(3110)] = 77039, + [SMALL_STATE(3111)] = 77155, + [SMALL_STATE(3112)] = 77221, + [SMALL_STATE(3113)] = 77279, + [SMALL_STATE(3114)] = 77399, + [SMALL_STATE(3115)] = 77515, + [SMALL_STATE(3116)] = 77573, + [SMALL_STATE(3117)] = 77631, + [SMALL_STATE(3118)] = 77695, + [SMALL_STATE(3119)] = 77753, + [SMALL_STATE(3120)] = 77873, + [SMALL_STATE(3121)] = 77993, + [SMALL_STATE(3122)] = 78051, + [SMALL_STATE(3123)] = 78171, + [SMALL_STATE(3124)] = 78289, + [SMALL_STATE(3125)] = 78409, + [SMALL_STATE(3126)] = 78529, + [SMALL_STATE(3127)] = 78587, + [SMALL_STATE(3128)] = 78645, + [SMALL_STATE(3129)] = 78703, + [SMALL_STATE(3130)] = 78781, + [SMALL_STATE(3131)] = 78865, + [SMALL_STATE(3132)] = 78981, + [SMALL_STATE(3133)] = 79059, + [SMALL_STATE(3134)] = 79117, + [SMALL_STATE(3135)] = 79237, + [SMALL_STATE(3136)] = 79305, + [SMALL_STATE(3137)] = 79373, + [SMALL_STATE(3138)] = 79441, + [SMALL_STATE(3139)] = 79499, + [SMALL_STATE(3140)] = 79557, + [SMALL_STATE(3141)] = 79675, + [SMALL_STATE(3142)] = 79732, + [SMALL_STATE(3143)] = 79847, + [SMALL_STATE(3144)] = 79962, + [SMALL_STATE(3145)] = 80019, + [SMALL_STATE(3146)] = 80138, + [SMALL_STATE(3147)] = 80195, + [SMALL_STATE(3148)] = 80312, + [SMALL_STATE(3149)] = 80427, + [SMALL_STATE(3150)] = 80484, + [SMALL_STATE(3151)] = 80603, + [SMALL_STATE(3152)] = 80722, + [SMALL_STATE(3153)] = 80779, + [SMALL_STATE(3154)] = 80898, + [SMALL_STATE(3155)] = 80959, + [SMALL_STATE(3156)] = 81020, + [SMALL_STATE(3157)] = 81081, + [SMALL_STATE(3158)] = 81196, + [SMALL_STATE(3159)] = 81311, + [SMALL_STATE(3160)] = 81374, + [SMALL_STATE(3161)] = 81435, + [SMALL_STATE(3162)] = 81552, + [SMALL_STATE(3163)] = 81621, + [SMALL_STATE(3164)] = 81678, + [SMALL_STATE(3165)] = 81735, + [SMALL_STATE(3166)] = 81854, + [SMALL_STATE(3167)] = 81973, + [SMALL_STATE(3168)] = 82034, + [SMALL_STATE(3169)] = 82153, + [SMALL_STATE(3170)] = 82210, + [SMALL_STATE(3171)] = 82267, + [SMALL_STATE(3172)] = 82324, + [SMALL_STATE(3173)] = 82385, + [SMALL_STATE(3174)] = 82442, + [SMALL_STATE(3175)] = 82499, + [SMALL_STATE(3176)] = 82616, + [SMALL_STATE(3177)] = 82673, + [SMALL_STATE(3178)] = 82792, + [SMALL_STATE(3179)] = 82851, + [SMALL_STATE(3180)] = 82908, + [SMALL_STATE(3181)] = 82975, + [SMALL_STATE(3182)] = 83032, + [SMALL_STATE(3183)] = 83089, + [SMALL_STATE(3184)] = 83146, + [SMALL_STATE(3185)] = 83213, + [SMALL_STATE(3186)] = 83302, + [SMALL_STATE(3187)] = 83381, + [SMALL_STATE(3188)] = 83484, + [SMALL_STATE(3189)] = 83589, + [SMALL_STATE(3190)] = 83674, + [SMALL_STATE(3191)] = 83731, + [SMALL_STATE(3192)] = 83788, + [SMALL_STATE(3193)] = 83885, + [SMALL_STATE(3194)] = 84004, + [SMALL_STATE(3195)] = 84119, + [SMALL_STATE(3196)] = 84176, + [SMALL_STATE(3197)] = 84275, + [SMALL_STATE(3198)] = 84332, + [SMALL_STATE(3199)] = 84433, + [SMALL_STATE(3200)] = 84552, + [SMALL_STATE(3201)] = 84671, + [SMALL_STATE(3202)] = 84790, + [SMALL_STATE(3203)] = 84909, + [SMALL_STATE(3204)] = 84992, + [SMALL_STATE(3205)] = 85077, + [SMALL_STATE(3206)] = 85134, + [SMALL_STATE(3207)] = 85199, + [SMALL_STATE(3208)] = 85292, + [SMALL_STATE(3209)] = 85399, + [SMALL_STATE(3210)] = 85514, + [SMALL_STATE(3211)] = 85571, + [SMALL_STATE(3212)] = 85686, + [SMALL_STATE(3213)] = 85803, + [SMALL_STATE(3214)] = 85862, + [SMALL_STATE(3215)] = 85919, + [SMALL_STATE(3216)] = 85976, + [SMALL_STATE(3217)] = 86033, + [SMALL_STATE(3218)] = 86148, + [SMALL_STATE(3219)] = 86205, + [SMALL_STATE(3220)] = 86262, + [SMALL_STATE(3221)] = 86325, + [SMALL_STATE(3222)] = 86440, + [SMALL_STATE(3223)] = 86497, + [SMALL_STATE(3224)] = 86578, + [SMALL_STATE(3225)] = 86693, + [SMALL_STATE(3226)] = 86812, + [SMALL_STATE(3227)] = 86869, + [SMALL_STATE(3228)] = 86926, + [SMALL_STATE(3229)] = 86983, + [SMALL_STATE(3230)] = 87040, + [SMALL_STATE(3231)] = 87155, + [SMALL_STATE(3232)] = 87212, + [SMALL_STATE(3233)] = 87327, + [SMALL_STATE(3234)] = 87442, + [SMALL_STATE(3235)] = 87499, + [SMALL_STATE(3236)] = 87618, + [SMALL_STATE(3237)] = 87733, + [SMALL_STATE(3238)] = 87792, + [SMALL_STATE(3239)] = 87907, + [SMALL_STATE(3240)] = 87982, + [SMALL_STATE(3241)] = 88097, + [SMALL_STATE(3242)] = 88154, + [SMALL_STATE(3243)] = 88273, + [SMALL_STATE(3244)] = 88356, + [SMALL_STATE(3245)] = 88413, + [SMALL_STATE(3246)] = 88490, + [SMALL_STATE(3247)] = 88547, + [SMALL_STATE(3248)] = 88604, + [SMALL_STATE(3249)] = 88723, + [SMALL_STATE(3250)] = 88780, + [SMALL_STATE(3251)] = 88899, + [SMALL_STATE(3252)] = 88956, + [SMALL_STATE(3253)] = 89071, + [SMALL_STATE(3254)] = 89190, + [SMALL_STATE(3255)] = 89247, + [SMALL_STATE(3256)] = 89304, + [SMALL_STATE(3257)] = 89361, + [SMALL_STATE(3258)] = 89418, + [SMALL_STATE(3259)] = 89477, + [SMALL_STATE(3260)] = 89592, + [SMALL_STATE(3261)] = 89711, + [SMALL_STATE(3262)] = 89828, + [SMALL_STATE(3263)] = 89885, + [SMALL_STATE(3264)] = 89942, + [SMALL_STATE(3265)] = 90005, + [SMALL_STATE(3266)] = 90122, + [SMALL_STATE(3267)] = 90179, + [SMALL_STATE(3268)] = 90298, + [SMALL_STATE(3269)] = 90355, + [SMALL_STATE(3270)] = 90420, + [SMALL_STATE(3271)] = 90477, + [SMALL_STATE(3272)] = 90534, + [SMALL_STATE(3273)] = 90653, + [SMALL_STATE(3274)] = 90716, + [SMALL_STATE(3275)] = 90835, + [SMALL_STATE(3276)] = 90954, + [SMALL_STATE(3277)] = 91017, + [SMALL_STATE(3278)] = 91074, + [SMALL_STATE(3279)] = 91193, + [SMALL_STATE(3280)] = 91312, + [SMALL_STATE(3281)] = 91375, + [SMALL_STATE(3282)] = 91438, + [SMALL_STATE(3283)] = 91495, + [SMALL_STATE(3284)] = 91560, + [SMALL_STATE(3285)] = 91679, + [SMALL_STATE(3286)] = 91796, + [SMALL_STATE(3287)] = 91911, + [SMALL_STATE(3288)] = 92030, + [SMALL_STATE(3289)] = 92095, + [SMALL_STATE(3290)] = 92154, + [SMALL_STATE(3291)] = 92211, + [SMALL_STATE(3292)] = 92330, + [SMALL_STATE(3293)] = 92449, + [SMALL_STATE(3294)] = 92506, + [SMALL_STATE(3295)] = 92563, + [SMALL_STATE(3296)] = 92633, + [SMALL_STATE(3297)] = 92707, + [SMALL_STATE(3298)] = 92765, + [SMALL_STATE(3299)] = 92833, + [SMALL_STATE(3300)] = 92901, + [SMALL_STATE(3301)] = 92959, + [SMALL_STATE(3302)] = 93027, + [SMALL_STATE(3303)] = 93141, + [SMALL_STATE(3304)] = 93255, + [SMALL_STATE(3305)] = 93315, + [SMALL_STATE(3306)] = 93375, + [SMALL_STATE(3307)] = 93439, + [SMALL_STATE(3308)] = 93511, + [SMALL_STATE(3309)] = 93585, + [SMALL_STATE(3310)] = 93659, + [SMALL_STATE(3311)] = 93773, + [SMALL_STATE(3312)] = 93855, + [SMALL_STATE(3313)] = 93913, + [SMALL_STATE(3314)] = 93973, + [SMALL_STATE(3315)] = 94035, + [SMALL_STATE(3316)] = 94093, + [SMALL_STATE(3317)] = 94169, + [SMALL_STATE(3318)] = 94283, + [SMALL_STATE(3319)] = 94345, + [SMALL_STATE(3320)] = 94407, + [SMALL_STATE(3321)] = 94463, + [SMALL_STATE(3322)] = 94519, + [SMALL_STATE(3323)] = 94575, + [SMALL_STATE(3324)] = 94691, + [SMALL_STATE(3325)] = 94747, + [SMALL_STATE(3326)] = 94803, + [SMALL_STATE(3327)] = 94859, + [SMALL_STATE(3328)] = 94915, + [SMALL_STATE(3329)] = 94977, + [SMALL_STATE(3330)] = 95033, + [SMALL_STATE(3331)] = 95147, + [SMALL_STATE(3332)] = 95203, + [SMALL_STATE(3333)] = 95259, + [SMALL_STATE(3334)] = 95315, + [SMALL_STATE(3335)] = 95371, + [SMALL_STATE(3336)] = 95427, + [SMALL_STATE(3337)] = 95483, + [SMALL_STATE(3338)] = 95539, + [SMALL_STATE(3339)] = 95595, + [SMALL_STATE(3340)] = 95651, + [SMALL_STATE(3341)] = 95707, + [SMALL_STATE(3342)] = 95823, + [SMALL_STATE(3343)] = 95879, + [SMALL_STATE(3344)] = 95935, + [SMALL_STATE(3345)] = 95991, + [SMALL_STATE(3346)] = 96047, + [SMALL_STATE(3347)] = 96103, + [SMALL_STATE(3348)] = 96159, + [SMALL_STATE(3349)] = 96215, + [SMALL_STATE(3350)] = 96271, + [SMALL_STATE(3351)] = 96329, + [SMALL_STATE(3352)] = 96391, + [SMALL_STATE(3353)] = 96453, + [SMALL_STATE(3354)] = 96515, + [SMALL_STATE(3355)] = 96571, + [SMALL_STATE(3356)] = 96627, + [SMALL_STATE(3357)] = 96683, + [SMALL_STATE(3358)] = 96799, + [SMALL_STATE(3359)] = 96855, + [SMALL_STATE(3360)] = 96909, + [SMALL_STATE(3361)] = 97023, + [SMALL_STATE(3362)] = 97079, + [SMALL_STATE(3363)] = 97141, + [SMALL_STATE(3364)] = 97197, + [SMALL_STATE(3365)] = 97253, + [SMALL_STATE(3366)] = 97309, + [SMALL_STATE(3367)] = 97365, + [SMALL_STATE(3368)] = 97421, + [SMALL_STATE(3369)] = 97477, + [SMALL_STATE(3370)] = 97533, + [SMALL_STATE(3371)] = 97589, + [SMALL_STATE(3372)] = 97645, + [SMALL_STATE(3373)] = 97701, + [SMALL_STATE(3374)] = 97757, + [SMALL_STATE(3375)] = 97811, + [SMALL_STATE(3376)] = 97867, + [SMALL_STATE(3377)] = 97923, + [SMALL_STATE(3378)] = 97979, + [SMALL_STATE(3379)] = 98035, + [SMALL_STATE(3380)] = 98091, + [SMALL_STATE(3381)] = 98147, + [SMALL_STATE(3382)] = 98205, + [SMALL_STATE(3383)] = 98319, + [SMALL_STATE(3384)] = 98381, + [SMALL_STATE(3385)] = 98437, + [SMALL_STATE(3386)] = 98551, + [SMALL_STATE(3387)] = 98609, + [SMALL_STATE(3388)] = 98667, + [SMALL_STATE(3389)] = 98781, + [SMALL_STATE(3390)] = 98837, + [SMALL_STATE(3391)] = 98895, + [SMALL_STATE(3392)] = 99009, + [SMALL_STATE(3393)] = 99065, + [SMALL_STATE(3394)] = 99179, + [SMALL_STATE(3395)] = 99235, + [SMALL_STATE(3396)] = 99349, + [SMALL_STATE(3397)] = 99405, + [SMALL_STATE(3398)] = 99467, + [SMALL_STATE(3399)] = 99523, + [SMALL_STATE(3400)] = 99637, + [SMALL_STATE(3401)] = 99693, + [SMALL_STATE(3402)] = 99749, + [SMALL_STATE(3403)] = 99811, + [SMALL_STATE(3404)] = 99867, + [SMALL_STATE(3405)] = 99925, + [SMALL_STATE(3406)] = 99981, + [SMALL_STATE(3407)] = 100037, + [SMALL_STATE(3408)] = 100093, + [SMALL_STATE(3409)] = 100207, + [SMALL_STATE(3410)] = 100271, + [SMALL_STATE(3411)] = 100335, + [SMALL_STATE(3412)] = 100389, + [SMALL_STATE(3413)] = 100445, + [SMALL_STATE(3414)] = 100501, + [SMALL_STATE(3415)] = 100557, + [SMALL_STATE(3416)] = 100613, + [SMALL_STATE(3417)] = 100669, + [SMALL_STATE(3418)] = 100783, + [SMALL_STATE(3419)] = 100839, + [SMALL_STATE(3420)] = 100895, + [SMALL_STATE(3421)] = 100959, + [SMALL_STATE(3422)] = 101021, + [SMALL_STATE(3423)] = 101093, + [SMALL_STATE(3424)] = 101161, + [SMALL_STATE(3425)] = 101229, + [SMALL_STATE(3426)] = 101343, + [SMALL_STATE(3427)] = 101401, + [SMALL_STATE(3428)] = 101515, + [SMALL_STATE(3429)] = 101569, + [SMALL_STATE(3430)] = 101683, + [SMALL_STATE(3431)] = 101737, + [SMALL_STATE(3432)] = 101851, + [SMALL_STATE(3433)] = 101913, + [SMALL_STATE(3434)] = 102029, + [SMALL_STATE(3435)] = 102087, + [SMALL_STATE(3436)] = 102155, + [SMALL_STATE(3437)] = 102223, + [SMALL_STATE(3438)] = 102277, + [SMALL_STATE(3439)] = 102333, + [SMALL_STATE(3440)] = 102389, + [SMALL_STATE(3441)] = 102443, + [SMALL_STATE(3442)] = 102499, + [SMALL_STATE(3443)] = 102555, + [SMALL_STATE(3444)] = 102613, + [SMALL_STATE(3445)] = 102671, + [SMALL_STATE(3446)] = 102733, + [SMALL_STATE(3447)] = 102801, + [SMALL_STATE(3448)] = 102863, + [SMALL_STATE(3449)] = 102919, + [SMALL_STATE(3450)] = 102975, + [SMALL_STATE(3451)] = 103031, + [SMALL_STATE(3452)] = 103145, + [SMALL_STATE(3453)] = 103203, + [SMALL_STATE(3454)] = 103259, + [SMALL_STATE(3455)] = 103315, + [SMALL_STATE(3456)] = 103373, + [SMALL_STATE(3457)] = 103431, + [SMALL_STATE(3458)] = 103487, + [SMALL_STATE(3459)] = 103545, + [SMALL_STATE(3460)] = 103607, + [SMALL_STATE(3461)] = 103663, + [SMALL_STATE(3462)] = 103777, + [SMALL_STATE(3463)] = 103891, + [SMALL_STATE(3464)] = 103959, + [SMALL_STATE(3465)] = 104075, + [SMALL_STATE(3466)] = 104163, + [SMALL_STATE(3467)] = 104241, + [SMALL_STATE(3468)] = 104343, + [SMALL_STATE(3469)] = 104447, + [SMALL_STATE(3470)] = 104531, + [SMALL_STATE(3471)] = 104599, + [SMALL_STATE(3472)] = 104715, + [SMALL_STATE(3473)] = 104773, + [SMALL_STATE(3474)] = 104869, + [SMALL_STATE(3475)] = 104925, + [SMALL_STATE(3476)] = 104981, + [SMALL_STATE(3477)] = 105039, + [SMALL_STATE(3478)] = 105095, + [SMALL_STATE(3479)] = 105151, + [SMALL_STATE(3480)] = 105207, + [SMALL_STATE(3481)] = 105321, + [SMALL_STATE(3482)] = 105377, + [SMALL_STATE(3483)] = 105475, + [SMALL_STATE(3484)] = 105591, + [SMALL_STATE(3485)] = 105665, + [SMALL_STATE(3486)] = 105725, + [SMALL_STATE(3487)] = 105789, + [SMALL_STATE(3488)] = 105861, + [SMALL_STATE(3489)] = 105923, + [SMALL_STATE(3490)] = 106037, + [SMALL_STATE(3491)] = 106137, + [SMALL_STATE(3492)] = 106219, + [SMALL_STATE(3493)] = 106335, + [SMALL_STATE(3494)] = 106405, + [SMALL_STATE(3495)] = 106489, + [SMALL_STATE(3496)] = 106581, + [SMALL_STATE(3497)] = 106687, + [SMALL_STATE(3498)] = 106801, + [SMALL_STATE(3499)] = 106871, + [SMALL_STATE(3500)] = 106985, + [SMALL_STATE(3501)] = 107057, + [SMALL_STATE(3502)] = 107170, + [SMALL_STATE(3503)] = 107233, + [SMALL_STATE(3504)] = 107290, + [SMALL_STATE(3505)] = 107345, + [SMALL_STATE(3506)] = 107458, + [SMALL_STATE(3507)] = 107571, + [SMALL_STATE(3508)] = 107626, + [SMALL_STATE(3509)] = 107689, + [SMALL_STATE(3510)] = 107756, + [SMALL_STATE(3511)] = 107819, + [SMALL_STATE(3512)] = 107878, + [SMALL_STATE(3513)] = 107945, + [SMALL_STATE(3514)] = 108000, + [SMALL_STATE(3515)] = 108057, + [SMALL_STATE(3516)] = 108170, + [SMALL_STATE(3517)] = 108237, + [SMALL_STATE(3518)] = 108296, + [SMALL_STATE(3519)] = 108351, + [SMALL_STATE(3520)] = 108406, + [SMALL_STATE(3521)] = 108519, + [SMALL_STATE(3522)] = 108586, + [SMALL_STATE(3523)] = 108643, + [SMALL_STATE(3524)] = 108756, + [SMALL_STATE(3525)] = 108813, + [SMALL_STATE(3526)] = 108880, + [SMALL_STATE(3527)] = 108947, + [SMALL_STATE(3528)] = 109060, + [SMALL_STATE(3529)] = 109127, + [SMALL_STATE(3530)] = 109184, + [SMALL_STATE(3531)] = 109239, + [SMALL_STATE(3532)] = 109298, + [SMALL_STATE(3533)] = 109357, + [SMALL_STATE(3534)] = 109418, + [SMALL_STATE(3535)] = 109477, + [SMALL_STATE(3536)] = 109590, + [SMALL_STATE(3537)] = 109647, + [SMALL_STATE(3538)] = 109704, + [SMALL_STATE(3539)] = 109771, + [SMALL_STATE(3540)] = 109826, + [SMALL_STATE(3541)] = 109881, + [SMALL_STATE(3542)] = 109940, + [SMALL_STATE(3543)] = 110055, + [SMALL_STATE(3544)] = 110168, + [SMALL_STATE(3545)] = 110281, + [SMALL_STATE(3546)] = 110394, + [SMALL_STATE(3547)] = 110461, + [SMALL_STATE(3548)] = 110574, + [SMALL_STATE(3549)] = 110687, + [SMALL_STATE(3550)] = 110750, + [SMALL_STATE(3551)] = 110805, + [SMALL_STATE(3552)] = 110862, + [SMALL_STATE(3553)] = 110929, + [SMALL_STATE(3554)] = 110986, + [SMALL_STATE(3555)] = 111041, + [SMALL_STATE(3556)] = 111096, + [SMALL_STATE(3557)] = 111153, + [SMALL_STATE(3558)] = 111212, + [SMALL_STATE(3559)] = 111267, + [SMALL_STATE(3560)] = 111330, + [SMALL_STATE(3561)] = 111387, + [SMALL_STATE(3562)] = 111444, + [SMALL_STATE(3563)] = 111507, + [SMALL_STATE(3564)] = 111574, + [SMALL_STATE(3565)] = 111629, + [SMALL_STATE(3566)] = 111742, + [SMALL_STATE(3567)] = 111855, + [SMALL_STATE(3568)] = 111910, + [SMALL_STATE(3569)] = 111965, + [SMALL_STATE(3570)] = 112078, + [SMALL_STATE(3571)] = 112183, + [SMALL_STATE(3572)] = 112274, + [SMALL_STATE(3573)] = 112357, + [SMALL_STATE(3574)] = 112438, + [SMALL_STATE(3575)] = 112497, + [SMALL_STATE(3576)] = 112610, + [SMALL_STATE(3577)] = 112677, + [SMALL_STATE(3578)] = 112776, + [SMALL_STATE(3579)] = 112835, + [SMALL_STATE(3580)] = 112932, + [SMALL_STATE(3581)] = 112991, + [SMALL_STATE(3582)] = 113050, + [SMALL_STATE(3583)] = 113105, + [SMALL_STATE(3584)] = 113160, + [SMALL_STATE(3585)] = 113219, + [SMALL_STATE(3586)] = 113286, + [SMALL_STATE(3587)] = 113381, + [SMALL_STATE(3588)] = 113436, + [SMALL_STATE(3589)] = 113519, + [SMALL_STATE(3590)] = 113602, + [SMALL_STATE(3591)] = 113657, + [SMALL_STATE(3592)] = 113724, + [SMALL_STATE(3593)] = 113837, + [SMALL_STATE(3594)] = 113940, + [SMALL_STATE(3595)] = 114007, + [SMALL_STATE(3596)] = 114066, + [SMALL_STATE(3597)] = 114167, + [SMALL_STATE(3598)] = 114244, + [SMALL_STATE(3599)] = 114347, + [SMALL_STATE(3600)] = 114420, + [SMALL_STATE(3601)] = 114475, + [SMALL_STATE(3602)] = 114532, + [SMALL_STATE(3603)] = 114619, + [SMALL_STATE(3604)] = 114732, + [SMALL_STATE(3605)] = 114845, + [SMALL_STATE(3606)] = 114958, + [SMALL_STATE(3607)] = 115025, + [SMALL_STATE(3608)] = 115086, + [SMALL_STATE(3609)] = 115199, + [SMALL_STATE(3610)] = 115312, + [SMALL_STATE(3611)] = 115393, + [SMALL_STATE(3612)] = 115506, + [SMALL_STATE(3613)] = 115561, + [SMALL_STATE(3614)] = 115628, + [SMALL_STATE(3615)] = 115683, + [SMALL_STATE(3616)] = 115750, + [SMALL_STATE(3617)] = 115817, + [SMALL_STATE(3618)] = 115930, + [SMALL_STATE(3619)] = 115985, + [SMALL_STATE(3620)] = 116040, + [SMALL_STATE(3621)] = 116095, + [SMALL_STATE(3622)] = 116208, + [SMALL_STATE(3623)] = 116321, + [SMALL_STATE(3624)] = 116396, + [SMALL_STATE(3625)] = 116471, + [SMALL_STATE(3626)] = 116552, + [SMALL_STATE(3627)] = 116665, + [SMALL_STATE(3628)] = 116724, + [SMALL_STATE(3629)] = 116797, + [SMALL_STATE(3630)] = 116860, + [SMALL_STATE(3631)] = 116973, + [SMALL_STATE(3632)] = 117028, + [SMALL_STATE(3633)] = 117141, + [SMALL_STATE(3634)] = 117254, + [SMALL_STATE(3635)] = 117313, + [SMALL_STATE(3636)] = 117380, + [SMALL_STATE(3637)] = 117493, + [SMALL_STATE(3638)] = 117552, + [SMALL_STATE(3639)] = 117611, + [SMALL_STATE(3640)] = 117670, + [SMALL_STATE(3641)] = 117753, + [SMALL_STATE(3642)] = 117808, + [SMALL_STATE(3643)] = 117863, + [SMALL_STATE(3644)] = 117922, + [SMALL_STATE(3645)] = 118013, + [SMALL_STATE(3646)] = 118074, + [SMALL_STATE(3647)] = 118133, + [SMALL_STATE(3648)] = 118246, + [SMALL_STATE(3649)] = 118301, + [SMALL_STATE(3650)] = 118362, + [SMALL_STATE(3651)] = 118417, + [SMALL_STATE(3652)] = 118476, + [SMALL_STATE(3653)] = 118543, + [SMALL_STATE(3654)] = 118608, + [SMALL_STATE(3655)] = 118667, + [SMALL_STATE(3656)] = 118728, + [SMALL_STATE(3657)] = 118795, + [SMALL_STATE(3658)] = 118850, + [SMALL_STATE(3659)] = 118963, + [SMALL_STATE(3660)] = 119018, + [SMALL_STATE(3661)] = 119073, + [SMALL_STATE(3662)] = 119140, + [SMALL_STATE(3663)] = 119201, + [SMALL_STATE(3664)] = 119268, + [SMALL_STATE(3665)] = 119323, + [SMALL_STATE(3666)] = 119384, + [SMALL_STATE(3667)] = 119443, + [SMALL_STATE(3668)] = 119556, + [SMALL_STATE(3669)] = 119623, + [SMALL_STATE(3670)] = 119736, + [SMALL_STATE(3671)] = 119849, + [SMALL_STATE(3672)] = 119906, + [SMALL_STATE(3673)] = 120019, + [SMALL_STATE(3674)] = 120132, + [SMALL_STATE(3675)] = 120245, + [SMALL_STATE(3676)] = 120358, + [SMALL_STATE(3677)] = 120471, + [SMALL_STATE(3678)] = 120584, + [SMALL_STATE(3679)] = 120689, + [SMALL_STATE(3680)] = 120748, + [SMALL_STATE(3681)] = 120807, + [SMALL_STATE(3682)] = 120920, + [SMALL_STATE(3683)] = 121011, + [SMALL_STATE(3684)] = 121070, + [SMALL_STATE(3685)] = 121125, + [SMALL_STATE(3686)] = 121192, + [SMALL_STATE(3687)] = 121275, + [SMALL_STATE(3688)] = 121356, + [SMALL_STATE(3689)] = 121415, + [SMALL_STATE(3690)] = 121478, + [SMALL_STATE(3691)] = 121537, + [SMALL_STATE(3692)] = 121636, + [SMALL_STATE(3693)] = 121691, + [SMALL_STATE(3694)] = 121752, + [SMALL_STATE(3695)] = 121809, + [SMALL_STATE(3696)] = 121906, + [SMALL_STATE(3697)] = 122001, + [SMALL_STATE(3698)] = 122084, + [SMALL_STATE(3699)] = 122187, + [SMALL_STATE(3700)] = 122288, + [SMALL_STATE(3701)] = 122361, + [SMALL_STATE(3702)] = 122438, + [SMALL_STATE(3703)] = 122525, + [SMALL_STATE(3704)] = 122592, + [SMALL_STATE(3705)] = 122651, + [SMALL_STATE(3706)] = 122764, + [SMALL_STATE(3707)] = 122845, + [SMALL_STATE(3708)] = 122958, + [SMALL_STATE(3709)] = 123041, + [SMALL_STATE(3710)] = 123122, + [SMALL_STATE(3711)] = 123235, + [SMALL_STATE(3712)] = 123334, + [SMALL_STATE(3713)] = 123389, + [SMALL_STATE(3714)] = 123464, + [SMALL_STATE(3715)] = 123519, + [SMALL_STATE(3716)] = 123586, + [SMALL_STATE(3717)] = 123699, + [SMALL_STATE(3718)] = 123754, + [SMALL_STATE(3719)] = 123809, + [SMALL_STATE(3720)] = 123874, + [SMALL_STATE(3721)] = 123929, + [SMALL_STATE(3722)] = 123984, + [SMALL_STATE(3723)] = 124039, + [SMALL_STATE(3724)] = 124104, + [SMALL_STATE(3725)] = 124171, + [SMALL_STATE(3726)] = 124234, + [SMALL_STATE(3727)] = 124331, + [SMALL_STATE(3728)] = 124444, + [SMALL_STATE(3729)] = 124505, + [SMALL_STATE(3730)] = 124600, + [SMALL_STATE(3731)] = 124665, + [SMALL_STATE(3732)] = 124720, + [SMALL_STATE(3733)] = 124803, + [SMALL_STATE(3734)] = 124916, + [SMALL_STATE(3735)] = 124971, + [SMALL_STATE(3736)] = 125026, + [SMALL_STATE(3737)] = 125081, + [SMALL_STATE(3738)] = 125136, + [SMALL_STATE(3739)] = 125241, + [SMALL_STATE(3740)] = 125354, + [SMALL_STATE(3741)] = 125409, + [SMALL_STATE(3742)] = 125468, + [SMALL_STATE(3743)] = 125581, + [SMALL_STATE(3744)] = 125640, + [SMALL_STATE(3745)] = 125695, + [SMALL_STATE(3746)] = 125762, + [SMALL_STATE(3747)] = 125875, + [SMALL_STATE(3748)] = 125976, + [SMALL_STATE(3749)] = 126053, + [SMALL_STATE(3750)] = 126108, + [SMALL_STATE(3751)] = 126195, + [SMALL_STATE(3752)] = 126262, + [SMALL_STATE(3753)] = 126317, + [SMALL_STATE(3754)] = 126419, + [SMALL_STATE(3755)] = 126497, + [SMALL_STATE(3756)] = 126607, + [SMALL_STATE(3757)] = 126717, + [SMALL_STATE(3758)] = 126821, + [SMALL_STATE(3759)] = 126877, + [SMALL_STATE(3760)] = 126945, + [SMALL_STATE(3761)] = 127055, + [SMALL_STATE(3762)] = 127165, + [SMALL_STATE(3763)] = 127233, + [SMALL_STATE(3764)] = 127293, + [SMALL_STATE(3765)] = 127361, + [SMALL_STATE(3766)] = 127429, + [SMALL_STATE(3767)] = 127539, + [SMALL_STATE(3768)] = 127613, + [SMALL_STATE(3769)] = 127681, + [SMALL_STATE(3770)] = 127771, + [SMALL_STATE(3771)] = 127827, + [SMALL_STATE(3772)] = 127895, + [SMALL_STATE(3773)] = 127963, + [SMALL_STATE(3774)] = 128031, + [SMALL_STATE(3775)] = 128103, + [SMALL_STATE(3776)] = 128213, + [SMALL_STATE(3777)] = 128287, + [SMALL_STATE(3778)] = 128349, + [SMALL_STATE(3779)] = 128417, + [SMALL_STATE(3780)] = 128495, + [SMALL_STATE(3781)] = 128573, + [SMALL_STATE(3782)] = 128641, + [SMALL_STATE(3783)] = 128709, + [SMALL_STATE(3784)] = 128783, + [SMALL_STATE(3785)] = 128855, + [SMALL_STATE(3786)] = 128923, + [SMALL_STATE(3787)] = 128997, + [SMALL_STATE(3788)] = 129057, + [SMALL_STATE(3789)] = 129119, + [SMALL_STATE(3790)] = 129175, + [SMALL_STATE(3791)] = 129237, + [SMALL_STATE(3792)] = 129295, + [SMALL_STATE(3793)] = 129367, + [SMALL_STATE(3794)] = 129477, + [SMALL_STATE(3795)] = 129545, + [SMALL_STATE(3796)] = 129655, + [SMALL_STATE(3797)] = 129715, + [SMALL_STATE(3798)] = 129775, + [SMALL_STATE(3799)] = 129885, + [SMALL_STATE(3800)] = 129947, + [SMALL_STATE(3801)] = 130015, + [SMALL_STATE(3802)] = 130083, + [SMALL_STATE(3803)] = 130151, + [SMALL_STATE(3804)] = 130219, + [SMALL_STATE(3805)] = 130287, + [SMALL_STATE(3806)] = 130353, + [SMALL_STATE(3807)] = 130421, + [SMALL_STATE(3808)] = 130489, + [SMALL_STATE(3809)] = 130563, + [SMALL_STATE(3810)] = 130623, + [SMALL_STATE(3811)] = 130681, + [SMALL_STATE(3812)] = 130761, + [SMALL_STATE(3813)] = 130821, + [SMALL_STATE(3814)] = 130931, + [SMALL_STATE(3815)] = 131041, + [SMALL_STATE(3816)] = 131123, + [SMALL_STATE(3817)] = 131233, + [SMALL_STATE(3818)] = 131293, + [SMALL_STATE(3819)] = 131355, + [SMALL_STATE(3820)] = 131423, + [SMALL_STATE(3821)] = 131509, + [SMALL_STATE(3822)] = 131577, + [SMALL_STATE(3823)] = 131645, + [SMALL_STATE(3824)] = 131713, + [SMALL_STATE(3825)] = 131823, + [SMALL_STATE(3826)] = 131891, + [SMALL_STATE(3827)] = 132001, + [SMALL_STATE(3828)] = 132057, + [SMALL_STATE(3829)] = 132125, + [SMALL_STATE(3830)] = 132193, + [SMALL_STATE(3831)] = 132261, + [SMALL_STATE(3832)] = 132329, + [SMALL_STATE(3833)] = 132397, + [SMALL_STATE(3834)] = 132507, + [SMALL_STATE(3835)] = 132569, + [SMALL_STATE(3836)] = 132637, + [SMALL_STATE(3837)] = 132747, + [SMALL_STATE(3838)] = 132815, + [SMALL_STATE(3839)] = 132887, + [SMALL_STATE(3840)] = 132955, + [SMALL_STATE(3841)] = 133031, + [SMALL_STATE(3842)] = 133099, + [SMALL_STATE(3843)] = 133159, + [SMALL_STATE(3844)] = 133227, + [SMALL_STATE(3845)] = 133295, + [SMALL_STATE(3846)] = 133363, + [SMALL_STATE(3847)] = 133443, + [SMALL_STATE(3848)] = 133541, + [SMALL_STATE(3849)] = 133609, + [SMALL_STATE(3850)] = 133661, + [SMALL_STATE(3851)] = 133757, + [SMALL_STATE(3852)] = 133825, + [SMALL_STATE(3853)] = 133919, + [SMALL_STATE(3854)] = 133981, + [SMALL_STATE(3855)] = 134081, + [SMALL_STATE(3856)] = 134163, + [SMALL_STATE(3857)] = 134231, + [SMALL_STATE(3858)] = 134287, + [SMALL_STATE(3859)] = 134358, + [SMALL_STATE(3860)] = 134429, + [SMALL_STATE(3861)] = 134500, + [SMALL_STATE(3862)] = 134571, + [SMALL_STATE(3863)] = 134626, + [SMALL_STATE(3864)] = 134679, + [SMALL_STATE(3865)] = 134750, + [SMALL_STATE(3866)] = 134821, + [SMALL_STATE(3867)] = 134892, + [SMALL_STATE(3868)] = 134963, + [SMALL_STATE(3869)] = 135024, + [SMALL_STATE(3870)] = 135095, + [SMALL_STATE(3871)] = 135162, + [SMALL_STATE(3872)] = 135217, + [SMALL_STATE(3873)] = 135276, + [SMALL_STATE(3874)] = 135341, + [SMALL_STATE(3875)] = 135396, + [SMALL_STATE(3876)] = 135455, + [SMALL_STATE(3877)] = 135508, + [SMALL_STATE(3878)] = 135567, + [SMALL_STATE(3879)] = 135626, + [SMALL_STATE(3880)] = 135697, + [SMALL_STATE(3881)] = 135752, + [SMALL_STATE(3882)] = 135807, + [SMALL_STATE(3883)] = 135878, + [SMALL_STATE(3884)] = 135933, + [SMALL_STATE(3885)] = 136000, + [SMALL_STATE(3886)] = 136071, + [SMALL_STATE(3887)] = 136130, + [SMALL_STATE(3888)] = 136185, + [SMALL_STATE(3889)] = 136240, + [SMALL_STATE(3890)] = 136295, + [SMALL_STATE(3891)] = 136366, + [SMALL_STATE(3892)] = 136423, + [SMALL_STATE(3893)] = 136478, + [SMALL_STATE(3894)] = 136549, + [SMALL_STATE(3895)] = 136604, + [SMALL_STATE(3896)] = 136661, + [SMALL_STATE(3897)] = 136720, + [SMALL_STATE(3898)] = 136773, + [SMALL_STATE(3899)] = 136844, + [SMALL_STATE(3900)] = 136915, + [SMALL_STATE(3901)] = 136977, + [SMALL_STATE(3902)] = 137039, + [SMALL_STATE(3903)] = 137101, + [SMALL_STATE(3904)] = 137159, + [SMALL_STATE(3905)] = 137213, + [SMALL_STATE(3906)] = 137275, + [SMALL_STATE(3907)] = 137325, + [SMALL_STATE(3908)] = 137389, + [SMALL_STATE(3909)] = 137451, + [SMALL_STATE(3910)] = 137501, + [SMALL_STATE(3911)] = 137563, + [SMALL_STATE(3912)] = 137625, + [SMALL_STATE(3913)] = 137687, + [SMALL_STATE(3914)] = 137749, + [SMALL_STATE(3915)] = 137811, + [SMALL_STATE(3916)] = 137873, + [SMALL_STATE(3917)] = 137935, + [SMALL_STATE(3918)] = 137987, + [SMALL_STATE(3919)] = 138037, + [SMALL_STATE(3920)] = 138095, + [SMALL_STATE(3921)] = 138147, + [SMALL_STATE(3922)] = 138209, + [SMALL_STATE(3923)] = 138273, + [SMALL_STATE(3924)] = 138335, + [SMALL_STATE(3925)] = 138399, + [SMALL_STATE(3926)] = 138449, + [SMALL_STATE(3927)] = 138511, + [SMALL_STATE(3928)] = 138573, + [SMALL_STATE(3929)] = 138635, + [SMALL_STATE(3930)] = 138697, + [SMALL_STATE(3931)] = 138759, + [SMALL_STATE(3932)] = 138821, + [SMALL_STATE(3933)] = 138885, + [SMALL_STATE(3934)] = 138947, + [SMALL_STATE(3935)] = 139009, + [SMALL_STATE(3936)] = 139071, + [SMALL_STATE(3937)] = 139121, + [SMALL_STATE(3938)] = 139183, + [SMALL_STATE(3939)] = 139233, + [SMALL_STATE(3940)] = 139283, + [SMALL_STATE(3941)] = 139345, + [SMALL_STATE(3942)] = 139409, + [SMALL_STATE(3943)] = 139471, + [SMALL_STATE(3944)] = 139521, + [SMALL_STATE(3945)] = 139575, + [SMALL_STATE(3946)] = 139637, + [SMALL_STATE(3947)] = 139693, + [SMALL_STATE(3948)] = 139755, + [SMALL_STATE(3949)] = 139809, + [SMALL_STATE(3950)] = 139871, + [SMALL_STATE(3951)] = 139921, + [SMALL_STATE(3952)] = 139983, + [SMALL_STATE(3953)] = 140045, + [SMALL_STATE(3954)] = 140109, + [SMALL_STATE(3955)] = 140165, + [SMALL_STATE(3956)] = 140227, + [SMALL_STATE(3957)] = 140289, + [SMALL_STATE(3958)] = 140351, + [SMALL_STATE(3959)] = 140415, + [SMALL_STATE(3960)] = 140477, + [SMALL_STATE(3961)] = 140541, + [SMALL_STATE(3962)] = 140603, + [SMALL_STATE(3963)] = 140665, + [SMALL_STATE(3964)] = 140719, + [SMALL_STATE(3965)] = 140783, + [SMALL_STATE(3966)] = 140841, + [SMALL_STATE(3967)] = 140903, + [SMALL_STATE(3968)] = 140961, + [SMALL_STATE(3969)] = 141023, + [SMALL_STATE(3970)] = 141087, + [SMALL_STATE(3971)] = 141141, + [SMALL_STATE(3972)] = 141199, + [SMALL_STATE(3973)] = 141261, + [SMALL_STATE(3974)] = 141311, + [SMALL_STATE(3975)] = 141375, + [SMALL_STATE(3976)] = 141427, + [SMALL_STATE(3977)] = 141479, + [SMALL_STATE(3978)] = 141533, + [SMALL_STATE(3979)] = 141597, + [SMALL_STATE(3980)] = 141661, + [SMALL_STATE(3981)] = 141723, + [SMALL_STATE(3982)] = 141787, + [SMALL_STATE(3983)] = 141838, + [SMALL_STATE(3984)] = 141889, + [SMALL_STATE(3985)] = 141940, + [SMALL_STATE(3986)] = 141991, + [SMALL_STATE(3987)] = 142042, + [SMALL_STATE(3988)] = 142093, + [SMALL_STATE(3989)] = 142146, + [SMALL_STATE(3990)] = 142197, + [SMALL_STATE(3991)] = 142250, + [SMALL_STATE(3992)] = 142301, + [SMALL_STATE(3993)] = 142352, + [SMALL_STATE(3994)] = 142405, + [SMALL_STATE(3995)] = 142458, + [SMALL_STATE(3996)] = 142507, + [SMALL_STATE(3997)] = 142556, + [SMALL_STATE(3998)] = 142609, + [SMALL_STATE(3999)] = 142658, + [SMALL_STATE(4000)] = 142711, + [SMALL_STATE(4001)] = 142764, + [SMALL_STATE(4002)] = 142815, + [SMALL_STATE(4003)] = 142868, + [SMALL_STATE(4004)] = 142919, + [SMALL_STATE(4005)] = 142968, + [SMALL_STATE(4006)] = 143021, + [SMALL_STATE(4007)] = 143072, + [SMALL_STATE(4008)] = 143121, + [SMALL_STATE(4009)] = 143172, + [SMALL_STATE(4010)] = 143221, + [SMALL_STATE(4011)] = 143270, + [SMALL_STATE(4012)] = 143321, + [SMALL_STATE(4013)] = 143370, + [SMALL_STATE(4014)] = 143421, + [SMALL_STATE(4015)] = 143472, + [SMALL_STATE(4016)] = 143525, + [SMALL_STATE(4017)] = 143576, + [SMALL_STATE(4018)] = 143627, + [SMALL_STATE(4019)] = 143676, + [SMALL_STATE(4020)] = 143729, + [SMALL_STATE(4021)] = 143782, + [SMALL_STATE(4022)] = 143833, + [SMALL_STATE(4023)] = 143882, + [SMALL_STATE(4024)] = 143933, + [SMALL_STATE(4025)] = 143984, + [SMALL_STATE(4026)] = 144037, + [SMALL_STATE(4027)] = 144086, + [SMALL_STATE(4028)] = 144137, + [SMALL_STATE(4029)] = 144187, + [SMALL_STATE(4030)] = 144235, + [SMALL_STATE(4031)] = 144283, + [SMALL_STATE(4032)] = 144331, + [SMALL_STATE(4033)] = 144379, + [SMALL_STATE(4034)] = 144429, + [SMALL_STATE(4035)] = 144479, + [SMALL_STATE(4036)] = 144529, + [SMALL_STATE(4037)] = 144577, + [SMALL_STATE(4038)] = 144625, + [SMALL_STATE(4039)] = 144673, + [SMALL_STATE(4040)] = 144721, + [SMALL_STATE(4041)] = 144769, + [SMALL_STATE(4042)] = 144817, + [SMALL_STATE(4043)] = 144865, + [SMALL_STATE(4044)] = 144913, + [SMALL_STATE(4045)] = 144961, + [SMALL_STATE(4046)] = 145009, + [SMALL_STATE(4047)] = 145057, + [SMALL_STATE(4048)] = 145105, + [SMALL_STATE(4049)] = 145153, + [SMALL_STATE(4050)] = 145201, + [SMALL_STATE(4051)] = 145249, + [SMALL_STATE(4052)] = 145297, + [SMALL_STATE(4053)] = 145345, + [SMALL_STATE(4054)] = 145393, + [SMALL_STATE(4055)] = 145441, + [SMALL_STATE(4056)] = 145489, + [SMALL_STATE(4057)] = 145537, + [SMALL_STATE(4058)] = 145585, + [SMALL_STATE(4059)] = 145633, + [SMALL_STATE(4060)] = 145681, + [SMALL_STATE(4061)] = 145729, + [SMALL_STATE(4062)] = 145777, + [SMALL_STATE(4063)] = 145825, + [SMALL_STATE(4064)] = 145873, + [SMALL_STATE(4065)] = 145921, + [SMALL_STATE(4066)] = 145971, + [SMALL_STATE(4067)] = 146019, + [SMALL_STATE(4068)] = 146067, + [SMALL_STATE(4069)] = 146115, + [SMALL_STATE(4070)] = 146163, + [SMALL_STATE(4071)] = 146211, + [SMALL_STATE(4072)] = 146259, + [SMALL_STATE(4073)] = 146307, + [SMALL_STATE(4074)] = 146355, + [SMALL_STATE(4075)] = 146403, + [SMALL_STATE(4076)] = 146451, + [SMALL_STATE(4077)] = 146499, + [SMALL_STATE(4078)] = 146547, + [SMALL_STATE(4079)] = 146595, + [SMALL_STATE(4080)] = 146643, + [SMALL_STATE(4081)] = 146691, + [SMALL_STATE(4082)] = 146739, + [SMALL_STATE(4083)] = 146787, + [SMALL_STATE(4084)] = 146835, + [SMALL_STATE(4085)] = 146883, + [SMALL_STATE(4086)] = 146931, + [SMALL_STATE(4087)] = 146979, + [SMALL_STATE(4088)] = 147027, + [SMALL_STATE(4089)] = 147075, + [SMALL_STATE(4090)] = 147123, + [SMALL_STATE(4091)] = 147171, + [SMALL_STATE(4092)] = 147219, + [SMALL_STATE(4093)] = 147267, + [SMALL_STATE(4094)] = 147315, + [SMALL_STATE(4095)] = 147363, + [SMALL_STATE(4096)] = 147411, + [SMALL_STATE(4097)] = 147461, + [SMALL_STATE(4098)] = 147509, + [SMALL_STATE(4099)] = 147557, + [SMALL_STATE(4100)] = 147605, + [SMALL_STATE(4101)] = 147653, + [SMALL_STATE(4102)] = 147701, + [SMALL_STATE(4103)] = 147749, + [SMALL_STATE(4104)] = 147797, + [SMALL_STATE(4105)] = 147845, + [SMALL_STATE(4106)] = 147893, + [SMALL_STATE(4107)] = 147941, + [SMALL_STATE(4108)] = 147989, + [SMALL_STATE(4109)] = 148037, + [SMALL_STATE(4110)] = 148085, + [SMALL_STATE(4111)] = 148133, + [SMALL_STATE(4112)] = 148181, + [SMALL_STATE(4113)] = 148229, + [SMALL_STATE(4114)] = 148277, + [SMALL_STATE(4115)] = 148325, + [SMALL_STATE(4116)] = 148373, + [SMALL_STATE(4117)] = 148421, + [SMALL_STATE(4118)] = 148469, + [SMALL_STATE(4119)] = 148517, + [SMALL_STATE(4120)] = 148565, + [SMALL_STATE(4121)] = 148613, + [SMALL_STATE(4122)] = 148661, + [SMALL_STATE(4123)] = 148709, + [SMALL_STATE(4124)] = 148757, + [SMALL_STATE(4125)] = 148805, + [SMALL_STATE(4126)] = 148853, + [SMALL_STATE(4127)] = 148901, + [SMALL_STATE(4128)] = 148949, + [SMALL_STATE(4129)] = 148999, + [SMALL_STATE(4130)] = 149049, + [SMALL_STATE(4131)] = 149097, + [SMALL_STATE(4132)] = 149145, + [SMALL_STATE(4133)] = 149193, + [SMALL_STATE(4134)] = 149243, + [SMALL_STATE(4135)] = 149291, + [SMALL_STATE(4136)] = 149339, + [SMALL_STATE(4137)] = 149387, + [SMALL_STATE(4138)] = 149435, + [SMALL_STATE(4139)] = 149483, + [SMALL_STATE(4140)] = 149531, + [SMALL_STATE(4141)] = 149579, + [SMALL_STATE(4142)] = 149627, + [SMALL_STATE(4143)] = 149675, + [SMALL_STATE(4144)] = 149723, + [SMALL_STATE(4145)] = 149771, + [SMALL_STATE(4146)] = 149819, + [SMALL_STATE(4147)] = 149867, + [SMALL_STATE(4148)] = 149915, + [SMALL_STATE(4149)] = 149963, + [SMALL_STATE(4150)] = 150011, + [SMALL_STATE(4151)] = 150059, + [SMALL_STATE(4152)] = 150107, + [SMALL_STATE(4153)] = 150155, + [SMALL_STATE(4154)] = 150203, + [SMALL_STATE(4155)] = 150251, + [SMALL_STATE(4156)] = 150299, + [SMALL_STATE(4157)] = 150347, + [SMALL_STATE(4158)] = 150395, + [SMALL_STATE(4159)] = 150443, + [SMALL_STATE(4160)] = 150491, + [SMALL_STATE(4161)] = 150539, + [SMALL_STATE(4162)] = 150587, + [SMALL_STATE(4163)] = 150635, + [SMALL_STATE(4164)] = 150683, + [SMALL_STATE(4165)] = 150731, + [SMALL_STATE(4166)] = 150781, + [SMALL_STATE(4167)] = 150829, + [SMALL_STATE(4168)] = 150877, + [SMALL_STATE(4169)] = 150925, + [SMALL_STATE(4170)] = 150973, + [SMALL_STATE(4171)] = 151021, + [SMALL_STATE(4172)] = 151069, + [SMALL_STATE(4173)] = 151117, + [SMALL_STATE(4174)] = 151165, + [SMALL_STATE(4175)] = 151213, + [SMALL_STATE(4176)] = 151265, + [SMALL_STATE(4177)] = 151313, + [SMALL_STATE(4178)] = 151361, + [SMALL_STATE(4179)] = 151409, + [SMALL_STATE(4180)] = 151457, + [SMALL_STATE(4181)] = 151507, + [SMALL_STATE(4182)] = 151555, + [SMALL_STATE(4183)] = 151605, + [SMALL_STATE(4184)] = 151653, + [SMALL_STATE(4185)] = 151701, + [SMALL_STATE(4186)] = 151749, + [SMALL_STATE(4187)] = 151797, + [SMALL_STATE(4188)] = 151845, + [SMALL_STATE(4189)] = 151893, + [SMALL_STATE(4190)] = 151941, + [SMALL_STATE(4191)] = 151991, + [SMALL_STATE(4192)] = 152039, + [SMALL_STATE(4193)] = 152089, + [SMALL_STATE(4194)] = 152139, + [SMALL_STATE(4195)] = 152187, + [SMALL_STATE(4196)] = 152235, + [SMALL_STATE(4197)] = 152285, + [SMALL_STATE(4198)] = 152333, + [SMALL_STATE(4199)] = 152381, + [SMALL_STATE(4200)] = 152429, + [SMALL_STATE(4201)] = 152477, + [SMALL_STATE(4202)] = 152525, + [SMALL_STATE(4203)] = 152573, + [SMALL_STATE(4204)] = 152623, + [SMALL_STATE(4205)] = 152671, + [SMALL_STATE(4206)] = 152721, + [SMALL_STATE(4207)] = 152771, + [SMALL_STATE(4208)] = 152821, + [SMALL_STATE(4209)] = 152869, + [SMALL_STATE(4210)] = 152917, + [SMALL_STATE(4211)] = 152965, + [SMALL_STATE(4212)] = 153013, + [SMALL_STATE(4213)] = 153061, + [SMALL_STATE(4214)] = 153109, + [SMALL_STATE(4215)] = 153157, + [SMALL_STATE(4216)] = 153205, + [SMALL_STATE(4217)] = 153253, + [SMALL_STATE(4218)] = 153301, + [SMALL_STATE(4219)] = 153349, + [SMALL_STATE(4220)] = 153397, + [SMALL_STATE(4221)] = 153444, + [SMALL_STATE(4222)] = 153491, + [SMALL_STATE(4223)] = 153538, + [SMALL_STATE(4224)] = 153585, + [SMALL_STATE(4225)] = 153632, + [SMALL_STATE(4226)] = 153679, + [SMALL_STATE(4227)] = 153726, + [SMALL_STATE(4228)] = 153773, + [SMALL_STATE(4229)] = 153820, + [SMALL_STATE(4230)] = 153867, + [SMALL_STATE(4231)] = 153914, + [SMALL_STATE(4232)] = 153961, + [SMALL_STATE(4233)] = 154008, + [SMALL_STATE(4234)] = 154055, + [SMALL_STATE(4235)] = 154102, + [SMALL_STATE(4236)] = 154149, + [SMALL_STATE(4237)] = 154196, + [SMALL_STATE(4238)] = 154243, + [SMALL_STATE(4239)] = 154290, + [SMALL_STATE(4240)] = 154337, + [SMALL_STATE(4241)] = 154384, + [SMALL_STATE(4242)] = 154431, + [SMALL_STATE(4243)] = 154478, + [SMALL_STATE(4244)] = 154525, + [SMALL_STATE(4245)] = 154572, + [SMALL_STATE(4246)] = 154619, + [SMALL_STATE(4247)] = 154666, + [SMALL_STATE(4248)] = 154713, + [SMALL_STATE(4249)] = 154760, + [SMALL_STATE(4250)] = 154807, + [SMALL_STATE(4251)] = 154854, + [SMALL_STATE(4252)] = 154901, + [SMALL_STATE(4253)] = 154948, + [SMALL_STATE(4254)] = 154995, + [SMALL_STATE(4255)] = 155042, + [SMALL_STATE(4256)] = 155089, + [SMALL_STATE(4257)] = 155136, + [SMALL_STATE(4258)] = 155183, + [SMALL_STATE(4259)] = 155230, + [SMALL_STATE(4260)] = 155277, + [SMALL_STATE(4261)] = 155324, + [SMALL_STATE(4262)] = 155371, + [SMALL_STATE(4263)] = 155418, + [SMALL_STATE(4264)] = 155465, + [SMALL_STATE(4265)] = 155512, + [SMALL_STATE(4266)] = 155559, + [SMALL_STATE(4267)] = 155606, + [SMALL_STATE(4268)] = 155653, + [SMALL_STATE(4269)] = 155700, + [SMALL_STATE(4270)] = 155747, + [SMALL_STATE(4271)] = 155794, + [SMALL_STATE(4272)] = 155841, + [SMALL_STATE(4273)] = 155888, + [SMALL_STATE(4274)] = 155935, + [SMALL_STATE(4275)] = 155982, + [SMALL_STATE(4276)] = 156029, + [SMALL_STATE(4277)] = 156076, + [SMALL_STATE(4278)] = 156123, + [SMALL_STATE(4279)] = 156170, + [SMALL_STATE(4280)] = 156217, + [SMALL_STATE(4281)] = 156264, + [SMALL_STATE(4282)] = 156311, + [SMALL_STATE(4283)] = 156358, + [SMALL_STATE(4284)] = 156405, + [SMALL_STATE(4285)] = 156452, + [SMALL_STATE(4286)] = 156499, + [SMALL_STATE(4287)] = 156546, + [SMALL_STATE(4288)] = 156593, + [SMALL_STATE(4289)] = 156640, + [SMALL_STATE(4290)] = 156687, + [SMALL_STATE(4291)] = 156734, + [SMALL_STATE(4292)] = 156781, + [SMALL_STATE(4293)] = 156828, + [SMALL_STATE(4294)] = 156875, + [SMALL_STATE(4295)] = 156922, + [SMALL_STATE(4296)] = 156969, + [SMALL_STATE(4297)] = 157016, + [SMALL_STATE(4298)] = 157063, + [SMALL_STATE(4299)] = 157110, + [SMALL_STATE(4300)] = 157157, + [SMALL_STATE(4301)] = 157204, + [SMALL_STATE(4302)] = 157251, + [SMALL_STATE(4303)] = 157298, + [SMALL_STATE(4304)] = 157345, + [SMALL_STATE(4305)] = 157392, + [SMALL_STATE(4306)] = 157439, + [SMALL_STATE(4307)] = 157486, + [SMALL_STATE(4308)] = 157533, + [SMALL_STATE(4309)] = 157580, + [SMALL_STATE(4310)] = 157627, + [SMALL_STATE(4311)] = 157674, + [SMALL_STATE(4312)] = 157721, + [SMALL_STATE(4313)] = 157768, + [SMALL_STATE(4314)] = 157815, + [SMALL_STATE(4315)] = 157868, + [SMALL_STATE(4316)] = 157915, + [SMALL_STATE(4317)] = 157962, + [SMALL_STATE(4318)] = 158009, + [SMALL_STATE(4319)] = 158056, + [SMALL_STATE(4320)] = 158103, + [SMALL_STATE(4321)] = 158150, + [SMALL_STATE(4322)] = 158197, + [SMALL_STATE(4323)] = 158244, + [SMALL_STATE(4324)] = 158291, + [SMALL_STATE(4325)] = 158338, + [SMALL_STATE(4326)] = 158385, + [SMALL_STATE(4327)] = 158432, + [SMALL_STATE(4328)] = 158479, + [SMALL_STATE(4329)] = 158526, + [SMALL_STATE(4330)] = 158573, + [SMALL_STATE(4331)] = 158620, + [SMALL_STATE(4332)] = 158667, + [SMALL_STATE(4333)] = 158714, + [SMALL_STATE(4334)] = 158761, + [SMALL_STATE(4335)] = 158808, + [SMALL_STATE(4336)] = 158855, + [SMALL_STATE(4337)] = 158902, + [SMALL_STATE(4338)] = 158949, + [SMALL_STATE(4339)] = 158996, + [SMALL_STATE(4340)] = 159043, + [SMALL_STATE(4341)] = 159090, + [SMALL_STATE(4342)] = 159137, + [SMALL_STATE(4343)] = 159184, + [SMALL_STATE(4344)] = 159231, + [SMALL_STATE(4345)] = 159278, + [SMALL_STATE(4346)] = 159325, + [SMALL_STATE(4347)] = 159372, + [SMALL_STATE(4348)] = 159419, + [SMALL_STATE(4349)] = 159466, + [SMALL_STATE(4350)] = 159513, + [SMALL_STATE(4351)] = 159560, + [SMALL_STATE(4352)] = 159607, + [SMALL_STATE(4353)] = 159654, + [SMALL_STATE(4354)] = 159701, + [SMALL_STATE(4355)] = 159748, + [SMALL_STATE(4356)] = 159795, + [SMALL_STATE(4357)] = 159842, + [SMALL_STATE(4358)] = 159889, + [SMALL_STATE(4359)] = 159936, + [SMALL_STATE(4360)] = 159983, + [SMALL_STATE(4361)] = 160030, + [SMALL_STATE(4362)] = 160077, + [SMALL_STATE(4363)] = 160124, + [SMALL_STATE(4364)] = 160171, + [SMALL_STATE(4365)] = 160218, + [SMALL_STATE(4366)] = 160265, + [SMALL_STATE(4367)] = 160312, + [SMALL_STATE(4368)] = 160359, + [SMALL_STATE(4369)] = 160406, + [SMALL_STATE(4370)] = 160453, + [SMALL_STATE(4371)] = 160500, + [SMALL_STATE(4372)] = 160547, + [SMALL_STATE(4373)] = 160594, + [SMALL_STATE(4374)] = 160641, + [SMALL_STATE(4375)] = 160688, + [SMALL_STATE(4376)] = 160735, + [SMALL_STATE(4377)] = 160782, + [SMALL_STATE(4378)] = 160829, + [SMALL_STATE(4379)] = 160876, + [SMALL_STATE(4380)] = 160923, + [SMALL_STATE(4381)] = 160970, + [SMALL_STATE(4382)] = 161017, + [SMALL_STATE(4383)] = 161064, + [SMALL_STATE(4384)] = 161111, + [SMALL_STATE(4385)] = 161158, + [SMALL_STATE(4386)] = 161205, + [SMALL_STATE(4387)] = 161252, + [SMALL_STATE(4388)] = 161299, + [SMALL_STATE(4389)] = 161346, + [SMALL_STATE(4390)] = 161393, + [SMALL_STATE(4391)] = 161440, + [SMALL_STATE(4392)] = 161487, + [SMALL_STATE(4393)] = 161534, + [SMALL_STATE(4394)] = 161581, + [SMALL_STATE(4395)] = 161628, + [SMALL_STATE(4396)] = 161675, + [SMALL_STATE(4397)] = 161722, + [SMALL_STATE(4398)] = 161769, + [SMALL_STATE(4399)] = 161816, + [SMALL_STATE(4400)] = 161863, + [SMALL_STATE(4401)] = 161910, + [SMALL_STATE(4402)] = 161957, + [SMALL_STATE(4403)] = 162004, + [SMALL_STATE(4404)] = 162051, + [SMALL_STATE(4405)] = 162098, + [SMALL_STATE(4406)] = 162145, + [SMALL_STATE(4407)] = 162192, + [SMALL_STATE(4408)] = 162239, + [SMALL_STATE(4409)] = 162286, + [SMALL_STATE(4410)] = 162333, + [SMALL_STATE(4411)] = 162380, + [SMALL_STATE(4412)] = 162427, + [SMALL_STATE(4413)] = 162474, + [SMALL_STATE(4414)] = 162521, + [SMALL_STATE(4415)] = 162568, + [SMALL_STATE(4416)] = 162615, + [SMALL_STATE(4417)] = 162662, + [SMALL_STATE(4418)] = 162709, + [SMALL_STATE(4419)] = 162756, + [SMALL_STATE(4420)] = 162803, + [SMALL_STATE(4421)] = 162850, + [SMALL_STATE(4422)] = 162897, + [SMALL_STATE(4423)] = 162944, + [SMALL_STATE(4424)] = 162991, + [SMALL_STATE(4425)] = 163038, + [SMALL_STATE(4426)] = 163085, + [SMALL_STATE(4427)] = 163132, + [SMALL_STATE(4428)] = 163179, + [SMALL_STATE(4429)] = 163226, + [SMALL_STATE(4430)] = 163273, + [SMALL_STATE(4431)] = 163320, + [SMALL_STATE(4432)] = 163367, + [SMALL_STATE(4433)] = 163414, + [SMALL_STATE(4434)] = 163461, + [SMALL_STATE(4435)] = 163508, + [SMALL_STATE(4436)] = 163555, + [SMALL_STATE(4437)] = 163602, + [SMALL_STATE(4438)] = 163649, + [SMALL_STATE(4439)] = 163696, + [SMALL_STATE(4440)] = 163743, + [SMALL_STATE(4441)] = 163790, + [SMALL_STATE(4442)] = 163837, + [SMALL_STATE(4443)] = 163884, + [SMALL_STATE(4444)] = 163931, + [SMALL_STATE(4445)] = 163989, + [SMALL_STATE(4446)] = 164035, + [SMALL_STATE(4447)] = 164097, + [SMALL_STATE(4448)] = 164143, + [SMALL_STATE(4449)] = 164228, + [SMALL_STATE(4450)] = 164313, + [SMALL_STATE(4451)] = 164398, + [SMALL_STATE(4452)] = 164483, + [SMALL_STATE(4453)] = 164568, + [SMALL_STATE(4454)] = 164653, + [SMALL_STATE(4455)] = 164738, + [SMALL_STATE(4456)] = 164823, + [SMALL_STATE(4457)] = 164908, + [SMALL_STATE(4458)] = 164963, + [SMALL_STATE(4459)] = 165048, + [SMALL_STATE(4460)] = 165133, + [SMALL_STATE(4461)] = 165218, + [SMALL_STATE(4462)] = 165303, + [SMALL_STATE(4463)] = 165388, + [SMALL_STATE(4464)] = 165473, + [SMALL_STATE(4465)] = 165558, + [SMALL_STATE(4466)] = 165602, + [SMALL_STATE(4467)] = 165646, + [SMALL_STATE(4468)] = 165690, + [SMALL_STATE(4469)] = 165738, + [SMALL_STATE(4470)] = 165782, + [SMALL_STATE(4471)] = 165826, + [SMALL_STATE(4472)] = 165878, + [SMALL_STATE(4473)] = 165922, + [SMALL_STATE(4474)] = 165966, + [SMALL_STATE(4475)] = 166010, + [SMALL_STATE(4476)] = 166054, + [SMALL_STATE(4477)] = 166098, + [SMALL_STATE(4478)] = 166142, + [SMALL_STATE(4479)] = 166186, + [SMALL_STATE(4480)] = 166230, + [SMALL_STATE(4481)] = 166279, + [SMALL_STATE(4482)] = 166328, + [SMALL_STATE(4483)] = 166375, + [SMALL_STATE(4484)] = 166417, + [SMALL_STATE(4485)] = 166461, + [SMALL_STATE(4486)] = 166503, + [SMALL_STATE(4487)] = 166545, + [SMALL_STATE(4488)] = 166587, + [SMALL_STATE(4489)] = 166633, + [SMALL_STATE(4490)] = 166677, + [SMALL_STATE(4491)] = 166723, + [SMALL_STATE(4492)] = 166769, + [SMALL_STATE(4493)] = 166815, + [SMALL_STATE(4494)] = 166858, + [SMALL_STATE(4495)] = 166899, + [SMALL_STATE(4496)] = 166942, + [SMALL_STATE(4497)] = 166983, + [SMALL_STATE(4498)] = 167018, + [SMALL_STATE(4499)] = 167053, + [SMALL_STATE(4500)] = 167100, + [SMALL_STATE(4501)] = 167147, + [SMALL_STATE(4502)] = 167194, + [SMALL_STATE(4503)] = 167229, + [SMALL_STATE(4504)] = 167263, + [SMALL_STATE(4505)] = 167297, + [SMALL_STATE(4506)] = 167330, + [SMALL_STATE(4507)] = 167363, + [SMALL_STATE(4508)] = 167396, + [SMALL_STATE(4509)] = 167429, + [SMALL_STATE(4510)] = 167462, + [SMALL_STATE(4511)] = 167495, + [SMALL_STATE(4512)] = 167528, + [SMALL_STATE(4513)] = 167561, + [SMALL_STATE(4514)] = 167594, + [SMALL_STATE(4515)] = 167627, + [SMALL_STATE(4516)] = 167660, + [SMALL_STATE(4517)] = 167693, + [SMALL_STATE(4518)] = 167726, + [SMALL_STATE(4519)] = 167759, + [SMALL_STATE(4520)] = 167792, + [SMALL_STATE(4521)] = 167825, + [SMALL_STATE(4522)] = 167858, + [SMALL_STATE(4523)] = 167891, + [SMALL_STATE(4524)] = 167924, + [SMALL_STATE(4525)] = 167957, + [SMALL_STATE(4526)] = 167990, + [SMALL_STATE(4527)] = 168023, + [SMALL_STATE(4528)] = 168056, + [SMALL_STATE(4529)] = 168089, + [SMALL_STATE(4530)] = 168122, + [SMALL_STATE(4531)] = 168155, + [SMALL_STATE(4532)] = 168188, + [SMALL_STATE(4533)] = 168221, + [SMALL_STATE(4534)] = 168254, + [SMALL_STATE(4535)] = 168295, + [SMALL_STATE(4536)] = 168328, + [SMALL_STATE(4537)] = 168361, + [SMALL_STATE(4538)] = 168394, + [SMALL_STATE(4539)] = 168427, + [SMALL_STATE(4540)] = 168460, + [SMALL_STATE(4541)] = 168493, + [SMALL_STATE(4542)] = 168526, + [SMALL_STATE(4543)] = 168580, + [SMALL_STATE(4544)] = 168634, + [SMALL_STATE(4545)] = 168688, + [SMALL_STATE(4546)] = 168742, + [SMALL_STATE(4547)] = 168796, + [SMALL_STATE(4548)] = 168834, + [SMALL_STATE(4549)] = 168888, + [SMALL_STATE(4550)] = 168942, + [SMALL_STATE(4551)] = 168973, + [SMALL_STATE(4552)] = 169004, + [SMALL_STATE(4553)] = 169035, + [SMALL_STATE(4554)] = 169066, + [SMALL_STATE(4555)] = 169097, + [SMALL_STATE(4556)] = 169128, + [SMALL_STATE(4557)] = 169159, + [SMALL_STATE(4558)] = 169190, + [SMALL_STATE(4559)] = 169221, + [SMALL_STATE(4560)] = 169252, + [SMALL_STATE(4561)] = 169283, + [SMALL_STATE(4562)] = 169314, + [SMALL_STATE(4563)] = 169345, + [SMALL_STATE(4564)] = 169376, + [SMALL_STATE(4565)] = 169411, + [SMALL_STATE(4566)] = 169442, + [SMALL_STATE(4567)] = 169473, + [SMALL_STATE(4568)] = 169504, + [SMALL_STATE(4569)] = 169547, + [SMALL_STATE(4570)] = 169578, + [SMALL_STATE(4571)] = 169609, + [SMALL_STATE(4572)] = 169652, + [SMALL_STATE(4573)] = 169695, + [SMALL_STATE(4574)] = 169728, + [SMALL_STATE(4575)] = 169761, + [SMALL_STATE(4576)] = 169796, + [SMALL_STATE(4577)] = 169828, + [SMALL_STATE(4578)] = 169860, + [SMALL_STATE(4579)] = 169892, + [SMALL_STATE(4580)] = 169922, + [SMALL_STATE(4581)] = 169952, + [SMALL_STATE(4582)] = 169981, + [SMALL_STATE(4583)] = 170012, + [SMALL_STATE(4584)] = 170041, + [SMALL_STATE(4585)] = 170076, + [SMALL_STATE(4586)] = 170105, + [SMALL_STATE(4587)] = 170134, + [SMALL_STATE(4588)] = 170173, + [SMALL_STATE(4589)] = 170212, + [SMALL_STATE(4590)] = 170241, + [SMALL_STATE(4591)] = 170280, + [SMALL_STATE(4592)] = 170319, + [SMALL_STATE(4593)] = 170348, + [SMALL_STATE(4594)] = 170387, + [SMALL_STATE(4595)] = 170424, + [SMALL_STATE(4596)] = 170451, + [SMALL_STATE(4597)] = 170490, + [SMALL_STATE(4598)] = 170519, + [SMALL_STATE(4599)] = 170548, + [SMALL_STATE(4600)] = 170575, + [SMALL_STATE(4601)] = 170604, + [SMALL_STATE(4602)] = 170643, + [SMALL_STATE(4603)] = 170682, + [SMALL_STATE(4604)] = 170711, + [SMALL_STATE(4605)] = 170750, + [SMALL_STATE(4606)] = 170779, + [SMALL_STATE(4607)] = 170808, + [SMALL_STATE(4608)] = 170837, + [SMALL_STATE(4609)] = 170868, + [SMALL_STATE(4610)] = 170903, + [SMALL_STATE(4611)] = 170932, + [SMALL_STATE(4612)] = 170961, + [SMALL_STATE(4613)] = 170998, + [SMALL_STATE(4614)] = 171027, + [SMALL_STATE(4615)] = 171056, + [SMALL_STATE(4616)] = 171085, + [SMALL_STATE(4617)] = 171114, + [SMALL_STATE(4618)] = 171143, + [SMALL_STATE(4619)] = 171172, + [SMALL_STATE(4620)] = 171211, + [SMALL_STATE(4621)] = 171242, + [SMALL_STATE(4622)] = 171281, + [SMALL_STATE(4623)] = 171320, + [SMALL_STATE(4624)] = 171349, + [SMALL_STATE(4625)] = 171378, + [SMALL_STATE(4626)] = 171407, + [SMALL_STATE(4627)] = 171436, + [SMALL_STATE(4628)] = 171465, + [SMALL_STATE(4629)] = 171494, + [SMALL_STATE(4630)] = 171523, + [SMALL_STATE(4631)] = 171552, + [SMALL_STATE(4632)] = 171581, + [SMALL_STATE(4633)] = 171610, + [SMALL_STATE(4634)] = 171639, + [SMALL_STATE(4635)] = 171668, + [SMALL_STATE(4636)] = 171697, + [SMALL_STATE(4637)] = 171726, + [SMALL_STATE(4638)] = 171755, + [SMALL_STATE(4639)] = 171784, + [SMALL_STATE(4640)] = 171813, + [SMALL_STATE(4641)] = 171848, + [SMALL_STATE(4642)] = 171881, + [SMALL_STATE(4643)] = 171912, + [SMALL_STATE(4644)] = 171941, + [SMALL_STATE(4645)] = 171970, + [SMALL_STATE(4646)] = 171999, + [SMALL_STATE(4647)] = 172028, + [SMALL_STATE(4648)] = 172057, + [SMALL_STATE(4649)] = 172084, + [SMALL_STATE(4650)] = 172119, + [SMALL_STATE(4651)] = 172146, + [SMALL_STATE(4652)] = 172175, + [SMALL_STATE(4653)] = 172204, + [SMALL_STATE(4654)] = 172233, + [SMALL_STATE(4655)] = 172260, + [SMALL_STATE(4656)] = 172297, + [SMALL_STATE(4657)] = 172326, + [SMALL_STATE(4658)] = 172357, + [SMALL_STATE(4659)] = 172392, + [SMALL_STATE(4660)] = 172421, + [SMALL_STATE(4661)] = 172450, + [SMALL_STATE(4662)] = 172479, + [SMALL_STATE(4663)] = 172508, + [SMALL_STATE(4664)] = 172537, + [SMALL_STATE(4665)] = 172566, + [SMALL_STATE(4666)] = 172595, + [SMALL_STATE(4667)] = 172624, + [SMALL_STATE(4668)] = 172653, + [SMALL_STATE(4669)] = 172682, + [SMALL_STATE(4670)] = 172711, + [SMALL_STATE(4671)] = 172740, + [SMALL_STATE(4672)] = 172775, + [SMALL_STATE(4673)] = 172814, + [SMALL_STATE(4674)] = 172843, + [SMALL_STATE(4675)] = 172872, + [SMALL_STATE(4676)] = 172899, + [SMALL_STATE(4677)] = 172928, + [SMALL_STATE(4678)] = 172967, + [SMALL_STATE(4679)] = 173006, + [SMALL_STATE(4680)] = 173045, + [SMALL_STATE(4681)] = 173082, + [SMALL_STATE(4682)] = 173117, + [SMALL_STATE(4683)] = 173146, + [SMALL_STATE(4684)] = 173185, + [SMALL_STATE(4685)] = 173214, + [SMALL_STATE(4686)] = 173241, + [SMALL_STATE(4687)] = 173268, + [SMALL_STATE(4688)] = 173305, + [SMALL_STATE(4689)] = 173342, + [SMALL_STATE(4690)] = 173369, + [SMALL_STATE(4691)] = 173398, + [SMALL_STATE(4692)] = 173437, + [SMALL_STATE(4693)] = 173485, + [SMALL_STATE(4694)] = 173529, + [SMALL_STATE(4695)] = 173577, + [SMALL_STATE(4696)] = 173621, + [SMALL_STATE(4697)] = 173669, + [SMALL_STATE(4698)] = 173717, + [SMALL_STATE(4699)] = 173751, + [SMALL_STATE(4700)] = 173785, + [SMALL_STATE(4701)] = 173833, + [SMALL_STATE(4702)] = 173877, + [SMALL_STATE(4703)] = 173925, + [SMALL_STATE(4704)] = 173973, + [SMALL_STATE(4705)] = 174021, + [SMALL_STATE(4706)] = 174069, + [SMALL_STATE(4707)] = 174117, + [SMALL_STATE(4708)] = 174165, + [SMALL_STATE(4709)] = 174213, + [SMALL_STATE(4710)] = 174245, + [SMALL_STATE(4711)] = 174289, + [SMALL_STATE(4712)] = 174337, + [SMALL_STATE(4713)] = 174385, + [SMALL_STATE(4714)] = 174419, + [SMALL_STATE(4715)] = 174467, + [SMALL_STATE(4716)] = 174515, + [SMALL_STATE(4717)] = 174563, + [SMALL_STATE(4718)] = 174611, + [SMALL_STATE(4719)] = 174659, + [SMALL_STATE(4720)] = 174707, + [SMALL_STATE(4721)] = 174751, + [SMALL_STATE(4722)] = 174799, + [SMALL_STATE(4723)] = 174847, + [SMALL_STATE(4724)] = 174895, + [SMALL_STATE(4725)] = 174929, + [SMALL_STATE(4726)] = 174973, + [SMALL_STATE(4727)] = 175021, + [SMALL_STATE(4728)] = 175069, + [SMALL_STATE(4729)] = 175103, + [SMALL_STATE(4730)] = 175151, + [SMALL_STATE(4731)] = 175199, + [SMALL_STATE(4732)] = 175247, + [SMALL_STATE(4733)] = 175295, + [SMALL_STATE(4734)] = 175343, + [SMALL_STATE(4735)] = 175377, + [SMALL_STATE(4736)] = 175402, + [SMALL_STATE(4737)] = 175443, + [SMALL_STATE(4738)] = 175468, + [SMALL_STATE(4739)] = 175493, + [SMALL_STATE(4740)] = 175518, + [SMALL_STATE(4741)] = 175543, + [SMALL_STATE(4742)] = 175568, + [SMALL_STATE(4743)] = 175595, + [SMALL_STATE(4744)] = 175622, + [SMALL_STATE(4745)] = 175649, + [SMALL_STATE(4746)] = 175676, + [SMALL_STATE(4747)] = 175703, + [SMALL_STATE(4748)] = 175730, + [SMALL_STATE(4749)] = 175757, + [SMALL_STATE(4750)] = 175784, + [SMALL_STATE(4751)] = 175811, + [SMALL_STATE(4752)] = 175838, + [SMALL_STATE(4753)] = 175865, + [SMALL_STATE(4754)] = 175890, + [SMALL_STATE(4755)] = 175915, + [SMALL_STATE(4756)] = 175940, + [SMALL_STATE(4757)] = 175981, + [SMALL_STATE(4758)] = 176006, + [SMALL_STATE(4759)] = 176031, + [SMALL_STATE(4760)] = 176056, + [SMALL_STATE(4761)] = 176081, + [SMALL_STATE(4762)] = 176110, + [SMALL_STATE(4763)] = 176143, + [SMALL_STATE(4764)] = 176170, + [SMALL_STATE(4765)] = 176197, + [SMALL_STATE(4766)] = 176238, + [SMALL_STATE(4767)] = 176265, + [SMALL_STATE(4768)] = 176296, + [SMALL_STATE(4769)] = 176321, + [SMALL_STATE(4770)] = 176352, + [SMALL_STATE(4771)] = 176381, + [SMALL_STATE(4772)] = 176408, + [SMALL_STATE(4773)] = 176435, + [SMALL_STATE(4774)] = 176460, + [SMALL_STATE(4775)] = 176485, + [SMALL_STATE(4776)] = 176526, + [SMALL_STATE(4777)] = 176551, + [SMALL_STATE(4778)] = 176576, + [SMALL_STATE(4779)] = 176601, + [SMALL_STATE(4780)] = 176626, + [SMALL_STATE(4781)] = 176651, + [SMALL_STATE(4782)] = 176676, + [SMALL_STATE(4783)] = 176701, + [SMALL_STATE(4784)] = 176726, + [SMALL_STATE(4785)] = 176751, + [SMALL_STATE(4786)] = 176776, + [SMALL_STATE(4787)] = 176801, + [SMALL_STATE(4788)] = 176826, + [SMALL_STATE(4789)] = 176851, + [SMALL_STATE(4790)] = 176876, + [SMALL_STATE(4791)] = 176917, + [SMALL_STATE(4792)] = 176958, + [SMALL_STATE(4793)] = 176999, + [SMALL_STATE(4794)] = 177024, + [SMALL_STATE(4795)] = 177049, + [SMALL_STATE(4796)] = 177074, + [SMALL_STATE(4797)] = 177115, + [SMALL_STATE(4798)] = 177140, + [SMALL_STATE(4799)] = 177181, + [SMALL_STATE(4800)] = 177214, + [SMALL_STATE(4801)] = 177255, + [SMALL_STATE(4802)] = 177298, + [SMALL_STATE(4803)] = 177325, + [SMALL_STATE(4804)] = 177369, + [SMALL_STATE(4805)] = 177411, + [SMALL_STATE(4806)] = 177449, + [SMALL_STATE(4807)] = 177477, + [SMALL_STATE(4808)] = 177505, + [SMALL_STATE(4809)] = 177547, + [SMALL_STATE(4810)] = 177585, + [SMALL_STATE(4811)] = 177611, + [SMALL_STATE(4812)] = 177649, + [SMALL_STATE(4813)] = 177693, + [SMALL_STATE(4814)] = 177735, + [SMALL_STATE(4815)] = 177761, + [SMALL_STATE(4816)] = 177803, + [SMALL_STATE(4817)] = 177845, + [SMALL_STATE(4818)] = 177887, + [SMALL_STATE(4819)] = 177925, + [SMALL_STATE(4820)] = 177959, + [SMALL_STATE(4821)] = 178001, + [SMALL_STATE(4822)] = 178035, + [SMALL_STATE(4823)] = 178077, + [SMALL_STATE(4824)] = 178121, + [SMALL_STATE(4825)] = 178163, + [SMALL_STATE(4826)] = 178201, + [SMALL_STATE(4827)] = 178245, + [SMALL_STATE(4828)] = 178283, + [SMALL_STATE(4829)] = 178321, + [SMALL_STATE(4830)] = 178363, + [SMALL_STATE(4831)] = 178401, + [SMALL_STATE(4832)] = 178443, + [SMALL_STATE(4833)] = 178487, + [SMALL_STATE(4834)] = 178529, + [SMALL_STATE(4835)] = 178563, + [SMALL_STATE(4836)] = 178607, + [SMALL_STATE(4837)] = 178641, + [SMALL_STATE(4838)] = 178685, + [SMALL_STATE(4839)] = 178721, + [SMALL_STATE(4840)] = 178759, + [SMALL_STATE(4841)] = 178797, + [SMALL_STATE(4842)] = 178839, + [SMALL_STATE(4843)] = 178881, + [SMALL_STATE(4844)] = 178915, + [SMALL_STATE(4845)] = 178957, + [SMALL_STATE(4846)] = 178991, + [SMALL_STATE(4847)] = 179019, + [SMALL_STATE(4848)] = 179061, + [SMALL_STATE(4849)] = 179091, + [SMALL_STATE(4850)] = 179133, + [SMALL_STATE(4851)] = 179169, + [SMALL_STATE(4852)] = 179211, + [SMALL_STATE(4853)] = 179253, + [SMALL_STATE(4854)] = 179295, + [SMALL_STATE(4855)] = 179337, + [SMALL_STATE(4856)] = 179379, + [SMALL_STATE(4857)] = 179421, + [SMALL_STATE(4858)] = 179446, + [SMALL_STATE(4859)] = 179471, + [SMALL_STATE(4860)] = 179496, + [SMALL_STATE(4861)] = 179523, + [SMALL_STATE(4862)] = 179546, + [SMALL_STATE(4863)] = 179589, + [SMALL_STATE(4864)] = 179614, + [SMALL_STATE(4865)] = 179639, + [SMALL_STATE(4866)] = 179668, + [SMALL_STATE(4867)] = 179693, + [SMALL_STATE(4868)] = 179718, + [SMALL_STATE(4869)] = 179743, + [SMALL_STATE(4870)] = 179768, + [SMALL_STATE(4871)] = 179795, + [SMALL_STATE(4872)] = 179820, + [SMALL_STATE(4873)] = 179847, + [SMALL_STATE(4874)] = 179874, + [SMALL_STATE(4875)] = 179897, + [SMALL_STATE(4876)] = 179920, + [SMALL_STATE(4877)] = 179943, + [SMALL_STATE(4878)] = 179968, + [SMALL_STATE(4879)] = 179993, + [SMALL_STATE(4880)] = 180020, + [SMALL_STATE(4881)] = 180045, + [SMALL_STATE(4882)] = 180068, + [SMALL_STATE(4883)] = 180093, + [SMALL_STATE(4884)] = 180118, + [SMALL_STATE(4885)] = 180143, + [SMALL_STATE(4886)] = 180168, + [SMALL_STATE(4887)] = 180197, + [SMALL_STATE(4888)] = 180226, + [SMALL_STATE(4889)] = 180249, + [SMALL_STATE(4890)] = 180278, + [SMALL_STATE(4891)] = 180307, + [SMALL_STATE(4892)] = 180336, + [SMALL_STATE(4893)] = 180361, + [SMALL_STATE(4894)] = 180386, + [SMALL_STATE(4895)] = 180409, + [SMALL_STATE(4896)] = 180432, + [SMALL_STATE(4897)] = 180461, + [SMALL_STATE(4898)] = 180484, + [SMALL_STATE(4899)] = 180509, + [SMALL_STATE(4900)] = 180534, + [SMALL_STATE(4901)] = 180563, + [SMALL_STATE(4902)] = 180588, + [SMALL_STATE(4903)] = 180613, + [SMALL_STATE(4904)] = 180638, + [SMALL_STATE(4905)] = 180663, + [SMALL_STATE(4906)] = 180690, + [SMALL_STATE(4907)] = 180715, + [SMALL_STATE(4908)] = 180742, + [SMALL_STATE(4909)] = 180767, + [SMALL_STATE(4910)] = 180792, + [SMALL_STATE(4911)] = 180817, + [SMALL_STATE(4912)] = 180842, + [SMALL_STATE(4913)] = 180867, + [SMALL_STATE(4914)] = 180892, + [SMALL_STATE(4915)] = 180917, + [SMALL_STATE(4916)] = 180942, + [SMALL_STATE(4917)] = 180967, + [SMALL_STATE(4918)] = 180992, + [SMALL_STATE(4919)] = 181017, + [SMALL_STATE(4920)] = 181048, + [SMALL_STATE(4921)] = 181073, + [SMALL_STATE(4922)] = 181111, + [SMALL_STATE(4923)] = 181139, + [SMALL_STATE(4924)] = 181179, + [SMALL_STATE(4925)] = 181213, + [SMALL_STATE(4926)] = 181253, + [SMALL_STATE(4927)] = 181293, + [SMALL_STATE(4928)] = 181333, + [SMALL_STATE(4929)] = 181357, + [SMALL_STATE(4930)] = 181381, + [SMALL_STATE(4931)] = 181421, + [SMALL_STATE(4932)] = 181461, + [SMALL_STATE(4933)] = 181501, + [SMALL_STATE(4934)] = 181527, + [SMALL_STATE(4935)] = 181561, + [SMALL_STATE(4936)] = 181601, + [SMALL_STATE(4937)] = 181641, + [SMALL_STATE(4938)] = 181669, + [SMALL_STATE(4939)] = 181697, + [SMALL_STATE(4940)] = 181735, + [SMALL_STATE(4941)] = 181759, + [SMALL_STATE(4942)] = 181785, + [SMALL_STATE(4943)] = 181807, + [SMALL_STATE(4944)] = 181847, + [SMALL_STATE(4945)] = 181885, + [SMALL_STATE(4946)] = 181911, + [SMALL_STATE(4947)] = 181951, + [SMALL_STATE(4948)] = 181991, + [SMALL_STATE(4949)] = 182031, + [SMALL_STATE(4950)] = 182071, + [SMALL_STATE(4951)] = 182111, + [SMALL_STATE(4952)] = 182151, + [SMALL_STATE(4953)] = 182191, + [SMALL_STATE(4954)] = 182231, + [SMALL_STATE(4955)] = 182271, + [SMALL_STATE(4956)] = 182311, + [SMALL_STATE(4957)] = 182351, + [SMALL_STATE(4958)] = 182391, + [SMALL_STATE(4959)] = 182431, + [SMALL_STATE(4960)] = 182453, + [SMALL_STATE(4961)] = 182474, + [SMALL_STATE(4962)] = 182495, + [SMALL_STATE(4963)] = 182522, + [SMALL_STATE(4964)] = 182559, + [SMALL_STATE(4965)] = 182580, + [SMALL_STATE(4966)] = 182617, + [SMALL_STATE(4967)] = 182642, + [SMALL_STATE(4968)] = 182673, + [SMALL_STATE(4969)] = 182704, + [SMALL_STATE(4970)] = 182727, + [SMALL_STATE(4971)] = 182764, + [SMALL_STATE(4972)] = 182799, + [SMALL_STATE(4973)] = 182822, + [SMALL_STATE(4974)] = 182855, + [SMALL_STATE(4975)] = 182892, + [SMALL_STATE(4976)] = 182925, + [SMALL_STATE(4977)] = 182962, + [SMALL_STATE(4978)] = 182995, + [SMALL_STATE(4979)] = 183016, + [SMALL_STATE(4980)] = 183043, + [SMALL_STATE(4981)] = 183070, + [SMALL_STATE(4982)] = 183091, + [SMALL_STATE(4983)] = 183112, + [SMALL_STATE(4984)] = 183145, + [SMALL_STATE(4985)] = 183166, + [SMALL_STATE(4986)] = 183193, + [SMALL_STATE(4987)] = 183214, + [SMALL_STATE(4988)] = 183235, + [SMALL_STATE(4989)] = 183262, + [SMALL_STATE(4990)] = 183283, + [SMALL_STATE(4991)] = 183320, + [SMALL_STATE(4992)] = 183341, + [SMALL_STATE(4993)] = 183362, + [SMALL_STATE(4994)] = 183383, + [SMALL_STATE(4995)] = 183404, + [SMALL_STATE(4996)] = 183437, + [SMALL_STATE(4997)] = 183458, + [SMALL_STATE(4998)] = 183491, + [SMALL_STATE(4999)] = 183512, + [SMALL_STATE(5000)] = 183533, + [SMALL_STATE(5001)] = 183554, + [SMALL_STATE(5002)] = 183575, + [SMALL_STATE(5003)] = 183596, + [SMALL_STATE(5004)] = 183617, + [SMALL_STATE(5005)] = 183638, + [SMALL_STATE(5006)] = 183659, + [SMALL_STATE(5007)] = 183680, + [SMALL_STATE(5008)] = 183701, + [SMALL_STATE(5009)] = 183722, + [SMALL_STATE(5010)] = 183755, + [SMALL_STATE(5011)] = 183792, + [SMALL_STATE(5012)] = 183825, + [SMALL_STATE(5013)] = 183862, + [SMALL_STATE(5014)] = 183895, + [SMALL_STATE(5015)] = 183928, + [SMALL_STATE(5016)] = 183965, + [SMALL_STATE(5017)] = 184002, + [SMALL_STATE(5018)] = 184039, + [SMALL_STATE(5019)] = 184076, + [SMALL_STATE(5020)] = 184113, + [SMALL_STATE(5021)] = 184146, + [SMALL_STATE(5022)] = 184177, + [SMALL_STATE(5023)] = 184210, + [SMALL_STATE(5024)] = 184247, + [SMALL_STATE(5025)] = 184268, + [SMALL_STATE(5026)] = 184289, + [SMALL_STATE(5027)] = 184322, + [SMALL_STATE(5028)] = 184355, + [SMALL_STATE(5029)] = 184380, + [SMALL_STATE(5030)] = 184413, + [SMALL_STATE(5031)] = 184446, + [SMALL_STATE(5032)] = 184483, + [SMALL_STATE(5033)] = 184520, + [SMALL_STATE(5034)] = 184557, + [SMALL_STATE(5035)] = 184590, + [SMALL_STATE(5036)] = 184623, + [SMALL_STATE(5037)] = 184654, + [SMALL_STATE(5038)] = 184685, + [SMALL_STATE(5039)] = 184722, + [SMALL_STATE(5040)] = 184759, + [SMALL_STATE(5041)] = 184796, + [SMALL_STATE(5042)] = 184833, + [SMALL_STATE(5043)] = 184870, + [SMALL_STATE(5044)] = 184907, + [SMALL_STATE(5045)] = 184944, + [SMALL_STATE(5046)] = 184981, + [SMALL_STATE(5047)] = 185018, + [SMALL_STATE(5048)] = 185049, + [SMALL_STATE(5049)] = 185070, + [SMALL_STATE(5050)] = 185107, + [SMALL_STATE(5051)] = 185144, + [SMALL_STATE(5052)] = 185181, + [SMALL_STATE(5053)] = 185212, + [SMALL_STATE(5054)] = 185249, + [SMALL_STATE(5055)] = 185270, + [SMALL_STATE(5056)] = 185291, + [SMALL_STATE(5057)] = 185314, + [SMALL_STATE(5058)] = 185335, + [SMALL_STATE(5059)] = 185362, + [SMALL_STATE(5060)] = 185383, + [SMALL_STATE(5061)] = 185404, + [SMALL_STATE(5062)] = 185425, + [SMALL_STATE(5063)] = 185462, + [SMALL_STATE(5064)] = 185499, + [SMALL_STATE(5065)] = 185532, + [SMALL_STATE(5066)] = 185553, + [SMALL_STATE(5067)] = 185574, + [SMALL_STATE(5068)] = 185605, + [SMALL_STATE(5069)] = 185626, + [SMALL_STATE(5070)] = 185663, + [SMALL_STATE(5071)] = 185684, + [SMALL_STATE(5072)] = 185705, + [SMALL_STATE(5073)] = 185742, + [SMALL_STATE(5074)] = 185775, + [SMALL_STATE(5075)] = 185810, + [SMALL_STATE(5076)] = 185847, + [SMALL_STATE(5077)] = 185884, + [SMALL_STATE(5078)] = 185905, + [SMALL_STATE(5079)] = 185926, + [SMALL_STATE(5080)] = 185947, + [SMALL_STATE(5081)] = 185984, + [SMALL_STATE(5082)] = 186021, + [SMALL_STATE(5083)] = 186054, + [SMALL_STATE(5084)] = 186091, + [SMALL_STATE(5085)] = 186128, + [SMALL_STATE(5086)] = 186159, + [SMALL_STATE(5087)] = 186180, + [SMALL_STATE(5088)] = 186201, + [SMALL_STATE(5089)] = 186236, + [SMALL_STATE(5090)] = 186265, + [SMALL_STATE(5091)] = 186302, + [SMALL_STATE(5092)] = 186323, + [SMALL_STATE(5093)] = 186344, + [SMALL_STATE(5094)] = 186365, + [SMALL_STATE(5095)] = 186386, + [SMALL_STATE(5096)] = 186415, + [SMALL_STATE(5097)] = 186436, + [SMALL_STATE(5098)] = 186469, + [SMALL_STATE(5099)] = 186506, + [SMALL_STATE(5100)] = 186527, + [SMALL_STATE(5101)] = 186548, + [SMALL_STATE(5102)] = 186571, + [SMALL_STATE(5103)] = 186594, + [SMALL_STATE(5104)] = 186627, + [SMALL_STATE(5105)] = 186664, + [SMALL_STATE(5106)] = 186685, + [SMALL_STATE(5107)] = 186716, + [SMALL_STATE(5108)] = 186737, + [SMALL_STATE(5109)] = 186774, + [SMALL_STATE(5110)] = 186809, + [SMALL_STATE(5111)] = 186846, + [SMALL_STATE(5112)] = 186867, + [SMALL_STATE(5113)] = 186888, + [SMALL_STATE(5114)] = 186911, + [SMALL_STATE(5115)] = 186934, + [SMALL_STATE(5116)] = 186971, + [SMALL_STATE(5117)] = 187002, + [SMALL_STATE(5118)] = 187025, + [SMALL_STATE(5119)] = 187048, + [SMALL_STATE(5120)] = 187085, + [SMALL_STATE(5121)] = 187116, + [SMALL_STATE(5122)] = 187149, + [SMALL_STATE(5123)] = 187186, + [SMALL_STATE(5124)] = 187223, + [SMALL_STATE(5125)] = 187260, + [SMALL_STATE(5126)] = 187281, + [SMALL_STATE(5127)] = 187304, + [SMALL_STATE(5128)] = 187327, + [SMALL_STATE(5129)] = 187360, + [SMALL_STATE(5130)] = 187397, + [SMALL_STATE(5131)] = 187430, + [SMALL_STATE(5132)] = 187463, + [SMALL_STATE(5133)] = 187484, + [SMALL_STATE(5134)] = 187521, + [SMALL_STATE(5135)] = 187554, + [SMALL_STATE(5136)] = 187587, + [SMALL_STATE(5137)] = 187620, + [SMALL_STATE(5138)] = 187653, + [SMALL_STATE(5139)] = 187684, + [SMALL_STATE(5140)] = 187705, + [SMALL_STATE(5141)] = 187738, + [SMALL_STATE(5142)] = 187769, + [SMALL_STATE(5143)] = 187790, + [SMALL_STATE(5144)] = 187827, + [SMALL_STATE(5145)] = 187854, + [SMALL_STATE(5146)] = 187887, + [SMALL_STATE(5147)] = 187924, + [SMALL_STATE(5148)] = 187957, + [SMALL_STATE(5149)] = 187990, + [SMALL_STATE(5150)] = 188027, + [SMALL_STATE(5151)] = 188064, + [SMALL_STATE(5152)] = 188101, + [SMALL_STATE(5153)] = 188138, + [SMALL_STATE(5154)] = 188175, + [SMALL_STATE(5155)] = 188196, + [SMALL_STATE(5156)] = 188227, + [SMALL_STATE(5157)] = 188264, + [SMALL_STATE(5158)] = 188297, + [SMALL_STATE(5159)] = 188322, + [SMALL_STATE(5160)] = 188359, + [SMALL_STATE(5161)] = 188396, + [SMALL_STATE(5162)] = 188433, + [SMALL_STATE(5163)] = 188466, + [SMALL_STATE(5164)] = 188503, + [SMALL_STATE(5165)] = 188536, + [SMALL_STATE(5166)] = 188569, + [SMALL_STATE(5167)] = 188606, + [SMALL_STATE(5168)] = 188634, + [SMALL_STATE(5169)] = 188662, + [SMALL_STATE(5170)] = 188696, + [SMALL_STATE(5171)] = 188724, + [SMALL_STATE(5172)] = 188752, + [SMALL_STATE(5173)] = 188778, + [SMALL_STATE(5174)] = 188806, + [SMALL_STATE(5175)] = 188832, + [SMALL_STATE(5176)] = 188858, + [SMALL_STATE(5177)] = 188880, + [SMALL_STATE(5178)] = 188908, + [SMALL_STATE(5179)] = 188930, + [SMALL_STATE(5180)] = 188958, + [SMALL_STATE(5181)] = 188992, + [SMALL_STATE(5182)] = 189024, + [SMALL_STATE(5183)] = 189058, + [SMALL_STATE(5184)] = 189086, + [SMALL_STATE(5185)] = 189114, + [SMALL_STATE(5186)] = 189140, + [SMALL_STATE(5187)] = 189166, + [SMALL_STATE(5188)] = 189200, + [SMALL_STATE(5189)] = 189232, + [SMALL_STATE(5190)] = 189264, + [SMALL_STATE(5191)] = 189294, + [SMALL_STATE(5192)] = 189328, + [SMALL_STATE(5193)] = 189360, + [SMALL_STATE(5194)] = 189392, + [SMALL_STATE(5195)] = 189424, + [SMALL_STATE(5196)] = 189446, + [SMALL_STATE(5197)] = 189478, + [SMALL_STATE(5198)] = 189512, + [SMALL_STATE(5199)] = 189544, + [SMALL_STATE(5200)] = 189576, + [SMALL_STATE(5201)] = 189602, + [SMALL_STATE(5202)] = 189622, + [SMALL_STATE(5203)] = 189642, + [SMALL_STATE(5204)] = 189676, + [SMALL_STATE(5205)] = 189710, + [SMALL_STATE(5206)] = 189736, + [SMALL_STATE(5207)] = 189765, + [SMALL_STATE(5208)] = 189784, + [SMALL_STATE(5209)] = 189815, + [SMALL_STATE(5210)] = 189842, + [SMALL_STATE(5211)] = 189869, + [SMALL_STATE(5212)] = 189896, + [SMALL_STATE(5213)] = 189919, + [SMALL_STATE(5214)] = 189942, + [SMALL_STATE(5215)] = 189969, + [SMALL_STATE(5216)] = 189996, + [SMALL_STATE(5217)] = 190023, + [SMALL_STATE(5218)] = 190046, + [SMALL_STATE(5219)] = 190077, + [SMALL_STATE(5220)] = 190104, + [SMALL_STATE(5221)] = 190131, + [SMALL_STATE(5222)] = 190158, + [SMALL_STATE(5223)] = 190177, + [SMALL_STATE(5224)] = 190204, + [SMALL_STATE(5225)] = 190235, + [SMALL_STATE(5226)] = 190262, + [SMALL_STATE(5227)] = 190281, + [SMALL_STATE(5228)] = 190300, + [SMALL_STATE(5229)] = 190319, + [SMALL_STATE(5230)] = 190346, + [SMALL_STATE(5231)] = 190373, + [SMALL_STATE(5232)] = 190400, + [SMALL_STATE(5233)] = 190421, + [SMALL_STATE(5234)] = 190448, + [SMALL_STATE(5235)] = 190479, + [SMALL_STATE(5236)] = 190510, + [SMALL_STATE(5237)] = 190533, + [SMALL_STATE(5238)] = 190564, + [SMALL_STATE(5239)] = 190587, + [SMALL_STATE(5240)] = 190608, + [SMALL_STATE(5241)] = 190631, + [SMALL_STATE(5242)] = 190658, + [SMALL_STATE(5243)] = 190677, + [SMALL_STATE(5244)] = 190696, + [SMALL_STATE(5245)] = 190723, + [SMALL_STATE(5246)] = 190750, + [SMALL_STATE(5247)] = 190777, + [SMALL_STATE(5248)] = 190808, + [SMALL_STATE(5249)] = 190839, + [SMALL_STATE(5250)] = 190866, + [SMALL_STATE(5251)] = 190885, + [SMALL_STATE(5252)] = 190904, + [SMALL_STATE(5253)] = 190923, + [SMALL_STATE(5254)] = 190952, + [SMALL_STATE(5255)] = 190981, + [SMALL_STATE(5256)] = 191000, + [SMALL_STATE(5257)] = 191027, + [SMALL_STATE(5258)] = 191058, + [SMALL_STATE(5259)] = 191089, + [SMALL_STATE(5260)] = 191116, + [SMALL_STATE(5261)] = 191147, + [SMALL_STATE(5262)] = 191174, + [SMALL_STATE(5263)] = 191201, + [SMALL_STATE(5264)] = 191228, + [SMALL_STATE(5265)] = 191255, + [SMALL_STATE(5266)] = 191286, + [SMALL_STATE(5267)] = 191313, + [SMALL_STATE(5268)] = 191342, + [SMALL_STATE(5269)] = 191373, + [SMALL_STATE(5270)] = 191400, + [SMALL_STATE(5271)] = 191429, + [SMALL_STATE(5272)] = 191460, + [SMALL_STATE(5273)] = 191487, + [SMALL_STATE(5274)] = 191518, + [SMALL_STATE(5275)] = 191545, + [SMALL_STATE(5276)] = 191576, + [SMALL_STATE(5277)] = 191607, + [SMALL_STATE(5278)] = 191634, + [SMALL_STATE(5279)] = 191665, + [SMALL_STATE(5280)] = 191692, + [SMALL_STATE(5281)] = 191719, + [SMALL_STATE(5282)] = 191746, + [SMALL_STATE(5283)] = 191777, + [SMALL_STATE(5284)] = 191804, + [SMALL_STATE(5285)] = 191835, + [SMALL_STATE(5286)] = 191862, + [SMALL_STATE(5287)] = 191889, + [SMALL_STATE(5288)] = 191920, + [SMALL_STATE(5289)] = 191951, + [SMALL_STATE(5290)] = 191978, + [SMALL_STATE(5291)] = 192009, + [SMALL_STATE(5292)] = 192040, + [SMALL_STATE(5293)] = 192069, + [SMALL_STATE(5294)] = 192100, + [SMALL_STATE(5295)] = 192131, + [SMALL_STATE(5296)] = 192160, + [SMALL_STATE(5297)] = 192191, + [SMALL_STATE(5298)] = 192222, + [SMALL_STATE(5299)] = 192253, + [SMALL_STATE(5300)] = 192280, + [SMALL_STATE(5301)] = 192307, + [SMALL_STATE(5302)] = 192338, + [SMALL_STATE(5303)] = 192365, + [SMALL_STATE(5304)] = 192392, + [SMALL_STATE(5305)] = 192423, + [SMALL_STATE(5306)] = 192450, + [SMALL_STATE(5307)] = 192481, + [SMALL_STATE(5308)] = 192510, + [SMALL_STATE(5309)] = 192541, + [SMALL_STATE(5310)] = 192572, + [SMALL_STATE(5311)] = 192603, + [SMALL_STATE(5312)] = 192634, + [SMALL_STATE(5313)] = 192665, + [SMALL_STATE(5314)] = 192692, + [SMALL_STATE(5315)] = 192723, + [SMALL_STATE(5316)] = 192754, + [SMALL_STATE(5317)] = 192781, + [SMALL_STATE(5318)] = 192812, + [SMALL_STATE(5319)] = 192843, + [SMALL_STATE(5320)] = 192874, + [SMALL_STATE(5321)] = 192905, + [SMALL_STATE(5322)] = 192932, + [SMALL_STATE(5323)] = 192961, + [SMALL_STATE(5324)] = 192992, + [SMALL_STATE(5325)] = 193019, + [SMALL_STATE(5326)] = 193046, + [SMALL_STATE(5327)] = 193073, + [SMALL_STATE(5328)] = 193096, + [SMALL_STATE(5329)] = 193119, + [SMALL_STATE(5330)] = 193146, + [SMALL_STATE(5331)] = 193173, + [SMALL_STATE(5332)] = 193200, + [SMALL_STATE(5333)] = 193231, + [SMALL_STATE(5334)] = 193258, + [SMALL_STATE(5335)] = 193283, + [SMALL_STATE(5336)] = 193306, + [SMALL_STATE(5337)] = 193333, + [SMALL_STATE(5338)] = 193364, + [SMALL_STATE(5339)] = 193391, + [SMALL_STATE(5340)] = 193418, + [SMALL_STATE(5341)] = 193445, + [SMALL_STATE(5342)] = 193476, + [SMALL_STATE(5343)] = 193503, + [SMALL_STATE(5344)] = 193532, + [SMALL_STATE(5345)] = 193551, + [SMALL_STATE(5346)] = 193582, + [SMALL_STATE(5347)] = 193613, + [SMALL_STATE(5348)] = 193644, + [SMALL_STATE(5349)] = 193663, + [SMALL_STATE(5350)] = 193684, + [SMALL_STATE(5351)] = 193711, + [SMALL_STATE(5352)] = 193742, + [SMALL_STATE(5353)] = 193761, + [SMALL_STATE(5354)] = 193780, + [SMALL_STATE(5355)] = 193807, + [SMALL_STATE(5356)] = 193828, + [SMALL_STATE(5357)] = 193855, + [SMALL_STATE(5358)] = 193886, + [SMALL_STATE(5359)] = 193917, + [SMALL_STATE(5360)] = 193940, + [SMALL_STATE(5361)] = 193969, + [SMALL_STATE(5362)] = 194000, + [SMALL_STATE(5363)] = 194023, + [SMALL_STATE(5364)] = 194054, + [SMALL_STATE(5365)] = 194081, + [SMALL_STATE(5366)] = 194112, + [SMALL_STATE(5367)] = 194133, + [SMALL_STATE(5368)] = 194164, + [SMALL_STATE(5369)] = 194195, + [SMALL_STATE(5370)] = 194218, + [SMALL_STATE(5371)] = 194245, + [SMALL_STATE(5372)] = 194274, + [SMALL_STATE(5373)] = 194293, + [SMALL_STATE(5374)] = 194312, + [SMALL_STATE(5375)] = 194333, + [SMALL_STATE(5376)] = 194356, + [SMALL_STATE(5377)] = 194387, + [SMALL_STATE(5378)] = 194414, + [SMALL_STATE(5379)] = 194441, + [SMALL_STATE(5380)] = 194472, + [SMALL_STATE(5381)] = 194499, + [SMALL_STATE(5382)] = 194526, + [SMALL_STATE(5383)] = 194557, + [SMALL_STATE(5384)] = 194584, + [SMALL_STATE(5385)] = 194613, + [SMALL_STATE(5386)] = 194644, + [SMALL_STATE(5387)] = 194673, + [SMALL_STATE(5388)] = 194700, + [SMALL_STATE(5389)] = 194731, + [SMALL_STATE(5390)] = 194758, + [SMALL_STATE(5391)] = 194785, + [SMALL_STATE(5392)] = 194812, + [SMALL_STATE(5393)] = 194839, + [SMALL_STATE(5394)] = 194868, + [SMALL_STATE(5395)] = 194899, + [SMALL_STATE(5396)] = 194930, + [SMALL_STATE(5397)] = 194953, + [SMALL_STATE(5398)] = 194980, + [SMALL_STATE(5399)] = 195011, + [SMALL_STATE(5400)] = 195042, + [SMALL_STATE(5401)] = 195073, + [SMALL_STATE(5402)] = 195094, + [SMALL_STATE(5403)] = 195121, + [SMALL_STATE(5404)] = 195140, + [SMALL_STATE(5405)] = 195159, + [SMALL_STATE(5406)] = 195190, + [SMALL_STATE(5407)] = 195211, + [SMALL_STATE(5408)] = 195238, + [SMALL_STATE(5409)] = 195269, + [SMALL_STATE(5410)] = 195300, + [SMALL_STATE(5411)] = 195331, + [SMALL_STATE(5412)] = 195362, + [SMALL_STATE(5413)] = 195385, + [SMALL_STATE(5414)] = 195416, + [SMALL_STATE(5415)] = 195447, + [SMALL_STATE(5416)] = 195466, + [SMALL_STATE(5417)] = 195493, + [SMALL_STATE(5418)] = 195520, + [SMALL_STATE(5419)] = 195551, + [SMALL_STATE(5420)] = 195582, + [SMALL_STATE(5421)] = 195609, + [SMALL_STATE(5422)] = 195636, + [SMALL_STATE(5423)] = 195667, + [SMALL_STATE(5424)] = 195694, + [SMALL_STATE(5425)] = 195725, + [SMALL_STATE(5426)] = 195752, + [SMALL_STATE(5427)] = 195783, + [SMALL_STATE(5428)] = 195810, + [SMALL_STATE(5429)] = 195841, + [SMALL_STATE(5430)] = 195868, + [SMALL_STATE(5431)] = 195895, + [SMALL_STATE(5432)] = 195926, + [SMALL_STATE(5433)] = 195957, + [SMALL_STATE(5434)] = 195984, + [SMALL_STATE(5435)] = 196015, + [SMALL_STATE(5436)] = 196042, + [SMALL_STATE(5437)] = 196065, + [SMALL_STATE(5438)] = 196088, + [SMALL_STATE(5439)] = 196107, + [SMALL_STATE(5440)] = 196130, + [SMALL_STATE(5441)] = 196157, + [SMALL_STATE(5442)] = 196180, + [SMALL_STATE(5443)] = 196209, + [SMALL_STATE(5444)] = 196240, + [SMALL_STATE(5445)] = 196267, + [SMALL_STATE(5446)] = 196286, + [SMALL_STATE(5447)] = 196313, + [SMALL_STATE(5448)] = 196340, + [SMALL_STATE(5449)] = 196367, + [SMALL_STATE(5450)] = 196392, + [SMALL_STATE(5451)] = 196419, + [SMALL_STATE(5452)] = 196438, + [SMALL_STATE(5453)] = 196469, + [SMALL_STATE(5454)] = 196500, + [SMALL_STATE(5455)] = 196527, + [SMALL_STATE(5456)] = 196554, + [SMALL_STATE(5457)] = 196583, + [SMALL_STATE(5458)] = 196602, + [SMALL_STATE(5459)] = 196621, + [SMALL_STATE(5460)] = 196648, + [SMALL_STATE(5461)] = 196671, + [SMALL_STATE(5462)] = 196702, + [SMALL_STATE(5463)] = 196733, + [SMALL_STATE(5464)] = 196762, + [SMALL_STATE(5465)] = 196793, + [SMALL_STATE(5466)] = 196824, + [SMALL_STATE(5467)] = 196843, + [SMALL_STATE(5468)] = 196874, + [SMALL_STATE(5469)] = 196905, + [SMALL_STATE(5470)] = 196932, + [SMALL_STATE(5471)] = 196959, + [SMALL_STATE(5472)] = 196978, + [SMALL_STATE(5473)] = 197009, + [SMALL_STATE(5474)] = 197028, + [SMALL_STATE(5475)] = 197059, + [SMALL_STATE(5476)] = 197082, + [SMALL_STATE(5477)] = 197111, + [SMALL_STATE(5478)] = 197142, + [SMALL_STATE(5479)] = 197165, + [SMALL_STATE(5480)] = 197192, + [SMALL_STATE(5481)] = 197223, + [SMALL_STATE(5482)] = 197246, + [SMALL_STATE(5483)] = 197269, + [SMALL_STATE(5484)] = 197296, + [SMALL_STATE(5485)] = 197327, + [SMALL_STATE(5486)] = 197356, + [SMALL_STATE(5487)] = 197383, + [SMALL_STATE(5488)] = 197410, + [SMALL_STATE(5489)] = 197441, + [SMALL_STATE(5490)] = 197472, + [SMALL_STATE(5491)] = 197503, + [SMALL_STATE(5492)] = 197534, + [SMALL_STATE(5493)] = 197563, + [SMALL_STATE(5494)] = 197592, + [SMALL_STATE(5495)] = 197623, + [SMALL_STATE(5496)] = 197646, + [SMALL_STATE(5497)] = 197673, + [SMALL_STATE(5498)] = 197696, + [SMALL_STATE(5499)] = 197719, + [SMALL_STATE(5500)] = 197742, + [SMALL_STATE(5501)] = 197765, + [SMALL_STATE(5502)] = 197789, + [SMALL_STATE(5503)] = 197817, + [SMALL_STATE(5504)] = 197835, + [SMALL_STATE(5505)] = 197863, + [SMALL_STATE(5506)] = 197891, + [SMALL_STATE(5507)] = 197919, + [SMALL_STATE(5508)] = 197947, + [SMALL_STATE(5509)] = 197975, + [SMALL_STATE(5510)] = 198003, + [SMALL_STATE(5511)] = 198025, + [SMALL_STATE(5512)] = 198053, + [SMALL_STATE(5513)] = 198075, + [SMALL_STATE(5514)] = 198103, + [SMALL_STATE(5515)] = 198125, + [SMALL_STATE(5516)] = 198153, + [SMALL_STATE(5517)] = 198181, + [SMALL_STATE(5518)] = 198201, + [SMALL_STATE(5519)] = 198223, + [SMALL_STATE(5520)] = 198241, + [SMALL_STATE(5521)] = 198267, + [SMALL_STATE(5522)] = 198295, + [SMALL_STATE(5523)] = 198321, + [SMALL_STATE(5524)] = 198349, + [SMALL_STATE(5525)] = 198371, + [SMALL_STATE(5526)] = 198389, + [SMALL_STATE(5527)] = 198411, + [SMALL_STATE(5528)] = 198433, + [SMALL_STATE(5529)] = 198451, + [SMALL_STATE(5530)] = 198479, + [SMALL_STATE(5531)] = 198501, + [SMALL_STATE(5532)] = 198521, + [SMALL_STATE(5533)] = 198539, + [SMALL_STATE(5534)] = 198557, + [SMALL_STATE(5535)] = 198583, + [SMALL_STATE(5536)] = 198601, + [SMALL_STATE(5537)] = 198629, + [SMALL_STATE(5538)] = 198651, + [SMALL_STATE(5539)] = 198679, + [SMALL_STATE(5540)] = 198701, + [SMALL_STATE(5541)] = 198723, + [SMALL_STATE(5542)] = 198751, + [SMALL_STATE(5543)] = 198777, + [SMALL_STATE(5544)] = 198805, + [SMALL_STATE(5545)] = 198833, + [SMALL_STATE(5546)] = 198861, + [SMALL_STATE(5547)] = 198887, + [SMALL_STATE(5548)] = 198913, + [SMALL_STATE(5549)] = 198935, + [SMALL_STATE(5550)] = 198963, + [SMALL_STATE(5551)] = 198989, + [SMALL_STATE(5552)] = 199017, + [SMALL_STATE(5553)] = 199045, + [SMALL_STATE(5554)] = 199073, + [SMALL_STATE(5555)] = 199101, + [SMALL_STATE(5556)] = 199129, + [SMALL_STATE(5557)] = 199151, + [SMALL_STATE(5558)] = 199177, + [SMALL_STATE(5559)] = 199199, + [SMALL_STATE(5560)] = 199221, + [SMALL_STATE(5561)] = 199243, + [SMALL_STATE(5562)] = 199271, + [SMALL_STATE(5563)] = 199297, + [SMALL_STATE(5564)] = 199325, + [SMALL_STATE(5565)] = 199353, + [SMALL_STATE(5566)] = 199381, + [SMALL_STATE(5567)] = 199409, + [SMALL_STATE(5568)] = 199431, + [SMALL_STATE(5569)] = 199453, + [SMALL_STATE(5570)] = 199481, + [SMALL_STATE(5571)] = 199507, + [SMALL_STATE(5572)] = 199535, + [SMALL_STATE(5573)] = 199563, + [SMALL_STATE(5574)] = 199591, + [SMALL_STATE(5575)] = 199613, + [SMALL_STATE(5576)] = 199635, + [SMALL_STATE(5577)] = 199657, + [SMALL_STATE(5578)] = 199679, + [SMALL_STATE(5579)] = 199707, + [SMALL_STATE(5580)] = 199735, + [SMALL_STATE(5581)] = 199763, + [SMALL_STATE(5582)] = 199789, + [SMALL_STATE(5583)] = 199817, + [SMALL_STATE(5584)] = 199845, + [SMALL_STATE(5585)] = 199873, + [SMALL_STATE(5586)] = 199899, + [SMALL_STATE(5587)] = 199921, + [SMALL_STATE(5588)] = 199943, + [SMALL_STATE(5589)] = 199965, + [SMALL_STATE(5590)] = 199987, + [SMALL_STATE(5591)] = 200015, + [SMALL_STATE(5592)] = 200037, + [SMALL_STATE(5593)] = 200059, + [SMALL_STATE(5594)] = 200081, + [SMALL_STATE(5595)] = 200109, + [SMALL_STATE(5596)] = 200131, + [SMALL_STATE(5597)] = 200153, + [SMALL_STATE(5598)] = 200171, + [SMALL_STATE(5599)] = 200197, + [SMALL_STATE(5600)] = 200225, + [SMALL_STATE(5601)] = 200253, + [SMALL_STATE(5602)] = 200281, + [SMALL_STATE(5603)] = 200309, + [SMALL_STATE(5604)] = 200331, + [SMALL_STATE(5605)] = 200357, + [SMALL_STATE(5606)] = 200383, + [SMALL_STATE(5607)] = 200411, + [SMALL_STATE(5608)] = 200439, + [SMALL_STATE(5609)] = 200461, + [SMALL_STATE(5610)] = 200481, + [SMALL_STATE(5611)] = 200507, + [SMALL_STATE(5612)] = 200525, + [SMALL_STATE(5613)] = 200553, + [SMALL_STATE(5614)] = 200575, + [SMALL_STATE(5615)] = 200597, + [SMALL_STATE(5616)] = 200623, + [SMALL_STATE(5617)] = 200651, + [SMALL_STATE(5618)] = 200679, + [SMALL_STATE(5619)] = 200701, + [SMALL_STATE(5620)] = 200729, + [SMALL_STATE(5621)] = 200757, + [SMALL_STATE(5622)] = 200779, + [SMALL_STATE(5623)] = 200801, + [SMALL_STATE(5624)] = 200823, + [SMALL_STATE(5625)] = 200841, + [SMALL_STATE(5626)] = 200867, + [SMALL_STATE(5627)] = 200895, + [SMALL_STATE(5628)] = 200917, + [SMALL_STATE(5629)] = 200939, + [SMALL_STATE(5630)] = 200967, + [SMALL_STATE(5631)] = 200989, + [SMALL_STATE(5632)] = 201011, + [SMALL_STATE(5633)] = 201039, + [SMALL_STATE(5634)] = 201061, + [SMALL_STATE(5635)] = 201089, + [SMALL_STATE(5636)] = 201113, + [SMALL_STATE(5637)] = 201141, + [SMALL_STATE(5638)] = 201163, + [SMALL_STATE(5639)] = 201189, + [SMALL_STATE(5640)] = 201217, + [SMALL_STATE(5641)] = 201245, + [SMALL_STATE(5642)] = 201267, + [SMALL_STATE(5643)] = 201289, + [SMALL_STATE(5644)] = 201307, + [SMALL_STATE(5645)] = 201335, + [SMALL_STATE(5646)] = 201357, + [SMALL_STATE(5647)] = 201379, + [SMALL_STATE(5648)] = 201407, + [SMALL_STATE(5649)] = 201425, + [SMALL_STATE(5650)] = 201445, + [SMALL_STATE(5651)] = 201467, + [SMALL_STATE(5652)] = 201495, + [SMALL_STATE(5653)] = 201523, + [SMALL_STATE(5654)] = 201551, + [SMALL_STATE(5655)] = 201579, + [SMALL_STATE(5656)] = 201607, + [SMALL_STATE(5657)] = 201629, + [SMALL_STATE(5658)] = 201655, + [SMALL_STATE(5659)] = 201683, + [SMALL_STATE(5660)] = 201711, + [SMALL_STATE(5661)] = 201739, + [SMALL_STATE(5662)] = 201765, + [SMALL_STATE(5663)] = 201785, + [SMALL_STATE(5664)] = 201813, + [SMALL_STATE(5665)] = 201835, + [SMALL_STATE(5666)] = 201863, + [SMALL_STATE(5667)] = 201891, + [SMALL_STATE(5668)] = 201913, + [SMALL_STATE(5669)] = 201931, + [SMALL_STATE(5670)] = 201959, + [SMALL_STATE(5671)] = 201985, + [SMALL_STATE(5672)] = 202013, + [SMALL_STATE(5673)] = 202039, + [SMALL_STATE(5674)] = 202063, + [SMALL_STATE(5675)] = 202091, + [SMALL_STATE(5676)] = 202113, + [SMALL_STATE(5677)] = 202135, + [SMALL_STATE(5678)] = 202157, + [SMALL_STATE(5679)] = 202185, + [SMALL_STATE(5680)] = 202213, + [SMALL_STATE(5681)] = 202241, + [SMALL_STATE(5682)] = 202269, + [SMALL_STATE(5683)] = 202297, + [SMALL_STATE(5684)] = 202325, + [SMALL_STATE(5685)] = 202347, + [SMALL_STATE(5686)] = 202369, + [SMALL_STATE(5687)] = 202395, + [SMALL_STATE(5688)] = 202417, + [SMALL_STATE(5689)] = 202445, + [SMALL_STATE(5690)] = 202471, + [SMALL_STATE(5691)] = 202499, + [SMALL_STATE(5692)] = 202527, + [SMALL_STATE(5693)] = 202549, + [SMALL_STATE(5694)] = 202577, + [SMALL_STATE(5695)] = 202599, + [SMALL_STATE(5696)] = 202619, + [SMALL_STATE(5697)] = 202639, + [SMALL_STATE(5698)] = 202665, + [SMALL_STATE(5699)] = 202691, + [SMALL_STATE(5700)] = 202719, + [SMALL_STATE(5701)] = 202741, + [SMALL_STATE(5702)] = 202769, + [SMALL_STATE(5703)] = 202797, + [SMALL_STATE(5704)] = 202817, + [SMALL_STATE(5705)] = 202845, + [SMALL_STATE(5706)] = 202873, + [SMALL_STATE(5707)] = 202891, + [SMALL_STATE(5708)] = 202913, + [SMALL_STATE(5709)] = 202935, + [SMALL_STATE(5710)] = 202955, + [SMALL_STATE(5711)] = 202981, + [SMALL_STATE(5712)] = 203009, + [SMALL_STATE(5713)] = 203035, + [SMALL_STATE(5714)] = 203057, + [SMALL_STATE(5715)] = 203079, + [SMALL_STATE(5716)] = 203099, + [SMALL_STATE(5717)] = 203121, + [SMALL_STATE(5718)] = 203141, + [SMALL_STATE(5719)] = 203167, + [SMALL_STATE(5720)] = 203189, + [SMALL_STATE(5721)] = 203217, + [SMALL_STATE(5722)] = 203245, + [SMALL_STATE(5723)] = 203273, + [SMALL_STATE(5724)] = 203295, + [SMALL_STATE(5725)] = 203323, + [SMALL_STATE(5726)] = 203345, + [SMALL_STATE(5727)] = 203367, + [SMALL_STATE(5728)] = 203387, + [SMALL_STATE(5729)] = 203415, + [SMALL_STATE(5730)] = 203443, + [SMALL_STATE(5731)] = 203468, + [SMALL_STATE(5732)] = 203489, + [SMALL_STATE(5733)] = 203514, + [SMALL_STATE(5734)] = 203531, + [SMALL_STATE(5735)] = 203552, + [SMALL_STATE(5736)] = 203577, + [SMALL_STATE(5737)] = 203598, + [SMALL_STATE(5738)] = 203623, + [SMALL_STATE(5739)] = 203646, + [SMALL_STATE(5740)] = 203671, + [SMALL_STATE(5741)] = 203694, + [SMALL_STATE(5742)] = 203711, + [SMALL_STATE(5743)] = 203736, + [SMALL_STATE(5744)] = 203761, + [SMALL_STATE(5745)] = 203786, + [SMALL_STATE(5746)] = 203809, + [SMALL_STATE(5747)] = 203832, + [SMALL_STATE(5748)] = 203855, + [SMALL_STATE(5749)] = 203872, + [SMALL_STATE(5750)] = 203889, + [SMALL_STATE(5751)] = 203906, + [SMALL_STATE(5752)] = 203923, + [SMALL_STATE(5753)] = 203940, + [SMALL_STATE(5754)] = 203957, + [SMALL_STATE(5755)] = 203974, + [SMALL_STATE(5756)] = 203991, + [SMALL_STATE(5757)] = 204008, + [SMALL_STATE(5758)] = 204029, + [SMALL_STATE(5759)] = 204054, + [SMALL_STATE(5760)] = 204071, + [SMALL_STATE(5761)] = 204088, + [SMALL_STATE(5762)] = 204113, + [SMALL_STATE(5763)] = 204134, + [SMALL_STATE(5764)] = 204159, + [SMALL_STATE(5765)] = 204176, + [SMALL_STATE(5766)] = 204197, + [SMALL_STATE(5767)] = 204222, + [SMALL_STATE(5768)] = 204247, + [SMALL_STATE(5769)] = 204268, + [SMALL_STATE(5770)] = 204289, + [SMALL_STATE(5771)] = 204310, + [SMALL_STATE(5772)] = 204327, + [SMALL_STATE(5773)] = 204352, + [SMALL_STATE(5774)] = 204369, + [SMALL_STATE(5775)] = 204394, + [SMALL_STATE(5776)] = 204419, + [SMALL_STATE(5777)] = 204436, + [SMALL_STATE(5778)] = 204457, + [SMALL_STATE(5779)] = 204478, + [SMALL_STATE(5780)] = 204499, + [SMALL_STATE(5781)] = 204520, + [SMALL_STATE(5782)] = 204541, + [SMALL_STATE(5783)] = 204566, + [SMALL_STATE(5784)] = 204587, + [SMALL_STATE(5785)] = 204608, + [SMALL_STATE(5786)] = 204629, + [SMALL_STATE(5787)] = 204650, + [SMALL_STATE(5788)] = 204671, + [SMALL_STATE(5789)] = 204688, + [SMALL_STATE(5790)] = 204709, + [SMALL_STATE(5791)] = 204730, + [SMALL_STATE(5792)] = 204751, + [SMALL_STATE(5793)] = 204776, + [SMALL_STATE(5794)] = 204801, + [SMALL_STATE(5795)] = 204822, + [SMALL_STATE(5796)] = 204843, + [SMALL_STATE(5797)] = 204864, + [SMALL_STATE(5798)] = 204889, + [SMALL_STATE(5799)] = 204912, + [SMALL_STATE(5800)] = 204933, + [SMALL_STATE(5801)] = 204958, + [SMALL_STATE(5802)] = 204983, + [SMALL_STATE(5803)] = 205004, + [SMALL_STATE(5804)] = 205027, + [SMALL_STATE(5805)] = 205052, + [SMALL_STATE(5806)] = 205077, + [SMALL_STATE(5807)] = 205100, + [SMALL_STATE(5808)] = 205121, + [SMALL_STATE(5809)] = 205142, + [SMALL_STATE(5810)] = 205163, + [SMALL_STATE(5811)] = 205188, + [SMALL_STATE(5812)] = 205213, + [SMALL_STATE(5813)] = 205236, + [SMALL_STATE(5814)] = 205259, + [SMALL_STATE(5815)] = 205284, + [SMALL_STATE(5816)] = 205305, + [SMALL_STATE(5817)] = 205326, + [SMALL_STATE(5818)] = 205347, + [SMALL_STATE(5819)] = 205372, + [SMALL_STATE(5820)] = 205393, + [SMALL_STATE(5821)] = 205418, + [SMALL_STATE(5822)] = 205439, + [SMALL_STATE(5823)] = 205462, + [SMALL_STATE(5824)] = 205487, + [SMALL_STATE(5825)] = 205508, + [SMALL_STATE(5826)] = 205533, + [SMALL_STATE(5827)] = 205554, + [SMALL_STATE(5828)] = 205579, + [SMALL_STATE(5829)] = 205600, + [SMALL_STATE(5830)] = 205621, + [SMALL_STATE(5831)] = 205642, + [SMALL_STATE(5832)] = 205659, + [SMALL_STATE(5833)] = 205684, + [SMALL_STATE(5834)] = 205705, + [SMALL_STATE(5835)] = 205728, + [SMALL_STATE(5836)] = 205753, + [SMALL_STATE(5837)] = 205778, + [SMALL_STATE(5838)] = 205803, + [SMALL_STATE(5839)] = 205828, + [SMALL_STATE(5840)] = 205849, + [SMALL_STATE(5841)] = 205874, + [SMALL_STATE(5842)] = 205899, + [SMALL_STATE(5843)] = 205924, + [SMALL_STATE(5844)] = 205945, + [SMALL_STATE(5845)] = 205968, + [SMALL_STATE(5846)] = 205991, + [SMALL_STATE(5847)] = 206016, + [SMALL_STATE(5848)] = 206037, + [SMALL_STATE(5849)] = 206062, + [SMALL_STATE(5850)] = 206083, + [SMALL_STATE(5851)] = 206104, + [SMALL_STATE(5852)] = 206129, + [SMALL_STATE(5853)] = 206150, + [SMALL_STATE(5854)] = 206167, + [SMALL_STATE(5855)] = 206184, + [SMALL_STATE(5856)] = 206201, + [SMALL_STATE(5857)] = 206218, + [SMALL_STATE(5858)] = 206243, + [SMALL_STATE(5859)] = 206260, + [SMALL_STATE(5860)] = 206285, + [SMALL_STATE(5861)] = 206306, + [SMALL_STATE(5862)] = 206323, + [SMALL_STATE(5863)] = 206348, + [SMALL_STATE(5864)] = 206369, + [SMALL_STATE(5865)] = 206390, + [SMALL_STATE(5866)] = 206413, + [SMALL_STATE(5867)] = 206434, + [SMALL_STATE(5868)] = 206459, + [SMALL_STATE(5869)] = 206480, + [SMALL_STATE(5870)] = 206505, + [SMALL_STATE(5871)] = 206526, + [SMALL_STATE(5872)] = 206551, + [SMALL_STATE(5873)] = 206572, + [SMALL_STATE(5874)] = 206593, + [SMALL_STATE(5875)] = 206614, + [SMALL_STATE(5876)] = 206635, + [SMALL_STATE(5877)] = 206656, + [SMALL_STATE(5878)] = 206677, + [SMALL_STATE(5879)] = 206698, + [SMALL_STATE(5880)] = 206719, + [SMALL_STATE(5881)] = 206740, + [SMALL_STATE(5882)] = 206765, + [SMALL_STATE(5883)] = 206786, + [SMALL_STATE(5884)] = 206803, + [SMALL_STATE(5885)] = 206824, + [SMALL_STATE(5886)] = 206845, + [SMALL_STATE(5887)] = 206866, + [SMALL_STATE(5888)] = 206887, + [SMALL_STATE(5889)] = 206908, + [SMALL_STATE(5890)] = 206929, + [SMALL_STATE(5891)] = 206946, + [SMALL_STATE(5892)] = 206971, + [SMALL_STATE(5893)] = 206992, + [SMALL_STATE(5894)] = 207013, + [SMALL_STATE(5895)] = 207034, + [SMALL_STATE(5896)] = 207057, + [SMALL_STATE(5897)] = 207078, + [SMALL_STATE(5898)] = 207095, + [SMALL_STATE(5899)] = 207116, + [SMALL_STATE(5900)] = 207137, + [SMALL_STATE(5901)] = 207158, + [SMALL_STATE(5902)] = 207179, + [SMALL_STATE(5903)] = 207200, + [SMALL_STATE(5904)] = 207221, + [SMALL_STATE(5905)] = 207242, + [SMALL_STATE(5906)] = 207261, + [SMALL_STATE(5907)] = 207282, + [SMALL_STATE(5908)] = 207307, + [SMALL_STATE(5909)] = 207330, + [SMALL_STATE(5910)] = 207351, + [SMALL_STATE(5911)] = 207376, + [SMALL_STATE(5912)] = 207401, + [SMALL_STATE(5913)] = 207418, + [SMALL_STATE(5914)] = 207439, + [SMALL_STATE(5915)] = 207464, + [SMALL_STATE(5916)] = 207481, + [SMALL_STATE(5917)] = 207502, + [SMALL_STATE(5918)] = 207523, + [SMALL_STATE(5919)] = 207544, + [SMALL_STATE(5920)] = 207569, + [SMALL_STATE(5921)] = 207586, + [SMALL_STATE(5922)] = 207611, + [SMALL_STATE(5923)] = 207632, + [SMALL_STATE(5924)] = 207657, + [SMALL_STATE(5925)] = 207682, + [SMALL_STATE(5926)] = 207703, + [SMALL_STATE(5927)] = 207728, + [SMALL_STATE(5928)] = 207753, + [SMALL_STATE(5929)] = 207776, + [SMALL_STATE(5930)] = 207801, + [SMALL_STATE(5931)] = 207822, + [SMALL_STATE(5932)] = 207843, + [SMALL_STATE(5933)] = 207868, + [SMALL_STATE(5934)] = 207889, + [SMALL_STATE(5935)] = 207910, + [SMALL_STATE(5936)] = 207927, + [SMALL_STATE(5937)] = 207948, + [SMALL_STATE(5938)] = 207965, + [SMALL_STATE(5939)] = 207982, + [SMALL_STATE(5940)] = 208007, + [SMALL_STATE(5941)] = 208028, + [SMALL_STATE(5942)] = 208053, + [SMALL_STATE(5943)] = 208074, + [SMALL_STATE(5944)] = 208099, + [SMALL_STATE(5945)] = 208120, + [SMALL_STATE(5946)] = 208145, + [SMALL_STATE(5947)] = 208170, + [SMALL_STATE(5948)] = 208191, + [SMALL_STATE(5949)] = 208216, + [SMALL_STATE(5950)] = 208237, + [SMALL_STATE(5951)] = 208262, + [SMALL_STATE(5952)] = 208281, + [SMALL_STATE(5953)] = 208306, + [SMALL_STATE(5954)] = 208331, + [SMALL_STATE(5955)] = 208356, + [SMALL_STATE(5956)] = 208377, + [SMALL_STATE(5957)] = 208402, + [SMALL_STATE(5958)] = 208427, + [SMALL_STATE(5959)] = 208452, + [SMALL_STATE(5960)] = 208477, + [SMALL_STATE(5961)] = 208498, + [SMALL_STATE(5962)] = 208523, + [SMALL_STATE(5963)] = 208544, + [SMALL_STATE(5964)] = 208569, + [SMALL_STATE(5965)] = 208590, + [SMALL_STATE(5966)] = 208615, + [SMALL_STATE(5967)] = 208640, + [SMALL_STATE(5968)] = 208661, + [SMALL_STATE(5969)] = 208686, + [SMALL_STATE(5970)] = 208711, + [SMALL_STATE(5971)] = 208732, + [SMALL_STATE(5972)] = 208757, + [SMALL_STATE(5973)] = 208782, + [SMALL_STATE(5974)] = 208807, + [SMALL_STATE(5975)] = 208832, + [SMALL_STATE(5976)] = 208857, + [SMALL_STATE(5977)] = 208878, + [SMALL_STATE(5978)] = 208903, + [SMALL_STATE(5979)] = 208924, + [SMALL_STATE(5980)] = 208945, + [SMALL_STATE(5981)] = 208966, + [SMALL_STATE(5982)] = 208991, + [SMALL_STATE(5983)] = 209016, + [SMALL_STATE(5984)] = 209041, + [SMALL_STATE(5985)] = 209062, + [SMALL_STATE(5986)] = 209083, + [SMALL_STATE(5987)] = 209104, + [SMALL_STATE(5988)] = 209125, + [SMALL_STATE(5989)] = 209150, + [SMALL_STATE(5990)] = 209175, + [SMALL_STATE(5991)] = 209196, + [SMALL_STATE(5992)] = 209217, + [SMALL_STATE(5993)] = 209242, + [SMALL_STATE(5994)] = 209267, + [SMALL_STATE(5995)] = 209288, + [SMALL_STATE(5996)] = 209313, + [SMALL_STATE(5997)] = 209338, + [SMALL_STATE(5998)] = 209363, + [SMALL_STATE(5999)] = 209388, + [SMALL_STATE(6000)] = 209413, + [SMALL_STATE(6001)] = 209434, + [SMALL_STATE(6002)] = 209459, + [SMALL_STATE(6003)] = 209484, + [SMALL_STATE(6004)] = 209507, + [SMALL_STATE(6005)] = 209532, + [SMALL_STATE(6006)] = 209553, + [SMALL_STATE(6007)] = 209578, + [SMALL_STATE(6008)] = 209603, + [SMALL_STATE(6009)] = 209628, + [SMALL_STATE(6010)] = 209653, + [SMALL_STATE(6011)] = 209674, + [SMALL_STATE(6012)] = 209695, + [SMALL_STATE(6013)] = 209712, + [SMALL_STATE(6014)] = 209733, + [SMALL_STATE(6015)] = 209758, + [SMALL_STATE(6016)] = 209779, + [SMALL_STATE(6017)] = 209804, + [SMALL_STATE(6018)] = 209827, + [SMALL_STATE(6019)] = 209852, + [SMALL_STATE(6020)] = 209877, + [SMALL_STATE(6021)] = 209902, + [SMALL_STATE(6022)] = 209923, + [SMALL_STATE(6023)] = 209944, + [SMALL_STATE(6024)] = 209961, + [SMALL_STATE(6025)] = 209984, + [SMALL_STATE(6026)] = 210009, + [SMALL_STATE(6027)] = 210026, + [SMALL_STATE(6028)] = 210043, + [SMALL_STATE(6029)] = 210068, + [SMALL_STATE(6030)] = 210085, + [SMALL_STATE(6031)] = 210102, + [SMALL_STATE(6032)] = 210119, + [SMALL_STATE(6033)] = 210144, + [SMALL_STATE(6034)] = 210169, + [SMALL_STATE(6035)] = 210186, + [SMALL_STATE(6036)] = 210211, + [SMALL_STATE(6037)] = 210232, + [SMALL_STATE(6038)] = 210257, + [SMALL_STATE(6039)] = 210282, + [SMALL_STATE(6040)] = 210307, + [SMALL_STATE(6041)] = 210324, + [SMALL_STATE(6042)] = 210349, + [SMALL_STATE(6043)] = 210370, + [SMALL_STATE(6044)] = 210395, + [SMALL_STATE(6045)] = 210420, + [SMALL_STATE(6046)] = 210437, + [SMALL_STATE(6047)] = 210462, + [SMALL_STATE(6048)] = 210487, + [SMALL_STATE(6049)] = 210508, + [SMALL_STATE(6050)] = 210533, + [SMALL_STATE(6051)] = 210558, + [SMALL_STATE(6052)] = 210583, + [SMALL_STATE(6053)] = 210600, + [SMALL_STATE(6054)] = 210625, + [SMALL_STATE(6055)] = 210642, + [SMALL_STATE(6056)] = 210663, + [SMALL_STATE(6057)] = 210684, + [SMALL_STATE(6058)] = 210707, + [SMALL_STATE(6059)] = 210724, + [SMALL_STATE(6060)] = 210741, + [SMALL_STATE(6061)] = 210758, + [SMALL_STATE(6062)] = 210783, + [SMALL_STATE(6063)] = 210800, + [SMALL_STATE(6064)] = 210821, + [SMALL_STATE(6065)] = 210844, + [SMALL_STATE(6066)] = 210865, + [SMALL_STATE(6067)] = 210886, + [SMALL_STATE(6068)] = 210911, + [SMALL_STATE(6069)] = 210928, + [SMALL_STATE(6070)] = 210953, + [SMALL_STATE(6071)] = 210970, + [SMALL_STATE(6072)] = 210991, + [SMALL_STATE(6073)] = 211008, + [SMALL_STATE(6074)] = 211025, + [SMALL_STATE(6075)] = 211042, + [SMALL_STATE(6076)] = 211063, + [SMALL_STATE(6077)] = 211080, + [SMALL_STATE(6078)] = 211097, + [SMALL_STATE(6079)] = 211114, + [SMALL_STATE(6080)] = 211135, + [SMALL_STATE(6081)] = 211156, + [SMALL_STATE(6082)] = 211181, + [SMALL_STATE(6083)] = 211198, + [SMALL_STATE(6084)] = 211215, + [SMALL_STATE(6085)] = 211232, + [SMALL_STATE(6086)] = 211249, + [SMALL_STATE(6087)] = 211274, + [SMALL_STATE(6088)] = 211291, + [SMALL_STATE(6089)] = 211308, + [SMALL_STATE(6090)] = 211329, + [SMALL_STATE(6091)] = 211346, + [SMALL_STATE(6092)] = 211371, + [SMALL_STATE(6093)] = 211388, + [SMALL_STATE(6094)] = 211405, + [SMALL_STATE(6095)] = 211422, + [SMALL_STATE(6096)] = 211447, + [SMALL_STATE(6097)] = 211472, + [SMALL_STATE(6098)] = 211497, + [SMALL_STATE(6099)] = 211518, + [SMALL_STATE(6100)] = 211541, + [SMALL_STATE(6101)] = 211558, + [SMALL_STATE(6102)] = 211583, + [SMALL_STATE(6103)] = 211604, + [SMALL_STATE(6104)] = 211629, + [SMALL_STATE(6105)] = 211654, + [SMALL_STATE(6106)] = 211679, + [SMALL_STATE(6107)] = 211702, + [SMALL_STATE(6108)] = 211719, + [SMALL_STATE(6109)] = 211744, + [SMALL_STATE(6110)] = 211761, + [SMALL_STATE(6111)] = 211786, + [SMALL_STATE(6112)] = 211803, + [SMALL_STATE(6113)] = 211828, + [SMALL_STATE(6114)] = 211845, + [SMALL_STATE(6115)] = 211866, + [SMALL_STATE(6116)] = 211891, + [SMALL_STATE(6117)] = 211908, + [SMALL_STATE(6118)] = 211925, + [SMALL_STATE(6119)] = 211946, + [SMALL_STATE(6120)] = 211967, + [SMALL_STATE(6121)] = 211992, + [SMALL_STATE(6122)] = 212009, + [SMALL_STATE(6123)] = 212034, + [SMALL_STATE(6124)] = 212051, + [SMALL_STATE(6125)] = 212076, + [SMALL_STATE(6126)] = 212093, + [SMALL_STATE(6127)] = 212114, + [SMALL_STATE(6128)] = 212131, + [SMALL_STATE(6129)] = 212148, + [SMALL_STATE(6130)] = 212165, + [SMALL_STATE(6131)] = 212188, + [SMALL_STATE(6132)] = 212213, + [SMALL_STATE(6133)] = 212236, + [SMALL_STATE(6134)] = 212253, + [SMALL_STATE(6135)] = 212278, + [SMALL_STATE(6136)] = 212295, + [SMALL_STATE(6137)] = 212320, + [SMALL_STATE(6138)] = 212341, + [SMALL_STATE(6139)] = 212358, + [SMALL_STATE(6140)] = 212379, + [SMALL_STATE(6141)] = 212396, + [SMALL_STATE(6142)] = 212413, + [SMALL_STATE(6143)] = 212430, + [SMALL_STATE(6144)] = 212447, + [SMALL_STATE(6145)] = 212472, + [SMALL_STATE(6146)] = 212489, + [SMALL_STATE(6147)] = 212506, + [SMALL_STATE(6148)] = 212523, + [SMALL_STATE(6149)] = 212540, + [SMALL_STATE(6150)] = 212557, + [SMALL_STATE(6151)] = 212574, + [SMALL_STATE(6152)] = 212595, + [SMALL_STATE(6153)] = 212616, + [SMALL_STATE(6154)] = 212637, + [SMALL_STATE(6155)] = 212660, + [SMALL_STATE(6156)] = 212685, + [SMALL_STATE(6157)] = 212706, + [SMALL_STATE(6158)] = 212727, + [SMALL_STATE(6159)] = 212748, + [SMALL_STATE(6160)] = 212765, + [SMALL_STATE(6161)] = 212790, + [SMALL_STATE(6162)] = 212811, + [SMALL_STATE(6163)] = 212832, + [SMALL_STATE(6164)] = 212853, + [SMALL_STATE(6165)] = 212870, + [SMALL_STATE(6166)] = 212895, + [SMALL_STATE(6167)] = 212916, + [SMALL_STATE(6168)] = 212939, + [SMALL_STATE(6169)] = 212960, + [SMALL_STATE(6170)] = 212977, + [SMALL_STATE(6171)] = 213002, + [SMALL_STATE(6172)] = 213019, + [SMALL_STATE(6173)] = 213036, + [SMALL_STATE(6174)] = 213057, + [SMALL_STATE(6175)] = 213082, + [SMALL_STATE(6176)] = 213105, + [SMALL_STATE(6177)] = 213128, + [SMALL_STATE(6178)] = 213149, + [SMALL_STATE(6179)] = 213166, + [SMALL_STATE(6180)] = 213191, + [SMALL_STATE(6181)] = 213216, + [SMALL_STATE(6182)] = 213233, + [SMALL_STATE(6183)] = 213256, + [SMALL_STATE(6184)] = 213273, + [SMALL_STATE(6185)] = 213294, + [SMALL_STATE(6186)] = 213317, + [SMALL_STATE(6187)] = 213338, + [SMALL_STATE(6188)] = 213363, + [SMALL_STATE(6189)] = 213380, + [SMALL_STATE(6190)] = 213401, + [SMALL_STATE(6191)] = 213426, + [SMALL_STATE(6192)] = 213443, + [SMALL_STATE(6193)] = 213464, + [SMALL_STATE(6194)] = 213481, + [SMALL_STATE(6195)] = 213506, + [SMALL_STATE(6196)] = 213531, + [SMALL_STATE(6197)] = 213548, + [SMALL_STATE(6198)] = 213569, + [SMALL_STATE(6199)] = 213586, + [SMALL_STATE(6200)] = 213607, + [SMALL_STATE(6201)] = 213624, + [SMALL_STATE(6202)] = 213641, + [SMALL_STATE(6203)] = 213658, + [SMALL_STATE(6204)] = 213675, + [SMALL_STATE(6205)] = 213696, + [SMALL_STATE(6206)] = 213715, + [SMALL_STATE(6207)] = 213732, + [SMALL_STATE(6208)] = 213751, + [SMALL_STATE(6209)] = 213770, + [SMALL_STATE(6210)] = 213787, + [SMALL_STATE(6211)] = 213806, + [SMALL_STATE(6212)] = 213831, + [SMALL_STATE(6213)] = 213848, + [SMALL_STATE(6214)] = 213865, + [SMALL_STATE(6215)] = 213882, + [SMALL_STATE(6216)] = 213899, + [SMALL_STATE(6217)] = 213916, + [SMALL_STATE(6218)] = 213933, + [SMALL_STATE(6219)] = 213958, + [SMALL_STATE(6220)] = 213975, + [SMALL_STATE(6221)] = 214000, + [SMALL_STATE(6222)] = 214021, + [SMALL_STATE(6223)] = 214038, + [SMALL_STATE(6224)] = 214055, + [SMALL_STATE(6225)] = 214080, + [SMALL_STATE(6226)] = 214097, + [SMALL_STATE(6227)] = 214122, + [SMALL_STATE(6228)] = 214139, + [SMALL_STATE(6229)] = 214160, + [SMALL_STATE(6230)] = 214185, + [SMALL_STATE(6231)] = 214202, + [SMALL_STATE(6232)] = 214227, + [SMALL_STATE(6233)] = 214252, + [SMALL_STATE(6234)] = 214277, + [SMALL_STATE(6235)] = 214294, + [SMALL_STATE(6236)] = 214319, + [SMALL_STATE(6237)] = 214340, + [SMALL_STATE(6238)] = 214357, + [SMALL_STATE(6239)] = 214378, + [SMALL_STATE(6240)] = 214399, + [SMALL_STATE(6241)] = 214424, + [SMALL_STATE(6242)] = 214441, + [SMALL_STATE(6243)] = 214462, + [SMALL_STATE(6244)] = 214479, + [SMALL_STATE(6245)] = 214496, + [SMALL_STATE(6246)] = 214517, + [SMALL_STATE(6247)] = 214534, + [SMALL_STATE(6248)] = 214559, + [SMALL_STATE(6249)] = 214584, + [SMALL_STATE(6250)] = 214609, + [SMALL_STATE(6251)] = 214630, + [SMALL_STATE(6252)] = 214655, + [SMALL_STATE(6253)] = 214676, + [SMALL_STATE(6254)] = 214697, + [SMALL_STATE(6255)] = 214714, + [SMALL_STATE(6256)] = 214739, + [SMALL_STATE(6257)] = 214764, + [SMALL_STATE(6258)] = 214781, + [SMALL_STATE(6259)] = 214802, + [SMALL_STATE(6260)] = 214819, + [SMALL_STATE(6261)] = 214840, + [SMALL_STATE(6262)] = 214863, + [SMALL_STATE(6263)] = 214884, + [SMALL_STATE(6264)] = 214909, + [SMALL_STATE(6265)] = 214934, + [SMALL_STATE(6266)] = 214955, + [SMALL_STATE(6267)] = 214972, + [SMALL_STATE(6268)] = 214993, + [SMALL_STATE(6269)] = 215014, + [SMALL_STATE(6270)] = 215039, + [SMALL_STATE(6271)] = 215056, + [SMALL_STATE(6272)] = 215077, + [SMALL_STATE(6273)] = 215094, + [SMALL_STATE(6274)] = 215111, + [SMALL_STATE(6275)] = 215128, + [SMALL_STATE(6276)] = 215149, + [SMALL_STATE(6277)] = 215166, + [SMALL_STATE(6278)] = 215187, + [SMALL_STATE(6279)] = 215204, + [SMALL_STATE(6280)] = 215221, + [SMALL_STATE(6281)] = 215246, + [SMALL_STATE(6282)] = 215263, + [SMALL_STATE(6283)] = 215284, + [SMALL_STATE(6284)] = 215305, + [SMALL_STATE(6285)] = 215322, + [SMALL_STATE(6286)] = 215339, + [SMALL_STATE(6287)] = 215364, + [SMALL_STATE(6288)] = 215385, + [SMALL_STATE(6289)] = 215402, + [SMALL_STATE(6290)] = 215427, + [SMALL_STATE(6291)] = 215448, + [SMALL_STATE(6292)] = 215473, + [SMALL_STATE(6293)] = 215494, + [SMALL_STATE(6294)] = 215515, + [SMALL_STATE(6295)] = 215538, + [SMALL_STATE(6296)] = 215559, + [SMALL_STATE(6297)] = 215584, + [SMALL_STATE(6298)] = 215609, + [SMALL_STATE(6299)] = 215630, + [SMALL_STATE(6300)] = 215651, + [SMALL_STATE(6301)] = 215676, + [SMALL_STATE(6302)] = 215696, + [SMALL_STATE(6303)] = 215716, + [SMALL_STATE(6304)] = 215738, + [SMALL_STATE(6305)] = 215760, + [SMALL_STATE(6306)] = 215782, + [SMALL_STATE(6307)] = 215804, + [SMALL_STATE(6308)] = 215824, + [SMALL_STATE(6309)] = 215846, + [SMALL_STATE(6310)] = 215866, + [SMALL_STATE(6311)] = 215888, + [SMALL_STATE(6312)] = 215908, + [SMALL_STATE(6313)] = 215930, + [SMALL_STATE(6314)] = 215950, + [SMALL_STATE(6315)] = 215970, + [SMALL_STATE(6316)] = 215990, + [SMALL_STATE(6317)] = 216010, + [SMALL_STATE(6318)] = 216030, + [SMALL_STATE(6319)] = 216052, + [SMALL_STATE(6320)] = 216072, + [SMALL_STATE(6321)] = 216092, + [SMALL_STATE(6322)] = 216112, + [SMALL_STATE(6323)] = 216132, + [SMALL_STATE(6324)] = 216154, + [SMALL_STATE(6325)] = 216176, + [SMALL_STATE(6326)] = 216196, + [SMALL_STATE(6327)] = 216216, + [SMALL_STATE(6328)] = 216236, + [SMALL_STATE(6329)] = 216256, + [SMALL_STATE(6330)] = 216276, + [SMALL_STATE(6331)] = 216296, + [SMALL_STATE(6332)] = 216316, + [SMALL_STATE(6333)] = 216338, + [SMALL_STATE(6334)] = 216360, + [SMALL_STATE(6335)] = 216380, + [SMALL_STATE(6336)] = 216400, + [SMALL_STATE(6337)] = 216420, + [SMALL_STATE(6338)] = 216440, + [SMALL_STATE(6339)] = 216462, + [SMALL_STATE(6340)] = 216484, + [SMALL_STATE(6341)] = 216500, + [SMALL_STATE(6342)] = 216522, + [SMALL_STATE(6343)] = 216542, + [SMALL_STATE(6344)] = 216562, + [SMALL_STATE(6345)] = 216580, + [SMALL_STATE(6346)] = 216596, + [SMALL_STATE(6347)] = 216616, + [SMALL_STATE(6348)] = 216636, + [SMALL_STATE(6349)] = 216658, + [SMALL_STATE(6350)] = 216678, + [SMALL_STATE(6351)] = 216694, + [SMALL_STATE(6352)] = 216716, + [SMALL_STATE(6353)] = 216736, + [SMALL_STATE(6354)] = 216758, + [SMALL_STATE(6355)] = 216780, + [SMALL_STATE(6356)] = 216800, + [SMALL_STATE(6357)] = 216820, + [SMALL_STATE(6358)] = 216842, + [SMALL_STATE(6359)] = 216860, + [SMALL_STATE(6360)] = 216880, + [SMALL_STATE(6361)] = 216900, + [SMALL_STATE(6362)] = 216920, + [SMALL_STATE(6363)] = 216940, + [SMALL_STATE(6364)] = 216960, + [SMALL_STATE(6365)] = 216982, + [SMALL_STATE(6366)] = 216998, + [SMALL_STATE(6367)] = 217018, + [SMALL_STATE(6368)] = 217038, + [SMALL_STATE(6369)] = 217058, + [SMALL_STATE(6370)] = 217080, + [SMALL_STATE(6371)] = 217100, + [SMALL_STATE(6372)] = 217120, + [SMALL_STATE(6373)] = 217140, + [SMALL_STATE(6374)] = 217160, + [SMALL_STATE(6375)] = 217180, + [SMALL_STATE(6376)] = 217200, + [SMALL_STATE(6377)] = 217222, + [SMALL_STATE(6378)] = 217244, + [SMALL_STATE(6379)] = 217264, + [SMALL_STATE(6380)] = 217284, + [SMALL_STATE(6381)] = 217304, + [SMALL_STATE(6382)] = 217324, + [SMALL_STATE(6383)] = 217344, + [SMALL_STATE(6384)] = 217364, + [SMALL_STATE(6385)] = 217384, + [SMALL_STATE(6386)] = 217406, + [SMALL_STATE(6387)] = 217426, + [SMALL_STATE(6388)] = 217448, + [SMALL_STATE(6389)] = 217470, + [SMALL_STATE(6390)] = 217490, + [SMALL_STATE(6391)] = 217510, + [SMALL_STATE(6392)] = 217530, + [SMALL_STATE(6393)] = 217552, + [SMALL_STATE(6394)] = 217572, + [SMALL_STATE(6395)] = 217592, + [SMALL_STATE(6396)] = 217614, + [SMALL_STATE(6397)] = 217634, + [SMALL_STATE(6398)] = 217656, + [SMALL_STATE(6399)] = 217676, + [SMALL_STATE(6400)] = 217696, + [SMALL_STATE(6401)] = 217718, + [SMALL_STATE(6402)] = 217738, + [SMALL_STATE(6403)] = 217758, + [SMALL_STATE(6404)] = 217778, + [SMALL_STATE(6405)] = 217798, + [SMALL_STATE(6406)] = 217820, + [SMALL_STATE(6407)] = 217840, + [SMALL_STATE(6408)] = 217860, + [SMALL_STATE(6409)] = 217882, + [SMALL_STATE(6410)] = 217902, + [SMALL_STATE(6411)] = 217922, + [SMALL_STATE(6412)] = 217938, + [SMALL_STATE(6413)] = 217958, + [SMALL_STATE(6414)] = 217980, + [SMALL_STATE(6415)] = 218000, + [SMALL_STATE(6416)] = 218020, + [SMALL_STATE(6417)] = 218040, + [SMALL_STATE(6418)] = 218062, + [SMALL_STATE(6419)] = 218082, + [SMALL_STATE(6420)] = 218104, + [SMALL_STATE(6421)] = 218124, + [SMALL_STATE(6422)] = 218144, + [SMALL_STATE(6423)] = 218164, + [SMALL_STATE(6424)] = 218182, + [SMALL_STATE(6425)] = 218200, + [SMALL_STATE(6426)] = 218220, + [SMALL_STATE(6427)] = 218240, + [SMALL_STATE(6428)] = 218260, + [SMALL_STATE(6429)] = 218280, + [SMALL_STATE(6430)] = 218300, + [SMALL_STATE(6431)] = 218320, + [SMALL_STATE(6432)] = 218342, + [SMALL_STATE(6433)] = 218360, + [SMALL_STATE(6434)] = 218380, + [SMALL_STATE(6435)] = 218396, + [SMALL_STATE(6436)] = 218418, + [SMALL_STATE(6437)] = 218440, + [SMALL_STATE(6438)] = 218460, + [SMALL_STATE(6439)] = 218482, + [SMALL_STATE(6440)] = 218504, + [SMALL_STATE(6441)] = 218524, + [SMALL_STATE(6442)] = 218546, + [SMALL_STATE(6443)] = 218566, + [SMALL_STATE(6444)] = 218586, + [SMALL_STATE(6445)] = 218608, + [SMALL_STATE(6446)] = 218628, + [SMALL_STATE(6447)] = 218648, + [SMALL_STATE(6448)] = 218670, + [SMALL_STATE(6449)] = 218690, + [SMALL_STATE(6450)] = 218710, + [SMALL_STATE(6451)] = 218732, + [SMALL_STATE(6452)] = 218752, + [SMALL_STATE(6453)] = 218772, + [SMALL_STATE(6454)] = 218792, + [SMALL_STATE(6455)] = 218812, + [SMALL_STATE(6456)] = 218832, + [SMALL_STATE(6457)] = 218852, + [SMALL_STATE(6458)] = 218872, + [SMALL_STATE(6459)] = 218892, + [SMALL_STATE(6460)] = 218914, + [SMALL_STATE(6461)] = 218936, + [SMALL_STATE(6462)] = 218958, + [SMALL_STATE(6463)] = 218978, + [SMALL_STATE(6464)] = 218998, + [SMALL_STATE(6465)] = 219018, + [SMALL_STATE(6466)] = 219040, + [SMALL_STATE(6467)] = 219058, + [SMALL_STATE(6468)] = 219078, + [SMALL_STATE(6469)] = 219098, + [SMALL_STATE(6470)] = 219118, + [SMALL_STATE(6471)] = 219138, + [SMALL_STATE(6472)] = 219158, + [SMALL_STATE(6473)] = 219178, + [SMALL_STATE(6474)] = 219198, + [SMALL_STATE(6475)] = 219216, + [SMALL_STATE(6476)] = 219236, + [SMALL_STATE(6477)] = 219256, + [SMALL_STATE(6478)] = 219276, + [SMALL_STATE(6479)] = 219296, + [SMALL_STATE(6480)] = 219316, + [SMALL_STATE(6481)] = 219336, + [SMALL_STATE(6482)] = 219356, + [SMALL_STATE(6483)] = 219376, + [SMALL_STATE(6484)] = 219398, + [SMALL_STATE(6485)] = 219418, + [SMALL_STATE(6486)] = 219438, + [SMALL_STATE(6487)] = 219458, + [SMALL_STATE(6488)] = 219478, + [SMALL_STATE(6489)] = 219498, + [SMALL_STATE(6490)] = 219518, + [SMALL_STATE(6491)] = 219538, + [SMALL_STATE(6492)] = 219558, + [SMALL_STATE(6493)] = 219578, + [SMALL_STATE(6494)] = 219598, + [SMALL_STATE(6495)] = 219618, + [SMALL_STATE(6496)] = 219638, + [SMALL_STATE(6497)] = 219658, + [SMALL_STATE(6498)] = 219678, + [SMALL_STATE(6499)] = 219698, + [SMALL_STATE(6500)] = 219720, + [SMALL_STATE(6501)] = 219742, + [SMALL_STATE(6502)] = 219762, + [SMALL_STATE(6503)] = 219784, + [SMALL_STATE(6504)] = 219800, + [SMALL_STATE(6505)] = 219820, + [SMALL_STATE(6506)] = 219842, + [SMALL_STATE(6507)] = 219864, + [SMALL_STATE(6508)] = 219886, + [SMALL_STATE(6509)] = 219908, + [SMALL_STATE(6510)] = 219928, + [SMALL_STATE(6511)] = 219948, + [SMALL_STATE(6512)] = 219970, + [SMALL_STATE(6513)] = 219992, + [SMALL_STATE(6514)] = 220014, + [SMALL_STATE(6515)] = 220036, + [SMALL_STATE(6516)] = 220058, + [SMALL_STATE(6517)] = 220080, + [SMALL_STATE(6518)] = 220100, + [SMALL_STATE(6519)] = 220116, + [SMALL_STATE(6520)] = 220136, + [SMALL_STATE(6521)] = 220152, + [SMALL_STATE(6522)] = 220172, + [SMALL_STATE(6523)] = 220194, + [SMALL_STATE(6524)] = 220216, + [SMALL_STATE(6525)] = 220236, + [SMALL_STATE(6526)] = 220256, + [SMALL_STATE(6527)] = 220278, + [SMALL_STATE(6528)] = 220298, + [SMALL_STATE(6529)] = 220318, + [SMALL_STATE(6530)] = 220338, + [SMALL_STATE(6531)] = 220360, + [SMALL_STATE(6532)] = 220380, + [SMALL_STATE(6533)] = 220400, + [SMALL_STATE(6534)] = 220422, + [SMALL_STATE(6535)] = 220440, + [SMALL_STATE(6536)] = 220460, + [SMALL_STATE(6537)] = 220482, + [SMALL_STATE(6538)] = 220504, + [SMALL_STATE(6539)] = 220526, + [SMALL_STATE(6540)] = 220546, + [SMALL_STATE(6541)] = 220564, + [SMALL_STATE(6542)] = 220586, + [SMALL_STATE(6543)] = 220608, + [SMALL_STATE(6544)] = 220626, + [SMALL_STATE(6545)] = 220648, + [SMALL_STATE(6546)] = 220668, + [SMALL_STATE(6547)] = 220690, + [SMALL_STATE(6548)] = 220710, + [SMALL_STATE(6549)] = 220730, + [SMALL_STATE(6550)] = 220750, + [SMALL_STATE(6551)] = 220768, + [SMALL_STATE(6552)] = 220788, + [SMALL_STATE(6553)] = 220808, + [SMALL_STATE(6554)] = 220830, + [SMALL_STATE(6555)] = 220852, + [SMALL_STATE(6556)] = 220874, + [SMALL_STATE(6557)] = 220894, + [SMALL_STATE(6558)] = 220916, + [SMALL_STATE(6559)] = 220932, + [SMALL_STATE(6560)] = 220954, + [SMALL_STATE(6561)] = 220976, + [SMALL_STATE(6562)] = 220992, + [SMALL_STATE(6563)] = 221014, + [SMALL_STATE(6564)] = 221036, + [SMALL_STATE(6565)] = 221058, + [SMALL_STATE(6566)] = 221080, + [SMALL_STATE(6567)] = 221100, + [SMALL_STATE(6568)] = 221116, + [SMALL_STATE(6569)] = 221136, + [SMALL_STATE(6570)] = 221156, + [SMALL_STATE(6571)] = 221176, + [SMALL_STATE(6572)] = 221196, + [SMALL_STATE(6573)] = 221216, + [SMALL_STATE(6574)] = 221234, + [SMALL_STATE(6575)] = 221254, + [SMALL_STATE(6576)] = 221276, + [SMALL_STATE(6577)] = 221292, + [SMALL_STATE(6578)] = 221314, + [SMALL_STATE(6579)] = 221330, + [SMALL_STATE(6580)] = 221350, + [SMALL_STATE(6581)] = 221372, + [SMALL_STATE(6582)] = 221387, + [SMALL_STATE(6583)] = 221402, + [SMALL_STATE(6584)] = 221417, + [SMALL_STATE(6585)] = 221432, + [SMALL_STATE(6586)] = 221447, + [SMALL_STATE(6587)] = 221462, + [SMALL_STATE(6588)] = 221481, + [SMALL_STATE(6589)] = 221496, + [SMALL_STATE(6590)] = 221511, + [SMALL_STATE(6591)] = 221526, + [SMALL_STATE(6592)] = 221541, + [SMALL_STATE(6593)] = 221556, + [SMALL_STATE(6594)] = 221573, + [SMALL_STATE(6595)] = 221588, + [SMALL_STATE(6596)] = 221603, + [SMALL_STATE(6597)] = 221618, + [SMALL_STATE(6598)] = 221637, + [SMALL_STATE(6599)] = 221656, + [SMALL_STATE(6600)] = 221675, + [SMALL_STATE(6601)] = 221690, + [SMALL_STATE(6602)] = 221705, + [SMALL_STATE(6603)] = 221720, + [SMALL_STATE(6604)] = 221737, + [SMALL_STATE(6605)] = 221752, + [SMALL_STATE(6606)] = 221769, + [SMALL_STATE(6607)] = 221788, + [SMALL_STATE(6608)] = 221807, + [SMALL_STATE(6609)] = 221822, + [SMALL_STATE(6610)] = 221837, + [SMALL_STATE(6611)] = 221856, + [SMALL_STATE(6612)] = 221871, + [SMALL_STATE(6613)] = 221886, + [SMALL_STATE(6614)] = 221903, + [SMALL_STATE(6615)] = 221918, + [SMALL_STATE(6616)] = 221937, + [SMALL_STATE(6617)] = 221952, + [SMALL_STATE(6618)] = 221969, + [SMALL_STATE(6619)] = 221984, + [SMALL_STATE(6620)] = 222001, + [SMALL_STATE(6621)] = 222020, + [SMALL_STATE(6622)] = 222039, + [SMALL_STATE(6623)] = 222058, + [SMALL_STATE(6624)] = 222077, + [SMALL_STATE(6625)] = 222096, + [SMALL_STATE(6626)] = 222111, + [SMALL_STATE(6627)] = 222126, + [SMALL_STATE(6628)] = 222145, + [SMALL_STATE(6629)] = 222160, + [SMALL_STATE(6630)] = 222179, + [SMALL_STATE(6631)] = 222198, + [SMALL_STATE(6632)] = 222217, + [SMALL_STATE(6633)] = 222232, + [SMALL_STATE(6634)] = 222249, + [SMALL_STATE(6635)] = 222266, + [SMALL_STATE(6636)] = 222281, + [SMALL_STATE(6637)] = 222296, + [SMALL_STATE(6638)] = 222311, + [SMALL_STATE(6639)] = 222330, + [SMALL_STATE(6640)] = 222345, + [SMALL_STATE(6641)] = 222360, + [SMALL_STATE(6642)] = 222375, + [SMALL_STATE(6643)] = 222392, + [SMALL_STATE(6644)] = 222407, + [SMALL_STATE(6645)] = 222422, + [SMALL_STATE(6646)] = 222441, + [SMALL_STATE(6647)] = 222456, + [SMALL_STATE(6648)] = 222471, + [SMALL_STATE(6649)] = 222486, + [SMALL_STATE(6650)] = 222505, + [SMALL_STATE(6651)] = 222520, + [SMALL_STATE(6652)] = 222535, + [SMALL_STATE(6653)] = 222554, + [SMALL_STATE(6654)] = 222573, + [SMALL_STATE(6655)] = 222592, + [SMALL_STATE(6656)] = 222607, + [SMALL_STATE(6657)] = 222622, + [SMALL_STATE(6658)] = 222637, + [SMALL_STATE(6659)] = 222652, + [SMALL_STATE(6660)] = 222671, + [SMALL_STATE(6661)] = 222688, + [SMALL_STATE(6662)] = 222703, + [SMALL_STATE(6663)] = 222718, + [SMALL_STATE(6664)] = 222737, + [SMALL_STATE(6665)] = 222756, + [SMALL_STATE(6666)] = 222775, + [SMALL_STATE(6667)] = 222790, + [SMALL_STATE(6668)] = 222805, + [SMALL_STATE(6669)] = 222820, + [SMALL_STATE(6670)] = 222835, + [SMALL_STATE(6671)] = 222850, + [SMALL_STATE(6672)] = 222867, + [SMALL_STATE(6673)] = 222886, + [SMALL_STATE(6674)] = 222901, + [SMALL_STATE(6675)] = 222920, + [SMALL_STATE(6676)] = 222939, + [SMALL_STATE(6677)] = 222958, + [SMALL_STATE(6678)] = 222973, + [SMALL_STATE(6679)] = 222992, + [SMALL_STATE(6680)] = 223011, + [SMALL_STATE(6681)] = 223028, + [SMALL_STATE(6682)] = 223047, + [SMALL_STATE(6683)] = 223062, + [SMALL_STATE(6684)] = 223079, + [SMALL_STATE(6685)] = 223094, + [SMALL_STATE(6686)] = 223109, + [SMALL_STATE(6687)] = 223124, + [SMALL_STATE(6688)] = 223139, + [SMALL_STATE(6689)] = 223158, + [SMALL_STATE(6690)] = 223177, + [SMALL_STATE(6691)] = 223192, + [SMALL_STATE(6692)] = 223207, + [SMALL_STATE(6693)] = 223222, + [SMALL_STATE(6694)] = 223241, + [SMALL_STATE(6695)] = 223260, + [SMALL_STATE(6696)] = 223275, + [SMALL_STATE(6697)] = 223294, + [SMALL_STATE(6698)] = 223309, + [SMALL_STATE(6699)] = 223328, + [SMALL_STATE(6700)] = 223343, + [SMALL_STATE(6701)] = 223362, + [SMALL_STATE(6702)] = 223377, + [SMALL_STATE(6703)] = 223392, + [SMALL_STATE(6704)] = 223411, + [SMALL_STATE(6705)] = 223426, + [SMALL_STATE(6706)] = 223445, + [SMALL_STATE(6707)] = 223462, + [SMALL_STATE(6708)] = 223477, + [SMALL_STATE(6709)] = 223496, + [SMALL_STATE(6710)] = 223511, + [SMALL_STATE(6711)] = 223530, + [SMALL_STATE(6712)] = 223545, + [SMALL_STATE(6713)] = 223560, + [SMALL_STATE(6714)] = 223575, + [SMALL_STATE(6715)] = 223590, + [SMALL_STATE(6716)] = 223609, + [SMALL_STATE(6717)] = 223628, + [SMALL_STATE(6718)] = 223647, + [SMALL_STATE(6719)] = 223666, + [SMALL_STATE(6720)] = 223681, + [SMALL_STATE(6721)] = 223696, + [SMALL_STATE(6722)] = 223715, + [SMALL_STATE(6723)] = 223730, + [SMALL_STATE(6724)] = 223749, + [SMALL_STATE(6725)] = 223764, + [SMALL_STATE(6726)] = 223783, + [SMALL_STATE(6727)] = 223798, + [SMALL_STATE(6728)] = 223817, + [SMALL_STATE(6729)] = 223836, + [SMALL_STATE(6730)] = 223853, + [SMALL_STATE(6731)] = 223868, + [SMALL_STATE(6732)] = 223887, + [SMALL_STATE(6733)] = 223906, + [SMALL_STATE(6734)] = 223921, + [SMALL_STATE(6735)] = 223936, + [SMALL_STATE(6736)] = 223955, + [SMALL_STATE(6737)] = 223974, + [SMALL_STATE(6738)] = 223989, + [SMALL_STATE(6739)] = 224006, + [SMALL_STATE(6740)] = 224021, + [SMALL_STATE(6741)] = 224040, + [SMALL_STATE(6742)] = 224059, + [SMALL_STATE(6743)] = 224078, + [SMALL_STATE(6744)] = 224097, + [SMALL_STATE(6745)] = 224112, + [SMALL_STATE(6746)] = 224131, + [SMALL_STATE(6747)] = 224148, + [SMALL_STATE(6748)] = 224163, + [SMALL_STATE(6749)] = 224178, + [SMALL_STATE(6750)] = 224193, + [SMALL_STATE(6751)] = 224212, + [SMALL_STATE(6752)] = 224231, + [SMALL_STATE(6753)] = 224250, + [SMALL_STATE(6754)] = 224267, + [SMALL_STATE(6755)] = 224284, + [SMALL_STATE(6756)] = 224303, + [SMALL_STATE(6757)] = 224320, + [SMALL_STATE(6758)] = 224335, + [SMALL_STATE(6759)] = 224350, + [SMALL_STATE(6760)] = 224369, + [SMALL_STATE(6761)] = 224384, + [SMALL_STATE(6762)] = 224401, + [SMALL_STATE(6763)] = 224418, + [SMALL_STATE(6764)] = 224435, + [SMALL_STATE(6765)] = 224450, + [SMALL_STATE(6766)] = 224465, + [SMALL_STATE(6767)] = 224480, + [SMALL_STATE(6768)] = 224495, + [SMALL_STATE(6769)] = 224510, + [SMALL_STATE(6770)] = 224525, + [SMALL_STATE(6771)] = 224540, + [SMALL_STATE(6772)] = 224555, + [SMALL_STATE(6773)] = 224570, + [SMALL_STATE(6774)] = 224587, + [SMALL_STATE(6775)] = 224604, + [SMALL_STATE(6776)] = 224619, + [SMALL_STATE(6777)] = 224636, + [SMALL_STATE(6778)] = 224655, + [SMALL_STATE(6779)] = 224670, + [SMALL_STATE(6780)] = 224689, + [SMALL_STATE(6781)] = 224708, + [SMALL_STATE(6782)] = 224723, + [SMALL_STATE(6783)] = 224738, + [SMALL_STATE(6784)] = 224753, + [SMALL_STATE(6785)] = 224770, + [SMALL_STATE(6786)] = 224789, + [SMALL_STATE(6787)] = 224808, + [SMALL_STATE(6788)] = 224827, + [SMALL_STATE(6789)] = 224842, + [SMALL_STATE(6790)] = 224857, + [SMALL_STATE(6791)] = 224874, + [SMALL_STATE(6792)] = 224889, + [SMALL_STATE(6793)] = 224904, + [SMALL_STATE(6794)] = 224919, + [SMALL_STATE(6795)] = 224938, + [SMALL_STATE(6796)] = 224953, + [SMALL_STATE(6797)] = 224968, + [SMALL_STATE(6798)] = 224983, + [SMALL_STATE(6799)] = 224998, + [SMALL_STATE(6800)] = 225017, + [SMALL_STATE(6801)] = 225034, + [SMALL_STATE(6802)] = 225051, + [SMALL_STATE(6803)] = 225066, + [SMALL_STATE(6804)] = 225081, + [SMALL_STATE(6805)] = 225096, + [SMALL_STATE(6806)] = 225111, + [SMALL_STATE(6807)] = 225126, + [SMALL_STATE(6808)] = 225145, + [SMALL_STATE(6809)] = 225162, + [SMALL_STATE(6810)] = 225181, + [SMALL_STATE(6811)] = 225196, + [SMALL_STATE(6812)] = 225215, + [SMALL_STATE(6813)] = 225230, + [SMALL_STATE(6814)] = 225245, + [SMALL_STATE(6815)] = 225264, + [SMALL_STATE(6816)] = 225283, + [SMALL_STATE(6817)] = 225302, + [SMALL_STATE(6818)] = 225321, + [SMALL_STATE(6819)] = 225336, + [SMALL_STATE(6820)] = 225355, + [SMALL_STATE(6821)] = 225370, + [SMALL_STATE(6822)] = 225387, + [SMALL_STATE(6823)] = 225402, + [SMALL_STATE(6824)] = 225421, + [SMALL_STATE(6825)] = 225436, + [SMALL_STATE(6826)] = 225451, + [SMALL_STATE(6827)] = 225466, + [SMALL_STATE(6828)] = 225481, + [SMALL_STATE(6829)] = 225496, + [SMALL_STATE(6830)] = 225515, + [SMALL_STATE(6831)] = 225530, + [SMALL_STATE(6832)] = 225549, + [SMALL_STATE(6833)] = 225568, + [SMALL_STATE(6834)] = 225587, + [SMALL_STATE(6835)] = 225606, + [SMALL_STATE(6836)] = 225625, + [SMALL_STATE(6837)] = 225644, + [SMALL_STATE(6838)] = 225663, + [SMALL_STATE(6839)] = 225678, + [SMALL_STATE(6840)] = 225695, + [SMALL_STATE(6841)] = 225714, + [SMALL_STATE(6842)] = 225729, + [SMALL_STATE(6843)] = 225748, + [SMALL_STATE(6844)] = 225763, + [SMALL_STATE(6845)] = 225778, + [SMALL_STATE(6846)] = 225795, + [SMALL_STATE(6847)] = 225814, + [SMALL_STATE(6848)] = 225829, + [SMALL_STATE(6849)] = 225844, + [SMALL_STATE(6850)] = 225859, + [SMALL_STATE(6851)] = 225874, + [SMALL_STATE(6852)] = 225889, + [SMALL_STATE(6853)] = 225904, + [SMALL_STATE(6854)] = 225923, + [SMALL_STATE(6855)] = 225938, + [SMALL_STATE(6856)] = 225957, + [SMALL_STATE(6857)] = 225972, + [SMALL_STATE(6858)] = 225991, + [SMALL_STATE(6859)] = 226010, + [SMALL_STATE(6860)] = 226025, + [SMALL_STATE(6861)] = 226044, + [SMALL_STATE(6862)] = 226059, + [SMALL_STATE(6863)] = 226074, + [SMALL_STATE(6864)] = 226089, + [SMALL_STATE(6865)] = 226104, + [SMALL_STATE(6866)] = 226123, + [SMALL_STATE(6867)] = 226138, + [SMALL_STATE(6868)] = 226153, + [SMALL_STATE(6869)] = 226168, + [SMALL_STATE(6870)] = 226183, + [SMALL_STATE(6871)] = 226198, + [SMALL_STATE(6872)] = 226213, + [SMALL_STATE(6873)] = 226228, + [SMALL_STATE(6874)] = 226243, + [SMALL_STATE(6875)] = 226258, + [SMALL_STATE(6876)] = 226273, + [SMALL_STATE(6877)] = 226292, + [SMALL_STATE(6878)] = 226307, + [SMALL_STATE(6879)] = 226322, + [SMALL_STATE(6880)] = 226339, + [SMALL_STATE(6881)] = 226354, + [SMALL_STATE(6882)] = 226373, + [SMALL_STATE(6883)] = 226388, + [SMALL_STATE(6884)] = 226403, + [SMALL_STATE(6885)] = 226418, + [SMALL_STATE(6886)] = 226437, + [SMALL_STATE(6887)] = 226456, + [SMALL_STATE(6888)] = 226471, + [SMALL_STATE(6889)] = 226490, + [SMALL_STATE(6890)] = 226505, + [SMALL_STATE(6891)] = 226520, + [SMALL_STATE(6892)] = 226539, + [SMALL_STATE(6893)] = 226554, + [SMALL_STATE(6894)] = 226571, + [SMALL_STATE(6895)] = 226588, + [SMALL_STATE(6896)] = 226603, + [SMALL_STATE(6897)] = 226618, + [SMALL_STATE(6898)] = 226635, + [SMALL_STATE(6899)] = 226652, + [SMALL_STATE(6900)] = 226667, + [SMALL_STATE(6901)] = 226684, + [SMALL_STATE(6902)] = 226699, + [SMALL_STATE(6903)] = 226714, + [SMALL_STATE(6904)] = 226729, + [SMALL_STATE(6905)] = 226744, + [SMALL_STATE(6906)] = 226763, + [SMALL_STATE(6907)] = 226778, + [SMALL_STATE(6908)] = 226797, + [SMALL_STATE(6909)] = 226814, + [SMALL_STATE(6910)] = 226833, + [SMALL_STATE(6911)] = 226848, + [SMALL_STATE(6912)] = 226863, + [SMALL_STATE(6913)] = 226878, + [SMALL_STATE(6914)] = 226893, + [SMALL_STATE(6915)] = 226908, + [SMALL_STATE(6916)] = 226923, + [SMALL_STATE(6917)] = 226940, + [SMALL_STATE(6918)] = 226957, + [SMALL_STATE(6919)] = 226974, + [SMALL_STATE(6920)] = 226993, + [SMALL_STATE(6921)] = 227012, + [SMALL_STATE(6922)] = 227031, + [SMALL_STATE(6923)] = 227046, + [SMALL_STATE(6924)] = 227065, + [SMALL_STATE(6925)] = 227084, + [SMALL_STATE(6926)] = 227103, + [SMALL_STATE(6927)] = 227118, + [SMALL_STATE(6928)] = 227133, + [SMALL_STATE(6929)] = 227148, + [SMALL_STATE(6930)] = 227163, + [SMALL_STATE(6931)] = 227178, + [SMALL_STATE(6932)] = 227193, + [SMALL_STATE(6933)] = 227208, + [SMALL_STATE(6934)] = 227227, + [SMALL_STATE(6935)] = 227246, + [SMALL_STATE(6936)] = 227261, + [SMALL_STATE(6937)] = 227278, + [SMALL_STATE(6938)] = 227295, + [SMALL_STATE(6939)] = 227312, + [SMALL_STATE(6940)] = 227327, + [SMALL_STATE(6941)] = 227342, + [SMALL_STATE(6942)] = 227357, + [SMALL_STATE(6943)] = 227376, + [SMALL_STATE(6944)] = 227391, + [SMALL_STATE(6945)] = 227406, + [SMALL_STATE(6946)] = 227425, + [SMALL_STATE(6947)] = 227442, + [SMALL_STATE(6948)] = 227457, + [SMALL_STATE(6949)] = 227472, + [SMALL_STATE(6950)] = 227487, + [SMALL_STATE(6951)] = 227502, + [SMALL_STATE(6952)] = 227519, + [SMALL_STATE(6953)] = 227536, + [SMALL_STATE(6954)] = 227551, + [SMALL_STATE(6955)] = 227570, + [SMALL_STATE(6956)] = 227585, + [SMALL_STATE(6957)] = 227600, + [SMALL_STATE(6958)] = 227615, + [SMALL_STATE(6959)] = 227634, + [SMALL_STATE(6960)] = 227653, + [SMALL_STATE(6961)] = 227668, + [SMALL_STATE(6962)] = 227683, + [SMALL_STATE(6963)] = 227702, + [SMALL_STATE(6964)] = 227721, + [SMALL_STATE(6965)] = 227736, + [SMALL_STATE(6966)] = 227751, + [SMALL_STATE(6967)] = 227766, + [SMALL_STATE(6968)] = 227781, + [SMALL_STATE(6969)] = 227796, + [SMALL_STATE(6970)] = 227811, + [SMALL_STATE(6971)] = 227828, + [SMALL_STATE(6972)] = 227845, + [SMALL_STATE(6973)] = 227862, + [SMALL_STATE(6974)] = 227877, + [SMALL_STATE(6975)] = 227894, + [SMALL_STATE(6976)] = 227913, + [SMALL_STATE(6977)] = 227932, + [SMALL_STATE(6978)] = 227951, + [SMALL_STATE(6979)] = 227970, + [SMALL_STATE(6980)] = 227989, + [SMALL_STATE(6981)] = 228008, + [SMALL_STATE(6982)] = 228027, + [SMALL_STATE(6983)] = 228044, + [SMALL_STATE(6984)] = 228059, + [SMALL_STATE(6985)] = 228076, + [SMALL_STATE(6986)] = 228093, + [SMALL_STATE(6987)] = 228108, + [SMALL_STATE(6988)] = 228125, + [SMALL_STATE(6989)] = 228140, + [SMALL_STATE(6990)] = 228155, + [SMALL_STATE(6991)] = 228170, + [SMALL_STATE(6992)] = 228187, + [SMALL_STATE(6993)] = 228206, + [SMALL_STATE(6994)] = 228221, + [SMALL_STATE(6995)] = 228236, + [SMALL_STATE(6996)] = 228251, + [SMALL_STATE(6997)] = 228270, + [SMALL_STATE(6998)] = 228287, + [SMALL_STATE(6999)] = 228302, + [SMALL_STATE(7000)] = 228317, + [SMALL_STATE(7001)] = 228332, + [SMALL_STATE(7002)] = 228347, + [SMALL_STATE(7003)] = 228362, + [SMALL_STATE(7004)] = 228377, + [SMALL_STATE(7005)] = 228396, + [SMALL_STATE(7006)] = 228411, + [SMALL_STATE(7007)] = 228428, + [SMALL_STATE(7008)] = 228447, + [SMALL_STATE(7009)] = 228462, + [SMALL_STATE(7010)] = 228481, + [SMALL_STATE(7011)] = 228500, + [SMALL_STATE(7012)] = 228519, + [SMALL_STATE(7013)] = 228534, + [SMALL_STATE(7014)] = 228553, + [SMALL_STATE(7015)] = 228572, + [SMALL_STATE(7016)] = 228587, + [SMALL_STATE(7017)] = 228602, + [SMALL_STATE(7018)] = 228621, + [SMALL_STATE(7019)] = 228640, + [SMALL_STATE(7020)] = 228655, + [SMALL_STATE(7021)] = 228670, + [SMALL_STATE(7022)] = 228687, + [SMALL_STATE(7023)] = 228704, + [SMALL_STATE(7024)] = 228723, + [SMALL_STATE(7025)] = 228738, + [SMALL_STATE(7026)] = 228753, + [SMALL_STATE(7027)] = 228772, + [SMALL_STATE(7028)] = 228787, + [SMALL_STATE(7029)] = 228802, + [SMALL_STATE(7030)] = 228817, + [SMALL_STATE(7031)] = 228836, + [SMALL_STATE(7032)] = 228851, + [SMALL_STATE(7033)] = 228866, + [SMALL_STATE(7034)] = 228885, + [SMALL_STATE(7035)] = 228904, + [SMALL_STATE(7036)] = 228923, + [SMALL_STATE(7037)] = 228938, + [SMALL_STATE(7038)] = 228957, + [SMALL_STATE(7039)] = 228976, + [SMALL_STATE(7040)] = 228991, + [SMALL_STATE(7041)] = 229006, + [SMALL_STATE(7042)] = 229021, + [SMALL_STATE(7043)] = 229036, + [SMALL_STATE(7044)] = 229053, + [SMALL_STATE(7045)] = 229072, + [SMALL_STATE(7046)] = 229091, + [SMALL_STATE(7047)] = 229106, + [SMALL_STATE(7048)] = 229121, + [SMALL_STATE(7049)] = 229136, + [SMALL_STATE(7050)] = 229155, + [SMALL_STATE(7051)] = 229170, + [SMALL_STATE(7052)] = 229189, + [SMALL_STATE(7053)] = 229204, + [SMALL_STATE(7054)] = 229219, + [SMALL_STATE(7055)] = 229236, + [SMALL_STATE(7056)] = 229255, + [SMALL_STATE(7057)] = 229272, + [SMALL_STATE(7058)] = 229291, + [SMALL_STATE(7059)] = 229310, + [SMALL_STATE(7060)] = 229329, + [SMALL_STATE(7061)] = 229344, + [SMALL_STATE(7062)] = 229363, + [SMALL_STATE(7063)] = 229380, + [SMALL_STATE(7064)] = 229399, + [SMALL_STATE(7065)] = 229414, + [SMALL_STATE(7066)] = 229433, + [SMALL_STATE(7067)] = 229448, + [SMALL_STATE(7068)] = 229463, + [SMALL_STATE(7069)] = 229478, + [SMALL_STATE(7070)] = 229493, + [SMALL_STATE(7071)] = 229512, + [SMALL_STATE(7072)] = 229527, + [SMALL_STATE(7073)] = 229546, + [SMALL_STATE(7074)] = 229561, + [SMALL_STATE(7075)] = 229580, + [SMALL_STATE(7076)] = 229599, + [SMALL_STATE(7077)] = 229618, + [SMALL_STATE(7078)] = 229637, + [SMALL_STATE(7079)] = 229652, + [SMALL_STATE(7080)] = 229671, + [SMALL_STATE(7081)] = 229690, + [SMALL_STATE(7082)] = 229709, + [SMALL_STATE(7083)] = 229724, + [SMALL_STATE(7084)] = 229741, + [SMALL_STATE(7085)] = 229756, + [SMALL_STATE(7086)] = 229771, + [SMALL_STATE(7087)] = 229790, + [SMALL_STATE(7088)] = 229805, + [SMALL_STATE(7089)] = 229822, + [SMALL_STATE(7090)] = 229837, + [SMALL_STATE(7091)] = 229854, + [SMALL_STATE(7092)] = 229871, + [SMALL_STATE(7093)] = 229886, + [SMALL_STATE(7094)] = 229901, + [SMALL_STATE(7095)] = 229920, + [SMALL_STATE(7096)] = 229935, + [SMALL_STATE(7097)] = 229950, + [SMALL_STATE(7098)] = 229967, + [SMALL_STATE(7099)] = 229982, + [SMALL_STATE(7100)] = 230001, + [SMALL_STATE(7101)] = 230020, + [SMALL_STATE(7102)] = 230039, + [SMALL_STATE(7103)] = 230054, + [SMALL_STATE(7104)] = 230069, + [SMALL_STATE(7105)] = 230084, + [SMALL_STATE(7106)] = 230099, + [SMALL_STATE(7107)] = 230114, + [SMALL_STATE(7108)] = 230131, + [SMALL_STATE(7109)] = 230146, + [SMALL_STATE(7110)] = 230165, + [SMALL_STATE(7111)] = 230180, + [SMALL_STATE(7112)] = 230195, + [SMALL_STATE(7113)] = 230210, + [SMALL_STATE(7114)] = 230225, + [SMALL_STATE(7115)] = 230240, + [SMALL_STATE(7116)] = 230255, + [SMALL_STATE(7117)] = 230270, + [SMALL_STATE(7118)] = 230285, + [SMALL_STATE(7119)] = 230302, + [SMALL_STATE(7120)] = 230317, + [SMALL_STATE(7121)] = 230332, + [SMALL_STATE(7122)] = 230351, + [SMALL_STATE(7123)] = 230370, + [SMALL_STATE(7124)] = 230389, + [SMALL_STATE(7125)] = 230406, + [SMALL_STATE(7126)] = 230425, + [SMALL_STATE(7127)] = 230440, + [SMALL_STATE(7128)] = 230455, + [SMALL_STATE(7129)] = 230470, + [SMALL_STATE(7130)] = 230485, + [SMALL_STATE(7131)] = 230504, + [SMALL_STATE(7132)] = 230519, + [SMALL_STATE(7133)] = 230538, + [SMALL_STATE(7134)] = 230557, + [SMALL_STATE(7135)] = 230572, + [SMALL_STATE(7136)] = 230587, + [SMALL_STATE(7137)] = 230606, + [SMALL_STATE(7138)] = 230621, + [SMALL_STATE(7139)] = 230640, + [SMALL_STATE(7140)] = 230659, + [SMALL_STATE(7141)] = 230674, + [SMALL_STATE(7142)] = 230691, + [SMALL_STATE(7143)] = 230706, + [SMALL_STATE(7144)] = 230721, + [SMALL_STATE(7145)] = 230736, + [SMALL_STATE(7146)] = 230751, + [SMALL_STATE(7147)] = 230766, + [SMALL_STATE(7148)] = 230785, + [SMALL_STATE(7149)] = 230804, + [SMALL_STATE(7150)] = 230819, + [SMALL_STATE(7151)] = 230838, + [SMALL_STATE(7152)] = 230857, + [SMALL_STATE(7153)] = 230876, + [SMALL_STATE(7154)] = 230895, + [SMALL_STATE(7155)] = 230912, + [SMALL_STATE(7156)] = 230929, + [SMALL_STATE(7157)] = 230944, + [SMALL_STATE(7158)] = 230963, + [SMALL_STATE(7159)] = 230982, + [SMALL_STATE(7160)] = 231001, + [SMALL_STATE(7161)] = 231016, + [SMALL_STATE(7162)] = 231035, + [SMALL_STATE(7163)] = 231054, + [SMALL_STATE(7164)] = 231073, + [SMALL_STATE(7165)] = 231088, + [SMALL_STATE(7166)] = 231103, + [SMALL_STATE(7167)] = 231118, + [SMALL_STATE(7168)] = 231133, + [SMALL_STATE(7169)] = 231148, + [SMALL_STATE(7170)] = 231163, + [SMALL_STATE(7171)] = 231182, + [SMALL_STATE(7172)] = 231197, + [SMALL_STATE(7173)] = 231216, + [SMALL_STATE(7174)] = 231231, + [SMALL_STATE(7175)] = 231250, + [SMALL_STATE(7176)] = 231269, + [SMALL_STATE(7177)] = 231284, + [SMALL_STATE(7178)] = 231299, + [SMALL_STATE(7179)] = 231318, + [SMALL_STATE(7180)] = 231333, + [SMALL_STATE(7181)] = 231348, + [SMALL_STATE(7182)] = 231363, + [SMALL_STATE(7183)] = 231382, + [SMALL_STATE(7184)] = 231397, + [SMALL_STATE(7185)] = 231412, + [SMALL_STATE(7186)] = 231431, + [SMALL_STATE(7187)] = 231450, + [SMALL_STATE(7188)] = 231467, + [SMALL_STATE(7189)] = 231484, + [SMALL_STATE(7190)] = 231499, + [SMALL_STATE(7191)] = 231516, + [SMALL_STATE(7192)] = 231531, + [SMALL_STATE(7193)] = 231548, + [SMALL_STATE(7194)] = 231565, + [SMALL_STATE(7195)] = 231584, + [SMALL_STATE(7196)] = 231599, + [SMALL_STATE(7197)] = 231618, + [SMALL_STATE(7198)] = 231633, + [SMALL_STATE(7199)] = 231652, + [SMALL_STATE(7200)] = 231667, + [SMALL_STATE(7201)] = 231682, + [SMALL_STATE(7202)] = 231701, + [SMALL_STATE(7203)] = 231716, + [SMALL_STATE(7204)] = 231731, + [SMALL_STATE(7205)] = 231746, + [SMALL_STATE(7206)] = 231761, + [SMALL_STATE(7207)] = 231778, + [SMALL_STATE(7208)] = 231797, + [SMALL_STATE(7209)] = 231816, + [SMALL_STATE(7210)] = 231831, + [SMALL_STATE(7211)] = 231850, + [SMALL_STATE(7212)] = 231869, + [SMALL_STATE(7213)] = 231884, + [SMALL_STATE(7214)] = 231903, + [SMALL_STATE(7215)] = 231922, + [SMALL_STATE(7216)] = 231941, + [SMALL_STATE(7217)] = 231956, + [SMALL_STATE(7218)] = 231971, + [SMALL_STATE(7219)] = 231986, + [SMALL_STATE(7220)] = 232001, + [SMALL_STATE(7221)] = 232018, + [SMALL_STATE(7222)] = 232033, + [SMALL_STATE(7223)] = 232048, + [SMALL_STATE(7224)] = 232063, + [SMALL_STATE(7225)] = 232078, + [SMALL_STATE(7226)] = 232093, + [SMALL_STATE(7227)] = 232112, + [SMALL_STATE(7228)] = 232127, + [SMALL_STATE(7229)] = 232146, + [SMALL_STATE(7230)] = 232161, + [SMALL_STATE(7231)] = 232180, + [SMALL_STATE(7232)] = 232199, + [SMALL_STATE(7233)] = 232214, + [SMALL_STATE(7234)] = 232233, + [SMALL_STATE(7235)] = 232248, + [SMALL_STATE(7236)] = 232263, + [SMALL_STATE(7237)] = 232278, + [SMALL_STATE(7238)] = 232293, + [SMALL_STATE(7239)] = 232308, + [SMALL_STATE(7240)] = 232323, + [SMALL_STATE(7241)] = 232338, + [SMALL_STATE(7242)] = 232355, + [SMALL_STATE(7243)] = 232370, + [SMALL_STATE(7244)] = 232385, + [SMALL_STATE(7245)] = 232400, + [SMALL_STATE(7246)] = 232415, + [SMALL_STATE(7247)] = 232430, + [SMALL_STATE(7248)] = 232445, + [SMALL_STATE(7249)] = 232464, + [SMALL_STATE(7250)] = 232483, + [SMALL_STATE(7251)] = 232502, + [SMALL_STATE(7252)] = 232517, + [SMALL_STATE(7253)] = 232534, + [SMALL_STATE(7254)] = 232553, + [SMALL_STATE(7255)] = 232568, + [SMALL_STATE(7256)] = 232583, + [SMALL_STATE(7257)] = 232598, + [SMALL_STATE(7258)] = 232613, + [SMALL_STATE(7259)] = 232628, + [SMALL_STATE(7260)] = 232643, + [SMALL_STATE(7261)] = 232658, + [SMALL_STATE(7262)] = 232673, + [SMALL_STATE(7263)] = 232688, + [SMALL_STATE(7264)] = 232703, + [SMALL_STATE(7265)] = 232718, + [SMALL_STATE(7266)] = 232737, + [SMALL_STATE(7267)] = 232756, + [SMALL_STATE(7268)] = 232773, + [SMALL_STATE(7269)] = 232788, + [SMALL_STATE(7270)] = 232805, + [SMALL_STATE(7271)] = 232822, + [SMALL_STATE(7272)] = 232841, + [SMALL_STATE(7273)] = 232860, + [SMALL_STATE(7274)] = 232879, + [SMALL_STATE(7275)] = 232898, + [SMALL_STATE(7276)] = 232917, + [SMALL_STATE(7277)] = 232932, + [SMALL_STATE(7278)] = 232951, + [SMALL_STATE(7279)] = 232970, + [SMALL_STATE(7280)] = 232985, + [SMALL_STATE(7281)] = 233000, + [SMALL_STATE(7282)] = 233015, + [SMALL_STATE(7283)] = 233034, + [SMALL_STATE(7284)] = 233049, + [SMALL_STATE(7285)] = 233068, + [SMALL_STATE(7286)] = 233083, + [SMALL_STATE(7287)] = 233102, + [SMALL_STATE(7288)] = 233117, + [SMALL_STATE(7289)] = 233136, + [SMALL_STATE(7290)] = 233151, + [SMALL_STATE(7291)] = 233170, + [SMALL_STATE(7292)] = 233189, + [SMALL_STATE(7293)] = 233208, + [SMALL_STATE(7294)] = 233223, + [SMALL_STATE(7295)] = 233238, + [SMALL_STATE(7296)] = 233257, + [SMALL_STATE(7297)] = 233276, + [SMALL_STATE(7298)] = 233295, + [SMALL_STATE(7299)] = 233310, + [SMALL_STATE(7300)] = 233329, + [SMALL_STATE(7301)] = 233344, + [SMALL_STATE(7302)] = 233359, + [SMALL_STATE(7303)] = 233378, + [SMALL_STATE(7304)] = 233393, + [SMALL_STATE(7305)] = 233412, + [SMALL_STATE(7306)] = 233429, + [SMALL_STATE(7307)] = 233444, + [SMALL_STATE(7308)] = 233459, + [SMALL_STATE(7309)] = 233474, + [SMALL_STATE(7310)] = 233489, + [SMALL_STATE(7311)] = 233504, + [SMALL_STATE(7312)] = 233519, + [SMALL_STATE(7313)] = 233534, + [SMALL_STATE(7314)] = 233551, + [SMALL_STATE(7315)] = 233566, + [SMALL_STATE(7316)] = 233585, + [SMALL_STATE(7317)] = 233604, + [SMALL_STATE(7318)] = 233619, + [SMALL_STATE(7319)] = 233638, + [SMALL_STATE(7320)] = 233653, + [SMALL_STATE(7321)] = 233668, + [SMALL_STATE(7322)] = 233683, + [SMALL_STATE(7323)] = 233698, + [SMALL_STATE(7324)] = 233713, + [SMALL_STATE(7325)] = 233728, + [SMALL_STATE(7326)] = 233743, + [SMALL_STATE(7327)] = 233758, + [SMALL_STATE(7328)] = 233777, + [SMALL_STATE(7329)] = 233796, + [SMALL_STATE(7330)] = 233811, + [SMALL_STATE(7331)] = 233830, + [SMALL_STATE(7332)] = 233845, + [SMALL_STATE(7333)] = 233860, + [SMALL_STATE(7334)] = 233875, + [SMALL_STATE(7335)] = 233894, + [SMALL_STATE(7336)] = 233913, + [SMALL_STATE(7337)] = 233930, + [SMALL_STATE(7338)] = 233947, + [SMALL_STATE(7339)] = 233962, + [SMALL_STATE(7340)] = 233981, + [SMALL_STATE(7341)] = 234000, + [SMALL_STATE(7342)] = 234019, + [SMALL_STATE(7343)] = 234038, + [SMALL_STATE(7344)] = 234057, + [SMALL_STATE(7345)] = 234072, + [SMALL_STATE(7346)] = 234091, + [SMALL_STATE(7347)] = 234106, + [SMALL_STATE(7348)] = 234121, + [SMALL_STATE(7349)] = 234136, + [SMALL_STATE(7350)] = 234155, + [SMALL_STATE(7351)] = 234171, + [SMALL_STATE(7352)] = 234187, + [SMALL_STATE(7353)] = 234203, + [SMALL_STATE(7354)] = 234219, + [SMALL_STATE(7355)] = 234235, + [SMALL_STATE(7356)] = 234249, + [SMALL_STATE(7357)] = 234265, + [SMALL_STATE(7358)] = 234281, + [SMALL_STATE(7359)] = 234295, + [SMALL_STATE(7360)] = 234311, + [SMALL_STATE(7361)] = 234327, + [SMALL_STATE(7362)] = 234343, + [SMALL_STATE(7363)] = 234359, + [SMALL_STATE(7364)] = 234375, + [SMALL_STATE(7365)] = 234391, + [SMALL_STATE(7366)] = 234405, + [SMALL_STATE(7367)] = 234421, + [SMALL_STATE(7368)] = 234435, + [SMALL_STATE(7369)] = 234451, + [SMALL_STATE(7370)] = 234467, + [SMALL_STATE(7371)] = 234483, + [SMALL_STATE(7372)] = 234497, + [SMALL_STATE(7373)] = 234513, + [SMALL_STATE(7374)] = 234529, + [SMALL_STATE(7375)] = 234545, + [SMALL_STATE(7376)] = 234561, + [SMALL_STATE(7377)] = 234577, + [SMALL_STATE(7378)] = 234591, + [SMALL_STATE(7379)] = 234607, + [SMALL_STATE(7380)] = 234623, + [SMALL_STATE(7381)] = 234637, + [SMALL_STATE(7382)] = 234653, + [SMALL_STATE(7383)] = 234669, + [SMALL_STATE(7384)] = 234685, + [SMALL_STATE(7385)] = 234701, + [SMALL_STATE(7386)] = 234715, + [SMALL_STATE(7387)] = 234731, + [SMALL_STATE(7388)] = 234747, + [SMALL_STATE(7389)] = 234761, + [SMALL_STATE(7390)] = 234775, + [SMALL_STATE(7391)] = 234789, + [SMALL_STATE(7392)] = 234805, + [SMALL_STATE(7393)] = 234819, + [SMALL_STATE(7394)] = 234835, + [SMALL_STATE(7395)] = 234851, + [SMALL_STATE(7396)] = 234865, + [SMALL_STATE(7397)] = 234881, + [SMALL_STATE(7398)] = 234895, + [SMALL_STATE(7399)] = 234911, + [SMALL_STATE(7400)] = 234927, + [SMALL_STATE(7401)] = 234943, + [SMALL_STATE(7402)] = 234957, + [SMALL_STATE(7403)] = 234971, + [SMALL_STATE(7404)] = 234985, + [SMALL_STATE(7405)] = 234999, + [SMALL_STATE(7406)] = 235013, + [SMALL_STATE(7407)] = 235027, + [SMALL_STATE(7408)] = 235043, + [SMALL_STATE(7409)] = 235059, + [SMALL_STATE(7410)] = 235075, + [SMALL_STATE(7411)] = 235091, + [SMALL_STATE(7412)] = 235105, + [SMALL_STATE(7413)] = 235121, + [SMALL_STATE(7414)] = 235137, + [SMALL_STATE(7415)] = 235151, + [SMALL_STATE(7416)] = 235165, + [SMALL_STATE(7417)] = 235179, + [SMALL_STATE(7418)] = 235195, + [SMALL_STATE(7419)] = 235211, + [SMALL_STATE(7420)] = 235227, + [SMALL_STATE(7421)] = 235241, + [SMALL_STATE(7422)] = 235255, + [SMALL_STATE(7423)] = 235269, + [SMALL_STATE(7424)] = 235283, + [SMALL_STATE(7425)] = 235297, + [SMALL_STATE(7426)] = 235313, + [SMALL_STATE(7427)] = 235327, + [SMALL_STATE(7428)] = 235341, + [SMALL_STATE(7429)] = 235355, + [SMALL_STATE(7430)] = 235369, + [SMALL_STATE(7431)] = 235383, + [SMALL_STATE(7432)] = 235399, + [SMALL_STATE(7433)] = 235413, + [SMALL_STATE(7434)] = 235429, + [SMALL_STATE(7435)] = 235445, + [SMALL_STATE(7436)] = 235461, + [SMALL_STATE(7437)] = 235477, + [SMALL_STATE(7438)] = 235493, + [SMALL_STATE(7439)] = 235509, + [SMALL_STATE(7440)] = 235523, + [SMALL_STATE(7441)] = 235539, + [SMALL_STATE(7442)] = 235553, + [SMALL_STATE(7443)] = 235569, + [SMALL_STATE(7444)] = 235585, + [SMALL_STATE(7445)] = 235599, + [SMALL_STATE(7446)] = 235613, + [SMALL_STATE(7447)] = 235629, + [SMALL_STATE(7448)] = 235645, + [SMALL_STATE(7449)] = 235659, + [SMALL_STATE(7450)] = 235675, + [SMALL_STATE(7451)] = 235689, + [SMALL_STATE(7452)] = 235705, + [SMALL_STATE(7453)] = 235721, + [SMALL_STATE(7454)] = 235737, + [SMALL_STATE(7455)] = 235753, + [SMALL_STATE(7456)] = 235767, + [SMALL_STATE(7457)] = 235781, + [SMALL_STATE(7458)] = 235795, + [SMALL_STATE(7459)] = 235809, + [SMALL_STATE(7460)] = 235825, + [SMALL_STATE(7461)] = 235841, + [SMALL_STATE(7462)] = 235857, + [SMALL_STATE(7463)] = 235871, + [SMALL_STATE(7464)] = 235885, + [SMALL_STATE(7465)] = 235899, + [SMALL_STATE(7466)] = 235913, + [SMALL_STATE(7467)] = 235929, + [SMALL_STATE(7468)] = 235945, + [SMALL_STATE(7469)] = 235959, + [SMALL_STATE(7470)] = 235973, + [SMALL_STATE(7471)] = 235987, + [SMALL_STATE(7472)] = 236001, + [SMALL_STATE(7473)] = 236015, + [SMALL_STATE(7474)] = 236029, + [SMALL_STATE(7475)] = 236045, + [SMALL_STATE(7476)] = 236061, + [SMALL_STATE(7477)] = 236077, + [SMALL_STATE(7478)] = 236091, + [SMALL_STATE(7479)] = 236105, + [SMALL_STATE(7480)] = 236119, + [SMALL_STATE(7481)] = 236133, + [SMALL_STATE(7482)] = 236147, + [SMALL_STATE(7483)] = 236161, + [SMALL_STATE(7484)] = 236175, + [SMALL_STATE(7485)] = 236189, + [SMALL_STATE(7486)] = 236203, + [SMALL_STATE(7487)] = 236217, + [SMALL_STATE(7488)] = 236231, + [SMALL_STATE(7489)] = 236245, + [SMALL_STATE(7490)] = 236261, + [SMALL_STATE(7491)] = 236277, + [SMALL_STATE(7492)] = 236291, + [SMALL_STATE(7493)] = 236307, + [SMALL_STATE(7494)] = 236321, + [SMALL_STATE(7495)] = 236337, + [SMALL_STATE(7496)] = 236351, + [SMALL_STATE(7497)] = 236365, + [SMALL_STATE(7498)] = 236379, + [SMALL_STATE(7499)] = 236393, + [SMALL_STATE(7500)] = 236409, + [SMALL_STATE(7501)] = 236423, + [SMALL_STATE(7502)] = 236437, + [SMALL_STATE(7503)] = 236451, + [SMALL_STATE(7504)] = 236467, + [SMALL_STATE(7505)] = 236483, + [SMALL_STATE(7506)] = 236499, + [SMALL_STATE(7507)] = 236515, + [SMALL_STATE(7508)] = 236531, + [SMALL_STATE(7509)] = 236547, + [SMALL_STATE(7510)] = 236563, + [SMALL_STATE(7511)] = 236577, + [SMALL_STATE(7512)] = 236591, + [SMALL_STATE(7513)] = 236607, + [SMALL_STATE(7514)] = 236623, + [SMALL_STATE(7515)] = 236639, + [SMALL_STATE(7516)] = 236655, + [SMALL_STATE(7517)] = 236671, + [SMALL_STATE(7518)] = 236687, + [SMALL_STATE(7519)] = 236703, + [SMALL_STATE(7520)] = 236719, + [SMALL_STATE(7521)] = 236733, + [SMALL_STATE(7522)] = 236749, + [SMALL_STATE(7523)] = 236765, + [SMALL_STATE(7524)] = 236779, + [SMALL_STATE(7525)] = 236795, + [SMALL_STATE(7526)] = 236811, + [SMALL_STATE(7527)] = 236827, + [SMALL_STATE(7528)] = 236843, + [SMALL_STATE(7529)] = 236859, + [SMALL_STATE(7530)] = 236875, + [SMALL_STATE(7531)] = 236891, + [SMALL_STATE(7532)] = 236907, + [SMALL_STATE(7533)] = 236923, + [SMALL_STATE(7534)] = 236939, + [SMALL_STATE(7535)] = 236955, + [SMALL_STATE(7536)] = 236971, + [SMALL_STATE(7537)] = 236987, + [SMALL_STATE(7538)] = 237001, + [SMALL_STATE(7539)] = 237015, + [SMALL_STATE(7540)] = 237031, + [SMALL_STATE(7541)] = 237047, + [SMALL_STATE(7542)] = 237063, + [SMALL_STATE(7543)] = 237079, + [SMALL_STATE(7544)] = 237093, + [SMALL_STATE(7545)] = 237109, + [SMALL_STATE(7546)] = 237123, + [SMALL_STATE(7547)] = 237139, + [SMALL_STATE(7548)] = 237155, + [SMALL_STATE(7549)] = 237171, + [SMALL_STATE(7550)] = 237185, + [SMALL_STATE(7551)] = 237201, + [SMALL_STATE(7552)] = 237217, + [SMALL_STATE(7553)] = 237233, + [SMALL_STATE(7554)] = 237249, + [SMALL_STATE(7555)] = 237263, + [SMALL_STATE(7556)] = 237277, + [SMALL_STATE(7557)] = 237293, + [SMALL_STATE(7558)] = 237307, + [SMALL_STATE(7559)] = 237321, + [SMALL_STATE(7560)] = 237337, + [SMALL_STATE(7561)] = 237351, + [SMALL_STATE(7562)] = 237367, + [SMALL_STATE(7563)] = 237383, + [SMALL_STATE(7564)] = 237399, + [SMALL_STATE(7565)] = 237415, + [SMALL_STATE(7566)] = 237431, + [SMALL_STATE(7567)] = 237445, + [SMALL_STATE(7568)] = 237459, + [SMALL_STATE(7569)] = 237473, + [SMALL_STATE(7570)] = 237489, + [SMALL_STATE(7571)] = 237503, + [SMALL_STATE(7572)] = 237519, + [SMALL_STATE(7573)] = 237535, + [SMALL_STATE(7574)] = 237551, + [SMALL_STATE(7575)] = 237565, + [SMALL_STATE(7576)] = 237579, + [SMALL_STATE(7577)] = 237595, + [SMALL_STATE(7578)] = 237611, + [SMALL_STATE(7579)] = 237627, + [SMALL_STATE(7580)] = 237641, + [SMALL_STATE(7581)] = 237655, + [SMALL_STATE(7582)] = 237671, + [SMALL_STATE(7583)] = 237687, + [SMALL_STATE(7584)] = 237703, + [SMALL_STATE(7585)] = 237719, + [SMALL_STATE(7586)] = 237733, + [SMALL_STATE(7587)] = 237747, + [SMALL_STATE(7588)] = 237761, + [SMALL_STATE(7589)] = 237777, + [SMALL_STATE(7590)] = 237793, + [SMALL_STATE(7591)] = 237809, + [SMALL_STATE(7592)] = 237825, + [SMALL_STATE(7593)] = 237841, + [SMALL_STATE(7594)] = 237855, + [SMALL_STATE(7595)] = 237871, + [SMALL_STATE(7596)] = 237887, + [SMALL_STATE(7597)] = 237903, + [SMALL_STATE(7598)] = 237917, + [SMALL_STATE(7599)] = 237933, + [SMALL_STATE(7600)] = 237947, + [SMALL_STATE(7601)] = 237961, + [SMALL_STATE(7602)] = 237975, + [SMALL_STATE(7603)] = 237989, + [SMALL_STATE(7604)] = 238005, + [SMALL_STATE(7605)] = 238019, + [SMALL_STATE(7606)] = 238035, + [SMALL_STATE(7607)] = 238049, + [SMALL_STATE(7608)] = 238063, + [SMALL_STATE(7609)] = 238077, + [SMALL_STATE(7610)] = 238093, + [SMALL_STATE(7611)] = 238109, + [SMALL_STATE(7612)] = 238125, + [SMALL_STATE(7613)] = 238141, + [SMALL_STATE(7614)] = 238157, + [SMALL_STATE(7615)] = 238173, + [SMALL_STATE(7616)] = 238189, + [SMALL_STATE(7617)] = 238203, + [SMALL_STATE(7618)] = 238217, + [SMALL_STATE(7619)] = 238231, + [SMALL_STATE(7620)] = 238245, + [SMALL_STATE(7621)] = 238259, + [SMALL_STATE(7622)] = 238275, + [SMALL_STATE(7623)] = 238289, + [SMALL_STATE(7624)] = 238303, + [SMALL_STATE(7625)] = 238317, + [SMALL_STATE(7626)] = 238331, + [SMALL_STATE(7627)] = 238347, + [SMALL_STATE(7628)] = 238363, + [SMALL_STATE(7629)] = 238379, + [SMALL_STATE(7630)] = 238395, + [SMALL_STATE(7631)] = 238409, + [SMALL_STATE(7632)] = 238425, + [SMALL_STATE(7633)] = 238441, + [SMALL_STATE(7634)] = 238457, + [SMALL_STATE(7635)] = 238471, + [SMALL_STATE(7636)] = 238485, + [SMALL_STATE(7637)] = 238501, + [SMALL_STATE(7638)] = 238517, + [SMALL_STATE(7639)] = 238533, + [SMALL_STATE(7640)] = 238549, + [SMALL_STATE(7641)] = 238563, + [SMALL_STATE(7642)] = 238579, + [SMALL_STATE(7643)] = 238593, + [SMALL_STATE(7644)] = 238607, + [SMALL_STATE(7645)] = 238621, + [SMALL_STATE(7646)] = 238637, + [SMALL_STATE(7647)] = 238651, + [SMALL_STATE(7648)] = 238667, + [SMALL_STATE(7649)] = 238683, + [SMALL_STATE(7650)] = 238697, + [SMALL_STATE(7651)] = 238711, + [SMALL_STATE(7652)] = 238725, + [SMALL_STATE(7653)] = 238739, + [SMALL_STATE(7654)] = 238755, + [SMALL_STATE(7655)] = 238771, + [SMALL_STATE(7656)] = 238787, + [SMALL_STATE(7657)] = 238803, + [SMALL_STATE(7658)] = 238817, + [SMALL_STATE(7659)] = 238831, + [SMALL_STATE(7660)] = 238847, + [SMALL_STATE(7661)] = 238863, + [SMALL_STATE(7662)] = 238879, + [SMALL_STATE(7663)] = 238895, + [SMALL_STATE(7664)] = 238909, + [SMALL_STATE(7665)] = 238923, + [SMALL_STATE(7666)] = 238939, + [SMALL_STATE(7667)] = 238953, + [SMALL_STATE(7668)] = 238967, + [SMALL_STATE(7669)] = 238981, + [SMALL_STATE(7670)] = 238995, + [SMALL_STATE(7671)] = 239009, + [SMALL_STATE(7672)] = 239023, + [SMALL_STATE(7673)] = 239037, + [SMALL_STATE(7674)] = 239053, + [SMALL_STATE(7675)] = 239069, + [SMALL_STATE(7676)] = 239083, + [SMALL_STATE(7677)] = 239097, + [SMALL_STATE(7678)] = 239113, + [SMALL_STATE(7679)] = 239129, + [SMALL_STATE(7680)] = 239143, + [SMALL_STATE(7681)] = 239159, + [SMALL_STATE(7682)] = 239173, + [SMALL_STATE(7683)] = 239187, + [SMALL_STATE(7684)] = 239201, + [SMALL_STATE(7685)] = 239215, + [SMALL_STATE(7686)] = 239231, + [SMALL_STATE(7687)] = 239247, + [SMALL_STATE(7688)] = 239263, + [SMALL_STATE(7689)] = 239277, + [SMALL_STATE(7690)] = 239293, + [SMALL_STATE(7691)] = 239307, + [SMALL_STATE(7692)] = 239321, + [SMALL_STATE(7693)] = 239335, + [SMALL_STATE(7694)] = 239349, + [SMALL_STATE(7695)] = 239363, + [SMALL_STATE(7696)] = 239377, + [SMALL_STATE(7697)] = 239391, + [SMALL_STATE(7698)] = 239405, + [SMALL_STATE(7699)] = 239419, + [SMALL_STATE(7700)] = 239435, + [SMALL_STATE(7701)] = 239449, + [SMALL_STATE(7702)] = 239465, + [SMALL_STATE(7703)] = 239479, + [SMALL_STATE(7704)] = 239493, + [SMALL_STATE(7705)] = 239507, + [SMALL_STATE(7706)] = 239521, + [SMALL_STATE(7707)] = 239535, + [SMALL_STATE(7708)] = 239551, + [SMALL_STATE(7709)] = 239565, + [SMALL_STATE(7710)] = 239579, + [SMALL_STATE(7711)] = 239595, + [SMALL_STATE(7712)] = 239609, + [SMALL_STATE(7713)] = 239623, + [SMALL_STATE(7714)] = 239637, + [SMALL_STATE(7715)] = 239651, + [SMALL_STATE(7716)] = 239665, + [SMALL_STATE(7717)] = 239681, + [SMALL_STATE(7718)] = 239695, + [SMALL_STATE(7719)] = 239709, + [SMALL_STATE(7720)] = 239723, + [SMALL_STATE(7721)] = 239737, + [SMALL_STATE(7722)] = 239751, + [SMALL_STATE(7723)] = 239767, + [SMALL_STATE(7724)] = 239781, + [SMALL_STATE(7725)] = 239795, + [SMALL_STATE(7726)] = 239809, + [SMALL_STATE(7727)] = 239823, + [SMALL_STATE(7728)] = 239837, + [SMALL_STATE(7729)] = 239851, + [SMALL_STATE(7730)] = 239865, + [SMALL_STATE(7731)] = 239881, + [SMALL_STATE(7732)] = 239895, + [SMALL_STATE(7733)] = 239911, + [SMALL_STATE(7734)] = 239925, + [SMALL_STATE(7735)] = 239939, + [SMALL_STATE(7736)] = 239955, + [SMALL_STATE(7737)] = 239971, + [SMALL_STATE(7738)] = 239987, + [SMALL_STATE(7739)] = 240003, + [SMALL_STATE(7740)] = 240017, + [SMALL_STATE(7741)] = 240031, + [SMALL_STATE(7742)] = 240045, + [SMALL_STATE(7743)] = 240061, + [SMALL_STATE(7744)] = 240077, + [SMALL_STATE(7745)] = 240091, + [SMALL_STATE(7746)] = 240105, + [SMALL_STATE(7747)] = 240121, + [SMALL_STATE(7748)] = 240137, + [SMALL_STATE(7749)] = 240153, + [SMALL_STATE(7750)] = 240167, + [SMALL_STATE(7751)] = 240183, + [SMALL_STATE(7752)] = 240197, + [SMALL_STATE(7753)] = 240213, + [SMALL_STATE(7754)] = 240229, + [SMALL_STATE(7755)] = 240243, + [SMALL_STATE(7756)] = 240259, + [SMALL_STATE(7757)] = 240273, + [SMALL_STATE(7758)] = 240287, + [SMALL_STATE(7759)] = 240301, + [SMALL_STATE(7760)] = 240315, + [SMALL_STATE(7761)] = 240329, + [SMALL_STATE(7762)] = 240343, + [SMALL_STATE(7763)] = 240357, + [SMALL_STATE(7764)] = 240371, + [SMALL_STATE(7765)] = 240385, + [SMALL_STATE(7766)] = 240399, + [SMALL_STATE(7767)] = 240415, + [SMALL_STATE(7768)] = 240429, + [SMALL_STATE(7769)] = 240443, + [SMALL_STATE(7770)] = 240457, + [SMALL_STATE(7771)] = 240471, + [SMALL_STATE(7772)] = 240485, + [SMALL_STATE(7773)] = 240499, + [SMALL_STATE(7774)] = 240515, + [SMALL_STATE(7775)] = 240529, + [SMALL_STATE(7776)] = 240543, + [SMALL_STATE(7777)] = 240559, + [SMALL_STATE(7778)] = 240573, + [SMALL_STATE(7779)] = 240587, + [SMALL_STATE(7780)] = 240601, + [SMALL_STATE(7781)] = 240615, + [SMALL_STATE(7782)] = 240629, + [SMALL_STATE(7783)] = 240645, + [SMALL_STATE(7784)] = 240659, + [SMALL_STATE(7785)] = 240673, + [SMALL_STATE(7786)] = 240689, + [SMALL_STATE(7787)] = 240705, + [SMALL_STATE(7788)] = 240721, + [SMALL_STATE(7789)] = 240737, + [SMALL_STATE(7790)] = 240753, + [SMALL_STATE(7791)] = 240769, + [SMALL_STATE(7792)] = 240785, + [SMALL_STATE(7793)] = 240801, + [SMALL_STATE(7794)] = 240817, + [SMALL_STATE(7795)] = 240833, + [SMALL_STATE(7796)] = 240849, + [SMALL_STATE(7797)] = 240865, + [SMALL_STATE(7798)] = 240879, + [SMALL_STATE(7799)] = 240895, + [SMALL_STATE(7800)] = 240911, + [SMALL_STATE(7801)] = 240927, + [SMALL_STATE(7802)] = 240943, + [SMALL_STATE(7803)] = 240959, + [SMALL_STATE(7804)] = 240975, + [SMALL_STATE(7805)] = 240991, + [SMALL_STATE(7806)] = 241007, + [SMALL_STATE(7807)] = 241021, + [SMALL_STATE(7808)] = 241037, + [SMALL_STATE(7809)] = 241053, + [SMALL_STATE(7810)] = 241067, + [SMALL_STATE(7811)] = 241083, + [SMALL_STATE(7812)] = 241099, + [SMALL_STATE(7813)] = 241115, + [SMALL_STATE(7814)] = 241131, + [SMALL_STATE(7815)] = 241147, + [SMALL_STATE(7816)] = 241161, + [SMALL_STATE(7817)] = 241177, + [SMALL_STATE(7818)] = 241193, + [SMALL_STATE(7819)] = 241209, + [SMALL_STATE(7820)] = 241225, + [SMALL_STATE(7821)] = 241241, + [SMALL_STATE(7822)] = 241257, + [SMALL_STATE(7823)] = 241273, + [SMALL_STATE(7824)] = 241287, + [SMALL_STATE(7825)] = 241303, + [SMALL_STATE(7826)] = 241319, + [SMALL_STATE(7827)] = 241335, + [SMALL_STATE(7828)] = 241351, + [SMALL_STATE(7829)] = 241367, + [SMALL_STATE(7830)] = 241383, + [SMALL_STATE(7831)] = 241397, + [SMALL_STATE(7832)] = 241413, + [SMALL_STATE(7833)] = 241429, + [SMALL_STATE(7834)] = 241445, + [SMALL_STATE(7835)] = 241461, + [SMALL_STATE(7836)] = 241477, + [SMALL_STATE(7837)] = 241491, + [SMALL_STATE(7838)] = 241507, + [SMALL_STATE(7839)] = 241521, + [SMALL_STATE(7840)] = 241535, + [SMALL_STATE(7841)] = 241551, + [SMALL_STATE(7842)] = 241567, + [SMALL_STATE(7843)] = 241583, + [SMALL_STATE(7844)] = 241597, + [SMALL_STATE(7845)] = 241613, + [SMALL_STATE(7846)] = 241627, + [SMALL_STATE(7847)] = 241641, + [SMALL_STATE(7848)] = 241657, + [SMALL_STATE(7849)] = 241673, + [SMALL_STATE(7850)] = 241687, + [SMALL_STATE(7851)] = 241703, + [SMALL_STATE(7852)] = 241719, + [SMALL_STATE(7853)] = 241733, + [SMALL_STATE(7854)] = 241749, + [SMALL_STATE(7855)] = 241765, + [SMALL_STATE(7856)] = 241781, + [SMALL_STATE(7857)] = 241795, + [SMALL_STATE(7858)] = 241811, + [SMALL_STATE(7859)] = 241827, + [SMALL_STATE(7860)] = 241843, + [SMALL_STATE(7861)] = 241859, + [SMALL_STATE(7862)] = 241873, + [SMALL_STATE(7863)] = 241889, + [SMALL_STATE(7864)] = 241905, + [SMALL_STATE(7865)] = 241921, + [SMALL_STATE(7866)] = 241937, + [SMALL_STATE(7867)] = 241953, + [SMALL_STATE(7868)] = 241969, + [SMALL_STATE(7869)] = 241985, + [SMALL_STATE(7870)] = 241999, + [SMALL_STATE(7871)] = 242013, + [SMALL_STATE(7872)] = 242027, + [SMALL_STATE(7873)] = 242043, + [SMALL_STATE(7874)] = 242057, + [SMALL_STATE(7875)] = 242071, + [SMALL_STATE(7876)] = 242085, + [SMALL_STATE(7877)] = 242099, + [SMALL_STATE(7878)] = 242115, + [SMALL_STATE(7879)] = 242131, + [SMALL_STATE(7880)] = 242147, + [SMALL_STATE(7881)] = 242161, + [SMALL_STATE(7882)] = 242177, + [SMALL_STATE(7883)] = 242191, + [SMALL_STATE(7884)] = 242207, + [SMALL_STATE(7885)] = 242221, + [SMALL_STATE(7886)] = 242237, + [SMALL_STATE(7887)] = 242253, + [SMALL_STATE(7888)] = 242269, + [SMALL_STATE(7889)] = 242285, + [SMALL_STATE(7890)] = 242301, + [SMALL_STATE(7891)] = 242315, + [SMALL_STATE(7892)] = 242331, + [SMALL_STATE(7893)] = 242347, + [SMALL_STATE(7894)] = 242361, + [SMALL_STATE(7895)] = 242375, + [SMALL_STATE(7896)] = 242389, + [SMALL_STATE(7897)] = 242405, + [SMALL_STATE(7898)] = 242421, + [SMALL_STATE(7899)] = 242437, + [SMALL_STATE(7900)] = 242451, + [SMALL_STATE(7901)] = 242465, + [SMALL_STATE(7902)] = 242479, + [SMALL_STATE(7903)] = 242493, + [SMALL_STATE(7904)] = 242507, + [SMALL_STATE(7905)] = 242523, + [SMALL_STATE(7906)] = 242539, + [SMALL_STATE(7907)] = 242555, + [SMALL_STATE(7908)] = 242571, + [SMALL_STATE(7909)] = 242585, + [SMALL_STATE(7910)] = 242601, + [SMALL_STATE(7911)] = 242617, + [SMALL_STATE(7912)] = 242633, + [SMALL_STATE(7913)] = 242649, + [SMALL_STATE(7914)] = 242665, + [SMALL_STATE(7915)] = 242679, + [SMALL_STATE(7916)] = 242693, + [SMALL_STATE(7917)] = 242707, + [SMALL_STATE(7918)] = 242721, + [SMALL_STATE(7919)] = 242735, + [SMALL_STATE(7920)] = 242749, + [SMALL_STATE(7921)] = 242765, + [SMALL_STATE(7922)] = 242781, + [SMALL_STATE(7923)] = 242795, + [SMALL_STATE(7924)] = 242811, + [SMALL_STATE(7925)] = 242827, + [SMALL_STATE(7926)] = 242843, + [SMALL_STATE(7927)] = 242859, + [SMALL_STATE(7928)] = 242875, + [SMALL_STATE(7929)] = 242889, + [SMALL_STATE(7930)] = 242903, + [SMALL_STATE(7931)] = 242919, + [SMALL_STATE(7932)] = 242935, + [SMALL_STATE(7933)] = 242951, + [SMALL_STATE(7934)] = 242967, + [SMALL_STATE(7935)] = 242981, + [SMALL_STATE(7936)] = 242997, + [SMALL_STATE(7937)] = 243013, + [SMALL_STATE(7938)] = 243027, + [SMALL_STATE(7939)] = 243041, + [SMALL_STATE(7940)] = 243057, + [SMALL_STATE(7941)] = 243073, + [SMALL_STATE(7942)] = 243089, + [SMALL_STATE(7943)] = 243105, + [SMALL_STATE(7944)] = 243119, + [SMALL_STATE(7945)] = 243135, + [SMALL_STATE(7946)] = 243151, + [SMALL_STATE(7947)] = 243165, + [SMALL_STATE(7948)] = 243181, + [SMALL_STATE(7949)] = 243197, + [SMALL_STATE(7950)] = 243213, + [SMALL_STATE(7951)] = 243229, + [SMALL_STATE(7952)] = 243243, + [SMALL_STATE(7953)] = 243257, + [SMALL_STATE(7954)] = 243271, + [SMALL_STATE(7955)] = 243287, + [SMALL_STATE(7956)] = 243303, + [SMALL_STATE(7957)] = 243317, + [SMALL_STATE(7958)] = 243333, + [SMALL_STATE(7959)] = 243349, + [SMALL_STATE(7960)] = 243365, + [SMALL_STATE(7961)] = 243381, + [SMALL_STATE(7962)] = 243397, + [SMALL_STATE(7963)] = 243411, + [SMALL_STATE(7964)] = 243427, + [SMALL_STATE(7965)] = 243443, + [SMALL_STATE(7966)] = 243459, + [SMALL_STATE(7967)] = 243473, + [SMALL_STATE(7968)] = 243489, + [SMALL_STATE(7969)] = 243505, + [SMALL_STATE(7970)] = 243521, + [SMALL_STATE(7971)] = 243537, + [SMALL_STATE(7972)] = 243551, + [SMALL_STATE(7973)] = 243567, + [SMALL_STATE(7974)] = 243583, + [SMALL_STATE(7975)] = 243599, + [SMALL_STATE(7976)] = 243615, + [SMALL_STATE(7977)] = 243629, + [SMALL_STATE(7978)] = 243645, + [SMALL_STATE(7979)] = 243659, + [SMALL_STATE(7980)] = 243673, + [SMALL_STATE(7981)] = 243687, + [SMALL_STATE(7982)] = 243703, + [SMALL_STATE(7983)] = 243717, + [SMALL_STATE(7984)] = 243733, + [SMALL_STATE(7985)] = 243749, + [SMALL_STATE(7986)] = 243765, + [SMALL_STATE(7987)] = 243781, + [SMALL_STATE(7988)] = 243797, + [SMALL_STATE(7989)] = 243811, + [SMALL_STATE(7990)] = 243825, + [SMALL_STATE(7991)] = 243839, + [SMALL_STATE(7992)] = 243855, + [SMALL_STATE(7993)] = 243871, + [SMALL_STATE(7994)] = 243887, + [SMALL_STATE(7995)] = 243903, + [SMALL_STATE(7996)] = 243917, + [SMALL_STATE(7997)] = 243933, + [SMALL_STATE(7998)] = 243949, + [SMALL_STATE(7999)] = 243965, + [SMALL_STATE(8000)] = 243981, + [SMALL_STATE(8001)] = 243995, + [SMALL_STATE(8002)] = 244011, + [SMALL_STATE(8003)] = 244027, + [SMALL_STATE(8004)] = 244043, + [SMALL_STATE(8005)] = 244059, + [SMALL_STATE(8006)] = 244075, + [SMALL_STATE(8007)] = 244091, + [SMALL_STATE(8008)] = 244107, + [SMALL_STATE(8009)] = 244123, + [SMALL_STATE(8010)] = 244139, + [SMALL_STATE(8011)] = 244155, + [SMALL_STATE(8012)] = 244171, + [SMALL_STATE(8013)] = 244187, + [SMALL_STATE(8014)] = 244203, + [SMALL_STATE(8015)] = 244219, + [SMALL_STATE(8016)] = 244233, + [SMALL_STATE(8017)] = 244249, + [SMALL_STATE(8018)] = 244265, + [SMALL_STATE(8019)] = 244281, + [SMALL_STATE(8020)] = 244295, + [SMALL_STATE(8021)] = 244311, + [SMALL_STATE(8022)] = 244327, + [SMALL_STATE(8023)] = 244343, + [SMALL_STATE(8024)] = 244357, + [SMALL_STATE(8025)] = 244373, + [SMALL_STATE(8026)] = 244387, + [SMALL_STATE(8027)] = 244403, + [SMALL_STATE(8028)] = 244419, + [SMALL_STATE(8029)] = 244435, + [SMALL_STATE(8030)] = 244451, + [SMALL_STATE(8031)] = 244467, + [SMALL_STATE(8032)] = 244483, + [SMALL_STATE(8033)] = 244499, + [SMALL_STATE(8034)] = 244515, + [SMALL_STATE(8035)] = 244531, + [SMALL_STATE(8036)] = 244547, + [SMALL_STATE(8037)] = 244563, + [SMALL_STATE(8038)] = 244579, + [SMALL_STATE(8039)] = 244593, + [SMALL_STATE(8040)] = 244609, + [SMALL_STATE(8041)] = 244625, + [SMALL_STATE(8042)] = 244641, + [SMALL_STATE(8043)] = 244657, + [SMALL_STATE(8044)] = 244671, + [SMALL_STATE(8045)] = 244685, + [SMALL_STATE(8046)] = 244701, + [SMALL_STATE(8047)] = 244717, + [SMALL_STATE(8048)] = 244731, + [SMALL_STATE(8049)] = 244747, + [SMALL_STATE(8050)] = 244763, + [SMALL_STATE(8051)] = 244779, + [SMALL_STATE(8052)] = 244795, + [SMALL_STATE(8053)] = 244811, + [SMALL_STATE(8054)] = 244827, + [SMALL_STATE(8055)] = 244843, + [SMALL_STATE(8056)] = 244859, + [SMALL_STATE(8057)] = 244873, + [SMALL_STATE(8058)] = 244889, + [SMALL_STATE(8059)] = 244905, + [SMALL_STATE(8060)] = 244921, + [SMALL_STATE(8061)] = 244935, + [SMALL_STATE(8062)] = 244951, + [SMALL_STATE(8063)] = 244965, + [SMALL_STATE(8064)] = 244981, + [SMALL_STATE(8065)] = 244997, + [SMALL_STATE(8066)] = 245013, + [SMALL_STATE(8067)] = 245029, + [SMALL_STATE(8068)] = 245045, + [SMALL_STATE(8069)] = 245059, + [SMALL_STATE(8070)] = 245073, + [SMALL_STATE(8071)] = 245089, + [SMALL_STATE(8072)] = 245105, + [SMALL_STATE(8073)] = 245121, + [SMALL_STATE(8074)] = 245137, + [SMALL_STATE(8075)] = 245153, + [SMALL_STATE(8076)] = 245169, + [SMALL_STATE(8077)] = 245185, + [SMALL_STATE(8078)] = 245201, + [SMALL_STATE(8079)] = 245217, + [SMALL_STATE(8080)] = 245233, + [SMALL_STATE(8081)] = 245249, + [SMALL_STATE(8082)] = 245265, + [SMALL_STATE(8083)] = 245279, + [SMALL_STATE(8084)] = 245293, + [SMALL_STATE(8085)] = 245309, + [SMALL_STATE(8086)] = 245325, + [SMALL_STATE(8087)] = 245341, + [SMALL_STATE(8088)] = 245357, + [SMALL_STATE(8089)] = 245373, + [SMALL_STATE(8090)] = 245389, + [SMALL_STATE(8091)] = 245403, + [SMALL_STATE(8092)] = 245419, + [SMALL_STATE(8093)] = 245435, + [SMALL_STATE(8094)] = 245451, + [SMALL_STATE(8095)] = 245467, + [SMALL_STATE(8096)] = 245481, + [SMALL_STATE(8097)] = 245495, + [SMALL_STATE(8098)] = 245511, + [SMALL_STATE(8099)] = 245527, + [SMALL_STATE(8100)] = 245541, + [SMALL_STATE(8101)] = 245557, + [SMALL_STATE(8102)] = 245573, + [SMALL_STATE(8103)] = 245589, + [SMALL_STATE(8104)] = 245605, + [SMALL_STATE(8105)] = 245619, + [SMALL_STATE(8106)] = 245635, + [SMALL_STATE(8107)] = 245651, + [SMALL_STATE(8108)] = 245667, + [SMALL_STATE(8109)] = 245681, + [SMALL_STATE(8110)] = 245695, + [SMALL_STATE(8111)] = 245711, + [SMALL_STATE(8112)] = 245725, + [SMALL_STATE(8113)] = 245739, + [SMALL_STATE(8114)] = 245755, + [SMALL_STATE(8115)] = 245769, + [SMALL_STATE(8116)] = 245785, + [SMALL_STATE(8117)] = 245801, + [SMALL_STATE(8118)] = 245817, + [SMALL_STATE(8119)] = 245833, + [SMALL_STATE(8120)] = 245847, + [SMALL_STATE(8121)] = 245863, + [SMALL_STATE(8122)] = 245879, + [SMALL_STATE(8123)] = 245895, + [SMALL_STATE(8124)] = 245911, + [SMALL_STATE(8125)] = 245927, + [SMALL_STATE(8126)] = 245943, + [SMALL_STATE(8127)] = 245959, + [SMALL_STATE(8128)] = 245975, + [SMALL_STATE(8129)] = 245991, + [SMALL_STATE(8130)] = 246007, + [SMALL_STATE(8131)] = 246021, + [SMALL_STATE(8132)] = 246035, + [SMALL_STATE(8133)] = 246051, + [SMALL_STATE(8134)] = 246067, + [SMALL_STATE(8135)] = 246083, + [SMALL_STATE(8136)] = 246099, + [SMALL_STATE(8137)] = 246115, + [SMALL_STATE(8138)] = 246131, + [SMALL_STATE(8139)] = 246147, + [SMALL_STATE(8140)] = 246161, + [SMALL_STATE(8141)] = 246177, + [SMALL_STATE(8142)] = 246193, + [SMALL_STATE(8143)] = 246209, + [SMALL_STATE(8144)] = 246223, + [SMALL_STATE(8145)] = 246237, + [SMALL_STATE(8146)] = 246251, + [SMALL_STATE(8147)] = 246265, + [SMALL_STATE(8148)] = 246279, + [SMALL_STATE(8149)] = 246293, + [SMALL_STATE(8150)] = 246309, + [SMALL_STATE(8151)] = 246325, + [SMALL_STATE(8152)] = 246341, + [SMALL_STATE(8153)] = 246357, + [SMALL_STATE(8154)] = 246373, + [SMALL_STATE(8155)] = 246389, + [SMALL_STATE(8156)] = 246403, + [SMALL_STATE(8157)] = 246419, + [SMALL_STATE(8158)] = 246435, + [SMALL_STATE(8159)] = 246451, + [SMALL_STATE(8160)] = 246467, + [SMALL_STATE(8161)] = 246483, + [SMALL_STATE(8162)] = 246499, + [SMALL_STATE(8163)] = 246515, + [SMALL_STATE(8164)] = 246531, + [SMALL_STATE(8165)] = 246547, + [SMALL_STATE(8166)] = 246561, + [SMALL_STATE(8167)] = 246575, + [SMALL_STATE(8168)] = 246591, + [SMALL_STATE(8169)] = 246607, + [SMALL_STATE(8170)] = 246621, + [SMALL_STATE(8171)] = 246637, + [SMALL_STATE(8172)] = 246651, + [SMALL_STATE(8173)] = 246667, + [SMALL_STATE(8174)] = 246683, + [SMALL_STATE(8175)] = 246697, + [SMALL_STATE(8176)] = 246711, + [SMALL_STATE(8177)] = 246725, + [SMALL_STATE(8178)] = 246739, + [SMALL_STATE(8179)] = 246753, + [SMALL_STATE(8180)] = 246769, + [SMALL_STATE(8181)] = 246783, + [SMALL_STATE(8182)] = 246797, + [SMALL_STATE(8183)] = 246813, + [SMALL_STATE(8184)] = 246827, + [SMALL_STATE(8185)] = 246840, + [SMALL_STATE(8186)] = 246853, + [SMALL_STATE(8187)] = 246866, + [SMALL_STATE(8188)] = 246879, + [SMALL_STATE(8189)] = 246892, + [SMALL_STATE(8190)] = 246905, + [SMALL_STATE(8191)] = 246918, + [SMALL_STATE(8192)] = 246931, + [SMALL_STATE(8193)] = 246944, + [SMALL_STATE(8194)] = 246957, + [SMALL_STATE(8195)] = 246970, + [SMALL_STATE(8196)] = 246983, + [SMALL_STATE(8197)] = 246996, + [SMALL_STATE(8198)] = 247009, + [SMALL_STATE(8199)] = 247022, + [SMALL_STATE(8200)] = 247035, + [SMALL_STATE(8201)] = 247048, + [SMALL_STATE(8202)] = 247061, + [SMALL_STATE(8203)] = 247074, + [SMALL_STATE(8204)] = 247087, + [SMALL_STATE(8205)] = 247100, + [SMALL_STATE(8206)] = 247113, + [SMALL_STATE(8207)] = 247126, + [SMALL_STATE(8208)] = 247139, + [SMALL_STATE(8209)] = 247152, + [SMALL_STATE(8210)] = 247165, + [SMALL_STATE(8211)] = 247178, + [SMALL_STATE(8212)] = 247191, + [SMALL_STATE(8213)] = 247204, + [SMALL_STATE(8214)] = 247217, + [SMALL_STATE(8215)] = 247230, + [SMALL_STATE(8216)] = 247243, + [SMALL_STATE(8217)] = 247256, + [SMALL_STATE(8218)] = 247269, + [SMALL_STATE(8219)] = 247282, + [SMALL_STATE(8220)] = 247295, + [SMALL_STATE(8221)] = 247308, + [SMALL_STATE(8222)] = 247321, + [SMALL_STATE(8223)] = 247334, + [SMALL_STATE(8224)] = 247347, + [SMALL_STATE(8225)] = 247360, + [SMALL_STATE(8226)] = 247373, + [SMALL_STATE(8227)] = 247386, + [SMALL_STATE(8228)] = 247399, + [SMALL_STATE(8229)] = 247412, + [SMALL_STATE(8230)] = 247425, + [SMALL_STATE(8231)] = 247438, + [SMALL_STATE(8232)] = 247451, + [SMALL_STATE(8233)] = 247464, + [SMALL_STATE(8234)] = 247477, + [SMALL_STATE(8235)] = 247490, + [SMALL_STATE(8236)] = 247503, + [SMALL_STATE(8237)] = 247516, + [SMALL_STATE(8238)] = 247529, + [SMALL_STATE(8239)] = 247542, + [SMALL_STATE(8240)] = 247555, + [SMALL_STATE(8241)] = 247568, + [SMALL_STATE(8242)] = 247581, + [SMALL_STATE(8243)] = 247594, + [SMALL_STATE(8244)] = 247607, + [SMALL_STATE(8245)] = 247620, + [SMALL_STATE(8246)] = 247633, + [SMALL_STATE(8247)] = 247646, + [SMALL_STATE(8248)] = 247659, + [SMALL_STATE(8249)] = 247672, + [SMALL_STATE(8250)] = 247685, + [SMALL_STATE(8251)] = 247698, + [SMALL_STATE(8252)] = 247711, + [SMALL_STATE(8253)] = 247724, + [SMALL_STATE(8254)] = 247737, + [SMALL_STATE(8255)] = 247750, + [SMALL_STATE(8256)] = 247763, + [SMALL_STATE(8257)] = 247776, + [SMALL_STATE(8258)] = 247789, + [SMALL_STATE(8259)] = 247802, + [SMALL_STATE(8260)] = 247815, + [SMALL_STATE(8261)] = 247828, + [SMALL_STATE(8262)] = 247841, + [SMALL_STATE(8263)] = 247854, + [SMALL_STATE(8264)] = 247867, + [SMALL_STATE(8265)] = 247880, + [SMALL_STATE(8266)] = 247893, + [SMALL_STATE(8267)] = 247906, + [SMALL_STATE(8268)] = 247919, + [SMALL_STATE(8269)] = 247932, + [SMALL_STATE(8270)] = 247945, + [SMALL_STATE(8271)] = 247958, + [SMALL_STATE(8272)] = 247971, + [SMALL_STATE(8273)] = 247984, + [SMALL_STATE(8274)] = 247997, + [SMALL_STATE(8275)] = 248010, + [SMALL_STATE(8276)] = 248023, + [SMALL_STATE(8277)] = 248036, + [SMALL_STATE(8278)] = 248049, + [SMALL_STATE(8279)] = 248062, + [SMALL_STATE(8280)] = 248075, + [SMALL_STATE(8281)] = 248088, + [SMALL_STATE(8282)] = 248101, + [SMALL_STATE(8283)] = 248114, + [SMALL_STATE(8284)] = 248127, + [SMALL_STATE(8285)] = 248140, + [SMALL_STATE(8286)] = 248153, + [SMALL_STATE(8287)] = 248166, + [SMALL_STATE(8288)] = 248179, + [SMALL_STATE(8289)] = 248192, + [SMALL_STATE(8290)] = 248205, + [SMALL_STATE(8291)] = 248218, + [SMALL_STATE(8292)] = 248231, + [SMALL_STATE(8293)] = 248244, + [SMALL_STATE(8294)] = 248257, + [SMALL_STATE(8295)] = 248270, + [SMALL_STATE(8296)] = 248283, + [SMALL_STATE(8297)] = 248296, + [SMALL_STATE(8298)] = 248309, + [SMALL_STATE(8299)] = 248322, + [SMALL_STATE(8300)] = 248335, + [SMALL_STATE(8301)] = 248348, + [SMALL_STATE(8302)] = 248361, + [SMALL_STATE(8303)] = 248374, + [SMALL_STATE(8304)] = 248387, + [SMALL_STATE(8305)] = 248400, + [SMALL_STATE(8306)] = 248413, + [SMALL_STATE(8307)] = 248426, + [SMALL_STATE(8308)] = 248439, + [SMALL_STATE(8309)] = 248452, + [SMALL_STATE(8310)] = 248465, + [SMALL_STATE(8311)] = 248478, + [SMALL_STATE(8312)] = 248491, + [SMALL_STATE(8313)] = 248504, + [SMALL_STATE(8314)] = 248517, + [SMALL_STATE(8315)] = 248530, + [SMALL_STATE(8316)] = 248543, + [SMALL_STATE(8317)] = 248556, + [SMALL_STATE(8318)] = 248569, + [SMALL_STATE(8319)] = 248582, + [SMALL_STATE(8320)] = 248595, + [SMALL_STATE(8321)] = 248608, + [SMALL_STATE(8322)] = 248621, + [SMALL_STATE(8323)] = 248634, + [SMALL_STATE(8324)] = 248647, + [SMALL_STATE(8325)] = 248660, + [SMALL_STATE(8326)] = 248673, + [SMALL_STATE(8327)] = 248686, + [SMALL_STATE(8328)] = 248699, + [SMALL_STATE(8329)] = 248712, + [SMALL_STATE(8330)] = 248725, + [SMALL_STATE(8331)] = 248738, + [SMALL_STATE(8332)] = 248751, + [SMALL_STATE(8333)] = 248764, + [SMALL_STATE(8334)] = 248777, + [SMALL_STATE(8335)] = 248790, + [SMALL_STATE(8336)] = 248803, + [SMALL_STATE(8337)] = 248816, + [SMALL_STATE(8338)] = 248829, + [SMALL_STATE(8339)] = 248842, + [SMALL_STATE(8340)] = 248855, + [SMALL_STATE(8341)] = 248868, + [SMALL_STATE(8342)] = 248881, + [SMALL_STATE(8343)] = 248894, + [SMALL_STATE(8344)] = 248907, + [SMALL_STATE(8345)] = 248920, + [SMALL_STATE(8346)] = 248933, + [SMALL_STATE(8347)] = 248946, + [SMALL_STATE(8348)] = 248959, + [SMALL_STATE(8349)] = 248972, + [SMALL_STATE(8350)] = 248985, + [SMALL_STATE(8351)] = 248998, + [SMALL_STATE(8352)] = 249011, + [SMALL_STATE(8353)] = 249024, + [SMALL_STATE(8354)] = 249037, + [SMALL_STATE(8355)] = 249050, + [SMALL_STATE(8356)] = 249063, + [SMALL_STATE(8357)] = 249076, + [SMALL_STATE(8358)] = 249089, + [SMALL_STATE(8359)] = 249102, + [SMALL_STATE(8360)] = 249115, + [SMALL_STATE(8361)] = 249128, + [SMALL_STATE(8362)] = 249141, + [SMALL_STATE(8363)] = 249154, + [SMALL_STATE(8364)] = 249167, + [SMALL_STATE(8365)] = 249180, + [SMALL_STATE(8366)] = 249193, + [SMALL_STATE(8367)] = 249206, + [SMALL_STATE(8368)] = 249219, + [SMALL_STATE(8369)] = 249232, + [SMALL_STATE(8370)] = 249245, + [SMALL_STATE(8371)] = 249258, + [SMALL_STATE(8372)] = 249271, + [SMALL_STATE(8373)] = 249284, + [SMALL_STATE(8374)] = 249297, + [SMALL_STATE(8375)] = 249310, + [SMALL_STATE(8376)] = 249323, + [SMALL_STATE(8377)] = 249336, + [SMALL_STATE(8378)] = 249349, + [SMALL_STATE(8379)] = 249362, + [SMALL_STATE(8380)] = 249375, + [SMALL_STATE(8381)] = 249388, + [SMALL_STATE(8382)] = 249401, + [SMALL_STATE(8383)] = 249414, + [SMALL_STATE(8384)] = 249427, + [SMALL_STATE(8385)] = 249440, + [SMALL_STATE(8386)] = 249453, + [SMALL_STATE(8387)] = 249466, + [SMALL_STATE(8388)] = 249479, + [SMALL_STATE(8389)] = 249492, + [SMALL_STATE(8390)] = 249505, + [SMALL_STATE(8391)] = 249518, + [SMALL_STATE(8392)] = 249531, + [SMALL_STATE(8393)] = 249544, + [SMALL_STATE(8394)] = 249557, + [SMALL_STATE(8395)] = 249570, + [SMALL_STATE(8396)] = 249583, + [SMALL_STATE(8397)] = 249596, + [SMALL_STATE(8398)] = 249609, + [SMALL_STATE(8399)] = 249622, + [SMALL_STATE(8400)] = 249635, + [SMALL_STATE(8401)] = 249648, + [SMALL_STATE(8402)] = 249661, + [SMALL_STATE(8403)] = 249674, + [SMALL_STATE(8404)] = 249687, + [SMALL_STATE(8405)] = 249700, + [SMALL_STATE(8406)] = 249713, + [SMALL_STATE(8407)] = 249726, + [SMALL_STATE(8408)] = 249739, + [SMALL_STATE(8409)] = 249752, + [SMALL_STATE(8410)] = 249765, + [SMALL_STATE(8411)] = 249778, + [SMALL_STATE(8412)] = 249791, + [SMALL_STATE(8413)] = 249804, + [SMALL_STATE(8414)] = 249817, + [SMALL_STATE(8415)] = 249830, + [SMALL_STATE(8416)] = 249843, + [SMALL_STATE(8417)] = 249856, + [SMALL_STATE(8418)] = 249869, + [SMALL_STATE(8419)] = 249882, + [SMALL_STATE(8420)] = 249895, + [SMALL_STATE(8421)] = 249908, + [SMALL_STATE(8422)] = 249921, + [SMALL_STATE(8423)] = 249934, + [SMALL_STATE(8424)] = 249947, + [SMALL_STATE(8425)] = 249960, + [SMALL_STATE(8426)] = 249973, + [SMALL_STATE(8427)] = 249986, + [SMALL_STATE(8428)] = 249999, + [SMALL_STATE(8429)] = 250012, + [SMALL_STATE(8430)] = 250025, + [SMALL_STATE(8431)] = 250038, + [SMALL_STATE(8432)] = 250051, + [SMALL_STATE(8433)] = 250064, + [SMALL_STATE(8434)] = 250077, + [SMALL_STATE(8435)] = 250090, + [SMALL_STATE(8436)] = 250103, + [SMALL_STATE(8437)] = 250116, + [SMALL_STATE(8438)] = 250129, + [SMALL_STATE(8439)] = 250142, + [SMALL_STATE(8440)] = 250155, + [SMALL_STATE(8441)] = 250168, + [SMALL_STATE(8442)] = 250181, + [SMALL_STATE(8443)] = 250194, + [SMALL_STATE(8444)] = 250207, + [SMALL_STATE(8445)] = 250220, + [SMALL_STATE(8446)] = 250233, + [SMALL_STATE(8447)] = 250246, + [SMALL_STATE(8448)] = 250259, + [SMALL_STATE(8449)] = 250272, + [SMALL_STATE(8450)] = 250285, + [SMALL_STATE(8451)] = 250298, + [SMALL_STATE(8452)] = 250311, + [SMALL_STATE(8453)] = 250324, + [SMALL_STATE(8454)] = 250337, + [SMALL_STATE(8455)] = 250350, + [SMALL_STATE(8456)] = 250363, + [SMALL_STATE(8457)] = 250376, + [SMALL_STATE(8458)] = 250389, + [SMALL_STATE(8459)] = 250402, + [SMALL_STATE(8460)] = 250415, + [SMALL_STATE(8461)] = 250428, + [SMALL_STATE(8462)] = 250441, + [SMALL_STATE(8463)] = 250454, + [SMALL_STATE(8464)] = 250467, + [SMALL_STATE(8465)] = 250480, + [SMALL_STATE(8466)] = 250493, + [SMALL_STATE(8467)] = 250506, + [SMALL_STATE(8468)] = 250519, + [SMALL_STATE(8469)] = 250532, + [SMALL_STATE(8470)] = 250545, + [SMALL_STATE(8471)] = 250558, + [SMALL_STATE(8472)] = 250571, + [SMALL_STATE(8473)] = 250584, + [SMALL_STATE(8474)] = 250597, + [SMALL_STATE(8475)] = 250610, + [SMALL_STATE(8476)] = 250623, + [SMALL_STATE(8477)] = 250636, + [SMALL_STATE(8478)] = 250649, + [SMALL_STATE(8479)] = 250662, + [SMALL_STATE(8480)] = 250675, + [SMALL_STATE(8481)] = 250688, + [SMALL_STATE(8482)] = 250701, + [SMALL_STATE(8483)] = 250714, + [SMALL_STATE(8484)] = 250727, + [SMALL_STATE(8485)] = 250740, + [SMALL_STATE(8486)] = 250753, + [SMALL_STATE(8487)] = 250766, + [SMALL_STATE(8488)] = 250779, + [SMALL_STATE(8489)] = 250792, + [SMALL_STATE(8490)] = 250805, + [SMALL_STATE(8491)] = 250818, + [SMALL_STATE(8492)] = 250831, + [SMALL_STATE(8493)] = 250844, + [SMALL_STATE(8494)] = 250857, + [SMALL_STATE(8495)] = 250870, + [SMALL_STATE(8496)] = 250883, + [SMALL_STATE(8497)] = 250896, + [SMALL_STATE(8498)] = 250909, + [SMALL_STATE(8499)] = 250922, + [SMALL_STATE(8500)] = 250935, + [SMALL_STATE(8501)] = 250948, + [SMALL_STATE(8502)] = 250961, + [SMALL_STATE(8503)] = 250974, + [SMALL_STATE(8504)] = 250987, + [SMALL_STATE(8505)] = 251000, + [SMALL_STATE(8506)] = 251013, + [SMALL_STATE(8507)] = 251026, + [SMALL_STATE(8508)] = 251039, + [SMALL_STATE(8509)] = 251052, + [SMALL_STATE(8510)] = 251065, + [SMALL_STATE(8511)] = 251078, + [SMALL_STATE(8512)] = 251091, + [SMALL_STATE(8513)] = 251104, + [SMALL_STATE(8514)] = 251117, + [SMALL_STATE(8515)] = 251130, + [SMALL_STATE(8516)] = 251143, + [SMALL_STATE(8517)] = 251156, + [SMALL_STATE(8518)] = 251169, + [SMALL_STATE(8519)] = 251182, + [SMALL_STATE(8520)] = 251195, + [SMALL_STATE(8521)] = 251208, + [SMALL_STATE(8522)] = 251221, + [SMALL_STATE(8523)] = 251234, + [SMALL_STATE(8524)] = 251247, + [SMALL_STATE(8525)] = 251260, + [SMALL_STATE(8526)] = 251273, + [SMALL_STATE(8527)] = 251286, + [SMALL_STATE(8528)] = 251299, + [SMALL_STATE(8529)] = 251312, + [SMALL_STATE(8530)] = 251325, + [SMALL_STATE(8531)] = 251338, + [SMALL_STATE(8532)] = 251351, + [SMALL_STATE(8533)] = 251364, + [SMALL_STATE(8534)] = 251377, + [SMALL_STATE(8535)] = 251390, + [SMALL_STATE(8536)] = 251403, + [SMALL_STATE(8537)] = 251416, + [SMALL_STATE(8538)] = 251429, + [SMALL_STATE(8539)] = 251442, + [SMALL_STATE(8540)] = 251455, + [SMALL_STATE(8541)] = 251468, + [SMALL_STATE(8542)] = 251481, + [SMALL_STATE(8543)] = 251494, + [SMALL_STATE(8544)] = 251507, + [SMALL_STATE(8545)] = 251520, + [SMALL_STATE(8546)] = 251533, + [SMALL_STATE(8547)] = 251546, + [SMALL_STATE(8548)] = 251559, + [SMALL_STATE(8549)] = 251572, + [SMALL_STATE(8550)] = 251585, + [SMALL_STATE(8551)] = 251598, + [SMALL_STATE(8552)] = 251611, + [SMALL_STATE(8553)] = 251624, + [SMALL_STATE(8554)] = 251637, + [SMALL_STATE(8555)] = 251650, + [SMALL_STATE(8556)] = 251663, + [SMALL_STATE(8557)] = 251676, + [SMALL_STATE(8558)] = 251689, + [SMALL_STATE(8559)] = 251702, + [SMALL_STATE(8560)] = 251715, + [SMALL_STATE(8561)] = 251728, + [SMALL_STATE(8562)] = 251741, + [SMALL_STATE(8563)] = 251754, + [SMALL_STATE(8564)] = 251767, + [SMALL_STATE(8565)] = 251780, + [SMALL_STATE(8566)] = 251793, + [SMALL_STATE(8567)] = 251806, + [SMALL_STATE(8568)] = 251819, + [SMALL_STATE(8569)] = 251832, + [SMALL_STATE(8570)] = 251845, + [SMALL_STATE(8571)] = 251858, + [SMALL_STATE(8572)] = 251871, + [SMALL_STATE(8573)] = 251884, + [SMALL_STATE(8574)] = 251897, + [SMALL_STATE(8575)] = 251910, + [SMALL_STATE(8576)] = 251923, + [SMALL_STATE(8577)] = 251936, + [SMALL_STATE(8578)] = 251949, + [SMALL_STATE(8579)] = 251962, + [SMALL_STATE(8580)] = 251975, + [SMALL_STATE(8581)] = 251988, + [SMALL_STATE(8582)] = 252001, + [SMALL_STATE(8583)] = 252014, + [SMALL_STATE(8584)] = 252027, + [SMALL_STATE(8585)] = 252040, + [SMALL_STATE(8586)] = 252053, + [SMALL_STATE(8587)] = 252066, + [SMALL_STATE(8588)] = 252079, + [SMALL_STATE(8589)] = 252092, + [SMALL_STATE(8590)] = 252105, + [SMALL_STATE(8591)] = 252118, + [SMALL_STATE(8592)] = 252131, + [SMALL_STATE(8593)] = 252144, + [SMALL_STATE(8594)] = 252157, + [SMALL_STATE(8595)] = 252170, + [SMALL_STATE(8596)] = 252183, + [SMALL_STATE(8597)] = 252196, + [SMALL_STATE(8598)] = 252209, + [SMALL_STATE(8599)] = 252222, + [SMALL_STATE(8600)] = 252235, + [SMALL_STATE(8601)] = 252248, + [SMALL_STATE(8602)] = 252261, + [SMALL_STATE(8603)] = 252274, + [SMALL_STATE(8604)] = 252287, + [SMALL_STATE(8605)] = 252300, + [SMALL_STATE(8606)] = 252313, + [SMALL_STATE(8607)] = 252326, + [SMALL_STATE(8608)] = 252339, + [SMALL_STATE(8609)] = 252352, + [SMALL_STATE(8610)] = 252365, + [SMALL_STATE(8611)] = 252378, + [SMALL_STATE(8612)] = 252391, + [SMALL_STATE(8613)] = 252404, + [SMALL_STATE(8614)] = 252417, + [SMALL_STATE(8615)] = 252430, + [SMALL_STATE(8616)] = 252443, + [SMALL_STATE(8617)] = 252456, + [SMALL_STATE(8618)] = 252469, + [SMALL_STATE(8619)] = 252482, + [SMALL_STATE(8620)] = 252495, + [SMALL_STATE(8621)] = 252508, + [SMALL_STATE(8622)] = 252521, + [SMALL_STATE(8623)] = 252534, + [SMALL_STATE(8624)] = 252547, + [SMALL_STATE(8625)] = 252560, + [SMALL_STATE(8626)] = 252573, + [SMALL_STATE(8627)] = 252586, + [SMALL_STATE(8628)] = 252599, + [SMALL_STATE(8629)] = 252612, + [SMALL_STATE(8630)] = 252625, + [SMALL_STATE(8631)] = 252638, + [SMALL_STATE(8632)] = 252651, + [SMALL_STATE(8633)] = 252664, + [SMALL_STATE(8634)] = 252677, + [SMALL_STATE(8635)] = 252690, + [SMALL_STATE(8636)] = 252703, + [SMALL_STATE(8637)] = 252716, + [SMALL_STATE(8638)] = 252729, + [SMALL_STATE(8639)] = 252742, + [SMALL_STATE(8640)] = 252755, + [SMALL_STATE(8641)] = 252768, + [SMALL_STATE(8642)] = 252781, + [SMALL_STATE(8643)] = 252794, + [SMALL_STATE(8644)] = 252807, + [SMALL_STATE(8645)] = 252820, + [SMALL_STATE(8646)] = 252833, + [SMALL_STATE(8647)] = 252846, + [SMALL_STATE(8648)] = 252859, + [SMALL_STATE(8649)] = 252872, + [SMALL_STATE(8650)] = 252885, + [SMALL_STATE(8651)] = 252898, + [SMALL_STATE(8652)] = 252911, + [SMALL_STATE(8653)] = 252924, + [SMALL_STATE(8654)] = 252937, + [SMALL_STATE(8655)] = 252950, + [SMALL_STATE(8656)] = 252963, + [SMALL_STATE(8657)] = 252976, + [SMALL_STATE(8658)] = 252989, + [SMALL_STATE(8659)] = 253002, + [SMALL_STATE(8660)] = 253015, + [SMALL_STATE(8661)] = 253028, + [SMALL_STATE(8662)] = 253041, + [SMALL_STATE(8663)] = 253054, + [SMALL_STATE(8664)] = 253067, + [SMALL_STATE(8665)] = 253080, + [SMALL_STATE(8666)] = 253093, + [SMALL_STATE(8667)] = 253106, + [SMALL_STATE(8668)] = 253119, + [SMALL_STATE(8669)] = 253132, + [SMALL_STATE(8670)] = 253145, + [SMALL_STATE(8671)] = 253158, + [SMALL_STATE(8672)] = 253171, + [SMALL_STATE(8673)] = 253184, + [SMALL_STATE(8674)] = 253197, + [SMALL_STATE(8675)] = 253210, + [SMALL_STATE(8676)] = 253223, + [SMALL_STATE(8677)] = 253236, + [SMALL_STATE(8678)] = 253249, + [SMALL_STATE(8679)] = 253262, + [SMALL_STATE(8680)] = 253275, + [SMALL_STATE(8681)] = 253288, + [SMALL_STATE(8682)] = 253301, + [SMALL_STATE(8683)] = 253314, + [SMALL_STATE(8684)] = 253327, + [SMALL_STATE(8685)] = 253340, + [SMALL_STATE(8686)] = 253353, + [SMALL_STATE(8687)] = 253366, + [SMALL_STATE(8688)] = 253379, + [SMALL_STATE(8689)] = 253392, + [SMALL_STATE(8690)] = 253405, + [SMALL_STATE(8691)] = 253418, + [SMALL_STATE(8692)] = 253431, + [SMALL_STATE(8693)] = 253444, + [SMALL_STATE(8694)] = 253457, + [SMALL_STATE(8695)] = 253470, + [SMALL_STATE(8696)] = 253483, + [SMALL_STATE(8697)] = 253496, + [SMALL_STATE(8698)] = 253509, + [SMALL_STATE(8699)] = 253522, + [SMALL_STATE(8700)] = 253535, + [SMALL_STATE(8701)] = 253548, + [SMALL_STATE(8702)] = 253561, + [SMALL_STATE(8703)] = 253574, + [SMALL_STATE(8704)] = 253587, + [SMALL_STATE(8705)] = 253600, + [SMALL_STATE(8706)] = 253613, + [SMALL_STATE(8707)] = 253626, + [SMALL_STATE(8708)] = 253639, + [SMALL_STATE(8709)] = 253652, + [SMALL_STATE(8710)] = 253665, + [SMALL_STATE(8711)] = 253678, + [SMALL_STATE(8712)] = 253691, + [SMALL_STATE(8713)] = 253704, + [SMALL_STATE(8714)] = 253717, + [SMALL_STATE(8715)] = 253730, + [SMALL_STATE(8716)] = 253743, + [SMALL_STATE(8717)] = 253756, + [SMALL_STATE(8718)] = 253769, + [SMALL_STATE(8719)] = 253782, + [SMALL_STATE(8720)] = 253795, + [SMALL_STATE(8721)] = 253808, + [SMALL_STATE(8722)] = 253821, + [SMALL_STATE(8723)] = 253834, + [SMALL_STATE(8724)] = 253847, + [SMALL_STATE(8725)] = 253860, + [SMALL_STATE(8726)] = 253873, + [SMALL_STATE(8727)] = 253886, + [SMALL_STATE(8728)] = 253899, + [SMALL_STATE(8729)] = 253912, + [SMALL_STATE(8730)] = 253925, + [SMALL_STATE(8731)] = 253938, + [SMALL_STATE(8732)] = 253951, + [SMALL_STATE(8733)] = 253964, + [SMALL_STATE(8734)] = 253977, + [SMALL_STATE(8735)] = 253990, + [SMALL_STATE(8736)] = 254003, + [SMALL_STATE(8737)] = 254016, + [SMALL_STATE(8738)] = 254029, + [SMALL_STATE(8739)] = 254042, + [SMALL_STATE(8740)] = 254055, + [SMALL_STATE(8741)] = 254068, + [SMALL_STATE(8742)] = 254081, + [SMALL_STATE(8743)] = 254094, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [23] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), SHIFT(501), - [26] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), - [28] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [30] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [32] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [39] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(504), - [42] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [44] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [46] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [48] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [50] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [52] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(4804), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [65] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [69] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 10), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(560), - [88] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [90] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [94] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [96] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [98] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), - [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), SHIFT(533), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 261), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 261), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(1255), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(611), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(1223), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(1106), - [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(517), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(1379), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(1254), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(3268), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(3352), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(3246), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(517), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4516), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4445), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4182), - [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(131), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(506), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4608), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(50), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4518), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4520), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4177), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4175), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4605), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(234), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(290), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(690), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(101), - [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(144), - [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4507), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(942), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4762), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(3122), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(641), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(3259), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(320), - [463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(485), - [466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(3939), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(3933), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(3510), - [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2118), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2118), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2185), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4039), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(627), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(1112), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4659), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4660), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4661), - [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 88), - [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, .production_id = 88), - [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 50), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 50), - [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(129), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(157), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(942), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(3439), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_rest_pattern, 2, .production_id = 49), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 49), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 15), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 15), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 108), - [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 108), - [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 108), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 108), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 160), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 160), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 160), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 160), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 87), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 87), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 87), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 87), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 53), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 53), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 53), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 53), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 211), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 211), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 211), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 211), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 146), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 146), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 146), - [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 146), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 145), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 145), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 145), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 145), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 212), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 212), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 212), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 212), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 66), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 66), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 204), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 204), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 204), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 204), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 108), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 108), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 108), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 108), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 30), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 30), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 157), - [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 157), - [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 157), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 157), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 249), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 249), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 249), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 249), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [1748] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(2865), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1776] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3074), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_override_modifier, 1), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), - [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(2534), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [2017] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym__property_name, 1, .production_id = 21), SHIFT(142), - [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 21), SHIFT(41), - [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(492), - [2027] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym__property_name, 1, .production_id = 21), SHIFT(4639), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 21), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym__property_name, 1, .production_id = 21), - [2070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym__property_name, 1, .production_id = 21), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [2189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(142), - [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(4639), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 49), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(4986), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(337), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), SHIFT(584), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(4864), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 34), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 34), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), - [2307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(4991), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 75), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 75), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 69), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 69), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 286), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 286), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 262), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 262), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 34), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 34), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 174), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 174), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 146), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 146), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 175), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 175), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 251), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 251), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 254), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 254), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 204), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 204), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 256), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 256), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 14), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 14), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 167), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 167), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 258), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 258), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 211), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 211), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 212), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 212), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 259), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 259), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 260), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 260), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 176), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 176), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 174), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 174), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 11), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 11), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 30), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 30), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 123), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 123), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 177), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 177), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 123), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 123), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 281), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 281), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 284), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 284), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 167), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 167), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 258), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 258), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 178), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 178), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 249), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 249), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 229), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 229), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 285), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 285), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 53), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 53), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 157), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 157), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 228), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 228), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 130), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 130), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 122), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 122), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 34), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 34), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 137), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 137), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, .production_id = 14), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, .production_id = 14), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 204), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 204), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 77), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 77), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 225), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 225), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 224), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 224), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 223), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 223), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 87), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 87), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 179), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 179), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 145), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 145), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 222), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 222), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 180), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 180), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 145), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 145), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 146), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 146), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 218), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 218), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 68), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 68), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 184), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 184), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 129), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 129), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 221), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 221), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 160), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 160), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 127), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 127), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 87), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 87), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 108), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 108), - [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 108), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 108), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 126), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 126), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 218), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 218), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 126), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 126), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 125), - [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 125), - [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 124), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 124), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 121), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 121), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 70), - [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 70), - [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 76), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 76), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 301), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, .production_id = 301), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 280), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 280), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 253), - [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 253), - [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 131), - [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 131), - [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 252), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 252), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [2924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 45), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 45), - [3243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 45), SHIFT(3110), - [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 45), SHIFT_REPEAT(4206), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), - [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 98), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 98), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 97), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 97), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 96), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 96), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 96), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 96), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 19), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 19), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 209), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 209), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 155), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 155), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 99), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 99), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [3309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 21), - [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 21), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 41), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 41), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [3327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(488), - [3330] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 35), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 35), - [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1046), - [3342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(4651), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 35), - [3350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 35), SHIFT(4472), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 35), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [3357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1020), - [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(4674), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [3381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(497), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 35), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_predefined_type, 1), - [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_predefined_type, 1), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(4970), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3463] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 35), REDUCE(sym_rest_pattern, 2), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3483] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_predefined_type, 1), REDUCE(sym_rest_pattern, 2, .production_id = 49), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(339), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(532), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [3708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(3840), - [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(3801), - [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(3914), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), - [3719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(3286), - [3722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(3447), - [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(4324), - [3728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(4285), - [3731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(3192), - [3734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(3103), - [3737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(3393), - [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(2772), - [3743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(3435), - [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(4910), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), - [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 21), SHIFT(1361), - [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 21), SHIFT(2325), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 21), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 21), SHIFT(1855), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 21), SHIFT(1652), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 21), SHIFT(2363), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 21), SHIFT(1662), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [3839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3096), - [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2551), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(287), - [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1643), - [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4827), - [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3887), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3894), - [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2911), - [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4086), - [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1398), - [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1460), - [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1738), - [3877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1414), - [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1513), - [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(1681), - [3886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(2487), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 21), SHIFT(2078), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3936] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 21), REDUCE(aux_sym_object_repeat1, 2, .production_id = 67), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 48), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 35), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 39), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 39), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 37), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 37), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 79), - [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 79), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 80), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 80), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 244), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 244), - [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 243), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 243), - [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 242), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 242), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 241), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 241), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 240), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 240), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 155), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 155), - [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 210), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 210), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 51), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 51), - [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 201), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 201), - [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 31), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 31), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), - [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, .production_id = 200), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, .production_id = 200), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 271), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 271), - [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 199), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 199), - [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 198), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 198), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 92), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 92), - [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 197), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 197), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 196), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 196), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [4234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(92), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 93), - [4241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 195), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 195), - [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 194), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 194), - [4249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 272), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 272), - [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 31), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 31), - [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 31), SHIFT(92), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 97), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 97), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 96), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 96), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 143), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 143), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 273), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 273), - [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 270), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 270), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [4318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [4322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [4325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, .production_id = 274), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, .production_id = 274), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 38), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 38), - [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 295), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 295), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 57), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 57), - [4360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 57), - [4363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [4366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 141), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 141), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2), - [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 31), - [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 31), - [4393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 31), SHIFT(92), - [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 81), - [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 81), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 64), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 65), - [4406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), - [4408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 93), - [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 94), - [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 95), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 95), - [4422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 95), SHIFT(92), - [4425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2), - [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 140), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 140), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 82), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 82), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 41), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 41), - [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 103), - [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 95), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 150), - [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 152), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 153), - [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 208), - [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 85), - [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 85), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), - [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 86), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 86), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 95), SHIFT(97), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 67), - [4634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 48), - [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 67), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 106), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [4659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 48), - [4664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [4668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 65), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [4681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [4688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 42), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 42), - [4692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1), - [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1), - [4696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 41), - [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 41), - [4700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 40), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 40), - [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 88), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 88), - [4708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 89), - [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 89), - [4712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 90), - [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 90), - [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 91), - [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 91), - [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [4728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 94), - [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(97), - [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 100), - [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 100), - [4737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 101), - [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 101), - [4741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 102), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 102), - [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 103), - [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 34), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 34), - [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 105), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 105), - [4755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 67), - [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 67), - [4759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [4765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 31), SHIFT(97), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 50), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 144), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 144), - [4818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 67), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 48), - [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 149), - [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 149), - [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 150), - [4827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 151), - [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 151), - [4831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 152), - [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 153), - [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 151), - [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 151), - [4839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 154), - [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 154), - [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 156), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 156), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 158), - [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 158), - [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 159), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 159), - [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 207), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 207), - [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 213), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 213), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [4875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 31), SHIFT(97), - [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 106), REDUCE(sym_assignment_expression, 3, .production_id = 64), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 31), SHIFT(89), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 50), - [4888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 50), SHIFT(357), - [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 93), REDUCE(sym_assignment_expression, 3, .production_id = 93), - [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 93), - [4896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(89), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 31), SHIFT(89), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [4930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 95), SHIFT(89), - [4933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 106), REDUCE(sym_assignment_expression, 3, .production_id = 93), - [4936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 37), - [4939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 37), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 50), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 31), SHIFT(99), - [4959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(99), - [4962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 31), SHIFT(99), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [4971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 95), SHIFT(99), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 67), REDUCE(sym_object_pattern, 3, .production_id = 48), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 67), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 93), - [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [5004] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [5008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [5017] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 95), SHIFT(93), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [5078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 31), SHIFT(93), - [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [5087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(93), - [5090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 31), SHIFT(93), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [5095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 32), - [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 32), - [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 32), REDUCE(sym__primary_type, 1, .production_id = 37), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 107), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 71), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 71), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 32), - [5151] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 32), REDUCE(sym__primary_type, 1, .production_id = 37), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 71), - [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 71), - [5167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 37), REDUCE(sym__parameter_name, 2, .production_id = 71), - [5170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [5173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [5176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 95), SHIFT(95), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [5183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 187), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 187), - [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 95), SHIFT(90), - [5304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 67), REDUCE(sym_object_pattern, 3, .production_id = 48), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 136), - [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 136), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [5320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 95), SHIFT(98), - [5323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 132), - [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 132), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [5334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [5339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [5342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3), - [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, .production_id = 230), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, .production_id = 230), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 31), SHIFT(95), - [5353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(95), - [5356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 31), SHIFT(95), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 74), - [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 74), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [5367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 185), - [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 185), - [5371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 31), SHIFT(98), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [5376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 31), SHIFT(98), - [5379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 31), SHIFT(90), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [5384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 31), SHIFT(90), - [5387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [5392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [5395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1), - [5397] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), REDUCE(sym_rest_pattern, 2), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 50), SHIFT(551), - [5406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(98), - [5409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(90), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [5448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(96), - [5451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 31), SHIFT(96), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [5468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 95), SHIFT(96), - [5471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 31), SHIFT(96), - [5474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 160), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 160), - [5478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 87), REDUCE(sym_class, 4, .production_id = 157), - [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 87), REDUCE(sym_class, 4, .production_id = 157), - [5484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 88), REDUCE(sym_class, 4, .production_id = 158), - [5487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 88), REDUCE(sym_class, 4, .production_id = 158), - [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 255), - [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 255), - [5494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 145), REDUCE(sym_class, 5, .production_id = 211), - [5497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 145), REDUCE(sym_class, 5, .production_id = 211), - [5500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 324), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 324), - [5504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 146), REDUCE(sym_class, 5, .production_id = 212), - [5507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 146), REDUCE(sym_class, 5, .production_id = 212), - [5510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 149), REDUCE(sym_class, 5, .production_id = 213), - [5513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 149), REDUCE(sym_class, 5, .production_id = 213), - [5516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 315), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 315), - [5520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 314), - [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 314), - [5524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 53), - [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 53), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [5536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 303), - [5538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 303), - [5540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 302), - [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 302), - [5544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 282), - [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 282), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [5554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 108), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 108), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [5564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 183), - [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 183), - [5568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 89), REDUCE(sym_class, 4, .production_id = 159), - [5571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 89), REDUCE(sym_class, 4, .production_id = 159), - [5574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 128), - [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 128), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 34), REDUCE(sym_class, 3, .production_id = 105), - [5583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 34), REDUCE(sym_class, 3, .production_id = 105), - [5586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 220), - [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 220), - [5590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 283), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 283), - [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [5600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 204), REDUCE(sym_class, 6, .production_id = 249), - [5603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 204), REDUCE(sym_class, 6, .production_id = 249), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [5648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, .production_id = 34), - [5650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, .production_id = 34), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [5658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_initializer, 3), - [5692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_initializer, 3), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_definition, 2, .production_id = 4), - [5704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition, 2, .production_id = 4), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_definition, 2, .production_id = 5), - [5718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition, 2, .production_id = 5), - [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_initializer, 2), - [5722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_initializer, 2), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [5730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 2, .production_id = 7), - [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 2, .production_id = 7), SHIFT_REPEAT(4285), - [5735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 4, .production_id = 167), - [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_body, 4, .production_id = 167), - [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 109), - [5741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 5, .production_id = 109), - [5743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 55), - [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 55), - [5747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_array, 4), - [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_array, 4), - [5751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_annotated_object_member, 2, .production_id = 6), - [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_annotated_object_member, 2, .production_id = 6), - [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 1, .production_id = 9), - [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 1, .production_id = 9), - [5759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, .production_id = 214), - [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 7, .production_id = 214), - [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, .production_id = 215), - [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 7, .production_id = 215), - [5767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, .production_id = 216), - [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 7, .production_id = 216), - [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, .production_id = 217), - [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 7, .production_id = 217), - [5775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 54), - [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 54), - [5779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 47), - [5781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 47), - [5783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_inline_component, 4, .production_id = 62), - [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_inline_component, 4, .production_id = 62), - [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 4, .production_id = 169), - [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_body, 4, .production_id = 169), - [5791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_annotated_object_member, 2, .production_id = 16), - [5793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_annotated_object_member, 2, .production_id = 16), - [5795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_signal, 4, .production_id = 61), - [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal, 4, .production_id = 61), - [5799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 170), - [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 6, .production_id = 170), - [5803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, .production_id = 59), - [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 4, .production_id = 59), - [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, .production_id = 58), - [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 4, .production_id = 58), - [5811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, .production_id = 60), - [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 4, .production_id = 60), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [5817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_binding, 3, .production_id = 24), - [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_binding, 3, .production_id = 24), - [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [5823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3555), - [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [5828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5013), - [5831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 113), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 5, .production_id = 113), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 112), - [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 5, .production_id = 112), - [5841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_declaration, 3, .production_id = 26), - [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_declaration, 3, .production_id = 26), - [5845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_binding, 3, .production_id = 18), - [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_binding, 3, .production_id = 18), - [5849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_required, 3, .production_id = 14), - [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_required, 3, .production_id = 14), - [5853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 46), - [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 46), - [5857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_required, 3, .production_id = 25), - [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_required, 3, .production_id = 25), - [5861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 161), - [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 6, .production_id = 161), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, .production_id = 56), - [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 4, .production_id = 56), - [5871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 162), - [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 6, .production_id = 162), - [5875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 163), - [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 6, .production_id = 163), - [5879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 171), - [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 6, .production_id = 171), - [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 173), - [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 6, .production_id = 173), - [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_array, 3), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_array, 3), - [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_signal, 3, .production_id = 14), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal, 3, .production_id = 14), - [5895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 164), - [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 6, .production_id = 164), - [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 172), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 6, .production_id = 172), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 110), - [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 5, .production_id = 110), - [5909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 120), - [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 5, .production_id = 120), - [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 119), - [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 5, .production_id = 119), - [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 118), - [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 5, .production_id = 118), - [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 117), - [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property, 5, .production_id = 117), - [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 3, .production_id = 116), - [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_body, 3, .production_id = 116), - [5929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 3, .production_id = 14), - [5931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_body, 3, .production_id = 14), - [5933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_annotation, 3, .production_id = 13), - [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_annotation, 3, .production_id = 13), - [5937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 1, .production_id = 2), - [5939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 1, .production_id = 2), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [5945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property_modifier, 1), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [5951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_ui_property_modifier, 1), SHIFT(4370), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [5956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 6, .production_id = 63), - [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_import, 6, .production_id = 63), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 3, .production_id = 11), - [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_import, 3, .production_id = 11), - [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_pragma, 3, .production_id = 14), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_pragma, 3, .production_id = 14), - [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 5, .production_id = 27), - [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_import, 5, .production_id = 27), - [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_pragma, 5, .production_id = 29), - [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_pragma, 5, .production_id = 29), - [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 4, .production_id = 17), - [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_import, 4, .production_id = 17), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [6012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_list_property_type, 4), - [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_list_property_type, 4, .production_id = 111), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 237), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 15), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 190), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 269), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 14), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 269), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 14), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 237), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 15), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 190), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [6206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 35), REDUCE(sym_type_parameter, 1, .production_id = 36), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [6211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 35), SHIFT(1045), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 237), - [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 190), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 190), - [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 15), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 14), - [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 237), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 269), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 269), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 14), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 35), SHIFT(4472), - [6251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 15), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 44), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 15), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 20), - [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [6357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), - [6359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property_modifier, 1), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [6391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 48), - [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 300), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 147), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 263), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [6473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(488), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 291), - [6478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 292), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 33), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 223), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 264), - [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 192), - [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 319), - [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 300), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, .production_id = 325), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [6544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 181), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [6548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 181), - [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 231), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 318), - [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 304), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, .production_id = 138), - [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 3, .production_id = 147), - [6572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 139), - [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [6584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(497), - [6587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 193), - [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 305), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 179), - [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 239), - [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 189), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [6609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 36), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(3383), - [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [6632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(348), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 43), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), - [6661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [6725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 182), - [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 182), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), - [6745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 104), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [6773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(4753), - [6776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [6778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(319), - [6781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_property_repeat1, 2), SHIFT_REPEAT(3914), - [6784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_property_repeat1, 2), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [6792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(1317), - [6795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [6819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 45), SHIFT_REPEAT(4039), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 33), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [6866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 181), - [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 181), - [6914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 44), SHIFT(1094), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 235), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [6931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 20), SHIFT(1085), - [6934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 236), - [6936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 44), SHIFT(965), - [6939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 20), SHIFT(1090), - [6942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 44), SHIFT(946), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [6947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), - [6949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 188), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [6965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 191), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), - [6971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(1043), - [6974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(3587), - [6977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), - [6979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 238), - [6981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 236), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [6995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 182), - [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 182), - [6999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [7007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 235), - [7009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 23), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 23), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [7025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 20), SHIFT(938), - [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 234), - [7030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 51), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [7034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 44), SHIFT(1005), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [7047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, .production_id = 233), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [7053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 265), - [7055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 266), - [7057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, .production_id = 267), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [7061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, .production_id = 268), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [7065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 232), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [7071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 265), - [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 266), - [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 191), - [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 289), - [7081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 23), - [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 290), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 293), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 294), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 306), - [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 51), - [7107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 293), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [7117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 22), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 294), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 78), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [7153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 287), - [7155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 322), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [7163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 317), - [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 316), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 307), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [7177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, .production_id = 308), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [7185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 20), SHIFT(937), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [7190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 308), - [7192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 313), - [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 73), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [7204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1030), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [7217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), - [7219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), REDUCE(aux_sym_template_literal_type_repeat1, 1), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [7308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(3313), - [7311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [7313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 257), - [7315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 257), SHIFT_REPEAT(3948), - [7318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 257), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [7322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 14), - [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 148), - [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 84), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [7334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [7340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_nested_identifier, 3), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_version_specifier, 1, .production_id = 12), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [7362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 134), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [7370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 227), - [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 227), - [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [7378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 226), - [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 226), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_nested_identifier, 3, .production_id = 10), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [7434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [7436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(3983), - [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 48), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [7451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(215), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [7456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, .production_id = 288), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 4, .production_id = 205), - [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 206), - [7466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 206), SHIFT_REPEAT(453), - [7469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [7471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(4003), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 52), - [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 203), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [7506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(3243), - [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 202), - [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 179), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [7519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(1800), - [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 275), - [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 263), - [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 264), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 278), - [7544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(4041), - [7547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 277), - [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 276), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 326), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [7577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, .production_id = 14), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [7581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, .production_id = 15), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 296), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [7597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(3237), - [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 297), - [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1), - [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, .production_id = 14), - [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [7610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, .production_id = 15), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 298), - [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 312), - [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3), - [7624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [7626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(532), - [7629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 299), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [7641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(152), - [7644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [7646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_signal_parameters_repeat1, 2), SHIFT_REPEAT(3886), - [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_signal_parameters_repeat1, 2), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [7661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(1499), - [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [7686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, .production_id = 14), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 291), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 3, .production_id = 165), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [7718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [7720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(923), - [7723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [7739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, .production_id = 168), SHIFT_REPEAT(4594), - [7742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, .production_id = 168), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), - [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [7764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(203), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 51), - [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 311), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [7781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 168), SHIFT_REPEAT(2499), - [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 168), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 52), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 22), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [7804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(4352), - [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 323), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [7841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 321), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [7845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 320), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 107), - [7873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_version_specifier, 3, .production_id = 28), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [7877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [7887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), - [7889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [7891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 245), - [7893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 223), - [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 248), - [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 246), - [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 231), - [7901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 310), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), - [7909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 309), - [7911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 247), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [7951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_object_array_repeat1, 2), SHIFT_REPEAT(2780), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_object_array_repeat1, 2), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, .production_id = 250), - [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 250), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, .production_id = 279), - [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameters, 2), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 219), - [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, .production_id = 219), - [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 22), - [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_negative_number, 2, .production_id = 31), - [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, .production_id = 51), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 186), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 72), - [8190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameters, 4), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [8200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 11), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_assignment, 3, .production_id = 166), - [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_assignment, 3, .production_id = 24), - [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 3, .production_id = 51), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, .production_id = 116), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 142), - [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, .production_id = 23), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [8282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 133), - [8286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 83), - [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 135), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameters, 3), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 2, .production_id = 115), - [8370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 2, .production_id = 114), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [8536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [8602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [8614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [8684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [8694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [8710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [8726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [8932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3, .production_id = 8), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_annotated_object, 2, .production_id = 6), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [9002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [9004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, .production_id = 3), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [9014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [9040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, .production_id = 1), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [9048] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8743), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7342), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8706), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [25] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), SHIFT(682), + [28] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), + [30] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [32] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [34] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6159), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [43] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(770), + [46] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [48] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [50] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [52] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [54] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8038), + [56] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [58] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), + [60] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [62] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [64] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [66] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [68] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [70] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [72] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 10), + [74] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [76] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [78] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [80] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(8452), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(752), + [94] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [96] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [98] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8658), + [100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), + [108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8640), + [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8742), + [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8734), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), SHIFT(627), + [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8308), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8473), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8475), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8477), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2380), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(928), + [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2351), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2179), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(10), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(690), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4542), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2386), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7454), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(5442), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2156), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(5188), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8066), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7972), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(6919), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(302), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(698), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8052), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(158), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7452), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7210), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7211), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7439), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(518), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(550), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(1317), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(266), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(316), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8038), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(6307), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(6375), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4935), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(934), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(5308), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(196), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(791), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8308), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(1943), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(801), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(5580), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(3558), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8313), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(3556), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(6814), + [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(950), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2181), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8669), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8422), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8423), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 93), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8066), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8052), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7452), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7439), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8313), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8669), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8422), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8423), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 55), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 300), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2417), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(920), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2333), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2169), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(14), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4543), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2418), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7461), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(5476), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2162), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(5193), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7827), + [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7828), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(6833), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7813), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(102), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7451), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(6835), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(6837), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7711), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(520), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(572), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(1698), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4954), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(937), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(5290), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(205), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(951), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2166), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8473), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8475), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8477), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7987), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7773), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8072), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7986), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8597), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8212), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8213), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7974), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7961), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7387), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7275), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8688), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8465), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8466), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8059), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8055), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8054), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8111), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8570), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8268), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8267), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8078), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8063), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8064), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7844), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7334), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7781), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8513), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8448), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8446), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8065), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8157), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7753), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7741), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8622), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8293), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8294), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(134), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8582), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8452), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8262), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(300), + [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(313), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(1943), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(5682), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8682), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 54), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(647), + [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(318), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(685), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), SHIFT(843), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_rest_pattern, 2, .production_id = 54), + [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(607), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8204), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8283), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8285), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8526), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8654), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8653), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8301), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8488), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8649), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8503), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8357), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8195), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8647), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8373), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8374), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8671), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), + [2300] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(4902), + [2304] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(4605), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 16), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8504), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 16), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8502), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 123), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 123), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 123), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 60), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 60), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 60), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 159), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 159), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 159), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 158), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 158), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 158), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 67), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 67), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 90), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 90), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 90), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 64), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 64), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 242), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 242), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 242), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 78), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 78), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 33), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 33), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 157), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 157), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 243), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 243), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 243), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 228), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 228), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 228), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 287), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 287), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 287), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 189), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 189), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 189), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8524), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8523), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 123), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, .production_id = 123), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, .production_id = 123), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 186), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 186), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 186), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8657), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8547), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8548), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8197), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8196), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(3913), + [2917] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(304), + [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(719), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [2926] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(6745), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym__property_name, 1, .production_id = 23), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8231), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8325), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym__property_name, 1, .production_id = 23), + [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(134), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 10), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8743), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8527), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8704), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7335), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8599), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8720), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8721), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8572), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8712), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8713), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8692), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8693), + [3135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(304), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [3140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(6745), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8648), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8732), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8383), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8733), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8228), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8232), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8670), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8736), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8737), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8689), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8740), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8741), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8688), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8559), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8558), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(8497), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8530), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8529), + [3292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(8529), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8631), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8677), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8372), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8371), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8296), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8297), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 37), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7442), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8516), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8515), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8463), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8188), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8655), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8727), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8647), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8683), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8680), + [3403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(8680), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8501), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8500), + [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 88), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7673), + [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 82), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7598), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 37), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8511), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8514), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 301), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 332), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 139), + [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 138), + [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 147), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 90), + [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 138), + [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 206), + [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 203), + [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 204), + [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 123), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 123), + [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 331), + [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 287), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 297), + [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 196), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), + [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 145), + [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 143), + [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 142), + [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 330), + [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), + [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 299), + [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 136), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 298), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 243), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 60), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 242), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), + [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 297), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 196), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 33), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 80), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 15), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 295), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 228), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 289), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 209), + [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 261), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 186), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 260), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, .production_id = 15), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 259), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 256), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 255), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8535), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 254), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 327), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 210), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 159), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 158), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 213), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 252), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 214), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 293), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, .production_id = 249), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8534), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 203), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 205), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 249), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 81), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 83), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 89), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 249), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 137), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 13), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, .production_id = 208), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 207), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 13), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 203), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 205), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 153), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 216), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 37), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 146), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 189), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 141), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 141), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 140), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 1), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8408), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8415), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 354), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 292), + [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 291), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 326), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8592), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8595), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8710), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8707), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8261), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8738), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8425), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8650), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8215), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8561), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8554), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4915), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6508), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8541), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8623), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8543), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8546), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8384), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8598), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8386), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8387), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8211), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8571), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8210), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8208), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 50), + [4293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7248), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8536), + [4304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 50), SHIFT(4957), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 64), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 44), + [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 21), + [4319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .production_id = 57), + [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .production_id = 57), + [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .production_id = 58), + [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), + [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, .production_id = 58), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), + [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .production_id = 58), + [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, .production_id = 57), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [4475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 23), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [4482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 23), + [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 184), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 184), + [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), + [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 240), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 240), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 114), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 114), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 113), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 113), + [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 112), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 112), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 64), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 64), + [4539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(680), + [4542] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 39), + [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 39), + [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 39), + [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(8251), + [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 39), + [4557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1969), + [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 147), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [4570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(8700), + [4573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1971), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [4598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 39), SHIFT(8053), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7928), + [4651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(340), + [4654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(641), + [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 39), + [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 54), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), + [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_predefined_type, 1), + [4687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_predefined_type, 1), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [4695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [4704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(8497), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), + [4715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(8560), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), + [4720] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 39), REDUCE(sym_rest_pattern, 2), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 112), + [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 64), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [4746] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_predefined_type, 1), REDUCE(sym_rest_pattern, 2, .production_id = 54), + [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(599), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_rest_pattern, 2, .production_id = 54), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7731), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7560), + [4947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(841), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [5000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4888), + [5003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(3930), + [5006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), + [5008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(3411), + [5011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(610), + [5014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6414), + [5017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6440), + [5020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2660), + [5023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(8261), + [5026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4876), + [5029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7086), + [5032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2583), + [5035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2626), + [5038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2703), + [5041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2609), + [5044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2757), + [5047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2725), + [5050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 50), SHIFT_REPEAT(3808), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), + [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [5079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(5973), + [5082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(5932), + [5085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(6518), + [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), + [5090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(5254), + [5093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(5681), + [5096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(7992), + [5099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(7824), + [5102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(5106), + [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(4921), + [5108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(5647), + [5111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(4446), + [5114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(5632), + [5117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(8401), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7176), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7992), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7824), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8401), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7914), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7915), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [5176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(2520), + [5179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3155), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), + [5192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3456), + [5195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3817), + [5198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3054), + [5201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3082), + [5204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3787), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8624), + [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(2520), + [5236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3817), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3155), + [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3054), + [5247] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), REDUCE(aux_sym_object_repeat1, 2, .production_id = 79), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 53), + [5251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3456), + [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [5260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3787), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3082), + [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7937), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [5426] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), REDUCE(aux_sym_object_repeat1, 2, .production_id = 79), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 53), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), + [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [5480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 38), + [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 38), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [5496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 39), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [5518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 99), + [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 99), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [5524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 57), + [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 57), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), + [5532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 79), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 53), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [5549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), + [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [5555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 79), + [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 41), + [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 41), + [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [5563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2), + [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, .production_id = 106), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, .production_id = 106), + [5597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, .production_id = 46), + [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, .production_id = 46), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [5607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 235), + [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 235), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [5663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 108), + [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 108), + [5667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 173), + [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 173), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [5675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 174), + [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 174), + [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 175), + [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 175), + [5683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), + [5686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), + [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), + [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 77), + [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 76), + [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), + [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), + [5704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), + [5709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [5713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [5723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [5727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), + [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 102), + [5741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 102), + [5743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2), + [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2), + [5747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3), + [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3), + [5751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 34), + [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 34), + [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 179), + [5757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 179), + [5759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [5763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .production_id = 57), + [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .production_id = 58), + [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [5769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), + [5771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), + [5773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2), + [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2), + [5777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), + [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), + [5781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), + [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), + [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [5791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), + [5793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), + [5795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 64), + [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 64), + [5799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 65), + [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 65), + [5803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 64), REDUCE(sym_nested_type_identifier, 3, .production_id = 65), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [5808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 112), + [5810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 112), + [5812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 180), + [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 180), + [5816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 181), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 181), + [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, .production_id = 169), + [5822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 234), + [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 234), + [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 172), + [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 172), + [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 44), + [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 44), + [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 109), + [5836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 44), + [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 44), + [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 353), + [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 353), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 110), + [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 239), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 111), + [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 111), + [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), + [5856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 182), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 182), + [5860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 111), SHIFT(255), + [5863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 183), + [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 183), + [5867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), + [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), + [5871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [5875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, .production_id = 237), + [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, .production_id = 237), + [5879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3), + [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3), + [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, .production_id = 105), + [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, .production_id = 105), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, .production_id = 57), + [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 105), + [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 105), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, .production_id = 58), + [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [5901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), + [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [5909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), + [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), + [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 238), + [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 238), + [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 56), + [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 56), + [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), + [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 34), + [5925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(255), + [5928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 241), + [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 241), + [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), + [5934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 97), + [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 97), + [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 184), + [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 184), + [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 282), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 282), + [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [5948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 283), + [5950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 283), + [5952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [5956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(255), + [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 284), + [5961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 284), + [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 118), + [5965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), + [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 34), + [5969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(255), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 111), + [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), + [5978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 58), + [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 58), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), + [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 163), + [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 165), + [5988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 100), + [5990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 100), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 166), + [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [6000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 285), + [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 285), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .production_id = 58), + [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 286), + [6012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 286), + [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), + [6016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, .production_id = 168), + [6018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 67), REDUCE(sym_nested_type_identifier, 3, .production_id = 65), + [6021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 320), + [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 320), + [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 321), + [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 321), + [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .production_id = 57), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), + [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 107), + [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 107), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [6043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 322), + [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 322), + [6047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 42), + [6049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 42), + [6051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 323), + [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 323), + [6055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, .production_id = 324), + [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, .production_id = 324), + [6059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 185), + [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 185), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [6067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 121), REDUCE(sym_assignment_expression, 3, .production_id = 109), + [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 121), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 111), SHIFT(256), + [6159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(256), + [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), + [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 37), + [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 37), + [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 170), + [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 170), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [6176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(256), + [6179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 109), REDUCE(sym_assignment_expression, 3, .production_id = 109), + [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 109), + [6184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [6188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 167), + [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 167), + [6192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), + [6195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 45), + [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 45), + [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1), + [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1), + [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 47), + [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 47), + [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 164), + [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 164), + [6220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 188), + [6222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 188), + [6224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 166), + [6226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 165), + [6228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), + [6231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [6236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(258), + [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 164), + [6241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 164), + [6243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 187), + [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 187), + [6247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 163), + [6249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 162), + [6251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 162), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [6257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 121), REDUCE(sym_assignment_expression, 3, .production_id = 76), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), + [6274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 77), + [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 79), + [6278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 53), + [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 79), + [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 53), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [6286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 230), + [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 230), + [6290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 111), SHIFT(258), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [6297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 244), + [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 244), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [6319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 93), + [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 93), + [6323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 94), + [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 94), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [6331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, .production_id = 95), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, .production_id = 95), + [6335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [6339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 96), + [6341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 96), + [6343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 79), + [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 79), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [6355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [6357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 41), + [6360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 41), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 120), + [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 120), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [6379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 118), + [6381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 117), + [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 117), + [6385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 116), + [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 116), + [6389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(256), + [6392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(258), + [6395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(258), + [6398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), + [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 110), + [6412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 115), + [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 115), + [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 55), + [6418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 55), SHIFT(750), + [6421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 189), + [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 189), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 251), + [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 251), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 123), + [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 123), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [6483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 79), REDUCE(sym_object_pattern, 3, .production_id = 53), + [6486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [6491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 60), + [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 60), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [6503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 294), + [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 294), + [6507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [6516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 390), + [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 390), + [6520] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), + [6524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 375), + [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 375), + [6528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 374), + [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 374), + [6532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 328), + [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 328), + [6536] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), + [6540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 111), SHIFT(260), + [6543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 356), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 356), + [6547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 355), + [6549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 355), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 109), + [6555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 329), + [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 329), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [6587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(260), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [6592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(260), + [6595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(260), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [6604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 144), + [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 144), + [6608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 215), + [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 215), + [6612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 155), + [6614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 155), SHIFT_REPEAT(3437), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, .production_id = 91), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [6643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [6645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), SHIFT_REPEAT(3374), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [6654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 35), + [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 35), + [6658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 35), REDUCE(sym__primary_type, 1, .production_id = 41), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [6703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(259), + [6706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(259), + [6709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(259), + [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 122), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [6734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, .production_id = 37), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [6738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [6752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 84), + [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 84), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [6762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 35), + [6765] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 35), REDUCE(sym__primary_type, 1, .production_id = 41), + [6769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, .production_id = 155), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [6775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), + [6782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [6789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 111), SHIFT(259), + [6792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 84), + [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 84), + [6796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 41), REDUCE(sym__parameter_name, 2, .production_id = 84), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, .production_id = 160), + [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [6899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 287), + [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 189), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [6905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 243), + [6907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 242), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [6911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 123), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [6915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 123), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 228), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [6963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 55), SHIFT(735), + [6966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [6971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [6974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3), + [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 186), + [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 60), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [6982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 159), + [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 158), + [6986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 111), SHIFT(261), + [6989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 148), + [6991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 148), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [6995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 152), + [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 152), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [7011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(257), + [7014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 90), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [7018] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), REDUCE(sym_rest_pattern, 2), + [7022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(257), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [7027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(253), + [7030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(257), + [7033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(253), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), + [7038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(253), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8222), + [7075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 217), + [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 217), + [7079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 79), REDUCE(sym_object_pattern, 3, .production_id = 53), + [7082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [7085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [7090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 219), + [7092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 219), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [7096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 111), SHIFT(253), + [7099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 44), + [7101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(261), + [7104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(261), + [7107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 111), SHIFT(257), + [7110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(261), + [7113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [7116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [7118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [7121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1), + [7123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 87), + [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 87), + [7127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, .production_id = 262), + [7129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, .production_id = 262), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7770), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [7177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(254), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7769), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7751), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7744), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), + [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [7236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(254), + [7239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 111), SHIFT(254), + [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), + [7252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7086), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [7269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(254), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [7290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 162), REDUCE(sym_class, 5, .production_id = 244), + [7293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 162), REDUCE(sym_class, 5, .production_id = 244), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [7304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 159), REDUCE(sym_class, 5, .production_id = 243), + [7307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 159), REDUCE(sym_class, 5, .production_id = 243), + [7310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 37), REDUCE(sym_class, 3, .production_id = 120), + [7313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 37), REDUCE(sym_class, 3, .production_id = 120), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [7320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 90), REDUCE(sym_class, 4, .production_id = 186), + [7323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 90), REDUCE(sym_class, 4, .production_id = 186), + [7326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 158), REDUCE(sym_class, 5, .production_id = 242), + [7329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 158), REDUCE(sym_class, 5, .production_id = 242), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [7340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 93), REDUCE(sym_class, 4, .production_id = 187), + [7343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 93), REDUCE(sym_class, 4, .production_id = 187), + [7346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 94), REDUCE(sym_class, 4, .production_id = 188), + [7349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 94), REDUCE(sym_class, 4, .production_id = 188), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8564), + [7358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 228), REDUCE(sym_class, 6, .production_id = 287), + [7361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 228), REDUCE(sym_class, 6, .production_id = 287), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8565), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8039), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8698), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8694), + [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [7426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 2, .production_id = 7), + [7428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 2, .production_id = 7), SHIFT_REPEAT(7824), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [7435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 61), + [7437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_annotated_object_member, 2, .production_id = 6), + [7439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, .production_id = 63), + [7441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 62), + [7443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_initializer, 3), + [7445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_initializer, 2), + [7447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_inline_component, 4, .production_id = 71), + [7449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_signal, 4, .production_id = 70), + [7451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 1, .production_id = 9), + [7453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_array, 3), + [7455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 1), + [7457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, .production_id = 66), + [7459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 202), + [7461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_binding, 3, .production_id = 26), + [7463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_binding, 3, .production_id = 20), + [7465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_signal, 3, .production_id = 15), + [7467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_required, 3, .production_id = 27), + [7469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, .production_id = 68), + [7471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 201), + [7473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, .production_id = 248), + [7475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_required, 3, .production_id = 15), + [7477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 200), + [7479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition, 2, .production_id = 5), + [7481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition, 2, .production_id = 4), + [7483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 199), + [7485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_declaration, 3, .production_id = 28), + [7487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_annotated_object_member, 2, .production_id = 17), + [7489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 4, .production_id = 198), + [7491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [7493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4457), + [7496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8706), + [7499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 4, .production_id = 196), + [7501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, .production_id = 247), + [7503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, .production_id = 246), + [7505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, .production_id = 245), + [7507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, .production_id = 69), + [7509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 125), + [7511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 127), + [7513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 128), + [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 52), + [7517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 3, .production_id = 15), + [7519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 51), + [7521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 193), + [7523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 192), + [7525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 3, .production_id = 131), + [7527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 132), + [7529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 133), + [7531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 134), + [7533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 135), + [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 191), + [7537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 190), + [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_array, 4), + [7541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 124), + [7543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_annotation, 3, .production_id = 14), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8165), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8166), + [7549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property_modifier, 1), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8497), + [7555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_ui_property_modifier, 1), SHIFT(8166), + [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 1, .production_id = 2), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [7582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 6, .production_id = 73), + [7584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_pragma, 6, .production_id = 74), + [7586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 5, .production_id = 29), + [7588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 2, .production_id = 7), SHIFT_REPEAT(7398), + [7591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_pragma, 5, .production_id = 32), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), + [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [7601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 4, .production_id = 18), + [7603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 5, .production_id = 31), + [7605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 3, .production_id = 13), + [7607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), + [7609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 4, .production_id = 19), + [7611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 6, .production_id = 72), + [7613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_pragma, 3, .production_id = 15), + [7615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 3, .production_id = 11), + [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), + [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7788), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8480), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), + [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6619), + [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8434), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), + [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), + [7643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_list_property_type, 4, .production_id = 126), + [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [7649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_list_property_type, 4), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8700), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), + [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8252), + [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [7675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), + [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), + [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), + [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), + [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8625), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8734), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8343), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8722), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8718), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8305), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8299), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8483), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [7827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 273), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [7843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 225), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), + [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), + [7853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, .production_id = 10), + [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 311), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 317), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 16), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 220), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [7891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 271), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 15), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), + [7933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 352), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [7949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 156), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [7963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 220), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 311), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 15), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 16), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 271), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [8005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 39), REDUCE(sym_type_parameter, 1, .production_id = 40), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [8010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 39), SHIFT(2046), + [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 273), + [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 16), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 15), + [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 15), + [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 317), + [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 220), + [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 156), + [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 220), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 225), + [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 271), + [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 311), + [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 271), + [8039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 39), SHIFT(8053), + [8042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 352), + [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 311), + [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 16), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), + [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8471), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8470), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8199), + [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, .production_id = 57), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 16), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8399), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), + [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), + [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 22), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8521), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), + [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 49), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8728), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), + [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 53), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), + [8220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 373), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [8320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 180), + [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 181), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 182), + [8334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 183), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), + [8338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), + [8340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, .production_id = 57), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [8350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 183), + [8352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 182), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [8360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), + [8362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property_modifier, 1), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), + [8372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 181), + [8374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 180), + [8376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 345), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 112), + [8388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 64), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [8470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), + [8472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2), + [8474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), + [8476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 44), + [8478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 108), + [8480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 108), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8474), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8436), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8432), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8230), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8214), + [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8388), + [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, .production_id = 58), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8257), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8311), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), + [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1), + [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [8528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 254), + [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, .production_id = 171), + [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 281), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8614), + [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 224), + [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 209), + [8566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(641), + [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 101), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8731), + [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [8595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8735), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 373), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [8619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 263), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [8627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 345), + [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [8639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 79), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 53), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), + [8646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 233), + [8648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(680), + [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [8655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 232), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [8659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, .production_id = 58), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [8671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 211), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8716), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [8679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 211), + [8681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 154), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8709), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [8697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 337), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 40), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [8731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8430), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8725), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8739), + [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 302), + [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 303), + [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 36), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), + [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, .production_id = 392), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [8783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 338), + [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 383), + [8787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 378), + [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8717), + [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 357), + [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 358), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8678), + [8811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [8847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(624), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [8868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [8874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8512), + [8884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 119), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [8996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 212), + [8998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 212), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8317), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [9034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 37), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [9048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(6345), + [9051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [9053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(608), + [9056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(6340), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [9071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 79), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 48), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [9103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_property_repeat1, 2), SHIFT_REPEAT(6518), + [9106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_property_repeat1, 2), + [9108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8205), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [9116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(8409), + [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [9121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(565), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8696), + [9134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [9142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [9144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 64), + [9146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(2345), + [9149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [9203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), + [9207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [9239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 211), + [9241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 211), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8632), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8635), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [9281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 36), + [9283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 50), + [9285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6814), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8659), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8697), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [9332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 351), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [9342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 98), + [9344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 395), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [9376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 212), + [9378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 212), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [9382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_nested_identifier, 3, .production_id = 10), + [9384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_nested_identifier, 3), + [9386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 267), + [9388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 280), + [9390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 269), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), + [9394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 279), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [9400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 22), SHIFT(1981), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), + [9405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 275), + [9407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 305), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [9417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 277), + [9419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 386), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), + [9423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 309), + [9425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, .production_id = 310), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [9435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 389), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [9481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 313), + [9483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [9487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 315), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [9509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 381), + [9511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 377), + [9513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 376), + [9515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, .production_id = 363), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), + [9519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 369), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [9523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 22), SHIFT(1977), + [9526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 372), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [9530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 269), + [9532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 267), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [9550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, .production_id = 265), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [9560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 264), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7876), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [9590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 25), + [9592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 24), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [9602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 22), SHIFT(2128), + [9605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 49), SHIFT(1974), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), + [9624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 305), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [9632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 309), + [9634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, .production_id = 319), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [9640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [9642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 80), + [9644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 49), SHIFT(2080), + [9647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 49), SHIFT(2120), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), + [9652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 333), + [9654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 136), + [9656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 335), + [9658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [9662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 366), + [9664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 336), + [9666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 145), + [9668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 341), + [9670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 56), + [9672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 203), + [9674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), + [9676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 344), + [9678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 347), + [9680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 222), + [9682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 231), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [9686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 363), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [9690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), + [9692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 204), + [9694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 216), + [9696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 249), + [9698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 361), + [9700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), + [9702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 25), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [9708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 56), + [9710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 360), + [9712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 260), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [9716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), + [9718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 25), + [9720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 344), + [9722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 341), + [9724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 138), + [9726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 222), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [9738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 227), + [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), + [9742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 22), SHIFT(2041), + [9745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 49), SHIFT(1976), + [9748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [9756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), + [9758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(2044), + [9761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(7137), + [9764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [9768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 138), + [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, .production_id = 57), + [9772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [9782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [9784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), + [9786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 33), + [9788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 60), + [9792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 331), + [9794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 297), + [9796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 196), + [9798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 330), + [9800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 299), + [9802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 298), + [9804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 297), + [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [9808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 196), + [9810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 15), + [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 295), + [9814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 289), + [9816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 261), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [9822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [9824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, .production_id = 15), + [9826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 259), + [9828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 256), + [9830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 255), + [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 254), + [9834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), + [9836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), + [9838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 142), + [9840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 252), + [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [9846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 143), + [9848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 189), + [9850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 123), + [9852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [9854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 214), + [9856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 123), + [9858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 213), + [9860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 210), + [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 209), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 206), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [9902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [9932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 296), + [9934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 296), SHIFT_REPEAT(6538), + [9937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 296), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 15), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7622), + [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [9967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, .production_id = 43), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [9979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [10027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [10041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 104), + [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [10085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8364), + [10089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [10095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 44), + [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [10099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [10113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [10115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(6821), + [10118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [10120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(6918), + [10123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [10133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(878), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [10138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [10156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 53), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [10196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, .production_id = 43), REDUCE(aux_sym_template_literal_type_repeat1, 1), + [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [10221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 177), + [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [10225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 92), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [10229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [10233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 86), + [10235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [10245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 88), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [10261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 21), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), + [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [10281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 258), + [10283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 258), + [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [10291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(401), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [10298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 257), + [10300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 257), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [10304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 161), + [10306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(5267), + [10309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [10315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_version_specifier, 1, .production_id = 12), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [10327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 229), + [10329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 229), SHIFT_REPEAT(615), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8252), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [10376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_pragma_repeat1, 2, .production_id = 75), SHIFT_REPEAT(6506), + [10379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_pragma_repeat1, 2, .production_id = 75), + [10381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_property_repeat1, 1), + [10383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, .production_id = 334), + [10385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 150), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [10389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 338), + [10391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 367), + [10393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 346), + [10395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 368), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [10401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, .production_id = 357), + [10403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 362), + [10405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 339), + [10407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 370), + [10409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 365), + [10411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1915), + [10414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [10416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 340), + [10418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 364), + [10420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [10432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_pragma_repeat1, 2, .production_id = 55), + [10434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(317), + [10437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8209), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [10457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 342), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [10465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, .production_id = 325), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [10489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 343), + [10491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 371), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), + [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8360), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [10505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 337), + [10507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), + [10509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(5199), + [10512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [10516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 316), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [10520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 314), + [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), + [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7952), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [10536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 350), + [10538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(5072), + [10541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), + [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [10551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_object_array_repeat1, 2), SHIFT_REPEAT(4481), + [10554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_object_array_repeat1, 2), + [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [10558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 348), + [10560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(2098), + [10563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 349), + [10565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 92), + [10567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 312), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), + [10573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 226), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [10587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 332), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [10597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 301), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [10609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [10613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 221), + [10615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 59), + [10617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), + [10643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, .production_id = 10), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [10647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 56), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [10659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 59), + [10661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 223), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [10679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 37), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [10685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(372), + [10688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), + [10690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_initializer, 2), + [10692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 209), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [10704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 318), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [10712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, .production_id = 16), + [10714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_version_specifier, 3, .production_id = 30), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [10720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 359), + [10722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [10734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [10756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 82), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [10762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), + [10764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), + [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), + [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [10822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 266), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [10828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 268), + [10830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 270), + [10832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 254), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [10838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 272), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [10872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(2684), + [10875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), + [10877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(841), + [10880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1), + [10882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), + [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [10910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 263), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [10922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 393), + [10924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 122), + [10926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [10928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(2718), + [10931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [10937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_definition, 2, .production_id = 5), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [10941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 24), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [10963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), + [10965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 379), + [10967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 380), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [10975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 382), + [10977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 384), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [10981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(6620), + [10984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [10986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 385), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [10992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(7622), + [10995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [11009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 387), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [11041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_definition, 2, .production_id = 4), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [11049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [11065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 388), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [11069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [11089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [11107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [11111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(1965), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [11126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 3, .production_id = 194), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), + [11130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_signal_parameters_repeat1, 2), SHIFT_REPEAT(6502), + [11133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_signal_parameters_repeat1, 2), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), + [11137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [11141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 304), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [11147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 302), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [11157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 274), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [11163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [11179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 303), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), + [11189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [11213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_initializer, 3), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [11223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 308), + [11225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, .production_id = 15), + [11227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, .production_id = 197), SHIFT_REPEAT(7730), + [11230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, .production_id = 197), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [11276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [11278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [11284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 276), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [11290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 278), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [11294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 307), + [11296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 391), + [11298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 306), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [11312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 394), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [11320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 197), SHIFT_REPEAT(3873), + [11323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 197), + [11325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, .production_id = 58), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), + [11347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 396), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [11365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, .production_id = 397), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [11371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [11381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, .production_id = 15), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [11387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 13), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [11401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7420), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [11409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [11441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, .production_id = 288), + [11443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 290), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [11463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 288), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [11481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 139), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8686), + [11491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8685), + [11497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [11499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [11501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [11503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_array, 3), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [11509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8666), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8665), + [11531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 137), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8644), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8643), + [11541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 13), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [11547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [11565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 140), + [11567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 141), + [11569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 141), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [11575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [11583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [11593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_array, 4), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8619), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8618), + [11603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 103), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [11609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 203), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [11617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [11627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [11631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8594), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [11639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8593), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [11643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8428), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [11647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 205), + [11649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [11679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [11683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 207), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [11693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [11697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [11701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [11703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [11723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, .production_id = 208), + [11725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 90), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [11729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), + [11731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 13), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [11735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 249), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [11739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [11743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [11749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 205), + [11751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5), + [11753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 203), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [11757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 158), + [11759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 159), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [11763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [11771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8567), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [11777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 186), + [11779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 2, .production_id = 129), + [11781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 2, .production_id = 130), + [11783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameters, 3), + [11785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, .production_id = 249), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [11791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8566), + [11793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 293), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [11801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 228), + [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [11811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8509), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [11825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 242), + [11827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 243), + [11829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1), + [11831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 327), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [11835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 287), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [11841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [11845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [11869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [11873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [11877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [11879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, .production_id = 16), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [11893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [11895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 83), + [11897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 89), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [11901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 37), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [11917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [11925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [11931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [11935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [11939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [11943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 81), + [11945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 146), + [11947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), + [11951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameters, 2), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [11955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 153), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [11973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 24), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [11977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [11979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), + [11987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 250), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [11999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 253), + [12001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 149), + [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [12007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, .production_id = 250), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [12017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 151), + [12019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_negative_number, 2, .production_id = 34), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [12027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, .production_id = 56), + [12029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 236), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [12037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8496), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [12041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [12043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [12049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [12053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [12055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 176), + [12057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 85), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [12061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, .production_id = 25), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [12067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [12069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 178), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [12075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [12077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_simple_nested_identifier, 3), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [12093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [12099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 3, .production_id = 56), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [12103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [12105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameters, 4), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [12109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_assignment, 3, .production_id = 26), + [12111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_assignment, 3, .production_id = 195), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [12115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [12119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [12123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [12125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, .production_id = 131), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [12131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [12157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [12167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [12171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [12175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [12191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, .production_id = 15), + [12193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 218), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [12225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), + [12241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [12245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8382), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [12267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [12273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [12283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7879), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8413), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8519), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [12379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8216), + [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [12383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8540), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [12425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8645), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8674), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), + [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [12557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [12591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), + [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), + [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8715), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), + [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [12683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8662), + [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), + [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), + [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [12719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [12811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3, .production_id = 8), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [12831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_annotated_object, 2, .production_id = 6), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), + [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [12843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [12863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), + [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), + [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8701), + [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), + [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [13005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, .production_id = 3), + [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), + [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [13027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), + [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), + [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), + [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [13053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [13063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, .production_id = 1), + [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), + [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8442), + [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), + [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), + [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [13111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), + [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), + [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [13127] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), + [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), + [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), + [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8617), + [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [13163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), + [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8642), + [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), + [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8684), + [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), + [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [13187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1), }; #ifdef __cplusplus diff --git a/vendored_parsers/tree-sitter-qmljs/src/typescript-scanner.h b/vendored_parsers/tree-sitter-qmljs/src/typescript-scanner.h index 110cacf998..bbf4d14c8f 100644 --- a/vendored_parsers/tree-sitter-qmljs/src/typescript-scanner.h +++ b/vendored_parsers/tree-sitter-qmljs/src/typescript-scanner.h @@ -1,6 +1,6 @@ /* Source: -github:tree-sitter/tree-sitter-typescript#0ab9d99867435a7667c5548a6617a6bf73dbd830 +0.20.5 The MIT License (MIT) @@ -25,220 +25,300 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include +#include "tree_sitter/parser.h" + #include enum TokenType { - AUTOMATIC_SEMICOLON, - TEMPLATE_CHARS, - TERNARY_QMARK, - BINARY_OPERATORS, - FUNCTION_SIGNATURE_AUTOMATIC_SEMICOLON, + AUTOMATIC_SEMICOLON, + TEMPLATE_CHARS, + TERNARY_QMARK, + HTML_COMMENT, + LOGICAL_OR, + ESCAPE_SEQUENCE, + FUNCTION_SIGNATURE_AUTOMATIC_SEMICOLON, + ERROR_RECOVERY, }; static void advance(TSLexer *lexer) { lexer->advance(lexer, false); } + static void skip(TSLexer *lexer) { lexer->advance(lexer, true); } static bool scan_template_chars(TSLexer *lexer) { - lexer->result_symbol = TEMPLATE_CHARS; - for (bool has_content = false;; has_content = true) { - lexer->mark_end(lexer); - switch (lexer->lookahead) { - case '`': - return has_content; - case '\0': - return false; - case '$': - advance(lexer); - if (lexer->lookahead == '{') return has_content; - break; - case '\\': - return has_content; - default: - advance(lexer); + lexer->result_symbol = TEMPLATE_CHARS; + for (bool has_content = false;; has_content = true) { + lexer->mark_end(lexer); + switch (lexer->lookahead) { + case '`': + return has_content; + case '\0': + return false; + case '$': + advance(lexer); + if (lexer->lookahead == '{') { + return has_content; + } + break; + case '\\': + return has_content; + default: + advance(lexer); + } } - } } -static bool scan_whitespace_and_comments(TSLexer *lexer) { - for (;;) { - while (iswspace(lexer->lookahead)) { - skip(lexer); - } - - if (lexer->lookahead == '/') { - skip(lexer); - - if (lexer->lookahead == '/') { - skip(lexer); - while (lexer->lookahead != 0 && lexer->lookahead != '\n') { - skip(lexer); +static bool scan_whitespace_and_comments(TSLexer *lexer, bool *scanned_comment) { + for (;;) { + while (iswspace(lexer->lookahead)) { + skip(lexer); } - } else if (lexer->lookahead == '*') { - skip(lexer); - while (lexer->lookahead != 0) { - if (lexer->lookahead == '*') { + + if (lexer->lookahead == '/') { skip(lexer); + if (lexer->lookahead == '/') { - skip(lexer); - break; + skip(lexer); + while (lexer->lookahead != 0 && lexer->lookahead != '\n') { + skip(lexer); + } + *scanned_comment = true; + } else if (lexer->lookahead == '*') { + skip(lexer); + while (lexer->lookahead != 0) { + if (lexer->lookahead == '*') { + skip(lexer); + if (lexer->lookahead == '/') { + skip(lexer); + break; + } + } else { + skip(lexer); + } + } + } else { + return false; } - } else { - skip(lexer); - } + } else { + return true; } - } else { - return false; - } - } else { - return true; } - } } -static bool scan_automatic_semicolon(TSLexer *lexer, const bool *valid_symbols){ - lexer->result_symbol = AUTOMATIC_SEMICOLON; - lexer->mark_end(lexer); - - for (;;) { - if (lexer->lookahead == 0) return true; - if (lexer->lookahead == '}') { - // Automatic semicolon insertion breaks detection of object patterns - // in a typed context: - // type F = ({a}: {a: number}) => number; - // Therefore, disable automatic semicolons when followed by typing - do { +static bool scan_automatic_semicolon(TSLexer *lexer, const bool *valid_symbols, bool *scanned_comment) { + lexer->result_symbol = AUTOMATIC_SEMICOLON; + lexer->mark_end(lexer); + + for (;;) { + if (lexer->lookahead == 0) { + return true; + } + if (lexer->lookahead == '}') { + // Automatic semicolon insertion breaks detection of object patterns + // in a typed context: + // type F = ({a}: {a: number}) => number; + // Therefore, disable automatic semicolons when followed by typing + do { + skip(lexer); + } while (iswspace(lexer->lookahead)); + if (lexer->lookahead == ':') { + return false; + } + return true; + } + if (!iswspace(lexer->lookahead)) { + return false; + } + if (lexer->lookahead == '\n') { + break; + } skip(lexer); - } while (iswspace(lexer->lookahead)); - if (lexer->lookahead == ':') return false; - return true; } - if (!iswspace(lexer->lookahead)) return false; - if (lexer->lookahead == '\n') break; + skip(lexer); - } - - skip(lexer); - - if (!scan_whitespace_and_comments(lexer)) return false; - - switch (lexer->lookahead) { - case ',': - case '.': - case ';': - case '*': - case '%': - case '>': - case '<': - case '=': - case '?': - case '^': - case '|': - case '&': - case '/': - case ':': - return false; - case '{': - if (valid_symbols[FUNCTION_SIGNATURE_AUTOMATIC_SEMICOLON]) return false; - break; + if (!scan_whitespace_and_comments(lexer, scanned_comment)) { + return false; + } - // Don't insert a semicolon before a '[' or '(', unless we're parsing - // a type. Detect whether we're parsing a type or an expression using - // the validity of a binary operator token. - case '(': - case '[': - if (valid_symbols[BINARY_OPERATORS]) return false; - break; + switch (lexer->lookahead) { + case ',': + case '.': + case ';': + case '*': + case '%': + case '>': + case '<': + case '=': + case '?': + case '^': + case '|': + case '&': + case '/': + case ':': + return false; + + case '{': + if (valid_symbols[FUNCTION_SIGNATURE_AUTOMATIC_SEMICOLON]) { + return false; + } + break; + + // Don't insert a semicolon before a '[' or '(', unless we're parsing + // a type. Detect whether we're parsing a type or an expression using + // the validity of a binary operator token. + case '(': + case '[': + if (valid_symbols[LOGICAL_OR]) { + return false; + } + break; - // Insert a semicolon before `--` and `++`, but not before binary `+` or `-`. - case '+': - skip(lexer); - return lexer->lookahead == '+'; - case '-': - skip(lexer); - return lexer->lookahead == '-'; + // Insert a semicolon before `--` and `++`, but not before binary `+` or `-`. + case '+': + skip(lexer); + return lexer->lookahead == '+'; + case '-': + skip(lexer); + return lexer->lookahead == '-'; - // Don't insert a semicolon before `!=`, but do insert one before a unary `!`. - case '!': - skip(lexer); - return lexer->lookahead != '='; + // Don't insert a semicolon before `!=`, but do insert one before a unary `!`. + case '!': + skip(lexer); + return lexer->lookahead != '='; - // Don't insert a semicolon before `in` or `instanceof`, but do insert one - // before an identifier. - case 'i': - skip(lexer); + // Don't insert a semicolon before `in` or `instanceof`, but do insert one + // before an identifier. + case 'i': + skip(lexer); - if (lexer->lookahead != 'n') return true; - skip(lexer); + if (lexer->lookahead != 'n') { + return true; + } + skip(lexer); - if (!iswalpha(lexer->lookahead)) return false; + if (!iswalpha(lexer->lookahead)) { + return false; + } - for (unsigned i = 0; i < 8; i++) { - if (lexer->lookahead != "stanceof"[i]) return true; - skip(lexer); - } + for (unsigned i = 0; i < 8; i++) { + if (lexer->lookahead != "stanceof"[i]) { + return true; + } + skip(lexer); + } - if (!iswalpha(lexer->lookahead)) return false; - break; - } + if (!iswalpha(lexer->lookahead)) { + return false; + } + break; + } - return true; + return true; } static bool scan_ternary_qmark(TSLexer *lexer) { - for(;;) { - if (!iswspace(lexer->lookahead)) break; - skip(lexer); - } + for (;;) { + if (!iswspace(lexer->lookahead)) { + break; + } + skip(lexer); + } - if (lexer->lookahead == '?') { - advance(lexer); + if (lexer->lookahead == '?') { + advance(lexer); - if (lexer->lookahead == '?') return false; - /* Optional chaining. */ - if (lexer->lookahead == '.') return false; + /* Optional chaining. */ + if (lexer->lookahead == '?' || lexer->lookahead == '.') { + return false; + } - lexer->mark_end(lexer); - lexer->result_symbol = TERNARY_QMARK; + lexer->mark_end(lexer); + lexer->result_symbol = TERNARY_QMARK; + + /* TypeScript optional arguments contain the ?: sequence, possibly + with whitespace. */ + for (;;) { + if (!iswspace(lexer->lookahead)) { + break; + } + advance(lexer); + } + + if (lexer->lookahead == ':' || lexer->lookahead == ')' || lexer->lookahead == ',') { + return false; + } - /* TypeScript optional arguments contain the ?: sequence, possibly - with whitespace. */ - for(;;) { - if (!iswspace(lexer->lookahead)) break; - advance(lexer); + if (lexer->lookahead == '.') { + advance(lexer); + if (iswdigit(lexer->lookahead)) { + return true; + } + return false; + } + return true; } - if (lexer->lookahead == ':') return false; - if (lexer->lookahead == ')') return false; - if (lexer->lookahead == ',') return false; - - if (lexer->lookahead == '.') { - advance(lexer); - if (iswdigit(lexer->lookahead)) return true; - return false; + return false; +} + +static bool scan_closing_comment(TSLexer *lexer) { + while (iswspace(lexer->lookahead) || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { + skip(lexer); } + + const char *comment_start = ""; + + if (lexer->lookahead == '<') { + for (unsigned i = 0; i < 4; i++) { + if (lexer->lookahead != comment_start[i]) { + return false; + } + advance(lexer); + } + } else if (lexer->lookahead == '-') { + for (unsigned i = 0; i < 3; i++) { + if (lexer->lookahead != comment_end[i]) { + return false; + } + advance(lexer); + } + } else { + return false; + } + + while (lexer->lookahead != 0 && lexer->lookahead != '\n' && lexer->lookahead != 0x2028 && + lexer->lookahead != 0x2029) { + advance(lexer); + } + + lexer->result_symbol = HTML_COMMENT; + lexer->mark_end(lexer); + return true; - } - return false; } static inline bool external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { - if (valid_symbols[TEMPLATE_CHARS]) { - if (valid_symbols[AUTOMATIC_SEMICOLON]) return false; - return scan_template_chars(lexer); - } else if ( - valid_symbols[AUTOMATIC_SEMICOLON] || - valid_symbols[FUNCTION_SIGNATURE_AUTOMATIC_SEMICOLON] - ) { - bool ret = scan_automatic_semicolon(lexer, valid_symbols); - if (!ret && valid_symbols[TERNARY_QMARK] && lexer->lookahead == '?') - return scan_ternary_qmark(lexer); - return ret; - } - if (valid_symbols[TERNARY_QMARK]) { - return scan_ternary_qmark(lexer); - } - - return false; + if (valid_symbols[TEMPLATE_CHARS]) { + if (valid_symbols[AUTOMATIC_SEMICOLON]) { + return false; + } + return scan_template_chars(lexer); + } + if (valid_symbols[AUTOMATIC_SEMICOLON] || valid_symbols[FUNCTION_SIGNATURE_AUTOMATIC_SEMICOLON]) { + bool scanned_comment = false; + bool ret = scan_automatic_semicolon(lexer, valid_symbols, &scanned_comment); + if (!ret && !scanned_comment && valid_symbols[TERNARY_QMARK] && lexer->lookahead == '?') { + return scan_ternary_qmark(lexer); + } + return ret; + } + if (valid_symbols[TERNARY_QMARK]) { + return scan_ternary_qmark(lexer); + } + if (valid_symbols[HTML_COMMENT] && !valid_symbols[LOGICAL_OR] && !valid_symbols[ESCAPE_SEQUENCE]) { + return scan_closing_comment(lexer); + } + + return false; } diff --git a/vendored_parsers/tree-sitter-qmljs/test/corpus/compatibility.txt b/vendored_parsers/tree-sitter-qmljs/test/corpus/compatibility.txt index 54f1a9c9a5..d57da8ad2e 100644 --- a/vendored_parsers/tree-sitter-qmljs/test/corpus/compatibility.txt +++ b/vendored_parsers/tree-sitter-qmljs/test/corpus/compatibility.txt @@ -28,8 +28,7 @@ QtObject { (statement_block (empty_statement)) (parenthesized_expression - (false)) - (MISSING ";")) + (false))) (expression_statement (true))))))) @@ -120,6 +119,50 @@ QtObject { (ui_object_initializer)))) (ERROR)))) +================================================================================ +Multi-line string literal +================================================================================ + +// qtdeclarative/tests/auto/qml/qmllint/data/multilineString.qml +// qtdeclarative/tests/auto/qml/qqmlecmascript/data/rewriteMultiLineStrings.qml +QtObject { + property string multipart: "Hello +world" + + Component.onCompleted: { + multipart = 'Hello +world' + '!'; + } +} + +-------------------------------------------------------------------------------- + +(program + (comment) + (comment) + (ui_object_definition + (identifier) + (ui_object_initializer + (ui_property + (type_identifier) + (identifier) + (expression_statement + (string + (string_fragment)))) + (ui_binding + (nested_identifier + (identifier) + (identifier)) + (statement_block + (expression_statement + (assignment_expression + (identifier) + (binary_expression + (string + (string_fragment)) + (string + (string_fragment)))))))))) + ================================================================================ Weird object pattern ================================================================================ diff --git a/vendored_parsers/tree-sitter-qmljs/test/corpus/declarative-ui.txt b/vendored_parsers/tree-sitter-qmljs/test/corpus/declarative-ui.txt index b2a45d5bec..83d92213d1 100644 --- a/vendored_parsers/tree-sitter-qmljs/test/corpus/declarative-ui.txt +++ b/vendored_parsers/tree-sitter-qmljs/test/corpus/declarative-ui.txt @@ -4,6 +4,8 @@ Pragma and imports pragma Singleton pragma ListPropertyAssignBehavior: Append +pragma Translator: "myTranslationContext" +pragma ValueTypeBehavior: Copy, Addressable import QtQuick import Qt.labs.platform as Platform import QtQuick.Controls 2 @@ -21,6 +23,14 @@ Item {} (ui_pragma name: (identifier) value: (identifier)) + (ui_pragma + name: (identifier) + value: (string + (string_fragment))) + (ui_pragma + name: (identifier) + value: (identifier) + value: (identifier)) (ui_import source: (identifier)) (ui_import @@ -290,7 +300,7 @@ MyItem { (ui_binding name: (identifier) value: (expression_statement - (function + (function_expression parameters: (formal_parameters (required_parameter pattern: (identifier))) @@ -713,6 +723,7 @@ import QtQml @Foo {} @Bar {} +@Baz.Nested.Name {} QtObject { @Foo {} @Bar {} @@ -731,6 +742,13 @@ QtObject { annotation: (ui_annotation type_name: (identifier) initializer: (ui_object_initializer)) + annotation: (ui_annotation + type_name: (nested_identifier + (nested_identifier + (identifier) + (identifier)) + (identifier)) + initializer: (ui_object_initializer)) definition: (ui_object_definition type_name: (identifier) initializer: (ui_object_initializer diff --git a/vendored_parsers/tree-sitter-qmljs/test/corpus/identifiers.txt b/vendored_parsers/tree-sitter-qmljs/test/corpus/identifiers.txt index 8522e903fa..6bdb693ec9 100644 --- a/vendored_parsers/tree-sitter-qmljs/test/corpus/identifiers.txt +++ b/vendored_parsers/tree-sitter-qmljs/test/corpus/identifiers.txt @@ -3,14 +3,6 @@ Reserved words as identifiers ================================================================================ MyItem { - NumberAnimation { - required property - } - - NumberAnimation { - property: "foo" - } - Component { id: component } @@ -42,6 +34,60 @@ MyItem { property var yield } + QtObject { + required any + required async + required component + required declare + required from + required get + required module + required namespace + required never + required number + required object + required of + required on + required override + required property + required readonly + required required + required set + required signal + required string + required symbol + required type + required unknown + required yield + } + + QtObject { + any: "foo" + async: "foo" + component: "foo" + declare: "foo" + from: "foo" + get: "foo" + module: "foo" + namespace: "foo" + never: "foo" + number: "foo" + object: "foo" + of: "foo" + on: "foo" + override: "foo" + property: "foo" + readonly: "foo" + required: "foo" + set: "foo" + signal: "foo" + string: "foo" + symbol: "foo" + type: "foo" + unknown: "foo" + yield: "foo" + } + QtObject { signal any signal async @@ -94,19 +140,6 @@ MyItem { root: (ui_object_definition type_name: (identifier) initializer: (ui_object_initializer - (ui_object_definition - type_name: (identifier) - initializer: (ui_object_initializer - (ui_required - name: (identifier)))) - (ui_object_definition - type_name: (identifier) - initializer: (ui_object_initializer - (ui_binding - name: (identifier) - value: (expression_statement - (string - (string_fragment)))))) (ui_object_definition type_name: (identifier) initializer: (ui_object_initializer @@ -189,6 +222,180 @@ MyItem { (ui_property type: (type_identifier) name: (identifier)))) + (ui_object_definition + type_name: (identifier) + initializer: (ui_object_initializer + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)) + (ui_required + name: (identifier)))) + (ui_object_definition + type_name: (identifier) + initializer: (ui_object_initializer + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))) + (ui_binding + name: (identifier) + value: (expression_statement + (string + (string_fragment)))))) (ui_object_definition type_name: (identifier) initializer: (ui_object_initializer